diff options
author | Jeremy Allison <jra@samba.org> | 2005-05-10 04:25:11 +0000 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2005-05-10 04:25:11 +0000 |
commit | 721ae189952003d6ec827a057193f2b0050804a7 (patch) | |
tree | 9b143ba8cda4ff54b80120e8f991e45a51289279 /source/smbd | |
parent | 7b87f4e20011762086b3457cc2e86dbbb7a102c0 (diff) | |
download | samba-721ae189952003d6ec827a057193f2b0050804a7.tar.gz samba-721ae189952003d6ec827a057193f2b0050804a7.tar.xz samba-721ae189952003d6ec827a057193f2b0050804a7.zip |
r6696: Another attempt to fix the (unreproducible for me) bug #2346 (read-only
excel files). Ensures that any missing user ACL entry will be generated
from a union of all group permissions that contain the user.
Awaiting feedback from the reporters.
Jeremy.
Diffstat (limited to 'source/smbd')
-rw-r--r-- | source/smbd/posix_acls.c | 27 |
1 files changed, 21 insertions, 6 deletions
diff --git a/source/smbd/posix_acls.c b/source/smbd/posix_acls.c index 1e68900bd3b..b31e97c76f8 100644 --- a/source/smbd/posix_acls.c +++ b/source/smbd/posix_acls.c @@ -1097,13 +1097,28 @@ static BOOL ensure_canon_entry_valid(canon_ace **pp_ace, pace->attr = ALLOW_ACE; if (setting_acl) { + /* See if the owning user is in any of the other groups in + the ACE. If so, OR in the permissions from that group. */ + + BOOL group_matched = False; + canon_ace *pace_iter; + + for (pace_iter = *pp_ace; pace_iter; pace_iter = pace_iter->next) { + if (pace_iter->type == SMB_ACL_GROUP_OBJ || pace_iter->type == SMB_ACL_GROUP) { + if (uid_entry_in_group(pace, pace_iter)) { + pace->perms |= pace_iter->perms; + group_matched = True; + } + } + } + /* If we only got an "everyone" perm, just use that. */ - if (!got_grp && got_other) - pace->perms = pace_other->perms; - else if (got_grp && uid_entry_in_group(pace, pace_group)) - pace->perms = pace_group->perms; - else - pace->perms = 0; + if (!group_matched) { + if (got_other) + pace->perms = pace_other->perms; + else + pace->perms = 0; + } apply_default_perms(fsp, pace, S_IRUSR); } else { |