OSDN Git Service

(split) LDP man-pages の original/ を v3.29 に更新。
[linuxjm/LDP_man-pages.git] / original / man3 / getpwent.3
1 .\" Copyright 1993 David Metcalfe (david@prism.demon.co.uk)
2 .\"
3 .\" Permission is granted to make and distribute verbatim copies of this
4 .\" manual provided the copyright notice and this permission notice are
5 .\" preserved on all copies.
6 .\"
7 .\" Permission is granted to copy and distribute modified versions of this
8 .\" manual under the conditions for verbatim copying, provided that the
9 .\" entire resulting derived work is distributed under the terms of a
10 .\" permission notice identical to this one.
11 .\"
12 .\" Since the Linux kernel and libraries are constantly changing, this
13 .\" manual page may be incorrect or out-of-date.  The author(s) assume no
14 .\" responsibility for errors or omissions, or for damages resulting from
15 .\" the use of the information contained herein.  The author(s) may not
16 .\" have taken the same level of care in the production of this manual,
17 .\" which is licensed free of charge, as they might when working
18 .\" professionally.
19 .\"
20 .\" Formatted or processed versions of this manual, if unaccompanied by
21 .\" the source, must acknowledge the copyright and authors of this work.
22 .\"
23 .\" References consulted:
24 .\"     Linux libc source code
25 .\"     Lewine's _POSIX Programmer's Guide_ (O'Reilly & Associates, 1991)
26 .\"     386BSD man pages
27 .\"
28 .\" Modified Sat Jul 24 19:22:14 1993 by Rik Faith (faith@cs.unc.edu)
29 .\" Modified Mon May 27 21:37:47 1996 by Martin Schulze (joey@linux.de)
30 .\"
31 .TH GETPWENT 3  2010-09-20 "GNU" "Linux Programmer's Manual"
32 .SH NAME
33 getpwent, setpwent, endpwent \- get password file entry
34 .SH SYNOPSIS
35 .nf
36 .B #include <sys/types.h>
37 .B #include <pwd.h>
38 .sp
39 .B struct passwd *getpwent(void);
40 .sp
41 .B void setpwent(void);
42 .sp
43 .B void endpwent(void);
44 .fi
45 .sp
46 .in -4n
47 Feature Test Macro Requirements for glibc (see
48 .BR feature_test_macros (7)):
49 .in
50 .sp
51 .ad l
52 .BR getpwent (),
53 .BR setpwent (),
54 .BR endpwent ():
55 .RS 4
56 _BSD_SOURCE || _SVID_SOURCE || _XOPEN_SOURCE\ >=\ 500 ||
57 _XOPEN_SOURCE\ &&\ _XOPEN_SOURCE_EXTENDED
58 .RE
59 .ad b
60 .SH DESCRIPTION
61 The
62 .BR getpwent ()
63 function returns a pointer to a structure containing
64 the broken-out fields of a record from the password database
65 (e.g., the local password file
66 .IR /etc/passwd ,
67 NIS, and LDAP).
68 The first time
69 .BR getpwent ()
70 is called, it returns the first entry; thereafter, it returns successive
71 entries.
72 .PP
73 The
74 .BR setpwent ()
75 function rewinds to the beginning
76 of the password database.
77 .PP
78 The
79 .BR endpwent ()
80 function is used to close the password database
81 after all processing has been performed.
82 .PP
83 The \fIpasswd\fP structure is defined in \fI<pwd.h>\fP as follows:
84 .sp
85 .in +4n
86 .nf
87 struct passwd {
88     char   *pw_name;       /* username */
89     char   *pw_passwd;     /* user password */
90     uid_t   pw_uid;        /* user ID */
91     gid_t   pw_gid;        /* group ID */
92     char   *pw_gecos;      /* real name */
93     char   *pw_dir;        /* home directory */
94     char   *pw_shell;      /* shell program */
95 };
96 .fi
97 .in
98 .SH "RETURN VALUE"
99 The
100 .BR getpwent ()
101 function returns a pointer to a
102 .I passwd
103 structure, or NULL if
104 there are no more entries or an error occurs.
105 If an error occurs,
106 .I errno
107 is set appropriately.
108 If one wants to check
109 .I errno
110 after the call, it should be set to zero before the call.
111
112 The return value may point to a static area, and may be overwritten
113 by subsequent calls to
114 .BR getpwent (),
115 .BR getpwnam (3),
116 or
117 .BR getpwuid (3).
118 (Do not pass the returned pointer to
119 .BR free (3).)
120 .SH ERRORS
121 .TP
122 .B EINTR
123 A signal was caught.
124 .TP
125 .B EIO
126 I/O error.
127 .TP
128 .B EMFILE
129 The maximum number
130 .RB ( OPEN_MAX )
131 of files was open already in the calling process.
132 .TP
133 .B ENFILE
134 The maximum number of files was open already in the system.
135 .TP
136 .B ENOMEM
137 .\" not in POSIX
138 Insufficient memory to allocate
139 .I passwd
140 structure.
141 .\" to allocate the passwd structure, or to allocate buffers
142 .TP
143 .B ERANGE
144 Insufficient buffer space supplied.
145 .SH FILES
146 .TP
147 .I /etc/passwd
148 local password database file
149 .SH "CONFORMING TO"
150 SVr4, 4.3BSD, POSIX.1-2001.
151 .SH "SEE ALSO"
152 .BR fgetpwent (3),
153 .BR getpw (3),
154 .BR getpwent_r (3),
155 .BR getpwnam (3),
156 .BR getpwuid (3),
157 .BR putpwent (3),
158 .BR passwd (5)