aboutsummaryrefslogtreecommitdiff
path: root/scripts/generate_rust_analyzer.py
diff options
context:
space:
mode:
authorZhang Tianci <[email protected]>2022-09-01 16:29:29 +0800
committerMiklos Szeredi <[email protected]>2022-12-08 10:49:46 +0100
commit5b0db51215e895a361bc63132caa7cca36a53d6a (patch)
treeb7b8c43b7d2efe5d89b218d072861eaee070646f /scripts/generate_rust_analyzer.py
parentcf8aa9bf97cadf85745506c6a3e244b22c268d63 (diff)
ovl: Use ovl mounter's fsuid and fsgid in ovl_link()
There is a wrong case of link() on overlay: $ mkdir /lower /fuse /merge $ mount -t fuse /fuse $ mkdir /fuse/upper /fuse/work $ mount -t overlay /merge -o lowerdir=/lower,upperdir=/fuse/upper,\ workdir=work $ touch /merge/file $ chown bin.bin /merge/file // the file's caller becomes "bin" $ ln /merge/file /merge/lnkfile Then we will get an error(EACCES) because fuse daemon checks the link()'s caller is "bin", it denied this request. In the changing history of ovl_link(), there are two key commits: The first is commit bb0d2b8ad296 ("ovl: fix sgid on directory") which overrides the cred's fsuid/fsgid using the new inode. The new inode's owner is initialized by inode_init_owner(), and inode->fsuid is assigned to the current user. So the override fsuid becomes the current user. We know link() is actually modifying the directory, so the caller must have the MAY_WRITE permission on the directory. The current caller may should have this permission. This is acceptable to use the caller's fsuid. The second is commit 51f7e52dc943 ("ovl: share inode for hard link") which removed the inode creation in ovl_link(). This commit move inode_init_owner() into ovl_create_object(), so the ovl_link() just give the old inode to ovl_create_or_link(). Then the override fsuid becomes the old inode's fsuid, neither the caller nor the overlay's mounter! So this is incorrect. Fix this bug by using ovl mounter's fsuid/fsgid to do underlying fs's link(). Link: https://lore.kernel.org/all/20220817102952.xnvesg3a7rbv576x@wittgenstein/T Link: https://lore.kernel.org/lkml/[email protected]/t Signed-off-by: Zhang Tianci <[email protected]> Signed-off-by: Jiachen Zhang <[email protected]> Reviewed-by: Christian Brauner (Microsoft) <[email protected]> Fixes: 51f7e52dc943 ("ovl: share inode for hard link") Cc: <[email protected]> # v4.8 Signed-off-by: Miklos Szeredi <[email protected]>
Diffstat (limited to 'scripts/generate_rust_analyzer.py')
0 files changed, 0 insertions, 0 deletions