xfs: set inode sick state flags when we zap either ondisk fork
authorDarrick J. Wong <djwong@kernel.org>
Fri, 15 Dec 2023 18:03:35 +0000 (10:03 -0800)
committerDarrick J. Wong <djwong@kernel.org>
Fri, 15 Dec 2023 18:03:35 +0000 (10:03 -0800)
commitd9041681dd2f5334529a68868c9266631c384de4
tree93055bec735bc7aef932d86c1fc32969a650acb1
parent6b5d917780219d0d8f8e2cefefcb6f50987d0fa3
xfs: set inode sick state flags when we zap either ondisk fork

In a few patches, we'll add some online repair code that tries to
massage the ondisk inode record just enough to get it to pass the inode
verifiers so that we can continue with more file repairs.  Part of that
massaging can include zapping the ondisk forks to clear errors.  After
that point, the bmap fork repair functions will rebuild the zapped
forks.

Christoph asked for stronger protections against online repair zapping a
fork to get the inode to load vs. other threads trying to access the
partially repaired file.  Do this by adding a special "[DA]FORK_ZAPPED"
inode health flag whenever repair zaps a fork, and sprinkling checks for
that flag into the various file operations for things that don't like
handling an unexpected zero-extents fork.

In practice xfs_scrub will scrub and fix the forks almost immediately
after zapping them, so the window is very small.  However, if a crash or
unmount should occur, we can still detect these zapped inode forks by
looking for a zero-extents fork when data was expected.

Signed-off-by: Darrick J. Wong <djwong@kernel.org>
Reviewed-by: Christoph Hellwig <hch@lst.de>
13 files changed:
fs/xfs/libxfs/xfs_health.h
fs/xfs/scrub/bmap.c
fs/xfs/scrub/common.c
fs/xfs/scrub/dir.c
fs/xfs/scrub/health.c
fs/xfs/scrub/health.h
fs/xfs/scrub/symlink.c
fs/xfs/xfs_dir2_readdir.c
fs/xfs/xfs_health.c
fs/xfs/xfs_inode.c
fs/xfs/xfs_inode.h
fs/xfs/xfs_symlink.c
fs/xfs/xfs_xattr.c