1 .\" Copyright 1993 David Metcalfe (david@prism.demon.co.uk)
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.
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.
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
21 .\" Formatted or processed versions of this manual, if unaccompanied by
22 .\" the source, must acknowledge the copyright and authors of this work.
25 .\" References consulted:
26 .\" Linux libc source code
27 .\" Lewine's _POSIX Programmer's Guide_ (O'Reilly & Associates, 1991)
29 .\" Modified Sat Jul 24 19:29:54 1993 by Rik Faith (faith@cs.unc.edu)
30 .TH GETGRENT 3 2017-07-13 "" "Linux Programmer's Manual"
32 getgrent, setgrent, endgrent \- get group file entry
35 .B #include <sys/types.h>
38 .B struct group *getgrent(void);
40 .B void setgrent(void);
42 .B void endgrent(void);
46 Feature Test Macro Requirements for glibc (see
47 .BR feature_test_macros (7)):
54 _XOPEN_SOURCE\ >=\ 500
55 .\" || _XOPEN_SOURCE\ &&\ _XOPEN_SOURCE_EXTENDED
56 || /* Glibc since 2.19: */ _DEFAULT_SOURCE
57 || /* Glibc versions <= 2.19: */ _BSD_SOURCE || _SVID_SOURCE
64 _XOPEN_SOURCE\ >=\ 500 ||
65 .\" || _XOPEN_SOURCE\ &&\ _XOPEN_SOURCE_EXTENDED
68 Glibc 2.21 and earlier
69 _XOPEN_SOURCE\ >=\ 500
70 .\" || _XOPEN_SOURCE\ &&\ _XOPEN_SOURCE_EXTENDED
71 || /* Since glibc 2.12: */ _POSIX_C_SOURCE\ >=\ 200809L
72 || /* Glibc versions <= 2.19: */ _BSD_SOURCE || _SVID_SOURCE
79 function returns a pointer to a structure containing
80 the broken-out fields of a record in the group database
81 (e.g., the local group file
87 it returns the first entry; thereafter, it returns successive entries.
91 function rewinds to the beginning
92 of the group database, to allow repeated scans.
96 function is used to close the group database
97 after all processing has been performed.
99 The \fIgroup\fP structure is defined in \fI<grp.h>\fP as follows:
104 char *gr_name; /* group name */
105 char *gr_passwd; /* group password */
106 gid_t gr_gid; /* group ID */
107 char **gr_mem; /* NULL-terminated array of pointers
108 to names of group members */
113 For more information about the fields of this structure, see
118 function returns a pointer to a
121 or NULL if there are no more entries or an error occurs.
126 If one wants to check
128 after the call, it should be set to zero before the call.
130 The return value may point to a static area, and may be overwritten
131 by subsequent calls to
136 (Do not pass the returned pointer to
141 The service was temporarily unavailable; try again later.
142 For NSS backends in glibc this indicates a temporary error talking to the backend.
143 The error may correct itself, retrying later is suggested.
146 A signal was caught; see
153 The per-process limit on the number of open file descriptors has been reached.
156 The system-wide limit on the total number of open files has been reached.
160 A necessary input file cannot be found.
161 For NSS backends in glibc this indicates the backend is not correctly configured.
165 Insufficient memory to allocate
170 Insufficient buffer space supplied.
174 local group database file
176 For an explanation of the terms used in this section, see
182 Interface Attribute Value
193 T} Thread safety MT-Unsafe race:grent locale
200 signifies that if any of the functions
205 are used in parallel in different threads of a program,
206 then data races could occur.
208 POSIX.1-2001, POSIX.1-2008, SVr4, 4.3BSD.
214 .BR getgrouplist (3),