Re: [PATCH v2] xfs: reject attr leaf blocks with inconsistent usedbytes

From: Weiming Shi

Date: Wed Jul 08 2026 - 12:35:19 EST


Darrick J. Wong <djwong@xxxxxxxxxx> 于2026年7月8日周三 13:28写道:
>
> On Tue, Jul 07, 2026 at 11:02:38AM -0700, Weiming Shi wrote:
> > xfs_attr3_leaf_verify() checks each attr leaf entry on its own, but never
> > checks that the entries' nameval regions are disjoint. A crafted leaf can
> > point several entries at overlapping offsets: every entry passes the
> > per-entry check, yet the summed entry sizes far exceed the nameval region.
> >
> > ichdr.usedbytes is kept as the exact sum of the entries'
> > xfs_attr_leaf_entsize() (see xfs_attr3_leaf_add()), so for such a leaf the
> > real sum no longer matches usedbytes. When the leaf is later repacked,
> > xfs_attr3_leaf_compact() resets firstused to blksize and calls
> > xfs_attr3_leaf_moveents(), which subtracts each entry size from firstused;
> > the oversized sum underflows the 32-bit firstused and the following memmove
> > writes out of bounds. The same repack runs from xfs_attr3_leaf_rebalance()
> > and xfs_attr3_leaf_unbalance(). The only guard is an ASSERT, which is
> > compiled out on production kernels.
> >
> > A single setxattr() on a file with such a leaf, after mounting a crafted
> > image, triggers the write:
> >
> > BUG: KASAN: use-after-free in xfs_attr3_leaf_moveents (fs/xfs/libxfs/xfs_attr_leaf.c:2788)
> > Write of size 400 at addr ffff88802b187f98 by task exploit
> > xfs_attr3_leaf_moveents (fs/xfs/libxfs/xfs_attr_leaf.c:2788)
> > xfs_attr3_leaf_compact (fs/xfs/libxfs/xfs_attr_leaf.c:1790)
> > xfs_attr3_leaf_add (fs/xfs/libxfs/xfs_attr_leaf.c:1563)
> > xfs_attr_set_iter (fs/xfs/libxfs/xfs_attr.c:556)
> > xfs_attr_set (fs/xfs/libxfs/xfs_attr.c:1244)
> > xfs_xattr_set (fs/xfs/xfs_xattr.c:186)
> > __vfs_setxattr (fs/xattr.c:218)
> > vfs_setxattr (fs/xattr.c:339)
> > __x64_sys_fsetxattr (fs/xattr.c:774)
> >
> > Sum the entry sizes while verifying and reject the leaf unless the sum
> > equals usedbytes (so the on-disk usedbytes can be trusted) and that
> > usedbytes fits in the nameval region [firstused, blksize) (so the trusted
> > value cannot drive firstused below zero). Both checks are required: the
> > first alone can be bypassed by forging usedbytes to equal the real sum, and
> > the second alone by forging a small usedbytes, so only together do they
> > bound the actual summed entry size against the nameval region and prevent
> > the underflow.
> >
> > Fixes: c84760659dcf ("xfs: check attribute leaf block structure")
> > Reported-by: Xiang Mei <xmei5@xxxxxxx>
> > Assisted-by: Claude:claude-opus-4-8
> > Cc: stable@xxxxxxxxxxxxxxx
> > Signed-off-by: Weiming Shi <bestswngs@xxxxxxxxx>
> > ---
> > v2: drop the inaccurate scrubber reference; explain why both checks are
> > needed. No code change.
> >
> > fs/xfs/libxfs/xfs_attr_leaf.c | 17 +++++++++++++++--
> > 1 file changed, 15 insertions(+), 2 deletions(-)
> >
> > diff --git a/fs/xfs/libxfs/xfs_attr_leaf.c b/fs/xfs/libxfs/xfs_attr_leaf.c
> > index 86c5c09a5db4..9814dcfbd7ac 100644
> > --- a/fs/xfs/libxfs/xfs_attr_leaf.c
> > +++ b/fs/xfs/libxfs/xfs_attr_leaf.c
> > @@ -300,7 +300,8 @@ xfs_attr3_leaf_verify_entry(
> > struct xfs_attr3_icleaf_hdr *leafhdr,
> > struct xfs_attr_leaf_entry *ent,
> > int idx,
> > - __u32 *last_hashval)
> > + __u32 *last_hashval,
> > + unsigned int *usedbytes)
> > {
> > struct xfs_attr_leaf_name_local *lentry;
> > struct xfs_attr_leaf_name_remote *rentry;
> > @@ -344,6 +345,7 @@ xfs_attr3_leaf_verify_entry(
> > if (name_end > buf_end)
> > return __this_address;
> >
> > + *usedbytes += namesize;
> > return NULL;
> > }
> >
> > @@ -376,6 +378,7 @@ xfs_attr3_leaf_verify(
> > char *buf_end;
> > uint32_t end; /* must be 32bit - see below */
> > __u32 last_hashval = 0;
> > + unsigned int usedbytes = 0;
> > int i;
> > xfs_failaddr_t fa;
> >
> > @@ -410,11 +413,21 @@ xfs_attr3_leaf_verify(
> > buf_end = (char *)bp->b_addr + mp->m_attr_geo->blksize;
> > for (i = 0, ent = entries; i < ichdr.count; ent++, i++) {
> > fa = xfs_attr3_leaf_verify_entry(mp, buf_end, leaf, &ichdr,
> > - ent, i, &last_hashval);
> > + ent, i, &last_hashval, &usedbytes);
> > if (fa)
> > return fa;
> > }
> >
> > + /*
> > + * usedbytes must equal the summed entry sizes and fit in the
> > + * nameval region; otherwise a later repack underflows firstused
> > + * in xfs_attr3_leaf_moveents().
> > + */
> > + if (usedbytes != ichdr.usedbytes)
> > + return __this_address;
>
> This part is clearly correct.
>
> > + if (ichdr.usedbytes > mp->m_attr_geo->blksize - ichdr.firstused)
>
> This check is still novel to me -- neither online fsck nor xfs_repair
> check this explicitly. It makes sense to me that usedbytes can't exceed
> the number of bytes between the start of the nameval data and the end of
> the block (the entries array grows up from zero; namevals grow down from
> $blocksize).
>
> I wonder, will this make it harder to salvage xattrs from a broken leaf
> block since the verifier won't work? I think it won't because the
> salvage operation does an xfs_buf read with null ops, but I wonder if
> you've considered this point? Or run this through the xattr stress
> tests?
>
> --D
>
> > + return __this_address;
> > +
> > /*
> > * Quickly check the freemap information. Attribute data has to be
> > * aligned to 4-byte boundaries, and likewise for the free space.
> > --
> > 2.43.0
> >
> >

Hi,

Yeah, it does affect salvage. The read uses NULL ops, but
xrep_xattr_recover_block() gates recovery on xrep_buf_verify_struct(), which
runs the verifier including my checks. So a leaf that fails the usedbytes
check never reaches xrep_xattr_recover_leaf(), and a leaf that's only off in
usedbytes (entries otherwise fine) now gets tossed instead of salvaged.
That's in attr_repair.c, not this patch, so the verifier change itself
doesn't need to move. I didn't want to poke at the salvage gate blindly
since it leans on the verifier for the firstused/count bounds too, so how do
you want to handle it?

On stress: I ran fsstress on the patched KASAN kernel, weighted toward the
attr ops (setxattr/removexattr/setfattr etc), 4 rounds of -n 5000 -p 4,
unmounting and remounting between rounds to force re-verify. All rc=0, no
EFSCORRUPTED, nothing from the verifier. Haven't done a full auto run.

Best,
Weiming Shi