source: trunk-3.0/source/lib/system_smbd.c@ 102

Last change on this file since 102 was 1, checked in by Paul Smedley, 18 years ago

Initial code import

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