From: "Darrick J. Wong" <djwong@kernel.org>
To: Christoph Hellwig <hch@infradead.org>
Cc: aalbersh@kernel.org, linux-xfs@vger.kernel.org
Subject: Re: [PATCH 19/28] xfs_healer: use statmount to find moved filesystems even faster
Date: Tue, 10 Mar 2026 13:06:26 -0700 [thread overview]
Message-ID: <20260310200626.GU1105363@frogsfrogsfrogs> (raw)
In-Reply-To: <20260310185622.GT1105363@frogsfrogsfrogs>
On Tue, Mar 10, 2026 at 11:56:22AM -0700, Darrick J. Wong wrote:
> On Tue, Mar 10, 2026 at 02:28:43AM -0700, Christoph Hellwig wrote:
> > >
> > > However, this is really slow if there are a lot of filesystems because
> > > we end up wading through a lot of irrelevant information. However,
> > > statmount() can help us here because as of Linux 7.0 we can open the
> > > passed-in path at startup, call statmount() on it to retrieve the
> > > mnt_id, and then call it again later with that same mnt_id to find the
> > > mountpoint. Luckily xfs_healthmon didn't get merged until 7.0 so it's
> > > more or less guaranteed to be there if XFS_IOC_HEALTH_MONITOR succeeds.
> > >
> > > Obviously if this doesn't work, we can fall back to the slow walk.
> >
> > Can we kill the fallback and instead just have a good error message
> > if someone messes up their backports?
>
> Yes we could, though the risk with dropping the previous patch is that
> someone could introduce a third-party seccomp policy that forbids
> statmount() even on kernels that support it, and then xfs_healer would
> just fail if the mount moves.
>
> That would be totally stupid because the only reason you'd encounter
> that is because either (a) your distro screwed up their security policy
> or (b) your paranoid IT department deploys an Enterprise Security Model
> written by a ven-duh who hasn't gotten around to evaluating the new
> syscalls and blocks anything they've not read about.
>
> I'd rather keep the getmntent stuff around since that's the classic way
> linux programs (including xfsprogs) have handled scanning the mount
> tables. But if you feel strongly about not having getmntent it's not
> hard to pull it out.
Actually, ignore all this, I found a much better reason for keeping both
versions:
Each bind mount gets a new mnt_id, so getmntent is the only way to find
a different vfsmount of the same filesystem. If you do this:
mount /dev/sda /mnt
xfs_healer /mnt &
mount /mnt /opt --bind
umount /mnt
the filesystem itself never gets unmounted, but statmount() won't be
able to find /opt without scanning the mount table. Observe that the
bind mount gets a different vfsmount object, and hence a different
mnt_id:
# mount /dev/sda /mnt
# xfs_io -c statmount /mnt | grep mnt_id:
mnt_id: 0x80004775
# mount /mnt /opt --bind
# xfs_io -c statmount /opt | grep mnt_id:
mnt_id: 0x8000477a
The statmount reconnection thing, however, works for mount --move
because the vfsmount object doesn't go away, it merely moves around:
# mount -t tmpfs urk /mnt
# mount --make-rprivate /mnt
# mkdir -p /mnt/a /mnt/b
# mount /dev/sda /mnt/a
# xfs_io -c statmount /mnt/a | grep mnt_id:
mnt_id: 0x800048a9
# mount --move /mnt/a /mnt/b
# xfs_io -c statmount /mnt/b | grep mnt_id:
mnt_id: 0x800048a9
I'm not sure when anyone would really do this, but it's certainly
possible to do this, and every other process in the same mount namespace
will see it. I'll go write a new test to exercise this, since I forgot
to do that earlier.
--D
next prev parent reply other threads:[~2026-03-10 20:06 UTC|newest]
Thread overview: 93+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-03-10 3:38 [PATCHBOMB v9] xfsprogs: autonomous self healing of filesystems Darrick J. Wong
2026-03-10 3:42 ` [PATCHSET " Darrick J. Wong
2026-03-10 3:42 ` [PATCH 01/28] libfrog: add a function to grab the path from an open fd and a file handle Darrick J. Wong
2026-03-10 3:43 ` [PATCH 02/28] libfrog: create healthmon event log library functions Darrick J. Wong
2026-03-10 3:43 ` [PATCH 03/28] libfrog: add support code for starting systemd services programmatically Darrick J. Wong
2026-03-10 9:24 ` Christoph Hellwig
2026-03-10 18:35 ` Darrick J. Wong
2026-03-10 3:43 ` [PATCH 04/28] libfrog: hoist a couple of service helper functions Darrick J. Wong
2026-03-10 3:43 ` [PATCH 05/28] libfrog: add wrappers for listmount and statmount Darrick J. Wong
2026-03-10 9:24 ` Christoph Hellwig
2026-03-10 3:44 ` [PATCH 06/28] man2: document the healthmon ioctl Darrick J. Wong
2026-03-10 3:44 ` [PATCH 07/28] man2: document the media verification ioctl Darrick J. Wong
2026-03-10 3:44 ` [PATCH 08/28] xfs_io: monitor filesystem health events Darrick J. Wong
2026-03-10 3:44 ` [PATCH 09/28] xfs_io: add a media verify command Darrick J. Wong
2026-03-10 3:45 ` [PATCH 10/28] xfs_healer: create daemon to listen for health events Darrick J. Wong
2026-03-10 3:45 ` [PATCH 11/28] xfs_healer: enable repairing filesystems Darrick J. Wong
2026-03-10 3:45 ` [PATCH 12/28] xfs_healer: use getparents to look up file names Darrick J. Wong
2026-03-10 3:45 ` [PATCH 13/28] xfs_healer: create a per-mount background monitoring service Darrick J. Wong
2026-03-10 9:25 ` Christoph Hellwig
2026-03-10 3:46 ` [PATCH 14/28] xfs_healer: create a service to start the per-mount healer service Darrick J. Wong
2026-03-10 9:25 ` Christoph Hellwig
2026-03-10 3:46 ` [PATCH 15/28] xfs_healer: don't start service if kernel support unavailable Darrick J. Wong
2026-03-10 3:46 ` [PATCH 16/28] xfs_healer: use the autofsck fsproperty to select mode Darrick J. Wong
2026-03-10 3:46 ` [PATCH 17/28] xfs_healer: run full scrub after lost corruption events or targeted repair failure Darrick J. Wong
2026-03-10 3:47 ` [PATCH 18/28] xfs_healer: use getmntent to find moved filesystems Darrick J. Wong
2026-03-10 3:47 ` [PATCH 19/28] xfs_healer: use statmount to find moved filesystems even faster Darrick J. Wong
2026-03-10 9:28 ` Christoph Hellwig
2026-03-10 18:56 ` Darrick J. Wong
2026-03-10 20:06 ` Darrick J. Wong [this message]
2026-03-12 7:06 ` Christoph Hellwig
2026-03-12 14:19 ` Darrick J. Wong
2026-03-10 3:47 ` [PATCH 20/28] xfs_healer: validate that repair fds point to the monitored fs Darrick J. Wong
2026-03-10 9:28 ` Christoph Hellwig
2026-03-10 3:48 ` [PATCH 21/28] xfs_healer: add a manual page Darrick J. Wong
2026-03-10 3:48 ` [PATCH 22/28] xfs_scrub: use the verify media ioctl during phase 6 if possible Darrick J. Wong
2026-03-10 9:29 ` Christoph Hellwig
2026-03-10 3:48 ` [PATCH 23/28] xfs_scrub: perform media scanning of the log region Darrick J. Wong
2026-03-10 3:48 ` [PATCH 24/28] xfs_scrub: print systemd service names Darrick J. Wong
2026-03-10 9:29 ` Christoph Hellwig
2026-03-10 3:49 ` [PATCH 25/28] xfs_io: add listmount and statmount commands Darrick J. Wong
2026-03-10 9:29 ` Christoph Hellwig
2026-03-10 3:49 ` [PATCH 26/28] mkfs: enable online repair if all backrefs are enabled Darrick J. Wong
2026-03-10 9:30 ` Christoph Hellwig
2026-03-16 16:21 ` Christoph Hellwig
2026-03-16 16:32 ` Darrick J. Wong
2026-03-10 3:49 ` [PATCH 27/28] debian/control: listify the build dependencies Darrick J. Wong
2026-03-10 9:30 ` Christoph Hellwig
2026-03-10 3:49 ` [PATCH 28/28] debian: enable xfs_healer on the root filesystem by default Darrick J. Wong
2026-03-10 9:31 ` Christoph Hellwig
2026-03-10 3:42 ` [PATCHSET v9 1/2] fstests: test generic file IO error reporting Darrick J. Wong
2026-03-10 3:50 ` [PATCH 1/1] generic: test fsnotify filesystem " Darrick J. Wong
2026-03-10 7:07 ` Amir Goldstein
2026-03-13 18:01 ` Zorro Lang
2026-03-13 23:27 ` Darrick J. Wong
2026-03-16 9:08 ` Christoph Hellwig
2026-03-16 16:21 ` Darrick J. Wong
2026-03-16 18:40 ` Zorro Lang
2026-03-16 22:16 ` Darrick J. Wong
2026-03-17 3:43 ` Zorro Lang
2026-03-10 3:42 ` [PATCHSET v9 2/2] fstests: autonomous self healing of filesystems Darrick J. Wong
2026-03-10 3:50 ` [PATCH 01/14] xfs: test health monitoring code Darrick J. Wong
2026-03-13 18:18 ` Zorro Lang
2026-03-10 3:50 ` [PATCH 02/14] xfs: test for metadata corruption error reporting via healthmon Darrick J. Wong
2026-03-13 18:35 ` Zorro Lang
2026-03-10 3:50 ` [PATCH 03/14] xfs: test io " Darrick J. Wong
2026-03-13 18:53 ` Zorro Lang
2026-03-10 3:51 ` [PATCH 04/14] xfs: set up common code for testing xfs_healer Darrick J. Wong
2026-03-13 19:04 ` Zorro Lang
2026-03-14 20:37 ` Zorro Lang
2026-03-15 4:51 ` Darrick J. Wong
2026-03-10 3:51 ` [PATCH 05/14] xfs: test xfs_healer's event handling Darrick J. Wong
2026-03-13 19:19 ` Zorro Lang
2026-03-10 3:51 ` [PATCH 06/14] xfs: test xfs_healer can fix a filesystem Darrick J. Wong
2026-03-13 19:28 ` Zorro Lang
2026-03-10 3:51 ` [PATCH 07/14] xfs: test xfs_healer can report file I/O errors Darrick J. Wong
2026-03-13 19:32 ` Zorro Lang
2026-03-10 3:52 ` [PATCH 08/14] xfs: test xfs_healer can report file media errors Darrick J. Wong
2026-03-13 19:36 ` Zorro Lang
2026-03-10 3:52 ` [PATCH 09/14] xfs: test xfs_healer can report filesystem shutdowns Darrick J. Wong
2026-03-13 19:45 ` Zorro Lang
2026-03-10 3:52 ` [PATCH 10/14] xfs: test xfs_healer can initiate full filesystem repairs Darrick J. Wong
2026-03-13 19:48 ` Zorro Lang
2026-03-10 3:52 ` [PATCH 11/14] xfs: test xfs_healer can follow mount moves Darrick J. Wong
2026-03-13 19:39 ` Zorro Lang
2026-03-10 3:53 ` [PATCH 12/14] xfs: test xfs_healer wont repair the wrong filesystem Darrick J. Wong
2026-03-13 19:53 ` Zorro Lang
2026-03-10 3:53 ` [PATCH 13/14] xfs: test xfs_healer background service Darrick J. Wong
2026-03-13 19:56 ` Zorro Lang
2026-03-10 3:53 ` [PATCH 14/14] xfs: test xfs_healer startup service Darrick J. Wong
2026-03-13 19:58 ` Zorro Lang
2026-03-12 14:21 ` [PATCH 15/14] xfs: test xfs_healer can follow private mntns mount moves Darrick J. Wong
2026-03-13 20:05 ` Zorro Lang
2026-03-13 23:41 ` Darrick J. Wong
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20260310200626.GU1105363@frogsfrogsfrogs \
--to=djwong@kernel.org \
--cc=aalbersh@kernel.org \
--cc=hch@infradead.org \
--cc=linux-xfs@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox