mirror of
git://sourceware.org/git/glibc.git
synced 2024-12-15 04:20:28 +08:00
5a82c74822
Also, change sources.redhat.com to sourceware.org. This patch was automatically generated by running the following shell script, which uses GNU sed, and which avoids modifying files imported from upstream: sed -ri ' s,(http|ftp)(://(.*\.)?(gnu|fsf|sourceware)\.org($|[^.]|\.[^a-z])),https\2,g s,(http|ftp)(://(.*\.)?)sources\.redhat\.com($|[^.]|\.[^a-z]),https\2sourceware.org\4,g ' \ $(find $(git ls-files) -prune -type f \ ! -name '*.po' \ ! -name 'ChangeLog*' \ ! -path COPYING ! -path COPYING.LIB \ ! -path manual/fdl-1.3.texi ! -path manual/lgpl-2.1.texi \ ! -path manual/texinfo.tex ! -path scripts/config.guess \ ! -path scripts/config.sub ! -path scripts/install-sh \ ! -path scripts/mkinstalldirs ! -path scripts/move-if-change \ ! -path INSTALL ! -path locale/programs/charmap-kw.h \ ! -path po/libc.pot ! -path sysdeps/gnu/errlist.c \ ! '(' -name configure \ -execdir test -f configure.ac -o -f configure.in ';' ')' \ ! '(' -name preconfigure \ -execdir test -f preconfigure.ac ';' ')' \ -print) and then by running 'make dist-prepare' to regenerate files built from the altered files, and then executing the following to cleanup: chmod a+x sysdeps/unix/sysv/linux/riscv/configure # Omit irrelevant whitespace and comment-only changes, # perhaps from a slightly-different Autoconf version. git checkout -f \ sysdeps/csky/configure \ sysdeps/hppa/configure \ sysdeps/riscv/configure \ sysdeps/unix/sysv/linux/csky/configure # Omit changes that caused a pre-commit check to fail like this: # remote: *** error: sysdeps/powerpc/powerpc64/ppc-mcount.S: trailing lines git checkout -f \ sysdeps/powerpc/powerpc64/ppc-mcount.S \ sysdeps/unix/sysv/linux/s390/s390-64/syscall.S # Omit change that caused a pre-commit check to fail like this: # remote: *** error: sysdeps/sparc/sparc64/multiarch/memcpy-ultra3.S: last line does not end in newline git checkout -f sysdeps/sparc/sparc64/multiarch/memcpy-ultra3.S
110 lines
2.9 KiB
C
110 lines
2.9 KiB
C
/* Test error checking for passwd entries.
|
|
Copyright (C) 2017-2019 Free Software Foundation, Inc.
|
|
This file is part of the GNU C Library.
|
|
|
|
The GNU C Library is free software; you can redistribute it and/or
|
|
modify it under the terms of the GNU Lesser General Public
|
|
License as published by the Free Software Foundation; either
|
|
version 2.1 of the License, or (at your option) any later version.
|
|
|
|
The GNU C Library is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
Lesser General Public License for more details.
|
|
|
|
You should have received a copy of the GNU Lesser General Public
|
|
License along with the GNU C Library; if not, see
|
|
<https://www.gnu.org/licenses/>. */
|
|
|
|
#include <nss.h>
|
|
#include <pwd.h>
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
|
|
#include <support/support.h>
|
|
|
|
#include "nss_test.h"
|
|
|
|
/* The specific values and names used here are arbitrary, other than
|
|
correspondence (with suitable differences according to the tests as
|
|
commented) between the given and expected entries. */
|
|
|
|
static struct passwd pwd_table[] = {
|
|
PWD (100), /* baseline, matches */
|
|
PWD (300), /* wrong name and uid */
|
|
PWD_N (200, NULL), /* missing name */
|
|
PWD (60), /* unexpected name */
|
|
{ .pw_name = (char *)"name20000", .pw_passwd = (char *) "*", .pw_uid = 20000, \
|
|
.pw_gid = 200, .pw_gecos = (char *) "*", .pw_dir = (char *) "*", \
|
|
.pw_shell = (char *) "*" }, /* wrong gid */
|
|
{ .pw_name = (char *)"name2", .pw_passwd = (char *) "x", .pw_uid = 2, \
|
|
.pw_gid = 2, .pw_gecos = (char *) "y", .pw_dir = (char *) "z", \
|
|
.pw_shell = (char *) "*" }, /* spot check other text fields */
|
|
PWD_LAST ()
|
|
};
|
|
|
|
static struct passwd exp_table[] = {
|
|
PWD (100),
|
|
PWD (30),
|
|
PWD (200),
|
|
PWD_N (60, NULL),
|
|
PWD (20000),
|
|
PWD (2),
|
|
PWD_LAST ()
|
|
};
|
|
|
|
void
|
|
_nss_test1_init_hook(test_tables *t)
|
|
{
|
|
t->pwd_table = pwd_table;
|
|
}
|
|
|
|
static int
|
|
do_test (void)
|
|
{
|
|
int retval = 0;
|
|
int i;
|
|
struct passwd *p;
|
|
|
|
__nss_configure_lookup ("passwd", "test1");
|
|
|
|
setpwent ();
|
|
|
|
i = 0;
|
|
for (p = getpwent ();
|
|
p != NULL && ! PWD_ISLAST (& exp_table[i]);
|
|
++i, p = getpwent ())
|
|
retval += compare_passwds (i, p, & exp_table[i]);
|
|
|
|
endpwent ();
|
|
|
|
|
|
if (p)
|
|
{
|
|
printf ("FAIL: [?] passwd entry %u.%s unexpected\n", p->pw_uid, p->pw_name);
|
|
++retval;
|
|
}
|
|
if (! PWD_ISLAST (& exp_table[i]))
|
|
{
|
|
printf ("FAIL: [%d] passwd entry %u.%s missing\n", i,
|
|
exp_table[i].pw_uid, exp_table[i].pw_name);
|
|
++retval;
|
|
}
|
|
|
|
#define EXPECTED 9
|
|
if (retval == EXPECTED)
|
|
{
|
|
if (retval > 0)
|
|
printf ("PASS: Found %d expected errors\n", retval);
|
|
return 0;
|
|
}
|
|
else
|
|
{
|
|
printf ("FAIL: Found %d errors, expected %d\n", retval, EXPECTED);
|
|
return 1;
|
|
}
|
|
}
|
|
|
|
#include <support/test-driver.c>
|