blob: 82ad904921ffd37e910b766b0c38d5cc421d7866 [file] [log] [blame]
"Robert P. J. Day"63fc1a92006-07-02 19:47:05 +00001/* vi: set sw=4 ts=4: */
Eric Andersen9615a082004-07-15 12:53:49 +00002/* Copyright (C) 1991,92,95,96,97,98,99,2000,01 Free Software Foundation, Inc.
3 This file is part of the GNU C Library.
4
5 The GNU C Library is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Lesser General Public
7 License as published by the Free Software Foundation; either
8 version 2.1 of the License, or (at your option) any later version.
9
10 The GNU C Library is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 Lesser General Public License for more details.
14
15 You should have received a copy of the GNU Lesser General Public
16 License along with the GNU C Library; if not, write to the Free
17 Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
Denis Vlasenkof81e8db2009-04-09 12:35:13 +000018 02111-1307 USA.
19 */
Eric Andersen9615a082004-07-15 12:53:49 +000020/*
Denys Vlasenkofb132e42010-10-29 11:46:52 +020021 * POSIX Standard: 9.2.1 Group Database Access <grp.h>
Eric Andersen9615a082004-07-15 12:53:49 +000022 */
Denis Vlasenkof81e8db2009-04-09 12:35:13 +000023#ifndef BB_GRP_H
24#define BB_GRP_H 1
Eric Andersen9615a082004-07-15 12:53:49 +000025
Denis Vlasenkof81e8db2009-04-09 12:35:13 +000026PUSH_AND_SET_FUNCTION_VISIBILITY_TO_HIDDEN
Denis Vlasenko98636eb2008-05-09 17:59:34 +000027
Denis Vlasenkoee5dce32008-09-26 10:35:55 +000028/* This file is #included after #include <grp.h>
Bernhard Reutner-Fischerfd3552d2008-09-26 11:23:22 +000029 * We will use libc-defined structures, but will #define function names
Denis Vlasenkoee5dce32008-09-26 10:35:55 +000030 * so that function calls are directed to bb_internal_XXX replacements
31 */
Denys Vlasenko6b64a262012-01-06 16:23:18 +010032#undef endgrent
Denis Vlasenkocb04ff52006-12-30 21:11:57 +000033#define setgrent bb_internal_setgrent
34#define endgrent bb_internal_endgrent
35#define getgrent bb_internal_getgrent
36#define fgetgrent bb_internal_fgetgrent
37#define putgrent bb_internal_putgrent
38#define getgrgid bb_internal_getgrgid
39#define getgrnam bb_internal_getgrnam
40#define getgrent_r bb_internal_getgrent_r
41#define getgrgid_r bb_internal_getgrgid_r
42#define getgrnam_r bb_internal_getgrnam_r
43#define fgetgrent_r bb_internal_fgetgrent_r
44#define getgrouplist bb_internal_getgrouplist
45#define initgroups bb_internal_initgroups
46
47
48/* All function names below should be remapped by #defines above
Denis Vlasenkoee5dce32008-09-26 10:35:55 +000049 * in order to not collide with libc names. */
Denis Vlasenkocb04ff52006-12-30 21:11:57 +000050
Eric Andersenab050f52001-01-27 06:01:43 +000051
Eric Andersen9615a082004-07-15 12:53:49 +000052/* Rewind the group-file stream. */
Denis Vlasenkocb04ff52006-12-30 21:11:57 +000053extern void setgrent(void);
Eric Andersenab050f52001-01-27 06:01:43 +000054
Eric Andersen9615a082004-07-15 12:53:49 +000055/* Close the group-file stream. */
Denis Vlasenkocb04ff52006-12-30 21:11:57 +000056extern void endgrent(void);
Eric Andersenab050f52001-01-27 06:01:43 +000057
Denys Vlasenko55301292010-03-31 12:38:17 +020058#ifdef UNUSED_SINCE_WE_AVOID_STATIC_BUFS
Eric Andersen9615a082004-07-15 12:53:49 +000059/* Read an entry from the group-file stream, opening it if necessary. */
Denis Vlasenkocb04ff52006-12-30 21:11:57 +000060extern struct group *getgrent(void);
Eric Andersenab050f52001-01-27 06:01:43 +000061
Eric Andersen9615a082004-07-15 12:53:49 +000062/* Read a group entry from STREAM. */
Denis Vlasenkocb04ff52006-12-30 21:11:57 +000063extern struct group *fgetgrent(FILE *__stream);
Eric Andersenab050f52001-01-27 06:01:43 +000064
Eric Andersen9615a082004-07-15 12:53:49 +000065/* Write the given entry onto the given stream. */
Denis Vlasenkoee5dce32008-09-26 10:35:55 +000066extern int putgrent(const struct group *__restrict __p,
Eric Andersen9615a082004-07-15 12:53:49 +000067 FILE *__restrict __f);
Denys Vlasenko55301292010-03-31 12:38:17 +020068#endif
Eric Andersenab050f52001-01-27 06:01:43 +000069
Eric Andersen9615a082004-07-15 12:53:49 +000070/* Search for an entry with a matching group ID. */
Denis Vlasenkocb04ff52006-12-30 21:11:57 +000071extern struct group *getgrgid(gid_t __gid);
Eric Andersen9615a082004-07-15 12:53:49 +000072
73/* Search for an entry with a matching group name. */
Denis Vlasenkoee5dce32008-09-26 10:35:55 +000074extern struct group *getgrnam(const char *__name);
Eric Andersen9615a082004-07-15 12:53:49 +000075
76/* Reentrant versions of some of the functions above.
77
78 PLEASE NOTE: the `getgrent_r' function is not (yet) standardized.
79 The interface may change in later versions of this library. But
80 the interface is designed following the principals used for the
81 other reentrant functions so the chances are good this is what the
82 POSIX people would choose. */
83
Denis Vlasenkocb04ff52006-12-30 21:11:57 +000084extern int getgrent_r(struct group *__restrict __resultbuf,
Eric Andersen9615a082004-07-15 12:53:49 +000085 char *__restrict __buffer, size_t __buflen,
86 struct group **__restrict __result);
87
88/* Search for an entry with a matching group ID. */
Denis Vlasenkocb04ff52006-12-30 21:11:57 +000089extern int getgrgid_r(gid_t __gid, struct group *__restrict __resultbuf,
Eric Andersen9615a082004-07-15 12:53:49 +000090 char *__restrict __buffer, size_t __buflen,
91 struct group **__restrict __result);
92
93/* Search for an entry with a matching group name. */
Denis Vlasenkoee5dce32008-09-26 10:35:55 +000094extern int getgrnam_r(const char *__restrict __name,
Eric Andersen9615a082004-07-15 12:53:49 +000095 struct group *__restrict __resultbuf,
96 char *__restrict __buffer, size_t __buflen,
97 struct group **__restrict __result);
98
99/* Read a group entry from STREAM. This function is not standardized
100 an probably never will. */
Denis Vlasenkocb04ff52006-12-30 21:11:57 +0000101extern int fgetgrent_r(FILE *__restrict __stream,
Eric Andersen9615a082004-07-15 12:53:49 +0000102 struct group *__restrict __resultbuf,
103 char *__restrict __buffer, size_t __buflen,
104 struct group **__restrict __result);
105
Eric Andersen9615a082004-07-15 12:53:49 +0000106/* Store at most *NGROUPS members of the group set for USER into
107 *GROUPS. Also include GROUP. The actual number of groups found is
108 returned in *NGROUPS. Return -1 if the if *NGROUPS is too small. */
Denis Vlasenkoee5dce32008-09-26 10:35:55 +0000109extern int getgrouplist(const char *__user, gid_t __group,
Eric Andersen9615a082004-07-15 12:53:49 +0000110 gid_t *__groups, int *__ngroups);
111
112/* Initialize the group set for the current user
113 by reading the group database and using all groups
114 of which USER is a member. Also include GROUP. */
Denis Vlasenkoee5dce32008-09-26 10:35:55 +0000115extern int initgroups(const char *__user, gid_t __group);
Eric Andersen9615a082004-07-15 12:53:49 +0000116
Denis Vlasenkof81e8db2009-04-09 12:35:13 +0000117POP_SAVED_FUNCTION_VISIBILITY
Eric Andersen9615a082004-07-15 12:53:49 +0000118
Eric Andersen9615a082004-07-15 12:53:49 +0000119#endif