1c1d7c514SDavid Sterba // SPDX-License-Identifier: GPL-2.0 2557ea5ddSQu Wenruo /* 3557ea5ddSQu Wenruo * Copyright (C) Qu Wenruo 2017. All rights reserved. 4557ea5ddSQu Wenruo */ 5557ea5ddSQu Wenruo 6557ea5ddSQu Wenruo /* 7557ea5ddSQu Wenruo * The module is used to catch unexpected/corrupted tree block data. 8557ea5ddSQu Wenruo * Such behavior can be caused either by a fuzzed image or bugs. 9557ea5ddSQu Wenruo * 10557ea5ddSQu Wenruo * The objective is to do leaf/node validation checks when tree block is read 11557ea5ddSQu Wenruo * from disk, and check *every* possible member, so other code won't 12557ea5ddSQu Wenruo * need to checking them again. 13557ea5ddSQu Wenruo * 14557ea5ddSQu Wenruo * Due to the potential and unwanted damage, every checker needs to be 15557ea5ddSQu Wenruo * carefully reviewed otherwise so it does not prevent mount of valid images. 16557ea5ddSQu Wenruo */ 17557ea5ddSQu Wenruo 1802529d7aSQu Wenruo #include <linux/types.h> 1902529d7aSQu Wenruo #include <linux/stddef.h> 2002529d7aSQu Wenruo #include <linux/error-injection.h> 219b569ea0SJosef Bacik #include "messages.h" 22557ea5ddSQu Wenruo #include "ctree.h" 23557ea5ddSQu Wenruo #include "tree-checker.h" 24557ea5ddSQu Wenruo #include "disk-io.h" 25557ea5ddSQu Wenruo #include "compression.h" 26fce466eaSQu Wenruo #include "volumes.h" 27c1499166SDavid Sterba #include "misc.h" 28c7f13d42SJosef Bacik #include "fs.h" 2907e81dc9SJosef Bacik #include "accessors.h" 306bfd0ffaSJosef Bacik #include "file-item.h" 31*f541833cSJosef Bacik #include "inode-item.h" 32557ea5ddSQu Wenruo 33bba4f298SQu Wenruo /* 34bba4f298SQu Wenruo * Error message should follow the following format: 35bba4f298SQu Wenruo * corrupt <type>: <identifier>, <reason>[, <bad_value>] 36bba4f298SQu Wenruo * 37bba4f298SQu Wenruo * @type: leaf or node 38bba4f298SQu Wenruo * @identifier: the necessary info to locate the leaf/node. 3952042d8eSAndrea Gelmini * It's recommended to decode key.objecitd/offset if it's 40bba4f298SQu Wenruo * meaningful. 41bba4f298SQu Wenruo * @reason: describe the error 4252042d8eSAndrea Gelmini * @bad_value: optional, it's recommended to output bad value and its 43bba4f298SQu Wenruo * expected value (range). 44bba4f298SQu Wenruo * 45bba4f298SQu Wenruo * Since comma is used to separate the components, only space is allowed 46bba4f298SQu Wenruo * inside each component. 47bba4f298SQu Wenruo */ 48bba4f298SQu Wenruo 49bba4f298SQu Wenruo /* 50bba4f298SQu Wenruo * Append generic "corrupt leaf/node root=%llu block=%llu slot=%d: " to @fmt. 51bba4f298SQu Wenruo * Allows callers to customize the output. 52bba4f298SQu Wenruo */ 5386a6be3aSDavid Sterba __printf(3, 4) 54e67c718bSDavid Sterba __cold 5586a6be3aSDavid Sterba static void generic_err(const struct extent_buffer *eb, int slot, 56bba4f298SQu Wenruo const char *fmt, ...) 57bba4f298SQu Wenruo { 5886a6be3aSDavid Sterba const struct btrfs_fs_info *fs_info = eb->fs_info; 59bba4f298SQu Wenruo struct va_format vaf; 60bba4f298SQu Wenruo va_list args; 61bba4f298SQu Wenruo 62bba4f298SQu Wenruo va_start(args, fmt); 63bba4f298SQu Wenruo 64bba4f298SQu Wenruo vaf.fmt = fmt; 65bba4f298SQu Wenruo vaf.va = &args; 66bba4f298SQu Wenruo 672f659546SQu Wenruo btrfs_crit(fs_info, 68bba4f298SQu Wenruo "corrupt %s: root=%llu block=%llu slot=%d, %pV", 69bba4f298SQu Wenruo btrfs_header_level(eb) == 0 ? "leaf" : "node", 702f659546SQu Wenruo btrfs_header_owner(eb), btrfs_header_bytenr(eb), slot, &vaf); 71bba4f298SQu Wenruo va_end(args); 72bba4f298SQu Wenruo } 73bba4f298SQu Wenruo 748806d718SQu Wenruo /* 758806d718SQu Wenruo * Customized reporter for extent data item, since its key objectid and 768806d718SQu Wenruo * offset has its own meaning. 778806d718SQu Wenruo */ 781fd715ffSDavid Sterba __printf(3, 4) 79e67c718bSDavid Sterba __cold 801fd715ffSDavid Sterba static void file_extent_err(const struct extent_buffer *eb, int slot, 818806d718SQu Wenruo const char *fmt, ...) 828806d718SQu Wenruo { 831fd715ffSDavid Sterba const struct btrfs_fs_info *fs_info = eb->fs_info; 848806d718SQu Wenruo struct btrfs_key key; 858806d718SQu Wenruo struct va_format vaf; 868806d718SQu Wenruo va_list args; 878806d718SQu Wenruo 888806d718SQu Wenruo btrfs_item_key_to_cpu(eb, &key, slot); 898806d718SQu Wenruo va_start(args, fmt); 908806d718SQu Wenruo 918806d718SQu Wenruo vaf.fmt = fmt; 928806d718SQu Wenruo vaf.va = &args; 938806d718SQu Wenruo 942f659546SQu Wenruo btrfs_crit(fs_info, 958806d718SQu Wenruo "corrupt %s: root=%llu block=%llu slot=%d ino=%llu file_offset=%llu, %pV", 962f659546SQu Wenruo btrfs_header_level(eb) == 0 ? "leaf" : "node", 972f659546SQu Wenruo btrfs_header_owner(eb), btrfs_header_bytenr(eb), slot, 982f659546SQu Wenruo key.objectid, key.offset, &vaf); 998806d718SQu Wenruo va_end(args); 1008806d718SQu Wenruo } 1018806d718SQu Wenruo 1028806d718SQu Wenruo /* 1038806d718SQu Wenruo * Return 0 if the btrfs_file_extent_##name is aligned to @alignment 1048806d718SQu Wenruo * Else return 1 1058806d718SQu Wenruo */ 106033774dcSDavid Sterba #define CHECK_FE_ALIGNED(leaf, slot, fi, name, alignment) \ 1078806d718SQu Wenruo ({ \ 108c7c01a4aSDavid Sterba if (unlikely(!IS_ALIGNED(btrfs_file_extent_##name((leaf), (fi)), \ 109c7c01a4aSDavid Sterba (alignment)))) \ 1101fd715ffSDavid Sterba file_extent_err((leaf), (slot), \ 1118806d718SQu Wenruo "invalid %s for file extent, have %llu, should be aligned to %u", \ 1128806d718SQu Wenruo (#name), btrfs_file_extent_##name((leaf), (fi)), \ 1138806d718SQu Wenruo (alignment)); \ 1148806d718SQu Wenruo (!IS_ALIGNED(btrfs_file_extent_##name((leaf), (fi)), (alignment))); \ 1158806d718SQu Wenruo }) 1168806d718SQu Wenruo 1174e9845efSFilipe Manana static u64 file_extent_end(struct extent_buffer *leaf, 1184e9845efSFilipe Manana struct btrfs_key *key, 1194e9845efSFilipe Manana struct btrfs_file_extent_item *extent) 1204e9845efSFilipe Manana { 1214e9845efSFilipe Manana u64 end; 1224e9845efSFilipe Manana u64 len; 1234e9845efSFilipe Manana 1244e9845efSFilipe Manana if (btrfs_file_extent_type(leaf, extent) == BTRFS_FILE_EXTENT_INLINE) { 1254e9845efSFilipe Manana len = btrfs_file_extent_ram_bytes(leaf, extent); 1264e9845efSFilipe Manana end = ALIGN(key->offset + len, leaf->fs_info->sectorsize); 1274e9845efSFilipe Manana } else { 1284e9845efSFilipe Manana len = btrfs_file_extent_num_bytes(leaf, extent); 1294e9845efSFilipe Manana end = key->offset + len; 1304e9845efSFilipe Manana } 1314e9845efSFilipe Manana return end; 1324e9845efSFilipe Manana } 1334e9845efSFilipe Manana 13480d7fd1eSQu Wenruo /* 13580d7fd1eSQu Wenruo * Customized report for dir_item, the only new important information is 13680d7fd1eSQu Wenruo * key->objectid, which represents inode number 13780d7fd1eSQu Wenruo */ 13880d7fd1eSQu Wenruo __printf(3, 4) 13980d7fd1eSQu Wenruo __cold 14080d7fd1eSQu Wenruo static void dir_item_err(const struct extent_buffer *eb, int slot, 14180d7fd1eSQu Wenruo const char *fmt, ...) 14280d7fd1eSQu Wenruo { 14380d7fd1eSQu Wenruo const struct btrfs_fs_info *fs_info = eb->fs_info; 14480d7fd1eSQu Wenruo struct btrfs_key key; 14580d7fd1eSQu Wenruo struct va_format vaf; 14680d7fd1eSQu Wenruo va_list args; 14780d7fd1eSQu Wenruo 14880d7fd1eSQu Wenruo btrfs_item_key_to_cpu(eb, &key, slot); 14980d7fd1eSQu Wenruo va_start(args, fmt); 15080d7fd1eSQu Wenruo 15180d7fd1eSQu Wenruo vaf.fmt = fmt; 15280d7fd1eSQu Wenruo vaf.va = &args; 15380d7fd1eSQu Wenruo 15480d7fd1eSQu Wenruo btrfs_crit(fs_info, 15580d7fd1eSQu Wenruo "corrupt %s: root=%llu block=%llu slot=%d ino=%llu, %pV", 15680d7fd1eSQu Wenruo btrfs_header_level(eb) == 0 ? "leaf" : "node", 15780d7fd1eSQu Wenruo btrfs_header_owner(eb), btrfs_header_bytenr(eb), slot, 15880d7fd1eSQu Wenruo key.objectid, &vaf); 15980d7fd1eSQu Wenruo va_end(args); 16080d7fd1eSQu Wenruo } 16180d7fd1eSQu Wenruo 16280d7fd1eSQu Wenruo /* 16380d7fd1eSQu Wenruo * This functions checks prev_key->objectid, to ensure current key and prev_key 16480d7fd1eSQu Wenruo * share the same objectid as inode number. 16580d7fd1eSQu Wenruo * 16680d7fd1eSQu Wenruo * This is to detect missing INODE_ITEM in subvolume trees. 16780d7fd1eSQu Wenruo * 16880d7fd1eSQu Wenruo * Return true if everything is OK or we don't need to check. 16980d7fd1eSQu Wenruo * Return false if anything is wrong. 17080d7fd1eSQu Wenruo */ 17180d7fd1eSQu Wenruo static bool check_prev_ino(struct extent_buffer *leaf, 17280d7fd1eSQu Wenruo struct btrfs_key *key, int slot, 17380d7fd1eSQu Wenruo struct btrfs_key *prev_key) 17480d7fd1eSQu Wenruo { 17580d7fd1eSQu Wenruo /* No prev key, skip check */ 17680d7fd1eSQu Wenruo if (slot == 0) 17780d7fd1eSQu Wenruo return true; 17880d7fd1eSQu Wenruo 17980d7fd1eSQu Wenruo /* Only these key->types needs to be checked */ 18080d7fd1eSQu Wenruo ASSERT(key->type == BTRFS_XATTR_ITEM_KEY || 18180d7fd1eSQu Wenruo key->type == BTRFS_INODE_REF_KEY || 18280d7fd1eSQu Wenruo key->type == BTRFS_DIR_INDEX_KEY || 18380d7fd1eSQu Wenruo key->type == BTRFS_DIR_ITEM_KEY || 18480d7fd1eSQu Wenruo key->type == BTRFS_EXTENT_DATA_KEY); 18580d7fd1eSQu Wenruo 18680d7fd1eSQu Wenruo /* 18780d7fd1eSQu Wenruo * Only subvolume trees along with their reloc trees need this check. 18880d7fd1eSQu Wenruo * Things like log tree doesn't follow this ino requirement. 18980d7fd1eSQu Wenruo */ 19080d7fd1eSQu Wenruo if (!is_fstree(btrfs_header_owner(leaf))) 19180d7fd1eSQu Wenruo return true; 19280d7fd1eSQu Wenruo 19380d7fd1eSQu Wenruo if (key->objectid == prev_key->objectid) 19480d7fd1eSQu Wenruo return true; 19580d7fd1eSQu Wenruo 19680d7fd1eSQu Wenruo /* Error found */ 19780d7fd1eSQu Wenruo dir_item_err(leaf, slot, 19880d7fd1eSQu Wenruo "invalid previous key objectid, have %llu expect %llu", 19980d7fd1eSQu Wenruo prev_key->objectid, key->objectid); 20080d7fd1eSQu Wenruo return false; 20180d7fd1eSQu Wenruo } 202ae2a19d8SDavid Sterba static int check_extent_data_item(struct extent_buffer *leaf, 2034e9845efSFilipe Manana struct btrfs_key *key, int slot, 2044e9845efSFilipe Manana struct btrfs_key *prev_key) 205557ea5ddSQu Wenruo { 206ae2a19d8SDavid Sterba struct btrfs_fs_info *fs_info = leaf->fs_info; 207557ea5ddSQu Wenruo struct btrfs_file_extent_item *fi; 2082f659546SQu Wenruo u32 sectorsize = fs_info->sectorsize; 2093212fa14SJosef Bacik u32 item_size = btrfs_item_size(leaf, slot); 2104c094c33SQu Wenruo u64 extent_end; 211557ea5ddSQu Wenruo 212c7c01a4aSDavid Sterba if (unlikely(!IS_ALIGNED(key->offset, sectorsize))) { 2131fd715ffSDavid Sterba file_extent_err(leaf, slot, 2148806d718SQu Wenruo "unaligned file_offset for file extent, have %llu should be aligned to %u", 2158806d718SQu Wenruo key->offset, sectorsize); 216557ea5ddSQu Wenruo return -EUCLEAN; 217557ea5ddSQu Wenruo } 218557ea5ddSQu Wenruo 219c18679ebSQu Wenruo /* 220c18679ebSQu Wenruo * Previous key must have the same key->objectid (ino). 221c18679ebSQu Wenruo * It can be XATTR_ITEM, INODE_ITEM or just another EXTENT_DATA. 222c18679ebSQu Wenruo * But if objectids mismatch, it means we have a missing 223c18679ebSQu Wenruo * INODE_ITEM. 224c18679ebSQu Wenruo */ 225c7c01a4aSDavid Sterba if (unlikely(!check_prev_ino(leaf, key, slot, prev_key))) 226c18679ebSQu Wenruo return -EUCLEAN; 227c18679ebSQu Wenruo 228557ea5ddSQu Wenruo fi = btrfs_item_ptr(leaf, slot, struct btrfs_file_extent_item); 229557ea5ddSQu Wenruo 230153a6d29SQu Wenruo /* 231153a6d29SQu Wenruo * Make sure the item contains at least inline header, so the file 232153a6d29SQu Wenruo * extent type is not some garbage. 233153a6d29SQu Wenruo */ 234c7c01a4aSDavid Sterba if (unlikely(item_size < BTRFS_FILE_EXTENT_INLINE_DATA_START)) { 235153a6d29SQu Wenruo file_extent_err(leaf, slot, 236994bf9cdSAndreas Färber "invalid item size, have %u expect [%zu, %u)", 237153a6d29SQu Wenruo item_size, BTRFS_FILE_EXTENT_INLINE_DATA_START, 238153a6d29SQu Wenruo SZ_4K); 239153a6d29SQu Wenruo return -EUCLEAN; 240153a6d29SQu Wenruo } 241c7c01a4aSDavid Sterba if (unlikely(btrfs_file_extent_type(leaf, fi) >= 242c7c01a4aSDavid Sterba BTRFS_NR_FILE_EXTENT_TYPES)) { 2431fd715ffSDavid Sterba file_extent_err(leaf, slot, 2448806d718SQu Wenruo "invalid type for file extent, have %u expect range [0, %u]", 2458806d718SQu Wenruo btrfs_file_extent_type(leaf, fi), 246b9b1a53eSChengguang Xu BTRFS_NR_FILE_EXTENT_TYPES - 1); 247557ea5ddSQu Wenruo return -EUCLEAN; 248557ea5ddSQu Wenruo } 249557ea5ddSQu Wenruo 250557ea5ddSQu Wenruo /* 25152042d8eSAndrea Gelmini * Support for new compression/encryption must introduce incompat flag, 252557ea5ddSQu Wenruo * and must be caught in open_ctree(). 253557ea5ddSQu Wenruo */ 254c7c01a4aSDavid Sterba if (unlikely(btrfs_file_extent_compression(leaf, fi) >= 255c7c01a4aSDavid Sterba BTRFS_NR_COMPRESS_TYPES)) { 2561fd715ffSDavid Sterba file_extent_err(leaf, slot, 2578806d718SQu Wenruo "invalid compression for file extent, have %u expect range [0, %u]", 2588806d718SQu Wenruo btrfs_file_extent_compression(leaf, fi), 259ce96b7ffSChengguang Xu BTRFS_NR_COMPRESS_TYPES - 1); 260557ea5ddSQu Wenruo return -EUCLEAN; 261557ea5ddSQu Wenruo } 262c7c01a4aSDavid Sterba if (unlikely(btrfs_file_extent_encryption(leaf, fi))) { 2631fd715ffSDavid Sterba file_extent_err(leaf, slot, 2648806d718SQu Wenruo "invalid encryption for file extent, have %u expect 0", 2658806d718SQu Wenruo btrfs_file_extent_encryption(leaf, fi)); 266557ea5ddSQu Wenruo return -EUCLEAN; 267557ea5ddSQu Wenruo } 268557ea5ddSQu Wenruo if (btrfs_file_extent_type(leaf, fi) == BTRFS_FILE_EXTENT_INLINE) { 269557ea5ddSQu Wenruo /* Inline extent must have 0 as key offset */ 270c7c01a4aSDavid Sterba if (unlikely(key->offset)) { 2711fd715ffSDavid Sterba file_extent_err(leaf, slot, 2728806d718SQu Wenruo "invalid file_offset for inline file extent, have %llu expect 0", 2738806d718SQu Wenruo key->offset); 274557ea5ddSQu Wenruo return -EUCLEAN; 275557ea5ddSQu Wenruo } 276557ea5ddSQu Wenruo 277557ea5ddSQu Wenruo /* Compressed inline extent has no on-disk size, skip it */ 278557ea5ddSQu Wenruo if (btrfs_file_extent_compression(leaf, fi) != 279557ea5ddSQu Wenruo BTRFS_COMPRESS_NONE) 280557ea5ddSQu Wenruo return 0; 281557ea5ddSQu Wenruo 282557ea5ddSQu Wenruo /* Uncompressed inline extent size must match item size */ 283c7c01a4aSDavid Sterba if (unlikely(item_size != BTRFS_FILE_EXTENT_INLINE_DATA_START + 284c7c01a4aSDavid Sterba btrfs_file_extent_ram_bytes(leaf, fi))) { 2851fd715ffSDavid Sterba file_extent_err(leaf, slot, 2868806d718SQu Wenruo "invalid ram_bytes for uncompressed inline extent, have %u expect %llu", 2878806d718SQu Wenruo item_size, BTRFS_FILE_EXTENT_INLINE_DATA_START + 2888806d718SQu Wenruo btrfs_file_extent_ram_bytes(leaf, fi)); 289557ea5ddSQu Wenruo return -EUCLEAN; 290557ea5ddSQu Wenruo } 291557ea5ddSQu Wenruo return 0; 292557ea5ddSQu Wenruo } 293557ea5ddSQu Wenruo 294557ea5ddSQu Wenruo /* Regular or preallocated extent has fixed item size */ 295c7c01a4aSDavid Sterba if (unlikely(item_size != sizeof(*fi))) { 2961fd715ffSDavid Sterba file_extent_err(leaf, slot, 297709a95c3SArnd Bergmann "invalid item size for reg/prealloc file extent, have %u expect %zu", 2988806d718SQu Wenruo item_size, sizeof(*fi)); 299557ea5ddSQu Wenruo return -EUCLEAN; 300557ea5ddSQu Wenruo } 301c7c01a4aSDavid Sterba if (unlikely(CHECK_FE_ALIGNED(leaf, slot, fi, ram_bytes, sectorsize) || 302033774dcSDavid Sterba CHECK_FE_ALIGNED(leaf, slot, fi, disk_bytenr, sectorsize) || 303033774dcSDavid Sterba CHECK_FE_ALIGNED(leaf, slot, fi, disk_num_bytes, sectorsize) || 304033774dcSDavid Sterba CHECK_FE_ALIGNED(leaf, slot, fi, offset, sectorsize) || 305c7c01a4aSDavid Sterba CHECK_FE_ALIGNED(leaf, slot, fi, num_bytes, sectorsize))) 306557ea5ddSQu Wenruo return -EUCLEAN; 3074e9845efSFilipe Manana 3084c094c33SQu Wenruo /* Catch extent end overflow */ 309c7c01a4aSDavid Sterba if (unlikely(check_add_overflow(btrfs_file_extent_num_bytes(leaf, fi), 310c7c01a4aSDavid Sterba key->offset, &extent_end))) { 3114c094c33SQu Wenruo file_extent_err(leaf, slot, 3124c094c33SQu Wenruo "extent end overflow, have file offset %llu extent num bytes %llu", 3134c094c33SQu Wenruo key->offset, 3144c094c33SQu Wenruo btrfs_file_extent_num_bytes(leaf, fi)); 3154c094c33SQu Wenruo return -EUCLEAN; 3164c094c33SQu Wenruo } 3174c094c33SQu Wenruo 3184e9845efSFilipe Manana /* 3194e9845efSFilipe Manana * Check that no two consecutive file extent items, in the same leaf, 3204e9845efSFilipe Manana * present ranges that overlap each other. 3214e9845efSFilipe Manana */ 3224e9845efSFilipe Manana if (slot > 0 && 3234e9845efSFilipe Manana prev_key->objectid == key->objectid && 3244e9845efSFilipe Manana prev_key->type == BTRFS_EXTENT_DATA_KEY) { 3254e9845efSFilipe Manana struct btrfs_file_extent_item *prev_fi; 3264e9845efSFilipe Manana u64 prev_end; 3274e9845efSFilipe Manana 3284e9845efSFilipe Manana prev_fi = btrfs_item_ptr(leaf, slot - 1, 3294e9845efSFilipe Manana struct btrfs_file_extent_item); 3304e9845efSFilipe Manana prev_end = file_extent_end(leaf, prev_key, prev_fi); 331c7c01a4aSDavid Sterba if (unlikely(prev_end > key->offset)) { 3324e9845efSFilipe Manana file_extent_err(leaf, slot - 1, 3334e9845efSFilipe Manana "file extent end range (%llu) goes beyond start offset (%llu) of the next file extent", 3344e9845efSFilipe Manana prev_end, key->offset); 3354e9845efSFilipe Manana return -EUCLEAN; 3364e9845efSFilipe Manana } 3374e9845efSFilipe Manana } 3384e9845efSFilipe Manana 339557ea5ddSQu Wenruo return 0; 340557ea5ddSQu Wenruo } 341557ea5ddSQu Wenruo 34268128ce7SDavid Sterba static int check_csum_item(struct extent_buffer *leaf, struct btrfs_key *key, 343ad1d8c43SFilipe Manana int slot, struct btrfs_key *prev_key) 344557ea5ddSQu Wenruo { 34568128ce7SDavid Sterba struct btrfs_fs_info *fs_info = leaf->fs_info; 3462f659546SQu Wenruo u32 sectorsize = fs_info->sectorsize; 347223486c2SDavid Sterba const u32 csumsize = fs_info->csum_size; 348557ea5ddSQu Wenruo 349c7c01a4aSDavid Sterba if (unlikely(key->objectid != BTRFS_EXTENT_CSUM_OBJECTID)) { 35086a6be3aSDavid Sterba generic_err(leaf, slot, 351d508c5f0SQu Wenruo "invalid key objectid for csum item, have %llu expect %llu", 352d508c5f0SQu Wenruo key->objectid, BTRFS_EXTENT_CSUM_OBJECTID); 353557ea5ddSQu Wenruo return -EUCLEAN; 354557ea5ddSQu Wenruo } 355c7c01a4aSDavid Sterba if (unlikely(!IS_ALIGNED(key->offset, sectorsize))) { 35686a6be3aSDavid Sterba generic_err(leaf, slot, 357d508c5f0SQu Wenruo "unaligned key offset for csum item, have %llu should be aligned to %u", 358d508c5f0SQu Wenruo key->offset, sectorsize); 359557ea5ddSQu Wenruo return -EUCLEAN; 360557ea5ddSQu Wenruo } 3613212fa14SJosef Bacik if (unlikely(!IS_ALIGNED(btrfs_item_size(leaf, slot), csumsize))) { 36286a6be3aSDavid Sterba generic_err(leaf, slot, 363d508c5f0SQu Wenruo "unaligned item size for csum item, have %u should be aligned to %u", 3643212fa14SJosef Bacik btrfs_item_size(leaf, slot), csumsize); 365557ea5ddSQu Wenruo return -EUCLEAN; 366557ea5ddSQu Wenruo } 367ad1d8c43SFilipe Manana if (slot > 0 && prev_key->type == BTRFS_EXTENT_CSUM_KEY) { 368ad1d8c43SFilipe Manana u64 prev_csum_end; 369ad1d8c43SFilipe Manana u32 prev_item_size; 370ad1d8c43SFilipe Manana 3713212fa14SJosef Bacik prev_item_size = btrfs_item_size(leaf, slot - 1); 372ad1d8c43SFilipe Manana prev_csum_end = (prev_item_size / csumsize) * sectorsize; 373ad1d8c43SFilipe Manana prev_csum_end += prev_key->offset; 374c7c01a4aSDavid Sterba if (unlikely(prev_csum_end > key->offset)) { 375ad1d8c43SFilipe Manana generic_err(leaf, slot - 1, 376ad1d8c43SFilipe Manana "csum end range (%llu) goes beyond the start range (%llu) of the next csum item", 377ad1d8c43SFilipe Manana prev_csum_end, key->offset); 378ad1d8c43SFilipe Manana return -EUCLEAN; 379ad1d8c43SFilipe Manana } 380ad1d8c43SFilipe Manana } 381557ea5ddSQu Wenruo return 0; 382557ea5ddSQu Wenruo } 383557ea5ddSQu Wenruo 384c23c77b0SQu Wenruo /* Inode item error output has the same format as dir_item_err() */ 385c23c77b0SQu Wenruo #define inode_item_err(eb, slot, fmt, ...) \ 386c23c77b0SQu Wenruo dir_item_err(eb, slot, fmt, __VA_ARGS__) 387c23c77b0SQu Wenruo 388c23c77b0SQu Wenruo static int check_inode_key(struct extent_buffer *leaf, struct btrfs_key *key, 389c23c77b0SQu Wenruo int slot) 390c23c77b0SQu Wenruo { 391c23c77b0SQu Wenruo struct btrfs_key item_key; 392c23c77b0SQu Wenruo bool is_inode_item; 393c23c77b0SQu Wenruo 394c23c77b0SQu Wenruo btrfs_item_key_to_cpu(leaf, &item_key, slot); 395c23c77b0SQu Wenruo is_inode_item = (item_key.type == BTRFS_INODE_ITEM_KEY); 396c23c77b0SQu Wenruo 397c23c77b0SQu Wenruo /* For XATTR_ITEM, location key should be all 0 */ 398c23c77b0SQu Wenruo if (item_key.type == BTRFS_XATTR_ITEM_KEY) { 399c7c01a4aSDavid Sterba if (unlikely(key->objectid != 0 || key->type != 0 || 400c7c01a4aSDavid Sterba key->offset != 0)) 401c23c77b0SQu Wenruo return -EUCLEAN; 402c23c77b0SQu Wenruo return 0; 403c23c77b0SQu Wenruo } 404c23c77b0SQu Wenruo 405c7c01a4aSDavid Sterba if (unlikely((key->objectid < BTRFS_FIRST_FREE_OBJECTID || 406c23c77b0SQu Wenruo key->objectid > BTRFS_LAST_FREE_OBJECTID) && 407c23c77b0SQu Wenruo key->objectid != BTRFS_ROOT_TREE_DIR_OBJECTID && 408c7c01a4aSDavid Sterba key->objectid != BTRFS_FREE_INO_OBJECTID)) { 409c23c77b0SQu Wenruo if (is_inode_item) { 410c23c77b0SQu Wenruo generic_err(leaf, slot, 411c23c77b0SQu Wenruo "invalid key objectid: has %llu expect %llu or [%llu, %llu] or %llu", 412c23c77b0SQu Wenruo key->objectid, BTRFS_ROOT_TREE_DIR_OBJECTID, 413c23c77b0SQu Wenruo BTRFS_FIRST_FREE_OBJECTID, 414c23c77b0SQu Wenruo BTRFS_LAST_FREE_OBJECTID, 415c23c77b0SQu Wenruo BTRFS_FREE_INO_OBJECTID); 416c23c77b0SQu Wenruo } else { 417c23c77b0SQu Wenruo dir_item_err(leaf, slot, 418c23c77b0SQu Wenruo "invalid location key objectid: has %llu expect %llu or [%llu, %llu] or %llu", 419c23c77b0SQu Wenruo key->objectid, BTRFS_ROOT_TREE_DIR_OBJECTID, 420c23c77b0SQu Wenruo BTRFS_FIRST_FREE_OBJECTID, 421c23c77b0SQu Wenruo BTRFS_LAST_FREE_OBJECTID, 422c23c77b0SQu Wenruo BTRFS_FREE_INO_OBJECTID); 423c23c77b0SQu Wenruo } 424c23c77b0SQu Wenruo return -EUCLEAN; 425c23c77b0SQu Wenruo } 426c7c01a4aSDavid Sterba if (unlikely(key->offset != 0)) { 427c23c77b0SQu Wenruo if (is_inode_item) 428c23c77b0SQu Wenruo inode_item_err(leaf, slot, 429c23c77b0SQu Wenruo "invalid key offset: has %llu expect 0", 430c23c77b0SQu Wenruo key->offset); 431c23c77b0SQu Wenruo else 432c23c77b0SQu Wenruo dir_item_err(leaf, slot, 433c23c77b0SQu Wenruo "invalid location key offset:has %llu expect 0", 434c23c77b0SQu Wenruo key->offset); 435c23c77b0SQu Wenruo return -EUCLEAN; 436c23c77b0SQu Wenruo } 437c23c77b0SQu Wenruo return 0; 438c23c77b0SQu Wenruo } 439c23c77b0SQu Wenruo 44057a0e674SQu Wenruo static int check_root_key(struct extent_buffer *leaf, struct btrfs_key *key, 44157a0e674SQu Wenruo int slot) 44257a0e674SQu Wenruo { 44357a0e674SQu Wenruo struct btrfs_key item_key; 44457a0e674SQu Wenruo bool is_root_item; 44557a0e674SQu Wenruo 44657a0e674SQu Wenruo btrfs_item_key_to_cpu(leaf, &item_key, slot); 44757a0e674SQu Wenruo is_root_item = (item_key.type == BTRFS_ROOT_ITEM_KEY); 44857a0e674SQu Wenruo 44957a0e674SQu Wenruo /* No such tree id */ 450c7c01a4aSDavid Sterba if (unlikely(key->objectid == 0)) { 45157a0e674SQu Wenruo if (is_root_item) 45257a0e674SQu Wenruo generic_err(leaf, slot, "invalid root id 0"); 45357a0e674SQu Wenruo else 45457a0e674SQu Wenruo dir_item_err(leaf, slot, 45557a0e674SQu Wenruo "invalid location key root id 0"); 45657a0e674SQu Wenruo return -EUCLEAN; 45757a0e674SQu Wenruo } 45857a0e674SQu Wenruo 45957a0e674SQu Wenruo /* DIR_ITEM/INDEX/INODE_REF is not allowed to point to non-fs trees */ 460c7c01a4aSDavid Sterba if (unlikely(!is_fstree(key->objectid) && !is_root_item)) { 46157a0e674SQu Wenruo dir_item_err(leaf, slot, 46257a0e674SQu Wenruo "invalid location key objectid, have %llu expect [%llu, %llu]", 46357a0e674SQu Wenruo key->objectid, BTRFS_FIRST_FREE_OBJECTID, 46457a0e674SQu Wenruo BTRFS_LAST_FREE_OBJECTID); 46557a0e674SQu Wenruo return -EUCLEAN; 46657a0e674SQu Wenruo } 46757a0e674SQu Wenruo 46857a0e674SQu Wenruo /* 46957a0e674SQu Wenruo * ROOT_ITEM with non-zero offset means this is a snapshot, created at 47057a0e674SQu Wenruo * @offset transid. 47157a0e674SQu Wenruo * Furthermore, for location key in DIR_ITEM, its offset is always -1. 47257a0e674SQu Wenruo * 47357a0e674SQu Wenruo * So here we only check offset for reloc tree whose key->offset must 47457a0e674SQu Wenruo * be a valid tree. 47557a0e674SQu Wenruo */ 476c7c01a4aSDavid Sterba if (unlikely(key->objectid == BTRFS_TREE_RELOC_OBJECTID && 477c7c01a4aSDavid Sterba key->offset == 0)) { 47857a0e674SQu Wenruo generic_err(leaf, slot, "invalid root id 0 for reloc tree"); 47957a0e674SQu Wenruo return -EUCLEAN; 48057a0e674SQu Wenruo } 48157a0e674SQu Wenruo return 0; 48257a0e674SQu Wenruo } 48357a0e674SQu Wenruo 484ce4252c0SDavid Sterba static int check_dir_item(struct extent_buffer *leaf, 485c18679ebSQu Wenruo struct btrfs_key *key, struct btrfs_key *prev_key, 486c18679ebSQu Wenruo int slot) 487ad7b0368SQu Wenruo { 488ce4252c0SDavid Sterba struct btrfs_fs_info *fs_info = leaf->fs_info; 489ad7b0368SQu Wenruo struct btrfs_dir_item *di; 4903212fa14SJosef Bacik u32 item_size = btrfs_item_size(leaf, slot); 491ad7b0368SQu Wenruo u32 cur = 0; 492ad7b0368SQu Wenruo 493c7c01a4aSDavid Sterba if (unlikely(!check_prev_ino(leaf, key, slot, prev_key))) 494c18679ebSQu Wenruo return -EUCLEAN; 495c7c01a4aSDavid Sterba 496ad7b0368SQu Wenruo di = btrfs_item_ptr(leaf, slot, struct btrfs_dir_item); 497ad7b0368SQu Wenruo while (cur < item_size) { 498147a097cSQu Wenruo struct btrfs_key location_key; 499ad7b0368SQu Wenruo u32 name_len; 500ad7b0368SQu Wenruo u32 data_len; 501ad7b0368SQu Wenruo u32 max_name_len; 502ad7b0368SQu Wenruo u32 total_size; 503ad7b0368SQu Wenruo u32 name_hash; 504ad7b0368SQu Wenruo u8 dir_type; 505147a097cSQu Wenruo int ret; 506ad7b0368SQu Wenruo 507ad7b0368SQu Wenruo /* header itself should not cross item boundary */ 508c7c01a4aSDavid Sterba if (unlikely(cur + sizeof(*di) > item_size)) { 509d98ced68SDavid Sterba dir_item_err(leaf, slot, 5107cfad652SArnd Bergmann "dir item header crosses item boundary, have %zu boundary %u", 511ad7b0368SQu Wenruo cur + sizeof(*di), item_size); 512ad7b0368SQu Wenruo return -EUCLEAN; 513ad7b0368SQu Wenruo } 514ad7b0368SQu Wenruo 515147a097cSQu Wenruo /* Location key check */ 516147a097cSQu Wenruo btrfs_dir_item_key_to_cpu(leaf, di, &location_key); 517147a097cSQu Wenruo if (location_key.type == BTRFS_ROOT_ITEM_KEY) { 518147a097cSQu Wenruo ret = check_root_key(leaf, &location_key, slot); 519c7c01a4aSDavid Sterba if (unlikely(ret < 0)) 520147a097cSQu Wenruo return ret; 521147a097cSQu Wenruo } else if (location_key.type == BTRFS_INODE_ITEM_KEY || 522147a097cSQu Wenruo location_key.type == 0) { 523147a097cSQu Wenruo ret = check_inode_key(leaf, &location_key, slot); 524c7c01a4aSDavid Sterba if (unlikely(ret < 0)) 525147a097cSQu Wenruo return ret; 526147a097cSQu Wenruo } else { 527147a097cSQu Wenruo dir_item_err(leaf, slot, 528147a097cSQu Wenruo "invalid location key type, have %u, expect %u or %u", 529147a097cSQu Wenruo location_key.type, BTRFS_ROOT_ITEM_KEY, 530147a097cSQu Wenruo BTRFS_INODE_ITEM_KEY); 531147a097cSQu Wenruo return -EUCLEAN; 532147a097cSQu Wenruo } 533147a097cSQu Wenruo 534ad7b0368SQu Wenruo /* dir type check */ 53594a48aefSOmar Sandoval dir_type = btrfs_dir_ftype(leaf, di); 536c7c01a4aSDavid Sterba if (unlikely(dir_type >= BTRFS_FT_MAX)) { 537d98ced68SDavid Sterba dir_item_err(leaf, slot, 538ad7b0368SQu Wenruo "invalid dir item type, have %u expect [0, %u)", 539ad7b0368SQu Wenruo dir_type, BTRFS_FT_MAX); 540ad7b0368SQu Wenruo return -EUCLEAN; 541ad7b0368SQu Wenruo } 542ad7b0368SQu Wenruo 543c7c01a4aSDavid Sterba if (unlikely(key->type == BTRFS_XATTR_ITEM_KEY && 544c7c01a4aSDavid Sterba dir_type != BTRFS_FT_XATTR)) { 545d98ced68SDavid Sterba dir_item_err(leaf, slot, 546ad7b0368SQu Wenruo "invalid dir item type for XATTR key, have %u expect %u", 547ad7b0368SQu Wenruo dir_type, BTRFS_FT_XATTR); 548ad7b0368SQu Wenruo return -EUCLEAN; 549ad7b0368SQu Wenruo } 550c7c01a4aSDavid Sterba if (unlikely(dir_type == BTRFS_FT_XATTR && 551c7c01a4aSDavid Sterba key->type != BTRFS_XATTR_ITEM_KEY)) { 552d98ced68SDavid Sterba dir_item_err(leaf, slot, 553ad7b0368SQu Wenruo "xattr dir type found for non-XATTR key"); 554ad7b0368SQu Wenruo return -EUCLEAN; 555ad7b0368SQu Wenruo } 556ad7b0368SQu Wenruo if (dir_type == BTRFS_FT_XATTR) 557ad7b0368SQu Wenruo max_name_len = XATTR_NAME_MAX; 558ad7b0368SQu Wenruo else 559ad7b0368SQu Wenruo max_name_len = BTRFS_NAME_LEN; 560ad7b0368SQu Wenruo 561ad7b0368SQu Wenruo /* Name/data length check */ 562ad7b0368SQu Wenruo name_len = btrfs_dir_name_len(leaf, di); 563ad7b0368SQu Wenruo data_len = btrfs_dir_data_len(leaf, di); 564c7c01a4aSDavid Sterba if (unlikely(name_len > max_name_len)) { 565d98ced68SDavid Sterba dir_item_err(leaf, slot, 566ad7b0368SQu Wenruo "dir item name len too long, have %u max %u", 567ad7b0368SQu Wenruo name_len, max_name_len); 568ad7b0368SQu Wenruo return -EUCLEAN; 569ad7b0368SQu Wenruo } 570c7c01a4aSDavid Sterba if (unlikely(name_len + data_len > BTRFS_MAX_XATTR_SIZE(fs_info))) { 571d98ced68SDavid Sterba dir_item_err(leaf, slot, 572ad7b0368SQu Wenruo "dir item name and data len too long, have %u max %u", 573ad7b0368SQu Wenruo name_len + data_len, 5742f659546SQu Wenruo BTRFS_MAX_XATTR_SIZE(fs_info)); 575ad7b0368SQu Wenruo return -EUCLEAN; 576ad7b0368SQu Wenruo } 577ad7b0368SQu Wenruo 578c7c01a4aSDavid Sterba if (unlikely(data_len && dir_type != BTRFS_FT_XATTR)) { 579d98ced68SDavid Sterba dir_item_err(leaf, slot, 580ad7b0368SQu Wenruo "dir item with invalid data len, have %u expect 0", 581ad7b0368SQu Wenruo data_len); 582ad7b0368SQu Wenruo return -EUCLEAN; 583ad7b0368SQu Wenruo } 584ad7b0368SQu Wenruo 585ad7b0368SQu Wenruo total_size = sizeof(*di) + name_len + data_len; 586ad7b0368SQu Wenruo 587ad7b0368SQu Wenruo /* header and name/data should not cross item boundary */ 588c7c01a4aSDavid Sterba if (unlikely(cur + total_size > item_size)) { 589d98ced68SDavid Sterba dir_item_err(leaf, slot, 590ad7b0368SQu Wenruo "dir item data crosses item boundary, have %u boundary %u", 591ad7b0368SQu Wenruo cur + total_size, item_size); 592ad7b0368SQu Wenruo return -EUCLEAN; 593ad7b0368SQu Wenruo } 594ad7b0368SQu Wenruo 595ad7b0368SQu Wenruo /* 596ad7b0368SQu Wenruo * Special check for XATTR/DIR_ITEM, as key->offset is name 597ad7b0368SQu Wenruo * hash, should match its name 598ad7b0368SQu Wenruo */ 599ad7b0368SQu Wenruo if (key->type == BTRFS_DIR_ITEM_KEY || 600ad7b0368SQu Wenruo key->type == BTRFS_XATTR_ITEM_KEY) { 601e2683fc9SDavid Sterba char namebuf[max(BTRFS_NAME_LEN, XATTR_NAME_MAX)]; 602e2683fc9SDavid Sterba 603ad7b0368SQu Wenruo read_extent_buffer(leaf, namebuf, 604ad7b0368SQu Wenruo (unsigned long)(di + 1), name_len); 605ad7b0368SQu Wenruo name_hash = btrfs_name_hash(namebuf, name_len); 606c7c01a4aSDavid Sterba if (unlikely(key->offset != name_hash)) { 607d98ced68SDavid Sterba dir_item_err(leaf, slot, 608ad7b0368SQu Wenruo "name hash mismatch with key, have 0x%016x expect 0x%016llx", 609ad7b0368SQu Wenruo name_hash, key->offset); 610ad7b0368SQu Wenruo return -EUCLEAN; 611ad7b0368SQu Wenruo } 612ad7b0368SQu Wenruo } 613ad7b0368SQu Wenruo cur += total_size; 614ad7b0368SQu Wenruo di = (struct btrfs_dir_item *)((void *)di + total_size); 615ad7b0368SQu Wenruo } 616ad7b0368SQu Wenruo return 0; 617ad7b0368SQu Wenruo } 618ad7b0368SQu Wenruo 6194806bd88SDavid Sterba __printf(3, 4) 620fce466eaSQu Wenruo __cold 6214806bd88SDavid Sterba static void block_group_err(const struct extent_buffer *eb, int slot, 622fce466eaSQu Wenruo const char *fmt, ...) 623fce466eaSQu Wenruo { 6244806bd88SDavid Sterba const struct btrfs_fs_info *fs_info = eb->fs_info; 625fce466eaSQu Wenruo struct btrfs_key key; 626fce466eaSQu Wenruo struct va_format vaf; 627fce466eaSQu Wenruo va_list args; 628fce466eaSQu Wenruo 629fce466eaSQu Wenruo btrfs_item_key_to_cpu(eb, &key, slot); 630fce466eaSQu Wenruo va_start(args, fmt); 631fce466eaSQu Wenruo 632fce466eaSQu Wenruo vaf.fmt = fmt; 633fce466eaSQu Wenruo vaf.va = &args; 634fce466eaSQu Wenruo 635fce466eaSQu Wenruo btrfs_crit(fs_info, 636fce466eaSQu Wenruo "corrupt %s: root=%llu block=%llu slot=%d bg_start=%llu bg_len=%llu, %pV", 637fce466eaSQu Wenruo btrfs_header_level(eb) == 0 ? "leaf" : "node", 638fce466eaSQu Wenruo btrfs_header_owner(eb), btrfs_header_bytenr(eb), slot, 639fce466eaSQu Wenruo key.objectid, key.offset, &vaf); 640fce466eaSQu Wenruo va_end(args); 641fce466eaSQu Wenruo } 642fce466eaSQu Wenruo 643af60ce2bSDavid Sterba static int check_block_group_item(struct extent_buffer *leaf, 644fce466eaSQu Wenruo struct btrfs_key *key, int slot) 645fce466eaSQu Wenruo { 646f7238e50SJosef Bacik struct btrfs_fs_info *fs_info = leaf->fs_info; 647fce466eaSQu Wenruo struct btrfs_block_group_item bgi; 6483212fa14SJosef Bacik u32 item_size = btrfs_item_size(leaf, slot); 649f7238e50SJosef Bacik u64 chunk_objectid; 650fce466eaSQu Wenruo u64 flags; 651fce466eaSQu Wenruo u64 type; 652fce466eaSQu Wenruo 653fce466eaSQu Wenruo /* 654fce466eaSQu Wenruo * Here we don't really care about alignment since extent allocator can 65510950929SQu Wenruo * handle it. We care more about the size. 656fce466eaSQu Wenruo */ 657c7c01a4aSDavid Sterba if (unlikely(key->offset == 0)) { 6584806bd88SDavid Sterba block_group_err(leaf, slot, 65910950929SQu Wenruo "invalid block group size 0"); 660fce466eaSQu Wenruo return -EUCLEAN; 661fce466eaSQu Wenruo } 662fce466eaSQu Wenruo 663c7c01a4aSDavid Sterba if (unlikely(item_size != sizeof(bgi))) { 6644806bd88SDavid Sterba block_group_err(leaf, slot, 665fce466eaSQu Wenruo "invalid item size, have %u expect %zu", 666fce466eaSQu Wenruo item_size, sizeof(bgi)); 667fce466eaSQu Wenruo return -EUCLEAN; 668fce466eaSQu Wenruo } 669fce466eaSQu Wenruo 670fce466eaSQu Wenruo read_extent_buffer(leaf, &bgi, btrfs_item_ptr_offset(leaf, slot), 671fce466eaSQu Wenruo sizeof(bgi)); 672f7238e50SJosef Bacik chunk_objectid = btrfs_stack_block_group_chunk_objectid(&bgi); 673f7238e50SJosef Bacik if (btrfs_fs_incompat(fs_info, EXTENT_TREE_V2)) { 674f7238e50SJosef Bacik /* 675f7238e50SJosef Bacik * We don't init the nr_global_roots until we load the global 676f7238e50SJosef Bacik * roots, so this could be 0 at mount time. If it's 0 we'll 677f7238e50SJosef Bacik * just assume we're fine, and later we'll check against our 678f7238e50SJosef Bacik * actual value. 679f7238e50SJosef Bacik */ 680f7238e50SJosef Bacik if (unlikely(fs_info->nr_global_roots && 681f7238e50SJosef Bacik chunk_objectid >= fs_info->nr_global_roots)) { 682f7238e50SJosef Bacik block_group_err(leaf, slot, 683f7238e50SJosef Bacik "invalid block group global root id, have %llu, needs to be <= %llu", 684f7238e50SJosef Bacik chunk_objectid, 685f7238e50SJosef Bacik fs_info->nr_global_roots); 686f7238e50SJosef Bacik return -EUCLEAN; 687f7238e50SJosef Bacik } 688f7238e50SJosef Bacik } else if (unlikely(chunk_objectid != BTRFS_FIRST_CHUNK_TREE_OBJECTID)) { 6894806bd88SDavid Sterba block_group_err(leaf, slot, 690fce466eaSQu Wenruo "invalid block group chunk objectid, have %llu expect %llu", 691de0dc456SDavid Sterba btrfs_stack_block_group_chunk_objectid(&bgi), 692fce466eaSQu Wenruo BTRFS_FIRST_CHUNK_TREE_OBJECTID); 693fce466eaSQu Wenruo return -EUCLEAN; 694fce466eaSQu Wenruo } 695fce466eaSQu Wenruo 696c7c01a4aSDavid Sterba if (unlikely(btrfs_stack_block_group_used(&bgi) > key->offset)) { 6974806bd88SDavid Sterba block_group_err(leaf, slot, 698fce466eaSQu Wenruo "invalid block group used, have %llu expect [0, %llu)", 699de0dc456SDavid Sterba btrfs_stack_block_group_used(&bgi), key->offset); 700fce466eaSQu Wenruo return -EUCLEAN; 701fce466eaSQu Wenruo } 702fce466eaSQu Wenruo 703de0dc456SDavid Sterba flags = btrfs_stack_block_group_flags(&bgi); 704c7c01a4aSDavid Sterba if (unlikely(hweight64(flags & BTRFS_BLOCK_GROUP_PROFILE_MASK) > 1)) { 7054806bd88SDavid Sterba block_group_err(leaf, slot, 706fce466eaSQu Wenruo "invalid profile flags, have 0x%llx (%lu bits set) expect no more than 1 bit set", 707fce466eaSQu Wenruo flags & BTRFS_BLOCK_GROUP_PROFILE_MASK, 708fce466eaSQu Wenruo hweight64(flags & BTRFS_BLOCK_GROUP_PROFILE_MASK)); 709fce466eaSQu Wenruo return -EUCLEAN; 710fce466eaSQu Wenruo } 711fce466eaSQu Wenruo 712fce466eaSQu Wenruo type = flags & BTRFS_BLOCK_GROUP_TYPE_MASK; 713c7c01a4aSDavid Sterba if (unlikely(type != BTRFS_BLOCK_GROUP_DATA && 714fce466eaSQu Wenruo type != BTRFS_BLOCK_GROUP_METADATA && 715fce466eaSQu Wenruo type != BTRFS_BLOCK_GROUP_SYSTEM && 716fce466eaSQu Wenruo type != (BTRFS_BLOCK_GROUP_METADATA | 717c7c01a4aSDavid Sterba BTRFS_BLOCK_GROUP_DATA))) { 7184806bd88SDavid Sterba block_group_err(leaf, slot, 719761333f2SShaokun Zhang "invalid type, have 0x%llx (%lu bits set) expect either 0x%llx, 0x%llx, 0x%llx or 0x%llx", 720fce466eaSQu Wenruo type, hweight64(type), 721fce466eaSQu Wenruo BTRFS_BLOCK_GROUP_DATA, BTRFS_BLOCK_GROUP_METADATA, 722fce466eaSQu Wenruo BTRFS_BLOCK_GROUP_SYSTEM, 723fce466eaSQu Wenruo BTRFS_BLOCK_GROUP_METADATA | BTRFS_BLOCK_GROUP_DATA); 724fce466eaSQu Wenruo return -EUCLEAN; 725fce466eaSQu Wenruo } 726fce466eaSQu Wenruo return 0; 727fce466eaSQu Wenruo } 728fce466eaSQu Wenruo 729d001e4a3SDavid Sterba __printf(4, 5) 730f1140243SQu Wenruo __cold 731d001e4a3SDavid Sterba static void chunk_err(const struct extent_buffer *leaf, 732f1140243SQu Wenruo const struct btrfs_chunk *chunk, u64 logical, 733f1140243SQu Wenruo const char *fmt, ...) 734f1140243SQu Wenruo { 735d001e4a3SDavid Sterba const struct btrfs_fs_info *fs_info = leaf->fs_info; 736f1140243SQu Wenruo bool is_sb; 737f1140243SQu Wenruo struct va_format vaf; 738f1140243SQu Wenruo va_list args; 739f1140243SQu Wenruo int i; 740f1140243SQu Wenruo int slot = -1; 741f1140243SQu Wenruo 742f1140243SQu Wenruo /* Only superblock eb is able to have such small offset */ 743f1140243SQu Wenruo is_sb = (leaf->start == BTRFS_SUPER_INFO_OFFSET); 744f1140243SQu Wenruo 745f1140243SQu Wenruo if (!is_sb) { 746f1140243SQu Wenruo /* 747f1140243SQu Wenruo * Get the slot number by iterating through all slots, this 748f1140243SQu Wenruo * would provide better readability. 749f1140243SQu Wenruo */ 750f1140243SQu Wenruo for (i = 0; i < btrfs_header_nritems(leaf); i++) { 751f1140243SQu Wenruo if (btrfs_item_ptr_offset(leaf, i) == 752f1140243SQu Wenruo (unsigned long)chunk) { 753f1140243SQu Wenruo slot = i; 754f1140243SQu Wenruo break; 755f1140243SQu Wenruo } 756f1140243SQu Wenruo } 757f1140243SQu Wenruo } 758f1140243SQu Wenruo va_start(args, fmt); 759f1140243SQu Wenruo vaf.fmt = fmt; 760f1140243SQu Wenruo vaf.va = &args; 761f1140243SQu Wenruo 762f1140243SQu Wenruo if (is_sb) 763f1140243SQu Wenruo btrfs_crit(fs_info, 764f1140243SQu Wenruo "corrupt superblock syschunk array: chunk_start=%llu, %pV", 765f1140243SQu Wenruo logical, &vaf); 766f1140243SQu Wenruo else 767f1140243SQu Wenruo btrfs_crit(fs_info, 768f1140243SQu Wenruo "corrupt leaf: root=%llu block=%llu slot=%d chunk_start=%llu, %pV", 769f1140243SQu Wenruo BTRFS_CHUNK_TREE_OBJECTID, leaf->start, slot, 770f1140243SQu Wenruo logical, &vaf); 771f1140243SQu Wenruo va_end(args); 772f1140243SQu Wenruo } 773f1140243SQu Wenruo 774ad7b0368SQu Wenruo /* 77582fc28fbSQu Wenruo * The common chunk check which could also work on super block sys chunk array. 77682fc28fbSQu Wenruo * 777bf871c3bSQu Wenruo * Return -EUCLEAN if anything is corrupted. 77882fc28fbSQu Wenruo * Return 0 if everything is OK. 77982fc28fbSQu Wenruo */ 780ddaf1d5aSDavid Sterba int btrfs_check_chunk_valid(struct extent_buffer *leaf, 78182fc28fbSQu Wenruo struct btrfs_chunk *chunk, u64 logical) 78282fc28fbSQu Wenruo { 783ddaf1d5aSDavid Sterba struct btrfs_fs_info *fs_info = leaf->fs_info; 78482fc28fbSQu Wenruo u64 length; 785347fb0cfSSu Yue u64 chunk_end; 78682fc28fbSQu Wenruo u64 stripe_len; 78782fc28fbSQu Wenruo u16 num_stripes; 78882fc28fbSQu Wenruo u16 sub_stripes; 78982fc28fbSQu Wenruo u64 type; 79082fc28fbSQu Wenruo u64 features; 79182fc28fbSQu Wenruo bool mixed = false; 79285d07fbeSDaniel Xu int raid_index; 79385d07fbeSDaniel Xu int nparity; 79485d07fbeSDaniel Xu int ncopies; 79582fc28fbSQu Wenruo 79682fc28fbSQu Wenruo length = btrfs_chunk_length(leaf, chunk); 79782fc28fbSQu Wenruo stripe_len = btrfs_chunk_stripe_len(leaf, chunk); 79882fc28fbSQu Wenruo num_stripes = btrfs_chunk_num_stripes(leaf, chunk); 79982fc28fbSQu Wenruo sub_stripes = btrfs_chunk_sub_stripes(leaf, chunk); 80082fc28fbSQu Wenruo type = btrfs_chunk_type(leaf, chunk); 80185d07fbeSDaniel Xu raid_index = btrfs_bg_flags_to_raid_index(type); 80285d07fbeSDaniel Xu ncopies = btrfs_raid_array[raid_index].ncopies; 80385d07fbeSDaniel Xu nparity = btrfs_raid_array[raid_index].nparity; 80482fc28fbSQu Wenruo 805c7c01a4aSDavid Sterba if (unlikely(!num_stripes)) { 806d001e4a3SDavid Sterba chunk_err(leaf, chunk, logical, 807f1140243SQu Wenruo "invalid chunk num_stripes, have %u", num_stripes); 808bf871c3bSQu Wenruo return -EUCLEAN; 80982fc28fbSQu Wenruo } 810c7c01a4aSDavid Sterba if (unlikely(num_stripes < ncopies)) { 81185d07fbeSDaniel Xu chunk_err(leaf, chunk, logical, 81285d07fbeSDaniel Xu "invalid chunk num_stripes < ncopies, have %u < %d", 81385d07fbeSDaniel Xu num_stripes, ncopies); 81485d07fbeSDaniel Xu return -EUCLEAN; 81585d07fbeSDaniel Xu } 816c7c01a4aSDavid Sterba if (unlikely(nparity && num_stripes == nparity)) { 81785d07fbeSDaniel Xu chunk_err(leaf, chunk, logical, 81885d07fbeSDaniel Xu "invalid chunk num_stripes == nparity, have %u == %d", 81985d07fbeSDaniel Xu num_stripes, nparity); 82085d07fbeSDaniel Xu return -EUCLEAN; 82185d07fbeSDaniel Xu } 822c7c01a4aSDavid Sterba if (unlikely(!IS_ALIGNED(logical, fs_info->sectorsize))) { 823d001e4a3SDavid Sterba chunk_err(leaf, chunk, logical, 824f1140243SQu Wenruo "invalid chunk logical, have %llu should aligned to %u", 825f1140243SQu Wenruo logical, fs_info->sectorsize); 826bf871c3bSQu Wenruo return -EUCLEAN; 82782fc28fbSQu Wenruo } 828c7c01a4aSDavid Sterba if (unlikely(btrfs_chunk_sector_size(leaf, chunk) != fs_info->sectorsize)) { 829d001e4a3SDavid Sterba chunk_err(leaf, chunk, logical, 830f1140243SQu Wenruo "invalid chunk sectorsize, have %u expect %u", 831f1140243SQu Wenruo btrfs_chunk_sector_size(leaf, chunk), 832f1140243SQu Wenruo fs_info->sectorsize); 833bf871c3bSQu Wenruo return -EUCLEAN; 83482fc28fbSQu Wenruo } 835c7c01a4aSDavid Sterba if (unlikely(!length || !IS_ALIGNED(length, fs_info->sectorsize))) { 836d001e4a3SDavid Sterba chunk_err(leaf, chunk, logical, 837f1140243SQu Wenruo "invalid chunk length, have %llu", length); 838bf871c3bSQu Wenruo return -EUCLEAN; 83982fc28fbSQu Wenruo } 840347fb0cfSSu Yue if (unlikely(check_add_overflow(logical, length, &chunk_end))) { 841347fb0cfSSu Yue chunk_err(leaf, chunk, logical, 842347fb0cfSSu Yue "invalid chunk logical start and length, have logical start %llu length %llu", 843347fb0cfSSu Yue logical, length); 844347fb0cfSSu Yue return -EUCLEAN; 845347fb0cfSSu Yue } 846c7c01a4aSDavid Sterba if (unlikely(!is_power_of_2(stripe_len) || stripe_len != BTRFS_STRIPE_LEN)) { 847d001e4a3SDavid Sterba chunk_err(leaf, chunk, logical, 848f1140243SQu Wenruo "invalid chunk stripe length: %llu", 84982fc28fbSQu Wenruo stripe_len); 850bf871c3bSQu Wenruo return -EUCLEAN; 85182fc28fbSQu Wenruo } 8526ded22c1SQu Wenruo /* 8536ded22c1SQu Wenruo * We artificially limit the chunk size, so that the number of stripes 8546ded22c1SQu Wenruo * inside a chunk can be fit into a U32. The current limit (256G) is 8556ded22c1SQu Wenruo * way too large for real world usage anyway, and it's also much larger 8566ded22c1SQu Wenruo * than our existing limit (10G). 8576ded22c1SQu Wenruo * 8586ded22c1SQu Wenruo * Thus it should be a good way to catch obvious bitflips. 8596ded22c1SQu Wenruo */ 8606ded22c1SQu Wenruo if (unlikely(length >= ((u64)U32_MAX << BTRFS_STRIPE_LEN_SHIFT))) { 8616ded22c1SQu Wenruo chunk_err(leaf, chunk, logical, 8626ded22c1SQu Wenruo "chunk length too large: have %llu limit %llu", 8636ded22c1SQu Wenruo length, (u64)U32_MAX << BTRFS_STRIPE_LEN_SHIFT); 8646ded22c1SQu Wenruo return -EUCLEAN; 8656ded22c1SQu Wenruo } 866c7c01a4aSDavid Sterba if (unlikely(type & ~(BTRFS_BLOCK_GROUP_TYPE_MASK | 867c7c01a4aSDavid Sterba BTRFS_BLOCK_GROUP_PROFILE_MASK))) { 868d001e4a3SDavid Sterba chunk_err(leaf, chunk, logical, 869f1140243SQu Wenruo "unrecognized chunk type: 0x%llx", 87082fc28fbSQu Wenruo ~(BTRFS_BLOCK_GROUP_TYPE_MASK | 87182fc28fbSQu Wenruo BTRFS_BLOCK_GROUP_PROFILE_MASK) & 87282fc28fbSQu Wenruo btrfs_chunk_type(leaf, chunk)); 873bf871c3bSQu Wenruo return -EUCLEAN; 87482fc28fbSQu Wenruo } 87582fc28fbSQu Wenruo 876c7c01a4aSDavid Sterba if (unlikely(!has_single_bit_set(type & BTRFS_BLOCK_GROUP_PROFILE_MASK) && 877c7c01a4aSDavid Sterba (type & BTRFS_BLOCK_GROUP_PROFILE_MASK) != 0)) { 878d001e4a3SDavid Sterba chunk_err(leaf, chunk, logical, 87980e46cf2SQu Wenruo "invalid chunk profile flag: 0x%llx, expect 0 or 1 bit set", 88080e46cf2SQu Wenruo type & BTRFS_BLOCK_GROUP_PROFILE_MASK); 88180e46cf2SQu Wenruo return -EUCLEAN; 88280e46cf2SQu Wenruo } 883c7c01a4aSDavid Sterba if (unlikely((type & BTRFS_BLOCK_GROUP_TYPE_MASK) == 0)) { 884d001e4a3SDavid Sterba chunk_err(leaf, chunk, logical, 885f1140243SQu Wenruo "missing chunk type flag, have 0x%llx one bit must be set in 0x%llx", 886f1140243SQu Wenruo type, BTRFS_BLOCK_GROUP_TYPE_MASK); 887bf871c3bSQu Wenruo return -EUCLEAN; 88882fc28fbSQu Wenruo } 88982fc28fbSQu Wenruo 890c7c01a4aSDavid Sterba if (unlikely((type & BTRFS_BLOCK_GROUP_SYSTEM) && 891c7c01a4aSDavid Sterba (type & (BTRFS_BLOCK_GROUP_METADATA | 892c7c01a4aSDavid Sterba BTRFS_BLOCK_GROUP_DATA)))) { 893d001e4a3SDavid Sterba chunk_err(leaf, chunk, logical, 894f1140243SQu Wenruo "system chunk with data or metadata type: 0x%llx", 895f1140243SQu Wenruo type); 896bf871c3bSQu Wenruo return -EUCLEAN; 89782fc28fbSQu Wenruo } 89882fc28fbSQu Wenruo 89982fc28fbSQu Wenruo features = btrfs_super_incompat_flags(fs_info->super_copy); 90082fc28fbSQu Wenruo if (features & BTRFS_FEATURE_INCOMPAT_MIXED_GROUPS) 90182fc28fbSQu Wenruo mixed = true; 90282fc28fbSQu Wenruo 90382fc28fbSQu Wenruo if (!mixed) { 904c7c01a4aSDavid Sterba if (unlikely((type & BTRFS_BLOCK_GROUP_METADATA) && 905c7c01a4aSDavid Sterba (type & BTRFS_BLOCK_GROUP_DATA))) { 906d001e4a3SDavid Sterba chunk_err(leaf, chunk, logical, 90782fc28fbSQu Wenruo "mixed chunk type in non-mixed mode: 0x%llx", type); 908bf871c3bSQu Wenruo return -EUCLEAN; 90982fc28fbSQu Wenruo } 91082fc28fbSQu Wenruo } 91182fc28fbSQu Wenruo 9120ac6e06bSDavid Sterba if (unlikely((type & BTRFS_BLOCK_GROUP_RAID10 && 9130ac6e06bSDavid Sterba sub_stripes != btrfs_raid_array[BTRFS_RAID_RAID10].sub_stripes) || 9140ac6e06bSDavid Sterba (type & BTRFS_BLOCK_GROUP_RAID1 && 9150ac6e06bSDavid Sterba num_stripes != btrfs_raid_array[BTRFS_RAID_RAID1].devs_min) || 9166c154ba4SDavid Sterba (type & BTRFS_BLOCK_GROUP_RAID1C3 && 9176c154ba4SDavid Sterba num_stripes != btrfs_raid_array[BTRFS_RAID_RAID1C3].devs_min) || 9186c154ba4SDavid Sterba (type & BTRFS_BLOCK_GROUP_RAID1C4 && 9196c154ba4SDavid Sterba num_stripes != btrfs_raid_array[BTRFS_RAID_RAID1C4].devs_min) || 9200ac6e06bSDavid Sterba (type & BTRFS_BLOCK_GROUP_RAID5 && 9210ac6e06bSDavid Sterba num_stripes < btrfs_raid_array[BTRFS_RAID_RAID5].devs_min) || 9220ac6e06bSDavid Sterba (type & BTRFS_BLOCK_GROUP_RAID6 && 9230ac6e06bSDavid Sterba num_stripes < btrfs_raid_array[BTRFS_RAID_RAID6].devs_min) || 9240ac6e06bSDavid Sterba (type & BTRFS_BLOCK_GROUP_DUP && 9250ac6e06bSDavid Sterba num_stripes != btrfs_raid_array[BTRFS_RAID_DUP].dev_stripes) || 926c7c01a4aSDavid Sterba ((type & BTRFS_BLOCK_GROUP_PROFILE_MASK) == 0 && 9270ac6e06bSDavid Sterba num_stripes != btrfs_raid_array[BTRFS_RAID_SINGLE].dev_stripes))) { 928d001e4a3SDavid Sterba chunk_err(leaf, chunk, logical, 92982fc28fbSQu Wenruo "invalid num_stripes:sub_stripes %u:%u for profile %llu", 93082fc28fbSQu Wenruo num_stripes, sub_stripes, 93182fc28fbSQu Wenruo type & BTRFS_BLOCK_GROUP_PROFILE_MASK); 932bf871c3bSQu Wenruo return -EUCLEAN; 93382fc28fbSQu Wenruo } 93482fc28fbSQu Wenruo 93582fc28fbSQu Wenruo return 0; 93682fc28fbSQu Wenruo } 93782fc28fbSQu Wenruo 938f6d2a5c2SQu Wenruo /* 939f6d2a5c2SQu Wenruo * Enhanced version of chunk item checker. 940f6d2a5c2SQu Wenruo * 941f6d2a5c2SQu Wenruo * The common btrfs_check_chunk_valid() doesn't check item size since it needs 942f6d2a5c2SQu Wenruo * to work on super block sys_chunk_array which doesn't have full item ptr. 943f6d2a5c2SQu Wenruo */ 944f6d2a5c2SQu Wenruo static int check_leaf_chunk_item(struct extent_buffer *leaf, 945f6d2a5c2SQu Wenruo struct btrfs_chunk *chunk, 946f6d2a5c2SQu Wenruo struct btrfs_key *key, int slot) 947f6d2a5c2SQu Wenruo { 948f6d2a5c2SQu Wenruo int num_stripes; 949f6d2a5c2SQu Wenruo 9503212fa14SJosef Bacik if (unlikely(btrfs_item_size(leaf, slot) < sizeof(struct btrfs_chunk))) { 951f6d2a5c2SQu Wenruo chunk_err(leaf, chunk, key->offset, 952f6d2a5c2SQu Wenruo "invalid chunk item size: have %u expect [%zu, %u)", 9533212fa14SJosef Bacik btrfs_item_size(leaf, slot), 954f6d2a5c2SQu Wenruo sizeof(struct btrfs_chunk), 955f6d2a5c2SQu Wenruo BTRFS_LEAF_DATA_SIZE(leaf->fs_info)); 956f6d2a5c2SQu Wenruo return -EUCLEAN; 957f6d2a5c2SQu Wenruo } 958f6d2a5c2SQu Wenruo 959f6d2a5c2SQu Wenruo num_stripes = btrfs_chunk_num_stripes(leaf, chunk); 960f6d2a5c2SQu Wenruo /* Let btrfs_check_chunk_valid() handle this error type */ 961f6d2a5c2SQu Wenruo if (num_stripes == 0) 962f6d2a5c2SQu Wenruo goto out; 963f6d2a5c2SQu Wenruo 964c7c01a4aSDavid Sterba if (unlikely(btrfs_chunk_item_size(num_stripes) != 9653212fa14SJosef Bacik btrfs_item_size(leaf, slot))) { 966f6d2a5c2SQu Wenruo chunk_err(leaf, chunk, key->offset, 967f6d2a5c2SQu Wenruo "invalid chunk item size: have %u expect %lu", 9683212fa14SJosef Bacik btrfs_item_size(leaf, slot), 969f6d2a5c2SQu Wenruo btrfs_chunk_item_size(num_stripes)); 970f6d2a5c2SQu Wenruo return -EUCLEAN; 971f6d2a5c2SQu Wenruo } 972f6d2a5c2SQu Wenruo out: 973f6d2a5c2SQu Wenruo return btrfs_check_chunk_valid(leaf, chunk, key->offset); 974f6d2a5c2SQu Wenruo } 975f6d2a5c2SQu Wenruo 9765617ed80SDavid Sterba __printf(3, 4) 977ab4ba2e1SQu Wenruo __cold 9785617ed80SDavid Sterba static void dev_item_err(const struct extent_buffer *eb, int slot, 979ab4ba2e1SQu Wenruo const char *fmt, ...) 980ab4ba2e1SQu Wenruo { 981ab4ba2e1SQu Wenruo struct btrfs_key key; 982ab4ba2e1SQu Wenruo struct va_format vaf; 983ab4ba2e1SQu Wenruo va_list args; 984ab4ba2e1SQu Wenruo 985ab4ba2e1SQu Wenruo btrfs_item_key_to_cpu(eb, &key, slot); 986ab4ba2e1SQu Wenruo va_start(args, fmt); 987ab4ba2e1SQu Wenruo 988ab4ba2e1SQu Wenruo vaf.fmt = fmt; 989ab4ba2e1SQu Wenruo vaf.va = &args; 990ab4ba2e1SQu Wenruo 9915617ed80SDavid Sterba btrfs_crit(eb->fs_info, 992ab4ba2e1SQu Wenruo "corrupt %s: root=%llu block=%llu slot=%d devid=%llu %pV", 993ab4ba2e1SQu Wenruo btrfs_header_level(eb) == 0 ? "leaf" : "node", 994ab4ba2e1SQu Wenruo btrfs_header_owner(eb), btrfs_header_bytenr(eb), slot, 995ab4ba2e1SQu Wenruo key.objectid, &vaf); 996ab4ba2e1SQu Wenruo va_end(args); 997ab4ba2e1SQu Wenruo } 998ab4ba2e1SQu Wenruo 999412a2312SDavid Sterba static int check_dev_item(struct extent_buffer *leaf, 1000ab4ba2e1SQu Wenruo struct btrfs_key *key, int slot) 1001ab4ba2e1SQu Wenruo { 1002ab4ba2e1SQu Wenruo struct btrfs_dev_item *ditem; 1003ea1d1ca4SSu Yue const u32 item_size = btrfs_item_size(leaf, slot); 1004ab4ba2e1SQu Wenruo 1005c7c01a4aSDavid Sterba if (unlikely(key->objectid != BTRFS_DEV_ITEMS_OBJECTID)) { 10065617ed80SDavid Sterba dev_item_err(leaf, slot, 1007ab4ba2e1SQu Wenruo "invalid objectid: has=%llu expect=%llu", 1008ab4ba2e1SQu Wenruo key->objectid, BTRFS_DEV_ITEMS_OBJECTID); 1009ab4ba2e1SQu Wenruo return -EUCLEAN; 1010ab4ba2e1SQu Wenruo } 1011ea1d1ca4SSu Yue 1012ea1d1ca4SSu Yue if (unlikely(item_size != sizeof(*ditem))) { 1013ea1d1ca4SSu Yue dev_item_err(leaf, slot, "invalid item size: has %u expect %zu", 1014ea1d1ca4SSu Yue item_size, sizeof(*ditem)); 1015ea1d1ca4SSu Yue return -EUCLEAN; 1016ea1d1ca4SSu Yue } 1017ea1d1ca4SSu Yue 1018ab4ba2e1SQu Wenruo ditem = btrfs_item_ptr(leaf, slot, struct btrfs_dev_item); 1019c7c01a4aSDavid Sterba if (unlikely(btrfs_device_id(leaf, ditem) != key->offset)) { 10205617ed80SDavid Sterba dev_item_err(leaf, slot, 1021ab4ba2e1SQu Wenruo "devid mismatch: key has=%llu item has=%llu", 1022ab4ba2e1SQu Wenruo key->offset, btrfs_device_id(leaf, ditem)); 1023ab4ba2e1SQu Wenruo return -EUCLEAN; 1024ab4ba2e1SQu Wenruo } 1025ab4ba2e1SQu Wenruo 1026ab4ba2e1SQu Wenruo /* 1027ab4ba2e1SQu Wenruo * For device total_bytes, we don't have reliable way to check it, as 1028ab4ba2e1SQu Wenruo * it can be 0 for device removal. Device size check can only be done 1029ab4ba2e1SQu Wenruo * by dev extents check. 1030ab4ba2e1SQu Wenruo */ 1031c7c01a4aSDavid Sterba if (unlikely(btrfs_device_bytes_used(leaf, ditem) > 1032c7c01a4aSDavid Sterba btrfs_device_total_bytes(leaf, ditem))) { 10335617ed80SDavid Sterba dev_item_err(leaf, slot, 1034ab4ba2e1SQu Wenruo "invalid bytes used: have %llu expect [0, %llu]", 1035ab4ba2e1SQu Wenruo btrfs_device_bytes_used(leaf, ditem), 1036ab4ba2e1SQu Wenruo btrfs_device_total_bytes(leaf, ditem)); 1037ab4ba2e1SQu Wenruo return -EUCLEAN; 1038ab4ba2e1SQu Wenruo } 1039ab4ba2e1SQu Wenruo /* 1040ab4ba2e1SQu Wenruo * Remaining members like io_align/type/gen/dev_group aren't really 1041ab4ba2e1SQu Wenruo * utilized. Skip them to make later usage of them easier. 1042ab4ba2e1SQu Wenruo */ 1043ab4ba2e1SQu Wenruo return 0; 1044ab4ba2e1SQu Wenruo } 1045ab4ba2e1SQu Wenruo 104639e57f49SDavid Sterba static int check_inode_item(struct extent_buffer *leaf, 1047496245caSQu Wenruo struct btrfs_key *key, int slot) 1048496245caSQu Wenruo { 104939e57f49SDavid Sterba struct btrfs_fs_info *fs_info = leaf->fs_info; 1050496245caSQu Wenruo struct btrfs_inode_item *iitem; 1051496245caSQu Wenruo u64 super_gen = btrfs_super_generation(fs_info->super_copy); 1052496245caSQu Wenruo u32 valid_mask = (S_IFMT | S_ISUID | S_ISGID | S_ISVTX | 0777); 10530c982944SSu Yue const u32 item_size = btrfs_item_size(leaf, slot); 1054496245caSQu Wenruo u32 mode; 1055c23c77b0SQu Wenruo int ret; 105677eea05eSBoris Burkov u32 flags; 105777eea05eSBoris Burkov u32 ro_flags; 1058496245caSQu Wenruo 1059c23c77b0SQu Wenruo ret = check_inode_key(leaf, key, slot); 1060c7c01a4aSDavid Sterba if (unlikely(ret < 0)) 1061c23c77b0SQu Wenruo return ret; 1062c23c77b0SQu Wenruo 10630c982944SSu Yue if (unlikely(item_size != sizeof(*iitem))) { 10640c982944SSu Yue generic_err(leaf, slot, "invalid item size: has %u expect %zu", 10650c982944SSu Yue item_size, sizeof(*iitem)); 10660c982944SSu Yue return -EUCLEAN; 10670c982944SSu Yue } 10680c982944SSu Yue 1069496245caSQu Wenruo iitem = btrfs_item_ptr(leaf, slot, struct btrfs_inode_item); 1070496245caSQu Wenruo 1071496245caSQu Wenruo /* Here we use super block generation + 1 to handle log tree */ 1072c7c01a4aSDavid Sterba if (unlikely(btrfs_inode_generation(leaf, iitem) > super_gen + 1)) { 1073c3053ebbSQu Wenruo inode_item_err(leaf, slot, 1074496245caSQu Wenruo "invalid inode generation: has %llu expect (0, %llu]", 1075496245caSQu Wenruo btrfs_inode_generation(leaf, iitem), 1076496245caSQu Wenruo super_gen + 1); 1077496245caSQu Wenruo return -EUCLEAN; 1078496245caSQu Wenruo } 1079496245caSQu Wenruo /* Note for ROOT_TREE_DIR_ITEM, mkfs could set its transid 0 */ 1080c7c01a4aSDavid Sterba if (unlikely(btrfs_inode_transid(leaf, iitem) > super_gen + 1)) { 1081c3053ebbSQu Wenruo inode_item_err(leaf, slot, 1082f96d6960SQu Wenruo "invalid inode transid: has %llu expect [0, %llu]", 1083496245caSQu Wenruo btrfs_inode_transid(leaf, iitem), super_gen + 1); 1084496245caSQu Wenruo return -EUCLEAN; 1085496245caSQu Wenruo } 1086496245caSQu Wenruo 1087496245caSQu Wenruo /* 1088496245caSQu Wenruo * For size and nbytes it's better not to be too strict, as for dir 1089496245caSQu Wenruo * item its size/nbytes can easily get wrong, but doesn't affect 1090496245caSQu Wenruo * anything in the fs. So here we skip the check. 1091496245caSQu Wenruo */ 1092496245caSQu Wenruo mode = btrfs_inode_mode(leaf, iitem); 1093c7c01a4aSDavid Sterba if (unlikely(mode & ~valid_mask)) { 1094c3053ebbSQu Wenruo inode_item_err(leaf, slot, 1095496245caSQu Wenruo "unknown mode bit detected: 0x%x", 1096496245caSQu Wenruo mode & ~valid_mask); 1097496245caSQu Wenruo return -EUCLEAN; 1098496245caSQu Wenruo } 1099496245caSQu Wenruo 1100496245caSQu Wenruo /* 1101c1499166SDavid Sterba * S_IFMT is not bit mapped so we can't completely rely on 1102c1499166SDavid Sterba * is_power_of_2/has_single_bit_set, but it can save us from checking 1103c1499166SDavid Sterba * FIFO/CHR/DIR/REG. Only needs to check BLK, LNK and SOCKS 1104496245caSQu Wenruo */ 1105c1499166SDavid Sterba if (!has_single_bit_set(mode & S_IFMT)) { 1106c7c01a4aSDavid Sterba if (unlikely(!S_ISLNK(mode) && !S_ISBLK(mode) && !S_ISSOCK(mode))) { 1107c3053ebbSQu Wenruo inode_item_err(leaf, slot, 1108496245caSQu Wenruo "invalid mode: has 0%o expect valid S_IF* bit(s)", 1109496245caSQu Wenruo mode & S_IFMT); 1110496245caSQu Wenruo return -EUCLEAN; 1111496245caSQu Wenruo } 1112496245caSQu Wenruo } 1113c7c01a4aSDavid Sterba if (unlikely(S_ISDIR(mode) && btrfs_inode_nlink(leaf, iitem) > 1)) { 1114c3053ebbSQu Wenruo inode_item_err(leaf, slot, 1115496245caSQu Wenruo "invalid nlink: has %u expect no more than 1 for dir", 1116496245caSQu Wenruo btrfs_inode_nlink(leaf, iitem)); 1117496245caSQu Wenruo return -EUCLEAN; 1118496245caSQu Wenruo } 111977eea05eSBoris Burkov btrfs_inode_split_flags(btrfs_inode_flags(leaf, iitem), &flags, &ro_flags); 112077eea05eSBoris Burkov if (unlikely(flags & ~BTRFS_INODE_FLAG_MASK)) { 1121c3053ebbSQu Wenruo inode_item_err(leaf, slot, 112277eea05eSBoris Burkov "unknown incompat flags detected: 0x%x", flags); 112377eea05eSBoris Burkov return -EUCLEAN; 112477eea05eSBoris Burkov } 112577eea05eSBoris Burkov if (unlikely(!sb_rdonly(fs_info->sb) && 112677eea05eSBoris Burkov (ro_flags & ~BTRFS_INODE_RO_FLAG_MASK))) { 112777eea05eSBoris Burkov inode_item_err(leaf, slot, 112877eea05eSBoris Burkov "unknown ro-compat flags detected on writeable mount: 0x%x", 112977eea05eSBoris Burkov ro_flags); 1130496245caSQu Wenruo return -EUCLEAN; 1131496245caSQu Wenruo } 1132496245caSQu Wenruo return 0; 1133496245caSQu Wenruo } 1134496245caSQu Wenruo 1135259ee775SQu Wenruo static int check_root_item(struct extent_buffer *leaf, struct btrfs_key *key, 1136259ee775SQu Wenruo int slot) 1137259ee775SQu Wenruo { 1138259ee775SQu Wenruo struct btrfs_fs_info *fs_info = leaf->fs_info; 11391465af12SQu Wenruo struct btrfs_root_item ri = { 0 }; 1140259ee775SQu Wenruo const u64 valid_root_flags = BTRFS_ROOT_SUBVOL_RDONLY | 1141259ee775SQu Wenruo BTRFS_ROOT_SUBVOL_DEAD; 114257a0e674SQu Wenruo int ret; 1143259ee775SQu Wenruo 114457a0e674SQu Wenruo ret = check_root_key(leaf, key, slot); 1145c7c01a4aSDavid Sterba if (unlikely(ret < 0)) 114657a0e674SQu Wenruo return ret; 1147259ee775SQu Wenruo 11483212fa14SJosef Bacik if (unlikely(btrfs_item_size(leaf, slot) != sizeof(ri) && 11493212fa14SJosef Bacik btrfs_item_size(leaf, slot) != 1150c7c01a4aSDavid Sterba btrfs_legacy_root_item_size())) { 1151259ee775SQu Wenruo generic_err(leaf, slot, 11521465af12SQu Wenruo "invalid root item size, have %u expect %zu or %u", 11533212fa14SJosef Bacik btrfs_item_size(leaf, slot), sizeof(ri), 11541465af12SQu Wenruo btrfs_legacy_root_item_size()); 11551a49a97dSDaniel Xu return -EUCLEAN; 1156259ee775SQu Wenruo } 1157259ee775SQu Wenruo 11581465af12SQu Wenruo /* 11591465af12SQu Wenruo * For legacy root item, the members starting at generation_v2 will be 11601465af12SQu Wenruo * all filled with 0. 11611465af12SQu Wenruo * And since we allow geneartion_v2 as 0, it will still pass the check. 11621465af12SQu Wenruo */ 1163259ee775SQu Wenruo read_extent_buffer(leaf, &ri, btrfs_item_ptr_offset(leaf, slot), 11643212fa14SJosef Bacik btrfs_item_size(leaf, slot)); 1165259ee775SQu Wenruo 1166259ee775SQu Wenruo /* Generation related */ 1167c7c01a4aSDavid Sterba if (unlikely(btrfs_root_generation(&ri) > 1168c7c01a4aSDavid Sterba btrfs_super_generation(fs_info->super_copy) + 1)) { 1169259ee775SQu Wenruo generic_err(leaf, slot, 1170259ee775SQu Wenruo "invalid root generation, have %llu expect (0, %llu]", 1171259ee775SQu Wenruo btrfs_root_generation(&ri), 1172259ee775SQu Wenruo btrfs_super_generation(fs_info->super_copy) + 1); 1173259ee775SQu Wenruo return -EUCLEAN; 1174259ee775SQu Wenruo } 1175c7c01a4aSDavid Sterba if (unlikely(btrfs_root_generation_v2(&ri) > 1176c7c01a4aSDavid Sterba btrfs_super_generation(fs_info->super_copy) + 1)) { 1177259ee775SQu Wenruo generic_err(leaf, slot, 1178259ee775SQu Wenruo "invalid root v2 generation, have %llu expect (0, %llu]", 1179259ee775SQu Wenruo btrfs_root_generation_v2(&ri), 1180259ee775SQu Wenruo btrfs_super_generation(fs_info->super_copy) + 1); 1181259ee775SQu Wenruo return -EUCLEAN; 1182259ee775SQu Wenruo } 1183c7c01a4aSDavid Sterba if (unlikely(btrfs_root_last_snapshot(&ri) > 1184c7c01a4aSDavid Sterba btrfs_super_generation(fs_info->super_copy) + 1)) { 1185259ee775SQu Wenruo generic_err(leaf, slot, 1186259ee775SQu Wenruo "invalid root last_snapshot, have %llu expect (0, %llu]", 1187259ee775SQu Wenruo btrfs_root_last_snapshot(&ri), 1188259ee775SQu Wenruo btrfs_super_generation(fs_info->super_copy) + 1); 1189259ee775SQu Wenruo return -EUCLEAN; 1190259ee775SQu Wenruo } 1191259ee775SQu Wenruo 1192259ee775SQu Wenruo /* Alignment and level check */ 1193c7c01a4aSDavid Sterba if (unlikely(!IS_ALIGNED(btrfs_root_bytenr(&ri), fs_info->sectorsize))) { 1194259ee775SQu Wenruo generic_err(leaf, slot, 1195259ee775SQu Wenruo "invalid root bytenr, have %llu expect to be aligned to %u", 1196259ee775SQu Wenruo btrfs_root_bytenr(&ri), fs_info->sectorsize); 1197259ee775SQu Wenruo return -EUCLEAN; 1198259ee775SQu Wenruo } 1199c7c01a4aSDavid Sterba if (unlikely(btrfs_root_level(&ri) >= BTRFS_MAX_LEVEL)) { 1200259ee775SQu Wenruo generic_err(leaf, slot, 1201259ee775SQu Wenruo "invalid root level, have %u expect [0, %u]", 1202259ee775SQu Wenruo btrfs_root_level(&ri), BTRFS_MAX_LEVEL - 1); 1203259ee775SQu Wenruo return -EUCLEAN; 1204259ee775SQu Wenruo } 1205c7c01a4aSDavid Sterba if (unlikely(btrfs_root_drop_level(&ri) >= BTRFS_MAX_LEVEL)) { 1206259ee775SQu Wenruo generic_err(leaf, slot, 1207259ee775SQu Wenruo "invalid root level, have %u expect [0, %u]", 1208c8422684SDavid Sterba btrfs_root_drop_level(&ri), BTRFS_MAX_LEVEL - 1); 1209259ee775SQu Wenruo return -EUCLEAN; 1210259ee775SQu Wenruo } 1211259ee775SQu Wenruo 1212259ee775SQu Wenruo /* Flags check */ 1213c7c01a4aSDavid Sterba if (unlikely(btrfs_root_flags(&ri) & ~valid_root_flags)) { 1214259ee775SQu Wenruo generic_err(leaf, slot, 1215259ee775SQu Wenruo "invalid root flags, have 0x%llx expect mask 0x%llx", 1216259ee775SQu Wenruo btrfs_root_flags(&ri), valid_root_flags); 1217259ee775SQu Wenruo return -EUCLEAN; 1218259ee775SQu Wenruo } 1219259ee775SQu Wenruo return 0; 1220259ee775SQu Wenruo } 1221259ee775SQu Wenruo 1222f82d1c7cSQu Wenruo __printf(3,4) 1223f82d1c7cSQu Wenruo __cold 1224f82d1c7cSQu Wenruo static void extent_err(const struct extent_buffer *eb, int slot, 1225f82d1c7cSQu Wenruo const char *fmt, ...) 1226f82d1c7cSQu Wenruo { 1227f82d1c7cSQu Wenruo struct btrfs_key key; 1228f82d1c7cSQu Wenruo struct va_format vaf; 1229f82d1c7cSQu Wenruo va_list args; 1230f82d1c7cSQu Wenruo u64 bytenr; 1231f82d1c7cSQu Wenruo u64 len; 1232f82d1c7cSQu Wenruo 1233f82d1c7cSQu Wenruo btrfs_item_key_to_cpu(eb, &key, slot); 1234f82d1c7cSQu Wenruo bytenr = key.objectid; 1235e2406a6fSQu Wenruo if (key.type == BTRFS_METADATA_ITEM_KEY || 1236e2406a6fSQu Wenruo key.type == BTRFS_TREE_BLOCK_REF_KEY || 1237e2406a6fSQu Wenruo key.type == BTRFS_SHARED_BLOCK_REF_KEY) 1238f82d1c7cSQu Wenruo len = eb->fs_info->nodesize; 1239f82d1c7cSQu Wenruo else 1240f82d1c7cSQu Wenruo len = key.offset; 1241f82d1c7cSQu Wenruo va_start(args, fmt); 1242f82d1c7cSQu Wenruo 1243f82d1c7cSQu Wenruo vaf.fmt = fmt; 1244f82d1c7cSQu Wenruo vaf.va = &args; 1245f82d1c7cSQu Wenruo 1246f82d1c7cSQu Wenruo btrfs_crit(eb->fs_info, 1247f82d1c7cSQu Wenruo "corrupt %s: block=%llu slot=%d extent bytenr=%llu len=%llu %pV", 1248f82d1c7cSQu Wenruo btrfs_header_level(eb) == 0 ? "leaf" : "node", 1249f82d1c7cSQu Wenruo eb->start, slot, bytenr, len, &vaf); 1250f82d1c7cSQu Wenruo va_end(args); 1251f82d1c7cSQu Wenruo } 1252f82d1c7cSQu Wenruo 1253f82d1c7cSQu Wenruo static int check_extent_item(struct extent_buffer *leaf, 1254899b7f69SJosef Bacik struct btrfs_key *key, int slot, 1255899b7f69SJosef Bacik struct btrfs_key *prev_key) 1256f82d1c7cSQu Wenruo { 1257f82d1c7cSQu Wenruo struct btrfs_fs_info *fs_info = leaf->fs_info; 1258f82d1c7cSQu Wenruo struct btrfs_extent_item *ei; 1259f82d1c7cSQu Wenruo bool is_tree_block = false; 1260f82d1c7cSQu Wenruo unsigned long ptr; /* Current pointer inside inline refs */ 1261f82d1c7cSQu Wenruo unsigned long end; /* Extent item end */ 12623212fa14SJosef Bacik const u32 item_size = btrfs_item_size(leaf, slot); 1263f82d1c7cSQu Wenruo u64 flags; 1264f82d1c7cSQu Wenruo u64 generation; 1265f82d1c7cSQu Wenruo u64 total_refs; /* Total refs in btrfs_extent_item */ 1266f82d1c7cSQu Wenruo u64 inline_refs = 0; /* found total inline refs */ 1267f82d1c7cSQu Wenruo 1268c7c01a4aSDavid Sterba if (unlikely(key->type == BTRFS_METADATA_ITEM_KEY && 1269c7c01a4aSDavid Sterba !btrfs_fs_incompat(fs_info, SKINNY_METADATA))) { 1270f82d1c7cSQu Wenruo generic_err(leaf, slot, 1271f82d1c7cSQu Wenruo "invalid key type, METADATA_ITEM type invalid when SKINNY_METADATA feature disabled"); 1272f82d1c7cSQu Wenruo return -EUCLEAN; 1273f82d1c7cSQu Wenruo } 1274f82d1c7cSQu Wenruo /* key->objectid is the bytenr for both key types */ 1275c7c01a4aSDavid Sterba if (unlikely(!IS_ALIGNED(key->objectid, fs_info->sectorsize))) { 1276f82d1c7cSQu Wenruo generic_err(leaf, slot, 1277f82d1c7cSQu Wenruo "invalid key objectid, have %llu expect to be aligned to %u", 1278f82d1c7cSQu Wenruo key->objectid, fs_info->sectorsize); 1279f82d1c7cSQu Wenruo return -EUCLEAN; 1280f82d1c7cSQu Wenruo } 1281f82d1c7cSQu Wenruo 1282f82d1c7cSQu Wenruo /* key->offset is tree level for METADATA_ITEM_KEY */ 1283c7c01a4aSDavid Sterba if (unlikely(key->type == BTRFS_METADATA_ITEM_KEY && 1284c7c01a4aSDavid Sterba key->offset >= BTRFS_MAX_LEVEL)) { 1285f82d1c7cSQu Wenruo extent_err(leaf, slot, 1286f82d1c7cSQu Wenruo "invalid tree level, have %llu expect [0, %u]", 1287f82d1c7cSQu Wenruo key->offset, BTRFS_MAX_LEVEL - 1); 1288f82d1c7cSQu Wenruo return -EUCLEAN; 1289f82d1c7cSQu Wenruo } 1290f82d1c7cSQu Wenruo 1291f82d1c7cSQu Wenruo /* 1292f82d1c7cSQu Wenruo * EXTENT/METADATA_ITEM consists of: 1293f82d1c7cSQu Wenruo * 1) One btrfs_extent_item 1294f82d1c7cSQu Wenruo * Records the total refs, type and generation of the extent. 1295f82d1c7cSQu Wenruo * 1296f82d1c7cSQu Wenruo * 2) One btrfs_tree_block_info (for EXTENT_ITEM and tree backref only) 1297f82d1c7cSQu Wenruo * Records the first key and level of the tree block. 1298f82d1c7cSQu Wenruo * 1299f82d1c7cSQu Wenruo * 2) Zero or more btrfs_extent_inline_ref(s) 1300f82d1c7cSQu Wenruo * Each inline ref has one btrfs_extent_inline_ref shows: 1301f82d1c7cSQu Wenruo * 2.1) The ref type, one of the 4 1302f82d1c7cSQu Wenruo * TREE_BLOCK_REF Tree block only 1303f82d1c7cSQu Wenruo * SHARED_BLOCK_REF Tree block only 1304f82d1c7cSQu Wenruo * EXTENT_DATA_REF Data only 1305f82d1c7cSQu Wenruo * SHARED_DATA_REF Data only 1306f82d1c7cSQu Wenruo * 2.2) Ref type specific data 1307f82d1c7cSQu Wenruo * Either using btrfs_extent_inline_ref::offset, or specific 1308f82d1c7cSQu Wenruo * data structure. 1309f82d1c7cSQu Wenruo */ 1310c7c01a4aSDavid Sterba if (unlikely(item_size < sizeof(*ei))) { 1311f82d1c7cSQu Wenruo extent_err(leaf, slot, 1312f82d1c7cSQu Wenruo "invalid item size, have %u expect [%zu, %u)", 1313f82d1c7cSQu Wenruo item_size, sizeof(*ei), 1314f82d1c7cSQu Wenruo BTRFS_LEAF_DATA_SIZE(fs_info)); 1315f82d1c7cSQu Wenruo return -EUCLEAN; 1316f82d1c7cSQu Wenruo } 1317f82d1c7cSQu Wenruo end = item_size + btrfs_item_ptr_offset(leaf, slot); 1318f82d1c7cSQu Wenruo 1319f82d1c7cSQu Wenruo /* Checks against extent_item */ 1320f82d1c7cSQu Wenruo ei = btrfs_item_ptr(leaf, slot, struct btrfs_extent_item); 1321f82d1c7cSQu Wenruo flags = btrfs_extent_flags(leaf, ei); 1322f82d1c7cSQu Wenruo total_refs = btrfs_extent_refs(leaf, ei); 1323f82d1c7cSQu Wenruo generation = btrfs_extent_generation(leaf, ei); 1324c7c01a4aSDavid Sterba if (unlikely(generation > 1325c7c01a4aSDavid Sterba btrfs_super_generation(fs_info->super_copy) + 1)) { 1326f82d1c7cSQu Wenruo extent_err(leaf, slot, 1327f82d1c7cSQu Wenruo "invalid generation, have %llu expect (0, %llu]", 1328f82d1c7cSQu Wenruo generation, 1329f82d1c7cSQu Wenruo btrfs_super_generation(fs_info->super_copy) + 1); 1330f82d1c7cSQu Wenruo return -EUCLEAN; 1331f82d1c7cSQu Wenruo } 1332c7c01a4aSDavid Sterba if (unlikely(!has_single_bit_set(flags & (BTRFS_EXTENT_FLAG_DATA | 1333c7c01a4aSDavid Sterba BTRFS_EXTENT_FLAG_TREE_BLOCK)))) { 1334f82d1c7cSQu Wenruo extent_err(leaf, slot, 1335f82d1c7cSQu Wenruo "invalid extent flag, have 0x%llx expect 1 bit set in 0x%llx", 1336f82d1c7cSQu Wenruo flags, BTRFS_EXTENT_FLAG_DATA | 1337f82d1c7cSQu Wenruo BTRFS_EXTENT_FLAG_TREE_BLOCK); 1338f82d1c7cSQu Wenruo return -EUCLEAN; 1339f82d1c7cSQu Wenruo } 1340f82d1c7cSQu Wenruo is_tree_block = !!(flags & BTRFS_EXTENT_FLAG_TREE_BLOCK); 1341f82d1c7cSQu Wenruo if (is_tree_block) { 1342c7c01a4aSDavid Sterba if (unlikely(key->type == BTRFS_EXTENT_ITEM_KEY && 1343c7c01a4aSDavid Sterba key->offset != fs_info->nodesize)) { 1344f82d1c7cSQu Wenruo extent_err(leaf, slot, 1345f82d1c7cSQu Wenruo "invalid extent length, have %llu expect %u", 1346f82d1c7cSQu Wenruo key->offset, fs_info->nodesize); 1347f82d1c7cSQu Wenruo return -EUCLEAN; 1348f82d1c7cSQu Wenruo } 1349f82d1c7cSQu Wenruo } else { 1350c7c01a4aSDavid Sterba if (unlikely(key->type != BTRFS_EXTENT_ITEM_KEY)) { 1351f82d1c7cSQu Wenruo extent_err(leaf, slot, 1352f82d1c7cSQu Wenruo "invalid key type, have %u expect %u for data backref", 1353f82d1c7cSQu Wenruo key->type, BTRFS_EXTENT_ITEM_KEY); 1354f82d1c7cSQu Wenruo return -EUCLEAN; 1355f82d1c7cSQu Wenruo } 1356c7c01a4aSDavid Sterba if (unlikely(!IS_ALIGNED(key->offset, fs_info->sectorsize))) { 1357f82d1c7cSQu Wenruo extent_err(leaf, slot, 1358f82d1c7cSQu Wenruo "invalid extent length, have %llu expect aligned to %u", 1359f82d1c7cSQu Wenruo key->offset, fs_info->sectorsize); 1360f82d1c7cSQu Wenruo return -EUCLEAN; 1361f82d1c7cSQu Wenruo } 13620ebb6bbbSJosef Bacik if (unlikely(flags & BTRFS_BLOCK_FLAG_FULL_BACKREF)) { 13630ebb6bbbSJosef Bacik extent_err(leaf, slot, 13640ebb6bbbSJosef Bacik "invalid extent flag, data has full backref set"); 13650ebb6bbbSJosef Bacik return -EUCLEAN; 13660ebb6bbbSJosef Bacik } 1367f82d1c7cSQu Wenruo } 1368f82d1c7cSQu Wenruo ptr = (unsigned long)(struct btrfs_extent_item *)(ei + 1); 1369f82d1c7cSQu Wenruo 1370f82d1c7cSQu Wenruo /* Check the special case of btrfs_tree_block_info */ 1371f82d1c7cSQu Wenruo if (is_tree_block && key->type != BTRFS_METADATA_ITEM_KEY) { 1372f82d1c7cSQu Wenruo struct btrfs_tree_block_info *info; 1373f82d1c7cSQu Wenruo 1374f82d1c7cSQu Wenruo info = (struct btrfs_tree_block_info *)ptr; 1375c7c01a4aSDavid Sterba if (unlikely(btrfs_tree_block_level(leaf, info) >= BTRFS_MAX_LEVEL)) { 1376f82d1c7cSQu Wenruo extent_err(leaf, slot, 1377f82d1c7cSQu Wenruo "invalid tree block info level, have %u expect [0, %u]", 1378f82d1c7cSQu Wenruo btrfs_tree_block_level(leaf, info), 1379f82d1c7cSQu Wenruo BTRFS_MAX_LEVEL - 1); 1380f82d1c7cSQu Wenruo return -EUCLEAN; 1381f82d1c7cSQu Wenruo } 1382f82d1c7cSQu Wenruo ptr = (unsigned long)(struct btrfs_tree_block_info *)(info + 1); 1383f82d1c7cSQu Wenruo } 1384f82d1c7cSQu Wenruo 1385f82d1c7cSQu Wenruo /* Check inline refs */ 1386f82d1c7cSQu Wenruo while (ptr < end) { 1387f82d1c7cSQu Wenruo struct btrfs_extent_inline_ref *iref; 1388f82d1c7cSQu Wenruo struct btrfs_extent_data_ref *dref; 1389f82d1c7cSQu Wenruo struct btrfs_shared_data_ref *sref; 1390f82d1c7cSQu Wenruo u64 dref_offset; 1391f82d1c7cSQu Wenruo u64 inline_offset; 1392f82d1c7cSQu Wenruo u8 inline_type; 1393f82d1c7cSQu Wenruo 1394c7c01a4aSDavid Sterba if (unlikely(ptr + sizeof(*iref) > end)) { 1395f82d1c7cSQu Wenruo extent_err(leaf, slot, 1396f82d1c7cSQu Wenruo "inline ref item overflows extent item, ptr %lu iref size %zu end %lu", 1397f82d1c7cSQu Wenruo ptr, sizeof(*iref), end); 1398f82d1c7cSQu Wenruo return -EUCLEAN; 1399f82d1c7cSQu Wenruo } 1400f82d1c7cSQu Wenruo iref = (struct btrfs_extent_inline_ref *)ptr; 1401f82d1c7cSQu Wenruo inline_type = btrfs_extent_inline_ref_type(leaf, iref); 1402f82d1c7cSQu Wenruo inline_offset = btrfs_extent_inline_ref_offset(leaf, iref); 1403c7c01a4aSDavid Sterba if (unlikely(ptr + btrfs_extent_inline_ref_size(inline_type) > end)) { 1404f82d1c7cSQu Wenruo extent_err(leaf, slot, 1405f82d1c7cSQu Wenruo "inline ref item overflows extent item, ptr %lu iref size %u end %lu", 1406f82d1c7cSQu Wenruo ptr, inline_type, end); 1407f82d1c7cSQu Wenruo return -EUCLEAN; 1408f82d1c7cSQu Wenruo } 1409f82d1c7cSQu Wenruo 1410f82d1c7cSQu Wenruo switch (inline_type) { 1411f82d1c7cSQu Wenruo /* inline_offset is subvolid of the owner, no need to check */ 1412f82d1c7cSQu Wenruo case BTRFS_TREE_BLOCK_REF_KEY: 1413f82d1c7cSQu Wenruo inline_refs++; 1414f82d1c7cSQu Wenruo break; 1415f82d1c7cSQu Wenruo /* Contains parent bytenr */ 1416f82d1c7cSQu Wenruo case BTRFS_SHARED_BLOCK_REF_KEY: 1417c7c01a4aSDavid Sterba if (unlikely(!IS_ALIGNED(inline_offset, 1418c7c01a4aSDavid Sterba fs_info->sectorsize))) { 1419f82d1c7cSQu Wenruo extent_err(leaf, slot, 1420f82d1c7cSQu Wenruo "invalid tree parent bytenr, have %llu expect aligned to %u", 1421f82d1c7cSQu Wenruo inline_offset, fs_info->sectorsize); 1422f82d1c7cSQu Wenruo return -EUCLEAN; 1423f82d1c7cSQu Wenruo } 1424f82d1c7cSQu Wenruo inline_refs++; 1425f82d1c7cSQu Wenruo break; 1426f82d1c7cSQu Wenruo /* 1427f82d1c7cSQu Wenruo * Contains owner subvolid, owner key objectid, adjusted offset. 1428f82d1c7cSQu Wenruo * The only obvious corruption can happen in that offset. 1429f82d1c7cSQu Wenruo */ 1430f82d1c7cSQu Wenruo case BTRFS_EXTENT_DATA_REF_KEY: 1431f82d1c7cSQu Wenruo dref = (struct btrfs_extent_data_ref *)(&iref->offset); 1432f82d1c7cSQu Wenruo dref_offset = btrfs_extent_data_ref_offset(leaf, dref); 1433c7c01a4aSDavid Sterba if (unlikely(!IS_ALIGNED(dref_offset, 1434c7c01a4aSDavid Sterba fs_info->sectorsize))) { 1435f82d1c7cSQu Wenruo extent_err(leaf, slot, 1436f82d1c7cSQu Wenruo "invalid data ref offset, have %llu expect aligned to %u", 1437f82d1c7cSQu Wenruo dref_offset, fs_info->sectorsize); 1438f82d1c7cSQu Wenruo return -EUCLEAN; 1439f82d1c7cSQu Wenruo } 1440f82d1c7cSQu Wenruo inline_refs += btrfs_extent_data_ref_count(leaf, dref); 1441f82d1c7cSQu Wenruo break; 1442f82d1c7cSQu Wenruo /* Contains parent bytenr and ref count */ 1443f82d1c7cSQu Wenruo case BTRFS_SHARED_DATA_REF_KEY: 1444f82d1c7cSQu Wenruo sref = (struct btrfs_shared_data_ref *)(iref + 1); 1445c7c01a4aSDavid Sterba if (unlikely(!IS_ALIGNED(inline_offset, 1446c7c01a4aSDavid Sterba fs_info->sectorsize))) { 1447f82d1c7cSQu Wenruo extent_err(leaf, slot, 1448f82d1c7cSQu Wenruo "invalid data parent bytenr, have %llu expect aligned to %u", 1449f82d1c7cSQu Wenruo inline_offset, fs_info->sectorsize); 1450f82d1c7cSQu Wenruo return -EUCLEAN; 1451f82d1c7cSQu Wenruo } 1452f82d1c7cSQu Wenruo inline_refs += btrfs_shared_data_ref_count(leaf, sref); 1453f82d1c7cSQu Wenruo break; 1454f82d1c7cSQu Wenruo default: 1455f82d1c7cSQu Wenruo extent_err(leaf, slot, "unknown inline ref type: %u", 1456f82d1c7cSQu Wenruo inline_type); 1457f82d1c7cSQu Wenruo return -EUCLEAN; 1458f82d1c7cSQu Wenruo } 1459f82d1c7cSQu Wenruo ptr += btrfs_extent_inline_ref_size(inline_type); 1460f82d1c7cSQu Wenruo } 1461f82d1c7cSQu Wenruo /* No padding is allowed */ 1462c7c01a4aSDavid Sterba if (unlikely(ptr != end)) { 1463f82d1c7cSQu Wenruo extent_err(leaf, slot, 1464f82d1c7cSQu Wenruo "invalid extent item size, padding bytes found"); 1465f82d1c7cSQu Wenruo return -EUCLEAN; 1466f82d1c7cSQu Wenruo } 1467f82d1c7cSQu Wenruo 1468f82d1c7cSQu Wenruo /* Finally, check the inline refs against total refs */ 1469c7c01a4aSDavid Sterba if (unlikely(inline_refs > total_refs)) { 1470f82d1c7cSQu Wenruo extent_err(leaf, slot, 1471f82d1c7cSQu Wenruo "invalid extent refs, have %llu expect >= inline %llu", 1472f82d1c7cSQu Wenruo total_refs, inline_refs); 1473f82d1c7cSQu Wenruo return -EUCLEAN; 1474f82d1c7cSQu Wenruo } 1475899b7f69SJosef Bacik 1476899b7f69SJosef Bacik if ((prev_key->type == BTRFS_EXTENT_ITEM_KEY) || 1477899b7f69SJosef Bacik (prev_key->type == BTRFS_METADATA_ITEM_KEY)) { 1478899b7f69SJosef Bacik u64 prev_end = prev_key->objectid; 1479899b7f69SJosef Bacik 1480899b7f69SJosef Bacik if (prev_key->type == BTRFS_METADATA_ITEM_KEY) 1481899b7f69SJosef Bacik prev_end += fs_info->nodesize; 1482899b7f69SJosef Bacik else 1483899b7f69SJosef Bacik prev_end += prev_key->offset; 1484899b7f69SJosef Bacik 1485899b7f69SJosef Bacik if (unlikely(prev_end > key->objectid)) { 1486899b7f69SJosef Bacik extent_err(leaf, slot, 1487899b7f69SJosef Bacik "previous extent [%llu %u %llu] overlaps current extent [%llu %u %llu]", 1488899b7f69SJosef Bacik prev_key->objectid, prev_key->type, 1489899b7f69SJosef Bacik prev_key->offset, key->objectid, key->type, 1490899b7f69SJosef Bacik key->offset); 1491899b7f69SJosef Bacik return -EUCLEAN; 1492899b7f69SJosef Bacik } 1493899b7f69SJosef Bacik } 1494899b7f69SJosef Bacik 1495f82d1c7cSQu Wenruo return 0; 1496f82d1c7cSQu Wenruo } 1497f82d1c7cSQu Wenruo 1498e2406a6fSQu Wenruo static int check_simple_keyed_refs(struct extent_buffer *leaf, 1499e2406a6fSQu Wenruo struct btrfs_key *key, int slot) 1500e2406a6fSQu Wenruo { 1501e2406a6fSQu Wenruo u32 expect_item_size = 0; 1502e2406a6fSQu Wenruo 1503e2406a6fSQu Wenruo if (key->type == BTRFS_SHARED_DATA_REF_KEY) 1504e2406a6fSQu Wenruo expect_item_size = sizeof(struct btrfs_shared_data_ref); 1505e2406a6fSQu Wenruo 15063212fa14SJosef Bacik if (unlikely(btrfs_item_size(leaf, slot) != expect_item_size)) { 1507e2406a6fSQu Wenruo generic_err(leaf, slot, 1508e2406a6fSQu Wenruo "invalid item size, have %u expect %u for key type %u", 15093212fa14SJosef Bacik btrfs_item_size(leaf, slot), 1510e2406a6fSQu Wenruo expect_item_size, key->type); 1511e2406a6fSQu Wenruo return -EUCLEAN; 1512e2406a6fSQu Wenruo } 1513c7c01a4aSDavid Sterba if (unlikely(!IS_ALIGNED(key->objectid, leaf->fs_info->sectorsize))) { 1514e2406a6fSQu Wenruo generic_err(leaf, slot, 1515e2406a6fSQu Wenruo "invalid key objectid for shared block ref, have %llu expect aligned to %u", 1516e2406a6fSQu Wenruo key->objectid, leaf->fs_info->sectorsize); 1517e2406a6fSQu Wenruo return -EUCLEAN; 1518e2406a6fSQu Wenruo } 1519c7c01a4aSDavid Sterba if (unlikely(key->type != BTRFS_TREE_BLOCK_REF_KEY && 1520c7c01a4aSDavid Sterba !IS_ALIGNED(key->offset, leaf->fs_info->sectorsize))) { 1521e2406a6fSQu Wenruo extent_err(leaf, slot, 1522e2406a6fSQu Wenruo "invalid tree parent bytenr, have %llu expect aligned to %u", 1523e2406a6fSQu Wenruo key->offset, leaf->fs_info->sectorsize); 1524e2406a6fSQu Wenruo return -EUCLEAN; 1525e2406a6fSQu Wenruo } 1526e2406a6fSQu Wenruo return 0; 1527e2406a6fSQu Wenruo } 1528e2406a6fSQu Wenruo 15290785a9aaSQu Wenruo static int check_extent_data_ref(struct extent_buffer *leaf, 15300785a9aaSQu Wenruo struct btrfs_key *key, int slot) 15310785a9aaSQu Wenruo { 15320785a9aaSQu Wenruo struct btrfs_extent_data_ref *dref; 15330785a9aaSQu Wenruo unsigned long ptr = btrfs_item_ptr_offset(leaf, slot); 15343212fa14SJosef Bacik const unsigned long end = ptr + btrfs_item_size(leaf, slot); 15350785a9aaSQu Wenruo 15363212fa14SJosef Bacik if (unlikely(btrfs_item_size(leaf, slot) % sizeof(*dref) != 0)) { 15370785a9aaSQu Wenruo generic_err(leaf, slot, 15380785a9aaSQu Wenruo "invalid item size, have %u expect aligned to %zu for key type %u", 15393212fa14SJosef Bacik btrfs_item_size(leaf, slot), 15400785a9aaSQu Wenruo sizeof(*dref), key->type); 15416d06b0adSDavid Sterba return -EUCLEAN; 15420785a9aaSQu Wenruo } 1543c7c01a4aSDavid Sterba if (unlikely(!IS_ALIGNED(key->objectid, leaf->fs_info->sectorsize))) { 15440785a9aaSQu Wenruo generic_err(leaf, slot, 15450785a9aaSQu Wenruo "invalid key objectid for shared block ref, have %llu expect aligned to %u", 15460785a9aaSQu Wenruo key->objectid, leaf->fs_info->sectorsize); 15470785a9aaSQu Wenruo return -EUCLEAN; 15480785a9aaSQu Wenruo } 15490785a9aaSQu Wenruo for (; ptr < end; ptr += sizeof(*dref)) { 15500785a9aaSQu Wenruo u64 offset; 15510785a9aaSQu Wenruo 15521119a72eSJosef Bacik /* 15531119a72eSJosef Bacik * We cannot check the extent_data_ref hash due to possible 15541119a72eSJosef Bacik * overflow from the leaf due to hash collisions. 15551119a72eSJosef Bacik */ 15560785a9aaSQu Wenruo dref = (struct btrfs_extent_data_ref *)ptr; 15570785a9aaSQu Wenruo offset = btrfs_extent_data_ref_offset(leaf, dref); 1558c7c01a4aSDavid Sterba if (unlikely(!IS_ALIGNED(offset, leaf->fs_info->sectorsize))) { 15590785a9aaSQu Wenruo extent_err(leaf, slot, 15600785a9aaSQu Wenruo "invalid extent data backref offset, have %llu expect aligned to %u", 15610785a9aaSQu Wenruo offset, leaf->fs_info->sectorsize); 15626d06b0adSDavid Sterba return -EUCLEAN; 15630785a9aaSQu Wenruo } 15640785a9aaSQu Wenruo } 15650785a9aaSQu Wenruo return 0; 15660785a9aaSQu Wenruo } 15670785a9aaSQu Wenruo 1568c3053ebbSQu Wenruo #define inode_ref_err(eb, slot, fmt, args...) \ 1569c3053ebbSQu Wenruo inode_item_err(eb, slot, fmt, ##args) 157071bf92a9SQu Wenruo static int check_inode_ref(struct extent_buffer *leaf, 157171bf92a9SQu Wenruo struct btrfs_key *key, struct btrfs_key *prev_key, 157271bf92a9SQu Wenruo int slot) 157371bf92a9SQu Wenruo { 157471bf92a9SQu Wenruo struct btrfs_inode_ref *iref; 157571bf92a9SQu Wenruo unsigned long ptr; 157671bf92a9SQu Wenruo unsigned long end; 157771bf92a9SQu Wenruo 1578c7c01a4aSDavid Sterba if (unlikely(!check_prev_ino(leaf, key, slot, prev_key))) 157980d7fd1eSQu Wenruo return -EUCLEAN; 158071bf92a9SQu Wenruo /* namelen can't be 0, so item_size == sizeof() is also invalid */ 15813212fa14SJosef Bacik if (unlikely(btrfs_item_size(leaf, slot) <= sizeof(*iref))) { 1582c3053ebbSQu Wenruo inode_ref_err(leaf, slot, 158371bf92a9SQu Wenruo "invalid item size, have %u expect (%zu, %u)", 15843212fa14SJosef Bacik btrfs_item_size(leaf, slot), 158571bf92a9SQu Wenruo sizeof(*iref), BTRFS_LEAF_DATA_SIZE(leaf->fs_info)); 158671bf92a9SQu Wenruo return -EUCLEAN; 158771bf92a9SQu Wenruo } 158871bf92a9SQu Wenruo 158971bf92a9SQu Wenruo ptr = btrfs_item_ptr_offset(leaf, slot); 15903212fa14SJosef Bacik end = ptr + btrfs_item_size(leaf, slot); 159171bf92a9SQu Wenruo while (ptr < end) { 159271bf92a9SQu Wenruo u16 namelen; 159371bf92a9SQu Wenruo 1594c7c01a4aSDavid Sterba if (unlikely(ptr + sizeof(iref) > end)) { 1595c3053ebbSQu Wenruo inode_ref_err(leaf, slot, 159671bf92a9SQu Wenruo "inode ref overflow, ptr %lu end %lu inode_ref_size %zu", 159771bf92a9SQu Wenruo ptr, end, sizeof(iref)); 159871bf92a9SQu Wenruo return -EUCLEAN; 159971bf92a9SQu Wenruo } 160071bf92a9SQu Wenruo 160171bf92a9SQu Wenruo iref = (struct btrfs_inode_ref *)ptr; 160271bf92a9SQu Wenruo namelen = btrfs_inode_ref_name_len(leaf, iref); 1603c7c01a4aSDavid Sterba if (unlikely(ptr + sizeof(*iref) + namelen > end)) { 1604c3053ebbSQu Wenruo inode_ref_err(leaf, slot, 160571bf92a9SQu Wenruo "inode ref overflow, ptr %lu end %lu namelen %u", 160671bf92a9SQu Wenruo ptr, end, namelen); 160771bf92a9SQu Wenruo return -EUCLEAN; 160871bf92a9SQu Wenruo } 160971bf92a9SQu Wenruo 161071bf92a9SQu Wenruo /* 161171bf92a9SQu Wenruo * NOTE: In theory we should record all found index numbers 161271bf92a9SQu Wenruo * to find any duplicated indexes, but that will be too time 161371bf92a9SQu Wenruo * consuming for inodes with too many hard links. 161471bf92a9SQu Wenruo */ 161571bf92a9SQu Wenruo ptr += sizeof(*iref) + namelen; 161671bf92a9SQu Wenruo } 161771bf92a9SQu Wenruo return 0; 161871bf92a9SQu Wenruo } 161971bf92a9SQu Wenruo 162082fc28fbSQu Wenruo /* 1621557ea5ddSQu Wenruo * Common point to switch the item-specific validation. 1622557ea5ddSQu Wenruo */ 1623c8d54215SJosef Bacik static enum btrfs_tree_block_status check_leaf_item(struct extent_buffer *leaf, 1624c8d54215SJosef Bacik struct btrfs_key *key, 1625c8d54215SJosef Bacik int slot, 16264e9845efSFilipe Manana struct btrfs_key *prev_key) 1627557ea5ddSQu Wenruo { 1628557ea5ddSQu Wenruo int ret = 0; 1629075cb3c7SQu Wenruo struct btrfs_chunk *chunk; 1630557ea5ddSQu Wenruo 1631557ea5ddSQu Wenruo switch (key->type) { 1632557ea5ddSQu Wenruo case BTRFS_EXTENT_DATA_KEY: 16334e9845efSFilipe Manana ret = check_extent_data_item(leaf, key, slot, prev_key); 1634557ea5ddSQu Wenruo break; 1635557ea5ddSQu Wenruo case BTRFS_EXTENT_CSUM_KEY: 1636ad1d8c43SFilipe Manana ret = check_csum_item(leaf, key, slot, prev_key); 1637557ea5ddSQu Wenruo break; 1638ad7b0368SQu Wenruo case BTRFS_DIR_ITEM_KEY: 1639ad7b0368SQu Wenruo case BTRFS_DIR_INDEX_KEY: 1640ad7b0368SQu Wenruo case BTRFS_XATTR_ITEM_KEY: 1641c18679ebSQu Wenruo ret = check_dir_item(leaf, key, prev_key, slot); 1642ad7b0368SQu Wenruo break; 164371bf92a9SQu Wenruo case BTRFS_INODE_REF_KEY: 164471bf92a9SQu Wenruo ret = check_inode_ref(leaf, key, prev_key, slot); 164571bf92a9SQu Wenruo break; 1646fce466eaSQu Wenruo case BTRFS_BLOCK_GROUP_ITEM_KEY: 1647af60ce2bSDavid Sterba ret = check_block_group_item(leaf, key, slot); 1648fce466eaSQu Wenruo break; 1649075cb3c7SQu Wenruo case BTRFS_CHUNK_ITEM_KEY: 1650075cb3c7SQu Wenruo chunk = btrfs_item_ptr(leaf, slot, struct btrfs_chunk); 1651f6d2a5c2SQu Wenruo ret = check_leaf_chunk_item(leaf, chunk, key, slot); 1652075cb3c7SQu Wenruo break; 1653ab4ba2e1SQu Wenruo case BTRFS_DEV_ITEM_KEY: 1654412a2312SDavid Sterba ret = check_dev_item(leaf, key, slot); 1655ab4ba2e1SQu Wenruo break; 1656496245caSQu Wenruo case BTRFS_INODE_ITEM_KEY: 165739e57f49SDavid Sterba ret = check_inode_item(leaf, key, slot); 1658496245caSQu Wenruo break; 1659259ee775SQu Wenruo case BTRFS_ROOT_ITEM_KEY: 1660259ee775SQu Wenruo ret = check_root_item(leaf, key, slot); 1661259ee775SQu Wenruo break; 1662f82d1c7cSQu Wenruo case BTRFS_EXTENT_ITEM_KEY: 1663f82d1c7cSQu Wenruo case BTRFS_METADATA_ITEM_KEY: 1664899b7f69SJosef Bacik ret = check_extent_item(leaf, key, slot, prev_key); 1665f82d1c7cSQu Wenruo break; 1666e2406a6fSQu Wenruo case BTRFS_TREE_BLOCK_REF_KEY: 1667e2406a6fSQu Wenruo case BTRFS_SHARED_DATA_REF_KEY: 1668e2406a6fSQu Wenruo case BTRFS_SHARED_BLOCK_REF_KEY: 1669e2406a6fSQu Wenruo ret = check_simple_keyed_refs(leaf, key, slot); 1670e2406a6fSQu Wenruo break; 16710785a9aaSQu Wenruo case BTRFS_EXTENT_DATA_REF_KEY: 16720785a9aaSQu Wenruo ret = check_extent_data_ref(leaf, key, slot); 16730785a9aaSQu Wenruo break; 1674557ea5ddSQu Wenruo } 1675c8d54215SJosef Bacik 1676c8d54215SJosef Bacik if (ret) 1677c8d54215SJosef Bacik return BTRFS_TREE_BLOCK_INVALID_ITEM; 1678c8d54215SJosef Bacik return BTRFS_TREE_BLOCK_CLEAN; 1679557ea5ddSQu Wenruo } 1680557ea5ddSQu Wenruo 1681924452c8SJosef Bacik enum btrfs_tree_block_status __btrfs_check_leaf(struct extent_buffer *leaf) 1682557ea5ddSQu Wenruo { 1683e2ccd361SDavid Sterba struct btrfs_fs_info *fs_info = leaf->fs_info; 1684557ea5ddSQu Wenruo /* No valid key type is 0, so all key should be larger than this key */ 1685557ea5ddSQu Wenruo struct btrfs_key prev_key = {0, 0, 0}; 1686557ea5ddSQu Wenruo struct btrfs_key key; 1687557ea5ddSQu Wenruo u32 nritems = btrfs_header_nritems(leaf); 1688557ea5ddSQu Wenruo int slot; 1689557ea5ddSQu Wenruo 1690c7c01a4aSDavid Sterba if (unlikely(btrfs_header_level(leaf) != 0)) { 169186a6be3aSDavid Sterba generic_err(leaf, 0, 1692f556faa4SQu Wenruo "invalid level for leaf, have %d expect 0", 1693f556faa4SQu Wenruo btrfs_header_level(leaf)); 1694924452c8SJosef Bacik return BTRFS_TREE_BLOCK_INVALID_LEVEL; 1695f556faa4SQu Wenruo } 1696f556faa4SQu Wenruo 1697557ea5ddSQu Wenruo /* 1698557ea5ddSQu Wenruo * Extent buffers from a relocation tree have a owner field that 1699557ea5ddSQu Wenruo * corresponds to the subvolume tree they are based on. So just from an 1700557ea5ddSQu Wenruo * extent buffer alone we can not find out what is the id of the 1701557ea5ddSQu Wenruo * corresponding subvolume tree, so we can not figure out if the extent 1702557ea5ddSQu Wenruo * buffer corresponds to the root of the relocation tree or not. So 1703557ea5ddSQu Wenruo * skip this check for relocation trees. 1704557ea5ddSQu Wenruo */ 1705557ea5ddSQu Wenruo if (nritems == 0 && !btrfs_header_flag(leaf, BTRFS_HEADER_FLAG_RELOC)) { 1706ba480dd4SQu Wenruo u64 owner = btrfs_header_owner(leaf); 1707557ea5ddSQu Wenruo 1708ba480dd4SQu Wenruo /* These trees must never be empty */ 1709c7c01a4aSDavid Sterba if (unlikely(owner == BTRFS_ROOT_TREE_OBJECTID || 1710ba480dd4SQu Wenruo owner == BTRFS_CHUNK_TREE_OBJECTID || 1711ba480dd4SQu Wenruo owner == BTRFS_DEV_TREE_OBJECTID || 1712ba480dd4SQu Wenruo owner == BTRFS_FS_TREE_OBJECTID || 1713c7c01a4aSDavid Sterba owner == BTRFS_DATA_RELOC_TREE_OBJECTID)) { 171486a6be3aSDavid Sterba generic_err(leaf, 0, 1715ba480dd4SQu Wenruo "invalid root, root %llu must never be empty", 1716ba480dd4SQu Wenruo owner); 1717924452c8SJosef Bacik return BTRFS_TREE_BLOCK_INVALID_NRITEMS; 1718ba480dd4SQu Wenruo } 1719c2fa821cSJosef Bacik 172062fdaa52SQu Wenruo /* Unknown tree */ 1721c7c01a4aSDavid Sterba if (unlikely(owner == 0)) { 172262fdaa52SQu Wenruo generic_err(leaf, 0, 172362fdaa52SQu Wenruo "invalid owner, root 0 is not defined"); 1724924452c8SJosef Bacik return BTRFS_TREE_BLOCK_INVALID_OWNER; 172562fdaa52SQu Wenruo } 1726c2fa821cSJosef Bacik 1727c2fa821cSJosef Bacik /* EXTENT_TREE_V2 can have empty extent trees. */ 1728c2fa821cSJosef Bacik if (btrfs_fs_incompat(fs_info, EXTENT_TREE_V2)) 1729924452c8SJosef Bacik return BTRFS_TREE_BLOCK_CLEAN; 1730c2fa821cSJosef Bacik 1731c2fa821cSJosef Bacik if (unlikely(owner == BTRFS_EXTENT_TREE_OBJECTID)) { 1732c2fa821cSJosef Bacik generic_err(leaf, 0, 1733c2fa821cSJosef Bacik "invalid root, root %llu must never be empty", 1734c2fa821cSJosef Bacik owner); 1735924452c8SJosef Bacik return BTRFS_TREE_BLOCK_INVALID_NRITEMS; 1736c2fa821cSJosef Bacik } 1737c2fa821cSJosef Bacik 1738924452c8SJosef Bacik return BTRFS_TREE_BLOCK_CLEAN; 1739557ea5ddSQu Wenruo } 1740557ea5ddSQu Wenruo 1741c7c01a4aSDavid Sterba if (unlikely(nritems == 0)) 1742924452c8SJosef Bacik return BTRFS_TREE_BLOCK_CLEAN; 1743557ea5ddSQu Wenruo 1744557ea5ddSQu Wenruo /* 1745557ea5ddSQu Wenruo * Check the following things to make sure this is a good leaf, and 1746557ea5ddSQu Wenruo * leaf users won't need to bother with similar sanity checks: 1747557ea5ddSQu Wenruo * 1748557ea5ddSQu Wenruo * 1) key ordering 1749557ea5ddSQu Wenruo * 2) item offset and size 1750557ea5ddSQu Wenruo * No overlap, no hole, all inside the leaf. 1751557ea5ddSQu Wenruo * 3) item content 1752557ea5ddSQu Wenruo * If possible, do comprehensive sanity check. 1753557ea5ddSQu Wenruo * NOTE: All checks must only rely on the item data itself. 1754557ea5ddSQu Wenruo */ 1755557ea5ddSQu Wenruo for (slot = 0; slot < nritems; slot++) { 1756557ea5ddSQu Wenruo u32 item_end_expected; 1757a6ab66ebSSu Yue u64 item_data_end; 1758557ea5ddSQu Wenruo 1759557ea5ddSQu Wenruo btrfs_item_key_to_cpu(leaf, &key, slot); 1760557ea5ddSQu Wenruo 1761557ea5ddSQu Wenruo /* Make sure the keys are in the right order */ 1762c7c01a4aSDavid Sterba if (unlikely(btrfs_comp_cpu_keys(&prev_key, &key) >= 0)) { 176386a6be3aSDavid Sterba generic_err(leaf, slot, 1764478d01b3SQu Wenruo "bad key order, prev (%llu %u %llu) current (%llu %u %llu)", 1765478d01b3SQu Wenruo prev_key.objectid, prev_key.type, 1766478d01b3SQu Wenruo prev_key.offset, key.objectid, key.type, 1767478d01b3SQu Wenruo key.offset); 1768924452c8SJosef Bacik return BTRFS_TREE_BLOCK_BAD_KEY_ORDER; 1769557ea5ddSQu Wenruo } 1770557ea5ddSQu Wenruo 1771a6ab66ebSSu Yue item_data_end = (u64)btrfs_item_offset(leaf, slot) + 1772a6ab66ebSSu Yue btrfs_item_size(leaf, slot); 1773557ea5ddSQu Wenruo /* 1774557ea5ddSQu Wenruo * Make sure the offset and ends are right, remember that the 1775557ea5ddSQu Wenruo * item data starts at the end of the leaf and grows towards the 1776557ea5ddSQu Wenruo * front. 1777557ea5ddSQu Wenruo */ 1778557ea5ddSQu Wenruo if (slot == 0) 1779557ea5ddSQu Wenruo item_end_expected = BTRFS_LEAF_DATA_SIZE(fs_info); 1780557ea5ddSQu Wenruo else 17813212fa14SJosef Bacik item_end_expected = btrfs_item_offset(leaf, 1782557ea5ddSQu Wenruo slot - 1); 1783a6ab66ebSSu Yue if (unlikely(item_data_end != item_end_expected)) { 178486a6be3aSDavid Sterba generic_err(leaf, slot, 1785a6ab66ebSSu Yue "unexpected item end, have %llu expect %u", 1786a6ab66ebSSu Yue item_data_end, item_end_expected); 1787924452c8SJosef Bacik return BTRFS_TREE_BLOCK_INVALID_OFFSETS; 1788557ea5ddSQu Wenruo } 1789557ea5ddSQu Wenruo 1790557ea5ddSQu Wenruo /* 1791557ea5ddSQu Wenruo * Check to make sure that we don't point outside of the leaf, 1792557ea5ddSQu Wenruo * just in case all the items are consistent to each other, but 1793557ea5ddSQu Wenruo * all point outside of the leaf. 1794557ea5ddSQu Wenruo */ 1795a6ab66ebSSu Yue if (unlikely(item_data_end > BTRFS_LEAF_DATA_SIZE(fs_info))) { 179686a6be3aSDavid Sterba generic_err(leaf, slot, 1797a6ab66ebSSu Yue "slot end outside of leaf, have %llu expect range [0, %u]", 1798a6ab66ebSSu Yue item_data_end, BTRFS_LEAF_DATA_SIZE(fs_info)); 1799924452c8SJosef Bacik return BTRFS_TREE_BLOCK_INVALID_OFFSETS; 1800557ea5ddSQu Wenruo } 1801557ea5ddSQu Wenruo 1802557ea5ddSQu Wenruo /* Also check if the item pointer overlaps with btrfs item. */ 1803c7c01a4aSDavid Sterba if (unlikely(btrfs_item_ptr_offset(leaf, slot) < 180442c9419aSJosef Bacik btrfs_item_nr_offset(leaf, slot) + sizeof(struct btrfs_item))) { 180586a6be3aSDavid Sterba generic_err(leaf, slot, 1806478d01b3SQu Wenruo "slot overlaps with its data, item end %lu data start %lu", 180742c9419aSJosef Bacik btrfs_item_nr_offset(leaf, slot) + 1808478d01b3SQu Wenruo sizeof(struct btrfs_item), 1809478d01b3SQu Wenruo btrfs_item_ptr_offset(leaf, slot)); 1810924452c8SJosef Bacik return BTRFS_TREE_BLOCK_INVALID_OFFSETS; 1811557ea5ddSQu Wenruo } 1812557ea5ddSQu Wenruo 181385d8a826SJosef Bacik /* 181485d8a826SJosef Bacik * We only want to do this if WRITTEN is set, otherwise the leaf 181585d8a826SJosef Bacik * may be in some intermediate state and won't appear valid. 181685d8a826SJosef Bacik */ 181785d8a826SJosef Bacik if (btrfs_header_flag(leaf, BTRFS_HEADER_FLAG_WRITTEN)) { 1818c8d54215SJosef Bacik enum btrfs_tree_block_status ret; 1819c8d54215SJosef Bacik 182069fc6cbbSQu Wenruo /* 182169fc6cbbSQu Wenruo * Check if the item size and content meet other 182269fc6cbbSQu Wenruo * criteria 182369fc6cbbSQu Wenruo */ 18244e9845efSFilipe Manana ret = check_leaf_item(leaf, &key, slot, &prev_key); 1825c8d54215SJosef Bacik if (unlikely(ret != BTRFS_TREE_BLOCK_CLEAN)) 1826924452c8SJosef Bacik return ret; 182769fc6cbbSQu Wenruo } 1828557ea5ddSQu Wenruo 1829557ea5ddSQu Wenruo prev_key.objectid = key.objectid; 1830557ea5ddSQu Wenruo prev_key.type = key.type; 1831557ea5ddSQu Wenruo prev_key.offset = key.offset; 1832557ea5ddSQu Wenruo } 1833557ea5ddSQu Wenruo 1834924452c8SJosef Bacik return BTRFS_TREE_BLOCK_CLEAN; 1835924452c8SJosef Bacik } 1836924452c8SJosef Bacik 1837924452c8SJosef Bacik int btrfs_check_leaf(struct extent_buffer *leaf) 1838924452c8SJosef Bacik { 1839924452c8SJosef Bacik enum btrfs_tree_block_status ret; 1840924452c8SJosef Bacik 1841924452c8SJosef Bacik ret = __btrfs_check_leaf(leaf); 1842924452c8SJosef Bacik if (unlikely(ret != BTRFS_TREE_BLOCK_CLEAN)) 1843924452c8SJosef Bacik return -EUCLEAN; 1844557ea5ddSQu Wenruo return 0; 1845557ea5ddSQu Wenruo } 184685d8a826SJosef Bacik ALLOW_ERROR_INJECTION(btrfs_check_leaf, ERRNO); 18472f659546SQu Wenruo 1848c26fa931SJosef Bacik enum btrfs_tree_block_status __btrfs_check_node(struct extent_buffer *node) 1849557ea5ddSQu Wenruo { 1850813fd1dcSDavid Sterba struct btrfs_fs_info *fs_info = node->fs_info; 1851557ea5ddSQu Wenruo unsigned long nr = btrfs_header_nritems(node); 1852557ea5ddSQu Wenruo struct btrfs_key key, next_key; 1853557ea5ddSQu Wenruo int slot; 1854f556faa4SQu Wenruo int level = btrfs_header_level(node); 1855557ea5ddSQu Wenruo u64 bytenr; 1856557ea5ddSQu Wenruo 1857c7c01a4aSDavid Sterba if (unlikely(level <= 0 || level >= BTRFS_MAX_LEVEL)) { 185886a6be3aSDavid Sterba generic_err(node, 0, 1859f556faa4SQu Wenruo "invalid level for node, have %d expect [1, %d]", 1860f556faa4SQu Wenruo level, BTRFS_MAX_LEVEL - 1); 1861c26fa931SJosef Bacik return BTRFS_TREE_BLOCK_INVALID_LEVEL; 1862f556faa4SQu Wenruo } 1863c7c01a4aSDavid Sterba if (unlikely(nr == 0 || nr > BTRFS_NODEPTRS_PER_BLOCK(fs_info))) { 18642f659546SQu Wenruo btrfs_crit(fs_info, 1865bba4f298SQu Wenruo "corrupt node: root=%llu block=%llu, nritems too %s, have %lu expect range [1,%u]", 18662f659546SQu Wenruo btrfs_header_owner(node), node->start, 1867bba4f298SQu Wenruo nr == 0 ? "small" : "large", nr, 18682f659546SQu Wenruo BTRFS_NODEPTRS_PER_BLOCK(fs_info)); 1869c26fa931SJosef Bacik return BTRFS_TREE_BLOCK_INVALID_NRITEMS; 1870557ea5ddSQu Wenruo } 1871557ea5ddSQu Wenruo 1872557ea5ddSQu Wenruo for (slot = 0; slot < nr - 1; slot++) { 1873557ea5ddSQu Wenruo bytenr = btrfs_node_blockptr(node, slot); 1874557ea5ddSQu Wenruo btrfs_node_key_to_cpu(node, &key, slot); 1875557ea5ddSQu Wenruo btrfs_node_key_to_cpu(node, &next_key, slot + 1); 1876557ea5ddSQu Wenruo 1877c7c01a4aSDavid Sterba if (unlikely(!bytenr)) { 187886a6be3aSDavid Sterba generic_err(node, slot, 1879bba4f298SQu Wenruo "invalid NULL node pointer"); 1880c26fa931SJosef Bacik return BTRFS_TREE_BLOCK_INVALID_BLOCKPTR; 1881bba4f298SQu Wenruo } 1882c7c01a4aSDavid Sterba if (unlikely(!IS_ALIGNED(bytenr, fs_info->sectorsize))) { 188386a6be3aSDavid Sterba generic_err(node, slot, 1884bba4f298SQu Wenruo "unaligned pointer, have %llu should be aligned to %u", 18852f659546SQu Wenruo bytenr, fs_info->sectorsize); 1886c26fa931SJosef Bacik return BTRFS_TREE_BLOCK_INVALID_BLOCKPTR; 1887557ea5ddSQu Wenruo } 1888557ea5ddSQu Wenruo 1889c7c01a4aSDavid Sterba if (unlikely(btrfs_comp_cpu_keys(&key, &next_key) >= 0)) { 189086a6be3aSDavid Sterba generic_err(node, slot, 1891bba4f298SQu Wenruo "bad key order, current (%llu %u %llu) next (%llu %u %llu)", 1892bba4f298SQu Wenruo key.objectid, key.type, key.offset, 1893bba4f298SQu Wenruo next_key.objectid, next_key.type, 1894bba4f298SQu Wenruo next_key.offset); 1895c26fa931SJosef Bacik return BTRFS_TREE_BLOCK_BAD_KEY_ORDER; 1896557ea5ddSQu Wenruo } 1897557ea5ddSQu Wenruo } 1898c26fa931SJosef Bacik return BTRFS_TREE_BLOCK_CLEAN; 1899c26fa931SJosef Bacik } 1900c26fa931SJosef Bacik 1901c26fa931SJosef Bacik int btrfs_check_node(struct extent_buffer *node) 1902c26fa931SJosef Bacik { 1903c26fa931SJosef Bacik enum btrfs_tree_block_status ret; 1904c26fa931SJosef Bacik 1905c26fa931SJosef Bacik ret = __btrfs_check_node(node); 1906c26fa931SJosef Bacik if (unlikely(ret != BTRFS_TREE_BLOCK_CLEAN)) 1907c26fa931SJosef Bacik return -EUCLEAN; 1908c26fa931SJosef Bacik return 0; 1909557ea5ddSQu Wenruo } 191002529d7aSQu Wenruo ALLOW_ERROR_INJECTION(btrfs_check_node, ERRNO); 191188c602abSQu Wenruo 191288c602abSQu Wenruo int btrfs_check_eb_owner(const struct extent_buffer *eb, u64 root_owner) 191388c602abSQu Wenruo { 191488c602abSQu Wenruo const bool is_subvol = is_fstree(root_owner); 191588c602abSQu Wenruo const u64 eb_owner = btrfs_header_owner(eb); 191688c602abSQu Wenruo 191788c602abSQu Wenruo /* 191888c602abSQu Wenruo * Skip dummy fs, as selftests don't create unique ebs for each dummy 191988c602abSQu Wenruo * root. 192088c602abSQu Wenruo */ 192188c602abSQu Wenruo if (test_bit(BTRFS_FS_STATE_DUMMY_FS_INFO, &eb->fs_info->fs_state)) 192288c602abSQu Wenruo return 0; 192388c602abSQu Wenruo /* 192488c602abSQu Wenruo * There are several call sites (backref walking, qgroup, and data 192588c602abSQu Wenruo * reloc) passing 0 as @root_owner, as they are not holding the 192688c602abSQu Wenruo * tree root. In that case, we can not do a reliable ownership check, 192788c602abSQu Wenruo * so just exit. 192888c602abSQu Wenruo */ 192988c602abSQu Wenruo if (root_owner == 0) 193088c602abSQu Wenruo return 0; 193188c602abSQu Wenruo /* 193288c602abSQu Wenruo * These trees use key.offset as their owner, our callers don't have 193388c602abSQu Wenruo * the extra capacity to pass key.offset here. So we just skip them. 193488c602abSQu Wenruo */ 193588c602abSQu Wenruo if (root_owner == BTRFS_TREE_LOG_OBJECTID || 193688c602abSQu Wenruo root_owner == BTRFS_TREE_RELOC_OBJECTID) 193788c602abSQu Wenruo return 0; 193888c602abSQu Wenruo 193988c602abSQu Wenruo if (!is_subvol) { 194088c602abSQu Wenruo /* For non-subvolume trees, the eb owner should match root owner */ 194188c602abSQu Wenruo if (unlikely(root_owner != eb_owner)) { 194288c602abSQu Wenruo btrfs_crit(eb->fs_info, 194388c602abSQu Wenruo "corrupted %s, root=%llu block=%llu owner mismatch, have %llu expect %llu", 194488c602abSQu Wenruo btrfs_header_level(eb) == 0 ? "leaf" : "node", 194588c602abSQu Wenruo root_owner, btrfs_header_bytenr(eb), eb_owner, 194688c602abSQu Wenruo root_owner); 194788c602abSQu Wenruo return -EUCLEAN; 194888c602abSQu Wenruo } 194988c602abSQu Wenruo return 0; 195088c602abSQu Wenruo } 195188c602abSQu Wenruo 195288c602abSQu Wenruo /* 195388c602abSQu Wenruo * For subvolume trees, owners can mismatch, but they should all belong 195488c602abSQu Wenruo * to subvolume trees. 195588c602abSQu Wenruo */ 195688c602abSQu Wenruo if (unlikely(is_subvol != is_fstree(eb_owner))) { 195788c602abSQu Wenruo btrfs_crit(eb->fs_info, 195888c602abSQu Wenruo "corrupted %s, root=%llu block=%llu owner mismatch, have %llu expect [%llu, %llu]", 195988c602abSQu Wenruo btrfs_header_level(eb) == 0 ? "leaf" : "node", 196088c602abSQu Wenruo root_owner, btrfs_header_bytenr(eb), eb_owner, 196188c602abSQu Wenruo BTRFS_FIRST_FREE_OBJECTID, BTRFS_LAST_FREE_OBJECTID); 196288c602abSQu Wenruo return -EUCLEAN; 196388c602abSQu Wenruo } 196488c602abSQu Wenruo return 0; 196588c602abSQu Wenruo } 19662cac5af1SJosef Bacik 19672cac5af1SJosef Bacik int btrfs_verify_level_key(struct extent_buffer *eb, int level, 19682cac5af1SJosef Bacik struct btrfs_key *first_key, u64 parent_transid) 19692cac5af1SJosef Bacik { 19702cac5af1SJosef Bacik struct btrfs_fs_info *fs_info = eb->fs_info; 19712cac5af1SJosef Bacik int found_level; 19722cac5af1SJosef Bacik struct btrfs_key found_key; 19732cac5af1SJosef Bacik int ret; 19742cac5af1SJosef Bacik 19752cac5af1SJosef Bacik found_level = btrfs_header_level(eb); 19762cac5af1SJosef Bacik if (found_level != level) { 19772cac5af1SJosef Bacik WARN(IS_ENABLED(CONFIG_BTRFS_DEBUG), 19782cac5af1SJosef Bacik KERN_ERR "BTRFS: tree level check failed\n"); 19792cac5af1SJosef Bacik btrfs_err(fs_info, 19802cac5af1SJosef Bacik "tree level mismatch detected, bytenr=%llu level expected=%u has=%u", 19812cac5af1SJosef Bacik eb->start, level, found_level); 19822cac5af1SJosef Bacik return -EIO; 19832cac5af1SJosef Bacik } 19842cac5af1SJosef Bacik 19852cac5af1SJosef Bacik if (!first_key) 19862cac5af1SJosef Bacik return 0; 19872cac5af1SJosef Bacik 19882cac5af1SJosef Bacik /* 19892cac5af1SJosef Bacik * For live tree block (new tree blocks in current transaction), 19902cac5af1SJosef Bacik * we need proper lock context to avoid race, which is impossible here. 19912cac5af1SJosef Bacik * So we only checks tree blocks which is read from disk, whose 19922cac5af1SJosef Bacik * generation <= fs_info->last_trans_committed. 19932cac5af1SJosef Bacik */ 19942cac5af1SJosef Bacik if (btrfs_header_generation(eb) > fs_info->last_trans_committed) 19952cac5af1SJosef Bacik return 0; 19962cac5af1SJosef Bacik 19972cac5af1SJosef Bacik /* We have @first_key, so this @eb must have at least one item */ 19982cac5af1SJosef Bacik if (btrfs_header_nritems(eb) == 0) { 19992cac5af1SJosef Bacik btrfs_err(fs_info, 20002cac5af1SJosef Bacik "invalid tree nritems, bytenr=%llu nritems=0 expect >0", 20012cac5af1SJosef Bacik eb->start); 20022cac5af1SJosef Bacik WARN_ON(IS_ENABLED(CONFIG_BTRFS_DEBUG)); 20032cac5af1SJosef Bacik return -EUCLEAN; 20042cac5af1SJosef Bacik } 20052cac5af1SJosef Bacik 20062cac5af1SJosef Bacik if (found_level) 20072cac5af1SJosef Bacik btrfs_node_key_to_cpu(eb, &found_key, 0); 20082cac5af1SJosef Bacik else 20092cac5af1SJosef Bacik btrfs_item_key_to_cpu(eb, &found_key, 0); 20102cac5af1SJosef Bacik ret = btrfs_comp_cpu_keys(first_key, &found_key); 20112cac5af1SJosef Bacik 20122cac5af1SJosef Bacik if (ret) { 20132cac5af1SJosef Bacik WARN(IS_ENABLED(CONFIG_BTRFS_DEBUG), 20142cac5af1SJosef Bacik KERN_ERR "BTRFS: tree first key check failed\n"); 20152cac5af1SJosef Bacik btrfs_err(fs_info, 20162cac5af1SJosef Bacik "tree first key mismatch detected, bytenr=%llu parent_transid=%llu key expected=(%llu,%u,%llu) has=(%llu,%u,%llu)", 20172cac5af1SJosef Bacik eb->start, parent_transid, first_key->objectid, 20182cac5af1SJosef Bacik first_key->type, first_key->offset, 20192cac5af1SJosef Bacik found_key.objectid, found_key.type, 20202cac5af1SJosef Bacik found_key.offset); 20212cac5af1SJosef Bacik } 20222cac5af1SJosef Bacik return ret; 20232cac5af1SJosef Bacik } 2024