2 Unix SMB/CIFS implementation.
4 Copyright (C) Andrew Tridgell 1992-1998
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/>.
21 #include "system/passwd.h"
22 #include "smbd/smbd.h"
23 #include "smbd/globals.h"
24 #include "../librpc/gen_ndr/netlogon.h"
25 #include "libcli/security/security.h"
26 #include "passdb/lookup_sid.h"
28 #include "../auth/auth_util.h"
29 #include "lib/util/time_basic.h"
31 struct smbd_impersonate_debug_state {
36 static bool smbd_impersonate_debug_before_use(struct tevent_context *wrap_ev,
38 struct tevent_context *main_ev,
41 struct smbd_impersonate_debug_state *state =
42 (struct smbd_impersonate_debug_state *)private_data;
44 DEBUG(state->dbg_lvl, (
45 "%s: name[%s] wrap_ev[%p] state[%p] main_ev[%p] location[%s]\n",
46 __func__, state->name, wrap_ev, state, main_ev, location));
51 static void smbd_impersonate_debug_after_use(struct tevent_context *wrap_ev,
53 struct tevent_context *main_ev,
56 struct smbd_impersonate_debug_state *state =
57 (struct smbd_impersonate_debug_state *)private_data;
59 DEBUG(state->dbg_lvl, (
60 "%s: name[%s] wrap_ev[%p] state[%p] main_ev[%p] location[%s]\n",
61 __func__, state->name, wrap_ev, state, main_ev, location));
64 static void smbd_impersonate_debug_before_fd_handler(struct tevent_context *wrap_ev,
66 struct tevent_context *main_ev,
67 struct tevent_fd *fde,
69 const char *handler_name,
72 struct smbd_impersonate_debug_state *state =
73 (struct smbd_impersonate_debug_state *)private_data;
75 DEBUG(state->dbg_lvl, (
76 "%s: name[%s] wrap_ev[%p] state[%p] main_ev[%p] "
77 "fde[%p] flags[0x%X] handler_name[%s] location[%s]\n",
78 __func__, state->name, wrap_ev, state, main_ev,
79 fde, flags, handler_name, location));
82 static void smbd_impersonate_debug_after_fd_handler(struct tevent_context *wrap_ev,
84 struct tevent_context *main_ev,
85 struct tevent_fd *fde,
87 const char *handler_name,
90 struct smbd_impersonate_debug_state *state =
91 (struct smbd_impersonate_debug_state *)private_data;
93 DEBUG(state->dbg_lvl, (
94 "%s: name[%s] wrap_ev[%p] state[%p] main_ev[%p] "
95 "fde[%p] flags[0x%X] handler_name[%s] location[%s]\n",
96 __func__, state->name, wrap_ev, state, main_ev,
97 fde, flags, handler_name, location));
100 static void smbd_impersonate_debug_before_timer_handler(struct tevent_context *wrap_ev,
102 struct tevent_context *main_ev,
103 struct tevent_timer *te,
104 struct timeval requested_time,
105 struct timeval trigger_time,
106 const char *handler_name,
107 const char *location)
109 struct smbd_impersonate_debug_state *state =
110 (struct smbd_impersonate_debug_state *)private_data;
111 struct timeval_buf requested_buf;
112 struct timeval_buf trigger_buf;
114 DEBUG(state->dbg_lvl, (
115 "%s: name[%s] wrap_ev[%p] state[%p] main_ev[%p] "
116 "te[%p] requested_time[%s] trigger_time[%s] handler_name[%s] location[%s]\n",
117 __func__, state->name, wrap_ev, state, main_ev, te,
118 timeval_str_buf(&requested_time, true, true, &requested_buf),
119 timeval_str_buf(&trigger_time, true, true, &trigger_buf),
120 handler_name, location));
123 static void smbd_impersonate_debug_after_timer_handler(struct tevent_context *wrap_ev,
125 struct tevent_context *main_ev,
126 struct tevent_timer *te,
127 struct timeval requested_time,
128 struct timeval trigger_time,
129 const char *handler_name,
130 const char *location)
132 struct smbd_impersonate_debug_state *state =
133 (struct smbd_impersonate_debug_state *)private_data;
134 struct timeval_buf requested_buf;
135 struct timeval_buf trigger_buf;
137 DEBUG(state->dbg_lvl, (
138 "%s: name[%s] wrap_ev[%p] state[%p] main_ev[%p] "
139 "te[%p] requested_time[%s] trigger_time[%s] handler_name[%s] location[%s]\n",
140 __func__, state->name, wrap_ev, state, main_ev, te,
141 timeval_str_buf(&requested_time, true, true, &requested_buf),
142 timeval_str_buf(&trigger_time, true, true, &trigger_buf),
143 handler_name, location));
146 static void smbd_impersonate_debug_before_immediate_handler(struct tevent_context *wrap_ev,
148 struct tevent_context *main_ev,
149 struct tevent_immediate *im,
150 const char *handler_name,
151 const char *location)
153 struct smbd_impersonate_debug_state *state =
154 (struct smbd_impersonate_debug_state *)private_data;
156 DEBUG(state->dbg_lvl, (
157 "%s: name[%s] wrap_ev[%p] state[%p] main_ev[%p] "
158 "im[%p] handler_name[%s] location[%s]\n",
159 __func__, state->name, wrap_ev, state, main_ev,
160 im, handler_name, location));
163 static void smbd_impersonate_debug_after_immediate_handler(struct tevent_context *wrap_ev,
165 struct tevent_context *main_ev,
166 struct tevent_immediate *im,
167 const char *handler_name,
168 const char *location)
170 struct smbd_impersonate_debug_state *state =
171 (struct smbd_impersonate_debug_state *)private_data;
173 DEBUG(state->dbg_lvl, (
174 "%s: name[%s] wrap_ev[%p] state[%p] main_ev[%p] "
175 "im[%p] handler_name[%s] location[%s]\n",
176 __func__, state->name, wrap_ev, state, main_ev,
177 im, handler_name, location));
180 static void smbd_impersonate_debug_before_signal_handler(struct tevent_context *wrap_ev,
182 struct tevent_context *main_ev,
183 struct tevent_signal *se,
187 const char *handler_name,
188 const char *location)
190 struct smbd_impersonate_debug_state *state =
191 (struct smbd_impersonate_debug_state *)private_data;
193 DEBUG(state->dbg_lvl, (
194 "%s: name[%s] wrap_ev[%p] state[%p] main_ev[%p] "
195 "se[%p] signum[%d] count[%d] siginfo[%p] handler_name[%s] location[%s]\n",
196 __func__, state->name, wrap_ev, state, main_ev,
197 se, signum, count, siginfo, handler_name, location));
200 static void smbd_impersonate_debug_after_signal_handler(struct tevent_context *wrap_ev,
202 struct tevent_context *main_ev,
203 struct tevent_signal *se,
207 const char *handler_name,
208 const char *location)
210 struct smbd_impersonate_debug_state *state =
211 (struct smbd_impersonate_debug_state *)private_data;
213 DEBUG(state->dbg_lvl, (
214 "%s: name[%s] wrap_ev[%p] state[%p] main_ev[%p] "
215 "se[%p] signum[%d] count[%d] siginfo[%p] handler_name[%s] location[%s]\n",
216 __func__, state->name, wrap_ev, state, main_ev,
217 se, signum, count, siginfo, handler_name, location));
220 static const struct tevent_wrapper_ops smbd_impersonate_debug_ops = {
221 .name = "smbd_impersonate_debug",
222 .before_use = smbd_impersonate_debug_before_use,
223 .after_use = smbd_impersonate_debug_after_use,
224 .before_fd_handler = smbd_impersonate_debug_before_fd_handler,
225 .after_fd_handler = smbd_impersonate_debug_after_fd_handler,
226 .before_timer_handler = smbd_impersonate_debug_before_timer_handler,
227 .after_timer_handler = smbd_impersonate_debug_after_timer_handler,
228 .before_immediate_handler = smbd_impersonate_debug_before_immediate_handler,
229 .after_immediate_handler = smbd_impersonate_debug_after_immediate_handler,
230 .before_signal_handler = smbd_impersonate_debug_before_signal_handler,
231 .after_signal_handler = smbd_impersonate_debug_after_signal_handler,
234 struct tevent_context *_smbd_impersonate_debug_create(struct tevent_context *main_ev,
237 const char *location)
239 struct tevent_context *wrap_ev = NULL;
240 struct smbd_impersonate_debug_state *state = NULL;
242 wrap_ev = tevent_context_wrapper_create(main_ev,
244 &smbd_impersonate_debug_ops,
246 struct smbd_impersonate_debug_state);
247 if (wrap_ev == NULL) {
251 state->dbg_lvl = dbg_lvl;
252 DEBUG(state->dbg_lvl, (
253 "%s: name[%s] wrap_ev[%p] state[%p] main_ev[%p] location[%s]\n",
254 __func__, state->name, wrap_ev, state, main_ev, location));
259 /* what user is current? */
260 extern struct current_user current_user;
262 /****************************************************************************
263 Become the guest user without changing the security context stack.
264 ****************************************************************************/
266 bool change_to_guest(void)
270 pass = Get_Pwnam_alloc(talloc_tos(), lp_guest_account());
276 /* MWW: From AIX FAQ patch to WU-ftpd: call initgroups before
278 initgroups(pass->pw_name, pass->pw_gid);
281 set_sec_ctx(pass->pw_uid, pass->pw_gid, 0, NULL, NULL);
283 current_user.conn = NULL;
284 current_user.vuid = UID_FIELD_INVALID;
285 current_user.need_chdir = false;
286 current_user.done_chdir = false;
293 /****************************************************************************
294 talloc free the conn->session_info if not used in the vuid cache.
295 ****************************************************************************/
297 static void free_conn_session_info_if_unused(connection_struct *conn)
301 for (i = 0; i < VUID_CACHE_SIZE; i++) {
302 struct vuid_cache_entry *ent;
303 ent = &conn->vuid_cache->array[i];
304 if (ent->vuid != UID_FIELD_INVALID &&
305 conn->session_info == ent->session_info) {
309 /* Not used, safe to free. */
310 TALLOC_FREE(conn->user_ev_ctx);
311 TALLOC_FREE(conn->session_info);
314 /****************************************************************************
315 Setup the share access mask for a connection.
316 ****************************************************************************/
318 static uint32_t create_share_access_mask(int snum,
320 const struct security_token *token)
322 uint32_t share_access = 0;
324 share_access_check(token,
325 lp_const_servicename(snum),
326 MAXIMUM_ALLOWED_ACCESS,
329 if (readonly_share) {
331 ~(SEC_FILE_WRITE_DATA | SEC_FILE_APPEND_DATA |
332 SEC_FILE_WRITE_EA | SEC_FILE_WRITE_ATTRIBUTE |
333 SEC_DIR_DELETE_CHILD );
336 if (security_token_has_privilege(token, SEC_PRIV_SECURITY)) {
337 share_access |= SEC_FLAG_SYSTEM_SECURITY;
339 if (security_token_has_privilege(token, SEC_PRIV_RESTORE)) {
340 share_access |= SEC_RIGHTS_PRIV_RESTORE;
342 if (security_token_has_privilege(token, SEC_PRIV_BACKUP)) {
343 share_access |= SEC_RIGHTS_PRIV_BACKUP;
345 if (security_token_has_privilege(token, SEC_PRIV_TAKE_OWNERSHIP)) {
346 share_access |= SEC_STD_WRITE_OWNER;
352 /*******************************************************************
353 Calculate access mask and if this user can access this share.
354 ********************************************************************/
356 NTSTATUS check_user_share_access(connection_struct *conn,
357 const struct auth_session_info *session_info,
358 uint32_t *p_share_access,
359 bool *p_readonly_share)
361 int snum = SNUM(conn);
362 uint32_t share_access = 0;
363 bool readonly_share = false;
365 if (!user_ok_token(session_info->unix_info->unix_name,
366 session_info->info->domain_name,
367 session_info->security_token, snum)) {
368 return NT_STATUS_ACCESS_DENIED;
371 readonly_share = is_share_read_only_for_token(
372 session_info->unix_info->unix_name,
373 session_info->info->domain_name,
374 session_info->security_token,
377 share_access = create_share_access_mask(snum,
379 session_info->security_token);
381 if ((share_access & (FILE_READ_DATA|FILE_WRITE_DATA)) == 0) {
382 /* No access, read or write. */
383 DBG_NOTICE("user %s connection to %s denied due to share "
384 "security descriptor.\n",
385 session_info->unix_info->unix_name,
386 lp_const_servicename(snum));
387 return NT_STATUS_ACCESS_DENIED;
390 if (!readonly_share &&
391 !(share_access & FILE_WRITE_DATA)) {
392 /* smb.conf allows r/w, but the security descriptor denies
393 * write. Fall back to looking at readonly. */
394 readonly_share = true;
395 DBG_INFO("falling back to read-only access-evaluation due to "
396 "security descriptor\n");
399 *p_share_access = share_access;
400 *p_readonly_share = readonly_share;
405 /*******************************************************************
406 Check if a username is OK.
408 This sets up conn->session_info with a copy related to this vuser that
409 later code can then mess with.
410 ********************************************************************/
412 static bool check_user_ok(connection_struct *conn,
414 const struct auth_session_info *session_info,
418 bool readonly_share = false;
419 bool admin_user = false;
420 struct vuid_cache_entry *ent = NULL;
421 uint32_t share_access = 0;
424 for (i=0; i<VUID_CACHE_SIZE; i++) {
425 ent = &conn->vuid_cache->array[i];
426 if (ent->vuid == vuid) {
427 if (vuid == UID_FIELD_INVALID) {
429 * Slow path, we don't care
430 * about the array traversal.
434 free_conn_session_info_if_unused(conn);
435 conn->session_info = ent->session_info;
436 conn->user_ev_ctx = ent->user_ev_ctx;
437 conn->read_only = ent->read_only;
438 conn->share_access = ent->share_access;
439 conn->vuid = ent->vuid;
444 status = check_user_share_access(conn,
448 if (!NT_STATUS_IS_OK(status)) {
452 admin_user = token_contains_name_in_list(
453 session_info->unix_info->unix_name,
454 session_info->info->domain_name,
455 NULL, session_info->security_token, lp_admin_users(snum));
457 ent = &conn->vuid_cache->array[conn->vuid_cache->next_entry];
459 conn->vuid_cache->next_entry =
460 (conn->vuid_cache->next_entry + 1) % VUID_CACHE_SIZE;
462 TALLOC_FREE(ent->session_info);
465 * If force_user was set, all session_info's are based on the same
466 * username-based faked one.
469 ent->session_info = copy_session_info(
470 conn, conn->force_user ? conn->session_info : session_info);
472 if (ent->session_info == NULL) {
473 ent->vuid = UID_FIELD_INVALID;
478 DEBUG(2,("check_user_ok: user %s is an admin user. "
479 "Setting uid as %d\n",
480 ent->session_info->unix_info->unix_name,
481 sec_initial_uid() ));
482 ent->session_info->unix_token->uid = sec_initial_uid();
485 if (vuid == UID_FIELD_INVALID) {
486 ent->user_ev_ctx = smbd_impersonate_conn_sess_create(
487 conn->sconn->raw_ev_ctx, conn, ent->session_info);
488 if (ent->user_ev_ctx == NULL) {
489 TALLOC_FREE(ent->session_info);
490 ent->vuid = UID_FIELD_INVALID;
494 ent->user_ev_ctx = smbd_impersonate_conn_vuid_create(
495 conn->sconn->raw_ev_ctx, conn, vuid);
496 if (ent->user_ev_ctx == NULL) {
497 TALLOC_FREE(ent->session_info);
498 ent->vuid = UID_FIELD_INVALID;
504 * It's actually OK to call check_user_ok() with
505 * vuid == UID_FIELD_INVALID as called from change_to_user_by_session().
506 * All this will do is throw away one entry in the cache.
510 ent->read_only = readonly_share;
511 ent->share_access = share_access;
512 free_conn_session_info_if_unused(conn);
513 conn->session_info = ent->session_info;
514 conn->vuid = ent->vuid;
515 conn->user_ev_ctx = ent->user_ev_ctx;
516 if (vuid == UID_FIELD_INVALID) {
518 * Not strictly needed, just make it really
519 * clear this entry is actually an unused one.
521 ent->read_only = false;
522 ent->share_access = 0;
523 ent->session_info = NULL;
524 ent->user_ev_ctx = NULL;
527 conn->read_only = readonly_share;
528 conn->share_access = share_access;
533 /****************************************************************************
534 Become the user of a connection number without changing the security context
535 stack, but modify the current_user entries.
536 ****************************************************************************/
538 static bool change_to_user_internal(connection_struct *conn,
539 const struct auth_session_info *session_info,
547 gid_t *group_list = NULL;
550 if ((current_user.conn == conn) &&
551 (current_user.vuid == vuid) &&
552 (current_user.need_chdir == conn->tcon_done) &&
553 (current_user.ut.uid == session_info->unix_token->uid))
555 DBG_INFO("Skipping user change - already user\n");
559 set_current_user_info(session_info->unix_info->sanitized_username,
560 session_info->unix_info->unix_name,
561 session_info->info->domain_name);
565 ok = check_user_ok(conn, vuid, session_info, snum);
567 DBG_WARNING("SMB user %s (unix user %s) "
568 "not permitted access to share %s.\n",
569 session_info->unix_info->sanitized_username,
570 session_info->unix_info->unix_name,
571 lp_const_servicename(snum));
575 uid = conn->session_info->unix_token->uid;
576 gid = conn->session_info->unix_token->gid;
577 num_groups = conn->session_info->unix_token->ngroups;
578 group_list = conn->session_info->unix_token->groups;
581 * See if we should force group for this service. If so this overrides
582 * any group set in the force user code.
584 if((group_c = *lp_force_group(talloc_tos(), snum))) {
586 SMB_ASSERT(conn->force_group_gid != (gid_t)-1);
588 if (group_c == '+') {
592 * Only force group if the user is a member of the
593 * service group. Check the group memberships for this
594 * user (we already have this) to see if we should force
597 for (i = 0; i < num_groups; i++) {
598 if (group_list[i] == conn->force_group_gid) {
599 conn->session_info->unix_token->gid =
600 conn->force_group_gid;
601 gid = conn->force_group_gid;
602 gid_to_sid(&conn->session_info->security_token
608 conn->session_info->unix_token->gid = conn->force_group_gid;
609 gid = conn->force_group_gid;
610 gid_to_sid(&conn->session_info->security_token->sids[1],
615 /*Set current_user since we will immediately also call set_sec_ctx() */
616 current_user.ut.ngroups = num_groups;
617 current_user.ut.groups = group_list;
621 current_user.ut.ngroups,
622 current_user.ut.groups,
623 conn->session_info->security_token);
625 current_user.conn = conn;
626 current_user.vuid = vuid;
627 current_user.need_chdir = conn->tcon_done;
629 if (current_user.need_chdir) {
630 ok = chdir_current_service(conn);
632 DBG_ERR("chdir_current_service() failed!\n");
635 current_user.done_chdir = true;
638 if (CHECK_DEBUGLVL(DBGLVL_INFO)) {
639 struct smb_filename *cwdfname = vfs_GetWd(talloc_tos(), conn);
640 if (cwdfname == NULL) {
643 DBG_INFO("Impersonated user: uid=(%d,%d), gid=(%d,%d), cwd=[%s]\n",
648 cwdfname->base_name);
649 TALLOC_FREE(cwdfname);
655 bool change_to_user(connection_struct *conn, uint64_t vuid)
657 struct user_struct *vuser;
658 int snum = SNUM(conn);
661 DEBUG(2,("Connection not open\n"));
665 vuser = get_valid_user_struct(conn->sconn, vuid);
667 /* Invalid vuid sent */
668 DBG_WARNING("Invalid vuid %llu used on share %s.\n",
669 (unsigned long long)vuid,
670 lp_const_servicename(snum));
674 return change_to_user_internal(conn, vuser->session_info, vuid);
677 bool change_to_user_by_fsp(struct files_struct *fsp)
679 return change_to_user(fsp->conn, fsp->vuid);
682 static bool change_to_user_by_session(connection_struct *conn,
683 const struct auth_session_info *session_info)
685 SMB_ASSERT(conn != NULL);
686 SMB_ASSERT(session_info != NULL);
688 return change_to_user_internal(conn, session_info, UID_FIELD_INVALID);
691 /****************************************************************************
692 Go back to being root without changing the security context stack,
693 but modify the current_user entries.
694 ****************************************************************************/
696 bool smbd_change_to_root_user(void)
700 DEBUG(5,("change_to_root_user: now uid=(%d,%d) gid=(%d,%d)\n",
701 (int)getuid(),(int)geteuid(),(int)getgid(),(int)getegid()));
703 current_user.conn = NULL;
704 current_user.vuid = UID_FIELD_INVALID;
705 current_user.need_chdir = false;
706 current_user.done_chdir = false;
711 /****************************************************************************
712 Become the user of an authenticated connected named pipe.
713 When this is called we are currently running as the connection
714 user. Doesn't modify current_user.
715 ****************************************************************************/
717 bool smbd_become_authenticated_pipe_user(struct auth_session_info *session_info)
722 set_sec_ctx(session_info->unix_token->uid, session_info->unix_token->gid,
723 session_info->unix_token->ngroups, session_info->unix_token->groups,
724 session_info->security_token);
726 DEBUG(5, ("Impersonated user: uid=(%d,%d), gid=(%d,%d)\n",
735 /****************************************************************************
736 Unbecome the user of an authenticated connected named pipe.
737 When this is called we are running as the authenticated pipe
738 user and need to go back to being the connection user. Doesn't modify
740 ****************************************************************************/
742 bool smbd_unbecome_authenticated_pipe_user(void)
744 return pop_sec_ctx();
747 /****************************************************************************
748 Utility functions used by become_xxx/unbecome_xxx.
749 ****************************************************************************/
751 static void push_conn_ctx(void)
753 struct conn_ctx *ctx_p;
754 extern userdom_struct current_user_info;
756 /* Check we don't overflow our stack */
758 if (conn_ctx_stack_ndx == MAX_SEC_CTX_DEPTH) {
759 DEBUG(0, ("Connection context stack overflow!\n"));
760 smb_panic("Connection context stack overflow!\n");
763 /* Store previous user context */
764 ctx_p = &conn_ctx_stack[conn_ctx_stack_ndx];
766 ctx_p->conn = current_user.conn;
767 ctx_p->vuid = current_user.vuid;
768 ctx_p->need_chdir = current_user.need_chdir;
769 ctx_p->done_chdir = current_user.done_chdir;
770 ctx_p->user_info = current_user_info;
772 DEBUG(4, ("push_conn_ctx(%llu) : conn_ctx_stack_ndx = %d\n",
773 (unsigned long long)ctx_p->vuid, conn_ctx_stack_ndx));
775 conn_ctx_stack_ndx++;
778 static void pop_conn_ctx(void)
780 struct conn_ctx *ctx_p;
782 /* Check for stack underflow. */
784 if (conn_ctx_stack_ndx == 0) {
785 DEBUG(0, ("Connection context stack underflow!\n"));
786 smb_panic("Connection context stack underflow!\n");
789 conn_ctx_stack_ndx--;
790 ctx_p = &conn_ctx_stack[conn_ctx_stack_ndx];
792 set_current_user_info(ctx_p->user_info.smb_name,
793 ctx_p->user_info.unix_name,
794 ctx_p->user_info.domain);
797 * Check if the current context did a chdir_current_service()
798 * and restore the cwd_fname of the previous context
801 if (current_user.done_chdir && ctx_p->need_chdir) {
804 ret = vfs_ChDir(ctx_p->conn, ctx_p->conn->cwd_fname);
806 DBG_ERR("vfs_ChDir() failed!\n");
807 smb_panic("vfs_ChDir() failed!\n");
811 current_user.conn = ctx_p->conn;
812 current_user.vuid = ctx_p->vuid;
813 current_user.need_chdir = ctx_p->need_chdir;
814 current_user.done_chdir = ctx_p->done_chdir;
816 *ctx_p = (struct conn_ctx) {
817 .vuid = UID_FIELD_INVALID,
821 /****************************************************************************
822 Temporarily become a root user. Must match with unbecome_root(). Saves and
823 restores the connection context.
824 ****************************************************************************/
826 void smbd_become_root(void)
829 * no good way to handle push_sec_ctx() failing without changing
830 * the prototype of become_root()
832 if (!push_sec_ctx()) {
833 smb_panic("become_root: push_sec_ctx failed");
839 /* Unbecome the root user */
841 void smbd_unbecome_root(void)
847 bool become_guest(void)
858 ok = change_to_guest();
868 void unbecome_guest(void)
875 /****************************************************************************
876 Push the current security context then force a change via change_to_user().
877 Saves and restores the connection context.
878 ****************************************************************************/
880 bool become_user(connection_struct *conn, uint64_t vuid)
887 if (!change_to_user(conn, vuid)) {
896 bool become_user_by_fsp(struct files_struct *fsp)
898 return become_user(fsp->conn, fsp->vuid);
901 bool become_user_by_session(connection_struct *conn,
902 const struct auth_session_info *session_info)
909 if (!change_to_user_by_session(conn, session_info)) {
918 bool unbecome_user(void)
925 /****************************************************************************
926 Return the current user we are running effectively as on this connection.
927 I'd like to make this return conn->session_info->unix_token->uid, but become_root()
928 doesn't alter this value.
929 ****************************************************************************/
931 uid_t get_current_uid(connection_struct *conn)
933 return current_user.ut.uid;
936 /****************************************************************************
937 Return the current group we are running effectively as on this connection.
938 I'd like to make this return conn->session_info->unix_token->gid, but become_root()
939 doesn't alter this value.
940 ****************************************************************************/
942 gid_t get_current_gid(connection_struct *conn)
944 return current_user.ut.gid;
947 /****************************************************************************
948 Return the UNIX token we are running effectively as on this connection.
949 I'd like to make this return &conn->session_info->unix_token-> but become_root()
950 doesn't alter this value.
951 ****************************************************************************/
953 const struct security_unix_token *get_current_utok(connection_struct *conn)
955 return ¤t_user.ut;
958 /****************************************************************************
959 Return the Windows token we are running effectively as on this connection.
960 If this is currently a NULL token as we're inside become_root() - a temporary
961 UNIX security override, then we search up the stack for the previous active
963 ****************************************************************************/
965 const struct security_token *get_current_nttok(connection_struct *conn)
967 if (current_user.nt_user_token) {
968 return current_user.nt_user_token;
970 return sec_ctx_active_token();
973 uint64_t get_current_vuid(connection_struct *conn)
975 return current_user.vuid;
978 struct smbd_impersonate_conn_vuid_state {
979 struct connection_struct *conn;
983 static bool smbd_impersonate_conn_vuid_before_use(
984 struct tevent_context *wrap_ev,
986 struct tevent_context *main_ev,
987 const char *location)
989 struct smbd_impersonate_conn_vuid_state *state =
990 talloc_get_type_abort(private_data,
991 struct smbd_impersonate_conn_vuid_state);
994 DEBUG(11,("%s: wrap_ev[%p] main_ev[%p] location[%s]"
995 "old uid[%ju] old gid[%ju] vuid[%ju] cwd[%s]\n",
996 __func__, wrap_ev, main_ev, location,
997 (uintmax_t)geteuid(), (uintmax_t)getegid(),
998 (uintmax_t)state->vuid, state->conn->cwd_fname->base_name));
1000 ok = become_user(state->conn, state->vuid);
1002 smb_panic("smbd_impersonate_conn_vuid_before_use() - failed");
1006 DEBUG(11,("%s: impersonated user[%s] uid[%ju] gid[%ju] cwd[%s]\n",
1007 __func__, state->conn->session_info->unix_info->unix_name,
1008 (uintmax_t)geteuid(), (uintmax_t)getegid(),
1009 state->conn->cwd_fname->base_name));
1014 static void smbd_impersonate_conn_vuid_after_use(
1015 struct tevent_context *wrap_ev,
1017 struct tevent_context *main_ev,
1018 const char *location)
1020 struct smbd_impersonate_conn_vuid_state *state =
1021 talloc_get_type_abort(private_data,
1022 struct smbd_impersonate_conn_vuid_state);
1025 DEBUG(11,("%s: deimpersonating[%s] uid[%ju] gid[%ju] cwd[%s] "
1027 __func__, state->conn->session_info->unix_info->unix_name,
1028 (uintmax_t)geteuid(), (uintmax_t)getegid(),
1029 state->conn->cwd_fname->base_name, location));
1031 ok = unbecome_user();
1033 smb_panic("smbd_impersonate_conn_vuid_after_use() - failed");
1037 DEBUG(11,("%s: impersonated user[%s] uid[%ju] gid[%ju] cwd[%s]\n",
1038 __func__, state->conn->session_info->unix_info->unix_name,
1039 (uintmax_t)geteuid(), (uintmax_t)getegid(),
1040 state->conn->cwd_fname->base_name));
1043 static void smbd_impersonate_conn_vuid_before_fd_handler(
1044 struct tevent_context *wrap_ev,
1046 struct tevent_context *main_ev,
1047 struct tevent_fd *fde,
1049 const char *handler_name,
1050 const char *location)
1052 struct smbd_impersonate_conn_vuid_state *state = talloc_get_type_abort(
1053 private_data, struct smbd_impersonate_conn_vuid_state);
1056 DEBUG(11,("%s: fde[%p] flags[%ju] handler_name[%s] location[%s]\n",
1057 __func__, fde, (uintmax_t)flags, handler_name, location));
1059 ok = change_to_user(state->conn, state->vuid);
1061 smb_panic("smbd_impersonate_conn_vuid_before_use() - failed");
1065 DEBUG(11,("%s: impersonated user[%s] uid[%ju] gid[%ju] cwd[%s]\n",
1066 __func__, state->conn->session_info->unix_info->unix_name,
1067 (uintmax_t)geteuid(), (uintmax_t)getegid(),
1068 state->conn->cwd_fname->base_name));
1071 static void smbd_impersonate_conn_vuid_after_fd_handler(
1072 struct tevent_context *wrap_ev,
1074 struct tevent_context *main_ev,
1075 struct tevent_fd *fde,
1077 const char *handler_name,
1078 const char *location)
1080 DEBUG(11,("%s: fde[%p] handler_name[%s] location[%s]\n",
1081 __func__, fde, handler_name, location));
1083 /* be lazy and defer change_to_root_user() */
1086 static void smbd_impersonate_conn_vuid_before_timer_handler(
1087 struct tevent_context *wrap_ev,
1089 struct tevent_context *main_ev,
1090 struct tevent_timer *te,
1091 struct timeval requested_time,
1092 struct timeval trigger_time,
1093 const char *handler_name,
1094 const char *location)
1096 struct smbd_impersonate_conn_vuid_state *state = talloc_get_type_abort(
1097 private_data, struct smbd_impersonate_conn_vuid_state);
1098 struct timeval_buf requested_buf;
1099 struct timeval_buf trigger_buf;
1102 DEBUG(11,("%s: te[%p] requested_time[%s] trigger_time[%s] "
1103 "handler_name[%s] location[%s]\n",
1105 timeval_str_buf(&requested_time, true, true, &requested_buf),
1106 timeval_str_buf(&trigger_time, true, true, &trigger_buf),
1107 handler_name, location));
1109 ok = change_to_user(state->conn, state->vuid);
1111 smb_panic("smbd_impersonate_conn_vuid_before_use() - failed");
1115 DEBUG(11,("%s: impersonated user[%s] uid[%ju] gid[%ju] cwd[%s]\n",
1116 __func__, state->conn->session_info->unix_info->unix_name,
1117 (uintmax_t)geteuid(), (uintmax_t)getegid(),
1118 state->conn->cwd_fname->base_name));
1121 static void smbd_impersonate_conn_vuid_after_timer_handler(
1122 struct tevent_context *wrap_ev,
1124 struct tevent_context *main_ev,
1125 struct tevent_timer *te,
1126 struct timeval requested_time,
1127 struct timeval trigger_time,
1128 const char *handler_name,
1129 const char *location)
1131 DEBUG(11,("%s: te[%p] handler_name[%s] location[%s]\n",
1132 __func__, te, handler_name, location));
1134 /* be lazy and defer change_to_root_user() */
1137 static void smbd_impersonate_conn_vuid_before_immediate_handler(
1138 struct tevent_context *wrap_ev,
1140 struct tevent_context *main_ev,
1141 struct tevent_immediate *im,
1142 const char *handler_name,
1143 const char *location)
1145 struct smbd_impersonate_conn_vuid_state *state = talloc_get_type_abort(
1146 private_data, struct smbd_impersonate_conn_vuid_state);
1149 DEBUG(11,("%s: im[%p] handler_name[%s] location[%s]\n",
1150 __func__, im, handler_name, location));
1152 ok = change_to_user(state->conn, state->vuid);
1154 smb_panic("smbd_impersonate_conn_vuid_before_use() - failed");
1158 DEBUG(11,("%s: impersonated user[%s] uid[%ju] gid[%ju] cwd[%s]\n",
1159 __func__, state->conn->session_info->unix_info->unix_name,
1160 (uintmax_t)geteuid(), (uintmax_t)getegid(),
1161 state->conn->cwd_fname->base_name));
1164 static void smbd_impersonate_conn_vuid_after_immediate_handler(
1165 struct tevent_context *wrap_ev,
1167 struct tevent_context *main_ev,
1168 struct tevent_immediate *im,
1169 const char *handler_name,
1170 const char *location)
1172 DEBUG(11,("%s: im[%p] handler_name[%s] location[%s]\n",
1173 __func__, im, handler_name, location));
1175 /* be lazy and defer unbecome_user() */
1178 static void smbd_impersonate_conn_vuid_before_signal_handler(
1179 struct tevent_context *wrap_ev,
1181 struct tevent_context *main_ev,
1182 struct tevent_signal *se,
1186 const char *handler_name,
1187 const char *location)
1189 struct smbd_impersonate_conn_vuid_state *state = talloc_get_type_abort(
1190 private_data, struct smbd_impersonate_conn_vuid_state);
1193 DEBUG(11,("%s: se[%p] signum[%d] count[%d] siginfo[%p] "
1194 "handler_name[%s] location[%s]\n",
1195 __func__, se, signum, count, siginfo, handler_name, location));
1197 ok = change_to_user(state->conn, state->vuid);
1199 smb_panic("smbd_impersonate_conn_vuid_before_use() - failed");
1203 DEBUG(11,("%s: impersonated user[%s] uid[%ju] gid[%ju] cwd[%s]\n",
1204 __func__, state->conn->session_info->unix_info->unix_name,
1205 (uintmax_t)geteuid(), (uintmax_t)getegid(),
1206 state->conn->cwd_fname->base_name));
1209 static void smbd_impersonate_conn_vuid_after_signal_handler(
1210 struct tevent_context *wrap_ev,
1212 struct tevent_context *main_ev,
1213 struct tevent_signal *se,
1217 const char *handler_name,
1218 const char *location)
1220 DEBUG(11,("%s: se[%p] handler_name[%s] location[%s]\n",
1221 __func__, se, handler_name, location));
1223 /* be lazy and defer change_to_root_user() */
1226 static const struct tevent_wrapper_ops smbd_impersonate_conn_vuid_ops = {
1227 .name = "smbd_impersonate_conn_vuid",
1228 .before_use = smbd_impersonate_conn_vuid_before_use,
1229 .after_use = smbd_impersonate_conn_vuid_after_use,
1230 .before_fd_handler = smbd_impersonate_conn_vuid_before_fd_handler,
1231 .after_fd_handler = smbd_impersonate_conn_vuid_after_fd_handler,
1232 .before_timer_handler = smbd_impersonate_conn_vuid_before_timer_handler,
1233 .after_timer_handler = smbd_impersonate_conn_vuid_after_timer_handler,
1234 .before_immediate_handler = smbd_impersonate_conn_vuid_before_immediate_handler,
1235 .after_immediate_handler = smbd_impersonate_conn_vuid_after_immediate_handler,
1236 .before_signal_handler = smbd_impersonate_conn_vuid_before_signal_handler,
1237 .after_signal_handler = smbd_impersonate_conn_vuid_after_signal_handler,
1240 struct tevent_context *smbd_impersonate_conn_vuid_create(
1241 struct tevent_context *main_ev,
1242 struct connection_struct *conn,
1245 struct tevent_context *ev = NULL;
1246 struct smbd_impersonate_conn_vuid_state *state = NULL;
1248 ev = tevent_context_wrapper_create(main_ev,
1250 &smbd_impersonate_conn_vuid_ops,
1252 struct smbd_impersonate_conn_vuid_state);
1262 struct smbd_impersonate_conn_sess_state {
1263 struct connection_struct *conn;
1264 struct auth_session_info *session_info;
1267 static bool smbd_impersonate_conn_sess_before_use(struct tevent_context *wrap_ev,
1269 struct tevent_context *main_ev,
1270 const char *location)
1272 struct smbd_impersonate_conn_sess_state *state = talloc_get_type_abort(
1273 private_data, struct smbd_impersonate_conn_sess_state);
1276 DEBUG(11,("%s: impersonating user[%s] wrap_ev[%p] main_ev[%p] "
1277 "location[%s] old uid[%ju] old gid[%ju] cwd[%s]\n",
1278 __func__, state->session_info->unix_info->unix_name,
1279 wrap_ev, main_ev, location,
1280 (uintmax_t)geteuid(), (uintmax_t)getegid(),
1281 state->conn->cwd_fname->base_name));
1283 ok = become_user_by_session(state->conn, state->session_info);
1288 DEBUG(11,("%s: impersonated user[%s] uid[%ju] gid[%ju] cwd[%s]\n",
1289 __func__, state->conn->session_info->unix_info->unix_name,
1290 (uintmax_t)geteuid(), (uintmax_t)getegid(),
1291 state->conn->cwd_fname->base_name));
1296 static void smbd_impersonate_conn_sess_after_use(struct tevent_context *wrap_ev,
1298 struct tevent_context *main_ev,
1299 const char *location)
1301 struct smbd_impersonate_conn_sess_state *state = talloc_get_type_abort(
1302 private_data, struct smbd_impersonate_conn_sess_state);
1305 DEBUG(11,("%s: deimpersonating[%s] uid[%ju] gid[%ju] cwd[%s] "
1307 __func__, state->session_info->unix_info->unix_name,
1308 (uintmax_t)geteuid(), (uintmax_t)getegid(),
1309 state->conn->cwd_fname->base_name, location));
1311 ok = unbecome_user();
1313 smb_panic("smbd_impersonate_conn_sess_after_use() - failed");
1317 DEBUG(11,("%s: deimpersonated user[%s] uid[%ju] gid[%ju] cwd[%s]\n",
1318 __func__, state->conn->session_info->unix_info->unix_name,
1319 (uintmax_t)geteuid(), (uintmax_t)getegid(),
1320 state->conn->cwd_fname->base_name));
1323 static void smbd_impersonate_conn_sess_before_fd_handler(
1324 struct tevent_context *wrap_ev,
1326 struct tevent_context *main_ev,
1327 struct tevent_fd *fde,
1329 const char *handler_name,
1330 const char *location)
1332 struct smbd_impersonate_conn_sess_state *state = talloc_get_type_abort(
1333 private_data, struct smbd_impersonate_conn_sess_state);
1336 DEBUG(11,("%s: fde[%p] flags[%ju] handler_name[%s] location[%s]\n",
1337 __func__, fde, (uintmax_t)flags, handler_name, location));
1339 ok = change_to_user_by_session(state->conn, state->session_info);
1341 smb_panic("smbd_impersonate_conn_sess_before_fd_handler failed");
1345 DEBUG(11,("%s: impersonated user[%s] uid[%ju] gid[%ju] cwd[%s]\n",
1346 __func__, state->conn->session_info->unix_info->unix_name,
1347 (uintmax_t)geteuid(), (uintmax_t)getegid(),
1348 state->conn->cwd_fname->base_name));
1351 static void smbd_impersonate_conn_sess_after_fd_handler(struct tevent_context *wrap_ev,
1353 struct tevent_context *main_ev,
1354 struct tevent_fd *fde,
1356 const char *handler_name,
1357 const char *location)
1359 DEBUG(11,("%s: fde[%p] handler_name[%s] location[%s]\n",
1360 __func__, fde, handler_name, location));
1362 /* be lazy and defer change_to_root_user() */
1365 static void smbd_impersonate_conn_sess_before_timer_handler(
1366 struct tevent_context *wrap_ev,
1368 struct tevent_context *main_ev,
1369 struct tevent_timer *te,
1370 struct timeval requested_time,
1371 struct timeval trigger_time,
1372 const char *handler_name,
1373 const char *location)
1375 struct smbd_impersonate_conn_sess_state *state = talloc_get_type_abort(
1376 private_data, struct smbd_impersonate_conn_sess_state);
1377 struct timeval_buf requested_buf;
1378 struct timeval_buf trigger_buf;
1381 DEBUG(11,("%s: te[%p] requested_time[%s] trigger_time[%s] "
1382 "handler_name[%s] location[%s]\n",
1384 timeval_str_buf(&requested_time, true, true, &requested_buf),
1385 timeval_str_buf(&trigger_time, true, true, &trigger_buf),
1386 handler_name, location));
1388 ok = change_to_user_by_session(state->conn, state->session_info);
1390 smb_panic("smbd_impersonate_conn_sess_before_tm_handler failed");
1394 DEBUG(11,("%s: impersonated user[%s] uid[%ju] gid[%ju] cwd[%s]\n",
1395 __func__, state->conn->session_info->unix_info->unix_name,
1396 (uintmax_t)geteuid(), (uintmax_t)getegid(),
1397 state->conn->cwd_fname->base_name));
1400 static void smbd_impersonate_conn_sess_after_timer_handler(
1401 struct tevent_context *wrap_ev,
1403 struct tevent_context *main_ev,
1404 struct tevent_timer *te,
1405 struct timeval requested_time,
1406 struct timeval trigger_time,
1407 const char *handler_name,
1408 const char *location)
1410 DEBUG(11,("%s: te[%p] handler_name[%s] location[%s]\n",
1411 __func__, te, handler_name, location));
1413 /* be lazy and defer change_to_root_user() */
1416 static void smbd_impersonate_conn_sess_before_immediate_handler(
1417 struct tevent_context *wrap_ev,
1419 struct tevent_context *main_ev,
1420 struct tevent_immediate *im,
1421 const char *handler_name,
1422 const char *location)
1424 struct smbd_impersonate_conn_sess_state *state = talloc_get_type_abort(
1425 private_data, struct smbd_impersonate_conn_sess_state);
1428 DEBUG(11,("%s: im[%p] handler_name[%s] location[%s]\n",
1429 __func__, im, handler_name, location));
1431 ok = change_to_user_by_session(state->conn, state->session_info);
1433 smb_panic("smbd_impersonate_conn_sess_before_im_handler failed");
1437 DEBUG(11,("%s: impersonated user[%s] uid[%ju] gid[%ju] cwd[%s]\n",
1438 __func__, state->conn->session_info->unix_info->unix_name,
1439 (uintmax_t)geteuid(), (uintmax_t)getegid(),
1440 state->conn->cwd_fname->base_name));
1443 static void smbd_impersonate_conn_sess_after_immediate_handler(
1444 struct tevent_context *wrap_ev,
1446 struct tevent_context *main_ev,
1447 struct tevent_immediate *im,
1448 const char *handler_name,
1449 const char *location)
1451 DEBUG(11,("%s: im[%p] handler_name[%s] location[%s]\n",
1452 __func__, im, handler_name, location));
1454 /* be lazy and defer unbecome_user() */
1457 static void smbd_impersonate_conn_sess_before_signal_handler(
1458 struct tevent_context *wrap_ev,
1460 struct tevent_context *main_ev,
1461 struct tevent_signal *se,
1465 const char *handler_name,
1466 const char *location)
1468 struct smbd_impersonate_conn_sess_state *state = talloc_get_type_abort(
1469 private_data, struct smbd_impersonate_conn_sess_state);
1472 DEBUG(11,("%s: se[%p] signum[%d] count[%d] siginfo[%p] "
1473 "handler_name[%s] location[%s]\n",
1474 __func__, se, signum, count, siginfo, handler_name, location));
1476 ok = change_to_user_by_session(state->conn, state->session_info);
1478 smb_panic("smbd_impersonate_conn_sess_before_si_handler failed");
1482 DEBUG(11,("%s: impersonated user[%s] uid[%ju] gid[%ju] cwd[%s]\n",
1483 __func__, state->conn->session_info->unix_info->unix_name,
1484 (uintmax_t)geteuid(), (uintmax_t)getegid(),
1485 state->conn->cwd_fname->base_name));
1488 static void smbd_impersonate_conn_sess_after_signal_handler(
1489 struct tevent_context *wrap_ev,
1491 struct tevent_context *main_ev,
1492 struct tevent_signal *se,
1496 const char *handler_name,
1497 const char *location)
1499 DEBUG(11,("%s: se[%p] handler_name[%s] location[%s]\n",
1500 __func__, se, handler_name, location));
1502 /* be lazy and defer change_to_root_user() */
1505 static const struct tevent_wrapper_ops smbd_impersonate_conn_sess_ops = {
1506 .name = "smbd_impersonate_conn_sess",
1507 .before_use = smbd_impersonate_conn_sess_before_use,
1508 .after_use = smbd_impersonate_conn_sess_after_use,
1509 .before_fd_handler = smbd_impersonate_conn_sess_before_fd_handler,
1510 .after_fd_handler = smbd_impersonate_conn_sess_after_fd_handler,
1511 .before_timer_handler = smbd_impersonate_conn_sess_before_timer_handler,
1512 .after_timer_handler = smbd_impersonate_conn_sess_after_timer_handler,
1513 .before_immediate_handler = smbd_impersonate_conn_sess_before_immediate_handler,
1514 .after_immediate_handler = smbd_impersonate_conn_sess_after_immediate_handler,
1515 .before_signal_handler = smbd_impersonate_conn_sess_before_signal_handler,
1516 .after_signal_handler = smbd_impersonate_conn_sess_after_signal_handler,
1519 struct tevent_context *smbd_impersonate_conn_sess_create(
1520 struct tevent_context *main_ev,
1521 struct connection_struct *conn,
1522 struct auth_session_info *session_info)
1524 struct tevent_context *ev = NULL;
1525 struct smbd_impersonate_conn_sess_state *state = NULL;
1527 ev = tevent_context_wrapper_create(main_ev,
1529 &smbd_impersonate_conn_sess_ops,
1531 struct smbd_impersonate_conn_sess_state);
1536 state->session_info = session_info;
1541 struct smbd_impersonate_root_state {
1545 static bool smbd_impersonate_root_before_use(struct tevent_context *wrap_ev,
1547 struct tevent_context *main_ev,
1548 const char *location)
1550 DEBUG(11,("%s: wrap_ev[%p] main_ev[%p] location[%s]"
1551 "uid[%ju] gid[%ju]\n",
1552 __func__, wrap_ev, main_ev, location,
1553 (uintmax_t)geteuid(), (uintmax_t)getegid()));
1559 static void smbd_impersonate_root_after_use(struct tevent_context *wrap_ev,
1561 struct tevent_context *main_ev,
1562 const char *location)
1566 DEBUG(11,("%s: uid[%ju] gid[%ju] location[%s]\n",
1567 __func__, (uintmax_t)geteuid(), (uintmax_t)getegid(),
1571 static void smbd_impersonate_root_before_fd_handler(struct tevent_context *wrap_ev,
1573 struct tevent_context *main_ev,
1574 struct tevent_fd *fde,
1576 const char *handler_name,
1577 const char *location)
1579 DEBUG(11,("%s: fde[%p] flags[%ju] handler_name[%s] location[%s]\n",
1580 __func__, fde, (uintmax_t)flags, handler_name, location));
1582 smbd_impersonate_root_before_use(wrap_ev, private_data, main_ev, location);
1585 static void smbd_impersonate_root_after_fd_handler(struct tevent_context *wrap_ev,
1587 struct tevent_context *main_ev,
1588 struct tevent_fd *fde,
1590 const char *handler_name,
1591 const char *location)
1593 DEBUG(11,("%s: fde[%p] handler_name[%s] location[%s]\n",
1594 __func__, fde, handler_name, location));
1596 smbd_impersonate_root_after_use(wrap_ev, private_data, main_ev, location);
1599 static void smbd_impersonate_root_before_timer_handler(struct tevent_context *wrap_ev,
1601 struct tevent_context *main_ev,
1602 struct tevent_timer *te,
1603 struct timeval requested_time,
1604 struct timeval trigger_time,
1605 const char *handler_name,
1606 const char *location)
1608 struct timeval_buf requested_buf;
1609 struct timeval_buf trigger_buf;
1611 DEBUG(11,("%s: te[%p] requested_time[%s] trigger_time[%s] "
1612 "handler_name[%s] location[%s]\n",
1614 timeval_str_buf(&requested_time, true, true, &requested_buf),
1615 timeval_str_buf(&trigger_time, true, true, &trigger_buf),
1616 handler_name, location));
1618 smbd_impersonate_root_before_use(wrap_ev, private_data, main_ev, location);
1621 static void smbd_impersonate_root_after_timer_handler(struct tevent_context *wrap_ev,
1623 struct tevent_context *main_ev,
1624 struct tevent_timer *te,
1625 struct timeval requested_time,
1626 struct timeval trigger_time,
1627 const char *handler_name,
1628 const char *location)
1630 DEBUG(11,("%s: te[%p] handler_name[%s] location[%s]\n",
1631 __func__, te, handler_name, location));
1633 smbd_impersonate_root_after_use(wrap_ev, private_data, main_ev, location);
1636 static void smbd_impersonate_root_before_immediate_handler(struct tevent_context *wrap_ev,
1638 struct tevent_context *main_ev,
1639 struct tevent_immediate *im,
1640 const char *handler_name,
1641 const char *location)
1643 DEBUG(11,("%s: im[%p] handler_name[%s] location[%s]\n",
1644 __func__, im, handler_name, location));
1646 smbd_impersonate_root_before_use(wrap_ev, private_data, main_ev, location);
1649 static void smbd_impersonate_root_after_immediate_handler(struct tevent_context *wrap_ev,
1651 struct tevent_context *main_ev,
1652 struct tevent_immediate *im,
1653 const char *handler_name,
1654 const char *location)
1656 DEBUG(11,("%s: im[%p] handler_name[%s] location[%s]\n",
1657 __func__, im, handler_name, location));
1659 smbd_impersonate_root_after_use(wrap_ev, private_data, main_ev, location);
1662 static void smbd_impersonate_root_before_signal_handler(struct tevent_context *wrap_ev,
1664 struct tevent_context *main_ev,
1665 struct tevent_signal *se,
1669 const char *handler_name,
1670 const char *location)
1672 DEBUG(11,("%s: se[%p] signum[%d] count[%d] siginfo[%p] "
1673 "handler_name[%s] location[%s]\n",
1674 __func__, se, signum, count, siginfo, handler_name, location));
1676 smbd_impersonate_root_before_use(wrap_ev, private_data, main_ev, location);
1679 static void smbd_impersonate_root_after_signal_handler(struct tevent_context *wrap_ev,
1681 struct tevent_context *main_ev,
1682 struct tevent_signal *se,
1686 const char *handler_name,
1687 const char *location)
1689 DEBUG(11,("%s: se[%p] handler_name[%s] location[%s]\n",
1690 __func__, se, handler_name, location));
1692 smbd_impersonate_root_after_use(wrap_ev, private_data, main_ev, location);
1695 static const struct tevent_wrapper_ops smbd_impersonate_root_ops = {
1696 .name = "smbd_impersonate_root",
1697 .before_use = smbd_impersonate_root_before_use,
1698 .after_use = smbd_impersonate_root_after_use,
1699 .before_fd_handler = smbd_impersonate_root_before_fd_handler,
1700 .after_fd_handler = smbd_impersonate_root_after_fd_handler,
1701 .before_timer_handler = smbd_impersonate_root_before_timer_handler,
1702 .after_timer_handler = smbd_impersonate_root_after_timer_handler,
1703 .before_immediate_handler = smbd_impersonate_root_before_immediate_handler,
1704 .after_immediate_handler = smbd_impersonate_root_after_immediate_handler,
1705 .before_signal_handler = smbd_impersonate_root_before_signal_handler,
1706 .after_signal_handler = smbd_impersonate_root_after_signal_handler,
1709 struct tevent_context *smbd_impersonate_root_create(struct tevent_context *main_ev)
1711 struct tevent_context *ev = NULL;
1712 struct smbd_impersonate_root_state *state = NULL;
1714 ev = tevent_context_wrapper_create(main_ev,
1716 &smbd_impersonate_root_ops,
1718 struct smbd_impersonate_root_state);
1726 struct smbd_impersonate_guest_state {
1730 static bool smbd_impersonate_guest_before_use(struct tevent_context *wrap_ev,
1732 struct tevent_context *main_ev,
1733 const char *location)
1735 DEBUG(11,("%s: wrap_ev[%p] main_ev[%p] location[%s]"
1736 "uid[%ju] gid[%ju]\n",
1737 __func__, wrap_ev, main_ev, location,
1738 (uintmax_t)geteuid(), (uintmax_t)getegid()));
1740 return become_guest();
1743 static void smbd_impersonate_guest_after_use(struct tevent_context *wrap_ev,
1745 struct tevent_context *main_ev,
1746 const char *location)
1750 DEBUG(11,("%s: uid[%ju] gid[%ju] location[%s]\n",
1751 __func__, (uintmax_t)geteuid(), (uintmax_t)getegid(),
1755 static void smbd_impersonate_guest_before_fd_handler(struct tevent_context *wrap_ev,
1757 struct tevent_context *main_ev,
1758 struct tevent_fd *fde,
1760 const char *handler_name,
1761 const char *location)
1765 DEBUG(11,("%s: fde[%p] flags[%ju] handler_name[%s] location[%s]\n",
1766 __func__, fde, (uintmax_t)flags, handler_name, location));
1768 ok = smbd_impersonate_guest_before_use(wrap_ev, private_data,
1771 smb_panic("smbd_impersonate_guest_before_use() - failed");
1776 static void smbd_impersonate_guest_after_fd_handler(struct tevent_context *wrap_ev,
1778 struct tevent_context *main_ev,
1779 struct tevent_fd *fde,
1781 const char *handler_name,
1782 const char *location)
1784 DEBUG(11,("%s: fde[%p] handler_name[%s] location[%s]\n",
1785 __func__, fde, handler_name, location));
1787 smbd_impersonate_guest_after_use(wrap_ev, private_data, main_ev, location);
1790 static void smbd_impersonate_guest_before_timer_handler(struct tevent_context *wrap_ev,
1792 struct tevent_context *main_ev,
1793 struct tevent_timer *te,
1794 struct timeval requested_time,
1795 struct timeval trigger_time,
1796 const char *handler_name,
1797 const char *location)
1800 struct timeval_buf requested_buf;
1801 struct timeval_buf trigger_buf;
1803 DEBUG(11,("%s: te[%p] requested_time[%s] trigger_time[%s] "
1804 "handler_name[%s] location[%s]\n",
1806 timeval_str_buf(&requested_time, true, true, &requested_buf),
1807 timeval_str_buf(&trigger_time, true, true, &trigger_buf),
1808 handler_name, location));
1810 ok = smbd_impersonate_guest_before_use(wrap_ev, private_data,
1813 smb_panic("smbd_impersonate_guest_before_use() - failed");
1818 static void smbd_impersonate_guest_after_timer_handler(struct tevent_context *wrap_ev,
1820 struct tevent_context *main_ev,
1821 struct tevent_timer *te,
1822 struct timeval requested_time,
1823 struct timeval trigger_time,
1824 const char *handler_name,
1825 const char *location)
1827 DEBUG(11,("%s: te[%p] handler_name[%s] location[%s]\n",
1828 __func__, te, handler_name, location));
1830 smbd_impersonate_guest_after_use(wrap_ev, private_data, main_ev, location);
1833 static void smbd_impersonate_guest_before_immediate_handler(struct tevent_context *wrap_ev,
1835 struct tevent_context *main_ev,
1836 struct tevent_immediate *im,
1837 const char *handler_name,
1838 const char *location)
1842 DEBUG(11,("%s: im[%p] handler_name[%s] location[%s]\n",
1843 __func__, im, handler_name, location));
1845 ok = smbd_impersonate_guest_before_use(wrap_ev, private_data,
1848 smb_panic("smbd_impersonate_guest_before_use() - failed");
1853 static void smbd_impersonate_guest_after_immediate_handler(struct tevent_context *wrap_ev,
1855 struct tevent_context *main_ev,
1856 struct tevent_immediate *im,
1857 const char *handler_name,
1858 const char *location)
1860 DEBUG(11,("%s: im[%p] handler_name[%s] location[%s]\n",
1861 __func__, im, handler_name, location));
1863 smbd_impersonate_guest_after_use(wrap_ev, private_data, main_ev, location);
1866 static void smbd_impersonate_guest_before_signal_handler(struct tevent_context *wrap_ev,
1868 struct tevent_context *main_ev,
1869 struct tevent_signal *se,
1873 const char *handler_name,
1874 const char *location)
1878 DEBUG(11,("%s: se[%p] signum[%d] count[%d] siginfo[%p] "
1879 "handler_name[%s] location[%s]\n",
1880 __func__, se, signum, count, siginfo, handler_name, location));
1882 ok = smbd_impersonate_guest_before_use(wrap_ev, private_data,
1885 smb_panic("smbd_impersonate_guest_before_use() - failed");
1890 static void smbd_impersonate_guest_after_signal_handler(struct tevent_context *wrap_ev,
1892 struct tevent_context *main_ev,
1893 struct tevent_signal *se,
1897 const char *handler_name,
1898 const char *location)
1900 DEBUG(11,("%s: se[%p] handler_name[%s] location[%s]\n",
1901 __func__, se, handler_name, location));
1903 smbd_impersonate_guest_after_use(wrap_ev, private_data, main_ev, location);
1906 static const struct tevent_wrapper_ops smbd_impersonate_guest_ops = {
1907 .name = "smbd_impersonate_guest",
1908 .before_use = smbd_impersonate_guest_before_use,
1909 .after_use = smbd_impersonate_guest_after_use,
1910 .before_fd_handler = smbd_impersonate_guest_before_fd_handler,
1911 .after_fd_handler = smbd_impersonate_guest_after_fd_handler,
1912 .before_timer_handler = smbd_impersonate_guest_before_timer_handler,
1913 .after_timer_handler = smbd_impersonate_guest_after_timer_handler,
1914 .before_immediate_handler = smbd_impersonate_guest_before_immediate_handler,
1915 .after_immediate_handler = smbd_impersonate_guest_after_immediate_handler,
1916 .before_signal_handler = smbd_impersonate_guest_before_signal_handler,
1917 .after_signal_handler = smbd_impersonate_guest_after_signal_handler,
1920 struct tevent_context *smbd_impersonate_guest_create(struct tevent_context *main_ev)
1922 struct tevent_context *ev = NULL;
1923 struct smbd_impersonate_guest_state *state = NULL;
1925 ev = tevent_context_wrapper_create(main_ev,
1927 &smbd_impersonate_guest_ops,
1929 struct smbd_impersonate_guest_state);