2 Unix SMB/CIFS implementation.
4 Copyright (C) Tim Potter 2000
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 3 of the License, or
9 (at your option) any later version.
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with this program. If not, see <http://www.gnu.org/licenses/>.
22 extern struct current_user current_user
;
29 /* A stack of security contexts. We include the current context as being
30 the first one, so there is room for another MAX_SEC_CTX_DEPTH more. */
32 static struct sec_ctx sec_ctx_stack
[MAX_SEC_CTX_DEPTH
+ 1];
33 static int sec_ctx_stack_ndx
;
35 /****************************************************************************
36 Are two UNIX tokens equal ?
37 ****************************************************************************/
39 bool unix_token_equal(const UNIX_USER_TOKEN
*t1
, const UNIX_USER_TOKEN
*t2
)
41 if (t1
->uid
!= t2
->uid
|| t1
->gid
!= t2
->gid
||
42 t1
->ngroups
!= t2
->ngroups
) {
45 if (memcmp(t1
->groups
, t2
->groups
,
46 t1
->ngroups
*sizeof(gid_t
)) != 0) {
52 /****************************************************************************
53 Become the specified uid.
54 ****************************************************************************/
56 static bool become_uid(uid_t uid
)
58 /* Check for dodgy uid values */
60 if (uid
== (uid_t
)-1 ||
61 ((sizeof(uid_t
) == 2) && (uid
== (uid_t
)65535))) {
65 DEBUG(1,("WARNING: using uid %d is a security risk\n",
71 /* Set effective user id */
73 set_effective_uid(uid
);
75 DO_PROFILE_INC(uid_changes
);
79 /****************************************************************************
80 Become the specified gid.
81 ****************************************************************************/
83 static bool become_gid(gid_t gid
)
85 /* Check for dodgy gid values */
87 if (gid
== (gid_t
)-1 || ((sizeof(gid_t
) == 2) &&
88 (gid
== (gid_t
)65535))) {
92 DEBUG(1,("WARNING: using gid %d is a security risk\n",
98 /* Set effective group id */
100 set_effective_gid(gid
);
104 /****************************************************************************
105 Become the specified uid and gid.
106 ****************************************************************************/
108 static bool become_id(uid_t uid
, gid_t gid
)
110 return become_gid(gid
) && become_uid(uid
);
113 /****************************************************************************
114 Drop back to root privileges in order to change to another user.
115 ****************************************************************************/
117 static void gain_root(void)
119 if (non_root_mode()) {
123 if (geteuid() != 0) {
124 set_effective_uid(0);
126 if (geteuid() != 0) {
128 ("Warning: You appear to have a trapdoor "
133 if (getegid() != 0) {
134 set_effective_gid(0);
136 if (getegid() != 0) {
138 ("Warning: You appear to have a trapdoor "
144 /****************************************************************************
145 Get the list of current groups.
146 ****************************************************************************/
148 static int get_current_groups(gid_t gid
, int *p_ngroups
, gid_t
**p_groups
)
153 gid_t
*groups
= NULL
;
158 /* this looks a little strange, but is needed to cope with
159 systems that put the current egid in the group list
160 returned from getgroups() (tridge) */
162 set_effective_gid(gid
);
165 ngroups
= sys_getgroups(0,&grp
);
170 if((groups
= SMB_MALLOC_ARRAY(gid_t
, ngroups
+1)) == NULL
) {
171 DEBUG(0,("setup_groups malloc fail !\n"));
175 if ((ngroups
= sys_getgroups(ngroups
,groups
)) == -1) {
181 (*p_ngroups
) = ngroups
;
182 (*p_groups
) = groups
;
184 DEBUG( 3, ( "get_current_groups: user is in %u groups: ", ngroups
));
185 for (i
= 0; i
< ngroups
; i
++ ) {
186 DEBUG( 3, ( "%s%d", (i
? ", " : ""), (int)groups
[i
] ) );
188 DEBUG( 3, ( "\n" ) );
198 /****************************************************************************
199 Create a new security context on the stack. It is the same as the old
200 one. User changes are done using the set_sec_ctx() function.
201 ****************************************************************************/
203 bool push_sec_ctx(void)
205 struct sec_ctx
*ctx_p
;
207 /* Check we don't overflow our stack */
209 if (sec_ctx_stack_ndx
== MAX_SEC_CTX_DEPTH
) {
210 DEBUG(0, ("Security context stack overflow!\n"));
211 smb_panic("Security context stack overflow!");
214 /* Store previous user context */
218 ctx_p
= &sec_ctx_stack
[sec_ctx_stack_ndx
];
220 ctx_p
->ut
.uid
= geteuid();
221 ctx_p
->ut
.gid
= getegid();
223 DEBUG(3, ("push_sec_ctx(%u, %u) : sec_ctx_stack_ndx = %d\n",
224 (unsigned int)ctx_p
->ut
.uid
, (unsigned int)ctx_p
->ut
.gid
, sec_ctx_stack_ndx
));
226 ctx_p
->token
= dup_nt_token(NULL
,
227 sec_ctx_stack
[sec_ctx_stack_ndx
-1].token
);
229 ctx_p
->ut
.ngroups
= sys_getgroups(0, NULL
);
231 if (ctx_p
->ut
.ngroups
!= 0) {
232 if (!(ctx_p
->ut
.groups
= SMB_MALLOC_ARRAY(gid_t
, ctx_p
->ut
.ngroups
))) {
233 DEBUG(0, ("Out of memory in push_sec_ctx()\n"));
234 TALLOC_FREE(ctx_p
->token
);
238 sys_getgroups(ctx_p
->ut
.ngroups
, ctx_p
->ut
.groups
);
240 ctx_p
->ut
.groups
= NULL
;
246 /****************************************************************************
247 Change UNIX security context. Calls panic if not successful so no return value.
248 ****************************************************************************/
250 #ifndef HAVE_DARWIN_INITGROUPS
252 /* Normal credential switch path. */
254 static void set_unix_security_ctx(uid_t uid
, gid_t gid
, int ngroups
, gid_t
*groups
)
256 /* Start context switch */
258 #ifdef HAVE_SETGROUPS
259 if (sys_setgroups(gid
, ngroups
, groups
) != 0 && !non_root_mode()) {
260 smb_panic("sys_setgroups failed");
264 /* end context switch */
267 #else /* HAVE_DARWIN_INITGROUPS */
269 /* The Darwin groups implementation is a little unusual. The list of
270 * groups in the kernel credential is not exhaustive, but more like
271 * a cache. The full group list is held in userspace and checked
274 * This is an optional mechanism, and setgroups(2) opts out
275 * of it. That is, if you call setgroups, then the list of groups you
276 * set are the only groups that are ever checked. This is not what we
277 * want. We want to opt in to the dynamic resolution mechanism, so we
278 * need to specify the uid of the user whose group list (cache) we are
281 * The Darwin rules are:
282 * 1. Thou shalt setegid, initgroups and seteuid IN THAT ORDER
283 * 2. Thou shalt not pass more that NGROUPS_MAX to initgroups
284 * 3. Thou shalt leave the first entry in the groups list well alone
287 #include <sys/syscall.h>
289 static void set_unix_security_ctx(uid_t uid
, gid_t gid
, int ngroups
, gid_t
*groups
)
291 int max
= groups_max();
293 /* Start context switch */
299 if (syscall(SYS_initgroups
, (ngroups
> max
) ? max
: ngroups
,
300 groups
, uid
) == -1 && !non_root_mode()) {
301 DEBUG(0, ("WARNING: failed to set group list "
302 "(%d groups) for UID %ld: %s\n",
303 ngroups
, uid
, strerror(errno
)));
304 smb_panic("sys_setgroups failed");
308 /* end context switch */
311 #endif /* HAVE_DARWIN_INITGROUPS */
313 /****************************************************************************
314 Set the current security context to a given user.
315 ****************************************************************************/
317 void set_sec_ctx(uid_t uid
, gid_t gid
, int ngroups
, gid_t
*groups
, NT_USER_TOKEN
*token
)
319 struct sec_ctx
*ctx_p
= &sec_ctx_stack
[sec_ctx_stack_ndx
];
321 /* Set the security context */
323 DEBUG(3, ("setting sec ctx (%u, %u) - sec_ctx_stack_ndx = %d\n",
324 (unsigned int)uid
, (unsigned int)gid
, sec_ctx_stack_ndx
));
326 debug_nt_user_token(DBGC_CLASS
, 5, token
);
327 debug_unix_user_token(DBGC_CLASS
, 5, uid
, gid
, ngroups
, groups
);
329 /* Change uid, gid and supplementary group list. */
330 set_unix_security_ctx(uid
, gid
, ngroups
, groups
);
332 ctx_p
->ut
.ngroups
= ngroups
;
334 SAFE_FREE(ctx_p
->ut
.groups
);
335 if (token
&& (token
== ctx_p
->token
)) {
336 smb_panic("DUPLICATE_TOKEN");
339 TALLOC_FREE(ctx_p
->token
);
342 ctx_p
->ut
.groups
= (gid_t
*)memdup(groups
,
343 sizeof(gid_t
) * ngroups
);
344 if (!ctx_p
->ut
.groups
) {
345 smb_panic("memdup failed");
348 ctx_p
->ut
.groups
= NULL
;
352 ctx_p
->token
= dup_nt_token(NULL
, token
);
354 smb_panic("dup_nt_token failed");
363 /* Update current_user stuff */
365 current_user
.ut
.uid
= uid
;
366 current_user
.ut
.gid
= gid
;
367 current_user
.ut
.ngroups
= ngroups
;
368 current_user
.ut
.groups
= groups
;
369 current_user
.nt_user_token
= ctx_p
->token
;
372 /****************************************************************************
374 ****************************************************************************/
376 void set_root_sec_ctx(void)
378 /* May need to worry about supplementary groups at some stage */
380 set_sec_ctx(0, 0, 0, NULL
, NULL
);
383 /****************************************************************************
384 Pop a security context from the stack.
385 ****************************************************************************/
387 bool pop_sec_ctx(void)
389 struct sec_ctx
*ctx_p
;
390 struct sec_ctx
*prev_ctx_p
;
392 /* Check for stack underflow */
394 if (sec_ctx_stack_ndx
== 0) {
395 DEBUG(0, ("Security context stack underflow!\n"));
396 smb_panic("Security context stack underflow!");
399 ctx_p
= &sec_ctx_stack
[sec_ctx_stack_ndx
];
401 /* Clear previous user info */
403 ctx_p
->ut
.uid
= (uid_t
)-1;
404 ctx_p
->ut
.gid
= (gid_t
)-1;
406 SAFE_FREE(ctx_p
->ut
.groups
);
407 ctx_p
->ut
.ngroups
= 0;
409 TALLOC_FREE(ctx_p
->token
);
411 /* Pop back previous user */
415 prev_ctx_p
= &sec_ctx_stack
[sec_ctx_stack_ndx
];
417 /* Change uid, gid and supplementary group list. */
418 set_unix_security_ctx(prev_ctx_p
->ut
.uid
,
420 prev_ctx_p
->ut
.ngroups
,
421 prev_ctx_p
->ut
.groups
);
423 /* Update current_user stuff */
425 current_user
.ut
.uid
= prev_ctx_p
->ut
.uid
;
426 current_user
.ut
.gid
= prev_ctx_p
->ut
.gid
;
427 current_user
.ut
.ngroups
= prev_ctx_p
->ut
.ngroups
;
428 current_user
.ut
.groups
= prev_ctx_p
->ut
.groups
;
429 current_user
.nt_user_token
= prev_ctx_p
->token
;
431 DEBUG(3, ("pop_sec_ctx (%u, %u) - sec_ctx_stack_ndx = %d\n",
432 (unsigned int)geteuid(), (unsigned int)getegid(), sec_ctx_stack_ndx
));
437 /* Initialise the security context system */
439 void init_sec_ctx(void)
442 struct sec_ctx
*ctx_p
;
444 /* Initialise security context stack */
446 memset(sec_ctx_stack
, 0, sizeof(struct sec_ctx
) * MAX_SEC_CTX_DEPTH
);
448 for (i
= 0; i
< MAX_SEC_CTX_DEPTH
; i
++) {
449 sec_ctx_stack
[i
].ut
.uid
= (uid_t
)-1;
450 sec_ctx_stack
[i
].ut
.gid
= (gid_t
)-1;
453 /* Initialise first level of stack. It is the current context */
454 ctx_p
= &sec_ctx_stack
[0];
456 ctx_p
->ut
.uid
= geteuid();
457 ctx_p
->ut
.gid
= getegid();
459 get_current_groups(ctx_p
->ut
.gid
, &ctx_p
->ut
.ngroups
, &ctx_p
->ut
.groups
);
461 ctx_p
->token
= NULL
; /* Maps to guest user. */
463 /* Initialise current_user global */
465 current_user
.ut
.uid
= ctx_p
->ut
.uid
;
466 current_user
.ut
.gid
= ctx_p
->ut
.gid
;
467 current_user
.ut
.ngroups
= ctx_p
->ut
.ngroups
;
468 current_user
.ut
.groups
= ctx_p
->ut
.groups
;
470 /* The conn and vuid are usually taken care of by other modules.
471 We initialise them here. */
473 current_user
.conn
= NULL
;
474 current_user
.vuid
= UID_FIELD_INVALID
;
475 current_user
.nt_user_token
= NULL
;