Skip to content

Commit

Permalink
Remove inode_owner_or_capable override for secpolicy (#179)
Browse files Browse the repository at this point in the history
This commit fixes a bug whereby owner@ ACL that limits WRITE_DATA
access for the owner of a file was not being properly enforced. The
owner of a file should be prevented from write access in this case,
but being owner of file should still allow the file owner to chmod,
chown, and setacl.

Signed-off-by: Andrew Walker <[email protected]>
  • Loading branch information
anodos325 authored Nov 16, 2023
1 parent 908c376 commit 0af02f7
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions module/os/linux/zfs/policy.c
Original file line number Diff line number Diff line change
Expand Up @@ -120,10 +120,7 @@ secpolicy_vnode_access2(const cred_t *cr, struct inode *ip, uid_t owner,
return (0);
}

if ((uid == owner) || (uid == 0))
return (0);

if (zpl_inode_owner_or_capable(zfs_init_idmap, ip))
if (uid == 0)
return (0);

#if defined(CONFIG_USER_NS)
Expand Down

0 comments on commit 0af02f7

Please sign in to comment.