xref: /original-bsd/lib/libc/gen/getpwent.3 (revision 454fcdce)
Copyright (c) 1988 The Regents of the University of California.
All rights reserved.

%sccs.include.redist.man%

@(#)getpwent.3 6.7 (Berkeley) 02/12/91

GETPWENT 3 ""
.AT 3
NAME
getpwent, getpwnam, getpwuid, setpassent, setpwent, endpwent - get password file entries
SYNOPSIS
#include <sys/types.h>
#include <pwd.h>

struct passwd *getpwent(void);
struct passwd *getpwnam(char *login);
struct passwd *getpwuid(uid_t uid);
int setpassent(int stayopen);
int setpwent(void);
void endpwent(void);
DESCRIPTION
Getpwent , getpwuid , and getpwnam each return a pointer to a structure containing the broken-out fields of a line in the password file. This structure is defined by the include file < pwd.h > , and contains the following fields:

struct passwd {
 char *pw_name; /* user name */
 char *pw_passwd; /* encrypted password */
 uid_t pw_uid; /* user uid */
 gid_t pw_gid; /* user gid */
 time_t pw_change; /* password change time */
 char *pw_class; /* user access class */
 char *pw_gecos; /* Honeywell login info */
 char *pw_dir; /* home directory */
 char *pw_shell; /* default shell */
 time_t pw_expire; /* account expiration */
};

These fields are more completely described in passwd (5).

Getpwnam and getpwuid search the password database for a matching user name or user uid, respectively, always returning the first one encountered.

Getpwent sequentially reads the password database and is intended for programs that wish to process the complete list of users.

Setpassent accomplishes two purposes. First, it causes getpwent to ``rewind'' to the beginning of the database. Additionally, if stayopen is non-zero, file descriptors are left open, significantly speeding up subsequent accesses for all of the routines. (This latter functionality is unnecessary for getpwent as it doesn't close its file descriptors by default.)

It is dangerous for long-running programs to keep the file descriptors open the database will become out of date if it is updated while the program is running.

Setpwent is identical to setpassent with an argument of zero.

Endpwent closes any open files.

These routines have been written to ``shadow'' the password file, e.g. allow only certain programs to have access to the encrypted password. If the process which calls them has an effective uid of 0, the encrypted password will be returned, otherwise, the password field of the retuned structure will point to the string ``*''.

FILES
/var/db/pwd.db The insecure password database file

/var/db/spwd.db The secure password database file

/etc/master.passwd The current password file

/etc/passwd A Version 7 format password file

"SEE ALSO"
getlogin(3), getgrent(3), passwd(5), pwd_mkdb(8), vipw(8)
DIAGNOSTICS
The routines getpwent , getpwnam , and getpwuid , return a null pointer on EOF or error. Setpassent and setpwent return 0 on failure and 1 on success. Endpwent has no return value.
BUGS
All information is contained in a static buffer which is overwritten by each new call. It must be copied elsewhere to be retained.

The routines getpwent , endpwent , setpassent , and setpwent are fairly useless in a networked environment and should be avoided, if possible.

COMPATIBILITY
The historic function setpwfile , which allowed the specification of alternate password databases, has been deprecated and is no longer available.