1 // SPDX-License-Identifier: GPL-2.0
3 * Copyright (C) STRATO AG 2011. All rights reserved.
7 * This module can be used to catch cases when the btrfs kernel
8 * code executes write requests to the disk that bring the file
9 * system in an inconsistent state. In such a state, a power-loss
10 * or kernel panic event would cause that the data on disk is
11 * lost or at least damaged.
13 * Code is added that examines all block write requests during
14 * runtime (including writes of the super block). Three rules
15 * are verified and an error is printed on violation of the
17 * 1. It is not allowed to write a disk block which is
18 * currently referenced by the super block (either directly
20 * 2. When a super block is written, it is verified that all
21 * referenced (directly or indirectly) blocks fulfill the
22 * following requirements:
23 * 2a. All referenced blocks have either been present when
24 * the file system was mounted, (i.e., they have been
25 * referenced by the super block) or they have been
26 * written since then and the write completion callback
27 * was called and no write error was indicated and a
28 * FLUSH request to the device where these blocks are
29 * located was received and completed.
30 * 2b. All referenced blocks need to have a generation
31 * number which is equal to the parent's number.
33 * One issue that was found using this module was that the log
34 * tree on disk became temporarily corrupted because disk blocks
35 * that had been in use for the log tree had been freed and
36 * reused too early, while being referenced by the written super
39 * The search term in the kernel log that can be used to filter
40 * on the existence of detected integrity issues is
43 * The integrity check is enabled via mount options. These
44 * mount options are only supported if the integrity check
45 * tool is compiled by defining BTRFS_FS_CHECK_INTEGRITY.
47 * Example #1, apply integrity checks to all metadata:
48 * mount /dev/sdb1 /mnt -o check_int
50 * Example #2, apply integrity checks to all metadata and
52 * mount /dev/sdb1 /mnt -o check_int_data
54 * Example #3, apply integrity checks to all metadata and dump
55 * the tree that the super block references to kernel messages
56 * each time after a super block was written:
57 * mount /dev/sdb1 /mnt -o check_int,check_int_print_mask=263
59 * If the integrity check tool is included and activated in
60 * the mount options, plenty of kernel memory is used, and
61 * plenty of additional CPU cycles are spent. Enabling this
62 * functionality is not intended for normal use. In most
63 * cases, unless you are a btrfs developer who needs to verify
64 * the integrity of (super)-block write requests, do not
65 * enable the config option BTRFS_FS_CHECK_INTEGRITY to
66 * include and compile the integrity check tool.
68 * Expect millions of lines of information in the kernel log with an
69 * enabled check_int_print_mask. Therefore set LOG_BUF_SHIFT in the
70 * kernel config to at least 26 (which is 64MB). Usually the value is
71 * limited to 21 (which is 2MB) in init/Kconfig. The file needs to be
72 * changed like this before LOG_BUF_SHIFT can be set to a high value:
73 * config LOG_BUF_SHIFT
74 * int "Kernel log buffer size (16 => 64KB, 17 => 128KB)"
78 #include <linux/sched.h>
79 #include <linux/slab.h>
80 #include <linux/mutex.h>
81 #include <linux/genhd.h>
82 #include <linux/blkdev.h>
84 #include <linux/string.h>
85 #include <crypto/hash.h>
88 #include "transaction.h"
89 #include "extent_io.h"
91 #include "print-tree.h"
93 #include "check-integrity.h"
94 #include "rcu-string.h"
95 #include "compression.h"
97 #define BTRFSIC_BLOCK_HASHTABLE_SIZE 0x10000
98 #define BTRFSIC_BLOCK_LINK_HASHTABLE_SIZE 0x10000
99 #define BTRFSIC_DEV2STATE_HASHTABLE_SIZE 0x100
100 #define BTRFSIC_BLOCK_MAGIC_NUMBER 0x14491051
101 #define BTRFSIC_BLOCK_LINK_MAGIC_NUMBER 0x11070807
102 #define BTRFSIC_DEV2STATE_MAGIC_NUMBER 0x20111530
103 #define BTRFSIC_BLOCK_STACK_FRAME_MAGIC_NUMBER 20111300
104 #define BTRFSIC_TREE_DUMP_MAX_INDENT_LEVEL (200 - 6) /* in characters,
105 * excluding " [...]" */
106 #define BTRFSIC_GENERATION_UNKNOWN ((u64)-1)
109 * The definition of the bitmask fields for the print_mask.
110 * They are specified with the mount option check_integrity_print_mask.
112 #define BTRFSIC_PRINT_MASK_SUPERBLOCK_WRITE 0x00000001
113 #define BTRFSIC_PRINT_MASK_ROOT_CHUNK_LOG_TREE_LOCATION 0x00000002
114 #define BTRFSIC_PRINT_MASK_TREE_AFTER_SB_WRITE 0x00000004
115 #define BTRFSIC_PRINT_MASK_TREE_BEFORE_SB_WRITE 0x00000008
116 #define BTRFSIC_PRINT_MASK_SUBMIT_BIO_BH 0x00000010
117 #define BTRFSIC_PRINT_MASK_END_IO_BIO_BH 0x00000020
118 #define BTRFSIC_PRINT_MASK_VERBOSE 0x00000040
119 #define BTRFSIC_PRINT_MASK_VERY_VERBOSE 0x00000080
120 #define BTRFSIC_PRINT_MASK_INITIAL_TREE 0x00000100
121 #define BTRFSIC_PRINT_MASK_INITIAL_ALL_TREES 0x00000200
122 #define BTRFSIC_PRINT_MASK_INITIAL_DATABASE 0x00000400
123 #define BTRFSIC_PRINT_MASK_NUM_COPIES 0x00000800
124 #define BTRFSIC_PRINT_MASK_TREE_WITH_ALL_MIRRORS 0x00001000
125 #define BTRFSIC_PRINT_MASK_SUBMIT_BIO_BH_VERBOSE 0x00002000
127 struct btrfsic_dev_state
;
128 struct btrfsic_state
;
130 struct btrfsic_block
{
131 u32 magic_num
; /* only used for debug purposes */
132 unsigned int is_metadata
:1; /* if it is meta-data, not data-data */
133 unsigned int is_superblock
:1; /* if it is one of the superblocks */
134 unsigned int is_iodone
:1; /* if is done by lower subsystem */
135 unsigned int iodone_w_error
:1; /* error was indicated to endio */
136 unsigned int never_written
:1; /* block was added because it was
137 * referenced, not because it was
139 unsigned int mirror_num
; /* large enough to hold
140 * BTRFS_SUPER_MIRROR_MAX */
141 struct btrfsic_dev_state
*dev_state
;
142 u64 dev_bytenr
; /* key, physical byte num on disk */
143 u64 logical_bytenr
; /* logical byte num on disk */
145 struct btrfs_disk_key disk_key
; /* extra info to print in case of
146 * issues, will not always be correct */
147 struct list_head collision_resolving_node
; /* list node */
148 struct list_head all_blocks_node
; /* list node */
150 /* the following two lists contain block_link items */
151 struct list_head ref_to_list
; /* list */
152 struct list_head ref_from_list
; /* list */
153 struct btrfsic_block
*next_in_same_bio
;
154 void *orig_bio_private
;
155 bio_end_io_t
*orig_bio_end_io
;
156 int submit_bio_bh_rw
;
157 u64 flush_gen
; /* only valid if !never_written */
161 * Elements of this type are allocated dynamically and required because
162 * each block object can refer to and can be ref from multiple blocks.
163 * The key to lookup them in the hashtable is the dev_bytenr of
164 * the block ref to plus the one from the block referred from.
165 * The fact that they are searchable via a hashtable and that a
166 * ref_cnt is maintained is not required for the btrfs integrity
167 * check algorithm itself, it is only used to make the output more
168 * beautiful in case that an error is detected (an error is defined
169 * as a write operation to a block while that block is still referenced).
171 struct btrfsic_block_link
{
172 u32 magic_num
; /* only used for debug purposes */
174 struct list_head node_ref_to
; /* list node */
175 struct list_head node_ref_from
; /* list node */
176 struct list_head collision_resolving_node
; /* list node */
177 struct btrfsic_block
*block_ref_to
;
178 struct btrfsic_block
*block_ref_from
;
179 u64 parent_generation
;
182 struct btrfsic_dev_state
{
183 u32 magic_num
; /* only used for debug purposes */
184 struct block_device
*bdev
;
185 struct btrfsic_state
*state
;
186 struct list_head collision_resolving_node
; /* list node */
187 struct btrfsic_block dummy_block_for_bio_bh_flush
;
189 char name
[BDEVNAME_SIZE
];
192 struct btrfsic_block_hashtable
{
193 struct list_head table
[BTRFSIC_BLOCK_HASHTABLE_SIZE
];
196 struct btrfsic_block_link_hashtable
{
197 struct list_head table
[BTRFSIC_BLOCK_LINK_HASHTABLE_SIZE
];
200 struct btrfsic_dev_state_hashtable
{
201 struct list_head table
[BTRFSIC_DEV2STATE_HASHTABLE_SIZE
];
204 struct btrfsic_block_data_ctx
{
205 u64 start
; /* virtual bytenr */
206 u64 dev_bytenr
; /* physical bytenr on device */
208 struct btrfsic_dev_state
*dev
;
214 /* This structure is used to implement recursion without occupying
215 * any stack space, refer to btrfsic_process_metablock() */
216 struct btrfsic_stack_frame
{
224 struct btrfsic_block
*block
;
225 struct btrfsic_block_data_ctx
*block_ctx
;
226 struct btrfsic_block
*next_block
;
227 struct btrfsic_block_data_ctx next_block_ctx
;
228 struct btrfs_header
*hdr
;
229 struct btrfsic_stack_frame
*prev
;
232 /* Some state per mounted filesystem */
233 struct btrfsic_state
{
235 int include_extent_data
;
237 struct list_head all_blocks_list
;
238 struct btrfsic_block_hashtable block_hashtable
;
239 struct btrfsic_block_link_hashtable block_link_hashtable
;
240 struct btrfs_fs_info
*fs_info
;
241 u64 max_superblock_generation
;
242 struct btrfsic_block
*latest_superblock
;
247 static void btrfsic_block_init(struct btrfsic_block
*b
);
248 static struct btrfsic_block
*btrfsic_block_alloc(void);
249 static void btrfsic_block_free(struct btrfsic_block
*b
);
250 static void btrfsic_block_link_init(struct btrfsic_block_link
*n
);
251 static struct btrfsic_block_link
*btrfsic_block_link_alloc(void);
252 static void btrfsic_block_link_free(struct btrfsic_block_link
*n
);
253 static void btrfsic_dev_state_init(struct btrfsic_dev_state
*ds
);
254 static struct btrfsic_dev_state
*btrfsic_dev_state_alloc(void);
255 static void btrfsic_dev_state_free(struct btrfsic_dev_state
*ds
);
256 static void btrfsic_block_hashtable_init(struct btrfsic_block_hashtable
*h
);
257 static void btrfsic_block_hashtable_add(struct btrfsic_block
*b
,
258 struct btrfsic_block_hashtable
*h
);
259 static void btrfsic_block_hashtable_remove(struct btrfsic_block
*b
);
260 static struct btrfsic_block
*btrfsic_block_hashtable_lookup(
261 struct block_device
*bdev
,
263 struct btrfsic_block_hashtable
*h
);
264 static void btrfsic_block_link_hashtable_init(
265 struct btrfsic_block_link_hashtable
*h
);
266 static void btrfsic_block_link_hashtable_add(
267 struct btrfsic_block_link
*l
,
268 struct btrfsic_block_link_hashtable
*h
);
269 static void btrfsic_block_link_hashtable_remove(struct btrfsic_block_link
*l
);
270 static struct btrfsic_block_link
*btrfsic_block_link_hashtable_lookup(
271 struct block_device
*bdev_ref_to
,
272 u64 dev_bytenr_ref_to
,
273 struct block_device
*bdev_ref_from
,
274 u64 dev_bytenr_ref_from
,
275 struct btrfsic_block_link_hashtable
*h
);
276 static void btrfsic_dev_state_hashtable_init(
277 struct btrfsic_dev_state_hashtable
*h
);
278 static void btrfsic_dev_state_hashtable_add(
279 struct btrfsic_dev_state
*ds
,
280 struct btrfsic_dev_state_hashtable
*h
);
281 static void btrfsic_dev_state_hashtable_remove(struct btrfsic_dev_state
*ds
);
282 static struct btrfsic_dev_state
*btrfsic_dev_state_hashtable_lookup(dev_t dev
,
283 struct btrfsic_dev_state_hashtable
*h
);
284 static struct btrfsic_stack_frame
*btrfsic_stack_frame_alloc(void);
285 static void btrfsic_stack_frame_free(struct btrfsic_stack_frame
*sf
);
286 static int btrfsic_process_superblock(struct btrfsic_state
*state
,
287 struct btrfs_fs_devices
*fs_devices
);
288 static int btrfsic_process_metablock(struct btrfsic_state
*state
,
289 struct btrfsic_block
*block
,
290 struct btrfsic_block_data_ctx
*block_ctx
,
291 int limit_nesting
, int force_iodone_flag
);
292 static void btrfsic_read_from_block_data(
293 struct btrfsic_block_data_ctx
*block_ctx
,
294 void *dst
, u32 offset
, size_t len
);
295 static int btrfsic_create_link_to_next_block(
296 struct btrfsic_state
*state
,
297 struct btrfsic_block
*block
,
298 struct btrfsic_block_data_ctx
299 *block_ctx
, u64 next_bytenr
,
301 struct btrfsic_block_data_ctx
*next_block_ctx
,
302 struct btrfsic_block
**next_blockp
,
303 int force_iodone_flag
,
304 int *num_copiesp
, int *mirror_nump
,
305 struct btrfs_disk_key
*disk_key
,
306 u64 parent_generation
);
307 static int btrfsic_handle_extent_data(struct btrfsic_state
*state
,
308 struct btrfsic_block
*block
,
309 struct btrfsic_block_data_ctx
*block_ctx
,
310 u32 item_offset
, int force_iodone_flag
);
311 static int btrfsic_map_block(struct btrfsic_state
*state
, u64 bytenr
, u32 len
,
312 struct btrfsic_block_data_ctx
*block_ctx_out
,
314 static void btrfsic_release_block_ctx(struct btrfsic_block_data_ctx
*block_ctx
);
315 static int btrfsic_read_block(struct btrfsic_state
*state
,
316 struct btrfsic_block_data_ctx
*block_ctx
);
317 static void btrfsic_dump_database(struct btrfsic_state
*state
);
318 static int btrfsic_test_for_metadata(struct btrfsic_state
*state
,
319 char **datav
, unsigned int num_pages
);
320 static void btrfsic_process_written_block(struct btrfsic_dev_state
*dev_state
,
321 u64 dev_bytenr
, char **mapped_datav
,
322 unsigned int num_pages
,
323 struct bio
*bio
, int *bio_is_patched
,
324 int submit_bio_bh_rw
);
325 static int btrfsic_process_written_superblock(
326 struct btrfsic_state
*state
,
327 struct btrfsic_block
*const block
,
328 struct btrfs_super_block
*const super_hdr
);
329 static void btrfsic_bio_end_io(struct bio
*bp
);
330 static int btrfsic_is_block_ref_by_superblock(const struct btrfsic_state
*state
,
331 const struct btrfsic_block
*block
,
332 int recursion_level
);
333 static int btrfsic_check_all_ref_blocks(struct btrfsic_state
*state
,
334 struct btrfsic_block
*const block
,
335 int recursion_level
);
336 static void btrfsic_print_add_link(const struct btrfsic_state
*state
,
337 const struct btrfsic_block_link
*l
);
338 static void btrfsic_print_rem_link(const struct btrfsic_state
*state
,
339 const struct btrfsic_block_link
*l
);
340 static char btrfsic_get_block_type(const struct btrfsic_state
*state
,
341 const struct btrfsic_block
*block
);
342 static void btrfsic_dump_tree(const struct btrfsic_state
*state
);
343 static void btrfsic_dump_tree_sub(const struct btrfsic_state
*state
,
344 const struct btrfsic_block
*block
,
346 static struct btrfsic_block_link
*btrfsic_block_link_lookup_or_add(
347 struct btrfsic_state
*state
,
348 struct btrfsic_block_data_ctx
*next_block_ctx
,
349 struct btrfsic_block
*next_block
,
350 struct btrfsic_block
*from_block
,
351 u64 parent_generation
);
352 static struct btrfsic_block
*btrfsic_block_lookup_or_add(
353 struct btrfsic_state
*state
,
354 struct btrfsic_block_data_ctx
*block_ctx
,
355 const char *additional_string
,
361 static int btrfsic_process_superblock_dev_mirror(
362 struct btrfsic_state
*state
,
363 struct btrfsic_dev_state
*dev_state
,
364 struct btrfs_device
*device
,
365 int superblock_mirror_num
,
366 struct btrfsic_dev_state
**selected_dev_state
,
367 struct btrfs_super_block
*selected_super
);
368 static struct btrfsic_dev_state
*btrfsic_dev_state_lookup(dev_t dev
);
369 static void btrfsic_cmp_log_and_dev_bytenr(struct btrfsic_state
*state
,
371 struct btrfsic_dev_state
*dev_state
,
374 static struct mutex btrfsic_mutex
;
375 static int btrfsic_is_initialized
;
376 static struct btrfsic_dev_state_hashtable btrfsic_dev_state_hashtable
;
379 static void btrfsic_block_init(struct btrfsic_block
*b
)
381 b
->magic_num
= BTRFSIC_BLOCK_MAGIC_NUMBER
;
384 b
->logical_bytenr
= 0;
385 b
->generation
= BTRFSIC_GENERATION_UNKNOWN
;
386 b
->disk_key
.objectid
= 0;
387 b
->disk_key
.type
= 0;
388 b
->disk_key
.offset
= 0;
390 b
->is_superblock
= 0;
392 b
->iodone_w_error
= 0;
393 b
->never_written
= 0;
395 b
->next_in_same_bio
= NULL
;
396 b
->orig_bio_private
= NULL
;
397 b
->orig_bio_end_io
= NULL
;
398 INIT_LIST_HEAD(&b
->collision_resolving_node
);
399 INIT_LIST_HEAD(&b
->all_blocks_node
);
400 INIT_LIST_HEAD(&b
->ref_to_list
);
401 INIT_LIST_HEAD(&b
->ref_from_list
);
402 b
->submit_bio_bh_rw
= 0;
406 static struct btrfsic_block
*btrfsic_block_alloc(void)
408 struct btrfsic_block
*b
;
410 b
= kzalloc(sizeof(*b
), GFP_NOFS
);
412 btrfsic_block_init(b
);
417 static void btrfsic_block_free(struct btrfsic_block
*b
)
419 BUG_ON(!(NULL
== b
|| BTRFSIC_BLOCK_MAGIC_NUMBER
== b
->magic_num
));
423 static void btrfsic_block_link_init(struct btrfsic_block_link
*l
)
425 l
->magic_num
= BTRFSIC_BLOCK_LINK_MAGIC_NUMBER
;
427 INIT_LIST_HEAD(&l
->node_ref_to
);
428 INIT_LIST_HEAD(&l
->node_ref_from
);
429 INIT_LIST_HEAD(&l
->collision_resolving_node
);
430 l
->block_ref_to
= NULL
;
431 l
->block_ref_from
= NULL
;
434 static struct btrfsic_block_link
*btrfsic_block_link_alloc(void)
436 struct btrfsic_block_link
*l
;
438 l
= kzalloc(sizeof(*l
), GFP_NOFS
);
440 btrfsic_block_link_init(l
);
445 static void btrfsic_block_link_free(struct btrfsic_block_link
*l
)
447 BUG_ON(!(NULL
== l
|| BTRFSIC_BLOCK_LINK_MAGIC_NUMBER
== l
->magic_num
));
451 static void btrfsic_dev_state_init(struct btrfsic_dev_state
*ds
)
453 ds
->magic_num
= BTRFSIC_DEV2STATE_MAGIC_NUMBER
;
457 INIT_LIST_HEAD(&ds
->collision_resolving_node
);
458 ds
->last_flush_gen
= 0;
459 btrfsic_block_init(&ds
->dummy_block_for_bio_bh_flush
);
460 ds
->dummy_block_for_bio_bh_flush
.is_iodone
= 1;
461 ds
->dummy_block_for_bio_bh_flush
.dev_state
= ds
;
464 static struct btrfsic_dev_state
*btrfsic_dev_state_alloc(void)
466 struct btrfsic_dev_state
*ds
;
468 ds
= kzalloc(sizeof(*ds
), GFP_NOFS
);
470 btrfsic_dev_state_init(ds
);
475 static void btrfsic_dev_state_free(struct btrfsic_dev_state
*ds
)
477 BUG_ON(!(NULL
== ds
||
478 BTRFSIC_DEV2STATE_MAGIC_NUMBER
== ds
->magic_num
));
482 static void btrfsic_block_hashtable_init(struct btrfsic_block_hashtable
*h
)
486 for (i
= 0; i
< BTRFSIC_BLOCK_HASHTABLE_SIZE
; i
++)
487 INIT_LIST_HEAD(h
->table
+ i
);
490 static void btrfsic_block_hashtable_add(struct btrfsic_block
*b
,
491 struct btrfsic_block_hashtable
*h
)
493 const unsigned int hashval
=
494 (((unsigned int)(b
->dev_bytenr
>> 16)) ^
495 ((unsigned int)((uintptr_t)b
->dev_state
->bdev
))) &
496 (BTRFSIC_BLOCK_HASHTABLE_SIZE
- 1);
498 list_add(&b
->collision_resolving_node
, h
->table
+ hashval
);
501 static void btrfsic_block_hashtable_remove(struct btrfsic_block
*b
)
503 list_del(&b
->collision_resolving_node
);
506 static struct btrfsic_block
*btrfsic_block_hashtable_lookup(
507 struct block_device
*bdev
,
509 struct btrfsic_block_hashtable
*h
)
511 const unsigned int hashval
=
512 (((unsigned int)(dev_bytenr
>> 16)) ^
513 ((unsigned int)((uintptr_t)bdev
))) &
514 (BTRFSIC_BLOCK_HASHTABLE_SIZE
- 1);
515 struct btrfsic_block
*b
;
517 list_for_each_entry(b
, h
->table
+ hashval
, collision_resolving_node
) {
518 if (b
->dev_state
->bdev
== bdev
&& b
->dev_bytenr
== dev_bytenr
)
525 static void btrfsic_block_link_hashtable_init(
526 struct btrfsic_block_link_hashtable
*h
)
530 for (i
= 0; i
< BTRFSIC_BLOCK_LINK_HASHTABLE_SIZE
; i
++)
531 INIT_LIST_HEAD(h
->table
+ i
);
534 static void btrfsic_block_link_hashtable_add(
535 struct btrfsic_block_link
*l
,
536 struct btrfsic_block_link_hashtable
*h
)
538 const unsigned int hashval
=
539 (((unsigned int)(l
->block_ref_to
->dev_bytenr
>> 16)) ^
540 ((unsigned int)(l
->block_ref_from
->dev_bytenr
>> 16)) ^
541 ((unsigned int)((uintptr_t)l
->block_ref_to
->dev_state
->bdev
)) ^
542 ((unsigned int)((uintptr_t)l
->block_ref_from
->dev_state
->bdev
)))
543 & (BTRFSIC_BLOCK_LINK_HASHTABLE_SIZE
- 1);
545 BUG_ON(NULL
== l
->block_ref_to
);
546 BUG_ON(NULL
== l
->block_ref_from
);
547 list_add(&l
->collision_resolving_node
, h
->table
+ hashval
);
550 static void btrfsic_block_link_hashtable_remove(struct btrfsic_block_link
*l
)
552 list_del(&l
->collision_resolving_node
);
555 static struct btrfsic_block_link
*btrfsic_block_link_hashtable_lookup(
556 struct block_device
*bdev_ref_to
,
557 u64 dev_bytenr_ref_to
,
558 struct block_device
*bdev_ref_from
,
559 u64 dev_bytenr_ref_from
,
560 struct btrfsic_block_link_hashtable
*h
)
562 const unsigned int hashval
=
563 (((unsigned int)(dev_bytenr_ref_to
>> 16)) ^
564 ((unsigned int)(dev_bytenr_ref_from
>> 16)) ^
565 ((unsigned int)((uintptr_t)bdev_ref_to
)) ^
566 ((unsigned int)((uintptr_t)bdev_ref_from
))) &
567 (BTRFSIC_BLOCK_LINK_HASHTABLE_SIZE
- 1);
568 struct btrfsic_block_link
*l
;
570 list_for_each_entry(l
, h
->table
+ hashval
, collision_resolving_node
) {
571 BUG_ON(NULL
== l
->block_ref_to
);
572 BUG_ON(NULL
== l
->block_ref_from
);
573 if (l
->block_ref_to
->dev_state
->bdev
== bdev_ref_to
&&
574 l
->block_ref_to
->dev_bytenr
== dev_bytenr_ref_to
&&
575 l
->block_ref_from
->dev_state
->bdev
== bdev_ref_from
&&
576 l
->block_ref_from
->dev_bytenr
== dev_bytenr_ref_from
)
583 static void btrfsic_dev_state_hashtable_init(
584 struct btrfsic_dev_state_hashtable
*h
)
588 for (i
= 0; i
< BTRFSIC_DEV2STATE_HASHTABLE_SIZE
; i
++)
589 INIT_LIST_HEAD(h
->table
+ i
);
592 static void btrfsic_dev_state_hashtable_add(
593 struct btrfsic_dev_state
*ds
,
594 struct btrfsic_dev_state_hashtable
*h
)
596 const unsigned int hashval
=
597 (((unsigned int)((uintptr_t)ds
->bdev
->bd_dev
)) &
598 (BTRFSIC_DEV2STATE_HASHTABLE_SIZE
- 1));
600 list_add(&ds
->collision_resolving_node
, h
->table
+ hashval
);
603 static void btrfsic_dev_state_hashtable_remove(struct btrfsic_dev_state
*ds
)
605 list_del(&ds
->collision_resolving_node
);
608 static struct btrfsic_dev_state
*btrfsic_dev_state_hashtable_lookup(dev_t dev
,
609 struct btrfsic_dev_state_hashtable
*h
)
611 const unsigned int hashval
=
612 dev
& (BTRFSIC_DEV2STATE_HASHTABLE_SIZE
- 1);
613 struct btrfsic_dev_state
*ds
;
615 list_for_each_entry(ds
, h
->table
+ hashval
, collision_resolving_node
) {
616 if (ds
->bdev
->bd_dev
== dev
)
623 static int btrfsic_process_superblock(struct btrfsic_state
*state
,
624 struct btrfs_fs_devices
*fs_devices
)
626 struct btrfs_super_block
*selected_super
;
627 struct list_head
*dev_head
= &fs_devices
->devices
;
628 struct btrfs_device
*device
;
629 struct btrfsic_dev_state
*selected_dev_state
= NULL
;
633 selected_super
= kzalloc(sizeof(*selected_super
), GFP_NOFS
);
634 if (NULL
== selected_super
) {
635 pr_info("btrfsic: error, kmalloc failed!\n");
639 list_for_each_entry(device
, dev_head
, dev_list
) {
641 struct btrfsic_dev_state
*dev_state
;
643 if (!device
->bdev
|| !device
->name
)
646 dev_state
= btrfsic_dev_state_lookup(device
->bdev
->bd_dev
);
647 BUG_ON(NULL
== dev_state
);
648 for (i
= 0; i
< BTRFS_SUPER_MIRROR_MAX
; i
++) {
649 ret
= btrfsic_process_superblock_dev_mirror(
650 state
, dev_state
, device
, i
,
651 &selected_dev_state
, selected_super
);
652 if (0 != ret
&& 0 == i
) {
653 kfree(selected_super
);
659 if (NULL
== state
->latest_superblock
) {
660 pr_info("btrfsic: no superblock found!\n");
661 kfree(selected_super
);
665 state
->csum_size
= btrfs_super_csum_size(selected_super
);
667 for (pass
= 0; pass
< 3; pass
++) {
674 next_bytenr
= btrfs_super_root(selected_super
);
675 if (state
->print_mask
&
676 BTRFSIC_PRINT_MASK_ROOT_CHUNK_LOG_TREE_LOCATION
)
677 pr_info("root@%llu\n", next_bytenr
);
680 next_bytenr
= btrfs_super_chunk_root(selected_super
);
681 if (state
->print_mask
&
682 BTRFSIC_PRINT_MASK_ROOT_CHUNK_LOG_TREE_LOCATION
)
683 pr_info("chunk@%llu\n", next_bytenr
);
686 next_bytenr
= btrfs_super_log_root(selected_super
);
687 if (0 == next_bytenr
)
689 if (state
->print_mask
&
690 BTRFSIC_PRINT_MASK_ROOT_CHUNK_LOG_TREE_LOCATION
)
691 pr_info("log@%llu\n", next_bytenr
);
695 num_copies
= btrfs_num_copies(state
->fs_info
, next_bytenr
,
696 state
->metablock_size
);
697 if (state
->print_mask
& BTRFSIC_PRINT_MASK_NUM_COPIES
)
698 pr_info("num_copies(log_bytenr=%llu) = %d\n",
699 next_bytenr
, num_copies
);
701 for (mirror_num
= 1; mirror_num
<= num_copies
; mirror_num
++) {
702 struct btrfsic_block
*next_block
;
703 struct btrfsic_block_data_ctx tmp_next_block_ctx
;
704 struct btrfsic_block_link
*l
;
706 ret
= btrfsic_map_block(state
, next_bytenr
,
707 state
->metablock_size
,
711 pr_info("btrfsic: btrfsic_map_block(root @%llu, mirror %d) failed!\n",
712 next_bytenr
, mirror_num
);
713 kfree(selected_super
);
717 next_block
= btrfsic_block_hashtable_lookup(
718 tmp_next_block_ctx
.dev
->bdev
,
719 tmp_next_block_ctx
.dev_bytenr
,
720 &state
->block_hashtable
);
721 BUG_ON(NULL
== next_block
);
723 l
= btrfsic_block_link_hashtable_lookup(
724 tmp_next_block_ctx
.dev
->bdev
,
725 tmp_next_block_ctx
.dev_bytenr
,
726 state
->latest_superblock
->dev_state
->
728 state
->latest_superblock
->dev_bytenr
,
729 &state
->block_link_hashtable
);
732 ret
= btrfsic_read_block(state
, &tmp_next_block_ctx
);
733 if (ret
< (int)PAGE_SIZE
) {
734 pr_info("btrfsic: read @logical %llu failed!\n",
735 tmp_next_block_ctx
.start
);
736 btrfsic_release_block_ctx(&tmp_next_block_ctx
);
737 kfree(selected_super
);
741 ret
= btrfsic_process_metablock(state
,
744 BTRFS_MAX_LEVEL
+ 3, 1);
745 btrfsic_release_block_ctx(&tmp_next_block_ctx
);
749 kfree(selected_super
);
753 static int btrfsic_process_superblock_dev_mirror(
754 struct btrfsic_state
*state
,
755 struct btrfsic_dev_state
*dev_state
,
756 struct btrfs_device
*device
,
757 int superblock_mirror_num
,
758 struct btrfsic_dev_state
**selected_dev_state
,
759 struct btrfs_super_block
*selected_super
)
761 struct btrfs_fs_info
*fs_info
= state
->fs_info
;
762 struct btrfs_super_block
*super_tmp
;
764 struct btrfsic_block
*superblock_tmp
;
766 struct block_device
*const superblock_bdev
= device
->bdev
;
768 struct address_space
*mapping
= superblock_bdev
->bd_inode
->i_mapping
;
771 /* super block bytenr is always the unmapped device bytenr */
772 dev_bytenr
= btrfs_sb_offset(superblock_mirror_num
);
773 if (dev_bytenr
+ BTRFS_SUPER_INFO_SIZE
> device
->commit_total_bytes
)
776 page
= read_cache_page_gfp(mapping
, dev_bytenr
>> PAGE_SHIFT
, GFP_NOFS
);
780 super_tmp
= page_address(page
);
782 if (btrfs_super_bytenr(super_tmp
) != dev_bytenr
||
783 btrfs_super_magic(super_tmp
) != BTRFS_MAGIC
||
784 memcmp(device
->uuid
, super_tmp
->dev_item
.uuid
, BTRFS_UUID_SIZE
) ||
785 btrfs_super_nodesize(super_tmp
) != state
->metablock_size
||
786 btrfs_super_sectorsize(super_tmp
) != state
->datablock_size
) {
792 btrfsic_block_hashtable_lookup(superblock_bdev
,
794 &state
->block_hashtable
);
795 if (NULL
== superblock_tmp
) {
796 superblock_tmp
= btrfsic_block_alloc();
797 if (NULL
== superblock_tmp
) {
798 pr_info("btrfsic: error, kmalloc failed!\n");
802 /* for superblock, only the dev_bytenr makes sense */
803 superblock_tmp
->dev_bytenr
= dev_bytenr
;
804 superblock_tmp
->dev_state
= dev_state
;
805 superblock_tmp
->logical_bytenr
= dev_bytenr
;
806 superblock_tmp
->generation
= btrfs_super_generation(super_tmp
);
807 superblock_tmp
->is_metadata
= 1;
808 superblock_tmp
->is_superblock
= 1;
809 superblock_tmp
->is_iodone
= 1;
810 superblock_tmp
->never_written
= 0;
811 superblock_tmp
->mirror_num
= 1 + superblock_mirror_num
;
812 if (state
->print_mask
& BTRFSIC_PRINT_MASK_SUPERBLOCK_WRITE
)
813 btrfs_info_in_rcu(fs_info
,
814 "new initial S-block (bdev %p, %s) @%llu (%s/%llu/%d)",
816 rcu_str_deref(device
->name
), dev_bytenr
,
817 dev_state
->name
, dev_bytenr
,
818 superblock_mirror_num
);
819 list_add(&superblock_tmp
->all_blocks_node
,
820 &state
->all_blocks_list
);
821 btrfsic_block_hashtable_add(superblock_tmp
,
822 &state
->block_hashtable
);
825 /* select the one with the highest generation field */
826 if (btrfs_super_generation(super_tmp
) >
827 state
->max_superblock_generation
||
828 0 == state
->max_superblock_generation
) {
829 memcpy(selected_super
, super_tmp
, sizeof(*selected_super
));
830 *selected_dev_state
= dev_state
;
831 state
->max_superblock_generation
=
832 btrfs_super_generation(super_tmp
);
833 state
->latest_superblock
= superblock_tmp
;
836 for (pass
= 0; pass
< 3; pass
++) {
840 const char *additional_string
= NULL
;
841 struct btrfs_disk_key tmp_disk_key
;
843 tmp_disk_key
.type
= BTRFS_ROOT_ITEM_KEY
;
844 tmp_disk_key
.offset
= 0;
847 btrfs_set_disk_key_objectid(&tmp_disk_key
,
848 BTRFS_ROOT_TREE_OBJECTID
);
849 additional_string
= "initial root ";
850 next_bytenr
= btrfs_super_root(super_tmp
);
853 btrfs_set_disk_key_objectid(&tmp_disk_key
,
854 BTRFS_CHUNK_TREE_OBJECTID
);
855 additional_string
= "initial chunk ";
856 next_bytenr
= btrfs_super_chunk_root(super_tmp
);
859 btrfs_set_disk_key_objectid(&tmp_disk_key
,
860 BTRFS_TREE_LOG_OBJECTID
);
861 additional_string
= "initial log ";
862 next_bytenr
= btrfs_super_log_root(super_tmp
);
863 if (0 == next_bytenr
)
868 num_copies
= btrfs_num_copies(fs_info
, next_bytenr
,
869 state
->metablock_size
);
870 if (state
->print_mask
& BTRFSIC_PRINT_MASK_NUM_COPIES
)
871 pr_info("num_copies(log_bytenr=%llu) = %d\n",
872 next_bytenr
, num_copies
);
873 for (mirror_num
= 1; mirror_num
<= num_copies
; mirror_num
++) {
874 struct btrfsic_block
*next_block
;
875 struct btrfsic_block_data_ctx tmp_next_block_ctx
;
876 struct btrfsic_block_link
*l
;
878 if (btrfsic_map_block(state
, next_bytenr
,
879 state
->metablock_size
,
882 pr_info("btrfsic: btrfsic_map_block(bytenr @%llu, mirror %d) failed!\n",
883 next_bytenr
, mirror_num
);
888 next_block
= btrfsic_block_lookup_or_add(
889 state
, &tmp_next_block_ctx
,
890 additional_string
, 1, 1, 0,
892 if (NULL
== next_block
) {
893 btrfsic_release_block_ctx(&tmp_next_block_ctx
);
898 next_block
->disk_key
= tmp_disk_key
;
899 next_block
->generation
= BTRFSIC_GENERATION_UNKNOWN
;
900 l
= btrfsic_block_link_lookup_or_add(
901 state
, &tmp_next_block_ctx
,
902 next_block
, superblock_tmp
,
903 BTRFSIC_GENERATION_UNKNOWN
);
904 btrfsic_release_block_ctx(&tmp_next_block_ctx
);
911 if (state
->print_mask
& BTRFSIC_PRINT_MASK_INITIAL_ALL_TREES
)
912 btrfsic_dump_tree_sub(state
, superblock_tmp
, 0);
919 static struct btrfsic_stack_frame
*btrfsic_stack_frame_alloc(void)
921 struct btrfsic_stack_frame
*sf
;
923 sf
= kzalloc(sizeof(*sf
), GFP_NOFS
);
925 pr_info("btrfsic: alloc memory failed!\n");
927 sf
->magic
= BTRFSIC_BLOCK_STACK_FRAME_MAGIC_NUMBER
;
931 static void btrfsic_stack_frame_free(struct btrfsic_stack_frame
*sf
)
933 BUG_ON(!(NULL
== sf
||
934 BTRFSIC_BLOCK_STACK_FRAME_MAGIC_NUMBER
== sf
->magic
));
938 static noinline_for_stack
int btrfsic_process_metablock(
939 struct btrfsic_state
*state
,
940 struct btrfsic_block
*const first_block
,
941 struct btrfsic_block_data_ctx
*const first_block_ctx
,
942 int first_limit_nesting
, int force_iodone_flag
)
944 struct btrfsic_stack_frame initial_stack_frame
= { 0 };
945 struct btrfsic_stack_frame
*sf
;
946 struct btrfsic_stack_frame
*next_stack
;
947 struct btrfs_header
*const first_hdr
=
948 (struct btrfs_header
*)first_block_ctx
->datav
[0];
951 sf
= &initial_stack_frame
;
954 sf
->limit_nesting
= first_limit_nesting
;
955 sf
->block
= first_block
;
956 sf
->block_ctx
= first_block_ctx
;
957 sf
->next_block
= NULL
;
961 continue_with_new_stack_frame
:
962 sf
->block
->generation
= le64_to_cpu(sf
->hdr
->generation
);
963 if (0 == sf
->hdr
->level
) {
964 struct btrfs_leaf
*const leafhdr
=
965 (struct btrfs_leaf
*)sf
->hdr
;
968 sf
->nr
= btrfs_stack_header_nritems(&leafhdr
->header
);
970 if (state
->print_mask
& BTRFSIC_PRINT_MASK_VERBOSE
)
971 pr_info("leaf %llu items %d generation %llu owner %llu\n",
972 sf
->block_ctx
->start
, sf
->nr
,
973 btrfs_stack_header_generation(
975 btrfs_stack_header_owner(
979 continue_with_current_leaf_stack_frame
:
980 if (0 == sf
->num_copies
|| sf
->mirror_num
> sf
->num_copies
) {
985 if (sf
->i
< sf
->nr
) {
986 struct btrfs_item disk_item
;
987 u32 disk_item_offset
=
988 (uintptr_t)(leafhdr
->items
+ sf
->i
) -
990 struct btrfs_disk_key
*disk_key
;
995 if (disk_item_offset
+ sizeof(struct btrfs_item
) >
996 sf
->block_ctx
->len
) {
997 leaf_item_out_of_bounce_error
:
998 pr_info("btrfsic: leaf item out of bounce at logical %llu, dev %s\n",
999 sf
->block_ctx
->start
,
1000 sf
->block_ctx
->dev
->name
);
1001 goto one_stack_frame_backwards
;
1003 btrfsic_read_from_block_data(sf
->block_ctx
,
1006 sizeof(struct btrfs_item
));
1007 item_offset
= btrfs_stack_item_offset(&disk_item
);
1008 item_size
= btrfs_stack_item_size(&disk_item
);
1009 disk_key
= &disk_item
.key
;
1010 type
= btrfs_disk_key_type(disk_key
);
1012 if (BTRFS_ROOT_ITEM_KEY
== type
) {
1013 struct btrfs_root_item root_item
;
1014 u32 root_item_offset
;
1017 root_item_offset
= item_offset
+
1018 offsetof(struct btrfs_leaf
, items
);
1019 if (root_item_offset
+ item_size
>
1021 goto leaf_item_out_of_bounce_error
;
1022 btrfsic_read_from_block_data(
1023 sf
->block_ctx
, &root_item
,
1026 next_bytenr
= btrfs_root_bytenr(&root_item
);
1029 btrfsic_create_link_to_next_block(
1035 &sf
->next_block_ctx
,
1041 btrfs_root_generation(
1044 goto one_stack_frame_backwards
;
1046 if (NULL
!= sf
->next_block
) {
1047 struct btrfs_header
*const next_hdr
=
1048 (struct btrfs_header
*)
1049 sf
->next_block_ctx
.datav
[0];
1052 btrfsic_stack_frame_alloc();
1053 if (NULL
== next_stack
) {
1055 btrfsic_release_block_ctx(
1058 goto one_stack_frame_backwards
;
1062 next_stack
->block
= sf
->next_block
;
1063 next_stack
->block_ctx
=
1064 &sf
->next_block_ctx
;
1065 next_stack
->next_block
= NULL
;
1066 next_stack
->hdr
= next_hdr
;
1067 next_stack
->limit_nesting
=
1068 sf
->limit_nesting
- 1;
1069 next_stack
->prev
= sf
;
1071 goto continue_with_new_stack_frame
;
1073 } else if (BTRFS_EXTENT_DATA_KEY
== type
&&
1074 state
->include_extent_data
) {
1075 sf
->error
= btrfsic_handle_extent_data(
1082 goto one_stack_frame_backwards
;
1085 goto continue_with_current_leaf_stack_frame
;
1088 struct btrfs_node
*const nodehdr
= (struct btrfs_node
*)sf
->hdr
;
1091 sf
->nr
= btrfs_stack_header_nritems(&nodehdr
->header
);
1093 if (state
->print_mask
& BTRFSIC_PRINT_MASK_VERBOSE
)
1094 pr_info("node %llu level %d items %d generation %llu owner %llu\n",
1095 sf
->block_ctx
->start
,
1096 nodehdr
->header
.level
, sf
->nr
,
1097 btrfs_stack_header_generation(
1099 btrfs_stack_header_owner(
1103 continue_with_current_node_stack_frame
:
1104 if (0 == sf
->num_copies
|| sf
->mirror_num
> sf
->num_copies
) {
1109 if (sf
->i
< sf
->nr
) {
1110 struct btrfs_key_ptr key_ptr
;
1114 key_ptr_offset
= (uintptr_t)(nodehdr
->ptrs
+ sf
->i
) -
1116 if (key_ptr_offset
+ sizeof(struct btrfs_key_ptr
) >
1117 sf
->block_ctx
->len
) {
1118 pr_info("btrfsic: node item out of bounce at logical %llu, dev %s\n",
1119 sf
->block_ctx
->start
,
1120 sf
->block_ctx
->dev
->name
);
1121 goto one_stack_frame_backwards
;
1123 btrfsic_read_from_block_data(
1124 sf
->block_ctx
, &key_ptr
, key_ptr_offset
,
1125 sizeof(struct btrfs_key_ptr
));
1126 next_bytenr
= btrfs_stack_key_blockptr(&key_ptr
);
1128 sf
->error
= btrfsic_create_link_to_next_block(
1134 &sf
->next_block_ctx
,
1140 btrfs_stack_key_generation(&key_ptr
));
1142 goto one_stack_frame_backwards
;
1144 if (NULL
!= sf
->next_block
) {
1145 struct btrfs_header
*const next_hdr
=
1146 (struct btrfs_header
*)
1147 sf
->next_block_ctx
.datav
[0];
1149 next_stack
= btrfsic_stack_frame_alloc();
1150 if (NULL
== next_stack
) {
1152 goto one_stack_frame_backwards
;
1156 next_stack
->block
= sf
->next_block
;
1157 next_stack
->block_ctx
= &sf
->next_block_ctx
;
1158 next_stack
->next_block
= NULL
;
1159 next_stack
->hdr
= next_hdr
;
1160 next_stack
->limit_nesting
=
1161 sf
->limit_nesting
- 1;
1162 next_stack
->prev
= sf
;
1164 goto continue_with_new_stack_frame
;
1167 goto continue_with_current_node_stack_frame
;
1171 one_stack_frame_backwards
:
1172 if (NULL
!= sf
->prev
) {
1173 struct btrfsic_stack_frame
*const prev
= sf
->prev
;
1175 /* the one for the initial block is freed in the caller */
1176 btrfsic_release_block_ctx(sf
->block_ctx
);
1179 prev
->error
= sf
->error
;
1180 btrfsic_stack_frame_free(sf
);
1182 goto one_stack_frame_backwards
;
1185 btrfsic_stack_frame_free(sf
);
1187 goto continue_with_new_stack_frame
;
1189 BUG_ON(&initial_stack_frame
!= sf
);
1195 static void btrfsic_read_from_block_data(
1196 struct btrfsic_block_data_ctx
*block_ctx
,
1197 void *dstv
, u32 offset
, size_t len
)
1202 char *dst
= (char *)dstv
;
1203 size_t start_offset
= offset_in_page(block_ctx
->start
);
1204 unsigned long i
= (start_offset
+ offset
) >> PAGE_SHIFT
;
1206 WARN_ON(offset
+ len
> block_ctx
->len
);
1207 pgoff
= offset_in_page(start_offset
+ offset
);
1210 cur
= min(len
, ((size_t)PAGE_SIZE
- pgoff
));
1211 BUG_ON(i
>= DIV_ROUND_UP(block_ctx
->len
, PAGE_SIZE
));
1212 kaddr
= block_ctx
->datav
[i
];
1213 memcpy(dst
, kaddr
+ pgoff
, cur
);
1222 static int btrfsic_create_link_to_next_block(
1223 struct btrfsic_state
*state
,
1224 struct btrfsic_block
*block
,
1225 struct btrfsic_block_data_ctx
*block_ctx
,
1228 struct btrfsic_block_data_ctx
*next_block_ctx
,
1229 struct btrfsic_block
**next_blockp
,
1230 int force_iodone_flag
,
1231 int *num_copiesp
, int *mirror_nump
,
1232 struct btrfs_disk_key
*disk_key
,
1233 u64 parent_generation
)
1235 struct btrfs_fs_info
*fs_info
= state
->fs_info
;
1236 struct btrfsic_block
*next_block
= NULL
;
1238 struct btrfsic_block_link
*l
;
1239 int did_alloc_block_link
;
1240 int block_was_created
;
1242 *next_blockp
= NULL
;
1243 if (0 == *num_copiesp
) {
1244 *num_copiesp
= btrfs_num_copies(fs_info
, next_bytenr
,
1245 state
->metablock_size
);
1246 if (state
->print_mask
& BTRFSIC_PRINT_MASK_NUM_COPIES
)
1247 pr_info("num_copies(log_bytenr=%llu) = %d\n",
1248 next_bytenr
, *num_copiesp
);
1252 if (*mirror_nump
> *num_copiesp
)
1255 if (state
->print_mask
& BTRFSIC_PRINT_MASK_VERBOSE
)
1256 pr_info("btrfsic_create_link_to_next_block(mirror_num=%d)\n",
1258 ret
= btrfsic_map_block(state
, next_bytenr
,
1259 state
->metablock_size
,
1260 next_block_ctx
, *mirror_nump
);
1262 pr_info("btrfsic: btrfsic_map_block(@%llu, mirror=%d) failed!\n",
1263 next_bytenr
, *mirror_nump
);
1264 btrfsic_release_block_ctx(next_block_ctx
);
1265 *next_blockp
= NULL
;
1269 next_block
= btrfsic_block_lookup_or_add(state
,
1270 next_block_ctx
, "referenced ",
1271 1, force_iodone_flag
,
1274 &block_was_created
);
1275 if (NULL
== next_block
) {
1276 btrfsic_release_block_ctx(next_block_ctx
);
1277 *next_blockp
= NULL
;
1280 if (block_was_created
) {
1282 next_block
->generation
= BTRFSIC_GENERATION_UNKNOWN
;
1284 if (state
->print_mask
& BTRFSIC_PRINT_MASK_VERBOSE
) {
1285 if (next_block
->logical_bytenr
!= next_bytenr
&&
1286 !(!next_block
->is_metadata
&&
1287 0 == next_block
->logical_bytenr
))
1288 pr_info("Referenced block @%llu (%s/%llu/%d) found in hash table, %c, bytenr mismatch (!= stored %llu).\n",
1289 next_bytenr
, next_block_ctx
->dev
->name
,
1290 next_block_ctx
->dev_bytenr
, *mirror_nump
,
1291 btrfsic_get_block_type(state
,
1293 next_block
->logical_bytenr
);
1295 pr_info("Referenced block @%llu (%s/%llu/%d) found in hash table, %c.\n",
1296 next_bytenr
, next_block_ctx
->dev
->name
,
1297 next_block_ctx
->dev_bytenr
, *mirror_nump
,
1298 btrfsic_get_block_type(state
,
1301 next_block
->logical_bytenr
= next_bytenr
;
1303 next_block
->mirror_num
= *mirror_nump
;
1304 l
= btrfsic_block_link_hashtable_lookup(
1305 next_block_ctx
->dev
->bdev
,
1306 next_block_ctx
->dev_bytenr
,
1307 block_ctx
->dev
->bdev
,
1308 block_ctx
->dev_bytenr
,
1309 &state
->block_link_hashtable
);
1312 next_block
->disk_key
= *disk_key
;
1314 l
= btrfsic_block_link_alloc();
1316 pr_info("btrfsic: error, kmalloc failed!\n");
1317 btrfsic_release_block_ctx(next_block_ctx
);
1318 *next_blockp
= NULL
;
1322 did_alloc_block_link
= 1;
1323 l
->block_ref_to
= next_block
;
1324 l
->block_ref_from
= block
;
1326 l
->parent_generation
= parent_generation
;
1328 if (state
->print_mask
& BTRFSIC_PRINT_MASK_VERBOSE
)
1329 btrfsic_print_add_link(state
, l
);
1331 list_add(&l
->node_ref_to
, &block
->ref_to_list
);
1332 list_add(&l
->node_ref_from
, &next_block
->ref_from_list
);
1334 btrfsic_block_link_hashtable_add(l
,
1335 &state
->block_link_hashtable
);
1337 did_alloc_block_link
= 0;
1338 if (0 == limit_nesting
) {
1340 l
->parent_generation
= parent_generation
;
1341 if (state
->print_mask
& BTRFSIC_PRINT_MASK_VERBOSE
)
1342 btrfsic_print_add_link(state
, l
);
1346 if (limit_nesting
> 0 && did_alloc_block_link
) {
1347 ret
= btrfsic_read_block(state
, next_block_ctx
);
1348 if (ret
< (int)next_block_ctx
->len
) {
1349 pr_info("btrfsic: read block @logical %llu failed!\n",
1351 btrfsic_release_block_ctx(next_block_ctx
);
1352 *next_blockp
= NULL
;
1356 *next_blockp
= next_block
;
1358 *next_blockp
= NULL
;
1365 static int btrfsic_handle_extent_data(
1366 struct btrfsic_state
*state
,
1367 struct btrfsic_block
*block
,
1368 struct btrfsic_block_data_ctx
*block_ctx
,
1369 u32 item_offset
, int force_iodone_flag
)
1371 struct btrfs_fs_info
*fs_info
= state
->fs_info
;
1372 struct btrfs_file_extent_item file_extent_item
;
1373 u64 file_extent_item_offset
;
1377 struct btrfsic_block_link
*l
;
1380 file_extent_item_offset
= offsetof(struct btrfs_leaf
, items
) +
1382 if (file_extent_item_offset
+
1383 offsetof(struct btrfs_file_extent_item
, disk_num_bytes
) >
1385 pr_info("btrfsic: file item out of bounce at logical %llu, dev %s\n",
1386 block_ctx
->start
, block_ctx
->dev
->name
);
1390 btrfsic_read_from_block_data(block_ctx
, &file_extent_item
,
1391 file_extent_item_offset
,
1392 offsetof(struct btrfs_file_extent_item
, disk_num_bytes
));
1393 if (BTRFS_FILE_EXTENT_REG
!= file_extent_item
.type
||
1394 btrfs_stack_file_extent_disk_bytenr(&file_extent_item
) == 0) {
1395 if (state
->print_mask
& BTRFSIC_PRINT_MASK_VERY_VERBOSE
)
1396 pr_info("extent_data: type %u, disk_bytenr = %llu\n",
1397 file_extent_item
.type
,
1398 btrfs_stack_file_extent_disk_bytenr(
1399 &file_extent_item
));
1403 if (file_extent_item_offset
+ sizeof(struct btrfs_file_extent_item
) >
1405 pr_info("btrfsic: file item out of bounce at logical %llu, dev %s\n",
1406 block_ctx
->start
, block_ctx
->dev
->name
);
1409 btrfsic_read_from_block_data(block_ctx
, &file_extent_item
,
1410 file_extent_item_offset
,
1411 sizeof(struct btrfs_file_extent_item
));
1412 next_bytenr
= btrfs_stack_file_extent_disk_bytenr(&file_extent_item
);
1413 if (btrfs_stack_file_extent_compression(&file_extent_item
) ==
1414 BTRFS_COMPRESS_NONE
) {
1415 next_bytenr
+= btrfs_stack_file_extent_offset(&file_extent_item
);
1416 num_bytes
= btrfs_stack_file_extent_num_bytes(&file_extent_item
);
1418 num_bytes
= btrfs_stack_file_extent_disk_num_bytes(&file_extent_item
);
1420 generation
= btrfs_stack_file_extent_generation(&file_extent_item
);
1422 if (state
->print_mask
& BTRFSIC_PRINT_MASK_VERY_VERBOSE
)
1423 pr_info("extent_data: type %u, disk_bytenr = %llu, offset = %llu, num_bytes = %llu\n",
1424 file_extent_item
.type
,
1425 btrfs_stack_file_extent_disk_bytenr(&file_extent_item
),
1426 btrfs_stack_file_extent_offset(&file_extent_item
),
1428 while (num_bytes
> 0) {
1433 if (num_bytes
> state
->datablock_size
)
1434 chunk_len
= state
->datablock_size
;
1436 chunk_len
= num_bytes
;
1438 num_copies
= btrfs_num_copies(fs_info
, next_bytenr
,
1439 state
->datablock_size
);
1440 if (state
->print_mask
& BTRFSIC_PRINT_MASK_NUM_COPIES
)
1441 pr_info("num_copies(log_bytenr=%llu) = %d\n",
1442 next_bytenr
, num_copies
);
1443 for (mirror_num
= 1; mirror_num
<= num_copies
; mirror_num
++) {
1444 struct btrfsic_block_data_ctx next_block_ctx
;
1445 struct btrfsic_block
*next_block
;
1446 int block_was_created
;
1448 if (state
->print_mask
& BTRFSIC_PRINT_MASK_VERBOSE
)
1449 pr_info("btrfsic_handle_extent_data(mirror_num=%d)\n",
1451 if (state
->print_mask
& BTRFSIC_PRINT_MASK_VERY_VERBOSE
)
1452 pr_info("\tdisk_bytenr = %llu, num_bytes %u\n",
1453 next_bytenr
, chunk_len
);
1454 ret
= btrfsic_map_block(state
, next_bytenr
,
1455 chunk_len
, &next_block_ctx
,
1458 pr_info("btrfsic: btrfsic_map_block(@%llu, mirror=%d) failed!\n",
1459 next_bytenr
, mirror_num
);
1463 next_block
= btrfsic_block_lookup_or_add(
1471 &block_was_created
);
1472 if (NULL
== next_block
) {
1473 pr_info("btrfsic: error, kmalloc failed!\n");
1474 btrfsic_release_block_ctx(&next_block_ctx
);
1477 if (!block_was_created
) {
1478 if ((state
->print_mask
&
1479 BTRFSIC_PRINT_MASK_VERBOSE
) &&
1480 next_block
->logical_bytenr
!= next_bytenr
&&
1481 !(!next_block
->is_metadata
&&
1482 0 == next_block
->logical_bytenr
)) {
1483 pr_info("Referenced block @%llu (%s/%llu/%d) found in hash table, D, bytenr mismatch (!= stored %llu).\n",
1485 next_block_ctx
.dev
->name
,
1486 next_block_ctx
.dev_bytenr
,
1488 next_block
->logical_bytenr
);
1490 next_block
->logical_bytenr
= next_bytenr
;
1491 next_block
->mirror_num
= mirror_num
;
1494 l
= btrfsic_block_link_lookup_or_add(state
,
1498 btrfsic_release_block_ctx(&next_block_ctx
);
1503 next_bytenr
+= chunk_len
;
1504 num_bytes
-= chunk_len
;
1510 static int btrfsic_map_block(struct btrfsic_state
*state
, u64 bytenr
, u32 len
,
1511 struct btrfsic_block_data_ctx
*block_ctx_out
,
1514 struct btrfs_fs_info
*fs_info
= state
->fs_info
;
1517 struct btrfs_bio
*multi
= NULL
;
1518 struct btrfs_device
*device
;
1521 ret
= btrfs_map_block(fs_info
, BTRFS_MAP_READ
,
1522 bytenr
, &length
, &multi
, mirror_num
);
1525 block_ctx_out
->start
= 0;
1526 block_ctx_out
->dev_bytenr
= 0;
1527 block_ctx_out
->len
= 0;
1528 block_ctx_out
->dev
= NULL
;
1529 block_ctx_out
->datav
= NULL
;
1530 block_ctx_out
->pagev
= NULL
;
1531 block_ctx_out
->mem_to_free
= NULL
;
1536 device
= multi
->stripes
[0].dev
;
1537 if (test_bit(BTRFS_DEV_STATE_MISSING
, &device
->dev_state
) ||
1538 !device
->bdev
|| !device
->name
)
1539 block_ctx_out
->dev
= NULL
;
1541 block_ctx_out
->dev
= btrfsic_dev_state_lookup(
1542 device
->bdev
->bd_dev
);
1543 block_ctx_out
->dev_bytenr
= multi
->stripes
[0].physical
;
1544 block_ctx_out
->start
= bytenr
;
1545 block_ctx_out
->len
= len
;
1546 block_ctx_out
->datav
= NULL
;
1547 block_ctx_out
->pagev
= NULL
;
1548 block_ctx_out
->mem_to_free
= NULL
;
1551 if (NULL
== block_ctx_out
->dev
) {
1553 pr_info("btrfsic: error, cannot lookup dev (#1)!\n");
1559 static void btrfsic_release_block_ctx(struct btrfsic_block_data_ctx
*block_ctx
)
1561 if (block_ctx
->mem_to_free
) {
1562 unsigned int num_pages
;
1564 BUG_ON(!block_ctx
->datav
);
1565 BUG_ON(!block_ctx
->pagev
);
1566 num_pages
= (block_ctx
->len
+ (u64
)PAGE_SIZE
- 1) >>
1568 while (num_pages
> 0) {
1570 if (block_ctx
->datav
[num_pages
]) {
1571 kunmap(block_ctx
->pagev
[num_pages
]);
1572 block_ctx
->datav
[num_pages
] = NULL
;
1574 if (block_ctx
->pagev
[num_pages
]) {
1575 __free_page(block_ctx
->pagev
[num_pages
]);
1576 block_ctx
->pagev
[num_pages
] = NULL
;
1580 kfree(block_ctx
->mem_to_free
);
1581 block_ctx
->mem_to_free
= NULL
;
1582 block_ctx
->pagev
= NULL
;
1583 block_ctx
->datav
= NULL
;
1587 static int btrfsic_read_block(struct btrfsic_state
*state
,
1588 struct btrfsic_block_data_ctx
*block_ctx
)
1590 unsigned int num_pages
;
1596 BUG_ON(block_ctx
->datav
);
1597 BUG_ON(block_ctx
->pagev
);
1598 BUG_ON(block_ctx
->mem_to_free
);
1599 if (!PAGE_ALIGNED(block_ctx
->dev_bytenr
)) {
1600 pr_info("btrfsic: read_block() with unaligned bytenr %llu\n",
1601 block_ctx
->dev_bytenr
);
1605 num_pages
= (block_ctx
->len
+ (u64
)PAGE_SIZE
- 1) >>
1607 size
= sizeof(*block_ctx
->datav
) + sizeof(*block_ctx
->pagev
);
1608 block_ctx
->mem_to_free
= kcalloc(num_pages
, size
, GFP_NOFS
);
1609 if (!block_ctx
->mem_to_free
)
1611 block_ctx
->datav
= block_ctx
->mem_to_free
;
1612 block_ctx
->pagev
= (struct page
**)(block_ctx
->datav
+ num_pages
);
1613 for (i
= 0; i
< num_pages
; i
++) {
1614 block_ctx
->pagev
[i
] = alloc_page(GFP_NOFS
);
1615 if (!block_ctx
->pagev
[i
])
1619 dev_bytenr
= block_ctx
->dev_bytenr
;
1620 for (i
= 0; i
< num_pages
;) {
1624 bio
= btrfs_io_bio_alloc(num_pages
- i
);
1625 bio_set_dev(bio
, block_ctx
->dev
->bdev
);
1626 bio
->bi_iter
.bi_sector
= dev_bytenr
>> 9;
1627 bio
->bi_opf
= REQ_OP_READ
;
1629 for (j
= i
; j
< num_pages
; j
++) {
1630 ret
= bio_add_page(bio
, block_ctx
->pagev
[j
],
1632 if (PAGE_SIZE
!= ret
)
1636 pr_info("btrfsic: error, failed to add a single page!\n");
1639 if (submit_bio_wait(bio
)) {
1640 pr_info("btrfsic: read error at logical %llu dev %s!\n",
1641 block_ctx
->start
, block_ctx
->dev
->name
);
1646 dev_bytenr
+= (j
- i
) * PAGE_SIZE
;
1649 for (i
= 0; i
< num_pages
; i
++)
1650 block_ctx
->datav
[i
] = kmap(block_ctx
->pagev
[i
]);
1652 return block_ctx
->len
;
1655 static void btrfsic_dump_database(struct btrfsic_state
*state
)
1657 const struct btrfsic_block
*b_all
;
1659 BUG_ON(NULL
== state
);
1661 pr_info("all_blocks_list:\n");
1662 list_for_each_entry(b_all
, &state
->all_blocks_list
, all_blocks_node
) {
1663 const struct btrfsic_block_link
*l
;
1665 pr_info("%c-block @%llu (%s/%llu/%d)\n",
1666 btrfsic_get_block_type(state
, b_all
),
1667 b_all
->logical_bytenr
, b_all
->dev_state
->name
,
1668 b_all
->dev_bytenr
, b_all
->mirror_num
);
1670 list_for_each_entry(l
, &b_all
->ref_to_list
, node_ref_to
) {
1671 pr_info(" %c @%llu (%s/%llu/%d) refers %u* to %c @%llu (%s/%llu/%d)\n",
1672 btrfsic_get_block_type(state
, b_all
),
1673 b_all
->logical_bytenr
, b_all
->dev_state
->name
,
1674 b_all
->dev_bytenr
, b_all
->mirror_num
,
1676 btrfsic_get_block_type(state
, l
->block_ref_to
),
1677 l
->block_ref_to
->logical_bytenr
,
1678 l
->block_ref_to
->dev_state
->name
,
1679 l
->block_ref_to
->dev_bytenr
,
1680 l
->block_ref_to
->mirror_num
);
1683 list_for_each_entry(l
, &b_all
->ref_from_list
, node_ref_from
) {
1684 pr_info(" %c @%llu (%s/%llu/%d) is ref %u* from %c @%llu (%s/%llu/%d)\n",
1685 btrfsic_get_block_type(state
, b_all
),
1686 b_all
->logical_bytenr
, b_all
->dev_state
->name
,
1687 b_all
->dev_bytenr
, b_all
->mirror_num
,
1689 btrfsic_get_block_type(state
, l
->block_ref_from
),
1690 l
->block_ref_from
->logical_bytenr
,
1691 l
->block_ref_from
->dev_state
->name
,
1692 l
->block_ref_from
->dev_bytenr
,
1693 l
->block_ref_from
->mirror_num
);
1701 * Test whether the disk block contains a tree block (leaf or node)
1702 * (note that this test fails for the super block)
1704 static noinline_for_stack
int btrfsic_test_for_metadata(
1705 struct btrfsic_state
*state
,
1706 char **datav
, unsigned int num_pages
)
1708 struct btrfs_fs_info
*fs_info
= state
->fs_info
;
1709 SHASH_DESC_ON_STACK(shash
, fs_info
->csum_shash
);
1710 struct btrfs_header
*h
;
1711 u8 csum
[BTRFS_CSUM_SIZE
];
1714 if (num_pages
* PAGE_SIZE
< state
->metablock_size
)
1715 return 1; /* not metadata */
1716 num_pages
= state
->metablock_size
>> PAGE_SHIFT
;
1717 h
= (struct btrfs_header
*)datav
[0];
1719 if (memcmp(h
->fsid
, fs_info
->fs_devices
->fsid
, BTRFS_FSID_SIZE
))
1722 shash
->tfm
= fs_info
->csum_shash
;
1723 crypto_shash_init(shash
);
1725 for (i
= 0; i
< num_pages
; i
++) {
1726 u8
*data
= i
? datav
[i
] : (datav
[i
] + BTRFS_CSUM_SIZE
);
1727 size_t sublen
= i
? PAGE_SIZE
:
1728 (PAGE_SIZE
- BTRFS_CSUM_SIZE
);
1730 crypto_shash_update(shash
, data
, sublen
);
1732 crypto_shash_final(shash
, csum
);
1733 if (memcmp(csum
, h
->csum
, state
->csum_size
))
1736 return 0; /* is metadata */
1739 static void btrfsic_process_written_block(struct btrfsic_dev_state
*dev_state
,
1740 u64 dev_bytenr
, char **mapped_datav
,
1741 unsigned int num_pages
,
1742 struct bio
*bio
, int *bio_is_patched
,
1743 int submit_bio_bh_rw
)
1746 struct btrfsic_block
*block
;
1747 struct btrfsic_block_data_ctx block_ctx
;
1749 struct btrfsic_state
*state
= dev_state
->state
;
1750 struct block_device
*bdev
= dev_state
->bdev
;
1751 unsigned int processed_len
;
1753 if (NULL
!= bio_is_patched
)
1754 *bio_is_patched
= 0;
1761 is_metadata
= (0 == btrfsic_test_for_metadata(state
, mapped_datav
,
1764 block
= btrfsic_block_hashtable_lookup(bdev
, dev_bytenr
,
1765 &state
->block_hashtable
);
1766 if (NULL
!= block
) {
1768 struct btrfsic_block_link
*l
, *tmp
;
1770 if (block
->is_superblock
) {
1771 bytenr
= btrfs_super_bytenr((struct btrfs_super_block
*)
1773 if (num_pages
* PAGE_SIZE
<
1774 BTRFS_SUPER_INFO_SIZE
) {
1775 pr_info("btrfsic: cannot work with too short bios!\n");
1779 BUG_ON(!PAGE_ALIGNED(BTRFS_SUPER_INFO_SIZE
));
1780 processed_len
= BTRFS_SUPER_INFO_SIZE
;
1781 if (state
->print_mask
&
1782 BTRFSIC_PRINT_MASK_TREE_BEFORE_SB_WRITE
) {
1783 pr_info("[before new superblock is written]:\n");
1784 btrfsic_dump_tree_sub(state
, block
, 0);
1788 if (!block
->is_superblock
) {
1789 if (num_pages
* PAGE_SIZE
<
1790 state
->metablock_size
) {
1791 pr_info("btrfsic: cannot work with too short bios!\n");
1794 processed_len
= state
->metablock_size
;
1795 bytenr
= btrfs_stack_header_bytenr(
1796 (struct btrfs_header
*)
1798 btrfsic_cmp_log_and_dev_bytenr(state
, bytenr
,
1802 if (state
->print_mask
& BTRFSIC_PRINT_MASK_VERBOSE
) {
1803 if (block
->logical_bytenr
!= bytenr
&&
1804 !(!block
->is_metadata
&&
1805 block
->logical_bytenr
== 0))
1806 pr_info("Written block @%llu (%s/%llu/%d) found in hash table, %c, bytenr mismatch (!= stored %llu).\n",
1807 bytenr
, dev_state
->name
,
1810 btrfsic_get_block_type(state
,
1812 block
->logical_bytenr
);
1814 pr_info("Written block @%llu (%s/%llu/%d) found in hash table, %c.\n",
1815 bytenr
, dev_state
->name
,
1816 dev_bytenr
, block
->mirror_num
,
1817 btrfsic_get_block_type(state
,
1820 block
->logical_bytenr
= bytenr
;
1822 if (num_pages
* PAGE_SIZE
<
1823 state
->datablock_size
) {
1824 pr_info("btrfsic: cannot work with too short bios!\n");
1827 processed_len
= state
->datablock_size
;
1828 bytenr
= block
->logical_bytenr
;
1829 if (state
->print_mask
& BTRFSIC_PRINT_MASK_VERBOSE
)
1830 pr_info("Written block @%llu (%s/%llu/%d) found in hash table, %c.\n",
1831 bytenr
, dev_state
->name
, dev_bytenr
,
1833 btrfsic_get_block_type(state
, block
));
1836 if (state
->print_mask
& BTRFSIC_PRINT_MASK_VERBOSE
)
1837 pr_info("ref_to_list: %cE, ref_from_list: %cE\n",
1838 list_empty(&block
->ref_to_list
) ? ' ' : '!',
1839 list_empty(&block
->ref_from_list
) ? ' ' : '!');
1840 if (btrfsic_is_block_ref_by_superblock(state
, block
, 0)) {
1841 pr_info("btrfs: attempt to overwrite %c-block @%llu (%s/%llu/%d), old(gen=%llu, objectid=%llu, type=%d, offset=%llu), new(gen=%llu), which is referenced by most recent superblock (superblockgen=%llu)!\n",
1842 btrfsic_get_block_type(state
, block
), bytenr
,
1843 dev_state
->name
, dev_bytenr
, block
->mirror_num
,
1845 btrfs_disk_key_objectid(&block
->disk_key
),
1846 block
->disk_key
.type
,
1847 btrfs_disk_key_offset(&block
->disk_key
),
1848 btrfs_stack_header_generation(
1849 (struct btrfs_header
*) mapped_datav
[0]),
1850 state
->max_superblock_generation
);
1851 btrfsic_dump_tree(state
);
1854 if (!block
->is_iodone
&& !block
->never_written
) {
1855 pr_info("btrfs: attempt to overwrite %c-block @%llu (%s/%llu/%d), oldgen=%llu, newgen=%llu, which is not yet iodone!\n",
1856 btrfsic_get_block_type(state
, block
), bytenr
,
1857 dev_state
->name
, dev_bytenr
, block
->mirror_num
,
1859 btrfs_stack_header_generation(
1860 (struct btrfs_header
*)
1862 /* it would not be safe to go on */
1863 btrfsic_dump_tree(state
);
1868 * Clear all references of this block. Do not free
1869 * the block itself even if is not referenced anymore
1870 * because it still carries valuable information
1871 * like whether it was ever written and IO completed.
1873 list_for_each_entry_safe(l
, tmp
, &block
->ref_to_list
,
1875 if (state
->print_mask
& BTRFSIC_PRINT_MASK_VERBOSE
)
1876 btrfsic_print_rem_link(state
, l
);
1878 if (0 == l
->ref_cnt
) {
1879 list_del(&l
->node_ref_to
);
1880 list_del(&l
->node_ref_from
);
1881 btrfsic_block_link_hashtable_remove(l
);
1882 btrfsic_block_link_free(l
);
1886 block_ctx
.dev
= dev_state
;
1887 block_ctx
.dev_bytenr
= dev_bytenr
;
1888 block_ctx
.start
= bytenr
;
1889 block_ctx
.len
= processed_len
;
1890 block_ctx
.pagev
= NULL
;
1891 block_ctx
.mem_to_free
= NULL
;
1892 block_ctx
.datav
= mapped_datav
;
1894 if (is_metadata
|| state
->include_extent_data
) {
1895 block
->never_written
= 0;
1896 block
->iodone_w_error
= 0;
1898 block
->is_iodone
= 0;
1899 BUG_ON(NULL
== bio_is_patched
);
1900 if (!*bio_is_patched
) {
1901 block
->orig_bio_private
=
1903 block
->orig_bio_end_io
=
1905 block
->next_in_same_bio
= NULL
;
1906 bio
->bi_private
= block
;
1907 bio
->bi_end_io
= btrfsic_bio_end_io
;
1908 *bio_is_patched
= 1;
1910 struct btrfsic_block
*chained_block
=
1911 (struct btrfsic_block
*)
1914 BUG_ON(NULL
== chained_block
);
1915 block
->orig_bio_private
=
1916 chained_block
->orig_bio_private
;
1917 block
->orig_bio_end_io
=
1918 chained_block
->orig_bio_end_io
;
1919 block
->next_in_same_bio
= chained_block
;
1920 bio
->bi_private
= block
;
1923 block
->is_iodone
= 1;
1924 block
->orig_bio_private
= NULL
;
1925 block
->orig_bio_end_io
= NULL
;
1926 block
->next_in_same_bio
= NULL
;
1930 block
->flush_gen
= dev_state
->last_flush_gen
+ 1;
1931 block
->submit_bio_bh_rw
= submit_bio_bh_rw
;
1933 block
->logical_bytenr
= bytenr
;
1934 block
->is_metadata
= 1;
1935 if (block
->is_superblock
) {
1937 BTRFS_SUPER_INFO_SIZE
);
1938 ret
= btrfsic_process_written_superblock(
1941 (struct btrfs_super_block
*)
1943 if (state
->print_mask
&
1944 BTRFSIC_PRINT_MASK_TREE_AFTER_SB_WRITE
) {
1945 pr_info("[after new superblock is written]:\n");
1946 btrfsic_dump_tree_sub(state
, block
, 0);
1949 block
->mirror_num
= 0; /* unknown */
1950 ret
= btrfsic_process_metablock(
1957 pr_info("btrfsic: btrfsic_process_metablock(root @%llu) failed!\n",
1960 block
->is_metadata
= 0;
1961 block
->mirror_num
= 0; /* unknown */
1962 block
->generation
= BTRFSIC_GENERATION_UNKNOWN
;
1963 if (!state
->include_extent_data
1964 && list_empty(&block
->ref_from_list
)) {
1966 * disk block is overwritten with extent
1967 * data (not meta data) and we are configured
1968 * to not include extent data: take the
1969 * chance and free the block's memory
1971 btrfsic_block_hashtable_remove(block
);
1972 list_del(&block
->all_blocks_node
);
1973 btrfsic_block_free(block
);
1976 btrfsic_release_block_ctx(&block_ctx
);
1978 /* block has not been found in hash table */
1982 processed_len
= state
->datablock_size
;
1983 if (state
->print_mask
& BTRFSIC_PRINT_MASK_VERBOSE
)
1984 pr_info("Written block (%s/%llu/?) !found in hash table, D.\n",
1985 dev_state
->name
, dev_bytenr
);
1986 if (!state
->include_extent_data
) {
1987 /* ignore that written D block */
1991 /* this is getting ugly for the
1992 * include_extent_data case... */
1993 bytenr
= 0; /* unknown */
1995 processed_len
= state
->metablock_size
;
1996 bytenr
= btrfs_stack_header_bytenr(
1997 (struct btrfs_header
*)
1999 btrfsic_cmp_log_and_dev_bytenr(state
, bytenr
, dev_state
,
2001 if (state
->print_mask
& BTRFSIC_PRINT_MASK_VERBOSE
)
2002 pr_info("Written block @%llu (%s/%llu/?) !found in hash table, M.\n",
2003 bytenr
, dev_state
->name
, dev_bytenr
);
2006 block_ctx
.dev
= dev_state
;
2007 block_ctx
.dev_bytenr
= dev_bytenr
;
2008 block_ctx
.start
= bytenr
;
2009 block_ctx
.len
= processed_len
;
2010 block_ctx
.pagev
= NULL
;
2011 block_ctx
.mem_to_free
= NULL
;
2012 block_ctx
.datav
= mapped_datav
;
2014 block
= btrfsic_block_alloc();
2015 if (NULL
== block
) {
2016 pr_info("btrfsic: error, kmalloc failed!\n");
2017 btrfsic_release_block_ctx(&block_ctx
);
2020 block
->dev_state
= dev_state
;
2021 block
->dev_bytenr
= dev_bytenr
;
2022 block
->logical_bytenr
= bytenr
;
2023 block
->is_metadata
= is_metadata
;
2024 block
->never_written
= 0;
2025 block
->iodone_w_error
= 0;
2026 block
->mirror_num
= 0; /* unknown */
2027 block
->flush_gen
= dev_state
->last_flush_gen
+ 1;
2028 block
->submit_bio_bh_rw
= submit_bio_bh_rw
;
2030 block
->is_iodone
= 0;
2031 BUG_ON(NULL
== bio_is_patched
);
2032 if (!*bio_is_patched
) {
2033 block
->orig_bio_private
= bio
->bi_private
;
2034 block
->orig_bio_end_io
= bio
->bi_end_io
;
2035 block
->next_in_same_bio
= NULL
;
2036 bio
->bi_private
= block
;
2037 bio
->bi_end_io
= btrfsic_bio_end_io
;
2038 *bio_is_patched
= 1;
2040 struct btrfsic_block
*chained_block
=
2041 (struct btrfsic_block
*)
2044 BUG_ON(NULL
== chained_block
);
2045 block
->orig_bio_private
=
2046 chained_block
->orig_bio_private
;
2047 block
->orig_bio_end_io
=
2048 chained_block
->orig_bio_end_io
;
2049 block
->next_in_same_bio
= chained_block
;
2050 bio
->bi_private
= block
;
2053 block
->is_iodone
= 1;
2054 block
->orig_bio_private
= NULL
;
2055 block
->orig_bio_end_io
= NULL
;
2056 block
->next_in_same_bio
= NULL
;
2058 if (state
->print_mask
& BTRFSIC_PRINT_MASK_VERBOSE
)
2059 pr_info("New written %c-block @%llu (%s/%llu/%d)\n",
2060 is_metadata
? 'M' : 'D',
2061 block
->logical_bytenr
, block
->dev_state
->name
,
2062 block
->dev_bytenr
, block
->mirror_num
);
2063 list_add(&block
->all_blocks_node
, &state
->all_blocks_list
);
2064 btrfsic_block_hashtable_add(block
, &state
->block_hashtable
);
2067 ret
= btrfsic_process_metablock(state
, block
,
2070 pr_info("btrfsic: process_metablock(root @%llu) failed!\n",
2073 btrfsic_release_block_ctx(&block_ctx
);
2077 BUG_ON(!processed_len
);
2078 dev_bytenr
+= processed_len
;
2079 mapped_datav
+= processed_len
>> PAGE_SHIFT
;
2080 num_pages
-= processed_len
>> PAGE_SHIFT
;
2084 static void btrfsic_bio_end_io(struct bio
*bp
)
2086 struct btrfsic_block
*block
= (struct btrfsic_block
*)bp
->bi_private
;
2089 /* mutex is not held! This is not save if IO is not yet completed
2095 BUG_ON(NULL
== block
);
2096 bp
->bi_private
= block
->orig_bio_private
;
2097 bp
->bi_end_io
= block
->orig_bio_end_io
;
2100 struct btrfsic_block
*next_block
;
2101 struct btrfsic_dev_state
*const dev_state
= block
->dev_state
;
2103 if ((dev_state
->state
->print_mask
&
2104 BTRFSIC_PRINT_MASK_END_IO_BIO_BH
))
2105 pr_info("bio_end_io(err=%d) for %c @%llu (%s/%llu/%d)\n",
2107 btrfsic_get_block_type(dev_state
->state
, block
),
2108 block
->logical_bytenr
, dev_state
->name
,
2109 block
->dev_bytenr
, block
->mirror_num
);
2110 next_block
= block
->next_in_same_bio
;
2111 block
->iodone_w_error
= iodone_w_error
;
2112 if (block
->submit_bio_bh_rw
& REQ_PREFLUSH
) {
2113 dev_state
->last_flush_gen
++;
2114 if ((dev_state
->state
->print_mask
&
2115 BTRFSIC_PRINT_MASK_END_IO_BIO_BH
))
2116 pr_info("bio_end_io() new %s flush_gen=%llu\n",
2118 dev_state
->last_flush_gen
);
2120 if (block
->submit_bio_bh_rw
& REQ_FUA
)
2121 block
->flush_gen
= 0; /* FUA completed means block is
2123 block
->is_iodone
= 1; /* for FLUSH, this releases the block */
2125 } while (NULL
!= block
);
2130 static int btrfsic_process_written_superblock(
2131 struct btrfsic_state
*state
,
2132 struct btrfsic_block
*const superblock
,
2133 struct btrfs_super_block
*const super_hdr
)
2135 struct btrfs_fs_info
*fs_info
= state
->fs_info
;
2138 superblock
->generation
= btrfs_super_generation(super_hdr
);
2139 if (!(superblock
->generation
> state
->max_superblock_generation
||
2140 0 == state
->max_superblock_generation
)) {
2141 if (state
->print_mask
& BTRFSIC_PRINT_MASK_SUPERBLOCK_WRITE
)
2142 pr_info("btrfsic: superblock @%llu (%s/%llu/%d) with old gen %llu <= %llu\n",
2143 superblock
->logical_bytenr
,
2144 superblock
->dev_state
->name
,
2145 superblock
->dev_bytenr
, superblock
->mirror_num
,
2146 btrfs_super_generation(super_hdr
),
2147 state
->max_superblock_generation
);
2149 if (state
->print_mask
& BTRFSIC_PRINT_MASK_SUPERBLOCK_WRITE
)
2150 pr_info("btrfsic: got new superblock @%llu (%s/%llu/%d) with new gen %llu > %llu\n",
2151 superblock
->logical_bytenr
,
2152 superblock
->dev_state
->name
,
2153 superblock
->dev_bytenr
, superblock
->mirror_num
,
2154 btrfs_super_generation(super_hdr
),
2155 state
->max_superblock_generation
);
2157 state
->max_superblock_generation
=
2158 btrfs_super_generation(super_hdr
);
2159 state
->latest_superblock
= superblock
;
2162 for (pass
= 0; pass
< 3; pass
++) {
2165 struct btrfsic_block
*next_block
;
2166 struct btrfsic_block_data_ctx tmp_next_block_ctx
;
2167 struct btrfsic_block_link
*l
;
2170 const char *additional_string
= NULL
;
2171 struct btrfs_disk_key tmp_disk_key
= {0};
2173 btrfs_set_disk_key_objectid(&tmp_disk_key
,
2174 BTRFS_ROOT_ITEM_KEY
);
2175 btrfs_set_disk_key_objectid(&tmp_disk_key
, 0);
2179 btrfs_set_disk_key_objectid(&tmp_disk_key
,
2180 BTRFS_ROOT_TREE_OBJECTID
);
2181 additional_string
= "root ";
2182 next_bytenr
= btrfs_super_root(super_hdr
);
2183 if (state
->print_mask
&
2184 BTRFSIC_PRINT_MASK_ROOT_CHUNK_LOG_TREE_LOCATION
)
2185 pr_info("root@%llu\n", next_bytenr
);
2188 btrfs_set_disk_key_objectid(&tmp_disk_key
,
2189 BTRFS_CHUNK_TREE_OBJECTID
);
2190 additional_string
= "chunk ";
2191 next_bytenr
= btrfs_super_chunk_root(super_hdr
);
2192 if (state
->print_mask
&
2193 BTRFSIC_PRINT_MASK_ROOT_CHUNK_LOG_TREE_LOCATION
)
2194 pr_info("chunk@%llu\n", next_bytenr
);
2197 btrfs_set_disk_key_objectid(&tmp_disk_key
,
2198 BTRFS_TREE_LOG_OBJECTID
);
2199 additional_string
= "log ";
2200 next_bytenr
= btrfs_super_log_root(super_hdr
);
2201 if (0 == next_bytenr
)
2203 if (state
->print_mask
&
2204 BTRFSIC_PRINT_MASK_ROOT_CHUNK_LOG_TREE_LOCATION
)
2205 pr_info("log@%llu\n", next_bytenr
);
2209 num_copies
= btrfs_num_copies(fs_info
, next_bytenr
,
2210 BTRFS_SUPER_INFO_SIZE
);
2211 if (state
->print_mask
& BTRFSIC_PRINT_MASK_NUM_COPIES
)
2212 pr_info("num_copies(log_bytenr=%llu) = %d\n",
2213 next_bytenr
, num_copies
);
2214 for (mirror_num
= 1; mirror_num
<= num_copies
; mirror_num
++) {
2217 if (state
->print_mask
& BTRFSIC_PRINT_MASK_VERBOSE
)
2218 pr_info("btrfsic_process_written_superblock(mirror_num=%d)\n", mirror_num
);
2219 ret
= btrfsic_map_block(state
, next_bytenr
,
2220 BTRFS_SUPER_INFO_SIZE
,
2221 &tmp_next_block_ctx
,
2224 pr_info("btrfsic: btrfsic_map_block(@%llu, mirror=%d) failed!\n",
2225 next_bytenr
, mirror_num
);
2229 next_block
= btrfsic_block_lookup_or_add(
2231 &tmp_next_block_ctx
,
2236 if (NULL
== next_block
) {
2237 pr_info("btrfsic: error, kmalloc failed!\n");
2238 btrfsic_release_block_ctx(&tmp_next_block_ctx
);
2242 next_block
->disk_key
= tmp_disk_key
;
2244 next_block
->generation
=
2245 BTRFSIC_GENERATION_UNKNOWN
;
2246 l
= btrfsic_block_link_lookup_or_add(
2248 &tmp_next_block_ctx
,
2251 BTRFSIC_GENERATION_UNKNOWN
);
2252 btrfsic_release_block_ctx(&tmp_next_block_ctx
);
2258 if (WARN_ON(-1 == btrfsic_check_all_ref_blocks(state
, superblock
, 0)))
2259 btrfsic_dump_tree(state
);
2264 static int btrfsic_check_all_ref_blocks(struct btrfsic_state
*state
,
2265 struct btrfsic_block
*const block
,
2266 int recursion_level
)
2268 const struct btrfsic_block_link
*l
;
2271 if (recursion_level
>= 3 + BTRFS_MAX_LEVEL
) {
2273 * Note that this situation can happen and does not
2274 * indicate an error in regular cases. It happens
2275 * when disk blocks are freed and later reused.
2276 * The check-integrity module is not aware of any
2277 * block free operations, it just recognizes block
2278 * write operations. Therefore it keeps the linkage
2279 * information for a block until a block is
2280 * rewritten. This can temporarily cause incorrect
2281 * and even circular linkage information. This
2282 * causes no harm unless such blocks are referenced
2283 * by the most recent super block.
2285 if (state
->print_mask
& BTRFSIC_PRINT_MASK_VERBOSE
)
2286 pr_info("btrfsic: abort cyclic linkage (case 1).\n");
2292 * This algorithm is recursive because the amount of used stack
2293 * space is very small and the max recursion depth is limited.
2295 list_for_each_entry(l
, &block
->ref_to_list
, node_ref_to
) {
2296 if (state
->print_mask
& BTRFSIC_PRINT_MASK_VERBOSE
)
2297 pr_info("rl=%d, %c @%llu (%s/%llu/%d) %u* refers to %c @%llu (%s/%llu/%d)\n",
2299 btrfsic_get_block_type(state
, block
),
2300 block
->logical_bytenr
, block
->dev_state
->name
,
2301 block
->dev_bytenr
, block
->mirror_num
,
2303 btrfsic_get_block_type(state
, l
->block_ref_to
),
2304 l
->block_ref_to
->logical_bytenr
,
2305 l
->block_ref_to
->dev_state
->name
,
2306 l
->block_ref_to
->dev_bytenr
,
2307 l
->block_ref_to
->mirror_num
);
2308 if (l
->block_ref_to
->never_written
) {
2309 pr_info("btrfs: attempt to write superblock which references block %c @%llu (%s/%llu/%d) which is never written!\n",
2310 btrfsic_get_block_type(state
, l
->block_ref_to
),
2311 l
->block_ref_to
->logical_bytenr
,
2312 l
->block_ref_to
->dev_state
->name
,
2313 l
->block_ref_to
->dev_bytenr
,
2314 l
->block_ref_to
->mirror_num
);
2316 } else if (!l
->block_ref_to
->is_iodone
) {
2317 pr_info("btrfs: attempt to write superblock which references block %c @%llu (%s/%llu/%d) which is not yet iodone!\n",
2318 btrfsic_get_block_type(state
, l
->block_ref_to
),
2319 l
->block_ref_to
->logical_bytenr
,
2320 l
->block_ref_to
->dev_state
->name
,
2321 l
->block_ref_to
->dev_bytenr
,
2322 l
->block_ref_to
->mirror_num
);
2324 } else if (l
->block_ref_to
->iodone_w_error
) {
2325 pr_info("btrfs: attempt to write superblock which references block %c @%llu (%s/%llu/%d) which has write error!\n",
2326 btrfsic_get_block_type(state
, l
->block_ref_to
),
2327 l
->block_ref_to
->logical_bytenr
,
2328 l
->block_ref_to
->dev_state
->name
,
2329 l
->block_ref_to
->dev_bytenr
,
2330 l
->block_ref_to
->mirror_num
);
2332 } else if (l
->parent_generation
!=
2333 l
->block_ref_to
->generation
&&
2334 BTRFSIC_GENERATION_UNKNOWN
!=
2335 l
->parent_generation
&&
2336 BTRFSIC_GENERATION_UNKNOWN
!=
2337 l
->block_ref_to
->generation
) {
2338 pr_info("btrfs: attempt to write superblock which references block %c @%llu (%s/%llu/%d) with generation %llu != parent generation %llu!\n",
2339 btrfsic_get_block_type(state
, l
->block_ref_to
),
2340 l
->block_ref_to
->logical_bytenr
,
2341 l
->block_ref_to
->dev_state
->name
,
2342 l
->block_ref_to
->dev_bytenr
,
2343 l
->block_ref_to
->mirror_num
,
2344 l
->block_ref_to
->generation
,
2345 l
->parent_generation
);
2347 } else if (l
->block_ref_to
->flush_gen
>
2348 l
->block_ref_to
->dev_state
->last_flush_gen
) {
2349 pr_info("btrfs: attempt to write superblock which references block %c @%llu (%s/%llu/%d) which is not flushed out of disk's write cache (block flush_gen=%llu, dev->flush_gen=%llu)!\n",
2350 btrfsic_get_block_type(state
, l
->block_ref_to
),
2351 l
->block_ref_to
->logical_bytenr
,
2352 l
->block_ref_to
->dev_state
->name
,
2353 l
->block_ref_to
->dev_bytenr
,
2354 l
->block_ref_to
->mirror_num
, block
->flush_gen
,
2355 l
->block_ref_to
->dev_state
->last_flush_gen
);
2357 } else if (-1 == btrfsic_check_all_ref_blocks(state
,
2368 static int btrfsic_is_block_ref_by_superblock(
2369 const struct btrfsic_state
*state
,
2370 const struct btrfsic_block
*block
,
2371 int recursion_level
)
2373 const struct btrfsic_block_link
*l
;
2375 if (recursion_level
>= 3 + BTRFS_MAX_LEVEL
) {
2376 /* refer to comment at "abort cyclic linkage (case 1)" */
2377 if (state
->print_mask
& BTRFSIC_PRINT_MASK_VERBOSE
)
2378 pr_info("btrfsic: abort cyclic linkage (case 2).\n");
2384 * This algorithm is recursive because the amount of used stack space
2385 * is very small and the max recursion depth is limited.
2387 list_for_each_entry(l
, &block
->ref_from_list
, node_ref_from
) {
2388 if (state
->print_mask
& BTRFSIC_PRINT_MASK_VERBOSE
)
2389 pr_info("rl=%d, %c @%llu (%s/%llu/%d) is ref %u* from %c @%llu (%s/%llu/%d)\n",
2391 btrfsic_get_block_type(state
, block
),
2392 block
->logical_bytenr
, block
->dev_state
->name
,
2393 block
->dev_bytenr
, block
->mirror_num
,
2395 btrfsic_get_block_type(state
, l
->block_ref_from
),
2396 l
->block_ref_from
->logical_bytenr
,
2397 l
->block_ref_from
->dev_state
->name
,
2398 l
->block_ref_from
->dev_bytenr
,
2399 l
->block_ref_from
->mirror_num
);
2400 if (l
->block_ref_from
->is_superblock
&&
2401 state
->latest_superblock
->dev_bytenr
==
2402 l
->block_ref_from
->dev_bytenr
&&
2403 state
->latest_superblock
->dev_state
->bdev
==
2404 l
->block_ref_from
->dev_state
->bdev
)
2406 else if (btrfsic_is_block_ref_by_superblock(state
,
2416 static void btrfsic_print_add_link(const struct btrfsic_state
*state
,
2417 const struct btrfsic_block_link
*l
)
2419 pr_info("Add %u* link from %c @%llu (%s/%llu/%d) to %c @%llu (%s/%llu/%d).\n",
2421 btrfsic_get_block_type(state
, l
->block_ref_from
),
2422 l
->block_ref_from
->logical_bytenr
,
2423 l
->block_ref_from
->dev_state
->name
,
2424 l
->block_ref_from
->dev_bytenr
, l
->block_ref_from
->mirror_num
,
2425 btrfsic_get_block_type(state
, l
->block_ref_to
),
2426 l
->block_ref_to
->logical_bytenr
,
2427 l
->block_ref_to
->dev_state
->name
, l
->block_ref_to
->dev_bytenr
,
2428 l
->block_ref_to
->mirror_num
);
2431 static void btrfsic_print_rem_link(const struct btrfsic_state
*state
,
2432 const struct btrfsic_block_link
*l
)
2434 pr_info("Rem %u* link from %c @%llu (%s/%llu/%d) to %c @%llu (%s/%llu/%d).\n",
2436 btrfsic_get_block_type(state
, l
->block_ref_from
),
2437 l
->block_ref_from
->logical_bytenr
,
2438 l
->block_ref_from
->dev_state
->name
,
2439 l
->block_ref_from
->dev_bytenr
, l
->block_ref_from
->mirror_num
,
2440 btrfsic_get_block_type(state
, l
->block_ref_to
),
2441 l
->block_ref_to
->logical_bytenr
,
2442 l
->block_ref_to
->dev_state
->name
, l
->block_ref_to
->dev_bytenr
,
2443 l
->block_ref_to
->mirror_num
);
2446 static char btrfsic_get_block_type(const struct btrfsic_state
*state
,
2447 const struct btrfsic_block
*block
)
2449 if (block
->is_superblock
&&
2450 state
->latest_superblock
->dev_bytenr
== block
->dev_bytenr
&&
2451 state
->latest_superblock
->dev_state
->bdev
== block
->dev_state
->bdev
)
2453 else if (block
->is_superblock
)
2455 else if (block
->is_metadata
)
2461 static void btrfsic_dump_tree(const struct btrfsic_state
*state
)
2463 btrfsic_dump_tree_sub(state
, state
->latest_superblock
, 0);
2466 static void btrfsic_dump_tree_sub(const struct btrfsic_state
*state
,
2467 const struct btrfsic_block
*block
,
2470 const struct btrfsic_block_link
*l
;
2472 static char buf
[80];
2473 int cursor_position
;
2476 * Should better fill an on-stack buffer with a complete line and
2477 * dump it at once when it is time to print a newline character.
2481 * This algorithm is recursive because the amount of used stack space
2482 * is very small and the max recursion depth is limited.
2484 indent_add
= sprintf(buf
, "%c-%llu(%s/%llu/%u)",
2485 btrfsic_get_block_type(state
, block
),
2486 block
->logical_bytenr
, block
->dev_state
->name
,
2487 block
->dev_bytenr
, block
->mirror_num
);
2488 if (indent_level
+ indent_add
> BTRFSIC_TREE_DUMP_MAX_INDENT_LEVEL
) {
2493 indent_level
+= indent_add
;
2494 if (list_empty(&block
->ref_to_list
)) {
2498 if (block
->mirror_num
> 1 &&
2499 !(state
->print_mask
& BTRFSIC_PRINT_MASK_TREE_WITH_ALL_MIRRORS
)) {
2504 cursor_position
= indent_level
;
2505 list_for_each_entry(l
, &block
->ref_to_list
, node_ref_to
) {
2506 while (cursor_position
< indent_level
) {
2511 indent_add
= sprintf(buf
, " %d*--> ", l
->ref_cnt
);
2513 indent_add
= sprintf(buf
, " --> ");
2514 if (indent_level
+ indent_add
>
2515 BTRFSIC_TREE_DUMP_MAX_INDENT_LEVEL
) {
2517 cursor_position
= 0;
2523 btrfsic_dump_tree_sub(state
, l
->block_ref_to
,
2524 indent_level
+ indent_add
);
2525 cursor_position
= 0;
2529 static struct btrfsic_block_link
*btrfsic_block_link_lookup_or_add(
2530 struct btrfsic_state
*state
,
2531 struct btrfsic_block_data_ctx
*next_block_ctx
,
2532 struct btrfsic_block
*next_block
,
2533 struct btrfsic_block
*from_block
,
2534 u64 parent_generation
)
2536 struct btrfsic_block_link
*l
;
2538 l
= btrfsic_block_link_hashtable_lookup(next_block_ctx
->dev
->bdev
,
2539 next_block_ctx
->dev_bytenr
,
2540 from_block
->dev_state
->bdev
,
2541 from_block
->dev_bytenr
,
2542 &state
->block_link_hashtable
);
2544 l
= btrfsic_block_link_alloc();
2546 pr_info("btrfsic: error, kmalloc failed!\n");
2550 l
->block_ref_to
= next_block
;
2551 l
->block_ref_from
= from_block
;
2553 l
->parent_generation
= parent_generation
;
2555 if (state
->print_mask
& BTRFSIC_PRINT_MASK_VERBOSE
)
2556 btrfsic_print_add_link(state
, l
);
2558 list_add(&l
->node_ref_to
, &from_block
->ref_to_list
);
2559 list_add(&l
->node_ref_from
, &next_block
->ref_from_list
);
2561 btrfsic_block_link_hashtable_add(l
,
2562 &state
->block_link_hashtable
);
2565 l
->parent_generation
= parent_generation
;
2566 if (state
->print_mask
& BTRFSIC_PRINT_MASK_VERBOSE
)
2567 btrfsic_print_add_link(state
, l
);
2573 static struct btrfsic_block
*btrfsic_block_lookup_or_add(
2574 struct btrfsic_state
*state
,
2575 struct btrfsic_block_data_ctx
*block_ctx
,
2576 const char *additional_string
,
2583 struct btrfsic_block
*block
;
2585 block
= btrfsic_block_hashtable_lookup(block_ctx
->dev
->bdev
,
2586 block_ctx
->dev_bytenr
,
2587 &state
->block_hashtable
);
2588 if (NULL
== block
) {
2589 struct btrfsic_dev_state
*dev_state
;
2591 block
= btrfsic_block_alloc();
2592 if (NULL
== block
) {
2593 pr_info("btrfsic: error, kmalloc failed!\n");
2596 dev_state
= btrfsic_dev_state_lookup(block_ctx
->dev
->bdev
->bd_dev
);
2597 if (NULL
== dev_state
) {
2598 pr_info("btrfsic: error, lookup dev_state failed!\n");
2599 btrfsic_block_free(block
);
2602 block
->dev_state
= dev_state
;
2603 block
->dev_bytenr
= block_ctx
->dev_bytenr
;
2604 block
->logical_bytenr
= block_ctx
->start
;
2605 block
->is_metadata
= is_metadata
;
2606 block
->is_iodone
= is_iodone
;
2607 block
->never_written
= never_written
;
2608 block
->mirror_num
= mirror_num
;
2609 if (state
->print_mask
& BTRFSIC_PRINT_MASK_VERBOSE
)
2610 pr_info("New %s%c-block @%llu (%s/%llu/%d)\n",
2612 btrfsic_get_block_type(state
, block
),
2613 block
->logical_bytenr
, dev_state
->name
,
2614 block
->dev_bytenr
, mirror_num
);
2615 list_add(&block
->all_blocks_node
, &state
->all_blocks_list
);
2616 btrfsic_block_hashtable_add(block
, &state
->block_hashtable
);
2617 if (NULL
!= was_created
)
2620 if (NULL
!= was_created
)
2627 static void btrfsic_cmp_log_and_dev_bytenr(struct btrfsic_state
*state
,
2629 struct btrfsic_dev_state
*dev_state
,
2632 struct btrfs_fs_info
*fs_info
= state
->fs_info
;
2633 struct btrfsic_block_data_ctx block_ctx
;
2639 num_copies
= btrfs_num_copies(fs_info
, bytenr
, state
->metablock_size
);
2641 for (mirror_num
= 1; mirror_num
<= num_copies
; mirror_num
++) {
2642 ret
= btrfsic_map_block(state
, bytenr
, state
->metablock_size
,
2643 &block_ctx
, mirror_num
);
2645 pr_info("btrfsic: btrfsic_map_block(logical @%llu, mirror %d) failed!\n",
2646 bytenr
, mirror_num
);
2650 if (dev_state
->bdev
== block_ctx
.dev
->bdev
&&
2651 dev_bytenr
== block_ctx
.dev_bytenr
) {
2653 btrfsic_release_block_ctx(&block_ctx
);
2656 btrfsic_release_block_ctx(&block_ctx
);
2659 if (WARN_ON(!match
)) {
2660 pr_info("btrfs: attempt to write M-block which contains logical bytenr that doesn't map to dev+physical bytenr of submit_bio, buffer->log_bytenr=%llu, submit_bio(bdev=%s, phys_bytenr=%llu)!\n",
2661 bytenr
, dev_state
->name
, dev_bytenr
);
2662 for (mirror_num
= 1; mirror_num
<= num_copies
; mirror_num
++) {
2663 ret
= btrfsic_map_block(state
, bytenr
,
2664 state
->metablock_size
,
2665 &block_ctx
, mirror_num
);
2669 pr_info("Read logical bytenr @%llu maps to (%s/%llu/%d)\n",
2670 bytenr
, block_ctx
.dev
->name
,
2671 block_ctx
.dev_bytenr
, mirror_num
);
2676 static struct btrfsic_dev_state
*btrfsic_dev_state_lookup(dev_t dev
)
2678 return btrfsic_dev_state_hashtable_lookup(dev
,
2679 &btrfsic_dev_state_hashtable
);
2682 static void __btrfsic_submit_bio(struct bio
*bio
)
2684 struct btrfsic_dev_state
*dev_state
;
2686 if (!btrfsic_is_initialized
)
2689 mutex_lock(&btrfsic_mutex
);
2690 /* since btrfsic_submit_bio() is also called before
2691 * btrfsic_mount(), this might return NULL */
2692 dev_state
= btrfsic_dev_state_lookup(bio_dev(bio
) + bio
->bi_partno
);
2693 if (NULL
!= dev_state
&&
2694 (bio_op(bio
) == REQ_OP_WRITE
) && bio_has_data(bio
)) {
2698 struct bio_vec bvec
;
2699 struct bvec_iter iter
;
2701 char **mapped_datav
;
2702 unsigned int segs
= bio_segments(bio
);
2704 dev_bytenr
= 512 * bio
->bi_iter
.bi_sector
;
2706 if (dev_state
->state
->print_mask
&
2707 BTRFSIC_PRINT_MASK_SUBMIT_BIO_BH
)
2708 pr_info("submit_bio(rw=%d,0x%x, bi_vcnt=%u, bi_sector=%llu (bytenr %llu), bi_disk=%p)\n",
2709 bio_op(bio
), bio
->bi_opf
, segs
,
2710 (unsigned long long)bio
->bi_iter
.bi_sector
,
2711 dev_bytenr
, bio
->bi_disk
);
2713 mapped_datav
= kmalloc_array(segs
,
2714 sizeof(*mapped_datav
), GFP_NOFS
);
2717 cur_bytenr
= dev_bytenr
;
2719 bio_for_each_segment(bvec
, bio
, iter
) {
2720 BUG_ON(bvec
.bv_len
!= PAGE_SIZE
);
2721 mapped_datav
[i
] = kmap(bvec
.bv_page
);
2724 if (dev_state
->state
->print_mask
&
2725 BTRFSIC_PRINT_MASK_SUBMIT_BIO_BH_VERBOSE
)
2726 pr_info("#%u: bytenr=%llu, len=%u, offset=%u\n",
2727 i
, cur_bytenr
, bvec
.bv_len
, bvec
.bv_offset
);
2728 cur_bytenr
+= bvec
.bv_len
;
2730 btrfsic_process_written_block(dev_state
, dev_bytenr
,
2732 bio
, &bio_is_patched
,
2734 bio_for_each_segment(bvec
, bio
, iter
)
2735 kunmap(bvec
.bv_page
);
2736 kfree(mapped_datav
);
2737 } else if (NULL
!= dev_state
&& (bio
->bi_opf
& REQ_PREFLUSH
)) {
2738 if (dev_state
->state
->print_mask
&
2739 BTRFSIC_PRINT_MASK_SUBMIT_BIO_BH
)
2740 pr_info("submit_bio(rw=%d,0x%x FLUSH, disk=%p)\n",
2741 bio_op(bio
), bio
->bi_opf
, bio
->bi_disk
);
2742 if (!dev_state
->dummy_block_for_bio_bh_flush
.is_iodone
) {
2743 if ((dev_state
->state
->print_mask
&
2744 (BTRFSIC_PRINT_MASK_SUBMIT_BIO_BH
|
2745 BTRFSIC_PRINT_MASK_VERBOSE
)))
2746 pr_info("btrfsic_submit_bio(%s) with FLUSH but dummy block already in use (ignored)!\n",
2749 struct btrfsic_block
*const block
=
2750 &dev_state
->dummy_block_for_bio_bh_flush
;
2752 block
->is_iodone
= 0;
2753 block
->never_written
= 0;
2754 block
->iodone_w_error
= 0;
2755 block
->flush_gen
= dev_state
->last_flush_gen
+ 1;
2756 block
->submit_bio_bh_rw
= bio
->bi_opf
;
2757 block
->orig_bio_private
= bio
->bi_private
;
2758 block
->orig_bio_end_io
= bio
->bi_end_io
;
2759 block
->next_in_same_bio
= NULL
;
2760 bio
->bi_private
= block
;
2761 bio
->bi_end_io
= btrfsic_bio_end_io
;
2765 mutex_unlock(&btrfsic_mutex
);
2768 void btrfsic_submit_bio(struct bio
*bio
)
2770 __btrfsic_submit_bio(bio
);
2774 int btrfsic_submit_bio_wait(struct bio
*bio
)
2776 __btrfsic_submit_bio(bio
);
2777 return submit_bio_wait(bio
);
2780 int btrfsic_mount(struct btrfs_fs_info
*fs_info
,
2781 struct btrfs_fs_devices
*fs_devices
,
2782 int including_extent_data
, u32 print_mask
)
2785 struct btrfsic_state
*state
;
2786 struct list_head
*dev_head
= &fs_devices
->devices
;
2787 struct btrfs_device
*device
;
2789 if (!PAGE_ALIGNED(fs_info
->nodesize
)) {
2790 pr_info("btrfsic: cannot handle nodesize %d not being a multiple of PAGE_SIZE %ld!\n",
2791 fs_info
->nodesize
, PAGE_SIZE
);
2794 if (!PAGE_ALIGNED(fs_info
->sectorsize
)) {
2795 pr_info("btrfsic: cannot handle sectorsize %d not being a multiple of PAGE_SIZE %ld!\n",
2796 fs_info
->sectorsize
, PAGE_SIZE
);
2799 state
= kvzalloc(sizeof(*state
), GFP_KERNEL
);
2801 pr_info("btrfs check-integrity: allocation failed!\n");
2805 if (!btrfsic_is_initialized
) {
2806 mutex_init(&btrfsic_mutex
);
2807 btrfsic_dev_state_hashtable_init(&btrfsic_dev_state_hashtable
);
2808 btrfsic_is_initialized
= 1;
2810 mutex_lock(&btrfsic_mutex
);
2811 state
->fs_info
= fs_info
;
2812 state
->print_mask
= print_mask
;
2813 state
->include_extent_data
= including_extent_data
;
2814 state
->csum_size
= 0;
2815 state
->metablock_size
= fs_info
->nodesize
;
2816 state
->datablock_size
= fs_info
->sectorsize
;
2817 INIT_LIST_HEAD(&state
->all_blocks_list
);
2818 btrfsic_block_hashtable_init(&state
->block_hashtable
);
2819 btrfsic_block_link_hashtable_init(&state
->block_link_hashtable
);
2820 state
->max_superblock_generation
= 0;
2821 state
->latest_superblock
= NULL
;
2823 list_for_each_entry(device
, dev_head
, dev_list
) {
2824 struct btrfsic_dev_state
*ds
;
2827 if (!device
->bdev
|| !device
->name
)
2830 ds
= btrfsic_dev_state_alloc();
2832 pr_info("btrfs check-integrity: kmalloc() failed!\n");
2833 mutex_unlock(&btrfsic_mutex
);
2836 ds
->bdev
= device
->bdev
;
2838 bdevname(ds
->bdev
, ds
->name
);
2839 ds
->name
[BDEVNAME_SIZE
- 1] = '\0';
2840 p
= kbasename(ds
->name
);
2841 strlcpy(ds
->name
, p
, sizeof(ds
->name
));
2842 btrfsic_dev_state_hashtable_add(ds
,
2843 &btrfsic_dev_state_hashtable
);
2846 ret
= btrfsic_process_superblock(state
, fs_devices
);
2848 mutex_unlock(&btrfsic_mutex
);
2849 btrfsic_unmount(fs_devices
);
2853 if (state
->print_mask
& BTRFSIC_PRINT_MASK_INITIAL_DATABASE
)
2854 btrfsic_dump_database(state
);
2855 if (state
->print_mask
& BTRFSIC_PRINT_MASK_INITIAL_TREE
)
2856 btrfsic_dump_tree(state
);
2858 mutex_unlock(&btrfsic_mutex
);
2862 void btrfsic_unmount(struct btrfs_fs_devices
*fs_devices
)
2864 struct btrfsic_block
*b_all
, *tmp_all
;
2865 struct btrfsic_state
*state
;
2866 struct list_head
*dev_head
= &fs_devices
->devices
;
2867 struct btrfs_device
*device
;
2869 if (!btrfsic_is_initialized
)
2872 mutex_lock(&btrfsic_mutex
);
2875 list_for_each_entry(device
, dev_head
, dev_list
) {
2876 struct btrfsic_dev_state
*ds
;
2878 if (!device
->bdev
|| !device
->name
)
2881 ds
= btrfsic_dev_state_hashtable_lookup(
2882 device
->bdev
->bd_dev
,
2883 &btrfsic_dev_state_hashtable
);
2886 btrfsic_dev_state_hashtable_remove(ds
);
2887 btrfsic_dev_state_free(ds
);
2891 if (NULL
== state
) {
2892 pr_info("btrfsic: error, cannot find state information on umount!\n");
2893 mutex_unlock(&btrfsic_mutex
);
2898 * Don't care about keeping the lists' state up to date,
2899 * just free all memory that was allocated dynamically.
2900 * Free the blocks and the block_links.
2902 list_for_each_entry_safe(b_all
, tmp_all
, &state
->all_blocks_list
,
2904 struct btrfsic_block_link
*l
, *tmp
;
2906 list_for_each_entry_safe(l
, tmp
, &b_all
->ref_to_list
,
2908 if (state
->print_mask
& BTRFSIC_PRINT_MASK_VERBOSE
)
2909 btrfsic_print_rem_link(state
, l
);
2912 if (0 == l
->ref_cnt
)
2913 btrfsic_block_link_free(l
);
2916 if (b_all
->is_iodone
|| b_all
->never_written
)
2917 btrfsic_block_free(b_all
);
2919 pr_info("btrfs: attempt to free %c-block @%llu (%s/%llu/%d) on umount which is not yet iodone!\n",
2920 btrfsic_get_block_type(state
, b_all
),
2921 b_all
->logical_bytenr
, b_all
->dev_state
->name
,
2922 b_all
->dev_bytenr
, b_all
->mirror_num
);
2925 mutex_unlock(&btrfsic_mutex
);