]> git.ipfire.org Git - thirdparty/kernel/linux.git/commitdiff
btrfs: fix incorrect return value after changing leaf in lookup_extent_data_ref()
authorrobbieko <robbieko@synology.com>
Wed, 25 Mar 2026 10:18:15 +0000 (18:18 +0800)
committerDavid Sterba <dsterba@suse.com>
Tue, 31 Mar 2026 04:00:45 +0000 (06:00 +0200)
After commit 1618aa3c2e01 ("btrfs: simplify return variables in
lookup_extent_data_ref()"), the err and ret variables were merged into
a single ret variable. However, when btrfs_next_leaf() returns 0
(success), ret is overwritten from -ENOENT to 0. If the first key in
the next leaf does not match (different objectid or type), the function
returns 0 instead of -ENOENT, making the caller believe the lookup
succeeded when it did not. This can lead to operations on the wrong
extent tree item, potentially causing extent tree corruption.

Fix this by returning -ENOENT directly when the key does not match,
instead of relying on the ret variable.

Fixes: 1618aa3c2e01 ("btrfs: simplify return variables in lookup_extent_data_ref()")
CC: stable@vger.kernel.org # 6.12+
Reviewed-by: Filipe Manana <fdmanana@suse.com>
Signed-off-by: robbieko <robbieko@synology.com>
Signed-off-by: Filipe Manana <fdmanana@suse.com>
Reviewed-by: David Sterba <dsterba@suse.com>
Signed-off-by: David Sterba <dsterba@suse.com>
fs/btrfs/extent-tree.c

index 85ee5c79759d8f6c9e0d88ef35417838f47b740d..098e64106d0229a0a7269735e7fc41272c16d677 100644 (file)
@@ -495,7 +495,7 @@ again:
                btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
                if (key.objectid != bytenr ||
                    key.type != BTRFS_EXTENT_DATA_REF_KEY)
-                       return ret;
+                       return -ENOENT;
 
                ref = btrfs_item_ptr(leaf, path->slots[0],
                                     struct btrfs_extent_data_ref);