source: trunk/server/source3/lib/system_smbd.c@ 480

Last change on this file since 480 was 454, checked in by Silvan Scherrer, 16 years ago

Samba Server 3.5: merged changes from 3.3

File size: 4.7 KB
Line 
1/*
2 Unix SMB/CIFS implementation.
3 system call wrapper interface.
4 Copyright (C) Andrew Tridgell 2002
5 Copyright (C) Andrew Barteltt 2002
6
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.
11
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.
16
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/>.
19*/
20
21/*
22 This file may assume linkage with smbd - for things like become_root()
23 etc.
24*/
25
26#include "includes.h"
27
28#ifndef HAVE_GETGROUPLIST
29
30/*
31 This is a *much* faster way of getting the list of groups for a user
32 without changing the current supplementary group list. The old
33 method used getgrent() which could take 20 minutes on a really big
34 network with hundeds of thousands of groups and users. The new method
35 takes a couple of seconds.
36
37 NOTE!! this function only works if it is called as root!
38 */
39
40static int getgrouplist_internals(const char *user, gid_t gid, gid_t *groups,
41 int *grpcnt)
42{
43#ifndef __OS2__groups
44 gid_t *gids_saved;
45 int ret, ngrp_saved, num_gids;
46
47 if (non_root_mode()) {
48 *grpcnt = 0;
49 return 0;
50 }
51
52 /* work out how many groups we need to save */
53 ngrp_saved = getgroups(0, NULL);
54 if (ngrp_saved == -1) {
55 /* this shouldn't happen */
56 return -1;
57 }
58
59 gids_saved = SMB_MALLOC_ARRAY(gid_t, ngrp_saved+1);
60 if (!gids_saved) {
61 errno = ENOMEM;
62 return -1;
63 }
64
65 ngrp_saved = getgroups(ngrp_saved, gids_saved);
66 if (ngrp_saved == -1) {
67 SAFE_FREE(gids_saved);
68 /* very strange! */
69 return -1;
70 }
71
72 if (initgroups(user, gid) != 0) {
73 DEBUG(0, ("getgrouplist_internals: initgroups() failed!\n"));
74 SAFE_FREE(gids_saved);
75 return -1;
76 }
77
78 /* this must be done to cope with systems that put the current egid in the
79 return from getgroups() */
80 save_re_gid();
81 set_effective_gid(gid);
82 setgid(gid);
83
84 num_gids = getgroups(0, NULL);
85 if (num_gids == -1) {
86 SAFE_FREE(gids_saved);
87 /* very strange! */
88 return -1;
89 }
90
91 if (num_gids + 1 > *grpcnt) {
92 *grpcnt = num_gids + 1;
93 ret = -1;
94 } else {
95 ret = getgroups(*grpcnt - 1, &groups[1]);
96 if (ret < 0) {
97 SAFE_FREE(gids_saved);
98 /* very strange! */
99 return -1;
100 }
101 groups[0] = gid;
102 *grpcnt = ret + 1;
103 }
104
105 restore_re_gid();
106
107 if (sys_setgroups(gid, ngrp_saved, gids_saved) != 0) {
108 /* yikes! */
109 DEBUG(0,("ERROR: getgrouplist: failed to reset group list!\n"));
110 smb_panic("getgrouplist: failed to reset group list!");
111 }
112
113 free(gids_saved);
114 return ret;
115#else
116 *grpcnt = 0;
117 return 0;
118#endif
119}
120#endif
121
122static int sys_getgrouplist(const char *user, gid_t gid, gid_t *groups, int *grpcnt)
123{
124 int retval;
125 bool winbind_env;
126
127 DEBUG(10,("sys_getgrouplist: user [%s]\n", user));
128
129 /* This is only ever called for Unix users, remote memberships are
130 * always determined by the info3 coming back from auth3 or the
131 * PAC. */
132 winbind_env = winbind_env_set();
133 (void)winbind_off();
134
135#ifdef HAVE_GETGROUPLIST
136 retval = getgrouplist(user, gid, groups, grpcnt);
137#else
138 become_root();
139 retval = getgrouplist_internals(user, gid, groups, grpcnt);
140 unbecome_root();
141#endif
142
143 /* allow winbindd lookups, but only if they were not already disabled */
144 if (!winbind_env) {
145 (void)winbind_on();
146 }
147
148 return retval;
149}
150
151bool getgroups_unix_user(TALLOC_CTX *mem_ctx, const char *user,
152 gid_t primary_gid,
153 gid_t **ret_groups, size_t *p_ngroups)
154{
155 size_t ngrp;
156 int max_grp;
157 gid_t *temp_groups;
158 gid_t *groups;
159 int i;
160
161 max_grp = MIN(128, groups_max());
162 temp_groups = SMB_MALLOC_ARRAY(gid_t, max_grp);
163 if (! temp_groups) {
164 return False;
165 }
166
167 if (sys_getgrouplist(user, primary_gid, temp_groups, &max_grp) == -1) {
168 temp_groups = SMB_REALLOC_ARRAY(temp_groups, gid_t, max_grp);
169 if (!temp_groups) {
170 return False;
171 }
172
173 if (sys_getgrouplist(user, primary_gid,
174 temp_groups, &max_grp) == -1) {
175 DEBUG(0, ("get_user_groups: failed to get the unix "
176 "group list\n"));
177 SAFE_FREE(temp_groups);
178 return False;
179 }
180 }
181
182 ngrp = 0;
183 groups = NULL;
184
185 /* Add in primary group first */
186 if (!add_gid_to_array_unique(mem_ctx, primary_gid, &groups, &ngrp)) {
187 SAFE_FREE(temp_groups);
188 return False;
189 }
190
191 for (i=0; i<max_grp; i++) {
192 if (!add_gid_to_array_unique(mem_ctx, temp_groups[i],
193 &groups, &ngrp)) {
194 SAFE_FREE(temp_groups);
195 return False;
196 }
197 }
198
199 *p_ngroups = ngrp;
200 *ret_groups = groups;
201 SAFE_FREE(temp_groups);
202 return True;
203}
Note: See TracBrowser for help on using the repository browser.