blob: 656b07637e3931dc629d464b5d7927b4235e878e [file] [log] [blame]
Stefan Behrens5db02762011-11-01 17:04:16 +01001/*
2 * Copyright (C) STRATO AG 2011. All rights reserved.
3 *
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public
6 * License v2 as published by the Free Software Foundation.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11 * General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public
14 * License along with this program; if not, write to the
15 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
16 * Boston, MA 021110-1307, USA.
17 */
18
19/*
20 * This module can be used to catch cases when the btrfs kernel
21 * code executes write requests to the disk that bring the file
22 * system in an inconsistent state. In such a state, a power-loss
23 * or kernel panic event would cause that the data on disk is
24 * lost or at least damaged.
25 *
26 * Code is added that examines all block write requests during
27 * runtime (including writes of the super block). Three rules
28 * are verified and an error is printed on violation of the
29 * rules:
30 * 1. It is not allowed to write a disk block which is
31 * currently referenced by the super block (either directly
32 * or indirectly).
33 * 2. When a super block is written, it is verified that all
34 * referenced (directly or indirectly) blocks fulfill the
35 * following requirements:
36 * 2a. All referenced blocks have either been present when
37 * the file system was mounted, (i.e., they have been
38 * referenced by the super block) or they have been
39 * written since then and the write completion callback
Stefan Behrens62856a92012-07-31 11:09:44 -060040 * was called and no write error was indicated and a
41 * FLUSH request to the device where these blocks are
42 * located was received and completed.
Stefan Behrens5db02762011-11-01 17:04:16 +010043 * 2b. All referenced blocks need to have a generation
44 * number which is equal to the parent's number.
45 *
46 * One issue that was found using this module was that the log
47 * tree on disk became temporarily corrupted because disk blocks
48 * that had been in use for the log tree had been freed and
49 * reused too early, while being referenced by the written super
50 * block.
51 *
52 * The search term in the kernel log that can be used to filter
53 * on the existence of detected integrity issues is
54 * "btrfs: attempt".
55 *
56 * The integrity check is enabled via mount options. These
57 * mount options are only supported if the integrity check
58 * tool is compiled by defining BTRFS_FS_CHECK_INTEGRITY.
59 *
60 * Example #1, apply integrity checks to all metadata:
61 * mount /dev/sdb1 /mnt -o check_int
62 *
63 * Example #2, apply integrity checks to all metadata and
64 * to data extents:
65 * mount /dev/sdb1 /mnt -o check_int_data
66 *
67 * Example #3, apply integrity checks to all metadata and dump
68 * the tree that the super block references to kernel messages
69 * each time after a super block was written:
70 * mount /dev/sdb1 /mnt -o check_int,check_int_print_mask=263
71 *
72 * If the integrity check tool is included and activated in
73 * the mount options, plenty of kernel memory is used, and
74 * plenty of additional CPU cycles are spent. Enabling this
75 * functionality is not intended for normal use. In most
76 * cases, unless you are a btrfs developer who needs to verify
77 * the integrity of (super)-block write requests, do not
78 * enable the config option BTRFS_FS_CHECK_INTEGRITY to
79 * include and compile the integrity check tool.
80 */
81
82#include <linux/sched.h>
83#include <linux/slab.h>
84#include <linux/buffer_head.h>
85#include <linux/mutex.h>
86#include <linux/crc32c.h>
87#include <linux/genhd.h>
88#include <linux/blkdev.h>
89#include "ctree.h"
90#include "disk-io.h"
91#include "transaction.h"
92#include "extent_io.h"
Stefan Behrens5db02762011-11-01 17:04:16 +010093#include "volumes.h"
94#include "print-tree.h"
95#include "locking.h"
96#include "check-integrity.h"
Josef Bacik606686e2012-06-04 14:03:51 -040097#include "rcu-string.h"
Stefan Behrens5db02762011-11-01 17:04:16 +010098
99#define BTRFSIC_BLOCK_HASHTABLE_SIZE 0x10000
100#define BTRFSIC_BLOCK_LINK_HASHTABLE_SIZE 0x10000
101#define BTRFSIC_DEV2STATE_HASHTABLE_SIZE 0x100
102#define BTRFSIC_BLOCK_MAGIC_NUMBER 0x14491051
103#define BTRFSIC_BLOCK_LINK_MAGIC_NUMBER 0x11070807
104#define BTRFSIC_DEV2STATE_MAGIC_NUMBER 0x20111530
105#define BTRFSIC_BLOCK_STACK_FRAME_MAGIC_NUMBER 20111300
106#define BTRFSIC_TREE_DUMP_MAX_INDENT_LEVEL (200 - 6) /* in characters,
107 * excluding " [...]" */
Stefan Behrens5db02762011-11-01 17:04:16 +0100108#define BTRFSIC_GENERATION_UNKNOWN ((u64)-1)
109
110/*
111 * The definition of the bitmask fields for the print_mask.
112 * They are specified with the mount option check_integrity_print_mask.
113 */
114#define BTRFSIC_PRINT_MASK_SUPERBLOCK_WRITE 0x00000001
115#define BTRFSIC_PRINT_MASK_ROOT_CHUNK_LOG_TREE_LOCATION 0x00000002
116#define BTRFSIC_PRINT_MASK_TREE_AFTER_SB_WRITE 0x00000004
117#define BTRFSIC_PRINT_MASK_TREE_BEFORE_SB_WRITE 0x00000008
118#define BTRFSIC_PRINT_MASK_SUBMIT_BIO_BH 0x00000010
119#define BTRFSIC_PRINT_MASK_END_IO_BIO_BH 0x00000020
120#define BTRFSIC_PRINT_MASK_VERBOSE 0x00000040
121#define BTRFSIC_PRINT_MASK_VERY_VERBOSE 0x00000080
122#define BTRFSIC_PRINT_MASK_INITIAL_TREE 0x00000100
123#define BTRFSIC_PRINT_MASK_INITIAL_ALL_TREES 0x00000200
124#define BTRFSIC_PRINT_MASK_INITIAL_DATABASE 0x00000400
125#define BTRFSIC_PRINT_MASK_NUM_COPIES 0x00000800
126#define BTRFSIC_PRINT_MASK_TREE_WITH_ALL_MIRRORS 0x00001000
127
128struct btrfsic_dev_state;
129struct btrfsic_state;
130
131struct btrfsic_block {
132 u32 magic_num; /* only used for debug purposes */
133 unsigned int is_metadata:1; /* if it is meta-data, not data-data */
134 unsigned int is_superblock:1; /* if it is one of the superblocks */
135 unsigned int is_iodone:1; /* if is done by lower subsystem */
136 unsigned int iodone_w_error:1; /* error was indicated to endio */
137 unsigned int never_written:1; /* block was added because it was
138 * referenced, not because it was
139 * written */
Stefan Behrenscb3806e2012-11-27 16:10:21 +0000140 unsigned int mirror_num; /* large enough to hold
Stefan Behrens5db02762011-11-01 17:04:16 +0100141 * BTRFS_SUPER_MIRROR_MAX */
142 struct btrfsic_dev_state *dev_state;
143 u64 dev_bytenr; /* key, physical byte num on disk */
144 u64 logical_bytenr; /* logical byte num on disk */
145 u64 generation;
146 struct btrfs_disk_key disk_key; /* extra info to print in case of
147 * issues, will not always be correct */
148 struct list_head collision_resolving_node; /* list node */
149 struct list_head all_blocks_node; /* list node */
150
151 /* the following two lists contain block_link items */
152 struct list_head ref_to_list; /* list */
153 struct list_head ref_from_list; /* list */
154 struct btrfsic_block *next_in_same_bio;
155 void *orig_bio_bh_private;
156 union {
157 bio_end_io_t *bio;
158 bh_end_io_t *bh;
159 } orig_bio_bh_end_io;
160 int submit_bio_bh_rw;
161 u64 flush_gen; /* only valid if !never_written */
162};
163
164/*
165 * Elements of this type are allocated dynamically and required because
166 * each block object can refer to and can be ref from multiple blocks.
167 * The key to lookup them in the hashtable is the dev_bytenr of
168 * the block ref to plus the one from the block refered from.
169 * The fact that they are searchable via a hashtable and that a
170 * ref_cnt is maintained is not required for the btrfs integrity
171 * check algorithm itself, it is only used to make the output more
172 * beautiful in case that an error is detected (an error is defined
173 * as a write operation to a block while that block is still referenced).
174 */
175struct btrfsic_block_link {
176 u32 magic_num; /* only used for debug purposes */
177 u32 ref_cnt;
178 struct list_head node_ref_to; /* list node */
179 struct list_head node_ref_from; /* list node */
180 struct list_head collision_resolving_node; /* list node */
181 struct btrfsic_block *block_ref_to;
182 struct btrfsic_block *block_ref_from;
183 u64 parent_generation;
184};
185
186struct btrfsic_dev_state {
187 u32 magic_num; /* only used for debug purposes */
188 struct block_device *bdev;
189 struct btrfsic_state *state;
190 struct list_head collision_resolving_node; /* list node */
191 struct btrfsic_block dummy_block_for_bio_bh_flush;
192 u64 last_flush_gen;
193 char name[BDEVNAME_SIZE];
194};
195
196struct btrfsic_block_hashtable {
197 struct list_head table[BTRFSIC_BLOCK_HASHTABLE_SIZE];
198};
199
200struct btrfsic_block_link_hashtable {
201 struct list_head table[BTRFSIC_BLOCK_LINK_HASHTABLE_SIZE];
202};
203
204struct btrfsic_dev_state_hashtable {
205 struct list_head table[BTRFSIC_DEV2STATE_HASHTABLE_SIZE];
206};
207
208struct btrfsic_block_data_ctx {
209 u64 start; /* virtual bytenr */
210 u64 dev_bytenr; /* physical bytenr on device */
211 u32 len;
212 struct btrfsic_dev_state *dev;
Stefan Behrense06baab2012-04-12 12:53:40 +0200213 char **datav;
214 struct page **pagev;
215 void *mem_to_free;
Stefan Behrens5db02762011-11-01 17:04:16 +0100216};
217
218/* This structure is used to implement recursion without occupying
219 * any stack space, refer to btrfsic_process_metablock() */
220struct btrfsic_stack_frame {
221 u32 magic;
222 u32 nr;
223 int error;
224 int i;
225 int limit_nesting;
226 int num_copies;
227 int mirror_num;
228 struct btrfsic_block *block;
229 struct btrfsic_block_data_ctx *block_ctx;
230 struct btrfsic_block *next_block;
231 struct btrfsic_block_data_ctx next_block_ctx;
232 struct btrfs_header *hdr;
233 struct btrfsic_stack_frame *prev;
234};
235
236/* Some state per mounted filesystem */
237struct btrfsic_state {
238 u32 print_mask;
239 int include_extent_data;
240 int csum_size;
241 struct list_head all_blocks_list;
242 struct btrfsic_block_hashtable block_hashtable;
243 struct btrfsic_block_link_hashtable block_link_hashtable;
244 struct btrfs_root *root;
245 u64 max_superblock_generation;
246 struct btrfsic_block *latest_superblock;
Stefan Behrense06baab2012-04-12 12:53:40 +0200247 u32 metablock_size;
248 u32 datablock_size;
Stefan Behrens5db02762011-11-01 17:04:16 +0100249};
250
251static void btrfsic_block_init(struct btrfsic_block *b);
252static struct btrfsic_block *btrfsic_block_alloc(void);
253static void btrfsic_block_free(struct btrfsic_block *b);
254static void btrfsic_block_link_init(struct btrfsic_block_link *n);
255static struct btrfsic_block_link *btrfsic_block_link_alloc(void);
256static void btrfsic_block_link_free(struct btrfsic_block_link *n);
257static void btrfsic_dev_state_init(struct btrfsic_dev_state *ds);
258static struct btrfsic_dev_state *btrfsic_dev_state_alloc(void);
259static void btrfsic_dev_state_free(struct btrfsic_dev_state *ds);
260static void btrfsic_block_hashtable_init(struct btrfsic_block_hashtable *h);
261static void btrfsic_block_hashtable_add(struct btrfsic_block *b,
262 struct btrfsic_block_hashtable *h);
263static void btrfsic_block_hashtable_remove(struct btrfsic_block *b);
264static struct btrfsic_block *btrfsic_block_hashtable_lookup(
265 struct block_device *bdev,
266 u64 dev_bytenr,
267 struct btrfsic_block_hashtable *h);
268static void btrfsic_block_link_hashtable_init(
269 struct btrfsic_block_link_hashtable *h);
270static void btrfsic_block_link_hashtable_add(
271 struct btrfsic_block_link *l,
272 struct btrfsic_block_link_hashtable *h);
273static void btrfsic_block_link_hashtable_remove(struct btrfsic_block_link *l);
274static struct btrfsic_block_link *btrfsic_block_link_hashtable_lookup(
275 struct block_device *bdev_ref_to,
276 u64 dev_bytenr_ref_to,
277 struct block_device *bdev_ref_from,
278 u64 dev_bytenr_ref_from,
279 struct btrfsic_block_link_hashtable *h);
280static void btrfsic_dev_state_hashtable_init(
281 struct btrfsic_dev_state_hashtable *h);
282static void btrfsic_dev_state_hashtable_add(
283 struct btrfsic_dev_state *ds,
284 struct btrfsic_dev_state_hashtable *h);
285static void btrfsic_dev_state_hashtable_remove(struct btrfsic_dev_state *ds);
286static struct btrfsic_dev_state *btrfsic_dev_state_hashtable_lookup(
287 struct block_device *bdev,
288 struct btrfsic_dev_state_hashtable *h);
289static struct btrfsic_stack_frame *btrfsic_stack_frame_alloc(void);
290static void btrfsic_stack_frame_free(struct btrfsic_stack_frame *sf);
291static int btrfsic_process_superblock(struct btrfsic_state *state,
292 struct btrfs_fs_devices *fs_devices);
293static int btrfsic_process_metablock(struct btrfsic_state *state,
294 struct btrfsic_block *block,
295 struct btrfsic_block_data_ctx *block_ctx,
Stefan Behrens5db02762011-11-01 17:04:16 +0100296 int limit_nesting, int force_iodone_flag);
Stefan Behrense06baab2012-04-12 12:53:40 +0200297static void btrfsic_read_from_block_data(
298 struct btrfsic_block_data_ctx *block_ctx,
299 void *dst, u32 offset, size_t len);
Stefan Behrens5db02762011-11-01 17:04:16 +0100300static int btrfsic_create_link_to_next_block(
301 struct btrfsic_state *state,
302 struct btrfsic_block *block,
303 struct btrfsic_block_data_ctx
304 *block_ctx, u64 next_bytenr,
305 int limit_nesting,
306 struct btrfsic_block_data_ctx *next_block_ctx,
307 struct btrfsic_block **next_blockp,
308 int force_iodone_flag,
309 int *num_copiesp, int *mirror_nump,
310 struct btrfs_disk_key *disk_key,
311 u64 parent_generation);
312static int btrfsic_handle_extent_data(struct btrfsic_state *state,
313 struct btrfsic_block *block,
314 struct btrfsic_block_data_ctx *block_ctx,
315 u32 item_offset, int force_iodone_flag);
316static int btrfsic_map_block(struct btrfsic_state *state, u64 bytenr, u32 len,
317 struct btrfsic_block_data_ctx *block_ctx_out,
318 int mirror_num);
319static int btrfsic_map_superblock(struct btrfsic_state *state, u64 bytenr,
320 u32 len, struct block_device *bdev,
321 struct btrfsic_block_data_ctx *block_ctx_out);
322static void btrfsic_release_block_ctx(struct btrfsic_block_data_ctx *block_ctx);
323static int btrfsic_read_block(struct btrfsic_state *state,
324 struct btrfsic_block_data_ctx *block_ctx);
325static void btrfsic_dump_database(struct btrfsic_state *state);
Stefan Behrense06baab2012-04-12 12:53:40 +0200326static void btrfsic_complete_bio_end_io(struct bio *bio, int err);
Stefan Behrens5db02762011-11-01 17:04:16 +0100327static int btrfsic_test_for_metadata(struct btrfsic_state *state,
Stefan Behrense06baab2012-04-12 12:53:40 +0200328 char **datav, unsigned int num_pages);
Stefan Behrens5db02762011-11-01 17:04:16 +0100329static void btrfsic_process_written_block(struct btrfsic_dev_state *dev_state,
Stefan Behrense06baab2012-04-12 12:53:40 +0200330 u64 dev_bytenr, char **mapped_datav,
331 unsigned int num_pages,
332 struct bio *bio, int *bio_is_patched,
Stefan Behrens5db02762011-11-01 17:04:16 +0100333 struct buffer_head *bh,
334 int submit_bio_bh_rw);
335static int btrfsic_process_written_superblock(
336 struct btrfsic_state *state,
337 struct btrfsic_block *const block,
338 struct btrfs_super_block *const super_hdr);
339static void btrfsic_bio_end_io(struct bio *bp, int bio_error_status);
340static void btrfsic_bh_end_io(struct buffer_head *bh, int uptodate);
341static int btrfsic_is_block_ref_by_superblock(const struct btrfsic_state *state,
342 const struct btrfsic_block *block,
343 int recursion_level);
344static int btrfsic_check_all_ref_blocks(struct btrfsic_state *state,
345 struct btrfsic_block *const block,
346 int recursion_level);
347static void btrfsic_print_add_link(const struct btrfsic_state *state,
348 const struct btrfsic_block_link *l);
349static void btrfsic_print_rem_link(const struct btrfsic_state *state,
350 const struct btrfsic_block_link *l);
351static char btrfsic_get_block_type(const struct btrfsic_state *state,
352 const struct btrfsic_block *block);
353static void btrfsic_dump_tree(const struct btrfsic_state *state);
354static void btrfsic_dump_tree_sub(const struct btrfsic_state *state,
355 const struct btrfsic_block *block,
356 int indent_level);
357static struct btrfsic_block_link *btrfsic_block_link_lookup_or_add(
358 struct btrfsic_state *state,
359 struct btrfsic_block_data_ctx *next_block_ctx,
360 struct btrfsic_block *next_block,
361 struct btrfsic_block *from_block,
362 u64 parent_generation);
363static struct btrfsic_block *btrfsic_block_lookup_or_add(
364 struct btrfsic_state *state,
365 struct btrfsic_block_data_ctx *block_ctx,
366 const char *additional_string,
367 int is_metadata,
368 int is_iodone,
369 int never_written,
370 int mirror_num,
371 int *was_created);
372static int btrfsic_process_superblock_dev_mirror(
373 struct btrfsic_state *state,
374 struct btrfsic_dev_state *dev_state,
375 struct btrfs_device *device,
376 int superblock_mirror_num,
377 struct btrfsic_dev_state **selected_dev_state,
378 struct btrfs_super_block *selected_super);
379static struct btrfsic_dev_state *btrfsic_dev_state_lookup(
380 struct block_device *bdev);
381static void btrfsic_cmp_log_and_dev_bytenr(struct btrfsic_state *state,
382 u64 bytenr,
383 struct btrfsic_dev_state *dev_state,
Stefan Behrense06baab2012-04-12 12:53:40 +0200384 u64 dev_bytenr);
Stefan Behrens5db02762011-11-01 17:04:16 +0100385
386static struct mutex btrfsic_mutex;
387static int btrfsic_is_initialized;
388static struct btrfsic_dev_state_hashtable btrfsic_dev_state_hashtable;
389
390
391static void btrfsic_block_init(struct btrfsic_block *b)
392{
393 b->magic_num = BTRFSIC_BLOCK_MAGIC_NUMBER;
394 b->dev_state = NULL;
395 b->dev_bytenr = 0;
396 b->logical_bytenr = 0;
397 b->generation = BTRFSIC_GENERATION_UNKNOWN;
398 b->disk_key.objectid = 0;
399 b->disk_key.type = 0;
400 b->disk_key.offset = 0;
401 b->is_metadata = 0;
402 b->is_superblock = 0;
403 b->is_iodone = 0;
404 b->iodone_w_error = 0;
405 b->never_written = 0;
406 b->mirror_num = 0;
407 b->next_in_same_bio = NULL;
408 b->orig_bio_bh_private = NULL;
409 b->orig_bio_bh_end_io.bio = NULL;
410 INIT_LIST_HEAD(&b->collision_resolving_node);
411 INIT_LIST_HEAD(&b->all_blocks_node);
412 INIT_LIST_HEAD(&b->ref_to_list);
413 INIT_LIST_HEAD(&b->ref_from_list);
414 b->submit_bio_bh_rw = 0;
415 b->flush_gen = 0;
416}
417
418static struct btrfsic_block *btrfsic_block_alloc(void)
419{
420 struct btrfsic_block *b;
421
422 b = kzalloc(sizeof(*b), GFP_NOFS);
423 if (NULL != b)
424 btrfsic_block_init(b);
425
426 return b;
427}
428
429static void btrfsic_block_free(struct btrfsic_block *b)
430{
431 BUG_ON(!(NULL == b || BTRFSIC_BLOCK_MAGIC_NUMBER == b->magic_num));
432 kfree(b);
433}
434
435static void btrfsic_block_link_init(struct btrfsic_block_link *l)
436{
437 l->magic_num = BTRFSIC_BLOCK_LINK_MAGIC_NUMBER;
438 l->ref_cnt = 1;
439 INIT_LIST_HEAD(&l->node_ref_to);
440 INIT_LIST_HEAD(&l->node_ref_from);
441 INIT_LIST_HEAD(&l->collision_resolving_node);
442 l->block_ref_to = NULL;
443 l->block_ref_from = NULL;
444}
445
446static struct btrfsic_block_link *btrfsic_block_link_alloc(void)
447{
448 struct btrfsic_block_link *l;
449
450 l = kzalloc(sizeof(*l), GFP_NOFS);
451 if (NULL != l)
452 btrfsic_block_link_init(l);
453
454 return l;
455}
456
457static void btrfsic_block_link_free(struct btrfsic_block_link *l)
458{
459 BUG_ON(!(NULL == l || BTRFSIC_BLOCK_LINK_MAGIC_NUMBER == l->magic_num));
460 kfree(l);
461}
462
463static void btrfsic_dev_state_init(struct btrfsic_dev_state *ds)
464{
465 ds->magic_num = BTRFSIC_DEV2STATE_MAGIC_NUMBER;
466 ds->bdev = NULL;
467 ds->state = NULL;
468 ds->name[0] = '\0';
469 INIT_LIST_HEAD(&ds->collision_resolving_node);
470 ds->last_flush_gen = 0;
471 btrfsic_block_init(&ds->dummy_block_for_bio_bh_flush);
472 ds->dummy_block_for_bio_bh_flush.is_iodone = 1;
473 ds->dummy_block_for_bio_bh_flush.dev_state = ds;
474}
475
476static struct btrfsic_dev_state *btrfsic_dev_state_alloc(void)
477{
478 struct btrfsic_dev_state *ds;
479
480 ds = kzalloc(sizeof(*ds), GFP_NOFS);
481 if (NULL != ds)
482 btrfsic_dev_state_init(ds);
483
484 return ds;
485}
486
487static void btrfsic_dev_state_free(struct btrfsic_dev_state *ds)
488{
489 BUG_ON(!(NULL == ds ||
490 BTRFSIC_DEV2STATE_MAGIC_NUMBER == ds->magic_num));
491 kfree(ds);
492}
493
494static void btrfsic_block_hashtable_init(struct btrfsic_block_hashtable *h)
495{
496 int i;
497
498 for (i = 0; i < BTRFSIC_BLOCK_HASHTABLE_SIZE; i++)
499 INIT_LIST_HEAD(h->table + i);
500}
501
502static void btrfsic_block_hashtable_add(struct btrfsic_block *b,
503 struct btrfsic_block_hashtable *h)
504{
505 const unsigned int hashval =
506 (((unsigned int)(b->dev_bytenr >> 16)) ^
507 ((unsigned int)((uintptr_t)b->dev_state->bdev))) &
508 (BTRFSIC_BLOCK_HASHTABLE_SIZE - 1);
509
510 list_add(&b->collision_resolving_node, h->table + hashval);
511}
512
513static void btrfsic_block_hashtable_remove(struct btrfsic_block *b)
514{
515 list_del(&b->collision_resolving_node);
516}
517
518static struct btrfsic_block *btrfsic_block_hashtable_lookup(
519 struct block_device *bdev,
520 u64 dev_bytenr,
521 struct btrfsic_block_hashtable *h)
522{
523 const unsigned int hashval =
524 (((unsigned int)(dev_bytenr >> 16)) ^
525 ((unsigned int)((uintptr_t)bdev))) &
526 (BTRFSIC_BLOCK_HASHTABLE_SIZE - 1);
527 struct list_head *elem;
528
529 list_for_each(elem, h->table + hashval) {
530 struct btrfsic_block *const b =
531 list_entry(elem, struct btrfsic_block,
532 collision_resolving_node);
533
534 if (b->dev_state->bdev == bdev && b->dev_bytenr == dev_bytenr)
535 return b;
536 }
537
538 return NULL;
539}
540
541static void btrfsic_block_link_hashtable_init(
542 struct btrfsic_block_link_hashtable *h)
543{
544 int i;
545
546 for (i = 0; i < BTRFSIC_BLOCK_LINK_HASHTABLE_SIZE; i++)
547 INIT_LIST_HEAD(h->table + i);
548}
549
550static void btrfsic_block_link_hashtable_add(
551 struct btrfsic_block_link *l,
552 struct btrfsic_block_link_hashtable *h)
553{
554 const unsigned int hashval =
555 (((unsigned int)(l->block_ref_to->dev_bytenr >> 16)) ^
556 ((unsigned int)(l->block_ref_from->dev_bytenr >> 16)) ^
557 ((unsigned int)((uintptr_t)l->block_ref_to->dev_state->bdev)) ^
558 ((unsigned int)((uintptr_t)l->block_ref_from->dev_state->bdev)))
559 & (BTRFSIC_BLOCK_LINK_HASHTABLE_SIZE - 1);
560
561 BUG_ON(NULL == l->block_ref_to);
562 BUG_ON(NULL == l->block_ref_from);
563 list_add(&l->collision_resolving_node, h->table + hashval);
564}
565
566static void btrfsic_block_link_hashtable_remove(struct btrfsic_block_link *l)
567{
568 list_del(&l->collision_resolving_node);
569}
570
571static struct btrfsic_block_link *btrfsic_block_link_hashtable_lookup(
572 struct block_device *bdev_ref_to,
573 u64 dev_bytenr_ref_to,
574 struct block_device *bdev_ref_from,
575 u64 dev_bytenr_ref_from,
576 struct btrfsic_block_link_hashtable *h)
577{
578 const unsigned int hashval =
579 (((unsigned int)(dev_bytenr_ref_to >> 16)) ^
580 ((unsigned int)(dev_bytenr_ref_from >> 16)) ^
581 ((unsigned int)((uintptr_t)bdev_ref_to)) ^
582 ((unsigned int)((uintptr_t)bdev_ref_from))) &
583 (BTRFSIC_BLOCK_LINK_HASHTABLE_SIZE - 1);
584 struct list_head *elem;
585
586 list_for_each(elem, h->table + hashval) {
587 struct btrfsic_block_link *const l =
588 list_entry(elem, struct btrfsic_block_link,
589 collision_resolving_node);
590
591 BUG_ON(NULL == l->block_ref_to);
592 BUG_ON(NULL == l->block_ref_from);
593 if (l->block_ref_to->dev_state->bdev == bdev_ref_to &&
594 l->block_ref_to->dev_bytenr == dev_bytenr_ref_to &&
595 l->block_ref_from->dev_state->bdev == bdev_ref_from &&
596 l->block_ref_from->dev_bytenr == dev_bytenr_ref_from)
597 return l;
598 }
599
600 return NULL;
601}
602
603static void btrfsic_dev_state_hashtable_init(
604 struct btrfsic_dev_state_hashtable *h)
605{
606 int i;
607
608 for (i = 0; i < BTRFSIC_DEV2STATE_HASHTABLE_SIZE; i++)
609 INIT_LIST_HEAD(h->table + i);
610}
611
612static void btrfsic_dev_state_hashtable_add(
613 struct btrfsic_dev_state *ds,
614 struct btrfsic_dev_state_hashtable *h)
615{
616 const unsigned int hashval =
617 (((unsigned int)((uintptr_t)ds->bdev)) &
618 (BTRFSIC_DEV2STATE_HASHTABLE_SIZE - 1));
619
620 list_add(&ds->collision_resolving_node, h->table + hashval);
621}
622
623static void btrfsic_dev_state_hashtable_remove(struct btrfsic_dev_state *ds)
624{
625 list_del(&ds->collision_resolving_node);
626}
627
628static struct btrfsic_dev_state *btrfsic_dev_state_hashtable_lookup(
629 struct block_device *bdev,
630 struct btrfsic_dev_state_hashtable *h)
631{
632 const unsigned int hashval =
633 (((unsigned int)((uintptr_t)bdev)) &
634 (BTRFSIC_DEV2STATE_HASHTABLE_SIZE - 1));
635 struct list_head *elem;
636
637 list_for_each(elem, h->table + hashval) {
638 struct btrfsic_dev_state *const ds =
639 list_entry(elem, struct btrfsic_dev_state,
640 collision_resolving_node);
641
642 if (ds->bdev == bdev)
643 return ds;
644 }
645
646 return NULL;
647}
648
649static int btrfsic_process_superblock(struct btrfsic_state *state,
650 struct btrfs_fs_devices *fs_devices)
651{
Chris Masone77266e2012-02-24 10:39:05 -0500652 int ret = 0;
Stefan Behrens5db02762011-11-01 17:04:16 +0100653 struct btrfs_super_block *selected_super;
654 struct list_head *dev_head = &fs_devices->devices;
655 struct btrfs_device *device;
656 struct btrfsic_dev_state *selected_dev_state = NULL;
657 int pass;
658
659 BUG_ON(NULL == state);
Stefan Behrense06baab2012-04-12 12:53:40 +0200660 selected_super = kzalloc(sizeof(*selected_super), GFP_NOFS);
Stefan Behrens5db02762011-11-01 17:04:16 +0100661 if (NULL == selected_super) {
662 printk(KERN_INFO "btrfsic: error, kmalloc failed!\n");
663 return -1;
664 }
665
666 list_for_each_entry(device, dev_head, dev_list) {
667 int i;
668 struct btrfsic_dev_state *dev_state;
669
670 if (!device->bdev || !device->name)
671 continue;
672
673 dev_state = btrfsic_dev_state_lookup(device->bdev);
674 BUG_ON(NULL == dev_state);
675 for (i = 0; i < BTRFS_SUPER_MIRROR_MAX; i++) {
676 ret = btrfsic_process_superblock_dev_mirror(
677 state, dev_state, device, i,
678 &selected_dev_state, selected_super);
679 if (0 != ret && 0 == i) {
680 kfree(selected_super);
681 return ret;
682 }
683 }
684 }
685
686 if (NULL == state->latest_superblock) {
687 printk(KERN_INFO "btrfsic: no superblock found!\n");
688 kfree(selected_super);
689 return -1;
690 }
691
692 state->csum_size = btrfs_super_csum_size(selected_super);
693
694 for (pass = 0; pass < 3; pass++) {
695 int num_copies;
696 int mirror_num;
697 u64 next_bytenr;
698
699 switch (pass) {
700 case 0:
701 next_bytenr = btrfs_super_root(selected_super);
702 if (state->print_mask &
703 BTRFSIC_PRINT_MASK_ROOT_CHUNK_LOG_TREE_LOCATION)
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +0200704 printk(KERN_INFO "root@%llu\n", next_bytenr);
Stefan Behrens5db02762011-11-01 17:04:16 +0100705 break;
706 case 1:
707 next_bytenr = btrfs_super_chunk_root(selected_super);
708 if (state->print_mask &
709 BTRFSIC_PRINT_MASK_ROOT_CHUNK_LOG_TREE_LOCATION)
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +0200710 printk(KERN_INFO "chunk@%llu\n", next_bytenr);
Stefan Behrens5db02762011-11-01 17:04:16 +0100711 break;
712 case 2:
713 next_bytenr = btrfs_super_log_root(selected_super);
714 if (0 == next_bytenr)
715 continue;
716 if (state->print_mask &
717 BTRFSIC_PRINT_MASK_ROOT_CHUNK_LOG_TREE_LOCATION)
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +0200718 printk(KERN_INFO "log@%llu\n", next_bytenr);
Stefan Behrens5db02762011-11-01 17:04:16 +0100719 break;
720 }
721
722 num_copies =
Stefan Behrens5d964052012-11-05 14:59:07 +0100723 btrfs_num_copies(state->root->fs_info,
Stefan Behrense06baab2012-04-12 12:53:40 +0200724 next_bytenr, state->metablock_size);
Stefan Behrens5db02762011-11-01 17:04:16 +0100725 if (state->print_mask & BTRFSIC_PRINT_MASK_NUM_COPIES)
726 printk(KERN_INFO "num_copies(log_bytenr=%llu) = %d\n",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +0200727 next_bytenr, num_copies);
Stefan Behrens5db02762011-11-01 17:04:16 +0100728
729 for (mirror_num = 1; mirror_num <= num_copies; mirror_num++) {
730 struct btrfsic_block *next_block;
731 struct btrfsic_block_data_ctx tmp_next_block_ctx;
732 struct btrfsic_block_link *l;
Stefan Behrens5db02762011-11-01 17:04:16 +0100733
Stefan Behrense06baab2012-04-12 12:53:40 +0200734 ret = btrfsic_map_block(state, next_bytenr,
735 state->metablock_size,
Stefan Behrens5db02762011-11-01 17:04:16 +0100736 &tmp_next_block_ctx,
737 mirror_num);
738 if (ret) {
739 printk(KERN_INFO "btrfsic:"
740 " btrfsic_map_block(root @%llu,"
741 " mirror %d) failed!\n",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +0200742 next_bytenr, mirror_num);
Stefan Behrens5db02762011-11-01 17:04:16 +0100743 kfree(selected_super);
744 return -1;
745 }
746
747 next_block = btrfsic_block_hashtable_lookup(
748 tmp_next_block_ctx.dev->bdev,
749 tmp_next_block_ctx.dev_bytenr,
750 &state->block_hashtable);
751 BUG_ON(NULL == next_block);
752
753 l = btrfsic_block_link_hashtable_lookup(
754 tmp_next_block_ctx.dev->bdev,
755 tmp_next_block_ctx.dev_bytenr,
756 state->latest_superblock->dev_state->
757 bdev,
758 state->latest_superblock->dev_bytenr,
759 &state->block_link_hashtable);
760 BUG_ON(NULL == l);
761
762 ret = btrfsic_read_block(state, &tmp_next_block_ctx);
Stefan Behrense06baab2012-04-12 12:53:40 +0200763 if (ret < (int)PAGE_CACHE_SIZE) {
Stefan Behrens5db02762011-11-01 17:04:16 +0100764 printk(KERN_INFO
765 "btrfsic: read @logical %llu failed!\n",
Stefan Behrens5db02762011-11-01 17:04:16 +0100766 tmp_next_block_ctx.start);
767 btrfsic_release_block_ctx(&tmp_next_block_ctx);
768 kfree(selected_super);
769 return -1;
770 }
771
Stefan Behrens5db02762011-11-01 17:04:16 +0100772 ret = btrfsic_process_metablock(state,
773 next_block,
774 &tmp_next_block_ctx,
Stefan Behrens5db02762011-11-01 17:04:16 +0100775 BTRFS_MAX_LEVEL + 3, 1);
776 btrfsic_release_block_ctx(&tmp_next_block_ctx);
777 }
778 }
779
780 kfree(selected_super);
781 return ret;
782}
783
784static int btrfsic_process_superblock_dev_mirror(
785 struct btrfsic_state *state,
786 struct btrfsic_dev_state *dev_state,
787 struct btrfs_device *device,
788 int superblock_mirror_num,
789 struct btrfsic_dev_state **selected_dev_state,
790 struct btrfs_super_block *selected_super)
791{
792 struct btrfs_super_block *super_tmp;
793 u64 dev_bytenr;
794 struct buffer_head *bh;
795 struct btrfsic_block *superblock_tmp;
796 int pass;
797 struct block_device *const superblock_bdev = device->bdev;
798
799 /* super block bytenr is always the unmapped device bytenr */
800 dev_bytenr = btrfs_sb_offset(superblock_mirror_num);
Stefan Behrense06baab2012-04-12 12:53:40 +0200801 if (dev_bytenr + BTRFS_SUPER_INFO_SIZE > device->total_bytes)
802 return -1;
803 bh = __bread(superblock_bdev, dev_bytenr / 4096,
804 BTRFS_SUPER_INFO_SIZE);
Stefan Behrens5db02762011-11-01 17:04:16 +0100805 if (NULL == bh)
806 return -1;
807 super_tmp = (struct btrfs_super_block *)
808 (bh->b_data + (dev_bytenr & 4095));
809
810 if (btrfs_super_bytenr(super_tmp) != dev_bytenr ||
Qu Wenruo3cae2102013-07-16 11:19:18 +0800811 btrfs_super_magic(super_tmp) != BTRFS_MAGIC ||
Stefan Behrense06baab2012-04-12 12:53:40 +0200812 memcmp(device->uuid, super_tmp->dev_item.uuid, BTRFS_UUID_SIZE) ||
813 btrfs_super_nodesize(super_tmp) != state->metablock_size ||
814 btrfs_super_leafsize(super_tmp) != state->metablock_size ||
815 btrfs_super_sectorsize(super_tmp) != state->datablock_size) {
Stefan Behrens5db02762011-11-01 17:04:16 +0100816 brelse(bh);
817 return 0;
818 }
819
820 superblock_tmp =
821 btrfsic_block_hashtable_lookup(superblock_bdev,
822 dev_bytenr,
823 &state->block_hashtable);
824 if (NULL == superblock_tmp) {
825 superblock_tmp = btrfsic_block_alloc();
826 if (NULL == superblock_tmp) {
827 printk(KERN_INFO "btrfsic: error, kmalloc failed!\n");
828 brelse(bh);
829 return -1;
830 }
831 /* for superblock, only the dev_bytenr makes sense */
832 superblock_tmp->dev_bytenr = dev_bytenr;
833 superblock_tmp->dev_state = dev_state;
834 superblock_tmp->logical_bytenr = dev_bytenr;
835 superblock_tmp->generation = btrfs_super_generation(super_tmp);
836 superblock_tmp->is_metadata = 1;
837 superblock_tmp->is_superblock = 1;
838 superblock_tmp->is_iodone = 1;
839 superblock_tmp->never_written = 0;
840 superblock_tmp->mirror_num = 1 + superblock_mirror_num;
841 if (state->print_mask & BTRFSIC_PRINT_MASK_SUPERBLOCK_WRITE)
Josef Bacik606686e2012-06-04 14:03:51 -0400842 printk_in_rcu(KERN_INFO "New initial S-block (bdev %p, %s)"
843 " @%llu (%s/%llu/%d)\n",
844 superblock_bdev,
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +0200845 rcu_str_deref(device->name), dev_bytenr,
846 dev_state->name, dev_bytenr,
Josef Bacik606686e2012-06-04 14:03:51 -0400847 superblock_mirror_num);
Stefan Behrens5db02762011-11-01 17:04:16 +0100848 list_add(&superblock_tmp->all_blocks_node,
849 &state->all_blocks_list);
850 btrfsic_block_hashtable_add(superblock_tmp,
851 &state->block_hashtable);
852 }
853
854 /* select the one with the highest generation field */
855 if (btrfs_super_generation(super_tmp) >
856 state->max_superblock_generation ||
857 0 == state->max_superblock_generation) {
858 memcpy(selected_super, super_tmp, sizeof(*selected_super));
859 *selected_dev_state = dev_state;
860 state->max_superblock_generation =
861 btrfs_super_generation(super_tmp);
862 state->latest_superblock = superblock_tmp;
863 }
864
865 for (pass = 0; pass < 3; pass++) {
866 u64 next_bytenr;
867 int num_copies;
868 int mirror_num;
869 const char *additional_string = NULL;
870 struct btrfs_disk_key tmp_disk_key;
871
872 tmp_disk_key.type = BTRFS_ROOT_ITEM_KEY;
873 tmp_disk_key.offset = 0;
874 switch (pass) {
875 case 0:
Qu Wenruo3cae2102013-07-16 11:19:18 +0800876 btrfs_set_disk_key_objectid(&tmp_disk_key,
877 BTRFS_ROOT_TREE_OBJECTID);
Stefan Behrens5db02762011-11-01 17:04:16 +0100878 additional_string = "initial root ";
879 next_bytenr = btrfs_super_root(super_tmp);
880 break;
881 case 1:
Qu Wenruo3cae2102013-07-16 11:19:18 +0800882 btrfs_set_disk_key_objectid(&tmp_disk_key,
883 BTRFS_CHUNK_TREE_OBJECTID);
Stefan Behrens5db02762011-11-01 17:04:16 +0100884 additional_string = "initial chunk ";
885 next_bytenr = btrfs_super_chunk_root(super_tmp);
886 break;
887 case 2:
Qu Wenruo3cae2102013-07-16 11:19:18 +0800888 btrfs_set_disk_key_objectid(&tmp_disk_key,
889 BTRFS_TREE_LOG_OBJECTID);
Stefan Behrens5db02762011-11-01 17:04:16 +0100890 additional_string = "initial log ";
891 next_bytenr = btrfs_super_log_root(super_tmp);
892 if (0 == next_bytenr)
893 continue;
894 break;
895 }
896
897 num_copies =
Stefan Behrens5d964052012-11-05 14:59:07 +0100898 btrfs_num_copies(state->root->fs_info,
Stefan Behrense06baab2012-04-12 12:53:40 +0200899 next_bytenr, state->metablock_size);
Stefan Behrens5db02762011-11-01 17:04:16 +0100900 if (state->print_mask & BTRFSIC_PRINT_MASK_NUM_COPIES)
901 printk(KERN_INFO "num_copies(log_bytenr=%llu) = %d\n",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +0200902 next_bytenr, num_copies);
Stefan Behrens5db02762011-11-01 17:04:16 +0100903 for (mirror_num = 1; mirror_num <= num_copies; mirror_num++) {
904 struct btrfsic_block *next_block;
905 struct btrfsic_block_data_ctx tmp_next_block_ctx;
906 struct btrfsic_block_link *l;
907
Stefan Behrense06baab2012-04-12 12:53:40 +0200908 if (btrfsic_map_block(state, next_bytenr,
909 state->metablock_size,
Stefan Behrens5db02762011-11-01 17:04:16 +0100910 &tmp_next_block_ctx,
911 mirror_num)) {
912 printk(KERN_INFO "btrfsic: btrfsic_map_block("
913 "bytenr @%llu, mirror %d) failed!\n",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +0200914 next_bytenr, mirror_num);
Stefan Behrens5db02762011-11-01 17:04:16 +0100915 brelse(bh);
916 return -1;
917 }
918
919 next_block = btrfsic_block_lookup_or_add(
920 state, &tmp_next_block_ctx,
921 additional_string, 1, 1, 0,
922 mirror_num, NULL);
923 if (NULL == next_block) {
924 btrfsic_release_block_ctx(&tmp_next_block_ctx);
925 brelse(bh);
926 return -1;
927 }
928
929 next_block->disk_key = tmp_disk_key;
930 next_block->generation = BTRFSIC_GENERATION_UNKNOWN;
931 l = btrfsic_block_link_lookup_or_add(
932 state, &tmp_next_block_ctx,
933 next_block, superblock_tmp,
934 BTRFSIC_GENERATION_UNKNOWN);
935 btrfsic_release_block_ctx(&tmp_next_block_ctx);
936 if (NULL == l) {
937 brelse(bh);
938 return -1;
939 }
940 }
941 }
942 if (state->print_mask & BTRFSIC_PRINT_MASK_INITIAL_ALL_TREES)
943 btrfsic_dump_tree_sub(state, superblock_tmp, 0);
944
945 brelse(bh);
946 return 0;
947}
948
949static struct btrfsic_stack_frame *btrfsic_stack_frame_alloc(void)
950{
951 struct btrfsic_stack_frame *sf;
952
953 sf = kzalloc(sizeof(*sf), GFP_NOFS);
954 if (NULL == sf)
955 printk(KERN_INFO "btrfsic: alloc memory failed!\n");
956 else
957 sf->magic = BTRFSIC_BLOCK_STACK_FRAME_MAGIC_NUMBER;
958 return sf;
959}
960
961static void btrfsic_stack_frame_free(struct btrfsic_stack_frame *sf)
962{
963 BUG_ON(!(NULL == sf ||
964 BTRFSIC_BLOCK_STACK_FRAME_MAGIC_NUMBER == sf->magic));
965 kfree(sf);
966}
967
968static int btrfsic_process_metablock(
969 struct btrfsic_state *state,
970 struct btrfsic_block *const first_block,
971 struct btrfsic_block_data_ctx *const first_block_ctx,
Stefan Behrens5db02762011-11-01 17:04:16 +0100972 int first_limit_nesting, int force_iodone_flag)
973{
974 struct btrfsic_stack_frame initial_stack_frame = { 0 };
975 struct btrfsic_stack_frame *sf;
976 struct btrfsic_stack_frame *next_stack;
Stefan Behrense06baab2012-04-12 12:53:40 +0200977 struct btrfs_header *const first_hdr =
978 (struct btrfs_header *)first_block_ctx->datav[0];
Stefan Behrens5db02762011-11-01 17:04:16 +0100979
Stefan Behrense06baab2012-04-12 12:53:40 +0200980 BUG_ON(!first_hdr);
Stefan Behrens5db02762011-11-01 17:04:16 +0100981 sf = &initial_stack_frame;
982 sf->error = 0;
983 sf->i = -1;
984 sf->limit_nesting = first_limit_nesting;
985 sf->block = first_block;
986 sf->block_ctx = first_block_ctx;
987 sf->next_block = NULL;
988 sf->hdr = first_hdr;
989 sf->prev = NULL;
990
991continue_with_new_stack_frame:
992 sf->block->generation = le64_to_cpu(sf->hdr->generation);
993 if (0 == sf->hdr->level) {
994 struct btrfs_leaf *const leafhdr =
995 (struct btrfs_leaf *)sf->hdr;
996
997 if (-1 == sf->i) {
Qu Wenruo3cae2102013-07-16 11:19:18 +0800998 sf->nr = btrfs_stack_header_nritems(&leafhdr->header);
Stefan Behrens5db02762011-11-01 17:04:16 +0100999
1000 if (state->print_mask & BTRFSIC_PRINT_MASK_VERBOSE)
1001 printk(KERN_INFO
1002 "leaf %llu items %d generation %llu"
1003 " owner %llu\n",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02001004 sf->block_ctx->start, sf->nr,
Qu Wenruo3cae2102013-07-16 11:19:18 +08001005 btrfs_stack_header_generation(
1006 &leafhdr->header),
Qu Wenruo3cae2102013-07-16 11:19:18 +08001007 btrfs_stack_header_owner(
1008 &leafhdr->header));
Stefan Behrens5db02762011-11-01 17:04:16 +01001009 }
1010
1011continue_with_current_leaf_stack_frame:
1012 if (0 == sf->num_copies || sf->mirror_num > sf->num_copies) {
1013 sf->i++;
1014 sf->num_copies = 0;
1015 }
1016
1017 if (sf->i < sf->nr) {
Stefan Behrense06baab2012-04-12 12:53:40 +02001018 struct btrfs_item disk_item;
1019 u32 disk_item_offset =
1020 (uintptr_t)(leafhdr->items + sf->i) -
1021 (uintptr_t)leafhdr;
1022 struct btrfs_disk_key *disk_key;
Stefan Behrens5db02762011-11-01 17:04:16 +01001023 u8 type;
Stefan Behrense06baab2012-04-12 12:53:40 +02001024 u32 item_offset;
Alexander Block8ea05e32012-07-25 17:35:53 +02001025 u32 item_size;
Stefan Behrens5db02762011-11-01 17:04:16 +01001026
Stefan Behrense06baab2012-04-12 12:53:40 +02001027 if (disk_item_offset + sizeof(struct btrfs_item) >
1028 sf->block_ctx->len) {
1029leaf_item_out_of_bounce_error:
1030 printk(KERN_INFO
1031 "btrfsic: leaf item out of bounce at logical %llu, dev %s\n",
1032 sf->block_ctx->start,
1033 sf->block_ctx->dev->name);
1034 goto one_stack_frame_backwards;
1035 }
1036 btrfsic_read_from_block_data(sf->block_ctx,
1037 &disk_item,
1038 disk_item_offset,
1039 sizeof(struct btrfs_item));
Qu Wenruo3cae2102013-07-16 11:19:18 +08001040 item_offset = btrfs_stack_item_offset(&disk_item);
Stefan Behrensa5f519c2013-10-21 14:18:17 +02001041 item_size = btrfs_stack_item_size(&disk_item);
Stefan Behrense06baab2012-04-12 12:53:40 +02001042 disk_key = &disk_item.key;
Qu Wenruo3cae2102013-07-16 11:19:18 +08001043 type = btrfs_disk_key_type(disk_key);
Stefan Behrens5db02762011-11-01 17:04:16 +01001044
1045 if (BTRFS_ROOT_ITEM_KEY == type) {
Stefan Behrense06baab2012-04-12 12:53:40 +02001046 struct btrfs_root_item root_item;
1047 u32 root_item_offset;
1048 u64 next_bytenr;
1049
1050 root_item_offset = item_offset +
1051 offsetof(struct btrfs_leaf, items);
Alexander Block8ea05e32012-07-25 17:35:53 +02001052 if (root_item_offset + item_size >
Stefan Behrense06baab2012-04-12 12:53:40 +02001053 sf->block_ctx->len)
1054 goto leaf_item_out_of_bounce_error;
1055 btrfsic_read_from_block_data(
1056 sf->block_ctx, &root_item,
1057 root_item_offset,
Alexander Block8ea05e32012-07-25 17:35:53 +02001058 item_size);
Qu Wenruo3cae2102013-07-16 11:19:18 +08001059 next_bytenr = btrfs_root_bytenr(&root_item);
Stefan Behrens5db02762011-11-01 17:04:16 +01001060
1061 sf->error =
1062 btrfsic_create_link_to_next_block(
1063 state,
1064 sf->block,
1065 sf->block_ctx,
1066 next_bytenr,
1067 sf->limit_nesting,
1068 &sf->next_block_ctx,
1069 &sf->next_block,
1070 force_iodone_flag,
1071 &sf->num_copies,
1072 &sf->mirror_num,
1073 disk_key,
Qu Wenruo3cae2102013-07-16 11:19:18 +08001074 btrfs_root_generation(
1075 &root_item));
Stefan Behrens5db02762011-11-01 17:04:16 +01001076 if (sf->error)
1077 goto one_stack_frame_backwards;
1078
1079 if (NULL != sf->next_block) {
1080 struct btrfs_header *const next_hdr =
1081 (struct btrfs_header *)
Stefan Behrense06baab2012-04-12 12:53:40 +02001082 sf->next_block_ctx.datav[0];
Stefan Behrens5db02762011-11-01 17:04:16 +01001083
1084 next_stack =
1085 btrfsic_stack_frame_alloc();
1086 if (NULL == next_stack) {
1087 btrfsic_release_block_ctx(
1088 &sf->
1089 next_block_ctx);
1090 goto one_stack_frame_backwards;
1091 }
1092
1093 next_stack->i = -1;
1094 next_stack->block = sf->next_block;
1095 next_stack->block_ctx =
1096 &sf->next_block_ctx;
1097 next_stack->next_block = NULL;
1098 next_stack->hdr = next_hdr;
1099 next_stack->limit_nesting =
1100 sf->limit_nesting - 1;
1101 next_stack->prev = sf;
1102 sf = next_stack;
1103 goto continue_with_new_stack_frame;
1104 }
1105 } else if (BTRFS_EXTENT_DATA_KEY == type &&
1106 state->include_extent_data) {
1107 sf->error = btrfsic_handle_extent_data(
1108 state,
1109 sf->block,
1110 sf->block_ctx,
1111 item_offset,
1112 force_iodone_flag);
1113 if (sf->error)
1114 goto one_stack_frame_backwards;
1115 }
1116
1117 goto continue_with_current_leaf_stack_frame;
1118 }
1119 } else {
1120 struct btrfs_node *const nodehdr = (struct btrfs_node *)sf->hdr;
1121
1122 if (-1 == sf->i) {
Qu Wenruo3cae2102013-07-16 11:19:18 +08001123 sf->nr = btrfs_stack_header_nritems(&nodehdr->header);
Stefan Behrens5db02762011-11-01 17:04:16 +01001124
1125 if (state->print_mask & BTRFSIC_PRINT_MASK_VERBOSE)
1126 printk(KERN_INFO "node %llu level %d items %d"
1127 " generation %llu owner %llu\n",
Stefan Behrens5db02762011-11-01 17:04:16 +01001128 sf->block_ctx->start,
1129 nodehdr->header.level, sf->nr,
Qu Wenruo3cae2102013-07-16 11:19:18 +08001130 btrfs_stack_header_generation(
1131 &nodehdr->header),
Qu Wenruo3cae2102013-07-16 11:19:18 +08001132 btrfs_stack_header_owner(
1133 &nodehdr->header));
Stefan Behrens5db02762011-11-01 17:04:16 +01001134 }
1135
1136continue_with_current_node_stack_frame:
1137 if (0 == sf->num_copies || sf->mirror_num > sf->num_copies) {
1138 sf->i++;
1139 sf->num_copies = 0;
1140 }
1141
1142 if (sf->i < sf->nr) {
Stefan Behrense06baab2012-04-12 12:53:40 +02001143 struct btrfs_key_ptr key_ptr;
1144 u32 key_ptr_offset;
1145 u64 next_bytenr;
1146
1147 key_ptr_offset = (uintptr_t)(nodehdr->ptrs + sf->i) -
1148 (uintptr_t)nodehdr;
1149 if (key_ptr_offset + sizeof(struct btrfs_key_ptr) >
1150 sf->block_ctx->len) {
1151 printk(KERN_INFO
1152 "btrfsic: node item out of bounce at logical %llu, dev %s\n",
1153 sf->block_ctx->start,
1154 sf->block_ctx->dev->name);
1155 goto one_stack_frame_backwards;
1156 }
1157 btrfsic_read_from_block_data(
1158 sf->block_ctx, &key_ptr, key_ptr_offset,
1159 sizeof(struct btrfs_key_ptr));
Qu Wenruo3cae2102013-07-16 11:19:18 +08001160 next_bytenr = btrfs_stack_key_blockptr(&key_ptr);
Stefan Behrens5db02762011-11-01 17:04:16 +01001161
1162 sf->error = btrfsic_create_link_to_next_block(
1163 state,
1164 sf->block,
1165 sf->block_ctx,
1166 next_bytenr,
1167 sf->limit_nesting,
1168 &sf->next_block_ctx,
1169 &sf->next_block,
1170 force_iodone_flag,
1171 &sf->num_copies,
1172 &sf->mirror_num,
Stefan Behrense06baab2012-04-12 12:53:40 +02001173 &key_ptr.key,
Qu Wenruo3cae2102013-07-16 11:19:18 +08001174 btrfs_stack_key_generation(&key_ptr));
Stefan Behrens5db02762011-11-01 17:04:16 +01001175 if (sf->error)
1176 goto one_stack_frame_backwards;
1177
1178 if (NULL != sf->next_block) {
1179 struct btrfs_header *const next_hdr =
1180 (struct btrfs_header *)
Stefan Behrense06baab2012-04-12 12:53:40 +02001181 sf->next_block_ctx.datav[0];
Stefan Behrens5db02762011-11-01 17:04:16 +01001182
1183 next_stack = btrfsic_stack_frame_alloc();
1184 if (NULL == next_stack)
1185 goto one_stack_frame_backwards;
1186
1187 next_stack->i = -1;
1188 next_stack->block = sf->next_block;
1189 next_stack->block_ctx = &sf->next_block_ctx;
1190 next_stack->next_block = NULL;
1191 next_stack->hdr = next_hdr;
1192 next_stack->limit_nesting =
1193 sf->limit_nesting - 1;
1194 next_stack->prev = sf;
1195 sf = next_stack;
1196 goto continue_with_new_stack_frame;
1197 }
1198
1199 goto continue_with_current_node_stack_frame;
1200 }
1201 }
1202
1203one_stack_frame_backwards:
1204 if (NULL != sf->prev) {
1205 struct btrfsic_stack_frame *const prev = sf->prev;
1206
1207 /* the one for the initial block is freed in the caller */
1208 btrfsic_release_block_ctx(sf->block_ctx);
1209
1210 if (sf->error) {
1211 prev->error = sf->error;
1212 btrfsic_stack_frame_free(sf);
1213 sf = prev;
1214 goto one_stack_frame_backwards;
1215 }
1216
1217 btrfsic_stack_frame_free(sf);
1218 sf = prev;
1219 goto continue_with_new_stack_frame;
1220 } else {
1221 BUG_ON(&initial_stack_frame != sf);
1222 }
1223
1224 return sf->error;
1225}
1226
Stefan Behrense06baab2012-04-12 12:53:40 +02001227static void btrfsic_read_from_block_data(
1228 struct btrfsic_block_data_ctx *block_ctx,
1229 void *dstv, u32 offset, size_t len)
1230{
1231 size_t cur;
1232 size_t offset_in_page;
1233 char *kaddr;
1234 char *dst = (char *)dstv;
1235 size_t start_offset = block_ctx->start & ((u64)PAGE_CACHE_SIZE - 1);
1236 unsigned long i = (start_offset + offset) >> PAGE_CACHE_SHIFT;
1237
1238 WARN_ON(offset + len > block_ctx->len);
Geert Uytterhoeven778746b2013-08-20 13:20:16 +02001239 offset_in_page = (start_offset + offset) & (PAGE_CACHE_SIZE - 1);
Stefan Behrense06baab2012-04-12 12:53:40 +02001240
1241 while (len > 0) {
1242 cur = min(len, ((size_t)PAGE_CACHE_SIZE - offset_in_page));
1243 BUG_ON(i >= (block_ctx->len + PAGE_CACHE_SIZE - 1) >>
1244 PAGE_CACHE_SHIFT);
1245 kaddr = block_ctx->datav[i];
1246 memcpy(dst, kaddr + offset_in_page, cur);
1247
1248 dst += cur;
1249 len -= cur;
1250 offset_in_page = 0;
1251 i++;
1252 }
1253}
1254
Stefan Behrens5db02762011-11-01 17:04:16 +01001255static int btrfsic_create_link_to_next_block(
1256 struct btrfsic_state *state,
1257 struct btrfsic_block *block,
1258 struct btrfsic_block_data_ctx *block_ctx,
1259 u64 next_bytenr,
1260 int limit_nesting,
1261 struct btrfsic_block_data_ctx *next_block_ctx,
1262 struct btrfsic_block **next_blockp,
1263 int force_iodone_flag,
1264 int *num_copiesp, int *mirror_nump,
1265 struct btrfs_disk_key *disk_key,
1266 u64 parent_generation)
1267{
1268 struct btrfsic_block *next_block = NULL;
1269 int ret;
1270 struct btrfsic_block_link *l;
1271 int did_alloc_block_link;
1272 int block_was_created;
1273
1274 *next_blockp = NULL;
1275 if (0 == *num_copiesp) {
1276 *num_copiesp =
Stefan Behrens5d964052012-11-05 14:59:07 +01001277 btrfs_num_copies(state->root->fs_info,
Stefan Behrense06baab2012-04-12 12:53:40 +02001278 next_bytenr, state->metablock_size);
Stefan Behrens5db02762011-11-01 17:04:16 +01001279 if (state->print_mask & BTRFSIC_PRINT_MASK_NUM_COPIES)
1280 printk(KERN_INFO "num_copies(log_bytenr=%llu) = %d\n",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02001281 next_bytenr, *num_copiesp);
Stefan Behrens5db02762011-11-01 17:04:16 +01001282 *mirror_nump = 1;
1283 }
1284
1285 if (*mirror_nump > *num_copiesp)
1286 return 0;
1287
1288 if (state->print_mask & BTRFSIC_PRINT_MASK_VERBOSE)
1289 printk(KERN_INFO
1290 "btrfsic_create_link_to_next_block(mirror_num=%d)\n",
1291 *mirror_nump);
1292 ret = btrfsic_map_block(state, next_bytenr,
Stefan Behrense06baab2012-04-12 12:53:40 +02001293 state->metablock_size,
Stefan Behrens5db02762011-11-01 17:04:16 +01001294 next_block_ctx, *mirror_nump);
1295 if (ret) {
1296 printk(KERN_INFO
1297 "btrfsic: btrfsic_map_block(@%llu, mirror=%d) failed!\n",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02001298 next_bytenr, *mirror_nump);
Stefan Behrens5db02762011-11-01 17:04:16 +01001299 btrfsic_release_block_ctx(next_block_ctx);
1300 *next_blockp = NULL;
1301 return -1;
1302 }
1303
1304 next_block = btrfsic_block_lookup_or_add(state,
1305 next_block_ctx, "referenced ",
1306 1, force_iodone_flag,
1307 !force_iodone_flag,
1308 *mirror_nump,
1309 &block_was_created);
1310 if (NULL == next_block) {
1311 btrfsic_release_block_ctx(next_block_ctx);
1312 *next_blockp = NULL;
1313 return -1;
1314 }
1315 if (block_was_created) {
1316 l = NULL;
1317 next_block->generation = BTRFSIC_GENERATION_UNKNOWN;
1318 } else {
1319 if (next_block->logical_bytenr != next_bytenr &&
1320 !(!next_block->is_metadata &&
1321 0 == next_block->logical_bytenr)) {
1322 printk(KERN_INFO
1323 "Referenced block @%llu (%s/%llu/%d)"
1324 " found in hash table, %c,"
1325 " bytenr mismatch (!= stored %llu).\n",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02001326 next_bytenr, next_block_ctx->dev->name,
1327 next_block_ctx->dev_bytenr, *mirror_nump,
Stefan Behrens5db02762011-11-01 17:04:16 +01001328 btrfsic_get_block_type(state, next_block),
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02001329 next_block->logical_bytenr);
Stefan Behrens5db02762011-11-01 17:04:16 +01001330 } else if (state->print_mask & BTRFSIC_PRINT_MASK_VERBOSE)
1331 printk(KERN_INFO
1332 "Referenced block @%llu (%s/%llu/%d)"
1333 " found in hash table, %c.\n",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02001334 next_bytenr, next_block_ctx->dev->name,
1335 next_block_ctx->dev_bytenr, *mirror_nump,
Stefan Behrens5db02762011-11-01 17:04:16 +01001336 btrfsic_get_block_type(state, next_block));
1337 next_block->logical_bytenr = next_bytenr;
1338
1339 next_block->mirror_num = *mirror_nump;
1340 l = btrfsic_block_link_hashtable_lookup(
1341 next_block_ctx->dev->bdev,
1342 next_block_ctx->dev_bytenr,
1343 block_ctx->dev->bdev,
1344 block_ctx->dev_bytenr,
1345 &state->block_link_hashtable);
1346 }
1347
1348 next_block->disk_key = *disk_key;
1349 if (NULL == l) {
1350 l = btrfsic_block_link_alloc();
1351 if (NULL == l) {
1352 printk(KERN_INFO "btrfsic: error, kmalloc failed!\n");
1353 btrfsic_release_block_ctx(next_block_ctx);
1354 *next_blockp = NULL;
1355 return -1;
1356 }
1357
1358 did_alloc_block_link = 1;
1359 l->block_ref_to = next_block;
1360 l->block_ref_from = block;
1361 l->ref_cnt = 1;
1362 l->parent_generation = parent_generation;
1363
1364 if (state->print_mask & BTRFSIC_PRINT_MASK_VERBOSE)
1365 btrfsic_print_add_link(state, l);
1366
1367 list_add(&l->node_ref_to, &block->ref_to_list);
1368 list_add(&l->node_ref_from, &next_block->ref_from_list);
1369
1370 btrfsic_block_link_hashtable_add(l,
1371 &state->block_link_hashtable);
1372 } else {
1373 did_alloc_block_link = 0;
1374 if (0 == limit_nesting) {
1375 l->ref_cnt++;
1376 l->parent_generation = parent_generation;
1377 if (state->print_mask & BTRFSIC_PRINT_MASK_VERBOSE)
1378 btrfsic_print_add_link(state, l);
1379 }
1380 }
1381
1382 if (limit_nesting > 0 && did_alloc_block_link) {
1383 ret = btrfsic_read_block(state, next_block_ctx);
Stefan Behrense06baab2012-04-12 12:53:40 +02001384 if (ret < (int)next_block_ctx->len) {
Stefan Behrens5db02762011-11-01 17:04:16 +01001385 printk(KERN_INFO
1386 "btrfsic: read block @logical %llu failed!\n",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02001387 next_bytenr);
Stefan Behrens5db02762011-11-01 17:04:16 +01001388 btrfsic_release_block_ctx(next_block_ctx);
1389 *next_blockp = NULL;
1390 return -1;
1391 }
1392
1393 *next_blockp = next_block;
1394 } else {
1395 *next_blockp = NULL;
1396 }
1397 (*mirror_nump)++;
1398
1399 return 0;
1400}
1401
1402static int btrfsic_handle_extent_data(
1403 struct btrfsic_state *state,
1404 struct btrfsic_block *block,
1405 struct btrfsic_block_data_ctx *block_ctx,
1406 u32 item_offset, int force_iodone_flag)
1407{
1408 int ret;
Stefan Behrense06baab2012-04-12 12:53:40 +02001409 struct btrfs_file_extent_item file_extent_item;
1410 u64 file_extent_item_offset;
1411 u64 next_bytenr;
1412 u64 num_bytes;
1413 u64 generation;
Stefan Behrens5db02762011-11-01 17:04:16 +01001414 struct btrfsic_block_link *l;
1415
Stefan Behrense06baab2012-04-12 12:53:40 +02001416 file_extent_item_offset = offsetof(struct btrfs_leaf, items) +
1417 item_offset;
Stefan Behrens86ff7ff2012-04-24 18:10:16 +02001418 if (file_extent_item_offset +
1419 offsetof(struct btrfs_file_extent_item, disk_num_bytes) >
1420 block_ctx->len) {
1421 printk(KERN_INFO
1422 "btrfsic: file item out of bounce at logical %llu, dev %s\n",
1423 block_ctx->start, block_ctx->dev->name);
1424 return -1;
1425 }
1426
1427 btrfsic_read_from_block_data(block_ctx, &file_extent_item,
1428 file_extent_item_offset,
1429 offsetof(struct btrfs_file_extent_item, disk_num_bytes));
1430 if (BTRFS_FILE_EXTENT_REG != file_extent_item.type ||
Qu Wenruo3cae2102013-07-16 11:19:18 +08001431 btrfs_stack_file_extent_disk_bytenr(&file_extent_item) == 0) {
Stefan Behrens86ff7ff2012-04-24 18:10:16 +02001432 if (state->print_mask & BTRFSIC_PRINT_MASK_VERY_VERBOSE)
1433 printk(KERN_INFO "extent_data: type %u, disk_bytenr = %llu\n",
1434 file_extent_item.type,
Qu Wenruo3cae2102013-07-16 11:19:18 +08001435 btrfs_stack_file_extent_disk_bytenr(
1436 &file_extent_item));
Stefan Behrens86ff7ff2012-04-24 18:10:16 +02001437 return 0;
1438 }
1439
Stefan Behrense06baab2012-04-12 12:53:40 +02001440 if (file_extent_item_offset + sizeof(struct btrfs_file_extent_item) >
1441 block_ctx->len) {
1442 printk(KERN_INFO
1443 "btrfsic: file item out of bounce at logical %llu, dev %s\n",
1444 block_ctx->start, block_ctx->dev->name);
1445 return -1;
1446 }
1447 btrfsic_read_from_block_data(block_ctx, &file_extent_item,
1448 file_extent_item_offset,
1449 sizeof(struct btrfs_file_extent_item));
Qu Wenruo3cae2102013-07-16 11:19:18 +08001450 next_bytenr = btrfs_stack_file_extent_disk_bytenr(&file_extent_item) +
1451 btrfs_stack_file_extent_offset(&file_extent_item);
1452 generation = btrfs_stack_file_extent_generation(&file_extent_item);
1453 num_bytes = btrfs_stack_file_extent_num_bytes(&file_extent_item);
1454 generation = btrfs_stack_file_extent_generation(&file_extent_item);
Stefan Behrense06baab2012-04-12 12:53:40 +02001455
Stefan Behrens5db02762011-11-01 17:04:16 +01001456 if (state->print_mask & BTRFSIC_PRINT_MASK_VERY_VERBOSE)
1457 printk(KERN_INFO "extent_data: type %u, disk_bytenr = %llu,"
1458 " offset = %llu, num_bytes = %llu\n",
Stefan Behrense06baab2012-04-12 12:53:40 +02001459 file_extent_item.type,
Qu Wenruo3cae2102013-07-16 11:19:18 +08001460 btrfs_stack_file_extent_disk_bytenr(&file_extent_item),
Qu Wenruo3cae2102013-07-16 11:19:18 +08001461 btrfs_stack_file_extent_offset(&file_extent_item),
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02001462 num_bytes);
Stefan Behrens5db02762011-11-01 17:04:16 +01001463 while (num_bytes > 0) {
1464 u32 chunk_len;
1465 int num_copies;
1466 int mirror_num;
1467
Stefan Behrense06baab2012-04-12 12:53:40 +02001468 if (num_bytes > state->datablock_size)
1469 chunk_len = state->datablock_size;
Stefan Behrens5db02762011-11-01 17:04:16 +01001470 else
1471 chunk_len = num_bytes;
1472
1473 num_copies =
Stefan Behrens5d964052012-11-05 14:59:07 +01001474 btrfs_num_copies(state->root->fs_info,
Stefan Behrense06baab2012-04-12 12:53:40 +02001475 next_bytenr, state->datablock_size);
Stefan Behrens5db02762011-11-01 17:04:16 +01001476 if (state->print_mask & BTRFSIC_PRINT_MASK_NUM_COPIES)
1477 printk(KERN_INFO "num_copies(log_bytenr=%llu) = %d\n",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02001478 next_bytenr, num_copies);
Stefan Behrens5db02762011-11-01 17:04:16 +01001479 for (mirror_num = 1; mirror_num <= num_copies; mirror_num++) {
1480 struct btrfsic_block_data_ctx next_block_ctx;
1481 struct btrfsic_block *next_block;
1482 int block_was_created;
1483
1484 if (state->print_mask & BTRFSIC_PRINT_MASK_VERBOSE)
1485 printk(KERN_INFO "btrfsic_handle_extent_data("
1486 "mirror_num=%d)\n", mirror_num);
1487 if (state->print_mask & BTRFSIC_PRINT_MASK_VERY_VERBOSE)
1488 printk(KERN_INFO
1489 "\tdisk_bytenr = %llu, num_bytes %u\n",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02001490 next_bytenr, chunk_len);
Stefan Behrens5db02762011-11-01 17:04:16 +01001491 ret = btrfsic_map_block(state, next_bytenr,
1492 chunk_len, &next_block_ctx,
1493 mirror_num);
1494 if (ret) {
1495 printk(KERN_INFO
1496 "btrfsic: btrfsic_map_block(@%llu,"
1497 " mirror=%d) failed!\n",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02001498 next_bytenr, mirror_num);
Stefan Behrens5db02762011-11-01 17:04:16 +01001499 return -1;
1500 }
1501
1502 next_block = btrfsic_block_lookup_or_add(
1503 state,
1504 &next_block_ctx,
1505 "referenced ",
1506 0,
1507 force_iodone_flag,
1508 !force_iodone_flag,
1509 mirror_num,
1510 &block_was_created);
1511 if (NULL == next_block) {
1512 printk(KERN_INFO
1513 "btrfsic: error, kmalloc failed!\n");
1514 btrfsic_release_block_ctx(&next_block_ctx);
1515 return -1;
1516 }
1517 if (!block_was_created) {
1518 if (next_block->logical_bytenr != next_bytenr &&
1519 !(!next_block->is_metadata &&
1520 0 == next_block->logical_bytenr)) {
1521 printk(KERN_INFO
1522 "Referenced block"
1523 " @%llu (%s/%llu/%d)"
1524 " found in hash table, D,"
1525 " bytenr mismatch"
1526 " (!= stored %llu).\n",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02001527 next_bytenr,
Stefan Behrens5db02762011-11-01 17:04:16 +01001528 next_block_ctx.dev->name,
Stefan Behrens5db02762011-11-01 17:04:16 +01001529 next_block_ctx.dev_bytenr,
1530 mirror_num,
Stefan Behrens5db02762011-11-01 17:04:16 +01001531 next_block->logical_bytenr);
1532 }
1533 next_block->logical_bytenr = next_bytenr;
1534 next_block->mirror_num = mirror_num;
1535 }
1536
1537 l = btrfsic_block_link_lookup_or_add(state,
1538 &next_block_ctx,
1539 next_block, block,
1540 generation);
1541 btrfsic_release_block_ctx(&next_block_ctx);
1542 if (NULL == l)
1543 return -1;
1544 }
1545
1546 next_bytenr += chunk_len;
1547 num_bytes -= chunk_len;
1548 }
1549
1550 return 0;
1551}
1552
1553static int btrfsic_map_block(struct btrfsic_state *state, u64 bytenr, u32 len,
1554 struct btrfsic_block_data_ctx *block_ctx_out,
1555 int mirror_num)
1556{
1557 int ret;
1558 u64 length;
1559 struct btrfs_bio *multi = NULL;
1560 struct btrfs_device *device;
1561
1562 length = len;
Stefan Behrens3ec706c2012-11-05 15:46:42 +01001563 ret = btrfs_map_block(state->root->fs_info, READ,
Stefan Behrens5db02762011-11-01 17:04:16 +01001564 bytenr, &length, &multi, mirror_num);
1565
Stefan Behrens61891922012-11-05 18:51:52 +01001566 if (ret) {
1567 block_ctx_out->start = 0;
1568 block_ctx_out->dev_bytenr = 0;
1569 block_ctx_out->len = 0;
1570 block_ctx_out->dev = NULL;
1571 block_ctx_out->datav = NULL;
1572 block_ctx_out->pagev = NULL;
1573 block_ctx_out->mem_to_free = NULL;
1574
1575 return ret;
1576 }
1577
Stefan Behrens5db02762011-11-01 17:04:16 +01001578 device = multi->stripes[0].dev;
1579 block_ctx_out->dev = btrfsic_dev_state_lookup(device->bdev);
1580 block_ctx_out->dev_bytenr = multi->stripes[0].physical;
1581 block_ctx_out->start = bytenr;
1582 block_ctx_out->len = len;
Stefan Behrense06baab2012-04-12 12:53:40 +02001583 block_ctx_out->datav = NULL;
1584 block_ctx_out->pagev = NULL;
1585 block_ctx_out->mem_to_free = NULL;
Stefan Behrens5db02762011-11-01 17:04:16 +01001586
Stefan Behrens61891922012-11-05 18:51:52 +01001587 kfree(multi);
Stefan Behrens5db02762011-11-01 17:04:16 +01001588 if (NULL == block_ctx_out->dev) {
1589 ret = -ENXIO;
1590 printk(KERN_INFO "btrfsic: error, cannot lookup dev (#1)!\n");
1591 }
1592
1593 return ret;
1594}
1595
1596static int btrfsic_map_superblock(struct btrfsic_state *state, u64 bytenr,
1597 u32 len, struct block_device *bdev,
1598 struct btrfsic_block_data_ctx *block_ctx_out)
1599{
1600 block_ctx_out->dev = btrfsic_dev_state_lookup(bdev);
1601 block_ctx_out->dev_bytenr = bytenr;
1602 block_ctx_out->start = bytenr;
1603 block_ctx_out->len = len;
Stefan Behrense06baab2012-04-12 12:53:40 +02001604 block_ctx_out->datav = NULL;
1605 block_ctx_out->pagev = NULL;
1606 block_ctx_out->mem_to_free = NULL;
Stefan Behrens5db02762011-11-01 17:04:16 +01001607 if (NULL != block_ctx_out->dev) {
1608 return 0;
1609 } else {
1610 printk(KERN_INFO "btrfsic: error, cannot lookup dev (#2)!\n");
1611 return -ENXIO;
1612 }
1613}
1614
1615static void btrfsic_release_block_ctx(struct btrfsic_block_data_ctx *block_ctx)
1616{
Stefan Behrense06baab2012-04-12 12:53:40 +02001617 if (block_ctx->mem_to_free) {
1618 unsigned int num_pages;
1619
1620 BUG_ON(!block_ctx->datav);
1621 BUG_ON(!block_ctx->pagev);
1622 num_pages = (block_ctx->len + (u64)PAGE_CACHE_SIZE - 1) >>
1623 PAGE_CACHE_SHIFT;
1624 while (num_pages > 0) {
1625 num_pages--;
1626 if (block_ctx->datav[num_pages]) {
1627 kunmap(block_ctx->pagev[num_pages]);
1628 block_ctx->datav[num_pages] = NULL;
1629 }
1630 if (block_ctx->pagev[num_pages]) {
1631 __free_page(block_ctx->pagev[num_pages]);
1632 block_ctx->pagev[num_pages] = NULL;
1633 }
1634 }
1635
1636 kfree(block_ctx->mem_to_free);
1637 block_ctx->mem_to_free = NULL;
1638 block_ctx->pagev = NULL;
1639 block_ctx->datav = NULL;
Stefan Behrens5db02762011-11-01 17:04:16 +01001640 }
1641}
1642
1643static int btrfsic_read_block(struct btrfsic_state *state,
1644 struct btrfsic_block_data_ctx *block_ctx)
1645{
Stefan Behrense06baab2012-04-12 12:53:40 +02001646 unsigned int num_pages;
1647 unsigned int i;
1648 u64 dev_bytenr;
1649 int ret;
1650
1651 BUG_ON(block_ctx->datav);
1652 BUG_ON(block_ctx->pagev);
1653 BUG_ON(block_ctx->mem_to_free);
1654 if (block_ctx->dev_bytenr & ((u64)PAGE_CACHE_SIZE - 1)) {
Stefan Behrens5db02762011-11-01 17:04:16 +01001655 printk(KERN_INFO
1656 "btrfsic: read_block() with unaligned bytenr %llu\n",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02001657 block_ctx->dev_bytenr);
Stefan Behrens5db02762011-11-01 17:04:16 +01001658 return -1;
1659 }
Stefan Behrense06baab2012-04-12 12:53:40 +02001660
1661 num_pages = (block_ctx->len + (u64)PAGE_CACHE_SIZE - 1) >>
1662 PAGE_CACHE_SHIFT;
1663 block_ctx->mem_to_free = kzalloc((sizeof(*block_ctx->datav) +
1664 sizeof(*block_ctx->pagev)) *
1665 num_pages, GFP_NOFS);
1666 if (!block_ctx->mem_to_free)
Stefan Behrens5db02762011-11-01 17:04:16 +01001667 return -1;
Stefan Behrense06baab2012-04-12 12:53:40 +02001668 block_ctx->datav = block_ctx->mem_to_free;
1669 block_ctx->pagev = (struct page **)(block_ctx->datav + num_pages);
1670 for (i = 0; i < num_pages; i++) {
1671 block_ctx->pagev[i] = alloc_page(GFP_NOFS);
1672 if (!block_ctx->pagev[i])
1673 return -1;
Stefan Behrens5db02762011-11-01 17:04:16 +01001674 }
1675
Stefan Behrense06baab2012-04-12 12:53:40 +02001676 dev_bytenr = block_ctx->dev_bytenr;
1677 for (i = 0; i < num_pages;) {
1678 struct bio *bio;
1679 unsigned int j;
1680 DECLARE_COMPLETION_ONSTACK(complete);
1681
Chris Mason9be33952013-05-17 18:30:14 -04001682 bio = btrfs_io_bio_alloc(GFP_NOFS, num_pages - i);
Stefan Behrense06baab2012-04-12 12:53:40 +02001683 if (!bio) {
1684 printk(KERN_INFO
1685 "btrfsic: bio_alloc() for %u pages failed!\n",
1686 num_pages - i);
1687 return -1;
1688 }
1689 bio->bi_bdev = block_ctx->dev->bdev;
1690 bio->bi_sector = dev_bytenr >> 9;
1691 bio->bi_end_io = btrfsic_complete_bio_end_io;
1692 bio->bi_private = &complete;
1693
1694 for (j = i; j < num_pages; j++) {
1695 ret = bio_add_page(bio, block_ctx->pagev[j],
1696 PAGE_CACHE_SIZE, 0);
1697 if (PAGE_CACHE_SIZE != ret)
1698 break;
1699 }
1700 if (j == i) {
1701 printk(KERN_INFO
1702 "btrfsic: error, failed to add a single page!\n");
1703 return -1;
1704 }
1705 submit_bio(READ, bio);
1706
1707 /* this will also unplug the queue */
1708 wait_for_completion(&complete);
1709
1710 if (!test_bit(BIO_UPTODATE, &bio->bi_flags)) {
1711 printk(KERN_INFO
1712 "btrfsic: read error at logical %llu dev %s!\n",
1713 block_ctx->start, block_ctx->dev->name);
1714 bio_put(bio);
1715 return -1;
1716 }
1717 bio_put(bio);
1718 dev_bytenr += (j - i) * PAGE_CACHE_SIZE;
1719 i = j;
1720 }
1721 for (i = 0; i < num_pages; i++) {
1722 block_ctx->datav[i] = kmap(block_ctx->pagev[i]);
1723 if (!block_ctx->datav[i]) {
1724 printk(KERN_INFO "btrfsic: kmap() failed (dev %s)!\n",
1725 block_ctx->dev->name);
1726 return -1;
1727 }
1728 }
Stefan Behrens5db02762011-11-01 17:04:16 +01001729
1730 return block_ctx->len;
1731}
1732
Stefan Behrense06baab2012-04-12 12:53:40 +02001733static void btrfsic_complete_bio_end_io(struct bio *bio, int err)
1734{
1735 complete((struct completion *)bio->bi_private);
1736}
1737
Stefan Behrens5db02762011-11-01 17:04:16 +01001738static void btrfsic_dump_database(struct btrfsic_state *state)
1739{
1740 struct list_head *elem_all;
1741
1742 BUG_ON(NULL == state);
1743
1744 printk(KERN_INFO "all_blocks_list:\n");
1745 list_for_each(elem_all, &state->all_blocks_list) {
1746 const struct btrfsic_block *const b_all =
1747 list_entry(elem_all, struct btrfsic_block,
1748 all_blocks_node);
1749 struct list_head *elem_ref_to;
1750 struct list_head *elem_ref_from;
1751
1752 printk(KERN_INFO "%c-block @%llu (%s/%llu/%d)\n",
1753 btrfsic_get_block_type(state, b_all),
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02001754 b_all->logical_bytenr, b_all->dev_state->name,
1755 b_all->dev_bytenr, b_all->mirror_num);
Stefan Behrens5db02762011-11-01 17:04:16 +01001756
1757 list_for_each(elem_ref_to, &b_all->ref_to_list) {
1758 const struct btrfsic_block_link *const l =
1759 list_entry(elem_ref_to,
1760 struct btrfsic_block_link,
1761 node_ref_to);
1762
1763 printk(KERN_INFO " %c @%llu (%s/%llu/%d)"
1764 " refers %u* to"
1765 " %c @%llu (%s/%llu/%d)\n",
1766 btrfsic_get_block_type(state, b_all),
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02001767 b_all->logical_bytenr, b_all->dev_state->name,
1768 b_all->dev_bytenr, b_all->mirror_num,
Stefan Behrens5db02762011-11-01 17:04:16 +01001769 l->ref_cnt,
1770 btrfsic_get_block_type(state, l->block_ref_to),
Stefan Behrens5db02762011-11-01 17:04:16 +01001771 l->block_ref_to->logical_bytenr,
1772 l->block_ref_to->dev_state->name,
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02001773 l->block_ref_to->dev_bytenr,
Stefan Behrens5db02762011-11-01 17:04:16 +01001774 l->block_ref_to->mirror_num);
1775 }
1776
1777 list_for_each(elem_ref_from, &b_all->ref_from_list) {
1778 const struct btrfsic_block_link *const l =
1779 list_entry(elem_ref_from,
1780 struct btrfsic_block_link,
1781 node_ref_from);
1782
1783 printk(KERN_INFO " %c @%llu (%s/%llu/%d)"
1784 " is ref %u* from"
1785 " %c @%llu (%s/%llu/%d)\n",
1786 btrfsic_get_block_type(state, b_all),
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02001787 b_all->logical_bytenr, b_all->dev_state->name,
1788 b_all->dev_bytenr, b_all->mirror_num,
Stefan Behrens5db02762011-11-01 17:04:16 +01001789 l->ref_cnt,
1790 btrfsic_get_block_type(state, l->block_ref_from),
Stefan Behrens5db02762011-11-01 17:04:16 +01001791 l->block_ref_from->logical_bytenr,
1792 l->block_ref_from->dev_state->name,
Stefan Behrens5db02762011-11-01 17:04:16 +01001793 l->block_ref_from->dev_bytenr,
1794 l->block_ref_from->mirror_num);
1795 }
1796
1797 printk(KERN_INFO "\n");
1798 }
1799}
1800
1801/*
1802 * Test whether the disk block contains a tree block (leaf or node)
1803 * (note that this test fails for the super block)
1804 */
1805static int btrfsic_test_for_metadata(struct btrfsic_state *state,
Stefan Behrense06baab2012-04-12 12:53:40 +02001806 char **datav, unsigned int num_pages)
Stefan Behrens5db02762011-11-01 17:04:16 +01001807{
1808 struct btrfs_header *h;
1809 u8 csum[BTRFS_CSUM_SIZE];
1810 u32 crc = ~(u32)0;
Stefan Behrense06baab2012-04-12 12:53:40 +02001811 unsigned int i;
Stefan Behrens5db02762011-11-01 17:04:16 +01001812
Stefan Behrense06baab2012-04-12 12:53:40 +02001813 if (num_pages * PAGE_CACHE_SIZE < state->metablock_size)
1814 return 1; /* not metadata */
1815 num_pages = state->metablock_size >> PAGE_CACHE_SHIFT;
1816 h = (struct btrfs_header *)datav[0];
Stefan Behrens5db02762011-11-01 17:04:16 +01001817
1818 if (memcmp(h->fsid, state->root->fs_info->fsid, BTRFS_UUID_SIZE))
Stefan Behrense06baab2012-04-12 12:53:40 +02001819 return 1;
Stefan Behrens5db02762011-11-01 17:04:16 +01001820
Stefan Behrense06baab2012-04-12 12:53:40 +02001821 for (i = 0; i < num_pages; i++) {
1822 u8 *data = i ? datav[i] : (datav[i] + BTRFS_CSUM_SIZE);
1823 size_t sublen = i ? PAGE_CACHE_SIZE :
1824 (PAGE_CACHE_SIZE - BTRFS_CSUM_SIZE);
1825
1826 crc = crc32c(crc, data, sublen);
1827 }
Stefan Behrens5db02762011-11-01 17:04:16 +01001828 btrfs_csum_final(crc, csum);
1829 if (memcmp(csum, h->csum, state->csum_size))
Stefan Behrense06baab2012-04-12 12:53:40 +02001830 return 1;
Stefan Behrens5db02762011-11-01 17:04:16 +01001831
Stefan Behrense06baab2012-04-12 12:53:40 +02001832 return 0; /* is metadata */
Stefan Behrens5db02762011-11-01 17:04:16 +01001833}
1834
1835static void btrfsic_process_written_block(struct btrfsic_dev_state *dev_state,
Stefan Behrense06baab2012-04-12 12:53:40 +02001836 u64 dev_bytenr, char **mapped_datav,
1837 unsigned int num_pages,
1838 struct bio *bio, int *bio_is_patched,
Stefan Behrens5db02762011-11-01 17:04:16 +01001839 struct buffer_head *bh,
1840 int submit_bio_bh_rw)
1841{
1842 int is_metadata;
1843 struct btrfsic_block *block;
1844 struct btrfsic_block_data_ctx block_ctx;
1845 int ret;
1846 struct btrfsic_state *state = dev_state->state;
1847 struct block_device *bdev = dev_state->bdev;
Stefan Behrense06baab2012-04-12 12:53:40 +02001848 unsigned int processed_len;
Stefan Behrens5db02762011-11-01 17:04:16 +01001849
Stefan Behrens5db02762011-11-01 17:04:16 +01001850 if (NULL != bio_is_patched)
1851 *bio_is_patched = 0;
1852
Stefan Behrense06baab2012-04-12 12:53:40 +02001853again:
1854 if (num_pages == 0)
1855 return;
1856
1857 processed_len = 0;
1858 is_metadata = (0 == btrfsic_test_for_metadata(state, mapped_datav,
1859 num_pages));
1860
Stefan Behrens5db02762011-11-01 17:04:16 +01001861 block = btrfsic_block_hashtable_lookup(bdev, dev_bytenr,
1862 &state->block_hashtable);
1863 if (NULL != block) {
Stefan Behrens0b485142012-01-26 15:01:11 -05001864 u64 bytenr = 0;
Stefan Behrens5db02762011-11-01 17:04:16 +01001865 struct list_head *elem_ref_to;
1866 struct list_head *tmp_ref_to;
1867
1868 if (block->is_superblock) {
Qu Wenruo3cae2102013-07-16 11:19:18 +08001869 bytenr = btrfs_super_bytenr((struct btrfs_super_block *)
1870 mapped_datav[0]);
Stefan Behrense06baab2012-04-12 12:53:40 +02001871 if (num_pages * PAGE_CACHE_SIZE <
1872 BTRFS_SUPER_INFO_SIZE) {
1873 printk(KERN_INFO
1874 "btrfsic: cannot work with too short bios!\n");
1875 return;
1876 }
Stefan Behrens5db02762011-11-01 17:04:16 +01001877 is_metadata = 1;
Stefan Behrense06baab2012-04-12 12:53:40 +02001878 BUG_ON(BTRFS_SUPER_INFO_SIZE & (PAGE_CACHE_SIZE - 1));
1879 processed_len = BTRFS_SUPER_INFO_SIZE;
Stefan Behrens5db02762011-11-01 17:04:16 +01001880 if (state->print_mask &
1881 BTRFSIC_PRINT_MASK_TREE_BEFORE_SB_WRITE) {
1882 printk(KERN_INFO
1883 "[before new superblock is written]:\n");
1884 btrfsic_dump_tree_sub(state, block, 0);
1885 }
1886 }
1887 if (is_metadata) {
1888 if (!block->is_superblock) {
Stefan Behrense06baab2012-04-12 12:53:40 +02001889 if (num_pages * PAGE_CACHE_SIZE <
1890 state->metablock_size) {
1891 printk(KERN_INFO
1892 "btrfsic: cannot work with too short bios!\n");
1893 return;
1894 }
1895 processed_len = state->metablock_size;
Qu Wenruo3cae2102013-07-16 11:19:18 +08001896 bytenr = btrfs_stack_header_bytenr(
1897 (struct btrfs_header *)
1898 mapped_datav[0]);
Stefan Behrens5db02762011-11-01 17:04:16 +01001899 btrfsic_cmp_log_and_dev_bytenr(state, bytenr,
1900 dev_state,
Stefan Behrense06baab2012-04-12 12:53:40 +02001901 dev_bytenr);
Stefan Behrens5db02762011-11-01 17:04:16 +01001902 }
Stefan Behrens301993a2013-10-21 18:46:58 +02001903 if (block->logical_bytenr != bytenr &&
1904 !(!block->is_metadata &&
1905 block->logical_bytenr == 0))
Stefan Behrens5db02762011-11-01 17:04:16 +01001906 printk(KERN_INFO
1907 "Written block @%llu (%s/%llu/%d)"
1908 " found in hash table, %c,"
1909 " bytenr mismatch"
1910 " (!= stored %llu).\n",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02001911 bytenr, dev_state->name, dev_bytenr,
Stefan Behrens5db02762011-11-01 17:04:16 +01001912 block->mirror_num,
1913 btrfsic_get_block_type(state, block),
Stefan Behrens5db02762011-11-01 17:04:16 +01001914 block->logical_bytenr);
Stefan Behrens301993a2013-10-21 18:46:58 +02001915 else if (state->print_mask & BTRFSIC_PRINT_MASK_VERBOSE)
Stefan Behrens5db02762011-11-01 17:04:16 +01001916 printk(KERN_INFO
1917 "Written block @%llu (%s/%llu/%d)"
1918 " found in hash table, %c.\n",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02001919 bytenr, dev_state->name, dev_bytenr,
Stefan Behrens5db02762011-11-01 17:04:16 +01001920 block->mirror_num,
1921 btrfsic_get_block_type(state, block));
Stefan Behrens301993a2013-10-21 18:46:58 +02001922 block->logical_bytenr = bytenr;
Stefan Behrens5db02762011-11-01 17:04:16 +01001923 } else {
Stefan Behrense06baab2012-04-12 12:53:40 +02001924 if (num_pages * PAGE_CACHE_SIZE <
1925 state->datablock_size) {
1926 printk(KERN_INFO
1927 "btrfsic: cannot work with too short bios!\n");
1928 return;
1929 }
1930 processed_len = state->datablock_size;
Stefan Behrens5db02762011-11-01 17:04:16 +01001931 bytenr = block->logical_bytenr;
1932 if (state->print_mask & BTRFSIC_PRINT_MASK_VERBOSE)
1933 printk(KERN_INFO
1934 "Written block @%llu (%s/%llu/%d)"
1935 " found in hash table, %c.\n",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02001936 bytenr, dev_state->name, dev_bytenr,
Stefan Behrens5db02762011-11-01 17:04:16 +01001937 block->mirror_num,
1938 btrfsic_get_block_type(state, block));
1939 }
1940
1941 if (state->print_mask & BTRFSIC_PRINT_MASK_VERBOSE)
1942 printk(KERN_INFO
1943 "ref_to_list: %cE, ref_from_list: %cE\n",
1944 list_empty(&block->ref_to_list) ? ' ' : '!',
1945 list_empty(&block->ref_from_list) ? ' ' : '!');
1946 if (btrfsic_is_block_ref_by_superblock(state, block, 0)) {
1947 printk(KERN_INFO "btrfs: attempt to overwrite %c-block"
1948 " @%llu (%s/%llu/%d), old(gen=%llu,"
1949 " objectid=%llu, type=%d, offset=%llu),"
1950 " new(gen=%llu),"
1951 " which is referenced by most recent superblock"
1952 " (superblockgen=%llu)!\n",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02001953 btrfsic_get_block_type(state, block), bytenr,
1954 dev_state->name, dev_bytenr, block->mirror_num,
1955 block->generation,
Qu Wenruo3cae2102013-07-16 11:19:18 +08001956 btrfs_disk_key_objectid(&block->disk_key),
Stefan Behrens5db02762011-11-01 17:04:16 +01001957 block->disk_key.type,
Qu Wenruo3cae2102013-07-16 11:19:18 +08001958 btrfs_disk_key_offset(&block->disk_key),
Qu Wenruo3cae2102013-07-16 11:19:18 +08001959 btrfs_stack_header_generation(
1960 (struct btrfs_header *) mapped_datav[0]),
Stefan Behrens5db02762011-11-01 17:04:16 +01001961 state->max_superblock_generation);
1962 btrfsic_dump_tree(state);
1963 }
1964
1965 if (!block->is_iodone && !block->never_written) {
1966 printk(KERN_INFO "btrfs: attempt to overwrite %c-block"
1967 " @%llu (%s/%llu/%d), oldgen=%llu, newgen=%llu,"
1968 " which is not yet iodone!\n",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02001969 btrfsic_get_block_type(state, block), bytenr,
1970 dev_state->name, dev_bytenr, block->mirror_num,
1971 block->generation,
Qu Wenruo3cae2102013-07-16 11:19:18 +08001972 btrfs_stack_header_generation(
1973 (struct btrfs_header *)
1974 mapped_datav[0]));
Stefan Behrens5db02762011-11-01 17:04:16 +01001975 /* it would not be safe to go on */
1976 btrfsic_dump_tree(state);
Stefan Behrense06baab2012-04-12 12:53:40 +02001977 goto continue_loop;
Stefan Behrens5db02762011-11-01 17:04:16 +01001978 }
1979
1980 /*
1981 * Clear all references of this block. Do not free
1982 * the block itself even if is not referenced anymore
1983 * because it still carries valueable information
1984 * like whether it was ever written and IO completed.
1985 */
1986 list_for_each_safe(elem_ref_to, tmp_ref_to,
1987 &block->ref_to_list) {
1988 struct btrfsic_block_link *const l =
1989 list_entry(elem_ref_to,
1990 struct btrfsic_block_link,
1991 node_ref_to);
1992
1993 if (state->print_mask & BTRFSIC_PRINT_MASK_VERBOSE)
1994 btrfsic_print_rem_link(state, l);
1995 l->ref_cnt--;
1996 if (0 == l->ref_cnt) {
1997 list_del(&l->node_ref_to);
1998 list_del(&l->node_ref_from);
1999 btrfsic_block_link_hashtable_remove(l);
2000 btrfsic_block_link_free(l);
2001 }
2002 }
2003
2004 if (block->is_superblock)
Stefan Behrense06baab2012-04-12 12:53:40 +02002005 ret = btrfsic_map_superblock(state, bytenr,
2006 processed_len,
Stefan Behrens5db02762011-11-01 17:04:16 +01002007 bdev, &block_ctx);
2008 else
Stefan Behrense06baab2012-04-12 12:53:40 +02002009 ret = btrfsic_map_block(state, bytenr, processed_len,
Stefan Behrens5db02762011-11-01 17:04:16 +01002010 &block_ctx, 0);
2011 if (ret) {
2012 printk(KERN_INFO
2013 "btrfsic: btrfsic_map_block(root @%llu)"
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02002014 " failed!\n", bytenr);
Stefan Behrense06baab2012-04-12 12:53:40 +02002015 goto continue_loop;
Stefan Behrens5db02762011-11-01 17:04:16 +01002016 }
Stefan Behrense06baab2012-04-12 12:53:40 +02002017 block_ctx.datav = mapped_datav;
Stefan Behrens5db02762011-11-01 17:04:16 +01002018 /* the following is required in case of writes to mirrors,
2019 * use the same that was used for the lookup */
2020 block_ctx.dev = dev_state;
2021 block_ctx.dev_bytenr = dev_bytenr;
2022
2023 if (is_metadata || state->include_extent_data) {
2024 block->never_written = 0;
2025 block->iodone_w_error = 0;
2026 if (NULL != bio) {
2027 block->is_iodone = 0;
2028 BUG_ON(NULL == bio_is_patched);
2029 if (!*bio_is_patched) {
2030 block->orig_bio_bh_private =
2031 bio->bi_private;
2032 block->orig_bio_bh_end_io.bio =
2033 bio->bi_end_io;
2034 block->next_in_same_bio = NULL;
2035 bio->bi_private = block;
2036 bio->bi_end_io = btrfsic_bio_end_io;
2037 *bio_is_patched = 1;
2038 } else {
2039 struct btrfsic_block *chained_block =
2040 (struct btrfsic_block *)
2041 bio->bi_private;
2042
2043 BUG_ON(NULL == chained_block);
2044 block->orig_bio_bh_private =
2045 chained_block->orig_bio_bh_private;
2046 block->orig_bio_bh_end_io.bio =
2047 chained_block->orig_bio_bh_end_io.
2048 bio;
2049 block->next_in_same_bio = chained_block;
2050 bio->bi_private = block;
2051 }
2052 } else if (NULL != bh) {
2053 block->is_iodone = 0;
2054 block->orig_bio_bh_private = bh->b_private;
2055 block->orig_bio_bh_end_io.bh = bh->b_end_io;
2056 block->next_in_same_bio = NULL;
2057 bh->b_private = block;
2058 bh->b_end_io = btrfsic_bh_end_io;
2059 } else {
2060 block->is_iodone = 1;
2061 block->orig_bio_bh_private = NULL;
2062 block->orig_bio_bh_end_io.bio = NULL;
2063 block->next_in_same_bio = NULL;
2064 }
2065 }
2066
2067 block->flush_gen = dev_state->last_flush_gen + 1;
2068 block->submit_bio_bh_rw = submit_bio_bh_rw;
2069 if (is_metadata) {
2070 block->logical_bytenr = bytenr;
2071 block->is_metadata = 1;
2072 if (block->is_superblock) {
Stefan Behrense06baab2012-04-12 12:53:40 +02002073 BUG_ON(PAGE_CACHE_SIZE !=
2074 BTRFS_SUPER_INFO_SIZE);
Stefan Behrens5db02762011-11-01 17:04:16 +01002075 ret = btrfsic_process_written_superblock(
2076 state,
2077 block,
2078 (struct btrfs_super_block *)
Stefan Behrense06baab2012-04-12 12:53:40 +02002079 mapped_datav[0]);
Stefan Behrens5db02762011-11-01 17:04:16 +01002080 if (state->print_mask &
2081 BTRFSIC_PRINT_MASK_TREE_AFTER_SB_WRITE) {
2082 printk(KERN_INFO
2083 "[after new superblock is written]:\n");
2084 btrfsic_dump_tree_sub(state, block, 0);
2085 }
2086 } else {
2087 block->mirror_num = 0; /* unknown */
2088 ret = btrfsic_process_metablock(
2089 state,
2090 block,
2091 &block_ctx,
Stefan Behrens5db02762011-11-01 17:04:16 +01002092 0, 0);
2093 }
2094 if (ret)
2095 printk(KERN_INFO
2096 "btrfsic: btrfsic_process_metablock"
2097 "(root @%llu) failed!\n",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02002098 dev_bytenr);
Stefan Behrens5db02762011-11-01 17:04:16 +01002099 } else {
2100 block->is_metadata = 0;
2101 block->mirror_num = 0; /* unknown */
2102 block->generation = BTRFSIC_GENERATION_UNKNOWN;
2103 if (!state->include_extent_data
2104 && list_empty(&block->ref_from_list)) {
2105 /*
2106 * disk block is overwritten with extent
2107 * data (not meta data) and we are configured
2108 * to not include extent data: take the
2109 * chance and free the block's memory
2110 */
2111 btrfsic_block_hashtable_remove(block);
2112 list_del(&block->all_blocks_node);
2113 btrfsic_block_free(block);
2114 }
2115 }
2116 btrfsic_release_block_ctx(&block_ctx);
2117 } else {
2118 /* block has not been found in hash table */
2119 u64 bytenr;
2120
2121 if (!is_metadata) {
Stefan Behrense06baab2012-04-12 12:53:40 +02002122 processed_len = state->datablock_size;
Stefan Behrens5db02762011-11-01 17:04:16 +01002123 if (state->print_mask & BTRFSIC_PRINT_MASK_VERBOSE)
2124 printk(KERN_INFO "Written block (%s/%llu/?)"
2125 " !found in hash table, D.\n",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02002126 dev_state->name, dev_bytenr);
Stefan Behrense06baab2012-04-12 12:53:40 +02002127 if (!state->include_extent_data) {
2128 /* ignore that written D block */
2129 goto continue_loop;
2130 }
Stefan Behrens5db02762011-11-01 17:04:16 +01002131
2132 /* this is getting ugly for the
2133 * include_extent_data case... */
2134 bytenr = 0; /* unknown */
2135 block_ctx.start = bytenr;
Stefan Behrense06baab2012-04-12 12:53:40 +02002136 block_ctx.len = processed_len;
2137 block_ctx.mem_to_free = NULL;
2138 block_ctx.pagev = NULL;
Stefan Behrens5db02762011-11-01 17:04:16 +01002139 } else {
Stefan Behrense06baab2012-04-12 12:53:40 +02002140 processed_len = state->metablock_size;
Qu Wenruo3cae2102013-07-16 11:19:18 +08002141 bytenr = btrfs_stack_header_bytenr(
2142 (struct btrfs_header *)
2143 mapped_datav[0]);
Stefan Behrens5db02762011-11-01 17:04:16 +01002144 btrfsic_cmp_log_and_dev_bytenr(state, bytenr, dev_state,
Stefan Behrense06baab2012-04-12 12:53:40 +02002145 dev_bytenr);
Stefan Behrens5db02762011-11-01 17:04:16 +01002146 if (state->print_mask & BTRFSIC_PRINT_MASK_VERBOSE)
2147 printk(KERN_INFO
2148 "Written block @%llu (%s/%llu/?)"
2149 " !found in hash table, M.\n",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02002150 bytenr, dev_state->name, dev_bytenr);
Stefan Behrens5db02762011-11-01 17:04:16 +01002151
Stefan Behrense06baab2012-04-12 12:53:40 +02002152 ret = btrfsic_map_block(state, bytenr, processed_len,
2153 &block_ctx, 0);
Stefan Behrens5db02762011-11-01 17:04:16 +01002154 if (ret) {
2155 printk(KERN_INFO
2156 "btrfsic: btrfsic_map_block(root @%llu)"
2157 " failed!\n",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02002158 dev_bytenr);
Stefan Behrense06baab2012-04-12 12:53:40 +02002159 goto continue_loop;
Stefan Behrens5db02762011-11-01 17:04:16 +01002160 }
2161 }
Stefan Behrense06baab2012-04-12 12:53:40 +02002162 block_ctx.datav = mapped_datav;
Stefan Behrens5db02762011-11-01 17:04:16 +01002163 /* the following is required in case of writes to mirrors,
2164 * use the same that was used for the lookup */
2165 block_ctx.dev = dev_state;
2166 block_ctx.dev_bytenr = dev_bytenr;
2167
2168 block = btrfsic_block_alloc();
2169 if (NULL == block) {
2170 printk(KERN_INFO "btrfsic: error, kmalloc failed!\n");
2171 btrfsic_release_block_ctx(&block_ctx);
Stefan Behrense06baab2012-04-12 12:53:40 +02002172 goto continue_loop;
Stefan Behrens5db02762011-11-01 17:04:16 +01002173 }
2174 block->dev_state = dev_state;
2175 block->dev_bytenr = dev_bytenr;
2176 block->logical_bytenr = bytenr;
2177 block->is_metadata = is_metadata;
2178 block->never_written = 0;
2179 block->iodone_w_error = 0;
2180 block->mirror_num = 0; /* unknown */
2181 block->flush_gen = dev_state->last_flush_gen + 1;
2182 block->submit_bio_bh_rw = submit_bio_bh_rw;
2183 if (NULL != bio) {
2184 block->is_iodone = 0;
2185 BUG_ON(NULL == bio_is_patched);
2186 if (!*bio_is_patched) {
2187 block->orig_bio_bh_private = bio->bi_private;
2188 block->orig_bio_bh_end_io.bio = bio->bi_end_io;
2189 block->next_in_same_bio = NULL;
2190 bio->bi_private = block;
2191 bio->bi_end_io = btrfsic_bio_end_io;
2192 *bio_is_patched = 1;
2193 } else {
2194 struct btrfsic_block *chained_block =
2195 (struct btrfsic_block *)
2196 bio->bi_private;
2197
2198 BUG_ON(NULL == chained_block);
2199 block->orig_bio_bh_private =
2200 chained_block->orig_bio_bh_private;
2201 block->orig_bio_bh_end_io.bio =
2202 chained_block->orig_bio_bh_end_io.bio;
2203 block->next_in_same_bio = chained_block;
2204 bio->bi_private = block;
2205 }
2206 } else if (NULL != bh) {
2207 block->is_iodone = 0;
2208 block->orig_bio_bh_private = bh->b_private;
2209 block->orig_bio_bh_end_io.bh = bh->b_end_io;
2210 block->next_in_same_bio = NULL;
2211 bh->b_private = block;
2212 bh->b_end_io = btrfsic_bh_end_io;
2213 } else {
2214 block->is_iodone = 1;
2215 block->orig_bio_bh_private = NULL;
2216 block->orig_bio_bh_end_io.bio = NULL;
2217 block->next_in_same_bio = NULL;
2218 }
2219 if (state->print_mask & BTRFSIC_PRINT_MASK_VERBOSE)
2220 printk(KERN_INFO
2221 "New written %c-block @%llu (%s/%llu/%d)\n",
2222 is_metadata ? 'M' : 'D',
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02002223 block->logical_bytenr, block->dev_state->name,
2224 block->dev_bytenr, block->mirror_num);
Stefan Behrens5db02762011-11-01 17:04:16 +01002225 list_add(&block->all_blocks_node, &state->all_blocks_list);
2226 btrfsic_block_hashtable_add(block, &state->block_hashtable);
2227
2228 if (is_metadata) {
2229 ret = btrfsic_process_metablock(state, block,
Stefan Behrense06baab2012-04-12 12:53:40 +02002230 &block_ctx, 0, 0);
Stefan Behrens5db02762011-11-01 17:04:16 +01002231 if (ret)
2232 printk(KERN_INFO
2233 "btrfsic: process_metablock(root @%llu)"
2234 " failed!\n",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02002235 dev_bytenr);
Stefan Behrens5db02762011-11-01 17:04:16 +01002236 }
2237 btrfsic_release_block_ctx(&block_ctx);
2238 }
Stefan Behrense06baab2012-04-12 12:53:40 +02002239
2240continue_loop:
2241 BUG_ON(!processed_len);
2242 dev_bytenr += processed_len;
2243 mapped_datav += processed_len >> PAGE_CACHE_SHIFT;
2244 num_pages -= processed_len >> PAGE_CACHE_SHIFT;
2245 goto again;
Stefan Behrens5db02762011-11-01 17:04:16 +01002246}
2247
2248static void btrfsic_bio_end_io(struct bio *bp, int bio_error_status)
2249{
2250 struct btrfsic_block *block = (struct btrfsic_block *)bp->bi_private;
2251 int iodone_w_error;
2252
2253 /* mutex is not held! This is not save if IO is not yet completed
2254 * on umount */
2255 iodone_w_error = 0;
2256 if (bio_error_status)
2257 iodone_w_error = 1;
2258
2259 BUG_ON(NULL == block);
2260 bp->bi_private = block->orig_bio_bh_private;
2261 bp->bi_end_io = block->orig_bio_bh_end_io.bio;
2262
2263 do {
2264 struct btrfsic_block *next_block;
2265 struct btrfsic_dev_state *const dev_state = block->dev_state;
2266
2267 if ((dev_state->state->print_mask &
2268 BTRFSIC_PRINT_MASK_END_IO_BIO_BH))
2269 printk(KERN_INFO
2270 "bio_end_io(err=%d) for %c @%llu (%s/%llu/%d)\n",
2271 bio_error_status,
2272 btrfsic_get_block_type(dev_state->state, block),
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02002273 block->logical_bytenr, dev_state->name,
2274 block->dev_bytenr, block->mirror_num);
Stefan Behrens5db02762011-11-01 17:04:16 +01002275 next_block = block->next_in_same_bio;
2276 block->iodone_w_error = iodone_w_error;
2277 if (block->submit_bio_bh_rw & REQ_FLUSH) {
2278 dev_state->last_flush_gen++;
2279 if ((dev_state->state->print_mask &
2280 BTRFSIC_PRINT_MASK_END_IO_BIO_BH))
2281 printk(KERN_INFO
2282 "bio_end_io() new %s flush_gen=%llu\n",
2283 dev_state->name,
Stefan Behrens5db02762011-11-01 17:04:16 +01002284 dev_state->last_flush_gen);
2285 }
2286 if (block->submit_bio_bh_rw & REQ_FUA)
2287 block->flush_gen = 0; /* FUA completed means block is
2288 * on disk */
2289 block->is_iodone = 1; /* for FLUSH, this releases the block */
2290 block = next_block;
2291 } while (NULL != block);
2292
2293 bp->bi_end_io(bp, bio_error_status);
2294}
2295
2296static void btrfsic_bh_end_io(struct buffer_head *bh, int uptodate)
2297{
2298 struct btrfsic_block *block = (struct btrfsic_block *)bh->b_private;
2299 int iodone_w_error = !uptodate;
2300 struct btrfsic_dev_state *dev_state;
2301
2302 BUG_ON(NULL == block);
2303 dev_state = block->dev_state;
2304 if ((dev_state->state->print_mask & BTRFSIC_PRINT_MASK_END_IO_BIO_BH))
2305 printk(KERN_INFO
2306 "bh_end_io(error=%d) for %c @%llu (%s/%llu/%d)\n",
2307 iodone_w_error,
2308 btrfsic_get_block_type(dev_state->state, block),
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02002309 block->logical_bytenr, block->dev_state->name,
2310 block->dev_bytenr, block->mirror_num);
Stefan Behrens5db02762011-11-01 17:04:16 +01002311
2312 block->iodone_w_error = iodone_w_error;
2313 if (block->submit_bio_bh_rw & REQ_FLUSH) {
2314 dev_state->last_flush_gen++;
2315 if ((dev_state->state->print_mask &
2316 BTRFSIC_PRINT_MASK_END_IO_BIO_BH))
2317 printk(KERN_INFO
2318 "bh_end_io() new %s flush_gen=%llu\n",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02002319 dev_state->name, dev_state->last_flush_gen);
Stefan Behrens5db02762011-11-01 17:04:16 +01002320 }
2321 if (block->submit_bio_bh_rw & REQ_FUA)
2322 block->flush_gen = 0; /* FUA completed means block is on disk */
2323
2324 bh->b_private = block->orig_bio_bh_private;
2325 bh->b_end_io = block->orig_bio_bh_end_io.bh;
2326 block->is_iodone = 1; /* for FLUSH, this releases the block */
2327 bh->b_end_io(bh, uptodate);
2328}
2329
2330static int btrfsic_process_written_superblock(
2331 struct btrfsic_state *state,
2332 struct btrfsic_block *const superblock,
2333 struct btrfs_super_block *const super_hdr)
2334{
2335 int pass;
2336
2337 superblock->generation = btrfs_super_generation(super_hdr);
2338 if (!(superblock->generation > state->max_superblock_generation ||
2339 0 == state->max_superblock_generation)) {
2340 if (state->print_mask & BTRFSIC_PRINT_MASK_SUPERBLOCK_WRITE)
2341 printk(KERN_INFO
2342 "btrfsic: superblock @%llu (%s/%llu/%d)"
2343 " with old gen %llu <= %llu\n",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02002344 superblock->logical_bytenr,
Stefan Behrens5db02762011-11-01 17:04:16 +01002345 superblock->dev_state->name,
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02002346 superblock->dev_bytenr, superblock->mirror_num,
Stefan Behrens5db02762011-11-01 17:04:16 +01002347 btrfs_super_generation(super_hdr),
Stefan Behrens5db02762011-11-01 17:04:16 +01002348 state->max_superblock_generation);
2349 } else {
2350 if (state->print_mask & BTRFSIC_PRINT_MASK_SUPERBLOCK_WRITE)
2351 printk(KERN_INFO
2352 "btrfsic: got new superblock @%llu (%s/%llu/%d)"
2353 " with new gen %llu > %llu\n",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02002354 superblock->logical_bytenr,
Stefan Behrens5db02762011-11-01 17:04:16 +01002355 superblock->dev_state->name,
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02002356 superblock->dev_bytenr, superblock->mirror_num,
Stefan Behrens5db02762011-11-01 17:04:16 +01002357 btrfs_super_generation(super_hdr),
Stefan Behrens5db02762011-11-01 17:04:16 +01002358 state->max_superblock_generation);
2359
2360 state->max_superblock_generation =
2361 btrfs_super_generation(super_hdr);
2362 state->latest_superblock = superblock;
2363 }
2364
2365 for (pass = 0; pass < 3; pass++) {
2366 int ret;
2367 u64 next_bytenr;
2368 struct btrfsic_block *next_block;
2369 struct btrfsic_block_data_ctx tmp_next_block_ctx;
2370 struct btrfsic_block_link *l;
2371 int num_copies;
2372 int mirror_num;
2373 const char *additional_string = NULL;
Stefan Behrens35a36212013-08-14 18:12:25 +02002374 struct btrfs_disk_key tmp_disk_key = {0};
Stefan Behrens5db02762011-11-01 17:04:16 +01002375
Qu Wenruo3cae2102013-07-16 11:19:18 +08002376 btrfs_set_disk_key_objectid(&tmp_disk_key,
2377 BTRFS_ROOT_ITEM_KEY);
2378 btrfs_set_disk_key_objectid(&tmp_disk_key, 0);
Stefan Behrens5db02762011-11-01 17:04:16 +01002379
2380 switch (pass) {
2381 case 0:
Qu Wenruo3cae2102013-07-16 11:19:18 +08002382 btrfs_set_disk_key_objectid(&tmp_disk_key,
2383 BTRFS_ROOT_TREE_OBJECTID);
Stefan Behrens5db02762011-11-01 17:04:16 +01002384 additional_string = "root ";
2385 next_bytenr = btrfs_super_root(super_hdr);
2386 if (state->print_mask &
2387 BTRFSIC_PRINT_MASK_ROOT_CHUNK_LOG_TREE_LOCATION)
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02002388 printk(KERN_INFO "root@%llu\n", next_bytenr);
Stefan Behrens5db02762011-11-01 17:04:16 +01002389 break;
2390 case 1:
Qu Wenruo3cae2102013-07-16 11:19:18 +08002391 btrfs_set_disk_key_objectid(&tmp_disk_key,
2392 BTRFS_CHUNK_TREE_OBJECTID);
Stefan Behrens5db02762011-11-01 17:04:16 +01002393 additional_string = "chunk ";
2394 next_bytenr = btrfs_super_chunk_root(super_hdr);
2395 if (state->print_mask &
2396 BTRFSIC_PRINT_MASK_ROOT_CHUNK_LOG_TREE_LOCATION)
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02002397 printk(KERN_INFO "chunk@%llu\n", next_bytenr);
Stefan Behrens5db02762011-11-01 17:04:16 +01002398 break;
2399 case 2:
Qu Wenruo3cae2102013-07-16 11:19:18 +08002400 btrfs_set_disk_key_objectid(&tmp_disk_key,
2401 BTRFS_TREE_LOG_OBJECTID);
Stefan Behrens5db02762011-11-01 17:04:16 +01002402 additional_string = "log ";
2403 next_bytenr = btrfs_super_log_root(super_hdr);
2404 if (0 == next_bytenr)
2405 continue;
2406 if (state->print_mask &
2407 BTRFSIC_PRINT_MASK_ROOT_CHUNK_LOG_TREE_LOCATION)
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02002408 printk(KERN_INFO "log@%llu\n", next_bytenr);
Stefan Behrens5db02762011-11-01 17:04:16 +01002409 break;
2410 }
2411
2412 num_copies =
Stefan Behrens5d964052012-11-05 14:59:07 +01002413 btrfs_num_copies(state->root->fs_info,
Stefan Behrense06baab2012-04-12 12:53:40 +02002414 next_bytenr, BTRFS_SUPER_INFO_SIZE);
Stefan Behrens5db02762011-11-01 17:04:16 +01002415 if (state->print_mask & BTRFSIC_PRINT_MASK_NUM_COPIES)
2416 printk(KERN_INFO "num_copies(log_bytenr=%llu) = %d\n",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02002417 next_bytenr, num_copies);
Stefan Behrens5db02762011-11-01 17:04:16 +01002418 for (mirror_num = 1; mirror_num <= num_copies; mirror_num++) {
2419 int was_created;
2420
2421 if (state->print_mask & BTRFSIC_PRINT_MASK_VERBOSE)
2422 printk(KERN_INFO
2423 "btrfsic_process_written_superblock("
2424 "mirror_num=%d)\n", mirror_num);
Stefan Behrense06baab2012-04-12 12:53:40 +02002425 ret = btrfsic_map_block(state, next_bytenr,
2426 BTRFS_SUPER_INFO_SIZE,
Stefan Behrens5db02762011-11-01 17:04:16 +01002427 &tmp_next_block_ctx,
2428 mirror_num);
2429 if (ret) {
2430 printk(KERN_INFO
2431 "btrfsic: btrfsic_map_block(@%llu,"
2432 " mirror=%d) failed!\n",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02002433 next_bytenr, mirror_num);
Stefan Behrens5db02762011-11-01 17:04:16 +01002434 return -1;
2435 }
2436
2437 next_block = btrfsic_block_lookup_or_add(
2438 state,
2439 &tmp_next_block_ctx,
2440 additional_string,
2441 1, 0, 1,
2442 mirror_num,
2443 &was_created);
2444 if (NULL == next_block) {
2445 printk(KERN_INFO
2446 "btrfsic: error, kmalloc failed!\n");
2447 btrfsic_release_block_ctx(&tmp_next_block_ctx);
2448 return -1;
2449 }
2450
2451 next_block->disk_key = tmp_disk_key;
2452 if (was_created)
2453 next_block->generation =
2454 BTRFSIC_GENERATION_UNKNOWN;
2455 l = btrfsic_block_link_lookup_or_add(
2456 state,
2457 &tmp_next_block_ctx,
2458 next_block,
2459 superblock,
2460 BTRFSIC_GENERATION_UNKNOWN);
2461 btrfsic_release_block_ctx(&tmp_next_block_ctx);
2462 if (NULL == l)
2463 return -1;
2464 }
2465 }
2466
2467 if (-1 == btrfsic_check_all_ref_blocks(state, superblock, 0)) {
2468 WARN_ON(1);
2469 btrfsic_dump_tree(state);
2470 }
2471
2472 return 0;
2473}
2474
2475static int btrfsic_check_all_ref_blocks(struct btrfsic_state *state,
2476 struct btrfsic_block *const block,
2477 int recursion_level)
2478{
2479 struct list_head *elem_ref_to;
2480 int ret = 0;
2481
2482 if (recursion_level >= 3 + BTRFS_MAX_LEVEL) {
2483 /*
2484 * Note that this situation can happen and does not
2485 * indicate an error in regular cases. It happens
2486 * when disk blocks are freed and later reused.
2487 * The check-integrity module is not aware of any
2488 * block free operations, it just recognizes block
2489 * write operations. Therefore it keeps the linkage
2490 * information for a block until a block is
2491 * rewritten. This can temporarily cause incorrect
2492 * and even circular linkage informations. This
2493 * causes no harm unless such blocks are referenced
2494 * by the most recent super block.
2495 */
2496 if (state->print_mask & BTRFSIC_PRINT_MASK_VERBOSE)
2497 printk(KERN_INFO
2498 "btrfsic: abort cyclic linkage (case 1).\n");
2499
2500 return ret;
2501 }
2502
2503 /*
2504 * This algorithm is recursive because the amount of used stack
2505 * space is very small and the max recursion depth is limited.
2506 */
2507 list_for_each(elem_ref_to, &block->ref_to_list) {
2508 const struct btrfsic_block_link *const l =
2509 list_entry(elem_ref_to, struct btrfsic_block_link,
2510 node_ref_to);
2511
2512 if (state->print_mask & BTRFSIC_PRINT_MASK_VERBOSE)
2513 printk(KERN_INFO
2514 "rl=%d, %c @%llu (%s/%llu/%d)"
2515 " %u* refers to %c @%llu (%s/%llu/%d)\n",
2516 recursion_level,
2517 btrfsic_get_block_type(state, block),
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02002518 block->logical_bytenr, block->dev_state->name,
2519 block->dev_bytenr, block->mirror_num,
Stefan Behrens5db02762011-11-01 17:04:16 +01002520 l->ref_cnt,
2521 btrfsic_get_block_type(state, l->block_ref_to),
Stefan Behrens5db02762011-11-01 17:04:16 +01002522 l->block_ref_to->logical_bytenr,
2523 l->block_ref_to->dev_state->name,
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02002524 l->block_ref_to->dev_bytenr,
Stefan Behrens5db02762011-11-01 17:04:16 +01002525 l->block_ref_to->mirror_num);
2526 if (l->block_ref_to->never_written) {
2527 printk(KERN_INFO "btrfs: attempt to write superblock"
2528 " which references block %c @%llu (%s/%llu/%d)"
2529 " which is never written!\n",
2530 btrfsic_get_block_type(state, l->block_ref_to),
Stefan Behrens5db02762011-11-01 17:04:16 +01002531 l->block_ref_to->logical_bytenr,
2532 l->block_ref_to->dev_state->name,
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02002533 l->block_ref_to->dev_bytenr,
Stefan Behrens5db02762011-11-01 17:04:16 +01002534 l->block_ref_to->mirror_num);
2535 ret = -1;
2536 } else if (!l->block_ref_to->is_iodone) {
2537 printk(KERN_INFO "btrfs: attempt to write superblock"
2538 " which references block %c @%llu (%s/%llu/%d)"
2539 " which is not yet iodone!\n",
2540 btrfsic_get_block_type(state, l->block_ref_to),
Stefan Behrens5db02762011-11-01 17:04:16 +01002541 l->block_ref_to->logical_bytenr,
2542 l->block_ref_to->dev_state->name,
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02002543 l->block_ref_to->dev_bytenr,
Stefan Behrens5db02762011-11-01 17:04:16 +01002544 l->block_ref_to->mirror_num);
2545 ret = -1;
Stefan Behrens62856a92012-07-31 11:09:44 -06002546 } else if (l->block_ref_to->iodone_w_error) {
2547 printk(KERN_INFO "btrfs: attempt to write superblock"
2548 " which references block %c @%llu (%s/%llu/%d)"
2549 " which has write error!\n",
2550 btrfsic_get_block_type(state, l->block_ref_to),
Stefan Behrens62856a92012-07-31 11:09:44 -06002551 l->block_ref_to->logical_bytenr,
2552 l->block_ref_to->dev_state->name,
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02002553 l->block_ref_to->dev_bytenr,
Stefan Behrens62856a92012-07-31 11:09:44 -06002554 l->block_ref_to->mirror_num);
2555 ret = -1;
Stefan Behrens5db02762011-11-01 17:04:16 +01002556 } else if (l->parent_generation !=
2557 l->block_ref_to->generation &&
2558 BTRFSIC_GENERATION_UNKNOWN !=
2559 l->parent_generation &&
2560 BTRFSIC_GENERATION_UNKNOWN !=
2561 l->block_ref_to->generation) {
2562 printk(KERN_INFO "btrfs: attempt to write superblock"
2563 " which references block %c @%llu (%s/%llu/%d)"
2564 " with generation %llu !="
2565 " parent generation %llu!\n",
2566 btrfsic_get_block_type(state, l->block_ref_to),
Stefan Behrens5db02762011-11-01 17:04:16 +01002567 l->block_ref_to->logical_bytenr,
2568 l->block_ref_to->dev_state->name,
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02002569 l->block_ref_to->dev_bytenr,
Stefan Behrens5db02762011-11-01 17:04:16 +01002570 l->block_ref_to->mirror_num,
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02002571 l->block_ref_to->generation,
2572 l->parent_generation);
Stefan Behrens5db02762011-11-01 17:04:16 +01002573 ret = -1;
2574 } else if (l->block_ref_to->flush_gen >
2575 l->block_ref_to->dev_state->last_flush_gen) {
2576 printk(KERN_INFO "btrfs: attempt to write superblock"
2577 " which references block %c @%llu (%s/%llu/%d)"
2578 " which is not flushed out of disk's write cache"
2579 " (block flush_gen=%llu,"
2580 " dev->flush_gen=%llu)!\n",
2581 btrfsic_get_block_type(state, l->block_ref_to),
Stefan Behrens5db02762011-11-01 17:04:16 +01002582 l->block_ref_to->logical_bytenr,
2583 l->block_ref_to->dev_state->name,
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02002584 l->block_ref_to->dev_bytenr,
2585 l->block_ref_to->mirror_num, block->flush_gen,
Stefan Behrens5db02762011-11-01 17:04:16 +01002586 l->block_ref_to->dev_state->last_flush_gen);
2587 ret = -1;
2588 } else if (-1 == btrfsic_check_all_ref_blocks(state,
2589 l->block_ref_to,
2590 recursion_level +
2591 1)) {
2592 ret = -1;
2593 }
2594 }
2595
2596 return ret;
2597}
2598
2599static int btrfsic_is_block_ref_by_superblock(
2600 const struct btrfsic_state *state,
2601 const struct btrfsic_block *block,
2602 int recursion_level)
2603{
2604 struct list_head *elem_ref_from;
2605
2606 if (recursion_level >= 3 + BTRFS_MAX_LEVEL) {
2607 /* refer to comment at "abort cyclic linkage (case 1)" */
2608 if (state->print_mask & BTRFSIC_PRINT_MASK_VERBOSE)
2609 printk(KERN_INFO
2610 "btrfsic: abort cyclic linkage (case 2).\n");
2611
2612 return 0;
2613 }
2614
2615 /*
2616 * This algorithm is recursive because the amount of used stack space
2617 * is very small and the max recursion depth is limited.
2618 */
2619 list_for_each(elem_ref_from, &block->ref_from_list) {
2620 const struct btrfsic_block_link *const l =
2621 list_entry(elem_ref_from, struct btrfsic_block_link,
2622 node_ref_from);
2623
2624 if (state->print_mask & BTRFSIC_PRINT_MASK_VERBOSE)
2625 printk(KERN_INFO
2626 "rl=%d, %c @%llu (%s/%llu/%d)"
2627 " is ref %u* from %c @%llu (%s/%llu/%d)\n",
2628 recursion_level,
2629 btrfsic_get_block_type(state, block),
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02002630 block->logical_bytenr, block->dev_state->name,
2631 block->dev_bytenr, block->mirror_num,
Stefan Behrens5db02762011-11-01 17:04:16 +01002632 l->ref_cnt,
2633 btrfsic_get_block_type(state, l->block_ref_from),
Stefan Behrens5db02762011-11-01 17:04:16 +01002634 l->block_ref_from->logical_bytenr,
2635 l->block_ref_from->dev_state->name,
Stefan Behrens5db02762011-11-01 17:04:16 +01002636 l->block_ref_from->dev_bytenr,
2637 l->block_ref_from->mirror_num);
2638 if (l->block_ref_from->is_superblock &&
2639 state->latest_superblock->dev_bytenr ==
2640 l->block_ref_from->dev_bytenr &&
2641 state->latest_superblock->dev_state->bdev ==
2642 l->block_ref_from->dev_state->bdev)
2643 return 1;
2644 else if (btrfsic_is_block_ref_by_superblock(state,
2645 l->block_ref_from,
2646 recursion_level +
2647 1))
2648 return 1;
2649 }
2650
2651 return 0;
2652}
2653
2654static void btrfsic_print_add_link(const struct btrfsic_state *state,
2655 const struct btrfsic_block_link *l)
2656{
2657 printk(KERN_INFO
2658 "Add %u* link from %c @%llu (%s/%llu/%d)"
2659 " to %c @%llu (%s/%llu/%d).\n",
2660 l->ref_cnt,
2661 btrfsic_get_block_type(state, l->block_ref_from),
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02002662 l->block_ref_from->logical_bytenr,
Stefan Behrens5db02762011-11-01 17:04:16 +01002663 l->block_ref_from->dev_state->name,
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02002664 l->block_ref_from->dev_bytenr, l->block_ref_from->mirror_num,
Stefan Behrens5db02762011-11-01 17:04:16 +01002665 btrfsic_get_block_type(state, l->block_ref_to),
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02002666 l->block_ref_to->logical_bytenr,
2667 l->block_ref_to->dev_state->name, l->block_ref_to->dev_bytenr,
Stefan Behrens5db02762011-11-01 17:04:16 +01002668 l->block_ref_to->mirror_num);
2669}
2670
2671static void btrfsic_print_rem_link(const struct btrfsic_state *state,
2672 const struct btrfsic_block_link *l)
2673{
2674 printk(KERN_INFO
2675 "Rem %u* link from %c @%llu (%s/%llu/%d)"
2676 " to %c @%llu (%s/%llu/%d).\n",
2677 l->ref_cnt,
2678 btrfsic_get_block_type(state, l->block_ref_from),
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02002679 l->block_ref_from->logical_bytenr,
Stefan Behrens5db02762011-11-01 17:04:16 +01002680 l->block_ref_from->dev_state->name,
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02002681 l->block_ref_from->dev_bytenr, l->block_ref_from->mirror_num,
Stefan Behrens5db02762011-11-01 17:04:16 +01002682 btrfsic_get_block_type(state, l->block_ref_to),
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02002683 l->block_ref_to->logical_bytenr,
2684 l->block_ref_to->dev_state->name, l->block_ref_to->dev_bytenr,
Stefan Behrens5db02762011-11-01 17:04:16 +01002685 l->block_ref_to->mirror_num);
2686}
2687
2688static char btrfsic_get_block_type(const struct btrfsic_state *state,
2689 const struct btrfsic_block *block)
2690{
2691 if (block->is_superblock &&
2692 state->latest_superblock->dev_bytenr == block->dev_bytenr &&
2693 state->latest_superblock->dev_state->bdev == block->dev_state->bdev)
2694 return 'S';
2695 else if (block->is_superblock)
2696 return 's';
2697 else if (block->is_metadata)
2698 return 'M';
2699 else
2700 return 'D';
2701}
2702
2703static void btrfsic_dump_tree(const struct btrfsic_state *state)
2704{
2705 btrfsic_dump_tree_sub(state, state->latest_superblock, 0);
2706}
2707
2708static void btrfsic_dump_tree_sub(const struct btrfsic_state *state,
2709 const struct btrfsic_block *block,
2710 int indent_level)
2711{
2712 struct list_head *elem_ref_to;
2713 int indent_add;
2714 static char buf[80];
2715 int cursor_position;
2716
2717 /*
2718 * Should better fill an on-stack buffer with a complete line and
2719 * dump it at once when it is time to print a newline character.
2720 */
2721
2722 /*
2723 * This algorithm is recursive because the amount of used stack space
2724 * is very small and the max recursion depth is limited.
2725 */
2726 indent_add = sprintf(buf, "%c-%llu(%s/%llu/%d)",
2727 btrfsic_get_block_type(state, block),
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02002728 block->logical_bytenr, block->dev_state->name,
2729 block->dev_bytenr, block->mirror_num);
Stefan Behrens5db02762011-11-01 17:04:16 +01002730 if (indent_level + indent_add > BTRFSIC_TREE_DUMP_MAX_INDENT_LEVEL) {
2731 printk("[...]\n");
2732 return;
2733 }
2734 printk(buf);
2735 indent_level += indent_add;
2736 if (list_empty(&block->ref_to_list)) {
2737 printk("\n");
2738 return;
2739 }
2740 if (block->mirror_num > 1 &&
2741 !(state->print_mask & BTRFSIC_PRINT_MASK_TREE_WITH_ALL_MIRRORS)) {
2742 printk(" [...]\n");
2743 return;
2744 }
2745
2746 cursor_position = indent_level;
2747 list_for_each(elem_ref_to, &block->ref_to_list) {
2748 const struct btrfsic_block_link *const l =
2749 list_entry(elem_ref_to, struct btrfsic_block_link,
2750 node_ref_to);
2751
2752 while (cursor_position < indent_level) {
2753 printk(" ");
2754 cursor_position++;
2755 }
2756 if (l->ref_cnt > 1)
2757 indent_add = sprintf(buf, " %d*--> ", l->ref_cnt);
2758 else
2759 indent_add = sprintf(buf, " --> ");
2760 if (indent_level + indent_add >
2761 BTRFSIC_TREE_DUMP_MAX_INDENT_LEVEL) {
2762 printk("[...]\n");
2763 cursor_position = 0;
2764 continue;
2765 }
2766
2767 printk(buf);
2768
2769 btrfsic_dump_tree_sub(state, l->block_ref_to,
2770 indent_level + indent_add);
2771 cursor_position = 0;
2772 }
2773}
2774
2775static struct btrfsic_block_link *btrfsic_block_link_lookup_or_add(
2776 struct btrfsic_state *state,
2777 struct btrfsic_block_data_ctx *next_block_ctx,
2778 struct btrfsic_block *next_block,
2779 struct btrfsic_block *from_block,
2780 u64 parent_generation)
2781{
2782 struct btrfsic_block_link *l;
2783
2784 l = btrfsic_block_link_hashtable_lookup(next_block_ctx->dev->bdev,
2785 next_block_ctx->dev_bytenr,
2786 from_block->dev_state->bdev,
2787 from_block->dev_bytenr,
2788 &state->block_link_hashtable);
2789 if (NULL == l) {
2790 l = btrfsic_block_link_alloc();
2791 if (NULL == l) {
2792 printk(KERN_INFO
2793 "btrfsic: error, kmalloc" " failed!\n");
2794 return NULL;
2795 }
2796
2797 l->block_ref_to = next_block;
2798 l->block_ref_from = from_block;
2799 l->ref_cnt = 1;
2800 l->parent_generation = parent_generation;
2801
2802 if (state->print_mask & BTRFSIC_PRINT_MASK_VERBOSE)
2803 btrfsic_print_add_link(state, l);
2804
2805 list_add(&l->node_ref_to, &from_block->ref_to_list);
2806 list_add(&l->node_ref_from, &next_block->ref_from_list);
2807
2808 btrfsic_block_link_hashtable_add(l,
2809 &state->block_link_hashtable);
2810 } else {
2811 l->ref_cnt++;
2812 l->parent_generation = parent_generation;
2813 if (state->print_mask & BTRFSIC_PRINT_MASK_VERBOSE)
2814 btrfsic_print_add_link(state, l);
2815 }
2816
2817 return l;
2818}
2819
2820static struct btrfsic_block *btrfsic_block_lookup_or_add(
2821 struct btrfsic_state *state,
2822 struct btrfsic_block_data_ctx *block_ctx,
2823 const char *additional_string,
2824 int is_metadata,
2825 int is_iodone,
2826 int never_written,
2827 int mirror_num,
2828 int *was_created)
2829{
2830 struct btrfsic_block *block;
2831
2832 block = btrfsic_block_hashtable_lookup(block_ctx->dev->bdev,
2833 block_ctx->dev_bytenr,
2834 &state->block_hashtable);
2835 if (NULL == block) {
2836 struct btrfsic_dev_state *dev_state;
2837
2838 block = btrfsic_block_alloc();
2839 if (NULL == block) {
2840 printk(KERN_INFO "btrfsic: error, kmalloc failed!\n");
2841 return NULL;
2842 }
2843 dev_state = btrfsic_dev_state_lookup(block_ctx->dev->bdev);
2844 if (NULL == dev_state) {
2845 printk(KERN_INFO
2846 "btrfsic: error, lookup dev_state failed!\n");
2847 btrfsic_block_free(block);
2848 return NULL;
2849 }
2850 block->dev_state = dev_state;
2851 block->dev_bytenr = block_ctx->dev_bytenr;
2852 block->logical_bytenr = block_ctx->start;
2853 block->is_metadata = is_metadata;
2854 block->is_iodone = is_iodone;
2855 block->never_written = never_written;
2856 block->mirror_num = mirror_num;
2857 if (state->print_mask & BTRFSIC_PRINT_MASK_VERBOSE)
2858 printk(KERN_INFO
2859 "New %s%c-block @%llu (%s/%llu/%d)\n",
2860 additional_string,
2861 btrfsic_get_block_type(state, block),
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02002862 block->logical_bytenr, dev_state->name,
2863 block->dev_bytenr, mirror_num);
Stefan Behrens5db02762011-11-01 17:04:16 +01002864 list_add(&block->all_blocks_node, &state->all_blocks_list);
2865 btrfsic_block_hashtable_add(block, &state->block_hashtable);
2866 if (NULL != was_created)
2867 *was_created = 1;
2868 } else {
2869 if (NULL != was_created)
2870 *was_created = 0;
2871 }
2872
2873 return block;
2874}
2875
2876static void btrfsic_cmp_log_and_dev_bytenr(struct btrfsic_state *state,
2877 u64 bytenr,
2878 struct btrfsic_dev_state *dev_state,
Stefan Behrense06baab2012-04-12 12:53:40 +02002879 u64 dev_bytenr)
Stefan Behrens5db02762011-11-01 17:04:16 +01002880{
2881 int num_copies;
2882 int mirror_num;
2883 int ret;
2884 struct btrfsic_block_data_ctx block_ctx;
2885 int match = 0;
2886
Stefan Behrens5d964052012-11-05 14:59:07 +01002887 num_copies = btrfs_num_copies(state->root->fs_info,
Stefan Behrense06baab2012-04-12 12:53:40 +02002888 bytenr, state->metablock_size);
Stefan Behrens5db02762011-11-01 17:04:16 +01002889
2890 for (mirror_num = 1; mirror_num <= num_copies; mirror_num++) {
Stefan Behrense06baab2012-04-12 12:53:40 +02002891 ret = btrfsic_map_block(state, bytenr, state->metablock_size,
Stefan Behrens5db02762011-11-01 17:04:16 +01002892 &block_ctx, mirror_num);
2893 if (ret) {
2894 printk(KERN_INFO "btrfsic:"
2895 " btrfsic_map_block(logical @%llu,"
2896 " mirror %d) failed!\n",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02002897 bytenr, mirror_num);
Stefan Behrens5db02762011-11-01 17:04:16 +01002898 continue;
2899 }
2900
2901 if (dev_state->bdev == block_ctx.dev->bdev &&
2902 dev_bytenr == block_ctx.dev_bytenr) {
2903 match++;
2904 btrfsic_release_block_ctx(&block_ctx);
2905 break;
2906 }
2907 btrfsic_release_block_ctx(&block_ctx);
2908 }
2909
2910 if (!match) {
2911 printk(KERN_INFO "btrfs: attempt to write M-block which contains logical bytenr that doesn't map to dev+physical bytenr of submit_bio,"
2912 " buffer->log_bytenr=%llu, submit_bio(bdev=%s,"
2913 " phys_bytenr=%llu)!\n",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02002914 bytenr, dev_state->name, dev_bytenr);
Stefan Behrens5db02762011-11-01 17:04:16 +01002915 for (mirror_num = 1; mirror_num <= num_copies; mirror_num++) {
Stefan Behrense06baab2012-04-12 12:53:40 +02002916 ret = btrfsic_map_block(state, bytenr,
2917 state->metablock_size,
Stefan Behrens5db02762011-11-01 17:04:16 +01002918 &block_ctx, mirror_num);
2919 if (ret)
2920 continue;
2921
2922 printk(KERN_INFO "Read logical bytenr @%llu maps to"
2923 " (%s/%llu/%d)\n",
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02002924 bytenr, block_ctx.dev->name,
2925 block_ctx.dev_bytenr, mirror_num);
Stefan Behrens5db02762011-11-01 17:04:16 +01002926 }
2927 WARN_ON(1);
2928 }
2929}
2930
2931static struct btrfsic_dev_state *btrfsic_dev_state_lookup(
2932 struct block_device *bdev)
2933{
2934 struct btrfsic_dev_state *ds;
2935
2936 ds = btrfsic_dev_state_hashtable_lookup(bdev,
2937 &btrfsic_dev_state_hashtable);
2938 return ds;
2939}
2940
2941int btrfsic_submit_bh(int rw, struct buffer_head *bh)
2942{
2943 struct btrfsic_dev_state *dev_state;
2944
2945 if (!btrfsic_is_initialized)
2946 return submit_bh(rw, bh);
2947
2948 mutex_lock(&btrfsic_mutex);
2949 /* since btrfsic_submit_bh() might also be called before
2950 * btrfsic_mount(), this might return NULL */
2951 dev_state = btrfsic_dev_state_lookup(bh->b_bdev);
2952
2953 /* Only called to write the superblock (incl. FLUSH/FUA) */
2954 if (NULL != dev_state &&
2955 (rw & WRITE) && bh->b_size > 0) {
2956 u64 dev_bytenr;
2957
2958 dev_bytenr = 4096 * bh->b_blocknr;
2959 if (dev_state->state->print_mask &
2960 BTRFSIC_PRINT_MASK_SUBMIT_BIO_BH)
2961 printk(KERN_INFO
Geert Uytterhoevenfce29362013-08-20 13:20:17 +02002962 "submit_bh(rw=0x%x, blocknr=%llu (bytenr %llu),"
Geert Uytterhoeven8d78eb12013-08-20 13:20:18 +02002963 " size=%zu, data=%p, bdev=%p)\n",
Geert Uytterhoevenfce29362013-08-20 13:20:17 +02002964 rw, (unsigned long long)bh->b_blocknr,
Geert Uytterhoeven8d78eb12013-08-20 13:20:18 +02002965 dev_bytenr, bh->b_size, bh->b_data, bh->b_bdev);
Stefan Behrens5db02762011-11-01 17:04:16 +01002966 btrfsic_process_written_block(dev_state, dev_bytenr,
Stefan Behrense06baab2012-04-12 12:53:40 +02002967 &bh->b_data, 1, NULL,
Stefan Behrens5db02762011-11-01 17:04:16 +01002968 NULL, bh, rw);
2969 } else if (NULL != dev_state && (rw & REQ_FLUSH)) {
2970 if (dev_state->state->print_mask &
2971 BTRFSIC_PRINT_MASK_SUBMIT_BIO_BH)
2972 printk(KERN_INFO
Stefan Behrense06baab2012-04-12 12:53:40 +02002973 "submit_bh(rw=0x%x FLUSH, bdev=%p)\n",
Stefan Behrens5db02762011-11-01 17:04:16 +01002974 rw, bh->b_bdev);
2975 if (!dev_state->dummy_block_for_bio_bh_flush.is_iodone) {
2976 if ((dev_state->state->print_mask &
2977 (BTRFSIC_PRINT_MASK_SUBMIT_BIO_BH |
2978 BTRFSIC_PRINT_MASK_VERBOSE)))
2979 printk(KERN_INFO
2980 "btrfsic_submit_bh(%s) with FLUSH"
2981 " but dummy block already in use"
2982 " (ignored)!\n",
2983 dev_state->name);
2984 } else {
2985 struct btrfsic_block *const block =
2986 &dev_state->dummy_block_for_bio_bh_flush;
2987
2988 block->is_iodone = 0;
2989 block->never_written = 0;
2990 block->iodone_w_error = 0;
2991 block->flush_gen = dev_state->last_flush_gen + 1;
2992 block->submit_bio_bh_rw = rw;
2993 block->orig_bio_bh_private = bh->b_private;
2994 block->orig_bio_bh_end_io.bh = bh->b_end_io;
2995 block->next_in_same_bio = NULL;
2996 bh->b_private = block;
2997 bh->b_end_io = btrfsic_bh_end_io;
2998 }
2999 }
3000 mutex_unlock(&btrfsic_mutex);
3001 return submit_bh(rw, bh);
3002}
3003
3004void btrfsic_submit_bio(int rw, struct bio *bio)
3005{
3006 struct btrfsic_dev_state *dev_state;
3007
3008 if (!btrfsic_is_initialized) {
3009 submit_bio(rw, bio);
3010 return;
3011 }
3012
3013 mutex_lock(&btrfsic_mutex);
3014 /* since btrfsic_submit_bio() is also called before
3015 * btrfsic_mount(), this might return NULL */
3016 dev_state = btrfsic_dev_state_lookup(bio->bi_bdev);
3017 if (NULL != dev_state &&
3018 (rw & WRITE) && NULL != bio->bi_io_vec) {
3019 unsigned int i;
3020 u64 dev_bytenr;
3021 int bio_is_patched;
Stefan Behrense06baab2012-04-12 12:53:40 +02003022 char **mapped_datav;
Stefan Behrens5db02762011-11-01 17:04:16 +01003023
3024 dev_bytenr = 512 * bio->bi_sector;
3025 bio_is_patched = 0;
3026 if (dev_state->state->print_mask &
3027 BTRFSIC_PRINT_MASK_SUBMIT_BIO_BH)
3028 printk(KERN_INFO
3029 "submit_bio(rw=0x%x, bi_vcnt=%u,"
Geert Uytterhoevenfce29362013-08-20 13:20:17 +02003030 " bi_sector=%llu (bytenr %llu), bi_bdev=%p)\n",
3031 rw, bio->bi_vcnt,
3032 (unsigned long long)bio->bi_sector, dev_bytenr,
3033 bio->bi_bdev);
Stefan Behrens5db02762011-11-01 17:04:16 +01003034
Stefan Behrense06baab2012-04-12 12:53:40 +02003035 mapped_datav = kmalloc(sizeof(*mapped_datav) * bio->bi_vcnt,
3036 GFP_NOFS);
3037 if (!mapped_datav)
3038 goto leave;
Stefan Behrens5db02762011-11-01 17:04:16 +01003039 for (i = 0; i < bio->bi_vcnt; i++) {
Stefan Behrense06baab2012-04-12 12:53:40 +02003040 BUG_ON(bio->bi_io_vec[i].bv_len != PAGE_CACHE_SIZE);
3041 mapped_datav[i] = kmap(bio->bi_io_vec[i].bv_page);
3042 if (!mapped_datav[i]) {
3043 while (i > 0) {
3044 i--;
3045 kunmap(bio->bi_io_vec[i].bv_page);
3046 }
3047 kfree(mapped_datav);
3048 goto leave;
3049 }
Stefan Behrens5db02762011-11-01 17:04:16 +01003050 if ((BTRFSIC_PRINT_MASK_SUBMIT_BIO_BH |
3051 BTRFSIC_PRINT_MASK_VERBOSE) ==
3052 (dev_state->state->print_mask &
3053 (BTRFSIC_PRINT_MASK_SUBMIT_BIO_BH |
3054 BTRFSIC_PRINT_MASK_VERBOSE)))
3055 printk(KERN_INFO
Stefan Behrense06baab2012-04-12 12:53:40 +02003056 "#%u: page=%p, len=%u, offset=%u\n",
Stefan Behrens5db02762011-11-01 17:04:16 +01003057 i, bio->bi_io_vec[i].bv_page,
Stefan Behrens5db02762011-11-01 17:04:16 +01003058 bio->bi_io_vec[i].bv_len,
3059 bio->bi_io_vec[i].bv_offset);
Stefan Behrens5db02762011-11-01 17:04:16 +01003060 }
Stefan Behrense06baab2012-04-12 12:53:40 +02003061 btrfsic_process_written_block(dev_state, dev_bytenr,
3062 mapped_datav, bio->bi_vcnt,
3063 bio, &bio_is_patched,
3064 NULL, rw);
3065 while (i > 0) {
3066 i--;
3067 kunmap(bio->bi_io_vec[i].bv_page);
3068 }
3069 kfree(mapped_datav);
Stefan Behrens5db02762011-11-01 17:04:16 +01003070 } else if (NULL != dev_state && (rw & REQ_FLUSH)) {
3071 if (dev_state->state->print_mask &
3072 BTRFSIC_PRINT_MASK_SUBMIT_BIO_BH)
3073 printk(KERN_INFO
Stefan Behrense06baab2012-04-12 12:53:40 +02003074 "submit_bio(rw=0x%x FLUSH, bdev=%p)\n",
Stefan Behrens5db02762011-11-01 17:04:16 +01003075 rw, bio->bi_bdev);
3076 if (!dev_state->dummy_block_for_bio_bh_flush.is_iodone) {
3077 if ((dev_state->state->print_mask &
3078 (BTRFSIC_PRINT_MASK_SUBMIT_BIO_BH |
3079 BTRFSIC_PRINT_MASK_VERBOSE)))
3080 printk(KERN_INFO
3081 "btrfsic_submit_bio(%s) with FLUSH"
3082 " but dummy block already in use"
3083 " (ignored)!\n",
3084 dev_state->name);
3085 } else {
3086 struct btrfsic_block *const block =
3087 &dev_state->dummy_block_for_bio_bh_flush;
3088
3089 block->is_iodone = 0;
3090 block->never_written = 0;
3091 block->iodone_w_error = 0;
3092 block->flush_gen = dev_state->last_flush_gen + 1;
3093 block->submit_bio_bh_rw = rw;
3094 block->orig_bio_bh_private = bio->bi_private;
3095 block->orig_bio_bh_end_io.bio = bio->bi_end_io;
3096 block->next_in_same_bio = NULL;
3097 bio->bi_private = block;
3098 bio->bi_end_io = btrfsic_bio_end_io;
3099 }
3100 }
Stefan Behrense06baab2012-04-12 12:53:40 +02003101leave:
Stefan Behrens5db02762011-11-01 17:04:16 +01003102 mutex_unlock(&btrfsic_mutex);
3103
3104 submit_bio(rw, bio);
3105}
3106
3107int btrfsic_mount(struct btrfs_root *root,
3108 struct btrfs_fs_devices *fs_devices,
3109 int including_extent_data, u32 print_mask)
3110{
3111 int ret;
3112 struct btrfsic_state *state;
3113 struct list_head *dev_head = &fs_devices->devices;
3114 struct btrfs_device *device;
3115
Stefan Behrense06baab2012-04-12 12:53:40 +02003116 if (root->nodesize != root->leafsize) {
3117 printk(KERN_INFO
3118 "btrfsic: cannot handle nodesize %d != leafsize %d!\n",
3119 root->nodesize, root->leafsize);
3120 return -1;
3121 }
3122 if (root->nodesize & ((u64)PAGE_CACHE_SIZE - 1)) {
3123 printk(KERN_INFO
3124 "btrfsic: cannot handle nodesize %d not being a multiple of PAGE_CACHE_SIZE %ld!\n",
Geert Uytterhoeven778746b2013-08-20 13:20:16 +02003125 root->nodesize, PAGE_CACHE_SIZE);
Stefan Behrense06baab2012-04-12 12:53:40 +02003126 return -1;
3127 }
3128 if (root->leafsize & ((u64)PAGE_CACHE_SIZE - 1)) {
3129 printk(KERN_INFO
3130 "btrfsic: cannot handle leafsize %d not being a multiple of PAGE_CACHE_SIZE %ld!\n",
Geert Uytterhoeven778746b2013-08-20 13:20:16 +02003131 root->leafsize, PAGE_CACHE_SIZE);
Stefan Behrense06baab2012-04-12 12:53:40 +02003132 return -1;
3133 }
3134 if (root->sectorsize & ((u64)PAGE_CACHE_SIZE - 1)) {
3135 printk(KERN_INFO
3136 "btrfsic: cannot handle sectorsize %d not being a multiple of PAGE_CACHE_SIZE %ld!\n",
Geert Uytterhoeven778746b2013-08-20 13:20:16 +02003137 root->sectorsize, PAGE_CACHE_SIZE);
Stefan Behrense06baab2012-04-12 12:53:40 +02003138 return -1;
3139 }
Stefan Behrens5db02762011-11-01 17:04:16 +01003140 state = kzalloc(sizeof(*state), GFP_NOFS);
3141 if (NULL == state) {
3142 printk(KERN_INFO "btrfs check-integrity: kmalloc() failed!\n");
3143 return -1;
3144 }
3145
3146 if (!btrfsic_is_initialized) {
3147 mutex_init(&btrfsic_mutex);
3148 btrfsic_dev_state_hashtable_init(&btrfsic_dev_state_hashtable);
3149 btrfsic_is_initialized = 1;
3150 }
3151 mutex_lock(&btrfsic_mutex);
3152 state->root = root;
3153 state->print_mask = print_mask;
3154 state->include_extent_data = including_extent_data;
3155 state->csum_size = 0;
Stefan Behrense06baab2012-04-12 12:53:40 +02003156 state->metablock_size = root->nodesize;
3157 state->datablock_size = root->sectorsize;
Stefan Behrens5db02762011-11-01 17:04:16 +01003158 INIT_LIST_HEAD(&state->all_blocks_list);
3159 btrfsic_block_hashtable_init(&state->block_hashtable);
3160 btrfsic_block_link_hashtable_init(&state->block_link_hashtable);
3161 state->max_superblock_generation = 0;
3162 state->latest_superblock = NULL;
3163
3164 list_for_each_entry(device, dev_head, dev_list) {
3165 struct btrfsic_dev_state *ds;
3166 char *p;
3167
3168 if (!device->bdev || !device->name)
3169 continue;
3170
3171 ds = btrfsic_dev_state_alloc();
3172 if (NULL == ds) {
3173 printk(KERN_INFO
3174 "btrfs check-integrity: kmalloc() failed!\n");
3175 mutex_unlock(&btrfsic_mutex);
3176 return -1;
3177 }
3178 ds->bdev = device->bdev;
3179 ds->state = state;
3180 bdevname(ds->bdev, ds->name);
3181 ds->name[BDEVNAME_SIZE - 1] = '\0';
3182 for (p = ds->name; *p != '\0'; p++);
3183 while (p > ds->name && *p != '/')
3184 p--;
3185 if (*p == '/')
3186 p++;
3187 strlcpy(ds->name, p, sizeof(ds->name));
3188 btrfsic_dev_state_hashtable_add(ds,
3189 &btrfsic_dev_state_hashtable);
3190 }
3191
3192 ret = btrfsic_process_superblock(state, fs_devices);
3193 if (0 != ret) {
3194 mutex_unlock(&btrfsic_mutex);
3195 btrfsic_unmount(root, fs_devices);
3196 return ret;
3197 }
3198
3199 if (state->print_mask & BTRFSIC_PRINT_MASK_INITIAL_DATABASE)
3200 btrfsic_dump_database(state);
3201 if (state->print_mask & BTRFSIC_PRINT_MASK_INITIAL_TREE)
3202 btrfsic_dump_tree(state);
3203
3204 mutex_unlock(&btrfsic_mutex);
3205 return 0;
3206}
3207
3208void btrfsic_unmount(struct btrfs_root *root,
3209 struct btrfs_fs_devices *fs_devices)
3210{
3211 struct list_head *elem_all;
3212 struct list_head *tmp_all;
3213 struct btrfsic_state *state;
3214 struct list_head *dev_head = &fs_devices->devices;
3215 struct btrfs_device *device;
3216
3217 if (!btrfsic_is_initialized)
3218 return;
3219
3220 mutex_lock(&btrfsic_mutex);
3221
3222 state = NULL;
3223 list_for_each_entry(device, dev_head, dev_list) {
3224 struct btrfsic_dev_state *ds;
3225
3226 if (!device->bdev || !device->name)
3227 continue;
3228
3229 ds = btrfsic_dev_state_hashtable_lookup(
3230 device->bdev,
3231 &btrfsic_dev_state_hashtable);
3232 if (NULL != ds) {
3233 state = ds->state;
3234 btrfsic_dev_state_hashtable_remove(ds);
3235 btrfsic_dev_state_free(ds);
3236 }
3237 }
3238
3239 if (NULL == state) {
3240 printk(KERN_INFO
3241 "btrfsic: error, cannot find state information"
3242 " on umount!\n");
3243 mutex_unlock(&btrfsic_mutex);
3244 return;
3245 }
3246
3247 /*
3248 * Don't care about keeping the lists' state up to date,
3249 * just free all memory that was allocated dynamically.
3250 * Free the blocks and the block_links.
3251 */
3252 list_for_each_safe(elem_all, tmp_all, &state->all_blocks_list) {
3253 struct btrfsic_block *const b_all =
3254 list_entry(elem_all, struct btrfsic_block,
3255 all_blocks_node);
3256 struct list_head *elem_ref_to;
3257 struct list_head *tmp_ref_to;
3258
3259 list_for_each_safe(elem_ref_to, tmp_ref_to,
3260 &b_all->ref_to_list) {
3261 struct btrfsic_block_link *const l =
3262 list_entry(elem_ref_to,
3263 struct btrfsic_block_link,
3264 node_ref_to);
3265
3266 if (state->print_mask & BTRFSIC_PRINT_MASK_VERBOSE)
3267 btrfsic_print_rem_link(state, l);
3268
3269 l->ref_cnt--;
3270 if (0 == l->ref_cnt)
3271 btrfsic_block_link_free(l);
3272 }
3273
Stefan Behrens48235a62012-05-23 17:57:49 +02003274 if (b_all->is_iodone || b_all->never_written)
Stefan Behrens5db02762011-11-01 17:04:16 +01003275 btrfsic_block_free(b_all);
3276 else
3277 printk(KERN_INFO "btrfs: attempt to free %c-block"
3278 " @%llu (%s/%llu/%d) on umount which is"
3279 " not yet iodone!\n",
3280 btrfsic_get_block_type(state, b_all),
Geert Uytterhoevenc1c9ff72013-08-20 13:20:07 +02003281 b_all->logical_bytenr, b_all->dev_state->name,
3282 b_all->dev_bytenr, b_all->mirror_num);
Stefan Behrens5db02762011-11-01 17:04:16 +01003283 }
3284
3285 mutex_unlock(&btrfsic_mutex);
3286
3287 kfree(state);
3288}