Re: [PATCH 1/2] btrfs: do not try compression for data reloc inodes

Filipe Manana <[email protected]>
Newsgroups org.kernel.vger.linux-btrfs,org.kernel.vger.stable
Message-ID <CAL3q7H43PTL7AfGz4nNWTOYX4pHgUKYo+c5+R_=qpUOkj_R_eA@mail.gmail.com>
On Sun, Jun 21, 2026 at 7:13 AM Qu Wenruo <[email protected]> wrote:
>
> [BUG]
> There is a syzbot report that the check inside get_new_location()
> triggered:
>
>  BTRFS info (device loop0): found 31 extents, stage: move data extents
>  BTRFS info (device loop0): leaf 8908800 gen 16 total ptrs 28 free space 1676 owner 18446744073709551607
>         item 0 key (256 INODE_ITEM 0) itemoff 3835 itemsize 160
>                 inode generation 5 transid 0 size 0 nbytes 0
>                 block group 0 mode 40755 links 1 uid 0 gid 0
>                 rdev 0 sequence 0 flags 0x0
>                 atime 1669132761.0
>                 ctime 1669132761.0
>                 mtime 1669132761.0
>                 otime 0.0
>         item 1 key (256 INODE_REF 256) itemoff 3823 itemsize 12
>                 index 0 name_len 2
>         item 2 key (258 INODE_ITEM 0) itemoff 3663 itemsize 160
>                 inode generation 1 transid 16 size 733184 nbytes 106496
>                 block group 0 mode 100600 links 0 uid 0 gid 0
>                 rdev 0 sequence 24 flags 0x18
>         item 3 key (258 EXTENT_DATA 0) itemoff 3595 itemsize 68
>                 generation 16 type 0
>                 inline extent data size 47 ram_bytes 4096 compression 1
>  [...]
>         item 27 key (18446744073709551611 ORPHAN_ITEM 258) itemoff 2376 itemsize 0
>  BTRFS error (device loop0): unexpected non-zero offset in file extent item for data reloc inode 258 key offset 0 offset 9277520992061368337
>  ------------[ cut here ]------------
>  btrfs_abort_should_print_stack(__error)
>
> [CAUSE]
> The above dump tree shows the first file extent item is inlined, which
> should make no sense for data reloc inodes, as such inodes are just
> representing where the data extents are in the relocation destination chunk.
>
> However the relocation path is just dirtying the data reloc inode
> cluster by cluster. It's possible to have a single block, not adjacent
> to any other data extents.
>
> Then relocation will dirty the first block of the data reloc inode, then
> memory pressure forces the data reloc inode to be written back.
>
> In that case, since the syzbot has forced compression, we try to
> compress the first block and if it can be compressed and inlined, an
> inlined extent will be created.

If it were that simple, users would have encountered it and reported
it, and fstests would have triggered this (we have several balance +
fsstress + compression tests).

Something is missing here.
A very important detail, which is not mentioned here at all, is that
relocation works by preallocating extents (see
prealloc_file_extent_cluster()) before dirtying pages/folios.

This means that flushing delalloc of the data reloc inode should
always go into the nocow path.

Even if the nocow path would fallback into cow, which should never
happen for a data reloc inode, we never try to compress and inline the
fallback path - fallback_to_cow() -> cow_file_range() ->
cow_one_range() - nothing here attempts inline extents (or
compression).

What you are describing would be easy to convert into an fstests test case.

Flushing delalloc of the data reloc inode should never reach
btrfs_inode_can_compress() - if we end up there, then the problem is
somewhere else.

Thanks.

>
> Then the check in get_new_location() will check the file offset, without
> checking if the file extent is inlined or not, resulting the above
> failure.
>
> [FIX]
> Do not allow compression for data reloc inodes in the first place.
>
> Reported-by: [email protected]
> Link: https://lore.kernel.org/linux-btrfs/[email protected]/
> Cc: [email protected]
> Signed-off-by: Qu Wenruo <[email protected]>
> ---
>  fs/btrfs/btrfs_inode.h | 2 ++
>  1 file changed, 2 insertions(+)
>
> diff --git a/fs/btrfs/btrfs_inode.h b/fs/btrfs/btrfs_inode.h
> index d5d81f9546c3..fff72f6cc1e8 100644
> --- a/fs/btrfs/btrfs_inode.h
> +++ b/fs/btrfs/btrfs_inode.h
> @@ -476,6 +476,8 @@ static inline bool btrfs_inode_can_compress(const struct btrfs_inode *inode)
>         if (inode->flags & BTRFS_INODE_NODATACOW ||
>             inode->flags & BTRFS_INODE_NODATASUM)
>                 return false;
> +       if (btrfs_root_id(inode->root) == BTRFS_DATA_RELOC_TREE_OBJECTID)
> +               return false;
>         return true;
>  }
>
> --
> 2.54.0
>
>
lmpx.com only provides a reader for public news (NNTP) servers. It is not affiliated with the servers or forums shown here and is not responsible for the content of articles, which is written by their respective authors.