r16945: Sync trunk -> 3.0 for 3.0.24 code. Still need
[vlendec/samba-autobuild/.git] / source3 / modules / vfs_afsacl.c
index cd10dc71c2e29a8a2bc38db95f6b1cbe2bf4f68c..11498fccf9e156d76b6d2e73c7d69f55915d930a 100644 (file)
 
 #define MAXSIZE 2048
 
-extern DOM_SID global_sid_World;
-extern DOM_SID global_sid_Builtin_Administrators;
-extern DOM_SID global_sid_Builtin_Backup_Operators;
-extern DOM_SID global_sid_Authenticated_Users;
-extern DOM_SID global_sid_NULL;
+extern const DOM_SID global_sid_World;
+extern const DOM_SID global_sid_Builtin_Administrators;
+extern const DOM_SID global_sid_Builtin_Backup_Operators;
+extern const DOM_SID global_sid_Authenticated_Users;
+extern const DOM_SID global_sid_NULL;
+
+static char space_replacement = '%';
+
+/* Do we expect SIDs as pts names? */
+static BOOL sidpts;
 
 extern int afs_syscall(int, char *, int, char *, int);
 
@@ -83,7 +88,7 @@ static void free_afs_acl(struct afs_acl *acl)
 
 static struct afs_ace *clone_afs_ace(TALLOC_CTX *mem_ctx, struct afs_ace *ace)
 {
-       struct afs_ace *result = talloc(mem_ctx, sizeof(struct afs_ace));
+       struct afs_ace *result = TALLOC_P(mem_ctx, struct afs_ace);
 
        if (result == NULL)
                return NULL;
@@ -100,27 +105,6 @@ static struct afs_ace *clone_afs_ace(TALLOC_CTX *mem_ctx, struct afs_ace *ace)
        return result;
 }
        
-
-/* Ok, this is sort-of a hack. We assume here that we have winbind users in
- * AFS. And yet another copy of parse_domain_user.... */
-
-static BOOL parse_domain_user(const char *domuser, fstring domain,
-                             fstring user)
-{
-       char *p = strchr(domuser,*lp_winbind_separator());
-
-       if (p==NULL) {
-               return False;
-       }
-
-       fstrcpy(user, p+1);
-       fstrcpy(domain, domuser);
-       domain[PTR_DIFF(p, domuser)] = 0;
-       strupper_m(domain);
-       
-       return True;
-}
-
 static struct afs_ace *new_afs_ace(TALLOC_CTX *mem_ctx,
                                   BOOL positive,
                                   const char *name, uint32 rights)
@@ -149,16 +133,31 @@ static struct afs_ace *new_afs_ace(TALLOC_CTX *mem_ctx,
                sid_copy(&sid, &global_sid_Builtin_Backup_Operators);
                type = SID_NAME_ALIAS;
 
+       } else if (sidpts) {
+               /* All PTS users/groups are expressed as SIDs */
+
+               sid_copy(&sid, &global_sid_NULL);
+               type = SID_NAME_UNKNOWN;
+
+               if (string_to_sid(&sid, name)) {
+                       const char *user, *domain;
+                       /* We have to find the type, look up the SID */
+                       lookup_sid(tmp_talloc_ctx(), &sid,
+                                  &domain, &user, &type);
+               }
+
        } else {
 
-               fstring user, domain;
+               const char *domain, *uname;
+               char *p;
 
-               if (!parse_domain_user(name, domain, user)) {
-                       fstrcpy(user, name);
-                       fstrcpy(domain, lp_workgroup());
+               p = strchr_m(name, *lp_winbind_separator());
+               if (p != NULL) {
+                       *p = '\\';
                }
-                   
-               if (!lookup_name(domain, user, &sid, &type)) {
+
+               if (!lookup_name(tmp_talloc_ctx(), name, LOOKUP_NAME_ALL,
+                                &domain, &uname, &sid, &type)) {
                        DEBUG(10, ("Could not find AFS user %s\n", name));
 
                        sid_copy(&sid, &global_sid_NULL);
@@ -167,7 +166,7 @@ static struct afs_ace *new_afs_ace(TALLOC_CTX *mem_ctx,
                }
        }
 
-       result = talloc(mem_ctx, sizeof(struct afs_ace));
+       result = TALLOC_P(mem_ctx, struct afs_ace);
 
        if (result == NULL) {
                DEBUG(0, ("Could not talloc AFS ace\n"));
@@ -260,10 +259,12 @@ static BOOL parse_afs_acl(struct afs_acl *acl, const char *acl_str)
        for (aces = nplus+nminus; aces > 0; aces--)
        {
 
-               const char *name;
+               const char *namep;
+               fstring name;
                uint32 rights;
+               char *space;
 
-               name = p;
+               namep = p;
 
                if ((p = strchr(p, '\t')) == NULL)
                        return False;
@@ -277,6 +278,11 @@ static BOOL parse_afs_acl(struct afs_acl *acl, const char *acl_str)
                        return False;
                p += 1;
 
+               fstrcpy(name, namep);
+
+               while ((space = strchr_m(name, space_replacement)) != NULL)
+                       *space = ' ';
+
                add_afs_ace(acl, nplus>0, name, rights);
 
                nplus -= 1;
@@ -488,6 +494,17 @@ static struct static_dir_ace_mapping {
        { 0, SEC_ACE_FLAG_OBJECT_INHERIT|SEC_ACE_FLAG_CONTAINER_INHERIT,
          0x00120089, 8 /* l */ },
 
+       /* some stupid workaround for preventing fallbacks */   
+       { 0, 0x3, 0x0012019F, 9 /* rl */ },
+       { 0, 0x13, PERMS_FULL, 127 /* full */ },
+       
+       /* read, delete and execute access plus synchronize */
+       { 0, 0x3, 0x001300A9, 9 /* should be rdl, set to rl */},
+       /* classical read list */
+       { 0, 0x13, 0x001200A9, 9 /* rl */},
+       /* almost full control, no delete */
+       { 0, 0x13, PERMS_CHANGE, 63 /* rwidlk */},
+
        /* List folder */
        { 0, SEC_ACE_FLAG_CONTAINER_INHERIT,
          PERMS_READ, 8 /* l */ },
@@ -527,8 +544,8 @@ static uint32 nt_to_afs_dir_rights(const char *filename, const SEC_ACE *ace)
                        return m->afs_rights;
        }
 
-       DEBUG(1, ("AFSACL FALLBACK: 0x%X 0x%X 0x%X %s\n",
-                 ace->type, ace->flags, ace->info.mask, filename));
+       DEBUG(1, ("AFSACL FALLBACK: 0x%X 0x%X 0x%X %s %X\n",
+                 ace->type, ace->flags, ace->info.mask, filename, rights));
 
        if (rights & (GENERIC_ALL_ACCESS|WRITE_DAC_ACCESS)) {
                result |= PRSFS_READ | PRSFS_WRITE | PRSFS_INSERT |
@@ -585,13 +602,13 @@ static size_t afs_to_nt_acl(struct afs_acl *afs_acl,
 
        struct afs_ace *afs_ace;
 
-       if (fsp->is_directory || fsp->fd == -1) {
+       if (fsp->is_directory || fsp->fh->fd == -1) {
                /* Get the stat struct for the owner info. */
                if(SMB_VFS_STAT(fsp->conn,fsp->fsp_name, &sbuf) != 0) {
                        return 0;
                }
        } else {
-               if(SMB_VFS_FSTAT(fsp,fsp->fd,&sbuf) != 0) {
+               if(SMB_VFS_FSTAT(fsp,fsp->fh->fd,&sbuf) != 0) {
                        return 0;
                }
        }
@@ -599,7 +616,7 @@ static size_t afs_to_nt_acl(struct afs_acl *afs_acl,
        uid_to_sid(&owner_sid, sbuf.st_uid);
        gid_to_sid(&group_sid, sbuf.st_gid);
 
-       nt_ace_list = (SEC_ACE *)malloc(afs_acl->num_aces * sizeof(SEC_ACE));
+       nt_ace_list = TALLOC_ARRAY(mem_ctx, SEC_ACE, afs_acl->num_aces);
 
        if (nt_ace_list == NULL)
                return 0;
@@ -695,9 +712,9 @@ static BOOL nt_to_afs_acl(const char *filename,
 
        for (i = 0; i < dacl->num_aces; i++) {
                SEC_ACE *ace = &(dacl->ace[i]);
-               fstring dom_name;
-               fstring name;
+               const char *dom_name, *name;
                enum SID_NAME_USE name_type;
+               char *p;
 
                if (ace->type != SEC_ACE_TYPE_ACCESS_ALLOWED) {
                        /* First cut: Only positive ACEs */
@@ -713,28 +730,28 @@ static BOOL nt_to_afs_acl(const char *filename,
                if (sid_compare(&ace->trustee,
                                &global_sid_Builtin_Administrators) == 0) {
 
-                       fstrcpy(name, "system:administrators");
+                       name = "system:administrators";
 
                } else if (sid_compare(&ace->trustee,
                                       &global_sid_World) == 0) {
 
-                       fstrcpy(name, "system:anyuser");
+                       name = "system:anyuser";
 
                } else if (sid_compare(&ace->trustee,
                                       &global_sid_Authenticated_Users) == 0) {
 
-                       fstrcpy(name, "system:authuser");
+                       name = "system:authuser";
 
                } else if (sid_compare(&ace->trustee,
                                       &global_sid_Builtin_Backup_Operators)
                           == 0) {
 
-                       fstrcpy(name, "system:backup");
+                       name = "system:backup";
 
                } else {
 
-                       if (!lookup_sid(&ace->trustee,
-                                       dom_name, name, &name_type)) {
+                       if (!lookup_sid(tmp_talloc_ctx(), &ace->trustee,
+                                       &dom_name, &name, &name_type)) {
                                DEBUG(1, ("AFSACL: Could not lookup SID %s on file %s\n",
                                          sid_string_static(&ace->trustee), filename));
                                continue;
@@ -742,16 +759,32 @@ static BOOL nt_to_afs_acl(const char *filename,
 
                        if ( (name_type == SID_NAME_USER) ||
                             (name_type == SID_NAME_DOM_GRP) ||
-                            (name_type == SID_NAME_ALIAS) ) { 
-                               fstring only_username;
-                               fstrcpy(only_username, name);
-                               fstr_sprintf(name, "%s%s%s",
-                                            dom_name, lp_winbind_separator(),
-                                            only_username);
-                               strlower_m(name);
+                            (name_type == SID_NAME_ALIAS) ) {
+                               char *tmp;
+                               tmp = talloc_asprintf(tmp_talloc_ctx(), "%s%s%s",
+                                                      dom_name, lp_winbind_separator(),
+                                                      name);
+                               if (tmp == NULL) {
+                                       return False;
+                               }
+                               strlower_m(tmp);
+                               name = tmp;
+                       }
+
+                       if (sidpts) {
+                               /* Expect all users/groups in pts as SIDs */
+                               name = talloc_strdup(
+                                       tmp_talloc_ctx(),
+                                       sid_string_static(&ace->trustee));
+                               if (name == NULL) {
+                                       return False;
+                               }
                        }
                }
 
+               while ((p = strchr_m(name, ' ')) != NULL)
+                       *p = space_replacement;
+
                add_afs_ace(afs_acl, True, name,
                            nt_to_afs_rights(filename, ace));
        }
@@ -801,6 +834,8 @@ static size_t afs_get_nt_acl(struct files_struct *fsp, uint32 security_info,
 
        DEBUG(5, ("afs_get_nt_acl: %s\n", fsp->fsp_name));
 
+       sidpts = lp_parm_bool(SNUM(fsp->conn), "afsacl", "sidpts", False);
+
        if (!afs_get_afs_acl(fsp->fsp_name, &acl)) {
                return 0;
        }
@@ -859,6 +894,8 @@ static BOOL afs_set_nt_acl(vfs_handle_struct *handle, files_struct *fsp,
        fileacls = lp_parm_const_string(SNUM(handle->conn), "afsacl", "fileacls",
                                        "yes");
 
+       sidpts = lp_parm_bool(SNUM(handle->conn), "afsacl", "sidpts", False);
+
        ZERO_STRUCT(old_afs_acl);
        ZERO_STRUCT(new_afs_acl);
        ZERO_STRUCT(dir_acl);
@@ -867,12 +904,14 @@ static BOOL afs_set_nt_acl(vfs_handle_struct *handle, files_struct *fsp,
        pstr_sprintf(name, fsp->fsp_name);
 
        if (!fsp->is_directory) {
+               /* We need to get the name of the directory containing the
+                * file, this is where the AFS acls live */
                char *p = strrchr(name, '/');
-               if (p == NULL) {
-                       DEBUG(3, ("No / in file string\n"));
-                       return False;
+               if (p != NULL) {
+                       *p = '\0';
+               } else {
+                       pstrcpy(name, ".");
                }
-               *p = '\0';
        }
 
        if (!afs_get_afs_acl(name, &old_afs_acl)) {
@@ -971,9 +1010,25 @@ BOOL afsacl_set_nt_acl(vfs_handle_struct *handle,
        return afs_set_nt_acl(handle, fsp, security_info_sent, psd);
 }
 
+static int afsacl_connect(vfs_handle_struct *handle, 
+                         const char *service, 
+                         const char *user)
+{
+       const char *spc;
+
+       spc = lp_parm_const_string(SNUM(handle->conn), "afsacl", "space", "%");
+
+       if (spc != NULL)
+               space_replacement = spc[0];
+       
+       return SMB_VFS_NEXT_CONNECT(handle, service, user);
+}
+
 /* VFS operations structure */
 
 static vfs_op_tuple afsacl_ops[] = {   
+       {SMB_VFS_OP(afsacl_connect), SMB_VFS_OP_CONNECT,
+        SMB_VFS_LAYER_TRANSPARENT},
        {SMB_VFS_OP(afsacl_fget_nt_acl), SMB_VFS_OP_FGET_NT_ACL,
         SMB_VFS_LAYER_TRANSPARENT},
        {SMB_VFS_OP(afsacl_get_nt_acl), SMB_VFS_OP_GET_NT_ACL,