r17194: To run rpc-samba3-lsa in the build farm, we can't rely on geteuid()==0. Adapt
authorVolker Lendecke <vlendec@samba.org>
Sat, 22 Jul 2006 20:46:02 +0000 (20:46 +0000)
committerGerald (Jerry) Carter <jerry@samba.org>
Wed, 10 Oct 2007 16:38:19 +0000 (11:38 -0500)
it to other "Am I root?" checks.

Jerry, Jeremy, please check this!

Thanks,

Volker
(This used to be commit f777b2d294f7258e676976d7807adbb644c85a2f)

source3/rpc_server/srv_lsa_nt.c

index e609eac9507f283f018b7fd1b6c6bdbbdf010df3..04747406d46c36aa1ea2498d900772f9d3eb7a1e 100644 (file)
@@ -544,7 +544,7 @@ NTSTATUS _lsa_open_policy2(pipes_struct *p, LSA_Q_OPEN_POL2 *q_u, LSA_R_OPEN_POL
        lsa_get_generic_sd(p->mem_ctx, &psd, &sd_size);
 
        if(!se_access_check(psd, p->pipe_user.nt_user_token, des_access, &acc_granted, &status)) {
-               if (geteuid() != 0) {
+               if (p->pipe_user.ut.uid != sec_initial_uid()) {
                        return status;
                }
                DEBUG(4,("ACCESS should be DENIED (granted: %#010x;  required: %#010x)\n",
@@ -554,7 +554,7 @@ NTSTATUS _lsa_open_policy2(pipes_struct *p, LSA_Q_OPEN_POL2 *q_u, LSA_R_OPEN_POL
 
        /* This is needed for lsa_open_account and rpcclient .... :-) */
 
-       if (geteuid() == 0)
+       if (p->pipe_user.ut.uid == sec_initial_uid())
                acc_granted = POLICY_ALL_ACCESS;
 
        /* associate the domain SID with the (unique) handle. */