selftest/Samba4: make use of get_cmd_env_vars() to setup all relevant env variables
[samba.git] / source3 / modules / vfs_fake_perms.c
index f8d89019beafccbb4e80fe53afb8f0cb79a89cce..0089186be1a10381825d75fb5165f40dac47243a 100644 (file)
@@ -44,8 +44,21 @@ static int fake_perms_stat(vfs_handle_struct *handle,
        } else {
                smb_fname->st.st_ex_mode = S_IRWXU;
        }
-       smb_fname->st.st_ex_uid = handle->conn->session_info->unix_token->uid;
-       smb_fname->st.st_ex_gid = handle->conn->session_info->unix_token->gid;
+
+       if (handle->conn->session_info != NULL) {
+               struct security_unix_token *utok;
+
+               utok = handle->conn->session_info->unix_token;
+               smb_fname->st.st_ex_uid = utok->uid;
+               smb_fname->st.st_ex_gid = utok->gid;
+       } else {
+               /*
+                * We have an artificial connection for dfs for example. It
+                * sucks, but the current uid/gid is the best we have.
+                */
+               smb_fname->st.st_ex_uid = geteuid();
+               smb_fname->st.st_ex_gid = getegid();
+       }
 
        return ret;
 }
@@ -64,8 +77,20 @@ static int fake_perms_fstat(vfs_handle_struct *handle, files_struct *fsp, SMB_ST
        } else {
                sbuf->st_ex_mode = S_IRWXU;
        }
-       sbuf->st_ex_uid = handle->conn->session_info->unix_token->uid;
-       sbuf->st_ex_gid = handle->conn->session_info->unix_token->gid;
+       if (handle->conn->session_info != NULL) {
+               struct security_unix_token *utok;
+
+               utok = handle->conn->session_info->unix_token;
+               sbuf->st_ex_uid = utok->uid;
+               sbuf->st_ex_gid = utok->gid;
+       } else {
+               /*
+                * We have an artificial connection for dfs for example. It
+                * sucks, but the current uid/gid is the best we have.
+                */
+               sbuf->st_ex_uid = geteuid();
+               sbuf->st_ex_gid = getegid();
+       }
 
        return ret;
 }
@@ -75,8 +100,8 @@ static struct vfs_fn_pointers vfs_fake_perms_fns = {
        .fstat_fn = fake_perms_fstat
 };
 
-NTSTATUS vfs_fake_perms_init(void);
-NTSTATUS vfs_fake_perms_init(void)
+static_decl_vfs;
+NTSTATUS vfs_fake_perms_init(TALLOC_CTX *ctx)
 {
        return smb_register_vfs(SMB_VFS_INTERFACE_VERSION, "fake_perms",
                                &vfs_fake_perms_fns);