OSDN Git Service

Update README
[linuxjm/LDP_man-pages.git] / original / man3 / getgrnam.3
1 .\" Copyright 1993 David Metcalfe (david@prism.demon.co.uk)
2 .\"
3 .\" %%%LICENSE_START(VERBATIM)
4 .\" Permission is granted to make and distribute verbatim copies of this
5 .\" manual provided the copyright notice and this permission notice are
6 .\" preserved on all copies.
7 .\"
8 .\" Permission is granted to copy and distribute modified versions of this
9 .\" manual under the conditions for verbatim copying, provided that the
10 .\" entire resulting derived work is distributed under the terms of a
11 .\" permission notice identical to this one.
12 .\"
13 .\" Since the Linux kernel and libraries are constantly changing, this
14 .\" manual page may be incorrect or out-of-date.  The author(s) assume no
15 .\" responsibility for errors or omissions, or for damages resulting from
16 .\" the use of the information contained herein.  The author(s) may not
17 .\" have taken the same level of care in the production of this manual,
18 .\" which is licensed free of charge, as they might when working
19 .\" professionally.
20 .\"
21 .\" Formatted or processed versions of this manual, if unaccompanied by
22 .\" the source, must acknowledge the copyright and authors of this work.
23 .\" %%%LICENSE_END
24 .\"
25 .\" References consulted:
26 .\"     Linux libc source code
27 .\"     Lewine's _POSIX Programmer's Guide_ (O'Reilly & Associates, 1991)
28 .\"     386BSD man pages
29 .\"
30 .\" Modified 1993-07-24 by Rik Faith (faith@cs.unc.edu)
31 .\" Modified 2003-11-15 by aeb
32 .\"
33 .TH GETGRNAM 3 2014-08-19 "" "Linux Programmer's Manual"
34 .SH NAME
35 getgrnam, getgrnam_r, getgrgid, getgrgid_r \- get group file entry
36 .SH SYNOPSIS
37 .nf
38 .B #include <sys/types.h>
39 .B #include <grp.h>
40 .sp
41 .BI "struct group *getgrnam(const char *" name );
42 .sp
43 .BI "struct group *getgrgid(gid_t " gid );
44 .sp
45 .BI "int getgrnam_r(const char *" name ", struct group *" grp ,
46 .br
47 .BI "          char *" buf ", size_t " buflen ", struct group **" result );
48 .sp
49 .BI "int getgrgid_r(gid_t " gid ", struct group *" grp ,
50 .br
51 .BI "          char *" buf ", size_t " buflen ", struct group **" result );
52 .fi
53 .sp
54 .in -4n
55 Feature Test Macro Requirements for glibc (see
56 .BR feature_test_macros (7)):
57 .ad l
58 .in
59 .sp
60 .BR getgrnam_r (),
61 .BR getgrgid_r ():
62 .RS 4
63 _POSIX_C_SOURCE\ >=\ 1 || _XOPEN_SOURCE || _BSD_SOURCE ||
64 _SVID_SOURCE || _POSIX_SOURCE
65 .RE
66 .ad b
67 .SH DESCRIPTION
68 The
69 .BR getgrnam ()
70 function returns a pointer to a structure containing
71 the broken-out fields of the record in the group database
72 (e.g., the local group file
73 .IR /etc/group ,
74 NIS, and LDAP)
75 that matches the group name
76 .IR name .
77 .PP
78 The
79 .BR getgrgid ()
80 function returns a pointer to a structure containing
81 the broken-out fields of the record in the group database
82 that matches the group ID
83 .IR gid .
84 .PP
85 The \fIgroup\fP structure is defined in \fI<grp.h>\fP as follows:
86 .sp
87 .in +4n
88 .nf
89 struct group {
90     char   *gr_name;        /* group name */
91     char   *gr_passwd;      /* group password */
92     gid_t   gr_gid;         /* group ID */
93     char  **gr_mem;         /* NULL-terminated array of pointers
94                                to names of group members */
95 };
96 .fi
97 .in
98 .PP
99 For more information about the fields of this structure, see
100 .BR group (5).
101 .PP
102 The
103 .BR getgrnam_r ()
104 and
105 .BR getgrgid_r ()
106 functions obtain the same information as
107 .BR getgrnam ()
108 and
109 .BR getgrgid (),
110 but store the retrieved
111 .I group
112 structure
113 in the space pointed to by
114 .IR grp .
115 The string fields pointed to by the members of the
116 .I group
117 structure are stored in the buffer
118 .I buf
119 of size
120 .IR buflen .
121 A pointer to the result (in case of success) or NULL (in case no entry
122 was found or an error occurred) is stored in
123 .IR *result .
124 .PP
125 The call
126
127     sysconf(_SC_GETGR_R_SIZE_MAX)
128
129 returns either \-1, without changing
130 .IR errno ,
131 or an initial suggested size for
132 .IR buf .
133 (If this size is too small,
134 the call fails with
135 .BR ERANGE ,
136 in which case the caller can retry with a larger buffer.)
137 .SH RETURN VALUE
138 The
139 .BR getgrnam ()
140 and
141 .BR getgrgid ()
142 functions return a pointer to a
143 .I group
144 structure, or NULL if the matching entry
145 is not found or an error occurs.
146 If an error occurs,
147 .I errno
148 is set appropriately.
149 If one wants to check
150 .I errno
151 after the call, it should be set to zero before the call.
152 .LP
153 The return value may point to a static area, and may be overwritten
154 by subsequent calls to
155 .BR getgrent (3),
156 .BR getgrgid (),
157 or
158 .BR getgrnam ().
159 (Do not pass the returned pointer to
160 .BR free (3).)
161 .LP
162 On success,
163 .BR getgrnam_r ()
164 and
165 .BR getgrgid_r ()
166 return zero, and set
167 .IR *result
168 to
169 .IR grp .
170 If no matching group record was found,
171 these functions return 0 and store NULL in
172 .IR *result .
173 In case of error, an error number is returned, and NULL is stored in
174 .IR *result .
175 .SH ERRORS
176 .TP
177 .BR 0 " or " ENOENT " or " ESRCH " or " EBADF " or " EPERM " or ... "
178 The given
179 .I name
180 or
181 .I gid
182 was not found.
183 .TP
184 .B EINTR
185 A signal was caught.
186 .TP
187 .B EIO
188 I/O error.
189 .TP
190 .B EMFILE
191 The maximum number
192 .RB ( OPEN_MAX )
193 of files was open already in the calling process.
194 .TP
195 .B ENFILE
196 The maximum number of files was open already in the system.
197 .TP
198 .B ENOMEM
199 .\" not in POSIX
200 Insufficient memory to allocate
201 .I group
202 structure.
203 .\" to allocate the group structure, or to allocate buffers
204 .TP
205 .B ERANGE
206 Insufficient buffer space supplied.
207 .SH FILES
208 .TP
209 .I /etc/group
210 local group database file
211 .SH ATTRIBUTES
212 .SS Multithreading (see pthreads(7))
213 The
214 .BR getgrnam ()
215 and
216 .BR getgrgid ()
217 functions are not thread-safe.
218 .LP
219 The
220 .BR getgrnam_r ()
221 and
222 .BR getgrgid_r ()
223 functions are thread-safe.
224 .SH CONFORMING TO
225 SVr4, 4.3BSD, POSIX.1-2001.
226 .SH NOTES
227 The formulation given above under "RETURN VALUE" is from POSIX.1-2001.
228 It does not call "not found" an error, hence does not specify what value
229 .I errno
230 might have in this situation.
231 But that makes it impossible to recognize
232 errors.
233 One might argue that according to POSIX
234 .I errno
235 should be left unchanged if an entry is not found.
236 Experiments on various
237 UNIX-like systems shows that lots of different values occur in this
238 situation: 0, ENOENT, EBADF, ESRCH, EWOULDBLOCK, EPERM, and probably others.
239 .\" more precisely:
240 .\" AIX 5.1 - gives ESRCH
241 .\" OSF1 4.0g - gives EWOULDBLOCK
242 .\" libc, glibc up to version 2.6, Irix 6.5 - give ENOENT
243 .\" glibc since version 2.7 - give 0
244 .\" FreeBSD 4.8, OpenBSD 3.2, NetBSD 1.6 - give EPERM
245 .\" SunOS 5.8 - gives EBADF
246 .\" Tru64 5.1b, HP-UX-11i, SunOS 5.7 - give 0
247 .SH SEE ALSO
248 .BR endgrent (3),
249 .BR fgetgrent (3),
250 .BR getgrent (3),
251 .BR getpwnam (3),
252 .BR setgrent (3),
253 .BR group (5)
254 .SH COLOPHON
255 This page is part of release 3.79 of the Linux
256 .I man-pages
257 project.
258 A description of the project,
259 information about reporting bugs,
260 and the latest version of this page,
261 can be found at
262 \%http://www.kernel.org/doc/man\-pages/.