]> git.ipfire.org Git - thirdparty/linux.git/commit - fs/posix_acl.c
fs: pass dentry to set acl method
authorChristian Brauner <brauner@kernel.org>
Fri, 23 Sep 2022 08:29:39 +0000 (10:29 +0200)
committerChristian Brauner (Microsoft) <brauner@kernel.org>
Wed, 19 Oct 2022 10:55:42 +0000 (12:55 +0200)
commit138060ba92b3b0d77c8e6818d0f33398b23ea42e
tree82d393e9d98a1910cb5cc01b465097409694c1b2
parent4053d2500beb0ca1e0757665af9e31da249a7a52
fs: pass dentry to set acl method

The current way of setting and getting posix acls through the generic
xattr interface is error prone and type unsafe. The vfs needs to
interpret and fixup posix acls before storing or reporting it to
userspace. Various hacks exist to make this work. The code is hard to
understand and difficult to maintain in it's current form. Instead of
making this work by hacking posix acls through xattr handlers we are
building a dedicated posix acl api around the get and set inode
operations. This removes a lot of hackiness and makes the codepaths
easier to maintain. A lot of background can be found in [1].

Since some filesystem rely on the dentry being available to them when
setting posix acls (e.g., 9p and cifs) they cannot rely on set acl inode
operation. But since ->set_acl() is required in order to use the generic
posix acl xattr handlers filesystems that do not implement this inode
operation cannot use the handler and need to implement their own
dedicated posix acl handlers.

Update the ->set_acl() inode method to take a dentry argument. This
allows all filesystems to rely on ->set_acl().

As far as I can tell all codepaths can be switched to rely on the dentry
instead of just the inode. Note that the original motivation for passing
the dentry separate from the inode instead of just the dentry in the
xattr handlers was because of security modules that call
security_d_instantiate(). This hook is called during
d_instantiate_new(), d_add(), __d_instantiate_anon(), and
d_splice_alias() to initialize the inode's security context and possibly
to set security.* xattrs. Since this only affects security.* xattrs this
is completely irrelevant for posix acls.

Link: https://lore.kernel.org/all/20220801145520.1532837-1-brauner@kernel.org
Reviewed-by: Christoph Hellwig <hch@lst.de>
Signed-off-by: Christian Brauner (Microsoft) <brauner@kernel.org>
55 files changed:
Documentation/filesystems/vfs.rst
fs/bad_inode.c
fs/btrfs/acl.c
fs/btrfs/ctree.h
fs/btrfs/inode.c
fs/ceph/acl.c
fs/ceph/inode.c
fs/ceph/super.h
fs/ext2/acl.c
fs/ext2/acl.h
fs/ext2/inode.c
fs/ext4/acl.c
fs/ext4/acl.h
fs/ext4/inode.c
fs/f2fs/acl.c
fs/f2fs/acl.h
fs/f2fs/file.c
fs/fuse/acl.c
fs/fuse/fuse_i.h
fs/gfs2/acl.c
fs/gfs2/acl.h
fs/gfs2/inode.c
fs/jffs2/acl.c
fs/jffs2/acl.h
fs/jffs2/fs.c
fs/jfs/acl.c
fs/jfs/file.c
fs/jfs/jfs_acl.h
fs/ksmbd/smb2pdu.c
fs/ksmbd/smbacl.c
fs/ksmbd/vfs.c
fs/ksmbd/vfs.h
fs/nfs/nfs3_fs.h
fs/nfs/nfs3acl.c
fs/nfsd/nfs2acl.c
fs/nfsd/nfs3acl.c
fs/nfsd/vfs.c
fs/ntfs3/file.c
fs/ntfs3/ntfs_fs.h
fs/ntfs3/xattr.c
fs/ocfs2/acl.c
fs/ocfs2/acl.h
fs/orangefs/acl.c
fs/orangefs/inode.c
fs/orangefs/orangefs-kernel.h
fs/posix_acl.c
fs/reiserfs/acl.h
fs/reiserfs/inode.c
fs/reiserfs/xattr_acl.c
fs/xfs/xfs_acl.c
fs/xfs/xfs_acl.h
fs/xfs/xfs_iops.c
include/linux/fs.h
include/linux/posix_acl.h
mm/shmem.c