* [PATCH 0/3] fix s_uuid and f_fsid consistency for cloned filesystems
@ 2026-02-26 14:23 Anand Jain
2026-02-26 14:28 ` [RFC PATCH 3/3] ext4: derive f_fsid from block device to avoid collisions Anand Jain
` (2 more replies)
0 siblings, 3 replies; 6+ messages in thread
From: Anand Jain @ 2026-02-26 14:23 UTC (permalink / raw)
To: linux-btrfs, linux-ext4
Btrfs, XFS and ext4 currently handle s_uuid and f_fsid differently when
a filesystem is cloned (e.g. snapshot or block-level copy), leading to
inconsistent behaviour across filesystems.
The table below summarises the current and post-patch behaviour.
"same" means the value is identical on both the original and cloned
filesystem.
Cloned filesystem:
| s_uuid f_fsid
--------------|---------------------------
EXT4 | same same
Btrfs | random random
XFS | same f(devt)
EXT4-patched | same f(devt)
Btrfs-patched | same f(s_uuid,rootid,devt)
Problem
-------
Btrfs currently never duplicates s_uuid or f_fsid for cloned filesystems.
When an fsid collision is detected at mount time, btrfs generates a new
in-memory fsid (temp_fsid), but this is ephemeral — it changes on every
mount. This has two consequences:
1. IMA (Integrity Measurement Architecture) cannot reliably track the
filesystem across mount-cycle, since the f_fsid it sees keeps changing.
This does not scale. Whereas on the otherhand if you have same s_uuid
on multiple filesystems, monitoring per distint filesystem is lost.
2. If we instead allow cloned filesystems to share the same f_fsid (as
ext4 currently does), fanotify loses the ability to distinguish
between distinct filesystem instances. FAN_EVENT_INFO_TYPE_FID events
will fail to resolve to the correct mountpoint when f_fsid values
are identical across clones.
This series resolves the tradeoff by aligning btrfs and ext4 behaviour
with XFS: f_fsid incorporates device identity (devt) to remain unique
across clones, while s_uuid is preserved consistently matching the on-disk
uuid.
Patches
-------
Patch 1/3: btrfs: fix f_fsid to include rootid and devt
Patch 2/3: btrfs: fix s_uuid to be stable across mounts for cloned filesystems
Patch 3/3: ext4: fix f_fsid to use devt instead of s_uuid
Anand Jain (3):
btrfs: derive f_fsid from on-disk fsuuid and dev_t
btrfs: use on-disk uuid for s_uuid in temp_fsid mounts
ext4: derive f_fsid from block device to avoid collisions
fs/btrfs/disk-io.c | 3 ++-
fs/btrfs/super.c | 27 +++++++++++++++++++++++----
fs/ext4/super.c | 2 +-
3 files changed, 26 insertions(+), 6 deletions(-)
--
2.43.0
^ permalink raw reply [flat|nested] 6+ messages in thread* [RFC PATCH 3/3] ext4: derive f_fsid from block device to avoid collisions 2026-02-26 14:23 [PATCH 0/3] fix s_uuid and f_fsid consistency for cloned filesystems Anand Jain @ 2026-02-26 14:28 ` Anand Jain 2026-03-04 13:28 ` [PATCH 0/3] fix s_uuid and f_fsid consistency for cloned filesystems Christoph Hellwig 2026-03-22 20:31 ` Theodore Tso 2 siblings, 0 replies; 6+ messages in thread From: Anand Jain @ 2026-02-26 14:28 UTC (permalink / raw) To: linux-ext4 statfs() currently reports f_fsid derived from the on-disk UUID. Cloned block devices share the same UUID, so distinct ext4 instances can return identical f_fsid values. This leads to collisions in fanotify. Encode sb->s_dev into f_fsid instead of using the superblock UUID. This provides a per-device identifier and avoids conflicts when filesystem is cloned, matching the behavior with xfs. Marking as RFC: it is unclear whether any usecase requires the f_fsid of a cloned filesystem to be consistent with that of the source filesystem. Signed-off-by: Anand Jain <asj@kernel.org> --- fs/ext4/super.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fs/ext4/super.c b/fs/ext4/super.c index 43f680c750ae..ec3c5882dff3 100644 --- a/fs/ext4/super.c +++ b/fs/ext4/super.c @@ -6941,7 +6941,7 @@ static int ext4_statfs(struct dentry *dentry, struct kstatfs *buf) buf->f_files = le32_to_cpu(es->s_inodes_count); buf->f_ffree = percpu_counter_sum_positive(&sbi->s_freeinodes_counter); buf->f_namelen = EXT4_NAME_LEN; - buf->f_fsid = uuid_to_fsid(es->s_uuid); + buf->f_fsid = u64_to_fsid(huge_encode_dev(sb->s_dev)); #ifdef CONFIG_QUOTA if (ext4_test_inode_flag(dentry->d_inode, EXT4_INODE_PROJINHERIT) && -- 2.43.0 ^ permalink raw reply related [flat|nested] 6+ messages in thread
* Re: [PATCH 0/3] fix s_uuid and f_fsid consistency for cloned filesystems 2026-02-26 14:23 [PATCH 0/3] fix s_uuid and f_fsid consistency for cloned filesystems Anand Jain 2026-02-26 14:28 ` [RFC PATCH 3/3] ext4: derive f_fsid from block device to avoid collisions Anand Jain @ 2026-03-04 13:28 ` Christoph Hellwig 2026-03-05 9:32 ` Anand Jain 2026-03-22 20:31 ` Theodore Tso 2 siblings, 1 reply; 6+ messages in thread From: Christoph Hellwig @ 2026-03-04 13:28 UTC (permalink / raw) To: Anand Jain; +Cc: linux-btrfs, linux-ext4 On Thu, Feb 26, 2026 at 10:23:32PM +0800, Anand Jain wrote: > This series resolves the tradeoff by aligning btrfs and ext4 behaviour > with XFS: f_fsid incorporates device identity (devt) to remain unique > across clones, while s_uuid is preserved consistently matching the on-disk > uuid. While I like fixing this up, switching the f_fsid construction to a different method might break things. Is there a way to only change it for cloned file systems to reduce the surface of this change? > Patches > ------- > Patch 1/3: btrfs: fix f_fsid to include rootid and devt > Patch 2/3: btrfs: fix s_uuid to be stable across mounts for cloned filesystems > Patch 3/3: ext4: fix f_fsid to use devt instead of s_uuid I don't really see that patch 3 in my inbox on linux-btrfs. ^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH 0/3] fix s_uuid and f_fsid consistency for cloned filesystems 2026-03-04 13:28 ` [PATCH 0/3] fix s_uuid and f_fsid consistency for cloned filesystems Christoph Hellwig @ 2026-03-05 9:32 ` Anand Jain 2026-03-05 14:21 ` Christoph Hellwig 0 siblings, 1 reply; 6+ messages in thread From: Anand Jain @ 2026-03-05 9:32 UTC (permalink / raw) To: Christoph Hellwig, Anand Jain; +Cc: linux-btrfs, linux-ext4 On 4/3/26 21:28, Christoph Hellwig wrote: > On Thu, Feb 26, 2026 at 10:23:32PM +0800, Anand Jain wrote: >> This series resolves the tradeoff by aligning btrfs and ext4 behaviour >> with XFS: f_fsid incorporates device identity (devt) to remain unique >> across clones, while s_uuid is preserved consistently matching the on-disk >> uuid. > > While I like fixing this up, switching the f_fsid construction to a > different method might break things. Is there a way to only change > it for cloned file systems to reduce the surface of this change? The problem is that we won't know which filesystem is the original and which is the clone. Generally, the first one mounted is treated as the original and the following one as the clone. However, f_fsid should remain consistent regardless of mount order, at least for the duration that the block device is connected (or until a system reboot). >> Patches >> ------- >> Patch 1/3: btrfs: fix f_fsid to include rootid and devt >> Patch 2/3: btrfs: fix s_uuid to be stable across mounts for cloned filesystems >> Patch 3/3: ext4: fix f_fsid to use devt instead of s_uuid > > I don't really see that patch 3 in my inbox on linux-btrfs. My bad, I sent the btrfs/ext4 patches only to their respective mailing lists. I'll copy both in v2. Here it is: https://lore.kernel.org/linux-ext4/e269a49eed2de23eb9f9bd7f506f0fe47696a023.1772095546.git.asj@kernel.org/ Thanks, Anand ^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH 0/3] fix s_uuid and f_fsid consistency for cloned filesystems 2026-03-05 9:32 ` Anand Jain @ 2026-03-05 14:21 ` Christoph Hellwig 0 siblings, 0 replies; 6+ messages in thread From: Christoph Hellwig @ 2026-03-05 14:21 UTC (permalink / raw) To: Anand Jain; +Cc: Christoph Hellwig, Anand Jain, linux-btrfs, linux-ext4 On Thu, Mar 05, 2026 at 05:32:36PM +0800, Anand Jain wrote: > The problem is that we won't know which filesystem is the original > and which is the clone. Generally, the first one mounted is treated > as the original and the following one as the clone. However, f_fsid > should remain consistent regardless of mount order, at least for > the duration that the block device is connected (or until a > system reboot). Then maybe we need to make the new sane behavior dependent on a feature flag so that only newly created file systems use it? ^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH 0/3] fix s_uuid and f_fsid consistency for cloned filesystems 2026-02-26 14:23 [PATCH 0/3] fix s_uuid and f_fsid consistency for cloned filesystems Anand Jain 2026-02-26 14:28 ` [RFC PATCH 3/3] ext4: derive f_fsid from block device to avoid collisions Anand Jain 2026-03-04 13:28 ` [PATCH 0/3] fix s_uuid and f_fsid consistency for cloned filesystems Christoph Hellwig @ 2026-03-22 20:31 ` Theodore Tso 2 siblings, 0 replies; 6+ messages in thread From: Theodore Tso @ 2026-03-22 20:31 UTC (permalink / raw) To: Anand Jain; +Cc: linux-btrfs, linux-ext4 On Thu, Feb 26, 2026 at 10:23:32PM +0800, Anand Jain wrote: > > | s_uuid f_fsid > --------------|--------------------------- > EXT4 | same same > Btrfs | random random > XFS | same f(devt) > EXT4-patched | same f(devt) > Btrfs-patched | same f(s_uuid,rootid,devt) I don't *object* to changing ext4 reports since having something that is unique is probably better. However, my bigger concern is using f_fsid in the first place. It's only 64 bits, and that's really not enough to gaurantee uniqueness. And even as you've proposed to change things, it's not consistent across file systems. In particular, your proposed solution mixes s_uuid into btrfs-patched, but not ext4-patched. Why? > Problem > ------- > Btrfs currently never duplicates s_uuid or f_fsid for cloned filesystems. > When an fsid collision is detected at mount time, btrfs generates a new > in-memory fsid (temp_fsid), but this is ephemeral — it changes on every > mount. This has two consequences: > > 1. IMA (Integrity Measurement Architecture) cannot reliably track the > filesystem across mount-cycle, since the f_fsid it sees keeps changing. > This does not scale. Whereas on the otherhand if you have same s_uuid > on multiple filesystems, monitoring per distint filesystem is lost. The problem with using f(dev_t) for IMA is that if you have a removable device (e.g., an SD card), reporting f_fsid as purely being a function of dev_t means that the if an SD card ejected, and replaced with another, the fsid_t will manifestly *not* be unique. So in that sense, replace f(dev_t) with f(s_uuid) would be worse if you think "file system unique id" should be unique in the case of removable storage devices. If the audit log includes mounts and unmounts, then this might not be fatal. But if less-than intelligent system administrator or LLM tries to analyize an audit log using tools like "grep", it would be pretty easy for someone to get misled. I know you were primarily interested in cloned file systems, but I think we also need to take into account other cases, including ones where there might be more the file system associated with a block device over time. > 2. If we instead allow cloned filesystems to share the same f_fsid (as > ext4 currently does), fanotify loses the ability to distinguish > between distinct filesystem instances. FAN_EVENT_INFO_TYPE_FID events > will fail to resolve to the correct mountpoint when f_fsid values > are identical across clones. My personal opinion is that f_fsuid is just a terrible interface, the fact that IMA and fanotify used this is regrettable. I understand why it happened, because there wasn't anything better, and for many use cases, it's good enough. But not all. So I hope we can just actively discourage anyone else using it. Given that exactly it has not been standardized, across different operating systems, and different file systems for Linux --- hopefully most people will have already made that choice. - Ted ^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2026-03-22 20:32 UTC | newest] Thread overview: 6+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2026-02-26 14:23 [PATCH 0/3] fix s_uuid and f_fsid consistency for cloned filesystems Anand Jain 2026-02-26 14:28 ` [RFC PATCH 3/3] ext4: derive f_fsid from block device to avoid collisions Anand Jain 2026-03-04 13:28 ` [PATCH 0/3] fix s_uuid and f_fsid consistency for cloned filesystems Christoph Hellwig 2026-03-05 9:32 ` Anand Jain 2026-03-05 14:21 ` Christoph Hellwig 2026-03-22 20:31 ` Theodore Tso
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox