blob: 80d87814f2618b16d1e97d575bb7b5fd6c283b1f [file] [log] [blame]
David Sterbac1d7c512018-04-03 19:23:33 +02001// SPDX-License-Identifier: GPL-2.0
Qu Wenruo557ea5d2017-10-09 01:51:02 +00002/*
3 * Copyright (C) Qu Wenruo 2017. All rights reserved.
Qu Wenruo557ea5d2017-10-09 01:51:02 +00004 */
5
6/*
7 * The module is used to catch unexpected/corrupted tree block data.
8 * Such behavior can be caused either by a fuzzed image or bugs.
9 *
10 * The objective is to do leaf/node validation checks when tree block is read
11 * from disk, and check *every* possible member, so other code won't
12 * need to checking them again.
13 *
14 * Due to the potential and unwanted damage, every checker needs to be
15 * carefully reviewed otherwise so it does not prevent mount of valid images.
16 */
17
18#include "ctree.h"
19#include "tree-checker.h"
20#include "disk-io.h"
21#include "compression.h"
Qu Wenruofce466e2018-07-03 17:10:05 +080022#include "volumes.h"
Qu Wenruo557ea5d2017-10-09 01:51:02 +000023
Qu Wenruobba4f292017-10-09 01:51:03 +000024/*
25 * Error message should follow the following format:
26 * corrupt <type>: <identifier>, <reason>[, <bad_value>]
27 *
28 * @type: leaf or node
29 * @identifier: the necessary info to locate the leaf/node.
Andrea Gelmini52042d82018-11-28 12:05:13 +010030 * It's recommended to decode key.objecitd/offset if it's
Qu Wenruobba4f292017-10-09 01:51:03 +000031 * meaningful.
32 * @reason: describe the error
Andrea Gelmini52042d82018-11-28 12:05:13 +010033 * @bad_value: optional, it's recommended to output bad value and its
Qu Wenruobba4f292017-10-09 01:51:03 +000034 * expected value (range).
35 *
36 * Since comma is used to separate the components, only space is allowed
37 * inside each component.
38 */
39
40/*
41 * Append generic "corrupt leaf/node root=%llu block=%llu slot=%d: " to @fmt.
42 * Allows callers to customize the output.
43 */
44__printf(4, 5)
David Sterbae67c7182018-02-19 17:24:18 +010045__cold
Qu Wenruo2f659542018-01-25 14:56:18 +080046static void generic_err(const struct btrfs_fs_info *fs_info,
Qu Wenruobba4f292017-10-09 01:51:03 +000047 const struct extent_buffer *eb, int slot,
48 const char *fmt, ...)
49{
50 struct va_format vaf;
51 va_list args;
52
53 va_start(args, fmt);
54
55 vaf.fmt = fmt;
56 vaf.va = &args;
57
Qu Wenruo2f659542018-01-25 14:56:18 +080058 btrfs_crit(fs_info,
Qu Wenruobba4f292017-10-09 01:51:03 +000059 "corrupt %s: root=%llu block=%llu slot=%d, %pV",
60 btrfs_header_level(eb) == 0 ? "leaf" : "node",
Qu Wenruo2f659542018-01-25 14:56:18 +080061 btrfs_header_owner(eb), btrfs_header_bytenr(eb), slot, &vaf);
Qu Wenruobba4f292017-10-09 01:51:03 +000062 va_end(args);
63}
64
Qu Wenruo8806d712017-10-09 01:51:06 +000065/*
66 * Customized reporter for extent data item, since its key objectid and
67 * offset has its own meaning.
68 */
69__printf(4, 5)
David Sterbae67c7182018-02-19 17:24:18 +010070__cold
Qu Wenruo2f659542018-01-25 14:56:18 +080071static void file_extent_err(const struct btrfs_fs_info *fs_info,
Qu Wenruo8806d712017-10-09 01:51:06 +000072 const struct extent_buffer *eb, int slot,
73 const char *fmt, ...)
74{
75 struct btrfs_key key;
76 struct va_format vaf;
77 va_list args;
78
79 btrfs_item_key_to_cpu(eb, &key, slot);
80 va_start(args, fmt);
81
82 vaf.fmt = fmt;
83 vaf.va = &args;
84
Qu Wenruo2f659542018-01-25 14:56:18 +080085 btrfs_crit(fs_info,
Qu Wenruo8806d712017-10-09 01:51:06 +000086 "corrupt %s: root=%llu block=%llu slot=%d ino=%llu file_offset=%llu, %pV",
Qu Wenruo2f659542018-01-25 14:56:18 +080087 btrfs_header_level(eb) == 0 ? "leaf" : "node",
88 btrfs_header_owner(eb), btrfs_header_bytenr(eb), slot,
89 key.objectid, key.offset, &vaf);
Qu Wenruo8806d712017-10-09 01:51:06 +000090 va_end(args);
91}
92
93/*
94 * Return 0 if the btrfs_file_extent_##name is aligned to @alignment
95 * Else return 1
96 */
Qu Wenruo2f659542018-01-25 14:56:18 +080097#define CHECK_FE_ALIGNED(fs_info, leaf, slot, fi, name, alignment) \
Qu Wenruo8806d712017-10-09 01:51:06 +000098({ \
99 if (!IS_ALIGNED(btrfs_file_extent_##name((leaf), (fi)), (alignment))) \
Qu Wenruo2f659542018-01-25 14:56:18 +0800100 file_extent_err((fs_info), (leaf), (slot), \
Qu Wenruo8806d712017-10-09 01:51:06 +0000101 "invalid %s for file extent, have %llu, should be aligned to %u", \
102 (#name), btrfs_file_extent_##name((leaf), (fi)), \
103 (alignment)); \
104 (!IS_ALIGNED(btrfs_file_extent_##name((leaf), (fi)), (alignment))); \
105})
106
Qu Wenruo2f659542018-01-25 14:56:18 +0800107static int check_extent_data_item(struct btrfs_fs_info *fs_info,
Qu Wenruo557ea5d2017-10-09 01:51:02 +0000108 struct extent_buffer *leaf,
109 struct btrfs_key *key, int slot)
110{
111 struct btrfs_file_extent_item *fi;
Qu Wenruo2f659542018-01-25 14:56:18 +0800112 u32 sectorsize = fs_info->sectorsize;
Qu Wenruo557ea5d2017-10-09 01:51:02 +0000113 u32 item_size = btrfs_item_size_nr(leaf, slot);
114
115 if (!IS_ALIGNED(key->offset, sectorsize)) {
Qu Wenruo2f659542018-01-25 14:56:18 +0800116 file_extent_err(fs_info, leaf, slot,
Qu Wenruo8806d712017-10-09 01:51:06 +0000117"unaligned file_offset for file extent, have %llu should be aligned to %u",
118 key->offset, sectorsize);
Qu Wenruo557ea5d2017-10-09 01:51:02 +0000119 return -EUCLEAN;
120 }
121
122 fi = btrfs_item_ptr(leaf, slot, struct btrfs_file_extent_item);
123
124 if (btrfs_file_extent_type(leaf, fi) > BTRFS_FILE_EXTENT_TYPES) {
Qu Wenruo2f659542018-01-25 14:56:18 +0800125 file_extent_err(fs_info, leaf, slot,
Qu Wenruo8806d712017-10-09 01:51:06 +0000126 "invalid type for file extent, have %u expect range [0, %u]",
127 btrfs_file_extent_type(leaf, fi),
128 BTRFS_FILE_EXTENT_TYPES);
Qu Wenruo557ea5d2017-10-09 01:51:02 +0000129 return -EUCLEAN;
130 }
131
132 /*
Andrea Gelmini52042d82018-11-28 12:05:13 +0100133 * Support for new compression/encryption must introduce incompat flag,
Qu Wenruo557ea5d2017-10-09 01:51:02 +0000134 * and must be caught in open_ctree().
135 */
136 if (btrfs_file_extent_compression(leaf, fi) > BTRFS_COMPRESS_TYPES) {
Qu Wenruo2f659542018-01-25 14:56:18 +0800137 file_extent_err(fs_info, leaf, slot,
Qu Wenruo8806d712017-10-09 01:51:06 +0000138 "invalid compression for file extent, have %u expect range [0, %u]",
139 btrfs_file_extent_compression(leaf, fi),
140 BTRFS_COMPRESS_TYPES);
Qu Wenruo557ea5d2017-10-09 01:51:02 +0000141 return -EUCLEAN;
142 }
143 if (btrfs_file_extent_encryption(leaf, fi)) {
Qu Wenruo2f659542018-01-25 14:56:18 +0800144 file_extent_err(fs_info, leaf, slot,
Qu Wenruo8806d712017-10-09 01:51:06 +0000145 "invalid encryption for file extent, have %u expect 0",
146 btrfs_file_extent_encryption(leaf, fi));
Qu Wenruo557ea5d2017-10-09 01:51:02 +0000147 return -EUCLEAN;
148 }
149 if (btrfs_file_extent_type(leaf, fi) == BTRFS_FILE_EXTENT_INLINE) {
150 /* Inline extent must have 0 as key offset */
151 if (key->offset) {
Qu Wenruo2f659542018-01-25 14:56:18 +0800152 file_extent_err(fs_info, leaf, slot,
Qu Wenruo8806d712017-10-09 01:51:06 +0000153 "invalid file_offset for inline file extent, have %llu expect 0",
154 key->offset);
Qu Wenruo557ea5d2017-10-09 01:51:02 +0000155 return -EUCLEAN;
156 }
157
158 /* Compressed inline extent has no on-disk size, skip it */
159 if (btrfs_file_extent_compression(leaf, fi) !=
160 BTRFS_COMPRESS_NONE)
161 return 0;
162
163 /* Uncompressed inline extent size must match item size */
164 if (item_size != BTRFS_FILE_EXTENT_INLINE_DATA_START +
165 btrfs_file_extent_ram_bytes(leaf, fi)) {
Qu Wenruo2f659542018-01-25 14:56:18 +0800166 file_extent_err(fs_info, leaf, slot,
Qu Wenruo8806d712017-10-09 01:51:06 +0000167 "invalid ram_bytes for uncompressed inline extent, have %u expect %llu",
168 item_size, BTRFS_FILE_EXTENT_INLINE_DATA_START +
169 btrfs_file_extent_ram_bytes(leaf, fi));
Qu Wenruo557ea5d2017-10-09 01:51:02 +0000170 return -EUCLEAN;
171 }
172 return 0;
173 }
174
175 /* Regular or preallocated extent has fixed item size */
176 if (item_size != sizeof(*fi)) {
Qu Wenruo2f659542018-01-25 14:56:18 +0800177 file_extent_err(fs_info, leaf, slot,
Arnd Bergmann709a95c2017-10-13 11:27:35 +0200178 "invalid item size for reg/prealloc file extent, have %u expect %zu",
Qu Wenruo8806d712017-10-09 01:51:06 +0000179 item_size, sizeof(*fi));
Qu Wenruo557ea5d2017-10-09 01:51:02 +0000180 return -EUCLEAN;
181 }
Qu Wenruo2f659542018-01-25 14:56:18 +0800182 if (CHECK_FE_ALIGNED(fs_info, leaf, slot, fi, ram_bytes, sectorsize) ||
183 CHECK_FE_ALIGNED(fs_info, leaf, slot, fi, disk_bytenr, sectorsize) ||
184 CHECK_FE_ALIGNED(fs_info, leaf, slot, fi, disk_num_bytes, sectorsize) ||
185 CHECK_FE_ALIGNED(fs_info, leaf, slot, fi, offset, sectorsize) ||
186 CHECK_FE_ALIGNED(fs_info, leaf, slot, fi, num_bytes, sectorsize))
Qu Wenruo557ea5d2017-10-09 01:51:02 +0000187 return -EUCLEAN;
Qu Wenruo557ea5d2017-10-09 01:51:02 +0000188 return 0;
189}
190
Qu Wenruo2f659542018-01-25 14:56:18 +0800191static int check_csum_item(struct btrfs_fs_info *fs_info,
192 struct extent_buffer *leaf, struct btrfs_key *key,
193 int slot)
Qu Wenruo557ea5d2017-10-09 01:51:02 +0000194{
Qu Wenruo2f659542018-01-25 14:56:18 +0800195 u32 sectorsize = fs_info->sectorsize;
196 u32 csumsize = btrfs_super_csum_size(fs_info->super_copy);
Qu Wenruo557ea5d2017-10-09 01:51:02 +0000197
198 if (key->objectid != BTRFS_EXTENT_CSUM_OBJECTID) {
Qu Wenruo2f659542018-01-25 14:56:18 +0800199 generic_err(fs_info, leaf, slot,
Qu Wenruod508c5f2017-10-09 01:51:05 +0000200 "invalid key objectid for csum item, have %llu expect %llu",
201 key->objectid, BTRFS_EXTENT_CSUM_OBJECTID);
Qu Wenruo557ea5d2017-10-09 01:51:02 +0000202 return -EUCLEAN;
203 }
204 if (!IS_ALIGNED(key->offset, sectorsize)) {
Qu Wenruo2f659542018-01-25 14:56:18 +0800205 generic_err(fs_info, leaf, slot,
Qu Wenruod508c5f2017-10-09 01:51:05 +0000206 "unaligned key offset for csum item, have %llu should be aligned to %u",
207 key->offset, sectorsize);
Qu Wenruo557ea5d2017-10-09 01:51:02 +0000208 return -EUCLEAN;
209 }
210 if (!IS_ALIGNED(btrfs_item_size_nr(leaf, slot), csumsize)) {
Qu Wenruo2f659542018-01-25 14:56:18 +0800211 generic_err(fs_info, leaf, slot,
Qu Wenruod508c5f2017-10-09 01:51:05 +0000212 "unaligned item size for csum item, have %u should be aligned to %u",
213 btrfs_item_size_nr(leaf, slot), csumsize);
Qu Wenruo557ea5d2017-10-09 01:51:02 +0000214 return -EUCLEAN;
215 }
216 return 0;
217}
218
219/*
Qu Wenruoad7b03682017-11-08 08:54:25 +0800220 * Customized reported for dir_item, only important new info is key->objectid,
221 * which represents inode number
222 */
223__printf(4, 5)
David Sterbae67c7182018-02-19 17:24:18 +0100224__cold
Qu Wenruo2f659542018-01-25 14:56:18 +0800225static void dir_item_err(const struct btrfs_fs_info *fs_info,
Qu Wenruoad7b03682017-11-08 08:54:25 +0800226 const struct extent_buffer *eb, int slot,
227 const char *fmt, ...)
228{
229 struct btrfs_key key;
230 struct va_format vaf;
231 va_list args;
232
233 btrfs_item_key_to_cpu(eb, &key, slot);
234 va_start(args, fmt);
235
236 vaf.fmt = fmt;
237 vaf.va = &args;
238
Qu Wenruo2f659542018-01-25 14:56:18 +0800239 btrfs_crit(fs_info,
Qu Wenruoad7b03682017-11-08 08:54:25 +0800240 "corrupt %s: root=%llu block=%llu slot=%d ino=%llu, %pV",
Qu Wenruo2f659542018-01-25 14:56:18 +0800241 btrfs_header_level(eb) == 0 ? "leaf" : "node",
242 btrfs_header_owner(eb), btrfs_header_bytenr(eb), slot,
243 key.objectid, &vaf);
Qu Wenruoad7b03682017-11-08 08:54:25 +0800244 va_end(args);
245}
246
Qu Wenruo2f659542018-01-25 14:56:18 +0800247static int check_dir_item(struct btrfs_fs_info *fs_info,
Qu Wenruoad7b03682017-11-08 08:54:25 +0800248 struct extent_buffer *leaf,
249 struct btrfs_key *key, int slot)
250{
251 struct btrfs_dir_item *di;
252 u32 item_size = btrfs_item_size_nr(leaf, slot);
253 u32 cur = 0;
254
255 di = btrfs_item_ptr(leaf, slot, struct btrfs_dir_item);
256 while (cur < item_size) {
Qu Wenruoad7b03682017-11-08 08:54:25 +0800257 u32 name_len;
258 u32 data_len;
259 u32 max_name_len;
260 u32 total_size;
261 u32 name_hash;
262 u8 dir_type;
263
264 /* header itself should not cross item boundary */
265 if (cur + sizeof(*di) > item_size) {
Qu Wenruo2f659542018-01-25 14:56:18 +0800266 dir_item_err(fs_info, leaf, slot,
Arnd Bergmann7cfad652017-12-06 15:18:14 +0100267 "dir item header crosses item boundary, have %zu boundary %u",
Qu Wenruoad7b03682017-11-08 08:54:25 +0800268 cur + sizeof(*di), item_size);
269 return -EUCLEAN;
270 }
271
272 /* dir type check */
273 dir_type = btrfs_dir_type(leaf, di);
274 if (dir_type >= BTRFS_FT_MAX) {
Qu Wenruo2f659542018-01-25 14:56:18 +0800275 dir_item_err(fs_info, leaf, slot,
Qu Wenruoad7b03682017-11-08 08:54:25 +0800276 "invalid dir item type, have %u expect [0, %u)",
277 dir_type, BTRFS_FT_MAX);
278 return -EUCLEAN;
279 }
280
281 if (key->type == BTRFS_XATTR_ITEM_KEY &&
282 dir_type != BTRFS_FT_XATTR) {
Qu Wenruo2f659542018-01-25 14:56:18 +0800283 dir_item_err(fs_info, leaf, slot,
Qu Wenruoad7b03682017-11-08 08:54:25 +0800284 "invalid dir item type for XATTR key, have %u expect %u",
285 dir_type, BTRFS_FT_XATTR);
286 return -EUCLEAN;
287 }
288 if (dir_type == BTRFS_FT_XATTR &&
289 key->type != BTRFS_XATTR_ITEM_KEY) {
Qu Wenruo2f659542018-01-25 14:56:18 +0800290 dir_item_err(fs_info, leaf, slot,
Qu Wenruoad7b03682017-11-08 08:54:25 +0800291 "xattr dir type found for non-XATTR key");
292 return -EUCLEAN;
293 }
294 if (dir_type == BTRFS_FT_XATTR)
295 max_name_len = XATTR_NAME_MAX;
296 else
297 max_name_len = BTRFS_NAME_LEN;
298
299 /* Name/data length check */
300 name_len = btrfs_dir_name_len(leaf, di);
301 data_len = btrfs_dir_data_len(leaf, di);
302 if (name_len > max_name_len) {
Qu Wenruo2f659542018-01-25 14:56:18 +0800303 dir_item_err(fs_info, leaf, slot,
Qu Wenruoad7b03682017-11-08 08:54:25 +0800304 "dir item name len too long, have %u max %u",
305 name_len, max_name_len);
306 return -EUCLEAN;
307 }
Qu Wenruo2f659542018-01-25 14:56:18 +0800308 if (name_len + data_len > BTRFS_MAX_XATTR_SIZE(fs_info)) {
309 dir_item_err(fs_info, leaf, slot,
Qu Wenruoad7b03682017-11-08 08:54:25 +0800310 "dir item name and data len too long, have %u max %u",
311 name_len + data_len,
Qu Wenruo2f659542018-01-25 14:56:18 +0800312 BTRFS_MAX_XATTR_SIZE(fs_info));
Qu Wenruoad7b03682017-11-08 08:54:25 +0800313 return -EUCLEAN;
314 }
315
316 if (data_len && dir_type != BTRFS_FT_XATTR) {
Qu Wenruo2f659542018-01-25 14:56:18 +0800317 dir_item_err(fs_info, leaf, slot,
Qu Wenruoad7b03682017-11-08 08:54:25 +0800318 "dir item with invalid data len, have %u expect 0",
319 data_len);
320 return -EUCLEAN;
321 }
322
323 total_size = sizeof(*di) + name_len + data_len;
324
325 /* header and name/data should not cross item boundary */
326 if (cur + total_size > item_size) {
Qu Wenruo2f659542018-01-25 14:56:18 +0800327 dir_item_err(fs_info, leaf, slot,
Qu Wenruoad7b03682017-11-08 08:54:25 +0800328 "dir item data crosses item boundary, have %u boundary %u",
329 cur + total_size, item_size);
330 return -EUCLEAN;
331 }
332
333 /*
334 * Special check for XATTR/DIR_ITEM, as key->offset is name
335 * hash, should match its name
336 */
337 if (key->type == BTRFS_DIR_ITEM_KEY ||
338 key->type == BTRFS_XATTR_ITEM_KEY) {
David Sterbae2683fc2018-01-10 15:13:07 +0100339 char namebuf[max(BTRFS_NAME_LEN, XATTR_NAME_MAX)];
340
Qu Wenruoad7b03682017-11-08 08:54:25 +0800341 read_extent_buffer(leaf, namebuf,
342 (unsigned long)(di + 1), name_len);
343 name_hash = btrfs_name_hash(namebuf, name_len);
344 if (key->offset != name_hash) {
Qu Wenruo2f659542018-01-25 14:56:18 +0800345 dir_item_err(fs_info, leaf, slot,
Qu Wenruoad7b03682017-11-08 08:54:25 +0800346 "name hash mismatch with key, have 0x%016x expect 0x%016llx",
347 name_hash, key->offset);
348 return -EUCLEAN;
349 }
350 }
351 cur += total_size;
352 di = (struct btrfs_dir_item *)((void *)di + total_size);
353 }
354 return 0;
355}
356
Qu Wenruofce466e2018-07-03 17:10:05 +0800357__printf(4, 5)
358__cold
359static void block_group_err(const struct btrfs_fs_info *fs_info,
360 const struct extent_buffer *eb, int slot,
361 const char *fmt, ...)
362{
363 struct btrfs_key key;
364 struct va_format vaf;
365 va_list args;
366
367 btrfs_item_key_to_cpu(eb, &key, slot);
368 va_start(args, fmt);
369
370 vaf.fmt = fmt;
371 vaf.va = &args;
372
373 btrfs_crit(fs_info,
374 "corrupt %s: root=%llu block=%llu slot=%d bg_start=%llu bg_len=%llu, %pV",
375 btrfs_header_level(eb) == 0 ? "leaf" : "node",
376 btrfs_header_owner(eb), btrfs_header_bytenr(eb), slot,
377 key.objectid, key.offset, &vaf);
378 va_end(args);
379}
380
381static int check_block_group_item(struct btrfs_fs_info *fs_info,
382 struct extent_buffer *leaf,
383 struct btrfs_key *key, int slot)
384{
385 struct btrfs_block_group_item bgi;
386 u32 item_size = btrfs_item_size_nr(leaf, slot);
387 u64 flags;
388 u64 type;
389
390 /*
391 * Here we don't really care about alignment since extent allocator can
Qu Wenruo10950922018-11-23 09:06:36 +0800392 * handle it. We care more about the size.
Qu Wenruofce466e2018-07-03 17:10:05 +0800393 */
Qu Wenruo10950922018-11-23 09:06:36 +0800394 if (key->offset == 0) {
Qu Wenruofce466e2018-07-03 17:10:05 +0800395 block_group_err(fs_info, leaf, slot,
Qu Wenruo10950922018-11-23 09:06:36 +0800396 "invalid block group size 0");
Qu Wenruofce466e2018-07-03 17:10:05 +0800397 return -EUCLEAN;
398 }
399
400 if (item_size != sizeof(bgi)) {
401 block_group_err(fs_info, leaf, slot,
402 "invalid item size, have %u expect %zu",
403 item_size, sizeof(bgi));
404 return -EUCLEAN;
405 }
406
407 read_extent_buffer(leaf, &bgi, btrfs_item_ptr_offset(leaf, slot),
408 sizeof(bgi));
409 if (btrfs_block_group_chunk_objectid(&bgi) !=
410 BTRFS_FIRST_CHUNK_TREE_OBJECTID) {
411 block_group_err(fs_info, leaf, slot,
412 "invalid block group chunk objectid, have %llu expect %llu",
413 btrfs_block_group_chunk_objectid(&bgi),
414 BTRFS_FIRST_CHUNK_TREE_OBJECTID);
415 return -EUCLEAN;
416 }
417
418 if (btrfs_block_group_used(&bgi) > key->offset) {
419 block_group_err(fs_info, leaf, slot,
420 "invalid block group used, have %llu expect [0, %llu)",
421 btrfs_block_group_used(&bgi), key->offset);
422 return -EUCLEAN;
423 }
424
425 flags = btrfs_block_group_flags(&bgi);
426 if (hweight64(flags & BTRFS_BLOCK_GROUP_PROFILE_MASK) > 1) {
427 block_group_err(fs_info, leaf, slot,
428"invalid profile flags, have 0x%llx (%lu bits set) expect no more than 1 bit set",
429 flags & BTRFS_BLOCK_GROUP_PROFILE_MASK,
430 hweight64(flags & BTRFS_BLOCK_GROUP_PROFILE_MASK));
431 return -EUCLEAN;
432 }
433
434 type = flags & BTRFS_BLOCK_GROUP_TYPE_MASK;
435 if (type != BTRFS_BLOCK_GROUP_DATA &&
436 type != BTRFS_BLOCK_GROUP_METADATA &&
437 type != BTRFS_BLOCK_GROUP_SYSTEM &&
438 type != (BTRFS_BLOCK_GROUP_METADATA |
439 BTRFS_BLOCK_GROUP_DATA)) {
440 block_group_err(fs_info, leaf, slot,
Shaokun Zhang761333f2018-11-05 18:49:09 +0800441"invalid type, have 0x%llx (%lu bits set) expect either 0x%llx, 0x%llx, 0x%llx or 0x%llx",
Qu Wenruofce466e2018-07-03 17:10:05 +0800442 type, hweight64(type),
443 BTRFS_BLOCK_GROUP_DATA, BTRFS_BLOCK_GROUP_METADATA,
444 BTRFS_BLOCK_GROUP_SYSTEM,
445 BTRFS_BLOCK_GROUP_METADATA | BTRFS_BLOCK_GROUP_DATA);
446 return -EUCLEAN;
447 }
448 return 0;
449}
450
Qu Wenruof1140242019-03-20 13:36:06 +0800451__printf(5, 6)
452__cold
453static void chunk_err(const struct btrfs_fs_info *fs_info,
454 const struct extent_buffer *leaf,
455 const struct btrfs_chunk *chunk, u64 logical,
456 const char *fmt, ...)
457{
458 bool is_sb;
459 struct va_format vaf;
460 va_list args;
461 int i;
462 int slot = -1;
463
464 /* Only superblock eb is able to have such small offset */
465 is_sb = (leaf->start == BTRFS_SUPER_INFO_OFFSET);
466
467 if (!is_sb) {
468 /*
469 * Get the slot number by iterating through all slots, this
470 * would provide better readability.
471 */
472 for (i = 0; i < btrfs_header_nritems(leaf); i++) {
473 if (btrfs_item_ptr_offset(leaf, i) ==
474 (unsigned long)chunk) {
475 slot = i;
476 break;
477 }
478 }
479 }
480 va_start(args, fmt);
481 vaf.fmt = fmt;
482 vaf.va = &args;
483
484 if (is_sb)
485 btrfs_crit(fs_info,
486 "corrupt superblock syschunk array: chunk_start=%llu, %pV",
487 logical, &vaf);
488 else
489 btrfs_crit(fs_info,
490 "corrupt leaf: root=%llu block=%llu slot=%d chunk_start=%llu, %pV",
491 BTRFS_CHUNK_TREE_OBJECTID, leaf->start, slot,
492 logical, &vaf);
493 va_end(args);
494}
495
Qu Wenruoad7b03682017-11-08 08:54:25 +0800496/*
Qu Wenruo82fc28f2019-03-20 13:16:42 +0800497 * The common chunk check which could also work on super block sys chunk array.
498 *
499 * Return -EIO if anything is corrupted.
500 * Return 0 if everything is OK.
501 */
502int btrfs_check_chunk_valid(struct btrfs_fs_info *fs_info,
503 struct extent_buffer *leaf,
504 struct btrfs_chunk *chunk, u64 logical)
505{
506 u64 length;
507 u64 stripe_len;
508 u16 num_stripes;
509 u16 sub_stripes;
510 u64 type;
511 u64 features;
512 bool mixed = false;
513
514 length = btrfs_chunk_length(leaf, chunk);
515 stripe_len = btrfs_chunk_stripe_len(leaf, chunk);
516 num_stripes = btrfs_chunk_num_stripes(leaf, chunk);
517 sub_stripes = btrfs_chunk_sub_stripes(leaf, chunk);
518 type = btrfs_chunk_type(leaf, chunk);
519
520 if (!num_stripes) {
Qu Wenruof1140242019-03-20 13:36:06 +0800521 chunk_err(fs_info, leaf, chunk, logical,
522 "invalid chunk num_stripes, have %u", num_stripes);
Qu Wenruo82fc28f2019-03-20 13:16:42 +0800523 return -EIO;
524 }
525 if (!IS_ALIGNED(logical, fs_info->sectorsize)) {
Qu Wenruof1140242019-03-20 13:36:06 +0800526 chunk_err(fs_info, leaf, chunk, logical,
527 "invalid chunk logical, have %llu should aligned to %u",
528 logical, fs_info->sectorsize);
Qu Wenruo82fc28f2019-03-20 13:16:42 +0800529 return -EIO;
530 }
531 if (btrfs_chunk_sector_size(leaf, chunk) != fs_info->sectorsize) {
Qu Wenruof1140242019-03-20 13:36:06 +0800532 chunk_err(fs_info, leaf, chunk, logical,
533 "invalid chunk sectorsize, have %u expect %u",
534 btrfs_chunk_sector_size(leaf, chunk),
535 fs_info->sectorsize);
Qu Wenruo82fc28f2019-03-20 13:16:42 +0800536 return -EIO;
537 }
538 if (!length || !IS_ALIGNED(length, fs_info->sectorsize)) {
Qu Wenruof1140242019-03-20 13:36:06 +0800539 chunk_err(fs_info, leaf, chunk, logical,
540 "invalid chunk length, have %llu", length);
Qu Wenruo82fc28f2019-03-20 13:16:42 +0800541 return -EIO;
542 }
543 if (!is_power_of_2(stripe_len) || stripe_len != BTRFS_STRIPE_LEN) {
Qu Wenruof1140242019-03-20 13:36:06 +0800544 chunk_err(fs_info, leaf, chunk, logical,
545 "invalid chunk stripe length: %llu",
Qu Wenruo82fc28f2019-03-20 13:16:42 +0800546 stripe_len);
547 return -EIO;
548 }
549 if (~(BTRFS_BLOCK_GROUP_TYPE_MASK | BTRFS_BLOCK_GROUP_PROFILE_MASK) &
550 type) {
Qu Wenruof1140242019-03-20 13:36:06 +0800551 chunk_err(fs_info, leaf, chunk, logical,
552 "unrecognized chunk type: 0x%llx",
Qu Wenruo82fc28f2019-03-20 13:16:42 +0800553 ~(BTRFS_BLOCK_GROUP_TYPE_MASK |
554 BTRFS_BLOCK_GROUP_PROFILE_MASK) &
555 btrfs_chunk_type(leaf, chunk));
556 return -EIO;
557 }
558
559 if ((type & BTRFS_BLOCK_GROUP_TYPE_MASK) == 0) {
Qu Wenruof1140242019-03-20 13:36:06 +0800560 chunk_err(fs_info, leaf, chunk, logical,
561 "missing chunk type flag, have 0x%llx one bit must be set in 0x%llx",
562 type, BTRFS_BLOCK_GROUP_TYPE_MASK);
Qu Wenruo82fc28f2019-03-20 13:16:42 +0800563 return -EIO;
564 }
565
566 if ((type & BTRFS_BLOCK_GROUP_SYSTEM) &&
567 (type & (BTRFS_BLOCK_GROUP_METADATA | BTRFS_BLOCK_GROUP_DATA))) {
Qu Wenruof1140242019-03-20 13:36:06 +0800568 chunk_err(fs_info, leaf, chunk, logical,
569 "system chunk with data or metadata type: 0x%llx",
570 type);
Qu Wenruo82fc28f2019-03-20 13:16:42 +0800571 return -EIO;
572 }
573
574 features = btrfs_super_incompat_flags(fs_info->super_copy);
575 if (features & BTRFS_FEATURE_INCOMPAT_MIXED_GROUPS)
576 mixed = true;
577
578 if (!mixed) {
579 if ((type & BTRFS_BLOCK_GROUP_METADATA) &&
580 (type & BTRFS_BLOCK_GROUP_DATA)) {
Qu Wenruof1140242019-03-20 13:36:06 +0800581 chunk_err(fs_info, leaf, chunk, logical,
Qu Wenruo82fc28f2019-03-20 13:16:42 +0800582 "mixed chunk type in non-mixed mode: 0x%llx", type);
583 return -EIO;
584 }
585 }
586
587 if ((type & BTRFS_BLOCK_GROUP_RAID10 && sub_stripes != 2) ||
588 (type & BTRFS_BLOCK_GROUP_RAID1 && num_stripes != 2) ||
589 (type & BTRFS_BLOCK_GROUP_RAID5 && num_stripes < 2) ||
590 (type & BTRFS_BLOCK_GROUP_RAID6 && num_stripes < 3) ||
591 (type & BTRFS_BLOCK_GROUP_DUP && num_stripes != 2) ||
592 ((type & BTRFS_BLOCK_GROUP_PROFILE_MASK) == 0 && num_stripes != 1)) {
Qu Wenruof1140242019-03-20 13:36:06 +0800593 chunk_err(fs_info, leaf, chunk, logical,
Qu Wenruo82fc28f2019-03-20 13:16:42 +0800594 "invalid num_stripes:sub_stripes %u:%u for profile %llu",
595 num_stripes, sub_stripes,
596 type & BTRFS_BLOCK_GROUP_PROFILE_MASK);
597 return -EIO;
598 }
599
600 return 0;
601}
602
603/*
Qu Wenruo557ea5d2017-10-09 01:51:02 +0000604 * Common point to switch the item-specific validation.
605 */
Qu Wenruo2f659542018-01-25 14:56:18 +0800606static int check_leaf_item(struct btrfs_fs_info *fs_info,
Qu Wenruo557ea5d2017-10-09 01:51:02 +0000607 struct extent_buffer *leaf,
608 struct btrfs_key *key, int slot)
609{
610 int ret = 0;
611
612 switch (key->type) {
613 case BTRFS_EXTENT_DATA_KEY:
Qu Wenruo2f659542018-01-25 14:56:18 +0800614 ret = check_extent_data_item(fs_info, leaf, key, slot);
Qu Wenruo557ea5d2017-10-09 01:51:02 +0000615 break;
616 case BTRFS_EXTENT_CSUM_KEY:
Qu Wenruo2f659542018-01-25 14:56:18 +0800617 ret = check_csum_item(fs_info, leaf, key, slot);
Qu Wenruo557ea5d2017-10-09 01:51:02 +0000618 break;
Qu Wenruoad7b03682017-11-08 08:54:25 +0800619 case BTRFS_DIR_ITEM_KEY:
620 case BTRFS_DIR_INDEX_KEY:
621 case BTRFS_XATTR_ITEM_KEY:
Qu Wenruo2f659542018-01-25 14:56:18 +0800622 ret = check_dir_item(fs_info, leaf, key, slot);
Qu Wenruoad7b03682017-11-08 08:54:25 +0800623 break;
Qu Wenruofce466e2018-07-03 17:10:05 +0800624 case BTRFS_BLOCK_GROUP_ITEM_KEY:
625 ret = check_block_group_item(fs_info, leaf, key, slot);
626 break;
Qu Wenruo557ea5d2017-10-09 01:51:02 +0000627 }
628 return ret;
629}
630
Qu Wenruo2f659542018-01-25 14:56:18 +0800631static int check_leaf(struct btrfs_fs_info *fs_info, struct extent_buffer *leaf,
Qu Wenruo69fc6cb2017-11-08 08:54:24 +0800632 bool check_item_data)
Qu Wenruo557ea5d2017-10-09 01:51:02 +0000633{
Qu Wenruo557ea5d2017-10-09 01:51:02 +0000634 /* No valid key type is 0, so all key should be larger than this key */
635 struct btrfs_key prev_key = {0, 0, 0};
636 struct btrfs_key key;
637 u32 nritems = btrfs_header_nritems(leaf);
638 int slot;
639
Qu Wenruof556faa2018-09-28 07:59:34 +0800640 if (btrfs_header_level(leaf) != 0) {
641 generic_err(fs_info, leaf, 0,
642 "invalid level for leaf, have %d expect 0",
643 btrfs_header_level(leaf));
644 return -EUCLEAN;
645 }
646
Qu Wenruo557ea5d2017-10-09 01:51:02 +0000647 /*
648 * Extent buffers from a relocation tree have a owner field that
649 * corresponds to the subvolume tree they are based on. So just from an
650 * extent buffer alone we can not find out what is the id of the
651 * corresponding subvolume tree, so we can not figure out if the extent
652 * buffer corresponds to the root of the relocation tree or not. So
653 * skip this check for relocation trees.
654 */
655 if (nritems == 0 && !btrfs_header_flag(leaf, BTRFS_HEADER_FLAG_RELOC)) {
Qu Wenruoba480dd2018-07-03 17:10:06 +0800656 u64 owner = btrfs_header_owner(leaf);
Qu Wenruo557ea5d2017-10-09 01:51:02 +0000657 struct btrfs_root *check_root;
658
Qu Wenruoba480dd2018-07-03 17:10:06 +0800659 /* These trees must never be empty */
660 if (owner == BTRFS_ROOT_TREE_OBJECTID ||
661 owner == BTRFS_CHUNK_TREE_OBJECTID ||
662 owner == BTRFS_EXTENT_TREE_OBJECTID ||
663 owner == BTRFS_DEV_TREE_OBJECTID ||
664 owner == BTRFS_FS_TREE_OBJECTID ||
665 owner == BTRFS_DATA_RELOC_TREE_OBJECTID) {
666 generic_err(fs_info, leaf, 0,
667 "invalid root, root %llu must never be empty",
668 owner);
669 return -EUCLEAN;
670 }
671 key.objectid = owner;
Qu Wenruo557ea5d2017-10-09 01:51:02 +0000672 key.type = BTRFS_ROOT_ITEM_KEY;
673 key.offset = (u64)-1;
674
675 check_root = btrfs_get_fs_root(fs_info, &key, false);
676 /*
677 * The only reason we also check NULL here is that during
678 * open_ctree() some roots has not yet been set up.
679 */
680 if (!IS_ERR_OR_NULL(check_root)) {
681 struct extent_buffer *eb;
682
683 eb = btrfs_root_node(check_root);
684 /* if leaf is the root, then it's fine */
685 if (leaf != eb) {
Qu Wenruo2f659542018-01-25 14:56:18 +0800686 generic_err(fs_info, leaf, 0,
Qu Wenruo478d01b2017-10-09 01:51:04 +0000687 "invalid nritems, have %u should not be 0 for non-root leaf",
688 nritems);
Qu Wenruo557ea5d2017-10-09 01:51:02 +0000689 free_extent_buffer(eb);
690 return -EUCLEAN;
691 }
692 free_extent_buffer(eb);
693 }
694 return 0;
695 }
696
697 if (nritems == 0)
698 return 0;
699
700 /*
701 * Check the following things to make sure this is a good leaf, and
702 * leaf users won't need to bother with similar sanity checks:
703 *
704 * 1) key ordering
705 * 2) item offset and size
706 * No overlap, no hole, all inside the leaf.
707 * 3) item content
708 * If possible, do comprehensive sanity check.
709 * NOTE: All checks must only rely on the item data itself.
710 */
711 for (slot = 0; slot < nritems; slot++) {
712 u32 item_end_expected;
713 int ret;
714
715 btrfs_item_key_to_cpu(leaf, &key, slot);
716
717 /* Make sure the keys are in the right order */
718 if (btrfs_comp_cpu_keys(&prev_key, &key) >= 0) {
Qu Wenruo2f659542018-01-25 14:56:18 +0800719 generic_err(fs_info, leaf, slot,
Qu Wenruo478d01b2017-10-09 01:51:04 +0000720 "bad key order, prev (%llu %u %llu) current (%llu %u %llu)",
721 prev_key.objectid, prev_key.type,
722 prev_key.offset, key.objectid, key.type,
723 key.offset);
Qu Wenruo557ea5d2017-10-09 01:51:02 +0000724 return -EUCLEAN;
725 }
726
727 /*
728 * Make sure the offset and ends are right, remember that the
729 * item data starts at the end of the leaf and grows towards the
730 * front.
731 */
732 if (slot == 0)
733 item_end_expected = BTRFS_LEAF_DATA_SIZE(fs_info);
734 else
735 item_end_expected = btrfs_item_offset_nr(leaf,
736 slot - 1);
737 if (btrfs_item_end_nr(leaf, slot) != item_end_expected) {
Qu Wenruo2f659542018-01-25 14:56:18 +0800738 generic_err(fs_info, leaf, slot,
Qu Wenruo478d01b2017-10-09 01:51:04 +0000739 "unexpected item end, have %u expect %u",
740 btrfs_item_end_nr(leaf, slot),
741 item_end_expected);
Qu Wenruo557ea5d2017-10-09 01:51:02 +0000742 return -EUCLEAN;
743 }
744
745 /*
746 * Check to make sure that we don't point outside of the leaf,
747 * just in case all the items are consistent to each other, but
748 * all point outside of the leaf.
749 */
750 if (btrfs_item_end_nr(leaf, slot) >
751 BTRFS_LEAF_DATA_SIZE(fs_info)) {
Qu Wenruo2f659542018-01-25 14:56:18 +0800752 generic_err(fs_info, leaf, slot,
Qu Wenruo478d01b2017-10-09 01:51:04 +0000753 "slot end outside of leaf, have %u expect range [0, %u]",
754 btrfs_item_end_nr(leaf, slot),
755 BTRFS_LEAF_DATA_SIZE(fs_info));
Qu Wenruo557ea5d2017-10-09 01:51:02 +0000756 return -EUCLEAN;
757 }
758
759 /* Also check if the item pointer overlaps with btrfs item. */
760 if (btrfs_item_nr_offset(slot) + sizeof(struct btrfs_item) >
761 btrfs_item_ptr_offset(leaf, slot)) {
Qu Wenruo2f659542018-01-25 14:56:18 +0800762 generic_err(fs_info, leaf, slot,
Qu Wenruo478d01b2017-10-09 01:51:04 +0000763 "slot overlaps with its data, item end %lu data start %lu",
764 btrfs_item_nr_offset(slot) +
765 sizeof(struct btrfs_item),
766 btrfs_item_ptr_offset(leaf, slot));
Qu Wenruo557ea5d2017-10-09 01:51:02 +0000767 return -EUCLEAN;
768 }
769
Qu Wenruo69fc6cb2017-11-08 08:54:24 +0800770 if (check_item_data) {
771 /*
772 * Check if the item size and content meet other
773 * criteria
774 */
Qu Wenruo2f659542018-01-25 14:56:18 +0800775 ret = check_leaf_item(fs_info, leaf, &key, slot);
Qu Wenruo69fc6cb2017-11-08 08:54:24 +0800776 if (ret < 0)
777 return ret;
778 }
Qu Wenruo557ea5d2017-10-09 01:51:02 +0000779
780 prev_key.objectid = key.objectid;
781 prev_key.type = key.type;
782 prev_key.offset = key.offset;
783 }
784
785 return 0;
786}
787
Qu Wenruo2f659542018-01-25 14:56:18 +0800788int btrfs_check_leaf_full(struct btrfs_fs_info *fs_info,
789 struct extent_buffer *leaf)
Qu Wenruo69fc6cb2017-11-08 08:54:24 +0800790{
Qu Wenruo2f659542018-01-25 14:56:18 +0800791 return check_leaf(fs_info, leaf, true);
Qu Wenruo69fc6cb2017-11-08 08:54:24 +0800792}
793
Qu Wenruo2f659542018-01-25 14:56:18 +0800794int btrfs_check_leaf_relaxed(struct btrfs_fs_info *fs_info,
Qu Wenruo69fc6cb2017-11-08 08:54:24 +0800795 struct extent_buffer *leaf)
796{
Qu Wenruo2f659542018-01-25 14:56:18 +0800797 return check_leaf(fs_info, leaf, false);
Qu Wenruo69fc6cb2017-11-08 08:54:24 +0800798}
799
Qu Wenruo2f659542018-01-25 14:56:18 +0800800int btrfs_check_node(struct btrfs_fs_info *fs_info, struct extent_buffer *node)
Qu Wenruo557ea5d2017-10-09 01:51:02 +0000801{
802 unsigned long nr = btrfs_header_nritems(node);
803 struct btrfs_key key, next_key;
804 int slot;
Qu Wenruof556faa2018-09-28 07:59:34 +0800805 int level = btrfs_header_level(node);
Qu Wenruo557ea5d2017-10-09 01:51:02 +0000806 u64 bytenr;
807 int ret = 0;
808
Qu Wenruof556faa2018-09-28 07:59:34 +0800809 if (level <= 0 || level >= BTRFS_MAX_LEVEL) {
810 generic_err(fs_info, node, 0,
811 "invalid level for node, have %d expect [1, %d]",
812 level, BTRFS_MAX_LEVEL - 1);
813 return -EUCLEAN;
814 }
Qu Wenruo2f659542018-01-25 14:56:18 +0800815 if (nr == 0 || nr > BTRFS_NODEPTRS_PER_BLOCK(fs_info)) {
816 btrfs_crit(fs_info,
Qu Wenruobba4f292017-10-09 01:51:03 +0000817"corrupt node: root=%llu block=%llu, nritems too %s, have %lu expect range [1,%u]",
Qu Wenruo2f659542018-01-25 14:56:18 +0800818 btrfs_header_owner(node), node->start,
Qu Wenruobba4f292017-10-09 01:51:03 +0000819 nr == 0 ? "small" : "large", nr,
Qu Wenruo2f659542018-01-25 14:56:18 +0800820 BTRFS_NODEPTRS_PER_BLOCK(fs_info));
Qu Wenruobba4f292017-10-09 01:51:03 +0000821 return -EUCLEAN;
Qu Wenruo557ea5d2017-10-09 01:51:02 +0000822 }
823
824 for (slot = 0; slot < nr - 1; slot++) {
825 bytenr = btrfs_node_blockptr(node, slot);
826 btrfs_node_key_to_cpu(node, &key, slot);
827 btrfs_node_key_to_cpu(node, &next_key, slot + 1);
828
829 if (!bytenr) {
Qu Wenruo2f659542018-01-25 14:56:18 +0800830 generic_err(fs_info, node, slot,
Qu Wenruobba4f292017-10-09 01:51:03 +0000831 "invalid NULL node pointer");
832 ret = -EUCLEAN;
833 goto out;
834 }
Qu Wenruo2f659542018-01-25 14:56:18 +0800835 if (!IS_ALIGNED(bytenr, fs_info->sectorsize)) {
836 generic_err(fs_info, node, slot,
Qu Wenruobba4f292017-10-09 01:51:03 +0000837 "unaligned pointer, have %llu should be aligned to %u",
Qu Wenruo2f659542018-01-25 14:56:18 +0800838 bytenr, fs_info->sectorsize);
Qu Wenruobba4f292017-10-09 01:51:03 +0000839 ret = -EUCLEAN;
Qu Wenruo557ea5d2017-10-09 01:51:02 +0000840 goto out;
841 }
842
843 if (btrfs_comp_cpu_keys(&key, &next_key) >= 0) {
Qu Wenruo2f659542018-01-25 14:56:18 +0800844 generic_err(fs_info, node, slot,
Qu Wenruobba4f292017-10-09 01:51:03 +0000845 "bad key order, current (%llu %u %llu) next (%llu %u %llu)",
846 key.objectid, key.type, key.offset,
847 next_key.objectid, next_key.type,
848 next_key.offset);
849 ret = -EUCLEAN;
Qu Wenruo557ea5d2017-10-09 01:51:02 +0000850 goto out;
851 }
852 }
853out:
854 return ret;
855}