'endptr' is appropriate internally in strtol(3) because it's a pointer to 'end', and 'end' itself is a pointer to one-after-the-last character of the numeric string. In other words, endptr == &end However, naming the pointer whose address we pass to strtol(3)'s 'endptr' feels wrong, and causes me trouble while parsing the code; I need to double check the number of dereferences, because something feels wrong in my head. Signed-off-by: Alejandro Colomar <alx@kernel.org>
44 lines
1016 B
C
44 lines
1016 B
C
/*
|
|
* SPDX-FileCopyrightText: 1991 - 1994, Julianne Frances Haugh
|
|
* SPDX-FileCopyrightText: 1996 - 2000, Marek Michałkiewicz
|
|
* SPDX-FileCopyrightText: 2000 - 2006, Tomasz Kłoczko
|
|
* SPDX-FileCopyrightText: 2007 - 2009, Nicolas François
|
|
*
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
*/
|
|
|
|
#include <config.h>
|
|
|
|
#ident "$Id$"
|
|
|
|
#include <stdlib.h>
|
|
#include <errno.h>
|
|
#include <grp.h>
|
|
#include "prototypes.h"
|
|
|
|
/*
|
|
* getgr_nam_gid - Return a pointer to the group specified by a string.
|
|
* The string may be a valid GID or a valid groupname.
|
|
* If the group does not exist on the system, NULL is returned.
|
|
*/
|
|
extern /*@only@*//*@null@*/struct group *getgr_nam_gid (/*@null@*/const char *grname)
|
|
{
|
|
char *end;
|
|
long long gid;
|
|
|
|
if (NULL == grname) {
|
|
return NULL;
|
|
}
|
|
|
|
errno = 0;
|
|
gid = strtoll(grname, &end, 10);
|
|
if ( ('\0' != *grname)
|
|
&& ('\0' == *end)
|
|
&& (0 == errno)
|
|
&& (/*@+longintegral@*/gid == (gid_t)gid)/*@=longintegral@*/) {
|
|
return xgetgrgid (gid);
|
|
}
|
|
return xgetgrnam (grname);
|
|
}
|
|
|