1 /* Copyright (C) 1989,1991,1993,1996-2006,2008,2010,2011
2 Free Software Foundation, Inc.
3 This file is part of the GNU C Library.
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.
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.
15 You should have received a copy of the GNU Lesser General Public
16 License along with the GNU C Library; if not, see
17 <http://www.gnu.org/licenses/>. */
27 #include <sys/param.h>
28 #include <sys/types.h>
31 #include "../nscd/nscd-client.h"
32 #include "../nscd/nscd_proto.h"
35 /* Type of the lookup function. */
36 typedef enum nss_status (*initgroups_dyn_function
) (const char *, gid_t
,
37 long int *, long int *,
38 gid_t
**, long int, int *);
40 /* The lookup function for the first entry of this service. */
41 extern int __nss_group_lookup (service_user
**nip
, const char *name
,
43 extern void *__nss_lookup_function (service_user
*ni
, const char *fct_name
);
45 extern service_user
*__nss_group_database attribute_hidden
;
46 service_user
*__nss_initgroups_database
;
47 static bool use_initgroups_entry
;
50 #include "compat-initgroups.c"
54 internal_getgrouplist (const char *user
, gid_t group
, long int *size
,
55 gid_t
**groupsp
, long int limit
)
58 if (__nss_not_use_nscd_group
> 0
59 && ++__nss_not_use_nscd_group
> NSS_NSCD_RETRY
)
60 __nss_not_use_nscd_group
= 0;
61 if (!__nss_not_use_nscd_group
62 && !__nss_database_custom
[NSS_DBSIDX_group
])
64 int n
= __nscd_getgrouplist (user
, group
, size
, groupsp
, limit
);
68 /* nscd is not usable. */
69 __nss_not_use_nscd_group
= 1;
73 enum nss_status status
= NSS_STATUS_UNAVAIL
;
76 /* Never store more than the starting *SIZE number of elements. */
78 (*groupsp
)[0] = group
;
79 /* Start is one, because we have the first group as parameter. */
82 if (__nss_initgroups_database
== NULL
)
84 if (__nss_database_lookup ("initgroups", NULL
, "",
85 &__nss_initgroups_database
) < 0)
87 if (__nss_group_database
== NULL
)
88 no_more
= __nss_database_lookup ("group", NULL
, "compat files",
89 &__nss_group_database
);
91 __nss_initgroups_database
= __nss_group_database
;
94 use_initgroups_entry
= true;
97 /* __nss_initgroups_database might have been set through
98 __nss_configure_lookup in which case use_initgroups_entry was
100 use_initgroups_entry
= __nss_initgroups_database
!= __nss_group_database
;
102 service_user
*nip
= __nss_initgroups_database
;
105 long int prev_start
= start
;
107 initgroups_dyn_function fct
= __nss_lookup_function (nip
,
110 status
= compat_call (nip
, user
, group
, &start
, size
, groupsp
,
113 status
= DL_CALL_FCT (fct
, (user
, group
, &start
, size
, groupsp
,
116 /* Remove duplicates. */
117 long int cnt
= prev_start
;
121 for (inner
= 0; inner
< prev_start
; ++inner
)
122 if ((*groupsp
)[inner
] == (*groupsp
)[cnt
])
125 if (inner
< prev_start
)
126 (*groupsp
)[cnt
] = (*groupsp
)[--start
];
131 /* This is really only for debugging. */
132 if (NSS_STATUS_TRYAGAIN
> status
|| status
> NSS_STATUS_RETURN
)
133 __libc_fatal ("illegal status in internal_getgrouplist");
135 /* For compatibility reason we will continue to look for more
136 entries using the next service even though data has already
137 been found if the nsswitch.conf file contained only a 'groups'
138 line and no 'initgroups' line. If the latter is available
139 we always respect the status. This means that the default
140 for successful lookups is to return. */
141 if ((use_initgroups_entry
|| status
!= NSS_STATUS_SUCCESS
)
142 && nss_next_action (nip
, status
) == NSS_ACTION_RETURN
)
145 if (nip
->next
== NULL
)
154 /* Store at most *NGROUPS members of the group set for USER into
155 *GROUPS. Also include GROUP. The actual number of groups found is
156 returned in *NGROUPS. Return -1 if the if *NGROUPS is too small. */
158 getgrouplist (const char *user
, gid_t group
, gid_t
*groups
, int *ngroups
)
160 long int size
= MAX (1, *ngroups
);
162 gid_t
*newgroups
= (gid_t
*) malloc (size
* sizeof (gid_t
));
163 if (__builtin_expect (newgroups
== NULL
, 0))
164 /* No more memory. */
165 // XXX This is wrong. The user provided memory, we have to use
166 // XXX it. The internal functions must be called with the user
167 // XXX provided buffer and not try to increase the size if it is
168 // XXX too small. For initgroups a flag could say: increase size.
171 int total
= internal_getgrouplist (user
, group
, &size
, &newgroups
, -1);
173 memcpy (groups
, newgroups
, MIN (*ngroups
, total
) * sizeof (gid_t
));
177 int retval
= total
> *ngroups
? -1 : total
;
183 static_link_warning (getgrouplist
)
185 /* Initialize the group set for the current user
186 by reading the group database and using all groups
187 of which USER is a member. Also include GROUP. */
189 initgroups (const char *user
, gid_t group
)
191 #if defined NGROUPS_MAX && NGROUPS_MAX == 0
193 /* No extra groups allowed. */
203 /* We always use sysconf even if NGROUPS_MAX is defined. That way, the
204 limit can be raised in the kernel configuration without having to
206 long int limit
= __sysconf (_SC_NGROUPS_MAX
);
209 /* We limit the size of the intially allocated array. */
210 size
= MIN (limit
, 64);
212 /* No fixed limit on groups. Pick a starting buffer size. */
215 groups
= (gid_t
*) malloc (size
* sizeof (gid_t
));
216 if (__builtin_expect (groups
== NULL
, 0))
217 /* No more memory. */
220 ngroups
= internal_getgrouplist (user
, group
, &size
, &groups
, limit
);
222 /* Try to set the maximum number of groups the kernel can handle. */
224 result
= setgroups (ngroups
, groups
);
225 while (result
== -1 && errno
== EINVAL
&& --ngroups
> 0);
233 static_link_warning (initgroups
)