X-Git-Url: https://mattmccutchen.net/rsync/rsync-patches.git/blobdiff_plain/00188d68fd6237a24a4f71c26a3251b1951fa542..e30b4e2ebae1c4d2503403b0b0af6747d6aa5b51:/adaptec_acl_mods.diff diff --git a/adaptec_acl_mods.diff b/adaptec_acl_mods.diff index f9988e7..60b76f5 100644 --- a/adaptec_acl_mods.diff +++ b/adaptec_acl_mods.diff @@ -1,8 +1,7 @@ -Depends-On-Patch: acls.diff - -After applying the above patch and this one, run these commands for a -successful build: +To use this patch, run these commands for a successful build: + patch -p1 user_obj & 7, entry) ); ++ COE2( store_access_in_entry,(racl->user_obj & 077, entry) ); - static void receive_rsync_acl(rsync_acl *racl, int f) - { -- uchar computed_mask_bits = 0; -+ abits computed_mask_bits = 0; - ida_list *idal = NULL; - id_access *ida; - size_t count; -@@ -708,8 +719,8 @@ static void receive_rsync_acl(rsync_acl + for (ida = racl->users.idas, count = racl->users.count; count--; ida++) { + COE( sys_acl_create_entry,(smb_acl, &entry) ); +@@ -445,7 +454,7 @@ static BOOL pack_smb_acl(SMB_ACL_T *smb_ + COE( sys_acl_create_entry,(smb_acl, &entry) ); + COE( sys_acl_set_tag_type,(entry, SMB_ACL_GROUP_OBJ) ); +- COE2( store_access_in_entry,(racl->group_obj & 7, entry) ); ++ COE2( store_access_in_entry,(racl->group_obj & 077, entry) ); + + for (ida = racl->groups.idas, count = racl->groups.count; count--; ida++) { + COE( sys_acl_create_entry,(smb_acl, &entry) ); +@@ -455,7 +464,7 @@ static BOOL pack_smb_acl(SMB_ACL_T *smb_ + } + + #ifdef ACLS_NEED_MASK +- mask_bits = racl->mask_obj == NO_ENTRY ? racl->group_obj & 7 : racl->mask_obj; ++ mask_bits = racl->mask_obj == NO_ENTRY ? racl->group_obj & 077 : racl->mask_obj; + COE( sys_acl_create_entry,(smb_acl, &entry) ); + COE( sys_acl_set_tag_type,(entry, SMB_ACL_MASK) ); + COE2( store_access_in_entry,(mask_bits, entry) ); +@@ -469,7 +478,7 @@ static BOOL pack_smb_acl(SMB_ACL_T *smb_ + + COE( sys_acl_create_entry,(smb_acl, &entry) ); + COE( sys_acl_set_tag_type,(entry, SMB_ACL_OTHER) ); +- COE2( store_access_in_entry,(racl->other_obj & 7, entry) ); ++ COE2( store_access_in_entry,(racl->other_obj & 077, entry) ); + + #ifdef DEBUG + if (sys_acl_valid(*smb_acl) < 0) +@@ -766,7 +775,7 @@ static void old_recv_rsync_acl(rsync_acl while (count--) { char tag = read_byte(f); -- uchar access = read_byte(f); + uchar access = read_byte(f); - if (access & ~ (4 | 2 | 1)) { -+ abits access = read_byte(f); + if (access & ~(32 | 16 | 8 | 4 | 2 | 1)) { - rprintf(FERROR, "receive_rsync_acl: bogus permset %o\n", + rprintf(FERROR, "old_recv_rsync_acl: bogus permset %o\n", access); exit_cleanup(RERR_STREAMIO); +@@ -832,7 +841,7 @@ static void old_recv_rsync_acl(rsync_acl + racl->mask_obj = NO_ENTRY; + } + } else if (racl->mask_obj == NO_ENTRY) /* Must be non-empty with lists. */ +- racl->mask_obj = computed_mask_bits | (racl->group_obj & 7); ++ racl->mask_obj = computed_mask_bits | (racl->group_obj & 077); + } + + /* Receive the ACL info the sender has included for this file-list entry. */ +@@ -904,7 +913,7 @@ static uchar recv_acl_access(uchar *name + *name_follows_val = 0; + } + +- if (access & ~(4 | 2 | 1)) { ++ if (access & ~(32 | 16 | 8 | 4 | 2 | 1)) { + rprintf(FERROR, "recv_acl_access: bogus permset %o\n", access); + exit_cleanup(RERR_STREAMIO); + } --- old/smb_acls.h +++ new/smb_acls.h @@ -33,6 +33,11 @@