- Set errno = 0 before the call. Otherwise, it may contain anything. - ERANGE is not the only possible errno value of these functions. They can also set it to EINVAL. - Any errno value after these calls is bad; just compare against 0. - Don't check for the return value; just errno. This function is guaranteed to not modify errno on success (POSIX). - Check endptr == str, which may or may not set EINVAL. Suggested-by: Iker Pedrosa <ipedrosa@redhat.com> Signed-off-by: Alejandro Colomar <alx@kernel.org>
32 lines
506 B
C
32 lines
506 B
C
/*
|
|
* SPDX-FileCopyrightText: 2009 , Nicolas François
|
|
*
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
*/
|
|
|
|
#include <config.h>
|
|
|
|
#ident "$Id$"
|
|
|
|
#include "prototypes.h"
|
|
#include "defines.h"
|
|
|
|
int get_uid (const char *uidstr, uid_t *uid)
|
|
{
|
|
long long val;
|
|
char *endptr;
|
|
|
|
errno = 0;
|
|
val = strtoll(uidstr, &endptr, 10);
|
|
if ( ('\0' == *uidstr)
|
|
|| ('\0' != *endptr)
|
|
|| (0 != errno)
|
|
|| (/*@+longintegral@*/val != (uid_t)val)/*@=longintegral@*/) {
|
|
return 0;
|
|
}
|
|
|
|
*uid = val;
|
|
return 1;
|
|
}
|
|
|