diff options
author | Andrew Bartlett <abartlet@samba.org> | 2012-08-13 20:00:21 +1000 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2012-08-15 11:44:49 +1000 |
commit | 3d031f2189a29a12320b424a4a192ac4e8b4622c (patch) | |
tree | 8d04034553b271532c796b2320ca62d925bded9b | |
parent | 9f16fcfd3f5e0fde9e857f18faaad01ee631320c (diff) | |
download | samba-3d031f2189a29a12320b424a4a192ac4e8b4622c.tar.gz samba-3d031f2189a29a12320b424a4a192ac4e8b4622c.tar.bz2 samba-3d031f2189a29a12320b424a4a192ac4e8b4622c.zip |
s3-smbd: Call sys_acl_set_permset() directly rather than via the VFS
This will allow us to remove the struct smb_acl_t manipuations from the VFS layer,
which will be reduced to handling the get/set functions.
Andrew Bartlett
-rw-r--r-- | source3/smbd/posix_acls.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/source3/smbd/posix_acls.c b/source3/smbd/posix_acls.c index 9e61706126..a6982ec109 100644 --- a/source3/smbd/posix_acls.c +++ b/source3/smbd/posix_acls.c @@ -2953,7 +2953,7 @@ static bool set_canon_ace_list(files_struct *fsp, * ..and apply them to the entry. */ - if (SMB_VFS_SYS_ACL_SET_PERMSET(conn, the_entry, the_permset) == -1) { + if (sys_acl_set_permset(the_entry, the_permset) == -1) { DEBUG(0,("set_canon_ace_list: Failed to add permset on entry %d. (%s)\n", i, strerror(errno) )); goto fail; @@ -2985,7 +2985,7 @@ static bool set_canon_ace_list(files_struct *fsp, goto fail; } - if (SMB_VFS_SYS_ACL_SET_PERMSET(conn, mask_entry, mask_permset) == -1) { + if (sys_acl_set_permset(mask_entry, mask_permset) == -1) { DEBUG(0,("set_canon_ace_list: Failed to add mask permset. (%s)\n", strerror(errno) )); goto fail; } @@ -4354,7 +4354,7 @@ static int chmod_acl_internals( connection_struct *conn, SMB_ACL_T posix_acl, mo if (map_acl_perms_to_permset(conn, perms, &permset) == -1) return -1; - if (SMB_VFS_SYS_ACL_SET_PERMSET(conn, entry, permset) == -1) + if (sys_acl_set_permset(entry, permset) == -1) return -1; } @@ -4579,7 +4579,7 @@ static SMB_ACL_T create_posix_acl_from_wire(connection_struct *conn, uint16 num_ } /* Now apply to the new ACL entry. */ - if (SMB_VFS_SYS_ACL_SET_PERMSET(conn, the_entry, the_permset) == -1) { + if (sys_acl_set_permset(the_entry, the_permset) == -1) { DEBUG(0,("create_posix_acl_from_wire: Failed to add permset on entry %u. (%s)\n", i, strerror(errno) )); goto fail; @@ -4757,17 +4757,17 @@ static bool remove_posix_acl(connection_struct *conn, files_struct *fsp, const c } if (tagtype == SMB_ACL_USER_OBJ) { - if (SMB_VFS_SYS_ACL_SET_PERMSET(conn, user_ent, permset) == -1) { + if (sys_acl_set_permset(user_ent, permset) == -1) { DEBUG(5,("remove_posix_acl: failed to set permset from ACL on file %s (%s).\n", fname, strerror(errno) )); } } else if (tagtype == SMB_ACL_GROUP_OBJ) { - if (SMB_VFS_SYS_ACL_SET_PERMSET(conn, group_ent, permset) == -1) { + if (sys_acl_set_permset(group_ent, permset) == -1) { DEBUG(5,("remove_posix_acl: failed to set permset from ACL on file %s (%s).\n", fname, strerror(errno) )); } } else if (tagtype == SMB_ACL_OTHER) { - if (SMB_VFS_SYS_ACL_SET_PERMSET(conn, other_ent, permset) == -1) { + if (sys_acl_set_permset(other_ent, permset) == -1) { DEBUG(5,("remove_posix_acl: failed to set permset from ACL on file %s (%s).\n", fname, strerror(errno) )); } |