]> git.ipfire.org Git - thirdparty/glibc.git/blame - grp/grp.h
Update copyright notices with scripts/update-copyrights
[thirdparty/glibc.git] / grp / grp.h
CommitLineData
d4697bc9 1/* Copyright (C) 1991-2014 Free Software Foundation, Inc.
2c6fe0bd 2 This file is part of the GNU C Library.
28f540f4 3
2c6fe0bd 4 The GNU C Library is free software; you can redistribute it and/or
41bdb6e2
AJ
5 modify it under the terms of the GNU Lesser General Public
6 License as published by the Free Software Foundation; either
7 version 2.1 of the License, or (at your option) any later version.
28f540f4 8
2c6fe0bd
UD
9 The GNU C Library is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
41bdb6e2 12 Lesser General Public License for more details.
28f540f4 13
41bdb6e2 14 You should have received a copy of the GNU Lesser General Public
59ba27a6
PE
15 License along with the GNU C Library; if not, see
16 <http://www.gnu.org/licenses/>. */
28f540f4
RM
17
18/*
19 * POSIX Standard: 9.2.1 Group Database Access <grp.h>
20 */
21
22#ifndef _GRP_H
28f540f4 23#define _GRP_H 1
5107cf1d 24
28f540f4
RM
25#include <features.h>
26
27__BEGIN_DECLS
28
5107cf1d 29#include <bits/types.h>
28f540f4 30
0f110f41
TBB
31#define __need_size_t
32#include <stddef.h>
33
28f540f4 34
9756dfe1 35/* For the Single Unix specification we must define this type here. */
7a80496f 36#if (defined __USE_XOPEN || defined __USE_XOPEN2K) && !defined __gid_t_defined
9756dfe1 37typedef __gid_t gid_t;
7df789e0 38# define __gid_t_defined
9756dfe1
UD
39#endif
40
28f540f4
RM
41/* The group structure. */
42struct group
43 {
44 char *gr_name; /* Group name. */
45 char *gr_passwd; /* Password. */
46 __gid_t gr_gid; /* Group ID. */
47 char **gr_mem; /* Member list. */
48 };
49
50
dfd2257a
UD
51#if defined __USE_SVID || defined __USE_GNU
52# define __need_FILE
53# include <stdio.h>
28f540f4
RM
54#endif
55
28f540f4 56
dfd2257a 57#if defined __USE_SVID || defined __USE_BSD || defined __USE_XOPEN_EXTENDED
2c008571 58/* Rewind the group-file stream.
28f540f4 59
2c008571
UD
60 This function is a possible cancellation point and therefore not
61 marked with __THROW. */
62extern void setgrent (void);
dfe11a13 63#endif
28f540f4 64
dfe11a13
UD
65#if defined __USE_SVID || defined __USE_BSD || defined __USE_XOPEN_EXTENDED \
66 || defined __USE_XOPEN2K8
2c008571
UD
67/* Close the group-file stream.
68
69 This function is a possible cancellation point and therefore not
70 marked with __THROW. */
71extern void endgrent (void);
72
73/* Read an entry from the group-file stream, opening it if necessary.
74
75 This function is a possible cancellation point and therefore not
76 marked with __THROW. */
77extern struct group *getgrent (void);
28f540f4
RM
78#endif
79
80#ifdef __USE_SVID
2c008571
UD
81/* Read a group entry from STREAM.
82
83 This function is not part of POSIX and therefore no official
84 cancellation point. But due to similarity with an POSIX interface
85 or due to the implementation it is a cancellation point and
86 therefore not marked with __THROW. */
87extern struct group *fgetgrent (FILE *__stream);
28f540f4
RM
88#endif
89
7ce241a0 90#ifdef __USE_GNU
2c008571
UD
91/* Write the given entry onto the given stream.
92
93 This function is not part of POSIX and therefore no official
94 cancellation point. But due to similarity with an POSIX interface
95 or due to the implementation it is a cancellation point and
96 therefore not marked with __THROW. */
a784e502 97extern int putgrent (const struct group *__restrict __p,
2c008571 98 FILE *__restrict __f);
7ce241a0
UD
99#endif
100
2c008571
UD
101/* Search for an entry with a matching group ID.
102
103 This function is a possible cancellation point and therefore not
104 marked with __THROW. */
105extern struct group *getgrgid (__gid_t __gid);
106
107/* Search for an entry with a matching group name.
28f540f4 108
2c008571
UD
109 This function is a possible cancellation point and therefore not
110 marked with __THROW. */
a784e502 111extern struct group *getgrnam (const char *__name);
28f540f4 112
19361cb7
UD
113#if defined __USE_POSIX || defined __USE_MISC
114
dfd2257a 115# ifdef __USE_MISC
23396375
UD
116/* Reasonable value for the buffer sized used in the reentrant
117 functions below. But better use `sysconf'. */
dfd2257a
UD
118# define NSS_BUFLEN_GROUP 1024
119# endif
23396375
UD
120
121/* Reentrant versions of some of the functions above.
122
84384f5b
UD
123 PLEASE NOTE: the `getgrent_r' function is not (yet) standardized.
124 The interface may change in later versions of this library. But
125 the interface is designed following the principals used for the
126 other reentrant functions so the chances are good this is what the
2c008571
UD
127 POSIX people would choose.
128
129 This function is not part of POSIX and therefore no official
130 cancellation point. But due to similarity with an POSIX interface
131 or due to the implementation it is a cancellation point and
132 therefore not marked with __THROW. */
23396375 133
0ed99ce4 134# ifdef __USE_GNU
c1422e5b
UD
135extern int getgrent_r (struct group *__restrict __resultbuf,
136 char *__restrict __buffer, size_t __buflen,
2c008571 137 struct group **__restrict __result);
dfd2257a 138# endif
23396375 139
2c008571
UD
140/* Search for an entry with a matching group ID.
141
142 This function is a possible cancellation point and therefore not
143 marked with __THROW. */
c1422e5b
UD
144extern int getgrgid_r (__gid_t __gid, struct group *__restrict __resultbuf,
145 char *__restrict __buffer, size_t __buflen,
2c008571
UD
146 struct group **__restrict __result);
147
148/* Search for an entry with a matching group name.
23396375 149
2c008571
UD
150 This function is a possible cancellation point and therefore not
151 marked with __THROW. */
a784e502 152extern int getgrnam_r (const char *__restrict __name,
c1422e5b
UD
153 struct group *__restrict __resultbuf,
154 char *__restrict __buffer, size_t __buflen,
2c008571 155 struct group **__restrict __result);
23396375 156
dfd2257a 157# ifdef __USE_SVID
84384f5b 158/* Read a group entry from STREAM. This function is not standardized
2c008571
UD
159 an probably never will.
160
161 This function is not part of POSIX and therefore no official
162 cancellation point. But due to similarity with an POSIX interface
163 or due to the implementation it is a cancellation point and
164 therefore not marked with __THROW. */
c1422e5b
UD
165extern int fgetgrent_r (FILE *__restrict __stream,
166 struct group *__restrict __resultbuf,
167 char *__restrict __buffer, size_t __buflen,
2c008571 168 struct group **__restrict __result);
dfd2257a 169# endif
a8922de8 170
9d187dd4 171#endif /* POSIX or reentrant */
23396375 172
28f540f4
RM
173
174#ifdef __USE_BSD
175
dfd2257a
UD
176# define __need_size_t
177# include <stddef.h>
28f540f4
RM
178
179/* Set the group set for the current user to GROUPS (N of them). */
a784e502 180extern int setgroups (size_t __n, const __gid_t *__groups) __THROW;
28f540f4 181
8fee1bb0
UD
182/* Store at most *NGROUPS members of the group set for USER into
183 *GROUPS. Also include GROUP. The actual number of groups found is
2c008571
UD
184 returned in *NGROUPS. Return -1 if the if *NGROUPS is too small.
185
186 This function is not part of POSIX and therefore no official
187 cancellation point. But due to similarity with an POSIX interface
188 or due to the implementation it is a cancellation point and
189 therefore not marked with __THROW. */
a784e502 190extern int getgrouplist (const char *__user, __gid_t __group,
2c008571 191 __gid_t *__groups, int *__ngroups);
8fee1bb0 192
28f540f4
RM
193/* Initialize the group set for the current user
194 by reading the group database and using all groups
2c008571
UD
195 of which USER is a member. Also include GROUP.
196
197 This function is not part of POSIX and therefore no official
198 cancellation point. But due to similarity with an POSIX interface
199 or due to the implementation it is a cancellation point and
200 therefore not marked with __THROW. */
a784e502 201extern int initgroups (const char *__user, __gid_t __group);
28f540f4
RM
202
203#endif /* Use BSD. */
204
205__END_DECLS
206
207#endif /* grp.h */