2 Unix SMB/Netbios implementation.
5 Copyright (C) Tim Potter 2000
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.
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, write to the Free Software
19 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
24 extern int DEBUGLEVEL
;
25 extern struct current_user current_user
;
35 /* A stack of security contexts. We include the current context as being
36 the first one, so there is room for another MAX_SEC_CTX_DEPTH more. */
38 static struct sec_ctx sec_ctx_stack
[MAX_SEC_CTX_DEPTH
+ 1];
39 static int sec_ctx_stack_ndx
;
41 /****************************************************************************
42 Become the specified uid.
43 ****************************************************************************/
45 static BOOL
become_uid(uid_t uid
)
47 /* Check for dodgy uid values */
49 if (uid
== (uid_t
)-1 ||
50 ((sizeof(uid_t
) == 2) && (uid
== (uid_t
)65535))) {
54 DEBUG(1,("WARNING: using uid %d is a security risk\n",
60 /* Set effective user id */
62 set_effective_uid(uid
);
63 current_user
.uid
= uid
;
65 DO_PROFILE_INC(uid_changes
);
70 /****************************************************************************
71 Become the specified gid.
72 ****************************************************************************/
74 static BOOL
become_gid(gid_t gid
)
76 /* Check for dodgy gid values */
78 if (gid
== (gid_t
)-1 || ((sizeof(gid_t
) == 2) &&
79 (gid
== (gid_t
)65535))) {
83 DEBUG(1,("WARNING: using gid %d is a security risk\n",
89 /* Set effective group id */
91 set_effective_gid(gid
);
92 current_user
.gid
= gid
;
97 /****************************************************************************
98 Become the specified uid and gid.
99 ****************************************************************************/
101 static BOOL
become_id(uid_t uid
, gid_t gid
)
103 return become_gid(gid
) && become_uid(uid
);
106 /****************************************************************************
107 Drop back to root privileges in order to change to another user.
108 ****************************************************************************/
110 static void gain_root(void)
112 if (geteuid() != 0) {
113 set_effective_uid(0);
115 if (geteuid() != 0) {
117 ("Warning: You appear to have a trapdoor "
122 if (getegid() != 0) {
123 set_effective_gid(0);
125 if (getegid() != 0) {
127 ("Warning: You appear to have a trapdoor "
133 /****************************************************************************
134 Get the list of current groups.
135 ****************************************************************************/
137 int get_current_groups(int *p_ngroups
, gid_t
**p_groups
)
141 int ngroups
= sys_getgroups(0,&grp
);
150 if((groups
= (gid_t
*)malloc(sizeof(gid_t
)*ngroups
)) == NULL
) {
151 DEBUG(0,("setup_groups malloc fail !\n"));
155 if ((ngroups
= sys_getgroups(ngroups
,groups
)) == -1) {
160 (*p_ngroups
) = ngroups
;
161 (*p_groups
) = groups
;
163 DEBUG( 3, ( "get_current_groups: uid %u is in %u groups: ", (unsigned int)getuid() , ngroups
) );
164 for (i
= 0; i
< ngroups
; i
++ ) {
165 DEBUG( 3, ( "%s%d", (i
? ", " : ""), (int)groups
[i
] ) );
167 DEBUG( 3, ( "\n" ) );
172 /****************************************************************************
174 ****************************************************************************/
176 void delete_nt_token(NT_USER_TOKEN
**pptoken
)
179 NT_USER_TOKEN
*ptoken
= *pptoken
;
180 safe_free( ptoken
->user_sids
);
181 ZERO_STRUCTP(ptoken
);
187 /****************************************************************************
188 Duplicate a SID token.
189 ****************************************************************************/
191 NT_USER_TOKEN
*dup_nt_token(NT_USER_TOKEN
*ptoken
)
193 NT_USER_TOKEN
*token
;
198 if ((token
= (NT_USER_TOKEN
*)malloc( sizeof(NT_USER_TOKEN
) ) ) == NULL
)
203 if ((token
->user_sids
= (DOM_SID
*)memdup( ptoken
->user_sids
, sizeof(DOM_SID
) * ptoken
->num_sids
)) == NULL
) {
208 token
->num_sids
= ptoken
->num_sids
;
213 /****************************************************************************
214 Initialize the groups a user belongs to.
215 ****************************************************************************/
217 BOOL
initialise_groups(char *user
, uid_t uid
, gid_t gid
)
219 struct sec_ctx
*prev_ctx_p
;
224 /* Call initgroups() to get user groups */
226 if (winbind_initgroups(user
,gid
) == -1) {
227 DEBUG(0,("Unable to initgroups. Error was %s\n", strerror(errno
) ));
229 if (gid
< 0 || gid
> 32767 || uid
< 0 || uid
> 32767) {
230 DEBUG(0,("This is probably a problem with the account %s\n", user
));
237 /* Store groups in previous user's security context. This will
238 always work as the become_root() call increments the stack
241 prev_ctx_p
= &sec_ctx_stack
[sec_ctx_stack_ndx
- 1];
243 safe_free(prev_ctx_p
->groups
);
244 prev_ctx_p
->groups
= NULL
;
245 prev_ctx_p
->ngroups
= 0;
247 get_current_groups(&prev_ctx_p
->ngroups
, &prev_ctx_p
->groups
);
255 /****************************************************************************
256 Create a new security context on the stack. It is the same as the old
257 one. User changes are done using the set_sec_ctx() function.
258 ****************************************************************************/
260 BOOL
push_sec_ctx(void)
262 struct sec_ctx
*ctx_p
;
264 /* Check we don't overflow our stack */
266 if (sec_ctx_stack_ndx
== MAX_SEC_CTX_DEPTH
) {
267 DEBUG(0, ("Security context stack overflow!\n"));
268 smb_panic("Security context stack overflow!\n");
271 /* Store previous user context */
275 ctx_p
= &sec_ctx_stack
[sec_ctx_stack_ndx
];
277 ctx_p
->uid
= geteuid();
278 ctx_p
->gid
= getegid();
280 DEBUG(3, ("push_sec_ctx(%u, %u) : sec_ctx_stack_ndx = %d\n",
281 (unsigned int)ctx_p
->uid
, (unsigned int)ctx_p
->gid
, sec_ctx_stack_ndx
));
283 ctx_p
->token
= dup_nt_token(sec_ctx_stack
[sec_ctx_stack_ndx
-1].token
);
285 ctx_p
->ngroups
= sys_getgroups(0, NULL
);
287 if (ctx_p
->ngroups
!= 0) {
288 if (!(ctx_p
->groups
= malloc(ctx_p
->ngroups
* sizeof(gid_t
)))) {
289 DEBUG(0, ("Out of memory in push_sec_ctx()\n"));
290 delete_nt_token(&ctx_p
->token
);
294 sys_getgroups(ctx_p
->ngroups
, ctx_p
->groups
);
296 ctx_p
->groups
= NULL
;
302 /****************************************************************************
303 Set the current security context to a given user.
304 ****************************************************************************/
306 void set_sec_ctx(uid_t uid
, gid_t gid
, int ngroups
, gid_t
*groups
, NT_USER_TOKEN
*token
)
308 struct sec_ctx
*ctx_p
= &sec_ctx_stack
[sec_ctx_stack_ndx
];
310 /* Set the security context */
312 DEBUG(3, ("setting sec ctx (%u, %u) - sec_ctx_stack_ndx = %d\n",
313 (unsigned int)uid
, (unsigned int)gid
, sec_ctx_stack_ndx
));
318 DEBUG(3, ("%d user groups: \n", ngroups
));
319 for (i
= 0; i
< ngroups
; i
++) {
320 DEBUGADD(3, ("%u ", (unsigned int)groups
[i
]));
329 #ifdef HAVE_SETGROUPS
330 sys_setgroups(ngroups
, groups
);
333 ctx_p
->ngroups
= ngroups
;
335 safe_free(ctx_p
->groups
);
336 if (token
&& (token
== ctx_p
->token
))
337 smb_panic("DUPLICATE_TOKEN");
339 delete_nt_token(&ctx_p
->token
);
341 ctx_p
->groups
= memdup(groups
, sizeof(gid_t
) * ngroups
);
342 ctx_p
->token
= dup_nt_token(token
);
349 /* Update current_user stuff */
351 current_user
.uid
= uid
;
352 current_user
.gid
= gid
;
353 current_user
.ngroups
= ngroups
;
354 current_user
.groups
= groups
;
355 current_user
.nt_user_token
= token
;
358 /****************************************************************************
360 ****************************************************************************/
362 void set_root_sec_ctx(void)
364 /* May need to worry about supplementary groups at some stage */
366 set_sec_ctx(0, 0, 0, NULL
, NULL
);
369 /****************************************************************************
370 Pop a security context from the stack.
371 ****************************************************************************/
373 BOOL
pop_sec_ctx(void)
375 struct sec_ctx
*ctx_p
;
376 struct sec_ctx
*prev_ctx_p
;
378 /* Check for stack underflow */
380 if (sec_ctx_stack_ndx
== 0) {
381 DEBUG(0, ("Security context stack underflow!\n"));
382 smb_panic("Security context stack underflow!\n");
385 ctx_p
= &sec_ctx_stack
[sec_ctx_stack_ndx
];
387 /* Clear previous user info */
389 ctx_p
->uid
= (uid_t
)-1;
390 ctx_p
->gid
= (gid_t
)-1;
392 safe_free(ctx_p
->groups
);
395 delete_nt_token(&ctx_p
->token
);
397 /* Pop back previous user */
403 prev_ctx_p
= &sec_ctx_stack
[sec_ctx_stack_ndx
];
405 #ifdef HAVE_SETGROUPS
406 sys_setgroups(prev_ctx_p
->ngroups
, prev_ctx_p
->groups
);
409 become_id(prev_ctx_p
->uid
, prev_ctx_p
->gid
);
411 /* Update current_user stuff */
413 current_user
.uid
= prev_ctx_p
->uid
;
414 current_user
.gid
= prev_ctx_p
->gid
;
415 current_user
.ngroups
= prev_ctx_p
->ngroups
;
416 current_user
.groups
= prev_ctx_p
->groups
;
417 current_user
.nt_user_token
= prev_ctx_p
->token
;
419 DEBUG(3, ("pop_sec_ctx (%u, %u) - sec_ctx_stack_ndx = %d\n",
420 (unsigned int)geteuid(), (unsigned int)getegid(), sec_ctx_stack_ndx
));
425 /* Initialise the security context system */
427 void init_sec_ctx(void)
430 struct sec_ctx
*ctx_p
;
432 /* Initialise security context stack */
434 memset(sec_ctx_stack
, 0, sizeof(struct sec_ctx
) * MAX_SEC_CTX_DEPTH
);
436 for (i
= 0; i
< MAX_SEC_CTX_DEPTH
; i
++) {
437 sec_ctx_stack
[i
].uid
= (uid_t
)-1;
438 sec_ctx_stack
[i
].gid
= (gid_t
)-1;
441 /* Initialise first level of stack. It is the current context */
442 ctx_p
= &sec_ctx_stack
[0];
444 ctx_p
->uid
= geteuid();
445 ctx_p
->gid
= getegid();
447 get_current_groups(&ctx_p
->ngroups
, &ctx_p
->groups
);
449 ctx_p
->token
= NULL
; /* Maps to guest user. */
451 /* Initialise current_user global */
453 current_user
.uid
= ctx_p
->uid
;
454 current_user
.gid
= ctx_p
->gid
;
455 current_user
.ngroups
= ctx_p
->ngroups
;
456 current_user
.groups
= ctx_p
->groups
;
458 /* The conn and vuid are usually taken care of by other modules.
459 We initialise them here. */
461 current_user
.conn
= NULL
;
462 current_user
.vuid
= UID_FIELD_INVALID
;
463 current_user
.nt_user_token
= NULL
;