OSDN Git Service

(split) LDP: Update original to LDP v3.40.
[linuxjm/LDP_man-pages.git] / original / man3 / getgrnam.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 1993-07-24 by Rik Faith (faith@cs.unc.edu)
29 .\" Modified 2003-11-15 by aeb
30 .\"
31 .TH GETGRNAM 3 2012-04-23 "" "Linux Programmer's Manual"
32 .SH NAME
33 getgrnam, getgrnam_r, getgrgid, getgrgid_r \- get group file entry
34 .SH SYNOPSIS
35 .nf
36 .B #include <sys/types.h>
37 .B #include <grp.h>
38 .sp
39 .BI "struct group *getgrnam(const char *" name );
40 .sp
41 .BI "struct group *getgrgid(gid_t " gid );
42 .sp
43 .BI "int getgrnam_r(const char *" name ", struct group *" grp ,
44 .br
45 .BI "          char *" buf ", size_t " buflen ", struct group **" result );
46 .sp
47 .BI "int getgrgid_r(gid_t " gid ", struct group *" grp ,
48 .br
49 .BI "          char *" buf ", size_t " buflen ", struct group **" result );
50 .fi
51 .sp
52 .in -4n
53 Feature Test Macro Requirements for glibc (see
54 .BR feature_test_macros (7)):
55 .ad l
56 .in
57 .sp
58 .BR getgrnam_r (),
59 .BR getgrgid_r ():
60 .RS 4
61 _POSIX_C_SOURCE\ >=\ 1 || _XOPEN_SOURCE || _BSD_SOURCE ||
62 _SVID_SOURCE || _POSIX_SOURCE
63 .RE
64 .ad b
65 .SH DESCRIPTION
66 The
67 .BR getgrnam ()
68 function returns a pointer to a structure containing
69 the broken-out fields of the record in the group database
70 (e.g., the local group file
71 .IR /etc/group ,
72 NIS, and LDAP)
73 that matches the group name
74 .IR name .
75 .PP
76 The
77 .BR getgrgid ()
78 function returns a pointer to a structure containing
79 the broken-out fields of the record in the group database
80 that matches the group ID
81 .IR gid .
82 .PP
83 The \fIgroup\fP structure is defined in \fI<grp.h>\fP as follows:
84 .sp
85 .in +4n
86 .nf
87 struct group {
88     char   *gr_name;       /* group name */
89     char   *gr_passwd;     /* group password */
90     gid_t   gr_gid;        /* group ID */
91     char  **gr_mem;        /* group members */
92 };
93 .fi
94 .in
95 .PP
96 For more information about the fields of this structure, see
97 .BR group (5).
98 .PP
99 The
100 .BR getgrnam_r ()
101 and
102 .BR getgrgid_r ()
103 functions obtain the same information as
104 .BR getgrnam ()
105 and
106 .BR getgrgid (),
107 but store the retrieved
108 .I group
109 structure
110 in the space pointed to by
111 .IR grp .
112 The string fields pointed to by the members of the
113 .I group
114 structure are stored in the buffer
115 .I buf
116 of size
117 .IR buflen .
118 A pointer to the result (in case of success) or NULL (in case no entry
119 was found or an error occurred) is stored in
120 .IR *result .
121 .PP
122 The call
123
124     sysconf(_SC_GETGR_R_SIZE_MAX)
125
126 returns either \-1, without changing
127 .IR errno ,
128 or an initial suggested size for
129 .IR buf .
130 (If this size is too small,
131 the call fails with
132 .BR ERANGE ,
133 in which case the caller can retry with a larger buffer.)
134 .SH "RETURN VALUE"
135 The
136 .BR getgrnam ()
137 and
138 .BR getgrgid ()
139 functions return a pointer to a
140 .I group
141 structure, or NULL if the matching entry
142 is not found or an error occurs.
143 If an error occurs,
144 .I errno
145 is set appropriately.
146 If one wants to check
147 .I errno
148 after the call, it should be set to zero before the call.
149 .LP
150 The return value may point to a static area, and may be overwritten
151 by subsequent calls to
152 .BR getgrent (3),
153 .BR getgrgid (),
154 or
155 .BR getgrnam ().
156 (Do not pass the returned pointer to
157 .BR free (3).)
158 .LP
159 On success,
160 .BR getgrnam_r ()
161 and
162 .BR getgrgid_r ()
163 return zero, and set
164 .IR *result
165 to
166 .IR grp .
167 If no matching group record was found,
168 these functions return 0 and store NULL in
169 .IR *result .
170 In case of error, an error number is returned, and NULL is stored in
171 .IR *result .
172 .SH ERRORS
173 .TP
174 .BR 0 " or " ENOENT " or " ESRCH " or " EBADF " or " EPERM " or ... "
175 The given
176 .I name
177 or
178 .I gid
179 was not found.
180 .TP
181 .B EINTR
182 A signal was caught.
183 .TP
184 .B EIO
185 I/O error.
186 .TP
187 .B EMFILE
188 The maximum number
189 .RB ( OPEN_MAX )
190 of files was open already in the calling process.
191 .TP
192 .B ENFILE
193 The maximum number of files was open already in the system.
194 .TP
195 .B ENOMEM
196 .\" not in POSIX
197 Insufficient memory to allocate
198 .I group
199 structure.
200 .\" to allocate the group structure, or to allocate buffers
201 .TP
202 .B ERANGE
203 Insufficient buffer space supplied.
204 .SH FILES
205 .TP
206 .I /etc/group
207 local group database file
208 .SH "CONFORMING TO"
209 SVr4, 4.3BSD, POSIX.1-2001.
210 .SH NOTES
211 The formulation given above under "RETURN VALUE" is from POSIX.1-2001.
212 It does not call "not found" an error, hence does not specify what value
213 .I errno
214 might have in this situation.
215 But that makes it impossible to recognize
216 errors.
217 One might argue that according to POSIX
218 .I errno
219 should be left unchanged if an entry is not found.
220 Experiments on various
221 UNIX-like systems shows that lots of different values occur in this
222 situation: 0, ENOENT, EBADF, ESRCH, EWOULDBLOCK, EPERM and probably others.
223 .\" more precisely:
224 .\" AIX 5.1 - gives ESRCH
225 .\" OSF1 4.0g - gives EWOULDBLOCK
226 .\" libc, glibc up to version 2.6, Irix 6.5 - give ENOENT
227 .\" glibc since version 2.7 - give 0
228 .\" FreeBSD 4.8, OpenBSD 3.2, NetBSD 1.6 - give EPERM
229 .\" SunOS 5.8 - gives EBADF
230 .\" Tru64 5.1b, HP-UX-11i, SunOS 5.7 - give 0
231 .SH "SEE ALSO"
232 .BR endgrent (3),
233 .BR fgetgrent (3),
234 .BR getgrent (3),
235 .BR getpwnam (3),
236 .BR setgrent (3),
237 .BR group (5)