xfs: use per-mount cpumask to track nonempty percpu inodegc lists
authorDarrick J. Wong <djwong@kernel.org>
Mon, 11 Sep 2023 15:39:03 +0000 (08:39 -0700)
committerDarrick J. Wong <djwong@kernel.org>
Mon, 11 Sep 2023 15:39:03 +0000 (08:39 -0700)
commit62334fab47621dd91ab30dd5bb6c43d78a8ec279
tree76f83feb49fd1a2d9529f99b6225364be52d8dd7
parentecd49f7a36fbccc884471f86fc43de6ca8d1f786
xfs: use per-mount cpumask to track nonempty percpu inodegc lists

Directly track which CPUs have contributed to the inodegc percpu lists
instead of trusting the cpu online mask.  This eliminates a theoretical
problem where the inodegc flush functions might fail to flush a CPU's
inodes if that CPU happened to be dying at exactly the same time.  Most
likely nobody's noticed this because the CPU dead hook moves the percpu
inodegc list to another CPU and schedules that worker immediately.  But
it's quite possible that this is a subtle race leading to UAF if the
inodegc flush were part of an unmount.

Further benefits: This reduces the overhead of the inodegc flush code
slightly by allowing us to ignore CPUs that have empty lists.  Better
yet, it reduces our dependence on the cpu online masks, which have been
the cause of confusion and drama lately.

Fixes: ab23a7768739 ("xfs: per-cpu deferred inode inactivation queues")
Signed-off-by: Darrick J. Wong <djwong@kernel.org>
Reviewed-by: Dave Chinner <dchinner@redhat.com>
fs/xfs/xfs_icache.c
fs/xfs/xfs_icache.h
fs/xfs/xfs_mount.h
fs/xfs/xfs_super.c