linux-yocto/fs/fuse
Guang Yuan Wu 96715eb1a1 fuse: fix race between concurrent setattrs from multiple nodes
[ Upstream commit 69efbff69f ]

When mounting a user-space filesystem on multiple clients, after
concurrent ->setattr() calls from different node, stale inode
attributes may be cached in some node.

This is caused by fuse_setattr() racing with
fuse_reverse_inval_inode().

When filesystem server receives setattr request, the client node
with valid iattr cached will be required to update the fuse_inode's
attr_version and invalidate the cache by fuse_reverse_inval_inode(),
and at the next call to ->getattr() they will be fetched from user
space.

The race scenario is:
1. client-1 sends setattr (iattr-1) request to server
2. client-1 receives the reply from server
3. before client-1 updates iattr-1 to the cached attributes by
   fuse_change_attributes_common(), server receives another setattr
   (iattr-2) request from client-2
4. server requests client-1 to update the inode attr_version and
   invalidate the cached iattr, and iattr-1 becomes staled
5. client-2 receives the reply from server, and caches iattr-2
6. continue with step 2, client-1 invokes
   fuse_change_attributes_common(), and caches iattr-1

The issue has been observed from concurrent of chmod, chown, or
truncate, which all invoke ->setattr() call.

The solution is to use fuse_inode's attr_version to check whether
the attributes have been modified during the setattr request's
lifetime.  If so, mark the attributes as invalid in the function
fuse_change_attributes_common().

Signed-off-by: Guang Yuan Wu <gwu@ddn.com>
Reviewed-by: Bernd Schubert <bschubert@ddn.com>
Signed-off-by: Miklos Szeredi <mszeredi@redhat.com>
Signed-off-by: Sasha Levin <sashal@kernel.org>
2025-07-06 11:00:06 +02:00
..
acl.c
control.c
cuse.c fuse: fix UAF in rcu pathwalks 2024-08-29 17:33:33 +02:00
dax.c fuse: fix dax truncate/punch_hole fault path 2025-04-10 14:37:34 +02:00
dev.c
dir.c fuse: fix race between concurrent setattrs from multiple nodes 2025-07-06 11:00:06 +02:00
file.c fuse: fix dax truncate/punch_hole fault path 2025-04-10 14:37:34 +02:00
fuse_i.h fuse: fix UAF in rcu pathwalks 2024-08-29 17:33:33 +02:00
inode.c fuse: fix UAF in rcu pathwalks 2024-08-29 17:33:33 +02:00
ioctl.c
Kconfig
Makefile
readdir.c
virtio_fs.c virtiofs: add filesystem context source name check 2025-04-25 10:45:50 +02:00
xattr.c fuse: use unsigned type for getxattr/listxattr size truncation 2024-09-12 11:11:26 +02:00