Page MenuHomeFreeBSD

fusefs: fix two bugs regarding VOP_RECLAIM of the root inode
ClosedPublic

Authored by asomers on Apr 2 2022, 7:43 PM.
Tags
None
Referenced Files
F133014518: D34753.id104511.diff
Wed, Oct 22, 2:06 AM
Unknown Object (File)
Sun, Oct 19, 7:02 PM
Unknown Object (File)
Thu, Oct 16, 1:22 PM
Unknown Object (File)
Thu, Oct 16, 1:17 PM
Unknown Object (File)
Mon, Oct 13, 7:07 PM
Unknown Object (File)
Mon, Oct 13, 6:11 PM
Unknown Object (File)
Mon, Oct 13, 2:26 PM
Unknown Object (File)
Mon, Oct 13, 2:26 PM
Subscribers

Details

Summary
  • We never send FUSE_LOOKUP for the root inode, since its inode number is hard-coded to 1. Therefore, we should not send FUSE_FORGET for it, lest the server see its lookup count fall below 0.
  • During VOP_RECLAIM, if we are reclaiming the root inode, we must clear the file system's vroot pointer. Otherwise it will be left pointing at a reclaimed vnode, which will cause future VOP_LOOKUP operations to fail. Previously we only cleared that pointer during VFS_UMOUNT. I don't know of any real-world way to trigger this bug.

MFC after: 2 weeks

Diff Detail

Repository
rS FreeBSD src repository - subversion
Lint
Lint Passed
Unit
No Test Coverage
Build Status
Buildable 44972
Build 41860: arc lint + arc unit

Event Timeline

Release root inode even if the server is already detached

This revision is now accepted and ready to land.Apr 4 2022, 3:29 AM