fs: port i_{g,u}id_into_vfs{g,u}id() to mnt_idmap
authorChristian Brauner <brauner@kernel.org>
Fri, 13 Jan 2023 11:49:30 +0000 (12:49 +0100)
committerChristian Brauner (Microsoft) <brauner@kernel.org>
Thu, 19 Jan 2023 08:24:29 +0000 (09:24 +0100)
commite67fe63341b8117d7e0d9acf0f1222d5138b9266
treebff98b058b122ca18afb6e97a61a420804443eaa
parent0dbe12f2e49c046444461b5f4be49df2cafb3a40
fs: port i_{g,u}id_into_vfs{g,u}id() to mnt_idmap

Convert to struct mnt_idmap.
Remove legacy file_mnt_user_ns() and mnt_user_ns().

Last cycle we merged the necessary infrastructure in
256c8aed2b42 ("fs: introduce dedicated idmap type for mounts").
This is just the conversion to struct mnt_idmap.

Currently we still pass around the plain namespace that was attached to a
mount. This is in general pretty convenient but it makes it easy to
conflate namespaces that are relevant on the filesystem with namespaces
that are relevent on the mount level. Especially for non-vfs developers
without detailed knowledge in this area this can be a potential source for
bugs.

Once the conversion to struct mnt_idmap is done all helpers down to the
really low-level helpers will take a struct mnt_idmap argument instead of
two namespace arguments. This way it becomes impossible to conflate the two
eliminating the possibility of any bugs. All of the vfs and all filesystems
only operate on struct mnt_idmap.

Acked-by: Dave Chinner <dchinner@redhat.com>
Reviewed-by: Christoph Hellwig <hch@lst.de>
Signed-off-by: Christian Brauner (Microsoft) <brauner@kernel.org>
33 files changed:
fs/attr.c
fs/coredump.c
fs/exec.c
fs/f2fs/acl.c
fs/f2fs/file.c
fs/f2fs/recovery.c
fs/fat/file.c
fs/fuse/acl.c
fs/inode.c
fs/ksmbd/ndr.c
fs/ksmbd/ndr.h
fs/ksmbd/oplock.c
fs/ksmbd/smb2pdu.c
fs/ksmbd/vfs.c
fs/namei.c
fs/namespace.c
fs/overlayfs/util.c
fs/posix_acl.c
fs/remap_range.c
fs/stat.c
fs/xfs/xfs_inode.c
fs/xfs/xfs_ioctl.c
fs/xfs/xfs_ioctl32.c
fs/xfs/xfs_iops.c
fs/xfs/xfs_itable.c
fs/xfs/xfs_itable.h
include/linux/fs.h
include/linux/mount.h
kernel/capability.c
security/apparmor/domain.c
security/apparmor/file.c
security/apparmor/lsm.c
security/integrity/ima/ima_policy.c