1 /* getugroups.c -- return a list of the groups a user is in
3 Copyright (C) 1990-1991, 1998-2000, 2003-2018 Free Software Foundation, Inc.
5 This program is free software: you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation; either version 3 of the License, or
8 (at your option) any later version.
10 This program 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
13 GNU General Public License for more details.
15 You should have received a copy of the GNU General Public License
16 along with this program. If not, see <https://www.gnu.org/licenses/>. */
18 /* Written by David MacKenzie. */
22 #include "getugroups.h"
26 #include <stdio.h> /* grp.h on alpha OSF1 V2.0 uses "FILE *". */
30 #if !HAVE_GRP_H || defined __ANDROID__
32 /* Mingw lacks all things related to group management. The best we
33 can do is fail with ENOSYS.
35 Bionic declares e.g. getgrent() in <grp.h> but it isn't actually
36 defined in the library. */
39 getugroups (int maxcount _GL_UNUSED
,
40 gid_t
*grouplist _GL_UNUSED
,
41 char const *username _GL_UNUSED
,
48 #else /* HAVE_GRP_H */
51 # define STREQ(a, b) (strcmp (a, b) == 0)
53 /* Like 'getgroups', but for user USERNAME instead of for the current
54 process. Store at most MAXCOUNT group IDs in the GROUPLIST array.
55 If GID is not -1, store it first (if possible). GID should be the
56 group ID (pw_gid) obtained from getpwuid, in case USERNAME is not
57 listed in /etc/groups. Upon failure, set errno and return -1.
58 Otherwise, return the number of IDs we've written into GROUPLIST. */
61 getugroups (int maxcount
, gid_t
*grouplist
, char const *username
,
66 if (gid
!= (gid_t
) -1)
69 grouplist
[count
] = gid
;
84 for (cp
= grp
->gr_mem
; *cp
; ++cp
)
88 if ( ! STREQ (username
, *cp
))
91 /* See if this group number is already on the list. */
92 for (n
= 0; n
< count
; ++n
)
93 if (grouplist
&& grouplist
[n
] == grp
->gr_gid
)
96 /* If it's a new group number, then try to add it to the list. */
101 if (count
>= maxcount
)
103 grouplist
[count
] = grp
->gr_gid
;
105 if (count
== INT_MAX
)
120 int saved_errno
= errno
;
128 #endif /* HAVE_GRP_H */