2 Unix SMB/CIFS implementation.
3 system call wrapper interface.
4 Copyright (C) Andrew Tridgell 2002
5 Copyright (C) Andrew Barteltt 2002
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 3 of the License, or
10 (at your option) any later version.
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with this program. If not, see <http://www.gnu.org/licenses/>.
22 This file may assume linkage with smbd - for things like become_root()
27 #include "system/passwd.h"
28 #include "nsswitch/winbind_client.h"
29 #include "../lib/util/setid.h"
31 #ifndef HAVE_GETGROUPLIST
34 static int getgrouplist_getgrset(const char *user
, gid_t gid
, gid_t
*groups
,
44 grplist
= getgrset(user
);
46 DEBUG(10, ("getgrset returned %s\n", grplist
));
48 if (grplist
== NULL
) {
56 while ((grp
= strsep(&grplist
, ",")) != NULL
) {
57 l
= strtol(grp
, NULL
, 10);
59 if (temp_gid
== gid
) {
63 if (num_gids
+ 1 > *grpcnt
) {
67 groups
[num_gids
++] = temp_gid
;
71 if (num_gids
> *grpcnt
) {
76 DEBUG(10, ("Found %d groups for user %s\n", *grpcnt
, user
));
81 #else /* HAVE_GETGRSET */
84 This is a *much* faster way of getting the list of groups for a user
85 without changing the current supplementary group list. The old
86 method used getgrent() which could take 20 minutes on a really big
87 network with hundeds of thousands of groups and users. The new method
88 takes a couple of seconds.
90 NOTE!! this function only works if it is called as root!
93 static int getgrouplist_internals(const char *user
, gid_t gid
, gid_t
*groups
,
97 int ret
, ngrp_saved
, num_gids
;
99 if (non_root_mode()) {
104 /* work out how many groups we need to save */
105 ngrp_saved
= getgroups(0, NULL
);
106 if (ngrp_saved
== -1) {
107 /* this shouldn't happen */
111 gids_saved
= SMB_MALLOC_ARRAY(gid_t
, ngrp_saved
+1);
117 ngrp_saved
= getgroups(ngrp_saved
, gids_saved
);
118 if (ngrp_saved
== -1) {
119 SAFE_FREE(gids_saved
);
124 if (initgroups(user
, gid
) == -1) {
125 DEBUG(0, ("getgrouplist_internals: initgroups() failed!\n"));
126 SAFE_FREE(gids_saved
);
130 /* this must be done to cope with systems that put the current egid in the
131 return from getgroups() */
133 set_effective_gid(gid
);
136 num_gids
= getgroups(0, NULL
);
137 if (num_gids
== -1) {
138 SAFE_FREE(gids_saved
);
143 if (num_gids
+ 1 > *grpcnt
) {
144 *grpcnt
= num_gids
+ 1;
147 ret
= getgroups(*grpcnt
- 1, &groups
[1]);
149 SAFE_FREE(gids_saved
);
159 if (sys_setgroups(gid
, ngrp_saved
, gids_saved
) != 0) {
161 DEBUG(0,("ERROR: getgrouplist: failed to reset group list!\n"));
162 smb_panic("getgrouplist: failed to reset group list!");
168 #endif /* HAVE_GETGRSET */
169 #endif /* HAVE_GETGROUPLIST */
171 static int sys_getgrouplist(const char *user
, gid_t gid
, gid_t
*groups
, int *grpcnt
)
176 DEBUG(10,("sys_getgrouplist: user [%s]\n", user
));
178 /* This is only ever called for Unix users, remote memberships are
179 * always determined by the info3 coming back from auth3 or the
181 winbind_env
= winbind_env_set();
184 #ifdef HAVE_GETGROUPLIST
185 retval
= getgrouplist(user
, gid
, groups
, grpcnt
);
188 retval
= getgrouplist_getgrset(user
, gid
, groups
, grpcnt
);
191 retval
= getgrouplist_internals(user
, gid
, groups
, grpcnt
);
193 #endif /* HAVE_GETGRSET */
194 #endif /* HAVE_GETGROUPLIST */
196 /* allow winbindd lookups, but only if they were not already disabled */
204 bool getgroups_unix_user(TALLOC_CTX
*mem_ctx
, const char *user
,
206 gid_t
**ret_groups
, uint32_t *p_ngroups
)
214 max_grp
= MIN(128, groups_max());
215 temp_groups
= SMB_MALLOC_ARRAY(gid_t
, max_grp
);
220 if (sys_getgrouplist(user
, primary_gid
, temp_groups
, &max_grp
) == -1) {
221 temp_groups
= SMB_REALLOC_ARRAY(temp_groups
, gid_t
, max_grp
);
226 if (sys_getgrouplist(user
, primary_gid
,
227 temp_groups
, &max_grp
) == -1) {
228 DEBUG(0, ("get_user_groups: failed to get the unix "
230 SAFE_FREE(temp_groups
);
238 /* Add in primary group first */
239 if (!add_gid_to_array_unique(mem_ctx
, primary_gid
, &groups
, &ngrp
)) {
240 SAFE_FREE(temp_groups
);
244 for (i
=0; i
<max_grp
; i
++) {
245 if (!add_gid_to_array_unique(mem_ctx
, temp_groups
[i
],
247 SAFE_FREE(temp_groups
);
253 *ret_groups
= groups
;
254 SAFE_FREE(temp_groups
);