2 * Copyright (C) 2007 Oracle. All rights reserved.
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.
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.
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.
19 #define _XOPEN_SOURCE 500
25 #include <sys/types.h>
29 #include <uuid/uuid.h>
34 #include "print-tree.h"
35 #include "transaction.h"
39 #include "free-space-cache.h"
41 #include "qgroup-verify.h"
42 #include "rbtree-utils.h"
46 static u64 bytes_used = 0;
47 static u64 total_csum_bytes = 0;
48 static u64 total_btree_bytes = 0;
49 static u64 total_fs_tree_bytes = 0;
50 static u64 total_extent_tree_bytes = 0;
51 static u64 btree_space_waste = 0;
52 static u64 data_bytes_allocated = 0;
53 static u64 data_bytes_referenced = 0;
54 static int found_old_backref = 0;
55 static LIST_HEAD(duplicate_extents);
56 static LIST_HEAD(delete_items);
57 static int repair = 0;
58 static int no_holes = 0;
59 static int init_extent_tree = 0;
60 static int check_data_csum = 0;
62 struct extent_backref {
63 struct list_head list;
64 unsigned int is_data:1;
65 unsigned int found_extent_tree:1;
66 unsigned int full_backref:1;
67 unsigned int found_ref:1;
68 unsigned int broken:1;
72 struct extent_backref node;
87 struct extent_backref node;
94 struct extent_record {
95 struct list_head backrefs;
96 struct list_head dups;
97 struct list_head list;
98 struct cache_extent cache;
99 struct btrfs_disk_key parent_key;
104 u64 extent_item_refs;
106 u64 parent_generation;
110 unsigned int found_rec:1;
111 unsigned int content_checked:1;
112 unsigned int owner_ref_checked:1;
113 unsigned int is_root:1;
114 unsigned int metadata:1;
117 struct inode_backref {
118 struct list_head list;
119 unsigned int found_dir_item:1;
120 unsigned int found_dir_index:1;
121 unsigned int found_inode_ref:1;
122 unsigned int filetype:8;
124 unsigned int ref_type;
131 struct dropping_root_item_record {
132 struct list_head list;
133 struct btrfs_root_item ri;
134 struct btrfs_key found_key;
137 #define REF_ERR_NO_DIR_ITEM (1 << 0)
138 #define REF_ERR_NO_DIR_INDEX (1 << 1)
139 #define REF_ERR_NO_INODE_REF (1 << 2)
140 #define REF_ERR_DUP_DIR_ITEM (1 << 3)
141 #define REF_ERR_DUP_DIR_INDEX (1 << 4)
142 #define REF_ERR_DUP_INODE_REF (1 << 5)
143 #define REF_ERR_INDEX_UNMATCH (1 << 6)
144 #define REF_ERR_FILETYPE_UNMATCH (1 << 7)
145 #define REF_ERR_NAME_TOO_LONG (1 << 8) // 100
146 #define REF_ERR_NO_ROOT_REF (1 << 9)
147 #define REF_ERR_NO_ROOT_BACKREF (1 << 10)
148 #define REF_ERR_DUP_ROOT_REF (1 << 11)
149 #define REF_ERR_DUP_ROOT_BACKREF (1 << 12)
151 struct inode_record {
152 struct list_head backrefs;
153 unsigned int checked:1;
154 unsigned int merging:1;
155 unsigned int found_inode_item:1;
156 unsigned int found_dir_item:1;
157 unsigned int found_file_extent:1;
158 unsigned int found_csum_item:1;
159 unsigned int some_csum_missing:1;
160 unsigned int nodatasum:1;
173 u64 first_extent_gap;
178 #define I_ERR_NO_INODE_ITEM (1 << 0)
179 #define I_ERR_NO_ORPHAN_ITEM (1 << 1)
180 #define I_ERR_DUP_INODE_ITEM (1 << 2)
181 #define I_ERR_DUP_DIR_INDEX (1 << 3)
182 #define I_ERR_ODD_DIR_ITEM (1 << 4)
183 #define I_ERR_ODD_FILE_EXTENT (1 << 5)
184 #define I_ERR_BAD_FILE_EXTENT (1 << 6)
185 #define I_ERR_FILE_EXTENT_OVERLAP (1 << 7)
186 #define I_ERR_FILE_EXTENT_DISCOUNT (1 << 8) // 100
187 #define I_ERR_DIR_ISIZE_WRONG (1 << 9)
188 #define I_ERR_FILE_NBYTES_WRONG (1 << 10) // 400
189 #define I_ERR_ODD_CSUM_ITEM (1 << 11)
190 #define I_ERR_SOME_CSUM_MISSING (1 << 12)
191 #define I_ERR_LINK_COUNT_WRONG (1 << 13)
193 struct root_backref {
194 struct list_head list;
195 unsigned int found_dir_item:1;
196 unsigned int found_dir_index:1;
197 unsigned int found_back_ref:1;
198 unsigned int found_forward_ref:1;
199 unsigned int reachable:1;
209 struct list_head backrefs;
210 struct cache_extent cache;
211 unsigned int found_root_item:1;
217 struct cache_extent cache;
222 struct cache_extent cache;
223 struct cache_tree root_cache;
224 struct cache_tree inode_cache;
225 struct inode_record *current;
234 struct walk_control {
235 struct cache_tree shared;
236 struct shared_node *nodes[BTRFS_MAX_LEVEL];
242 struct btrfs_key key;
244 struct list_head list;
247 static void reset_cached_block_groups(struct btrfs_fs_info *fs_info);
249 static void record_root_in_trans(struct btrfs_trans_handle *trans,
250 struct btrfs_root *root)
252 if (root->last_trans != trans->transid) {
253 root->track_dirty = 1;
254 root->last_trans = trans->transid;
255 root->commit_root = root->node;
256 extent_buffer_get(root->node);
260 static u8 imode_to_type(u32 imode)
263 static unsigned char btrfs_type_by_mode[S_IFMT >> S_SHIFT] = {
264 [S_IFREG >> S_SHIFT] = BTRFS_FT_REG_FILE,
265 [S_IFDIR >> S_SHIFT] = BTRFS_FT_DIR,
266 [S_IFCHR >> S_SHIFT] = BTRFS_FT_CHRDEV,
267 [S_IFBLK >> S_SHIFT] = BTRFS_FT_BLKDEV,
268 [S_IFIFO >> S_SHIFT] = BTRFS_FT_FIFO,
269 [S_IFSOCK >> S_SHIFT] = BTRFS_FT_SOCK,
270 [S_IFLNK >> S_SHIFT] = BTRFS_FT_SYMLINK,
273 return btrfs_type_by_mode[(imode & S_IFMT) >> S_SHIFT];
277 static int device_record_compare(struct rb_node *node1, struct rb_node *node2)
279 struct device_record *rec1;
280 struct device_record *rec2;
282 rec1 = rb_entry(node1, struct device_record, node);
283 rec2 = rb_entry(node2, struct device_record, node);
284 if (rec1->devid > rec2->devid)
286 else if (rec1->devid < rec2->devid)
292 static struct inode_record *clone_inode_rec(struct inode_record *orig_rec)
294 struct inode_record *rec;
295 struct inode_backref *backref;
296 struct inode_backref *orig;
299 rec = malloc(sizeof(*rec));
300 memcpy(rec, orig_rec, sizeof(*rec));
302 INIT_LIST_HEAD(&rec->backrefs);
304 list_for_each_entry(orig, &orig_rec->backrefs, list) {
305 size = sizeof(*orig) + orig->namelen + 1;
306 backref = malloc(size);
307 memcpy(backref, orig, size);
308 list_add_tail(&backref->list, &rec->backrefs);
313 static void print_inode_error(struct btrfs_root *root, struct inode_record *rec)
315 u64 root_objectid = root->root_key.objectid;
316 int errors = rec->errors;
320 /* reloc root errors, we print its corresponding fs root objectid*/
321 if (root_objectid == BTRFS_TREE_RELOC_OBJECTID) {
322 root_objectid = root->root_key.offset;
323 fprintf(stderr, "reloc");
325 fprintf(stderr, "root %llu inode %llu errors %x",
326 (unsigned long long) root_objectid,
327 (unsigned long long) rec->ino, rec->errors);
329 if (errors & I_ERR_NO_INODE_ITEM)
330 fprintf(stderr, ", no inode item");
331 if (errors & I_ERR_NO_ORPHAN_ITEM)
332 fprintf(stderr, ", no orphan item");
333 if (errors & I_ERR_DUP_INODE_ITEM)
334 fprintf(stderr, ", dup inode item");
335 if (errors & I_ERR_DUP_DIR_INDEX)
336 fprintf(stderr, ", dup dir index");
337 if (errors & I_ERR_ODD_DIR_ITEM)
338 fprintf(stderr, ", odd dir item");
339 if (errors & I_ERR_ODD_FILE_EXTENT)
340 fprintf(stderr, ", odd file extent");
341 if (errors & I_ERR_BAD_FILE_EXTENT)
342 fprintf(stderr, ", bad file extent");
343 if (errors & I_ERR_FILE_EXTENT_OVERLAP)
344 fprintf(stderr, ", file extent overlap");
345 if (errors & I_ERR_FILE_EXTENT_DISCOUNT)
346 fprintf(stderr, ", file extent discount");
347 if (errors & I_ERR_DIR_ISIZE_WRONG)
348 fprintf(stderr, ", dir isize wrong");
349 if (errors & I_ERR_FILE_NBYTES_WRONG)
350 fprintf(stderr, ", nbytes wrong");
351 if (errors & I_ERR_ODD_CSUM_ITEM)
352 fprintf(stderr, ", odd csum item");
353 if (errors & I_ERR_SOME_CSUM_MISSING)
354 fprintf(stderr, ", some csum missing");
355 if (errors & I_ERR_LINK_COUNT_WRONG)
356 fprintf(stderr, ", link count wrong");
357 fprintf(stderr, "\n");
360 static void print_ref_error(int errors)
362 if (errors & REF_ERR_NO_DIR_ITEM)
363 fprintf(stderr, ", no dir item");
364 if (errors & REF_ERR_NO_DIR_INDEX)
365 fprintf(stderr, ", no dir index");
366 if (errors & REF_ERR_NO_INODE_REF)
367 fprintf(stderr, ", no inode ref");
368 if (errors & REF_ERR_DUP_DIR_ITEM)
369 fprintf(stderr, ", dup dir item");
370 if (errors & REF_ERR_DUP_DIR_INDEX)
371 fprintf(stderr, ", dup dir index");
372 if (errors & REF_ERR_DUP_INODE_REF)
373 fprintf(stderr, ", dup inode ref");
374 if (errors & REF_ERR_INDEX_UNMATCH)
375 fprintf(stderr, ", index unmatch");
376 if (errors & REF_ERR_FILETYPE_UNMATCH)
377 fprintf(stderr, ", filetype unmatch");
378 if (errors & REF_ERR_NAME_TOO_LONG)
379 fprintf(stderr, ", name too long");
380 if (errors & REF_ERR_NO_ROOT_REF)
381 fprintf(stderr, ", no root ref");
382 if (errors & REF_ERR_NO_ROOT_BACKREF)
383 fprintf(stderr, ", no root backref");
384 if (errors & REF_ERR_DUP_ROOT_REF)
385 fprintf(stderr, ", dup root ref");
386 if (errors & REF_ERR_DUP_ROOT_BACKREF)
387 fprintf(stderr, ", dup root backref");
388 fprintf(stderr, "\n");
391 static struct inode_record *get_inode_rec(struct cache_tree *inode_cache,
394 struct ptr_node *node;
395 struct cache_extent *cache;
396 struct inode_record *rec = NULL;
399 cache = lookup_cache_extent(inode_cache, ino, 1);
401 node = container_of(cache, struct ptr_node, cache);
403 if (mod && rec->refs > 1) {
404 node->data = clone_inode_rec(rec);
409 rec = calloc(1, sizeof(*rec));
411 rec->extent_start = (u64)-1;
412 rec->first_extent_gap = (u64)-1;
414 INIT_LIST_HEAD(&rec->backrefs);
416 node = malloc(sizeof(*node));
417 node->cache.start = ino;
418 node->cache.size = 1;
421 if (ino == BTRFS_FREE_INO_OBJECTID)
424 ret = insert_cache_extent(inode_cache, &node->cache);
430 static void free_inode_rec(struct inode_record *rec)
432 struct inode_backref *backref;
437 while (!list_empty(&rec->backrefs)) {
438 backref = list_entry(rec->backrefs.next,
439 struct inode_backref, list);
440 list_del(&backref->list);
446 static int can_free_inode_rec(struct inode_record *rec)
448 if (!rec->errors && rec->checked && rec->found_inode_item &&
449 rec->nlink == rec->found_link && list_empty(&rec->backrefs))
454 static void maybe_free_inode_rec(struct cache_tree *inode_cache,
455 struct inode_record *rec)
457 struct cache_extent *cache;
458 struct inode_backref *tmp, *backref;
459 struct ptr_node *node;
460 unsigned char filetype;
462 if (!rec->found_inode_item)
465 filetype = imode_to_type(rec->imode);
466 list_for_each_entry_safe(backref, tmp, &rec->backrefs, list) {
467 if (backref->found_dir_item && backref->found_dir_index) {
468 if (backref->filetype != filetype)
469 backref->errors |= REF_ERR_FILETYPE_UNMATCH;
470 if (!backref->errors && backref->found_inode_ref) {
471 list_del(&backref->list);
477 if (!rec->checked || rec->merging)
480 if (S_ISDIR(rec->imode)) {
481 if (rec->found_size != rec->isize)
482 rec->errors |= I_ERR_DIR_ISIZE_WRONG;
483 if (rec->found_file_extent)
484 rec->errors |= I_ERR_ODD_FILE_EXTENT;
485 } else if (S_ISREG(rec->imode) || S_ISLNK(rec->imode)) {
486 if (rec->found_dir_item)
487 rec->errors |= I_ERR_ODD_DIR_ITEM;
488 if (rec->found_size != rec->nbytes)
489 rec->errors |= I_ERR_FILE_NBYTES_WRONG;
490 if (rec->extent_start == (u64)-1 || rec->extent_start > 0)
491 rec->first_extent_gap = 0;
492 if (rec->nlink > 0 && !no_holes &&
493 (rec->extent_end < rec->isize ||
494 rec->first_extent_gap < rec->isize))
495 rec->errors |= I_ERR_FILE_EXTENT_DISCOUNT;
498 if (S_ISREG(rec->imode) || S_ISLNK(rec->imode)) {
499 if (rec->found_csum_item && rec->nodatasum)
500 rec->errors |= I_ERR_ODD_CSUM_ITEM;
501 if (rec->some_csum_missing && !rec->nodatasum)
502 rec->errors |= I_ERR_SOME_CSUM_MISSING;
505 BUG_ON(rec->refs != 1);
506 if (can_free_inode_rec(rec)) {
507 cache = lookup_cache_extent(inode_cache, rec->ino, 1);
508 node = container_of(cache, struct ptr_node, cache);
509 BUG_ON(node->data != rec);
510 remove_cache_extent(inode_cache, &node->cache);
516 static int check_orphan_item(struct btrfs_root *root, u64 ino)
518 struct btrfs_path path;
519 struct btrfs_key key;
522 key.objectid = BTRFS_ORPHAN_OBJECTID;
523 key.type = BTRFS_ORPHAN_ITEM_KEY;
526 btrfs_init_path(&path);
527 ret = btrfs_search_slot(NULL, root, &key, &path, 0, 0);
528 btrfs_release_path(&path);
534 static int process_inode_item(struct extent_buffer *eb,
535 int slot, struct btrfs_key *key,
536 struct shared_node *active_node)
538 struct inode_record *rec;
539 struct btrfs_inode_item *item;
541 rec = active_node->current;
542 BUG_ON(rec->ino != key->objectid || rec->refs > 1);
543 if (rec->found_inode_item) {
544 rec->errors |= I_ERR_DUP_INODE_ITEM;
547 item = btrfs_item_ptr(eb, slot, struct btrfs_inode_item);
548 rec->nlink = btrfs_inode_nlink(eb, item);
549 rec->isize = btrfs_inode_size(eb, item);
550 rec->nbytes = btrfs_inode_nbytes(eb, item);
551 rec->imode = btrfs_inode_mode(eb, item);
552 if (btrfs_inode_flags(eb, item) & BTRFS_INODE_NODATASUM)
554 rec->found_inode_item = 1;
556 rec->errors |= I_ERR_NO_ORPHAN_ITEM;
557 maybe_free_inode_rec(&active_node->inode_cache, rec);
561 static struct inode_backref *get_inode_backref(struct inode_record *rec,
563 int namelen, u64 dir)
565 struct inode_backref *backref;
567 list_for_each_entry(backref, &rec->backrefs, list) {
568 if (rec->ino == BTRFS_MULTIPLE_OBJECTIDS)
570 if (backref->dir != dir || backref->namelen != namelen)
572 if (memcmp(name, backref->name, namelen))
577 backref = malloc(sizeof(*backref) + namelen + 1);
578 memset(backref, 0, sizeof(*backref));
580 backref->namelen = namelen;
581 memcpy(backref->name, name, namelen);
582 backref->name[namelen] = '\0';
583 list_add_tail(&backref->list, &rec->backrefs);
587 static int add_inode_backref(struct cache_tree *inode_cache,
588 u64 ino, u64 dir, u64 index,
589 const char *name, int namelen,
590 int filetype, int itemtype, int errors)
592 struct inode_record *rec;
593 struct inode_backref *backref;
595 rec = get_inode_rec(inode_cache, ino, 1);
596 backref = get_inode_backref(rec, name, namelen, dir);
598 backref->errors |= errors;
599 if (itemtype == BTRFS_DIR_INDEX_KEY) {
600 if (backref->found_dir_index)
601 backref->errors |= REF_ERR_DUP_DIR_INDEX;
602 if (backref->found_inode_ref && backref->index != index)
603 backref->errors |= REF_ERR_INDEX_UNMATCH;
604 if (backref->found_dir_item && backref->filetype != filetype)
605 backref->errors |= REF_ERR_FILETYPE_UNMATCH;
607 backref->index = index;
608 backref->filetype = filetype;
609 backref->found_dir_index = 1;
610 } else if (itemtype == BTRFS_DIR_ITEM_KEY) {
612 if (backref->found_dir_item)
613 backref->errors |= REF_ERR_DUP_DIR_ITEM;
614 if (backref->found_dir_index && backref->filetype != filetype)
615 backref->errors |= REF_ERR_FILETYPE_UNMATCH;
617 backref->filetype = filetype;
618 backref->found_dir_item = 1;
619 } else if ((itemtype == BTRFS_INODE_REF_KEY) ||
620 (itemtype == BTRFS_INODE_EXTREF_KEY)) {
621 if (backref->found_inode_ref)
622 backref->errors |= REF_ERR_DUP_INODE_REF;
623 if (backref->found_dir_index && backref->index != index)
624 backref->errors |= REF_ERR_INDEX_UNMATCH;
626 backref->index = index;
628 backref->ref_type = itemtype;
629 backref->found_inode_ref = 1;
634 maybe_free_inode_rec(inode_cache, rec);
638 static int merge_inode_recs(struct inode_record *src, struct inode_record *dst,
639 struct cache_tree *dst_cache)
641 struct inode_backref *backref;
645 list_for_each_entry(backref, &src->backrefs, list) {
646 if (backref->found_dir_index) {
647 add_inode_backref(dst_cache, dst->ino, backref->dir,
648 backref->index, backref->name,
649 backref->namelen, backref->filetype,
650 BTRFS_DIR_INDEX_KEY, backref->errors);
652 if (backref->found_dir_item) {
654 add_inode_backref(dst_cache, dst->ino,
655 backref->dir, 0, backref->name,
656 backref->namelen, backref->filetype,
657 BTRFS_DIR_ITEM_KEY, backref->errors);
659 if (backref->found_inode_ref) {
660 add_inode_backref(dst_cache, dst->ino,
661 backref->dir, backref->index,
662 backref->name, backref->namelen, 0,
663 backref->ref_type, backref->errors);
667 if (src->found_dir_item)
668 dst->found_dir_item = 1;
669 if (src->found_file_extent)
670 dst->found_file_extent = 1;
671 if (src->found_csum_item)
672 dst->found_csum_item = 1;
673 if (src->some_csum_missing)
674 dst->some_csum_missing = 1;
675 if (dst->first_extent_gap > src->first_extent_gap)
676 dst->first_extent_gap = src->first_extent_gap;
678 BUG_ON(src->found_link < dir_count);
679 dst->found_link += src->found_link - dir_count;
680 dst->found_size += src->found_size;
681 if (src->extent_start != (u64)-1) {
682 if (dst->extent_start == (u64)-1) {
683 dst->extent_start = src->extent_start;
684 dst->extent_end = src->extent_end;
686 if (dst->extent_end > src->extent_start)
687 dst->errors |= I_ERR_FILE_EXTENT_OVERLAP;
688 else if (dst->extent_end < src->extent_start &&
689 dst->extent_end < dst->first_extent_gap)
690 dst->first_extent_gap = dst->extent_end;
691 if (dst->extent_end < src->extent_end)
692 dst->extent_end = src->extent_end;
696 dst->errors |= src->errors;
697 if (src->found_inode_item) {
698 if (!dst->found_inode_item) {
699 dst->nlink = src->nlink;
700 dst->isize = src->isize;
701 dst->nbytes = src->nbytes;
702 dst->imode = src->imode;
703 dst->nodatasum = src->nodatasum;
704 dst->found_inode_item = 1;
706 dst->errors |= I_ERR_DUP_INODE_ITEM;
714 static int splice_shared_node(struct shared_node *src_node,
715 struct shared_node *dst_node)
717 struct cache_extent *cache;
718 struct ptr_node *node, *ins;
719 struct cache_tree *src, *dst;
720 struct inode_record *rec, *conflict;
725 if (--src_node->refs == 0)
727 if (src_node->current)
728 current_ino = src_node->current->ino;
730 src = &src_node->root_cache;
731 dst = &dst_node->root_cache;
733 cache = search_cache_extent(src, 0);
735 node = container_of(cache, struct ptr_node, cache);
737 cache = next_cache_extent(cache);
740 remove_cache_extent(src, &node->cache);
743 ins = malloc(sizeof(*ins));
744 ins->cache.start = node->cache.start;
745 ins->cache.size = node->cache.size;
749 ret = insert_cache_extent(dst, &ins->cache);
750 if (ret == -EEXIST) {
751 conflict = get_inode_rec(dst, rec->ino, 1);
752 merge_inode_recs(rec, conflict, dst);
754 conflict->checked = 1;
755 if (dst_node->current == conflict)
756 dst_node->current = NULL;
758 maybe_free_inode_rec(dst, conflict);
766 if (src == &src_node->root_cache) {
767 src = &src_node->inode_cache;
768 dst = &dst_node->inode_cache;
772 if (current_ino > 0 && (!dst_node->current ||
773 current_ino > dst_node->current->ino)) {
774 if (dst_node->current) {
775 dst_node->current->checked = 1;
776 maybe_free_inode_rec(dst, dst_node->current);
778 dst_node->current = get_inode_rec(dst, current_ino, 1);
783 static void free_inode_ptr(struct cache_extent *cache)
785 struct ptr_node *node;
786 struct inode_record *rec;
788 node = container_of(cache, struct ptr_node, cache);
794 FREE_EXTENT_CACHE_BASED_TREE(inode_recs, free_inode_ptr);
796 static struct shared_node *find_shared_node(struct cache_tree *shared,
799 struct cache_extent *cache;
800 struct shared_node *node;
802 cache = lookup_cache_extent(shared, bytenr, 1);
804 node = container_of(cache, struct shared_node, cache);
810 static int add_shared_node(struct cache_tree *shared, u64 bytenr, u32 refs)
813 struct shared_node *node;
815 node = calloc(1, sizeof(*node));
816 node->cache.start = bytenr;
817 node->cache.size = 1;
818 cache_tree_init(&node->root_cache);
819 cache_tree_init(&node->inode_cache);
822 ret = insert_cache_extent(shared, &node->cache);
827 static int enter_shared_node(struct btrfs_root *root, u64 bytenr, u32 refs,
828 struct walk_control *wc, int level)
830 struct shared_node *node;
831 struct shared_node *dest;
833 if (level == wc->active_node)
836 BUG_ON(wc->active_node <= level);
837 node = find_shared_node(&wc->shared, bytenr);
839 add_shared_node(&wc->shared, bytenr, refs);
840 node = find_shared_node(&wc->shared, bytenr);
841 wc->nodes[level] = node;
842 wc->active_node = level;
846 if (wc->root_level == wc->active_node &&
847 btrfs_root_refs(&root->root_item) == 0) {
848 if (--node->refs == 0) {
849 free_inode_recs_tree(&node->root_cache);
850 free_inode_recs_tree(&node->inode_cache);
851 remove_cache_extent(&wc->shared, &node->cache);
857 dest = wc->nodes[wc->active_node];
858 splice_shared_node(node, dest);
859 if (node->refs == 0) {
860 remove_cache_extent(&wc->shared, &node->cache);
866 static int leave_shared_node(struct btrfs_root *root,
867 struct walk_control *wc, int level)
869 struct shared_node *node;
870 struct shared_node *dest;
873 if (level == wc->root_level)
876 for (i = level + 1; i < BTRFS_MAX_LEVEL; i++) {
880 BUG_ON(i >= BTRFS_MAX_LEVEL);
882 node = wc->nodes[wc->active_node];
883 wc->nodes[wc->active_node] = NULL;
886 dest = wc->nodes[wc->active_node];
887 if (wc->active_node < wc->root_level ||
888 btrfs_root_refs(&root->root_item) > 0) {
889 BUG_ON(node->refs <= 1);
890 splice_shared_node(node, dest);
892 BUG_ON(node->refs < 2);
901 * 1 - if the root with id child_root_id is a child of root parent_root_id
902 * 0 - if the root child_root_id isn't a child of the root parent_root_id but
903 * has other root(s) as parent(s)
904 * 2 - if the root child_root_id doesn't have any parent roots
906 static int is_child_root(struct btrfs_root *root, u64 parent_root_id,
909 struct btrfs_path path;
910 struct btrfs_key key;
911 struct extent_buffer *leaf;
915 btrfs_init_path(&path);
917 key.objectid = parent_root_id;
918 key.type = BTRFS_ROOT_REF_KEY;
919 key.offset = child_root_id;
920 ret = btrfs_search_slot(NULL, root->fs_info->tree_root, &key, &path,
924 btrfs_release_path(&path);
928 key.objectid = child_root_id;
929 key.type = BTRFS_ROOT_BACKREF_KEY;
931 ret = btrfs_search_slot(NULL, root->fs_info->tree_root, &key, &path,
937 leaf = path.nodes[0];
938 if (path.slots[0] >= btrfs_header_nritems(leaf)) {
939 ret = btrfs_next_leaf(root->fs_info->tree_root, &path);
942 leaf = path.nodes[0];
945 btrfs_item_key_to_cpu(leaf, &key, path.slots[0]);
946 if (key.objectid != child_root_id ||
947 key.type != BTRFS_ROOT_BACKREF_KEY)
952 if (key.offset == parent_root_id) {
953 btrfs_release_path(&path);
960 btrfs_release_path(&path);
963 return has_parent ? 0 : 2;
966 static int process_dir_item(struct btrfs_root *root,
967 struct extent_buffer *eb,
968 int slot, struct btrfs_key *key,
969 struct shared_node *active_node)
979 struct btrfs_dir_item *di;
980 struct inode_record *rec;
981 struct cache_tree *root_cache;
982 struct cache_tree *inode_cache;
983 struct btrfs_key location;
984 char namebuf[BTRFS_NAME_LEN];
986 root_cache = &active_node->root_cache;
987 inode_cache = &active_node->inode_cache;
988 rec = active_node->current;
989 rec->found_dir_item = 1;
991 di = btrfs_item_ptr(eb, slot, struct btrfs_dir_item);
992 total = btrfs_item_size_nr(eb, slot);
993 while (cur < total) {
995 btrfs_dir_item_key_to_cpu(eb, di, &location);
996 name_len = btrfs_dir_name_len(eb, di);
997 data_len = btrfs_dir_data_len(eb, di);
998 filetype = btrfs_dir_type(eb, di);
1000 rec->found_size += name_len;
1001 if (name_len <= BTRFS_NAME_LEN) {
1005 len = BTRFS_NAME_LEN;
1006 error = REF_ERR_NAME_TOO_LONG;
1008 read_extent_buffer(eb, namebuf, (unsigned long)(di + 1), len);
1010 if (location.type == BTRFS_INODE_ITEM_KEY) {
1011 add_inode_backref(inode_cache, location.objectid,
1012 key->objectid, key->offset, namebuf,
1013 len, filetype, key->type, error);
1014 } else if (location.type == BTRFS_ROOT_ITEM_KEY) {
1015 add_inode_backref(root_cache, location.objectid,
1016 key->objectid, key->offset,
1017 namebuf, len, filetype,
1020 fprintf(stderr, "invalid location in dir item %u\n",
1022 add_inode_backref(inode_cache, BTRFS_MULTIPLE_OBJECTIDS,
1023 key->objectid, key->offset, namebuf,
1024 len, filetype, key->type, error);
1027 len = sizeof(*di) + name_len + data_len;
1028 di = (struct btrfs_dir_item *)((char *)di + len);
1031 if (key->type == BTRFS_DIR_INDEX_KEY && nritems > 1)
1032 rec->errors |= I_ERR_DUP_DIR_INDEX;
1037 static int process_inode_ref(struct extent_buffer *eb,
1038 int slot, struct btrfs_key *key,
1039 struct shared_node *active_node)
1047 struct cache_tree *inode_cache;
1048 struct btrfs_inode_ref *ref;
1049 char namebuf[BTRFS_NAME_LEN];
1051 inode_cache = &active_node->inode_cache;
1053 ref = btrfs_item_ptr(eb, slot, struct btrfs_inode_ref);
1054 total = btrfs_item_size_nr(eb, slot);
1055 while (cur < total) {
1056 name_len = btrfs_inode_ref_name_len(eb, ref);
1057 index = btrfs_inode_ref_index(eb, ref);
1058 if (name_len <= BTRFS_NAME_LEN) {
1062 len = BTRFS_NAME_LEN;
1063 error = REF_ERR_NAME_TOO_LONG;
1065 read_extent_buffer(eb, namebuf, (unsigned long)(ref + 1), len);
1066 add_inode_backref(inode_cache, key->objectid, key->offset,
1067 index, namebuf, len, 0, key->type, error);
1069 len = sizeof(*ref) + name_len;
1070 ref = (struct btrfs_inode_ref *)((char *)ref + len);
1076 static int process_inode_extref(struct extent_buffer *eb,
1077 int slot, struct btrfs_key *key,
1078 struct shared_node *active_node)
1087 struct cache_tree *inode_cache;
1088 struct btrfs_inode_extref *extref;
1089 char namebuf[BTRFS_NAME_LEN];
1091 inode_cache = &active_node->inode_cache;
1093 extref = btrfs_item_ptr(eb, slot, struct btrfs_inode_extref);
1094 total = btrfs_item_size_nr(eb, slot);
1095 while (cur < total) {
1096 name_len = btrfs_inode_extref_name_len(eb, extref);
1097 index = btrfs_inode_extref_index(eb, extref);
1098 parent = btrfs_inode_extref_parent(eb, extref);
1099 if (name_len <= BTRFS_NAME_LEN) {
1103 len = BTRFS_NAME_LEN;
1104 error = REF_ERR_NAME_TOO_LONG;
1106 read_extent_buffer(eb, namebuf,
1107 (unsigned long)(extref + 1), len);
1108 add_inode_backref(inode_cache, key->objectid, parent,
1109 index, namebuf, len, 0, key->type, error);
1111 len = sizeof(*extref) + name_len;
1112 extref = (struct btrfs_inode_extref *)((char *)extref + len);
1119 static int count_csum_range(struct btrfs_root *root, u64 start,
1120 u64 len, u64 *found)
1122 struct btrfs_key key;
1123 struct btrfs_path path;
1124 struct extent_buffer *leaf;
1129 u16 csum_size = btrfs_super_csum_size(root->fs_info->super_copy);
1131 btrfs_init_path(&path);
1133 key.objectid = BTRFS_EXTENT_CSUM_OBJECTID;
1135 key.type = BTRFS_EXTENT_CSUM_KEY;
1137 ret = btrfs_search_slot(NULL, root->fs_info->csum_root,
1141 if (ret > 0 && path.slots[0] > 0) {
1142 leaf = path.nodes[0];
1143 btrfs_item_key_to_cpu(leaf, &key, path.slots[0] - 1);
1144 if (key.objectid == BTRFS_EXTENT_CSUM_OBJECTID &&
1145 key.type == BTRFS_EXTENT_CSUM_KEY)
1150 leaf = path.nodes[0];
1151 if (path.slots[0] >= btrfs_header_nritems(leaf)) {
1152 ret = btrfs_next_leaf(root->fs_info->csum_root, &path);
1157 leaf = path.nodes[0];
1160 btrfs_item_key_to_cpu(leaf, &key, path.slots[0]);
1161 if (key.objectid != BTRFS_EXTENT_CSUM_OBJECTID ||
1162 key.type != BTRFS_EXTENT_CSUM_KEY)
1165 btrfs_item_key_to_cpu(leaf, &key, path.slots[0]);
1166 if (key.offset >= start + len)
1169 if (key.offset > start)
1172 size = btrfs_item_size_nr(leaf, path.slots[0]);
1173 csum_end = key.offset + (size / csum_size) * root->sectorsize;
1174 if (csum_end > start) {
1175 size = min(csum_end - start, len);
1186 btrfs_release_path(&path);
1190 static int process_file_extent(struct btrfs_root *root,
1191 struct extent_buffer *eb,
1192 int slot, struct btrfs_key *key,
1193 struct shared_node *active_node)
1195 struct inode_record *rec;
1196 struct btrfs_file_extent_item *fi;
1198 u64 disk_bytenr = 0;
1199 u64 extent_offset = 0;
1200 u64 mask = root->sectorsize - 1;
1204 rec = active_node->current;
1205 BUG_ON(rec->ino != key->objectid || rec->refs > 1);
1206 rec->found_file_extent = 1;
1208 if (rec->extent_start == (u64)-1) {
1209 rec->extent_start = key->offset;
1210 rec->extent_end = key->offset;
1213 if (rec->extent_end > key->offset)
1214 rec->errors |= I_ERR_FILE_EXTENT_OVERLAP;
1215 else if (rec->extent_end < key->offset &&
1216 rec->extent_end < rec->first_extent_gap)
1217 rec->first_extent_gap = rec->extent_end;
1219 fi = btrfs_item_ptr(eb, slot, struct btrfs_file_extent_item);
1220 extent_type = btrfs_file_extent_type(eb, fi);
1222 if (extent_type == BTRFS_FILE_EXTENT_INLINE) {
1223 num_bytes = btrfs_file_extent_inline_len(eb, slot, fi);
1225 rec->errors |= I_ERR_BAD_FILE_EXTENT;
1226 rec->found_size += num_bytes;
1227 num_bytes = (num_bytes + mask) & ~mask;
1228 } else if (extent_type == BTRFS_FILE_EXTENT_REG ||
1229 extent_type == BTRFS_FILE_EXTENT_PREALLOC) {
1230 num_bytes = btrfs_file_extent_num_bytes(eb, fi);
1231 disk_bytenr = btrfs_file_extent_disk_bytenr(eb, fi);
1232 extent_offset = btrfs_file_extent_offset(eb, fi);
1233 if (num_bytes == 0 || (num_bytes & mask))
1234 rec->errors |= I_ERR_BAD_FILE_EXTENT;
1235 if (num_bytes + extent_offset >
1236 btrfs_file_extent_ram_bytes(eb, fi))
1237 rec->errors |= I_ERR_BAD_FILE_EXTENT;
1238 if (extent_type == BTRFS_FILE_EXTENT_PREALLOC &&
1239 (btrfs_file_extent_compression(eb, fi) ||
1240 btrfs_file_extent_encryption(eb, fi) ||
1241 btrfs_file_extent_other_encoding(eb, fi)))
1242 rec->errors |= I_ERR_BAD_FILE_EXTENT;
1243 if (disk_bytenr > 0)
1244 rec->found_size += num_bytes;
1246 rec->errors |= I_ERR_BAD_FILE_EXTENT;
1248 rec->extent_end = key->offset + num_bytes;
1250 if (disk_bytenr > 0) {
1252 if (btrfs_file_extent_compression(eb, fi))
1253 num_bytes = btrfs_file_extent_disk_num_bytes(eb, fi);
1255 disk_bytenr += extent_offset;
1257 ret = count_csum_range(root, disk_bytenr, num_bytes, &found);
1260 if (extent_type == BTRFS_FILE_EXTENT_REG) {
1262 rec->found_csum_item = 1;
1263 if (found < num_bytes)
1264 rec->some_csum_missing = 1;
1265 } else if (extent_type == BTRFS_FILE_EXTENT_PREALLOC) {
1267 rec->errors |= I_ERR_ODD_CSUM_ITEM;
1273 static int process_one_leaf(struct btrfs_root *root, struct extent_buffer *eb,
1274 struct walk_control *wc)
1276 struct btrfs_key key;
1280 struct cache_tree *inode_cache;
1281 struct shared_node *active_node;
1283 if (wc->root_level == wc->active_node &&
1284 btrfs_root_refs(&root->root_item) == 0)
1287 active_node = wc->nodes[wc->active_node];
1288 inode_cache = &active_node->inode_cache;
1289 nritems = btrfs_header_nritems(eb);
1290 for (i = 0; i < nritems; i++) {
1291 btrfs_item_key_to_cpu(eb, &key, i);
1293 if (key.objectid == BTRFS_FREE_SPACE_OBJECTID)
1295 if (key.type == BTRFS_ORPHAN_ITEM_KEY)
1298 if (active_node->current == NULL ||
1299 active_node->current->ino < key.objectid) {
1300 if (active_node->current) {
1301 active_node->current->checked = 1;
1302 maybe_free_inode_rec(inode_cache,
1303 active_node->current);
1305 active_node->current = get_inode_rec(inode_cache,
1309 case BTRFS_DIR_ITEM_KEY:
1310 case BTRFS_DIR_INDEX_KEY:
1311 ret = process_dir_item(root, eb, i, &key, active_node);
1313 case BTRFS_INODE_REF_KEY:
1314 ret = process_inode_ref(eb, i, &key, active_node);
1316 case BTRFS_INODE_EXTREF_KEY:
1317 ret = process_inode_extref(eb, i, &key, active_node);
1319 case BTRFS_INODE_ITEM_KEY:
1320 ret = process_inode_item(eb, i, &key, active_node);
1322 case BTRFS_EXTENT_DATA_KEY:
1323 ret = process_file_extent(root, eb, i, &key,
1333 static void reada_walk_down(struct btrfs_root *root,
1334 struct extent_buffer *node, int slot)
1343 level = btrfs_header_level(node);
1347 nritems = btrfs_header_nritems(node);
1348 blocksize = btrfs_level_size(root, level - 1);
1349 for (i = slot; i < nritems; i++) {
1350 bytenr = btrfs_node_blockptr(node, i);
1351 ptr_gen = btrfs_node_ptr_generation(node, i);
1352 readahead_tree_block(root, bytenr, blocksize, ptr_gen);
1357 * Check the child node/leaf by the following condition:
1358 * 1. the first item key of the node/leaf should be the same with the one
1360 * 2. block in parent node should match the child node/leaf.
1361 * 3. generation of parent node and child's header should be consistent.
1363 * Or the child node/leaf pointed by the key in parent is not valid.
1365 * We hope to check leaf owner too, but since subvol may share leaves,
1366 * which makes leaf owner check not so strong, key check should be
1367 * sufficient enough for that case.
1369 static int check_child_node(struct btrfs_root *root,
1370 struct extent_buffer *parent, int slot,
1371 struct extent_buffer *child)
1373 struct btrfs_key parent_key;
1374 struct btrfs_key child_key;
1377 btrfs_node_key_to_cpu(parent, &parent_key, slot);
1378 if (btrfs_header_level(child) == 0)
1379 btrfs_item_key_to_cpu(child, &child_key, 0);
1381 btrfs_node_key_to_cpu(child, &child_key, 0);
1383 if (memcmp(&parent_key, &child_key, sizeof(parent_key))) {
1386 "Wrong key of child node/leaf, wanted: (%llu, %u, %llu), have: (%llu, %u, %llu)\n",
1387 parent_key.objectid, parent_key.type, parent_key.offset,
1388 child_key.objectid, child_key.type, child_key.offset);
1390 if (btrfs_header_bytenr(child) != btrfs_node_blockptr(parent, slot)) {
1392 fprintf(stderr, "Wrong block of child node/leaf, wanted: %llu, have: %llu\n",
1393 btrfs_node_blockptr(parent, slot),
1394 btrfs_header_bytenr(child));
1396 if (btrfs_node_ptr_generation(parent, slot) !=
1397 btrfs_header_generation(child)) {
1399 fprintf(stderr, "Wrong generation of child node/leaf, wanted: %llu, have: %llu\n",
1400 btrfs_header_generation(child),
1401 btrfs_node_ptr_generation(parent, slot));
1406 static int walk_down_tree(struct btrfs_root *root, struct btrfs_path *path,
1407 struct walk_control *wc, int *level)
1409 enum btrfs_tree_block_status status;
1412 struct extent_buffer *next;
1413 struct extent_buffer *cur;
1418 WARN_ON(*level < 0);
1419 WARN_ON(*level >= BTRFS_MAX_LEVEL);
1420 ret = btrfs_lookup_extent_info(NULL, root,
1421 path->nodes[*level]->start,
1422 *level, 1, &refs, NULL);
1429 ret = enter_shared_node(root, path->nodes[*level]->start,
1437 while (*level >= 0) {
1438 WARN_ON(*level < 0);
1439 WARN_ON(*level >= BTRFS_MAX_LEVEL);
1440 cur = path->nodes[*level];
1442 if (btrfs_header_level(cur) != *level)
1445 if (path->slots[*level] >= btrfs_header_nritems(cur))
1448 ret = process_one_leaf(root, cur, wc);
1453 bytenr = btrfs_node_blockptr(cur, path->slots[*level]);
1454 ptr_gen = btrfs_node_ptr_generation(cur, path->slots[*level]);
1455 blocksize = btrfs_level_size(root, *level - 1);
1456 ret = btrfs_lookup_extent_info(NULL, root, bytenr, *level - 1,
1462 ret = enter_shared_node(root, bytenr, refs,
1465 path->slots[*level]++;
1470 next = btrfs_find_tree_block(root, bytenr, blocksize);
1471 if (!next || !btrfs_buffer_uptodate(next, ptr_gen)) {
1472 free_extent_buffer(next);
1473 reada_walk_down(root, cur, path->slots[*level]);
1474 next = read_tree_block(root, bytenr, blocksize,
1482 ret = check_child_node(root, cur, path->slots[*level], next);
1488 if (btrfs_is_leaf(next))
1489 status = btrfs_check_leaf(root, NULL, next);
1491 status = btrfs_check_node(root, NULL, next);
1492 if (status != BTRFS_TREE_BLOCK_CLEAN) {
1493 free_extent_buffer(next);
1498 *level = *level - 1;
1499 free_extent_buffer(path->nodes[*level]);
1500 path->nodes[*level] = next;
1501 path->slots[*level] = 0;
1504 path->slots[*level] = btrfs_header_nritems(path->nodes[*level]);
1508 static int walk_up_tree(struct btrfs_root *root, struct btrfs_path *path,
1509 struct walk_control *wc, int *level)
1512 struct extent_buffer *leaf;
1514 for (i = *level; i < BTRFS_MAX_LEVEL - 1 && path->nodes[i]; i++) {
1515 leaf = path->nodes[i];
1516 if (path->slots[i] + 1 < btrfs_header_nritems(leaf)) {
1521 free_extent_buffer(path->nodes[*level]);
1522 path->nodes[*level] = NULL;
1523 BUG_ON(*level > wc->active_node);
1524 if (*level == wc->active_node)
1525 leave_shared_node(root, wc, *level);
1532 static int check_root_dir(struct inode_record *rec)
1534 struct inode_backref *backref;
1537 if (!rec->found_inode_item || rec->errors)
1539 if (rec->nlink != 1 || rec->found_link != 0)
1541 if (list_empty(&rec->backrefs))
1543 backref = list_entry(rec->backrefs.next, struct inode_backref, list);
1544 if (!backref->found_inode_ref)
1546 if (backref->index != 0 || backref->namelen != 2 ||
1547 memcmp(backref->name, "..", 2))
1549 if (backref->found_dir_index || backref->found_dir_item)
1556 static int repair_inode_isize(struct btrfs_trans_handle *trans,
1557 struct btrfs_root *root, struct btrfs_path *path,
1558 struct inode_record *rec)
1560 struct btrfs_inode_item *ei;
1561 struct btrfs_key key;
1564 key.objectid = rec->ino;
1565 key.type = BTRFS_INODE_ITEM_KEY;
1566 key.offset = (u64)-1;
1568 ret = btrfs_search_slot(trans, root, &key, path, 0, 1);
1572 if (!path->slots[0]) {
1579 btrfs_item_key_to_cpu(path->nodes[0], &key, path->slots[0]);
1580 if (key.objectid != rec->ino) {
1585 ei = btrfs_item_ptr(path->nodes[0], path->slots[0],
1586 struct btrfs_inode_item);
1587 btrfs_set_inode_size(path->nodes[0], ei, rec->found_size);
1588 btrfs_mark_buffer_dirty(path->nodes[0]);
1589 rec->errors &= ~I_ERR_DIR_ISIZE_WRONG;
1590 printf("reset isize for dir %Lu root %Lu\n", rec->ino,
1591 root->root_key.objectid);
1593 btrfs_release_path(path);
1597 static int repair_inode_orphan_item(struct btrfs_trans_handle *trans,
1598 struct btrfs_root *root,
1599 struct btrfs_path *path,
1600 struct inode_record *rec)
1602 struct btrfs_key key;
1605 key.objectid = BTRFS_ORPHAN_OBJECTID;
1606 key.type = BTRFS_ORPHAN_ITEM_KEY;
1607 key.offset = rec->ino;
1609 ret = btrfs_insert_empty_item(trans, root, path, &key, 0);
1610 btrfs_release_path(path);
1612 rec->errors &= ~I_ERR_NO_ORPHAN_ITEM;
1616 static int add_missing_dir_index(struct btrfs_root *root,
1617 struct cache_tree *inode_cache,
1618 struct inode_record *rec,
1619 struct inode_backref *backref)
1621 struct btrfs_path *path;
1622 struct btrfs_trans_handle *trans;
1623 struct btrfs_dir_item *dir_item;
1624 struct extent_buffer *leaf;
1625 struct btrfs_key key;
1626 struct btrfs_disk_key disk_key;
1627 struct inode_record *dir_rec;
1628 unsigned long name_ptr;
1629 u32 data_size = sizeof(*dir_item) + backref->namelen;
1632 path = btrfs_alloc_path();
1636 trans = btrfs_start_transaction(root, 1);
1637 if (IS_ERR(trans)) {
1638 btrfs_free_path(path);
1639 return PTR_ERR(trans);
1642 fprintf(stderr, "repairing missing dir index item for inode %llu\n",
1643 (unsigned long long)rec->ino);
1644 key.objectid = backref->dir;
1645 key.type = BTRFS_DIR_INDEX_KEY;
1646 key.offset = backref->index;
1648 ret = btrfs_insert_empty_item(trans, root, path, &key, data_size);
1651 leaf = path->nodes[0];
1652 dir_item = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_dir_item);
1654 disk_key.objectid = cpu_to_le64(rec->ino);
1655 disk_key.type = BTRFS_INODE_ITEM_KEY;
1656 disk_key.offset = 0;
1658 btrfs_set_dir_item_key(leaf, dir_item, &disk_key);
1659 btrfs_set_dir_type(leaf, dir_item, imode_to_type(rec->imode));
1660 btrfs_set_dir_data_len(leaf, dir_item, 0);
1661 btrfs_set_dir_name_len(leaf, dir_item, backref->namelen);
1662 name_ptr = (unsigned long)(dir_item + 1);
1663 write_extent_buffer(leaf, backref->name, name_ptr, backref->namelen);
1664 btrfs_mark_buffer_dirty(leaf);
1665 btrfs_free_path(path);
1666 btrfs_commit_transaction(trans, root);
1668 backref->found_dir_index = 1;
1669 dir_rec = get_inode_rec(inode_cache, backref->dir, 0);
1672 dir_rec->found_size += backref->namelen;
1673 if (dir_rec->found_size == dir_rec->isize &&
1674 (dir_rec->errors & I_ERR_DIR_ISIZE_WRONG))
1675 dir_rec->errors &= ~I_ERR_DIR_ISIZE_WRONG;
1676 if (dir_rec->found_size != dir_rec->isize)
1677 dir_rec->errors |= I_ERR_DIR_ISIZE_WRONG;
1682 static int delete_dir_index(struct btrfs_root *root,
1683 struct cache_tree *inode_cache,
1684 struct inode_record *rec,
1685 struct inode_backref *backref)
1687 struct btrfs_trans_handle *trans;
1688 struct btrfs_dir_item *di;
1689 struct btrfs_path *path;
1692 path = btrfs_alloc_path();
1696 trans = btrfs_start_transaction(root, 1);
1697 if (IS_ERR(trans)) {
1698 btrfs_free_path(path);
1699 return PTR_ERR(trans);
1703 fprintf(stderr, "Deleting bad dir index [%llu,%u,%llu] root %llu\n",
1704 (unsigned long long)backref->dir,
1705 BTRFS_DIR_INDEX_KEY, (unsigned long long)backref->index,
1706 (unsigned long long)root->objectid);
1708 di = btrfs_lookup_dir_index(trans, root, path, backref->dir,
1709 backref->name, backref->namelen,
1710 backref->index, -1);
1713 btrfs_free_path(path);
1714 btrfs_commit_transaction(trans, root);
1721 ret = btrfs_del_item(trans, root, path);
1723 ret = btrfs_delete_one_dir_name(trans, root, path, di);
1725 btrfs_free_path(path);
1726 btrfs_commit_transaction(trans, root);
1730 static int create_inode_item(struct btrfs_root *root,
1731 struct inode_record *rec,
1732 struct inode_backref *backref, int root_dir)
1734 struct btrfs_trans_handle *trans;
1735 struct btrfs_inode_item inode_item;
1736 time_t now = time(NULL);
1739 trans = btrfs_start_transaction(root, 1);
1740 if (IS_ERR(trans)) {
1741 ret = PTR_ERR(trans);
1745 fprintf(stderr, "root %llu inode %llu recreating inode item, this may "
1746 "be incomplete, please check permissions and content after "
1747 "the fsck completes.\n", (unsigned long long)root->objectid,
1748 (unsigned long long)rec->ino);
1750 memset(&inode_item, 0, sizeof(inode_item));
1751 btrfs_set_stack_inode_generation(&inode_item, trans->transid);
1753 btrfs_set_stack_inode_nlink(&inode_item, 1);
1755 btrfs_set_stack_inode_nlink(&inode_item, rec->found_link);
1756 btrfs_set_stack_inode_nbytes(&inode_item, rec->found_size);
1757 if (rec->found_dir_item) {
1758 if (rec->found_file_extent)
1759 fprintf(stderr, "root %llu inode %llu has both a dir "
1760 "item and extents, unsure if it is a dir or a "
1761 "regular file so setting it as a directory\n",
1762 (unsigned long long)root->objectid,
1763 (unsigned long long)rec->ino);
1764 btrfs_set_stack_inode_mode(&inode_item, S_IFDIR | 0755);
1765 btrfs_set_stack_inode_size(&inode_item, rec->found_size);
1766 } else if (!rec->found_dir_item) {
1767 btrfs_set_stack_inode_size(&inode_item, rec->extent_end);
1768 btrfs_set_stack_inode_mode(&inode_item, S_IFREG | 0755);
1770 btrfs_set_stack_timespec_sec(&inode_item.atime, now);
1771 btrfs_set_stack_timespec_nsec(&inode_item.atime, 0);
1772 btrfs_set_stack_timespec_sec(&inode_item.ctime, now);
1773 btrfs_set_stack_timespec_nsec(&inode_item.ctime, 0);
1774 btrfs_set_stack_timespec_sec(&inode_item.mtime, now);
1775 btrfs_set_stack_timespec_nsec(&inode_item.mtime, 0);
1776 btrfs_set_stack_timespec_sec(&inode_item.otime, 0);
1777 btrfs_set_stack_timespec_nsec(&inode_item.otime, 0);
1779 ret = btrfs_insert_inode(trans, root, rec->ino, &inode_item);
1781 btrfs_commit_transaction(trans, root);
1785 static int repair_inode_backrefs(struct btrfs_root *root,
1786 struct inode_record *rec,
1787 struct cache_tree *inode_cache,
1790 struct inode_backref *tmp, *backref;
1791 u64 root_dirid = btrfs_root_dirid(&root->root_item);
1795 list_for_each_entry_safe(backref, tmp, &rec->backrefs, list) {
1796 if (!delete && rec->ino == root_dirid) {
1797 if (!rec->found_inode_item) {
1798 ret = create_inode_item(root, rec, backref, 1);
1805 /* Index 0 for root dir's are special, don't mess with it */
1806 if (rec->ino == root_dirid && backref->index == 0)
1810 ((backref->found_dir_index && !backref->found_inode_ref) ||
1811 (backref->found_dir_index && backref->found_inode_ref &&
1812 (backref->errors & REF_ERR_INDEX_UNMATCH)))) {
1813 ret = delete_dir_index(root, inode_cache, rec, backref);
1817 list_del(&backref->list);
1821 if (!delete && !backref->found_dir_index &&
1822 backref->found_dir_item && backref->found_inode_ref) {
1823 ret = add_missing_dir_index(root, inode_cache, rec,
1828 if (backref->found_dir_item &&
1829 backref->found_dir_index &&
1830 backref->found_dir_index) {
1831 if (!backref->errors &&
1832 backref->found_inode_ref) {
1833 list_del(&backref->list);
1839 if (!delete && (!backref->found_dir_index &&
1840 !backref->found_dir_item &&
1841 backref->found_inode_ref)) {
1842 struct btrfs_trans_handle *trans;
1843 struct btrfs_key location;
1845 location.objectid = rec->ino;
1846 location.type = BTRFS_INODE_ITEM_KEY;
1847 location.offset = 0;
1849 trans = btrfs_start_transaction(root, 1);
1850 if (IS_ERR(trans)) {
1851 ret = PTR_ERR(trans);
1854 fprintf(stderr, "adding missing dir index/item pair "
1856 (unsigned long long)rec->ino);
1857 ret = btrfs_insert_dir_item(trans, root, backref->name,
1859 backref->dir, &location,
1860 imode_to_type(rec->imode),
1863 btrfs_commit_transaction(trans, root);
1867 if (!delete && (backref->found_inode_ref &&
1868 backref->found_dir_index &&
1869 backref->found_dir_item &&
1870 !(backref->errors & REF_ERR_INDEX_UNMATCH) &&
1871 !rec->found_inode_item)) {
1872 ret = create_inode_item(root, rec, backref, 0);
1879 return ret ? ret : repaired;
1882 static int try_repair_inode(struct btrfs_root *root, struct inode_record *rec)
1884 struct btrfs_trans_handle *trans;
1885 struct btrfs_path *path;
1888 if (!(rec->errors & (I_ERR_DIR_ISIZE_WRONG | I_ERR_NO_ORPHAN_ITEM)))
1891 path = btrfs_alloc_path();
1895 trans = btrfs_start_transaction(root, 1);
1896 if (IS_ERR(trans)) {
1897 btrfs_free_path(path);
1898 return PTR_ERR(trans);
1901 if (rec->errors & I_ERR_DIR_ISIZE_WRONG)
1902 ret = repair_inode_isize(trans, root, path, rec);
1903 if (!ret && rec->errors & I_ERR_NO_ORPHAN_ITEM)
1904 ret = repair_inode_orphan_item(trans, root, path, rec);
1905 btrfs_commit_transaction(trans, root);
1906 btrfs_free_path(path);
1910 static int check_inode_recs(struct btrfs_root *root,
1911 struct cache_tree *inode_cache)
1913 struct cache_extent *cache;
1914 struct ptr_node *node;
1915 struct inode_record *rec;
1916 struct inode_backref *backref;
1921 u64 root_dirid = btrfs_root_dirid(&root->root_item);
1923 if (btrfs_root_refs(&root->root_item) == 0) {
1924 if (!cache_tree_empty(inode_cache))
1925 fprintf(stderr, "warning line %d\n", __LINE__);
1930 * We need to record the highest inode number for later 'lost+found'
1932 * We must select a ino not used/refered by any existing inode, or
1933 * 'lost+found' ino may be a missing ino in a corrupted leaf,
1934 * this may cause 'lost+found' dir has wrong nlinks.
1936 cache = last_cache_extent(inode_cache);
1938 node = container_of(cache, struct ptr_node, cache);
1940 if (rec->ino > root->highest_inode)
1941 root->highest_inode = rec->ino;
1945 * We need to repair backrefs first because we could change some of the
1946 * errors in the inode recs.
1948 * We also need to go through and delete invalid backrefs first and then
1949 * add the correct ones second. We do this because we may get EEXIST
1950 * when adding back the correct index because we hadn't yet deleted the
1953 * For example, if we were missing a dir index then the directories
1954 * isize would be wrong, so if we fixed the isize to what we thought it
1955 * would be and then fixed the backref we'd still have a invalid fs, so
1956 * we need to add back the dir index and then check to see if the isize
1961 if (stage == 3 && !err)
1964 cache = search_cache_extent(inode_cache, 0);
1965 while (repair && cache) {
1966 node = container_of(cache, struct ptr_node, cache);
1968 cache = next_cache_extent(cache);
1970 /* Need to free everything up and rescan */
1972 remove_cache_extent(inode_cache, &node->cache);
1974 free_inode_rec(rec);
1978 if (list_empty(&rec->backrefs))
1981 ret = repair_inode_backrefs(root, rec, inode_cache,
1995 rec = get_inode_rec(inode_cache, root_dirid, 0);
1997 ret = check_root_dir(rec);
1999 fprintf(stderr, "root %llu root dir %llu error\n",
2000 (unsigned long long)root->root_key.objectid,
2001 (unsigned long long)root_dirid);
2002 print_inode_error(root, rec);
2007 struct btrfs_trans_handle *trans;
2009 trans = btrfs_start_transaction(root, 1);
2010 if (IS_ERR(trans)) {
2011 err = PTR_ERR(trans);
2016 "root %llu missing its root dir, recreating\n",
2017 (unsigned long long)root->objectid);
2019 ret = btrfs_make_root_dir(trans, root, root_dirid);
2022 btrfs_commit_transaction(trans, root);
2026 fprintf(stderr, "root %llu root dir %llu not found\n",
2027 (unsigned long long)root->root_key.objectid,
2028 (unsigned long long)root_dirid);
2032 cache = search_cache_extent(inode_cache, 0);
2035 node = container_of(cache, struct ptr_node, cache);
2037 remove_cache_extent(inode_cache, &node->cache);
2039 if (rec->ino == root_dirid ||
2040 rec->ino == BTRFS_ORPHAN_OBJECTID) {
2041 free_inode_rec(rec);
2045 if (rec->errors & I_ERR_NO_ORPHAN_ITEM) {
2046 ret = check_orphan_item(root, rec->ino);
2048 rec->errors &= ~I_ERR_NO_ORPHAN_ITEM;
2049 if (can_free_inode_rec(rec)) {
2050 free_inode_rec(rec);
2056 ret = try_repair_inode(root, rec);
2057 if (ret == 0 && can_free_inode_rec(rec)) {
2058 free_inode_rec(rec);
2065 if (!rec->found_inode_item)
2066 rec->errors |= I_ERR_NO_INODE_ITEM;
2067 if (rec->found_link != rec->nlink)
2068 rec->errors |= I_ERR_LINK_COUNT_WRONG;
2069 print_inode_error(root, rec);
2070 list_for_each_entry(backref, &rec->backrefs, list) {
2071 if (!backref->found_dir_item)
2072 backref->errors |= REF_ERR_NO_DIR_ITEM;
2073 if (!backref->found_dir_index)
2074 backref->errors |= REF_ERR_NO_DIR_INDEX;
2075 if (!backref->found_inode_ref)
2076 backref->errors |= REF_ERR_NO_INODE_REF;
2077 fprintf(stderr, "\tunresolved ref dir %llu index %llu"
2078 " namelen %u name %s filetype %d errors %x",
2079 (unsigned long long)backref->dir,
2080 (unsigned long long)backref->index,
2081 backref->namelen, backref->name,
2082 backref->filetype, backref->errors);
2083 print_ref_error(backref->errors);
2085 free_inode_rec(rec);
2087 return (error > 0) ? -1 : 0;
2090 static struct root_record *get_root_rec(struct cache_tree *root_cache,
2093 struct cache_extent *cache;
2094 struct root_record *rec = NULL;
2097 cache = lookup_cache_extent(root_cache, objectid, 1);
2099 rec = container_of(cache, struct root_record, cache);
2101 rec = calloc(1, sizeof(*rec));
2102 rec->objectid = objectid;
2103 INIT_LIST_HEAD(&rec->backrefs);
2104 rec->cache.start = objectid;
2105 rec->cache.size = 1;
2107 ret = insert_cache_extent(root_cache, &rec->cache);
2113 static struct root_backref *get_root_backref(struct root_record *rec,
2114 u64 ref_root, u64 dir, u64 index,
2115 const char *name, int namelen)
2117 struct root_backref *backref;
2119 list_for_each_entry(backref, &rec->backrefs, list) {
2120 if (backref->ref_root != ref_root || backref->dir != dir ||
2121 backref->namelen != namelen)
2123 if (memcmp(name, backref->name, namelen))
2128 backref = malloc(sizeof(*backref) + namelen + 1);
2129 memset(backref, 0, sizeof(*backref));
2130 backref->ref_root = ref_root;
2132 backref->index = index;
2133 backref->namelen = namelen;
2134 memcpy(backref->name, name, namelen);
2135 backref->name[namelen] = '\0';
2136 list_add_tail(&backref->list, &rec->backrefs);
2140 static void free_root_record(struct cache_extent *cache)
2142 struct root_record *rec;
2143 struct root_backref *backref;
2145 rec = container_of(cache, struct root_record, cache);
2146 while (!list_empty(&rec->backrefs)) {
2147 backref = list_entry(rec->backrefs.next,
2148 struct root_backref, list);
2149 list_del(&backref->list);
2156 FREE_EXTENT_CACHE_BASED_TREE(root_recs, free_root_record);
2158 static int add_root_backref(struct cache_tree *root_cache,
2159 u64 root_id, u64 ref_root, u64 dir, u64 index,
2160 const char *name, int namelen,
2161 int item_type, int errors)
2163 struct root_record *rec;
2164 struct root_backref *backref;
2166 rec = get_root_rec(root_cache, root_id);
2167 backref = get_root_backref(rec, ref_root, dir, index, name, namelen);
2169 backref->errors |= errors;
2171 if (item_type != BTRFS_DIR_ITEM_KEY) {
2172 if (backref->found_dir_index || backref->found_back_ref ||
2173 backref->found_forward_ref) {
2174 if (backref->index != index)
2175 backref->errors |= REF_ERR_INDEX_UNMATCH;
2177 backref->index = index;
2181 if (item_type == BTRFS_DIR_ITEM_KEY) {
2182 if (backref->found_forward_ref)
2184 backref->found_dir_item = 1;
2185 } else if (item_type == BTRFS_DIR_INDEX_KEY) {
2186 backref->found_dir_index = 1;
2187 } else if (item_type == BTRFS_ROOT_REF_KEY) {
2188 if (backref->found_forward_ref)
2189 backref->errors |= REF_ERR_DUP_ROOT_REF;
2190 else if (backref->found_dir_item)
2192 backref->found_forward_ref = 1;
2193 } else if (item_type == BTRFS_ROOT_BACKREF_KEY) {
2194 if (backref->found_back_ref)
2195 backref->errors |= REF_ERR_DUP_ROOT_BACKREF;
2196 backref->found_back_ref = 1;
2201 if (backref->found_forward_ref && backref->found_dir_item)
2202 backref->reachable = 1;
2206 static int merge_root_recs(struct btrfs_root *root,
2207 struct cache_tree *src_cache,
2208 struct cache_tree *dst_cache)
2210 struct cache_extent *cache;
2211 struct ptr_node *node;
2212 struct inode_record *rec;
2213 struct inode_backref *backref;
2216 if (root->root_key.objectid == BTRFS_TREE_RELOC_OBJECTID) {
2217 free_inode_recs_tree(src_cache);
2222 cache = search_cache_extent(src_cache, 0);
2225 node = container_of(cache, struct ptr_node, cache);
2227 remove_cache_extent(src_cache, &node->cache);
2230 ret = is_child_root(root, root->objectid, rec->ino);
2236 list_for_each_entry(backref, &rec->backrefs, list) {
2237 BUG_ON(backref->found_inode_ref);
2238 if (backref->found_dir_item)
2239 add_root_backref(dst_cache, rec->ino,
2240 root->root_key.objectid, backref->dir,
2241 backref->index, backref->name,
2242 backref->namelen, BTRFS_DIR_ITEM_KEY,
2244 if (backref->found_dir_index)
2245 add_root_backref(dst_cache, rec->ino,
2246 root->root_key.objectid, backref->dir,
2247 backref->index, backref->name,
2248 backref->namelen, BTRFS_DIR_INDEX_KEY,
2252 free_inode_rec(rec);
2259 static int check_root_refs(struct btrfs_root *root,
2260 struct cache_tree *root_cache)
2262 struct root_record *rec;
2263 struct root_record *ref_root;
2264 struct root_backref *backref;
2265 struct cache_extent *cache;
2271 rec = get_root_rec(root_cache, BTRFS_FS_TREE_OBJECTID);
2274 /* fixme: this can not detect circular references */
2277 cache = search_cache_extent(root_cache, 0);
2281 rec = container_of(cache, struct root_record, cache);
2282 cache = next_cache_extent(cache);
2284 if (rec->found_ref == 0)
2287 list_for_each_entry(backref, &rec->backrefs, list) {
2288 if (!backref->reachable)
2291 ref_root = get_root_rec(root_cache,
2293 if (ref_root->found_ref > 0)
2296 backref->reachable = 0;
2298 if (rec->found_ref == 0)
2304 cache = search_cache_extent(root_cache, 0);
2308 rec = container_of(cache, struct root_record, cache);
2309 cache = next_cache_extent(cache);
2311 if (rec->found_ref == 0 &&
2312 rec->objectid >= BTRFS_FIRST_FREE_OBJECTID &&
2313 rec->objectid <= BTRFS_LAST_FREE_OBJECTID) {
2314 ret = check_orphan_item(root->fs_info->tree_root,
2320 * If we don't have a root item then we likely just have
2321 * a dir item in a snapshot for this root but no actual
2322 * ref key or anything so it's meaningless.
2324 if (!rec->found_root_item)
2327 fprintf(stderr, "fs tree %llu not referenced\n",
2328 (unsigned long long)rec->objectid);
2332 if (rec->found_ref > 0 && !rec->found_root_item)
2334 list_for_each_entry(backref, &rec->backrefs, list) {
2335 if (!backref->found_dir_item)
2336 backref->errors |= REF_ERR_NO_DIR_ITEM;
2337 if (!backref->found_dir_index)
2338 backref->errors |= REF_ERR_NO_DIR_INDEX;
2339 if (!backref->found_back_ref)
2340 backref->errors |= REF_ERR_NO_ROOT_BACKREF;
2341 if (!backref->found_forward_ref)
2342 backref->errors |= REF_ERR_NO_ROOT_REF;
2343 if (backref->reachable && backref->errors)
2350 fprintf(stderr, "fs tree %llu refs %u %s\n",
2351 (unsigned long long)rec->objectid, rec->found_ref,
2352 rec->found_root_item ? "" : "not found");
2354 list_for_each_entry(backref, &rec->backrefs, list) {
2355 if (!backref->reachable)
2357 if (!backref->errors && rec->found_root_item)
2359 fprintf(stderr, "\tunresolved ref root %llu dir %llu"
2360 " index %llu namelen %u name %s errors %x\n",
2361 (unsigned long long)backref->ref_root,
2362 (unsigned long long)backref->dir,
2363 (unsigned long long)backref->index,
2364 backref->namelen, backref->name,
2366 print_ref_error(backref->errors);
2369 return errors > 0 ? 1 : 0;
2372 static int process_root_ref(struct extent_buffer *eb, int slot,
2373 struct btrfs_key *key,
2374 struct cache_tree *root_cache)
2380 struct btrfs_root_ref *ref;
2381 char namebuf[BTRFS_NAME_LEN];
2384 ref = btrfs_item_ptr(eb, slot, struct btrfs_root_ref);
2386 dirid = btrfs_root_ref_dirid(eb, ref);
2387 index = btrfs_root_ref_sequence(eb, ref);
2388 name_len = btrfs_root_ref_name_len(eb, ref);
2390 if (name_len <= BTRFS_NAME_LEN) {
2394 len = BTRFS_NAME_LEN;
2395 error = REF_ERR_NAME_TOO_LONG;
2397 read_extent_buffer(eb, namebuf, (unsigned long)(ref + 1), len);
2399 if (key->type == BTRFS_ROOT_REF_KEY) {
2400 add_root_backref(root_cache, key->offset, key->objectid, dirid,
2401 index, namebuf, len, key->type, error);
2403 add_root_backref(root_cache, key->objectid, key->offset, dirid,
2404 index, namebuf, len, key->type, error);
2409 static int check_fs_root(struct btrfs_root *root,
2410 struct cache_tree *root_cache,
2411 struct walk_control *wc)
2417 struct btrfs_path path;
2418 struct shared_node root_node;
2419 struct root_record *rec;
2420 struct btrfs_root_item *root_item = &root->root_item;
2421 enum btrfs_tree_block_status status;
2423 if (root->root_key.objectid != BTRFS_TREE_RELOC_OBJECTID) {
2424 rec = get_root_rec(root_cache, root->root_key.objectid);
2425 if (btrfs_root_refs(root_item) > 0)
2426 rec->found_root_item = 1;
2429 btrfs_init_path(&path);
2430 memset(&root_node, 0, sizeof(root_node));
2431 cache_tree_init(&root_node.root_cache);
2432 cache_tree_init(&root_node.inode_cache);
2434 level = btrfs_header_level(root->node);
2435 memset(wc->nodes, 0, sizeof(wc->nodes));
2436 wc->nodes[level] = &root_node;
2437 wc->active_node = level;
2438 wc->root_level = level;
2440 /* We may not have checked the root block, lets do that now */
2441 if (btrfs_is_leaf(root->node))
2442 status = btrfs_check_leaf(root, NULL, root->node);
2444 status = btrfs_check_node(root, NULL, root->node);
2445 if (status != BTRFS_TREE_BLOCK_CLEAN)
2448 if (btrfs_root_refs(root_item) > 0 ||
2449 btrfs_disk_key_objectid(&root_item->drop_progress) == 0) {
2450 path.nodes[level] = root->node;
2451 extent_buffer_get(root->node);
2452 path.slots[level] = 0;
2454 struct btrfs_key key;
2455 struct btrfs_disk_key found_key;
2457 btrfs_disk_key_to_cpu(&key, &root_item->drop_progress);
2458 level = root_item->drop_level;
2459 path.lowest_level = level;
2460 wret = btrfs_search_slot(NULL, root, &key, &path, 0, 0);
2463 btrfs_node_key(path.nodes[level], &found_key,
2465 WARN_ON(memcmp(&found_key, &root_item->drop_progress,
2466 sizeof(found_key)));
2470 wret = walk_down_tree(root, &path, wc, &level);
2476 wret = walk_up_tree(root, &path, wc, &level);
2483 btrfs_release_path(&path);
2485 err = merge_root_recs(root, &root_node.root_cache, root_cache);
2489 if (root_node.current) {
2490 root_node.current->checked = 1;
2491 maybe_free_inode_rec(&root_node.inode_cache,
2495 err = check_inode_recs(root, &root_node.inode_cache);
2501 static int fs_root_objectid(u64 objectid)
2503 if (objectid == BTRFS_TREE_RELOC_OBJECTID ||
2504 objectid == BTRFS_DATA_RELOC_TREE_OBJECTID)
2506 return is_fstree(objectid);
2509 static int check_fs_roots(struct btrfs_root *root,
2510 struct cache_tree *root_cache)
2512 struct btrfs_path path;
2513 struct btrfs_key key;
2514 struct walk_control wc;
2515 struct extent_buffer *leaf, *tree_node;
2516 struct btrfs_root *tmp_root;
2517 struct btrfs_root *tree_root = root->fs_info->tree_root;
2522 * Just in case we made any changes to the extent tree that weren't
2523 * reflected into the free space cache yet.
2526 reset_cached_block_groups(root->fs_info);
2527 memset(&wc, 0, sizeof(wc));
2528 cache_tree_init(&wc.shared);
2529 btrfs_init_path(&path);
2534 key.type = BTRFS_ROOT_ITEM_KEY;
2535 ret = btrfs_search_slot(NULL, tree_root, &key, &path, 0, 0);
2540 tree_node = tree_root->node;
2542 if (tree_node != tree_root->node) {
2543 free_root_recs_tree(root_cache);
2544 btrfs_release_path(&path);
2547 leaf = path.nodes[0];
2548 if (path.slots[0] >= btrfs_header_nritems(leaf)) {
2549 ret = btrfs_next_leaf(tree_root, &path);
2555 leaf = path.nodes[0];
2557 btrfs_item_key_to_cpu(leaf, &key, path.slots[0]);
2558 if (key.type == BTRFS_ROOT_ITEM_KEY &&
2559 fs_root_objectid(key.objectid)) {
2560 if (key.objectid == BTRFS_TREE_RELOC_OBJECTID) {
2561 tmp_root = btrfs_read_fs_root_no_cache(
2562 root->fs_info, &key);
2564 key.offset = (u64)-1;
2565 tmp_root = btrfs_read_fs_root(
2566 root->fs_info, &key);
2568 if (IS_ERR(tmp_root)) {
2572 ret = check_fs_root(tmp_root, root_cache, &wc);
2573 if (ret == -EAGAIN) {
2574 free_root_recs_tree(root_cache);
2575 btrfs_release_path(&path);
2580 if (key.objectid == BTRFS_TREE_RELOC_OBJECTID)
2581 btrfs_free_fs_root(tmp_root);
2582 } else if (key.type == BTRFS_ROOT_REF_KEY ||
2583 key.type == BTRFS_ROOT_BACKREF_KEY) {
2584 process_root_ref(leaf, path.slots[0], &key,
2591 btrfs_release_path(&path);
2593 free_extent_cache_tree(&wc.shared);
2594 if (!cache_tree_empty(&wc.shared))
2595 fprintf(stderr, "warning line %d\n", __LINE__);
2600 static int all_backpointers_checked(struct extent_record *rec, int print_errs)
2602 struct list_head *cur = rec->backrefs.next;
2603 struct extent_backref *back;
2604 struct tree_backref *tback;
2605 struct data_backref *dback;
2609 while(cur != &rec->backrefs) {
2610 back = list_entry(cur, struct extent_backref, list);
2612 if (!back->found_extent_tree) {
2616 if (back->is_data) {
2617 dback = (struct data_backref *)back;
2618 fprintf(stderr, "Backref %llu %s %llu"
2619 " owner %llu offset %llu num_refs %lu"
2620 " not found in extent tree\n",
2621 (unsigned long long)rec->start,
2622 back->full_backref ?
2624 back->full_backref ?
2625 (unsigned long long)dback->parent:
2626 (unsigned long long)dback->root,
2627 (unsigned long long)dback->owner,
2628 (unsigned long long)dback->offset,
2629 (unsigned long)dback->num_refs);
2631 tback = (struct tree_backref *)back;
2632 fprintf(stderr, "Backref %llu parent %llu"
2633 " root %llu not found in extent tree\n",
2634 (unsigned long long)rec->start,
2635 (unsigned long long)tback->parent,
2636 (unsigned long long)tback->root);
2639 if (!back->is_data && !back->found_ref) {
2643 tback = (struct tree_backref *)back;
2644 fprintf(stderr, "Backref %llu %s %llu not referenced back %p\n",
2645 (unsigned long long)rec->start,
2646 back->full_backref ? "parent" : "root",
2647 back->full_backref ?
2648 (unsigned long long)tback->parent :
2649 (unsigned long long)tback->root, back);
2651 if (back->is_data) {
2652 dback = (struct data_backref *)back;
2653 if (dback->found_ref != dback->num_refs) {
2657 fprintf(stderr, "Incorrect local backref count"
2658 " on %llu %s %llu owner %llu"
2659 " offset %llu found %u wanted %u back %p\n",
2660 (unsigned long long)rec->start,
2661 back->full_backref ?
2663 back->full_backref ?
2664 (unsigned long long)dback->parent:
2665 (unsigned long long)dback->root,
2666 (unsigned long long)dback->owner,
2667 (unsigned long long)dback->offset,
2668 dback->found_ref, dback->num_refs, back);
2670 if (dback->disk_bytenr != rec->start) {
2674 fprintf(stderr, "Backref disk bytenr does not"
2675 " match extent record, bytenr=%llu, "
2676 "ref bytenr=%llu\n",
2677 (unsigned long long)rec->start,
2678 (unsigned long long)dback->disk_bytenr);
2681 if (dback->bytes != rec->nr) {
2685 fprintf(stderr, "Backref bytes do not match "
2686 "extent backref, bytenr=%llu, ref "
2687 "bytes=%llu, backref bytes=%llu\n",
2688 (unsigned long long)rec->start,
2689 (unsigned long long)rec->nr,
2690 (unsigned long long)dback->bytes);
2693 if (!back->is_data) {
2696 dback = (struct data_backref *)back;
2697 found += dback->found_ref;
2700 if (found != rec->refs) {
2704 fprintf(stderr, "Incorrect global backref count "
2705 "on %llu found %llu wanted %llu\n",
2706 (unsigned long long)rec->start,
2707 (unsigned long long)found,
2708 (unsigned long long)rec->refs);
2714 static int free_all_extent_backrefs(struct extent_record *rec)
2716 struct extent_backref *back;
2717 struct list_head *cur;
2718 while (!list_empty(&rec->backrefs)) {
2719 cur = rec->backrefs.next;
2720 back = list_entry(cur, struct extent_backref, list);
2727 static void free_extent_record_cache(struct btrfs_fs_info *fs_info,
2728 struct cache_tree *extent_cache)
2730 struct cache_extent *cache;
2731 struct extent_record *rec;
2734 cache = first_cache_extent(extent_cache);
2737 rec = container_of(cache, struct extent_record, cache);
2738 btrfs_unpin_extent(fs_info, rec->start, rec->max_size);
2739 remove_cache_extent(extent_cache, cache);
2740 free_all_extent_backrefs(rec);
2745 static int maybe_free_extent_rec(struct cache_tree *extent_cache,
2746 struct extent_record *rec)
2748 if (rec->content_checked && rec->owner_ref_checked &&
2749 rec->extent_item_refs == rec->refs && rec->refs > 0 &&
2750 rec->num_duplicates == 0 && !all_backpointers_checked(rec, 0)) {
2751 remove_cache_extent(extent_cache, &rec->cache);
2752 free_all_extent_backrefs(rec);
2753 list_del_init(&rec->list);
2759 static int check_owner_ref(struct btrfs_root *root,
2760 struct extent_record *rec,
2761 struct extent_buffer *buf)
2763 struct extent_backref *node;
2764 struct tree_backref *back;
2765 struct btrfs_root *ref_root;
2766 struct btrfs_key key;
2767 struct btrfs_path path;
2768 struct extent_buffer *parent;
2773 list_for_each_entry(node, &rec->backrefs, list) {
2776 if (!node->found_ref)
2778 if (node->full_backref)
2780 back = (struct tree_backref *)node;
2781 if (btrfs_header_owner(buf) == back->root)
2784 BUG_ON(rec->is_root);
2786 /* try to find the block by search corresponding fs tree */
2787 key.objectid = btrfs_header_owner(buf);
2788 key.type = BTRFS_ROOT_ITEM_KEY;
2789 key.offset = (u64)-1;
2791 ref_root = btrfs_read_fs_root(root->fs_info, &key);
2792 if (IS_ERR(ref_root))
2795 level = btrfs_header_level(buf);
2797 btrfs_item_key_to_cpu(buf, &key, 0);
2799 btrfs_node_key_to_cpu(buf, &key, 0);
2801 btrfs_init_path(&path);
2802 path.lowest_level = level + 1;
2803 ret = btrfs_search_slot(NULL, ref_root, &key, &path, 0, 0);
2807 parent = path.nodes[level + 1];
2808 if (parent && buf->start == btrfs_node_blockptr(parent,
2809 path.slots[level + 1]))
2812 btrfs_release_path(&path);
2813 return found ? 0 : 1;
2816 static int is_extent_tree_record(struct extent_record *rec)
2818 struct list_head *cur = rec->backrefs.next;
2819 struct extent_backref *node;
2820 struct tree_backref *back;
2823 while(cur != &rec->backrefs) {
2824 node = list_entry(cur, struct extent_backref, list);
2828 back = (struct tree_backref *)node;
2829 if (node->full_backref)
2831 if (back->root == BTRFS_EXTENT_TREE_OBJECTID)
2838 static int record_bad_block_io(struct btrfs_fs_info *info,
2839 struct cache_tree *extent_cache,
2842 struct extent_record *rec;
2843 struct cache_extent *cache;
2844 struct btrfs_key key;
2846 cache = lookup_cache_extent(extent_cache, start, len);
2850 rec = container_of(cache, struct extent_record, cache);
2851 if (!is_extent_tree_record(rec))
2854 btrfs_disk_key_to_cpu(&key, &rec->parent_key);
2855 return btrfs_add_corrupt_extent_record(info, &key, start, len, 0);
2858 static int swap_values(struct btrfs_root *root, struct btrfs_path *path,
2859 struct extent_buffer *buf, int slot)
2861 if (btrfs_header_level(buf)) {
2862 struct btrfs_key_ptr ptr1, ptr2;
2864 read_extent_buffer(buf, &ptr1, btrfs_node_key_ptr_offset(slot),
2865 sizeof(struct btrfs_key_ptr));
2866 read_extent_buffer(buf, &ptr2,
2867 btrfs_node_key_ptr_offset(slot + 1),
2868 sizeof(struct btrfs_key_ptr));
2869 write_extent_buffer(buf, &ptr1,
2870 btrfs_node_key_ptr_offset(slot + 1),
2871 sizeof(struct btrfs_key_ptr));
2872 write_extent_buffer(buf, &ptr2,
2873 btrfs_node_key_ptr_offset(slot),
2874 sizeof(struct btrfs_key_ptr));
2876 struct btrfs_disk_key key;
2877 btrfs_node_key(buf, &key, 0);
2878 btrfs_fixup_low_keys(root, path, &key,
2879 btrfs_header_level(buf) + 1);
2882 struct btrfs_item *item1, *item2;
2883 struct btrfs_key k1, k2;
2884 char *item1_data, *item2_data;
2885 u32 item1_offset, item2_offset, item1_size, item2_size;
2887 item1 = btrfs_item_nr(slot);
2888 item2 = btrfs_item_nr(slot + 1);
2889 btrfs_item_key_to_cpu(buf, &k1, slot);
2890 btrfs_item_key_to_cpu(buf, &k2, slot + 1);
2891 item1_offset = btrfs_item_offset(buf, item1);
2892 item2_offset = btrfs_item_offset(buf, item2);
2893 item1_size = btrfs_item_size(buf, item1);
2894 item2_size = btrfs_item_size(buf, item2);
2896 item1_data = malloc(item1_size);
2899 item2_data = malloc(item2_size);
2905 read_extent_buffer(buf, item1_data, item1_offset, item1_size);
2906 read_extent_buffer(buf, item2_data, item2_offset, item2_size);
2908 write_extent_buffer(buf, item1_data, item2_offset, item2_size);
2909 write_extent_buffer(buf, item2_data, item1_offset, item1_size);
2913 btrfs_set_item_offset(buf, item1, item2_offset);
2914 btrfs_set_item_offset(buf, item2, item1_offset);
2915 btrfs_set_item_size(buf, item1, item2_size);
2916 btrfs_set_item_size(buf, item2, item1_size);
2918 path->slots[0] = slot;
2919 btrfs_set_item_key_unsafe(root, path, &k2);
2920 path->slots[0] = slot + 1;
2921 btrfs_set_item_key_unsafe(root, path, &k1);
2926 static int fix_key_order(struct btrfs_trans_handle *trans,
2927 struct btrfs_root *root,
2928 struct btrfs_path *path)
2930 struct extent_buffer *buf;
2931 struct btrfs_key k1, k2;
2933 int level = path->lowest_level;
2936 buf = path->nodes[level];
2937 for (i = 0; i < btrfs_header_nritems(buf) - 1; i++) {
2939 btrfs_node_key_to_cpu(buf, &k1, i);
2940 btrfs_node_key_to_cpu(buf, &k2, i + 1);
2942 btrfs_item_key_to_cpu(buf, &k1, i);
2943 btrfs_item_key_to_cpu(buf, &k2, i + 1);
2945 if (btrfs_comp_cpu_keys(&k1, &k2) < 0)
2947 ret = swap_values(root, path, buf, i);
2950 btrfs_mark_buffer_dirty(buf);
2956 static int delete_bogus_item(struct btrfs_trans_handle *trans,
2957 struct btrfs_root *root,
2958 struct btrfs_path *path,
2959 struct extent_buffer *buf, int slot)
2961 struct btrfs_key key;
2962 int nritems = btrfs_header_nritems(buf);
2964 btrfs_item_key_to_cpu(buf, &key, slot);
2966 /* These are all the keys we can deal with missing. */
2967 if (key.type != BTRFS_DIR_INDEX_KEY &&
2968 key.type != BTRFS_EXTENT_ITEM_KEY &&
2969 key.type != BTRFS_METADATA_ITEM_KEY &&
2970 key.type != BTRFS_TREE_BLOCK_REF_KEY &&
2971 key.type != BTRFS_EXTENT_DATA_REF_KEY)
2974 printf("Deleting bogus item [%llu,%u,%llu] at slot %d on block %llu\n",
2975 (unsigned long long)key.objectid, key.type,
2976 (unsigned long long)key.offset, slot, buf->start);
2977 memmove_extent_buffer(buf, btrfs_item_nr_offset(slot),
2978 btrfs_item_nr_offset(slot + 1),
2979 sizeof(struct btrfs_item) *
2980 (nritems - slot - 1));
2981 btrfs_set_header_nritems(buf, nritems - 1);
2983 struct btrfs_disk_key disk_key;
2985 btrfs_item_key(buf, &disk_key, 0);
2986 btrfs_fixup_low_keys(root, path, &disk_key, 1);
2988 btrfs_mark_buffer_dirty(buf);
2992 static int fix_item_offset(struct btrfs_trans_handle *trans,
2993 struct btrfs_root *root,
2994 struct btrfs_path *path)
2996 struct extent_buffer *buf;
3000 /* We should only get this for leaves */
3001 BUG_ON(path->lowest_level);
3002 buf = path->nodes[0];
3004 for (i = 0; i < btrfs_header_nritems(buf); i++) {
3005 unsigned int shift = 0, offset;
3007 if (i == 0 && btrfs_item_end_nr(buf, i) !=
3008 BTRFS_LEAF_DATA_SIZE(root)) {
3009 if (btrfs_item_end_nr(buf, i) >
3010 BTRFS_LEAF_DATA_SIZE(root)) {
3011 ret = delete_bogus_item(trans, root, path,
3015 fprintf(stderr, "item is off the end of the "
3016 "leaf, can't fix\n");
3020 shift = BTRFS_LEAF_DATA_SIZE(root) -
3021 btrfs_item_end_nr(buf, i);
3022 } else if (i > 0 && btrfs_item_end_nr(buf, i) !=
3023 btrfs_item_offset_nr(buf, i - 1)) {
3024 if (btrfs_item_end_nr(buf, i) >
3025 btrfs_item_offset_nr(buf, i - 1)) {
3026 ret = delete_bogus_item(trans, root, path,
3030 fprintf(stderr, "items overlap, can't fix\n");
3034 shift = btrfs_item_offset_nr(buf, i - 1) -
3035 btrfs_item_end_nr(buf, i);
3040 printf("Shifting item nr %d by %u bytes in block %llu\n",
3041 i, shift, (unsigned long long)buf->start);
3042 offset = btrfs_item_offset_nr(buf, i);
3043 memmove_extent_buffer(buf,
3044 btrfs_leaf_data(buf) + offset + shift,
3045 btrfs_leaf_data(buf) + offset,
3046 btrfs_item_size_nr(buf, i));
3047 btrfs_set_item_offset(buf, btrfs_item_nr(i),
3049 btrfs_mark_buffer_dirty(buf);
3053 * We may have moved things, in which case we want to exit so we don't
3054 * write those changes out. Once we have proper abort functionality in
3055 * progs this can be changed to something nicer.
3062 * Attempt to fix basic block failures. If we can't fix it for whatever reason
3063 * then just return -EIO.
3065 static int try_to_fix_bad_block(struct btrfs_trans_handle *trans,
3066 struct btrfs_root *root,
3067 struct extent_buffer *buf,
3068 enum btrfs_tree_block_status status)
3070 struct ulist *roots;
3071 struct ulist_node *node;
3072 struct btrfs_root *search_root;
3073 struct btrfs_path *path;
3074 struct ulist_iterator iter;
3075 struct btrfs_key root_key, key;
3078 if (status != BTRFS_TREE_BLOCK_BAD_KEY_ORDER &&
3079 status != BTRFS_TREE_BLOCK_INVALID_OFFSETS)
3082 path = btrfs_alloc_path();
3086 ret = btrfs_find_all_roots(trans, root->fs_info, buf->start,
3089 btrfs_free_path(path);
3093 ULIST_ITER_INIT(&iter);
3094 while ((node = ulist_next(roots, &iter))) {
3095 root_key.objectid = node->val;
3096 root_key.type = BTRFS_ROOT_ITEM_KEY;
3097 root_key.offset = (u64)-1;
3099 search_root = btrfs_read_fs_root(root->fs_info, &root_key);
3105 record_root_in_trans(trans, search_root);
3107 path->lowest_level = btrfs_header_level(buf);
3108 path->skip_check_block = 1;
3109 if (path->lowest_level)
3110 btrfs_node_key_to_cpu(buf, &key, 0);
3112 btrfs_item_key_to_cpu(buf, &key, 0);
3113 ret = btrfs_search_slot(trans, search_root, &key, path, 0, 1);
3118 if (status == BTRFS_TREE_BLOCK_BAD_KEY_ORDER)
3119 ret = fix_key_order(trans, search_root, path);
3120 else if (status == BTRFS_TREE_BLOCK_INVALID_OFFSETS)
3121 ret = fix_item_offset(trans, search_root, path);
3124 btrfs_release_path(path);
3127 btrfs_free_path(path);
3131 static int check_block(struct btrfs_trans_handle *trans,
3132 struct btrfs_root *root,
3133 struct cache_tree *extent_cache,
3134 struct extent_buffer *buf, u64 flags)
3136 struct extent_record *rec;
3137 struct cache_extent *cache;
3138 struct btrfs_key key;
3139 enum btrfs_tree_block_status status;
3143 cache = lookup_cache_extent(extent_cache, buf->start, buf->len);
3146 rec = container_of(cache, struct extent_record, cache);
3147 rec->generation = btrfs_header_generation(buf);
3149 level = btrfs_header_level(buf);
3150 if (btrfs_header_nritems(buf) > 0) {
3153 btrfs_item_key_to_cpu(buf, &key, 0);
3155 btrfs_node_key_to_cpu(buf, &key, 0);
3157 rec->info_objectid = key.objectid;
3159 rec->info_level = level;
3161 if (btrfs_is_leaf(buf))
3162 status = btrfs_check_leaf(root, &rec->parent_key, buf);
3164 status = btrfs_check_node(root, &rec->parent_key, buf);
3166 if (status != BTRFS_TREE_BLOCK_CLEAN) {
3168 status = try_to_fix_bad_block(trans, root, buf,
3170 if (status != BTRFS_TREE_BLOCK_CLEAN) {
3172 fprintf(stderr, "bad block %llu\n",
3173 (unsigned long long)buf->start);
3176 * Signal to callers we need to start the scan over
3177 * again since we'll have cow'ed blocks.
3182 rec->content_checked = 1;
3183 if (flags & BTRFS_BLOCK_FLAG_FULL_BACKREF)
3184 rec->owner_ref_checked = 1;
3186 ret = check_owner_ref(root, rec, buf);
3188 rec->owner_ref_checked = 1;
3192 maybe_free_extent_rec(extent_cache, rec);
3196 static struct tree_backref *find_tree_backref(struct extent_record *rec,
3197 u64 parent, u64 root)
3199 struct list_head *cur = rec->backrefs.next;
3200 struct extent_backref *node;
3201 struct tree_backref *back;
3203 while(cur != &rec->backrefs) {
3204 node = list_entry(cur, struct extent_backref, list);
3208 back = (struct tree_backref *)node;
3210 if (!node->full_backref)
3212 if (parent == back->parent)
3215 if (node->full_backref)
3217 if (back->root == root)
3224 static struct tree_backref *alloc_tree_backref(struct extent_record *rec,
3225 u64 parent, u64 root)
3227 struct tree_backref *ref = malloc(sizeof(*ref));
3228 memset(&ref->node, 0, sizeof(ref->node));
3230 ref->parent = parent;
3231 ref->node.full_backref = 1;
3234 ref->node.full_backref = 0;
3236 list_add_tail(&ref->node.list, &rec->backrefs);
3241 static struct data_backref *find_data_backref(struct extent_record *rec,
3242 u64 parent, u64 root,
3243 u64 owner, u64 offset,
3245 u64 disk_bytenr, u64 bytes)
3247 struct list_head *cur = rec->backrefs.next;
3248 struct extent_backref *node;
3249 struct data_backref *back;
3251 while(cur != &rec->backrefs) {
3252 node = list_entry(cur, struct extent_backref, list);
3256 back = (struct data_backref *)node;
3258 if (!node->full_backref)
3260 if (parent == back->parent)
3263 if (node->full_backref)
3265 if (back->root == root && back->owner == owner &&
3266 back->offset == offset) {
3267 if (found_ref && node->found_ref &&
3268 (back->bytes != bytes ||
3269 back->disk_bytenr != disk_bytenr))
3278 static struct data_backref *alloc_data_backref(struct extent_record *rec,
3279 u64 parent, u64 root,
3280 u64 owner, u64 offset,
3283 struct data_backref *ref = malloc(sizeof(*ref));
3284 memset(&ref->node, 0, sizeof(ref->node));
3285 ref->node.is_data = 1;
3288 ref->parent = parent;
3291 ref->node.full_backref = 1;
3295 ref->offset = offset;
3296 ref->node.full_backref = 0;
3298 ref->bytes = max_size;
3301 list_add_tail(&ref->node.list, &rec->backrefs);
3302 if (max_size > rec->max_size)
3303 rec->max_size = max_size;
3307 static int add_extent_rec(struct cache_tree *extent_cache,
3308 struct btrfs_key *parent_key, u64 parent_gen,
3309 u64 start, u64 nr, u64 extent_item_refs,
3310 int is_root, int inc_ref, int set_checked,
3311 int metadata, int extent_rec, u64 max_size)
3313 struct extent_record *rec;
3314 struct cache_extent *cache;
3318 cache = lookup_cache_extent(extent_cache, start, nr);
3320 rec = container_of(cache, struct extent_record, cache);
3324 rec->nr = max(nr, max_size);
3327 * We need to make sure to reset nr to whatever the extent
3328 * record says was the real size, this way we can compare it to
3332 if (start != rec->start || rec->found_rec) {
3333 struct extent_record *tmp;
3336 if (list_empty(&rec->list))
3337 list_add_tail(&rec->list,
3338 &duplicate_extents);
3341 * We have to do this song and dance in case we
3342 * find an extent record that falls inside of
3343 * our current extent record but does not have
3344 * the same objectid.
3346 tmp = malloc(sizeof(*tmp));
3350 tmp->max_size = max_size;
3353 tmp->metadata = metadata;
3354 tmp->extent_item_refs = extent_item_refs;
3355 INIT_LIST_HEAD(&tmp->list);
3356 list_add_tail(&tmp->list, &rec->dups);
3357 rec->num_duplicates++;
3364 if (extent_item_refs && !dup) {
3365 if (rec->extent_item_refs) {
3366 fprintf(stderr, "block %llu rec "
3367 "extent_item_refs %llu, passed %llu\n",
3368 (unsigned long long)start,
3369 (unsigned long long)
3370 rec->extent_item_refs,
3371 (unsigned long long)extent_item_refs);
3373 rec->extent_item_refs = extent_item_refs;
3378 rec->content_checked = 1;
3379 rec->owner_ref_checked = 1;
3383 btrfs_cpu_key_to_disk(&rec->parent_key, parent_key);
3385 rec->parent_generation = parent_gen;
3387 if (rec->max_size < max_size)
3388 rec->max_size = max_size;
3390 maybe_free_extent_rec(extent_cache, rec);
3393 rec = malloc(sizeof(*rec));
3395 rec->max_size = max_size;
3396 rec->nr = max(nr, max_size);
3397 rec->found_rec = !!extent_rec;
3398 rec->content_checked = 0;
3399 rec->owner_ref_checked = 0;
3400 rec->num_duplicates = 0;
3401 rec->metadata = metadata;
3402 INIT_LIST_HEAD(&rec->backrefs);
3403 INIT_LIST_HEAD(&rec->dups);
3404 INIT_LIST_HEAD(&rec->list);
3416 if (extent_item_refs)
3417 rec->extent_item_refs = extent_item_refs;
3419 rec->extent_item_refs = 0;
3422 btrfs_cpu_key_to_disk(&rec->parent_key, parent_key);
3424 memset(&rec->parent_key, 0, sizeof(*parent_key));
3427 rec->parent_generation = parent_gen;
3429 rec->parent_generation = 0;
3431 rec->cache.start = start;
3432 rec->cache.size = nr;
3433 ret = insert_cache_extent(extent_cache, &rec->cache);
3437 rec->content_checked = 1;
3438 rec->owner_ref_checked = 1;
3443 static int add_tree_backref(struct cache_tree *extent_cache, u64 bytenr,
3444 u64 parent, u64 root, int found_ref)
3446 struct extent_record *rec;
3447 struct tree_backref *back;
3448 struct cache_extent *cache;
3450 cache = lookup_cache_extent(extent_cache, bytenr, 1);
3452 add_extent_rec(extent_cache, NULL, 0, bytenr,
3453 1, 0, 0, 0, 0, 1, 0, 0);
3454 cache = lookup_cache_extent(extent_cache, bytenr, 1);
3459 rec = container_of(cache, struct extent_record, cache);
3460 if (rec->start != bytenr) {
3464 back = find_tree_backref(rec, parent, root);
3466 back = alloc_tree_backref(rec, parent, root);
3469 if (back->node.found_ref) {
3470 fprintf(stderr, "Extent back ref already exists "
3471 "for %llu parent %llu root %llu \n",
3472 (unsigned long long)bytenr,
3473 (unsigned long long)parent,
3474 (unsigned long long)root);
3476 back->node.found_ref = 1;
3478 if (back->node.found_extent_tree) {
3479 fprintf(stderr, "Extent back ref already exists "
3480 "for %llu parent %llu root %llu \n",
3481 (unsigned long long)bytenr,
3482 (unsigned long long)parent,
3483 (unsigned long long)root);
3485 back->node.found_extent_tree = 1;
3487 maybe_free_extent_rec(extent_cache, rec);
3491 static int add_data_backref(struct cache_tree *extent_cache, u64 bytenr,
3492 u64 parent, u64 root, u64 owner, u64 offset,
3493 u32 num_refs, int found_ref, u64 max_size)
3495 struct extent_record *rec;
3496 struct data_backref *back;
3497 struct cache_extent *cache;
3499 cache = lookup_cache_extent(extent_cache, bytenr, 1);
3501 add_extent_rec(extent_cache, NULL, 0, bytenr, 1, 0, 0, 0, 0,
3503 cache = lookup_cache_extent(extent_cache, bytenr, 1);
3508 rec = container_of(cache, struct extent_record, cache);
3509 if (rec->max_size < max_size)
3510 rec->max_size = max_size;
3513 * If found_ref is set then max_size is the real size and must match the
3514 * existing refs. So if we have already found a ref then we need to
3515 * make sure that this ref matches the existing one, otherwise we need
3516 * to add a new backref so we can notice that the backrefs don't match
3517 * and we need to figure out who is telling the truth. This is to
3518 * account for that awful fsync bug I introduced where we'd end up with
3519 * a btrfs_file_extent_item that would have its length include multiple
3520 * prealloc extents or point inside of a prealloc extent.
3522 back = find_data_backref(rec, parent, root, owner, offset, found_ref,
3525 back = alloc_data_backref(rec, parent, root, owner, offset,
3529 BUG_ON(num_refs != 1);
3530 if (back->node.found_ref)
3531 BUG_ON(back->bytes != max_size);
3532 back->node.found_ref = 1;
3533 back->found_ref += 1;
3534 back->bytes = max_size;
3535 back->disk_bytenr = bytenr;
3537 rec->content_checked = 1;
3538 rec->owner_ref_checked = 1;
3540 if (back->node.found_extent_tree) {
3541 fprintf(stderr, "Extent back ref already exists "
3542 "for %llu parent %llu root %llu "
3543 "owner %llu offset %llu num_refs %lu\n",
3544 (unsigned long long)bytenr,
3545 (unsigned long long)parent,
3546 (unsigned long long)root,
3547 (unsigned long long)owner,
3548 (unsigned long long)offset,
3549 (unsigned long)num_refs);
3551 back->num_refs = num_refs;
3552 back->node.found_extent_tree = 1;
3554 maybe_free_extent_rec(extent_cache, rec);
3558 static int add_pending(struct cache_tree *pending,
3559 struct cache_tree *seen, u64 bytenr, u32 size)
3562 ret = add_cache_extent(seen, bytenr, size);
3565 add_cache_extent(pending, bytenr, size);
3569 static int pick_next_pending(struct cache_tree *pending,
3570 struct cache_tree *reada,
3571 struct cache_tree *nodes,
3572 u64 last, struct block_info *bits, int bits_nr,
3575 unsigned long node_start = last;
3576 struct cache_extent *cache;
3579 cache = search_cache_extent(reada, 0);
3581 bits[0].start = cache->start;
3582 bits[0].size = cache->size;
3587 if (node_start > 32768)
3588 node_start -= 32768;
3590 cache = search_cache_extent(nodes, node_start);
3592 cache = search_cache_extent(nodes, 0);
3595 cache = search_cache_extent(pending, 0);
3600 bits[ret].start = cache->start;
3601 bits[ret].size = cache->size;
3602 cache = next_cache_extent(cache);
3604 } while (cache && ret < bits_nr);
3610 bits[ret].start = cache->start;
3611 bits[ret].size = cache->size;
3612 cache = next_cache_extent(cache);
3614 } while (cache && ret < bits_nr);
3616 if (bits_nr - ret > 8) {
3617 u64 lookup = bits[0].start + bits[0].size;
3618 struct cache_extent *next;
3619 next = search_cache_extent(pending, lookup);
3621 if (next->start - lookup > 32768)
3623 bits[ret].start = next->start;
3624 bits[ret].size = next->size;
3625 lookup = next->start + next->size;
3629 next = next_cache_extent(next);
3637 static void free_chunk_record(struct cache_extent *cache)
3639 struct chunk_record *rec;
3641 rec = container_of(cache, struct chunk_record, cache);
3642 list_del_init(&rec->list);
3643 list_del_init(&rec->dextents);
3647 void free_chunk_cache_tree(struct cache_tree *chunk_cache)
3649 cache_tree_free_extents(chunk_cache, free_chunk_record);
3652 static void free_device_record(struct rb_node *node)
3654 struct device_record *rec;
3656 rec = container_of(node, struct device_record, node);
3660 FREE_RB_BASED_TREE(device_cache, free_device_record);
3662 int insert_block_group_record(struct block_group_tree *tree,
3663 struct block_group_record *bg_rec)
3667 ret = insert_cache_extent(&tree->tree, &bg_rec->cache);
3671 list_add_tail(&bg_rec->list, &tree->block_groups);
3675 static void free_block_group_record(struct cache_extent *cache)
3677 struct block_group_record *rec;
3679 rec = container_of(cache, struct block_group_record, cache);
3680 list_del_init(&rec->list);
3684 void free_block_group_tree(struct block_group_tree *tree)
3686 cache_tree_free_extents(&tree->tree, free_block_group_record);
3689 int insert_device_extent_record(struct device_extent_tree *tree,
3690 struct device_extent_record *de_rec)
3695 * Device extent is a bit different from the other extents, because
3696 * the extents which belong to the different devices may have the
3697 * same start and size, so we need use the special extent cache
3698 * search/insert functions.
3700 ret = insert_cache_extent2(&tree->tree, &de_rec->cache);
3704 list_add_tail(&de_rec->chunk_list, &tree->no_chunk_orphans);
3705 list_add_tail(&de_rec->device_list, &tree->no_device_orphans);
3709 static void free_device_extent_record(struct cache_extent *cache)
3711 struct device_extent_record *rec;
3713 rec = container_of(cache, struct device_extent_record, cache);
3714 if (!list_empty(&rec->chunk_list))
3715 list_del_init(&rec->chunk_list);
3716 if (!list_empty(&rec->device_list))
3717 list_del_init(&rec->device_list);
3721 void free_device_extent_tree(struct device_extent_tree *tree)
3723 cache_tree_free_extents(&tree->tree, free_device_extent_record);
3726 #ifdef BTRFS_COMPAT_EXTENT_TREE_V0
3727 static int process_extent_ref_v0(struct cache_tree *extent_cache,
3728 struct extent_buffer *leaf, int slot)
3730 struct btrfs_extent_ref_v0 *ref0;
3731 struct btrfs_key key;
3733 btrfs_item_key_to_cpu(leaf, &key, slot);
3734 ref0 = btrfs_item_ptr(leaf, slot, struct btrfs_extent_ref_v0);
3735 if (btrfs_ref_objectid_v0(leaf, ref0) < BTRFS_FIRST_FREE_OBJECTID) {
3736 add_tree_backref(extent_cache, key.objectid, key.offset, 0, 0);
3738 add_data_backref(extent_cache, key.objectid, key.offset, 0,
3739 0, 0, btrfs_ref_count_v0(leaf, ref0), 0, 0);
3745 struct chunk_record *btrfs_new_chunk_record(struct extent_buffer *leaf,
3746 struct btrfs_key *key,
3749 struct btrfs_chunk *ptr;
3750 struct chunk_record *rec;
3753 ptr = btrfs_item_ptr(leaf, slot, struct btrfs_chunk);
3754 num_stripes = btrfs_chunk_num_stripes(leaf, ptr);
3756 rec = malloc(btrfs_chunk_record_size(num_stripes));
3758 fprintf(stderr, "memory allocation failed\n");
3762 memset(rec, 0, btrfs_chunk_record_size(num_stripes));
3764 INIT_LIST_HEAD(&rec->list);
3765 INIT_LIST_HEAD(&rec->dextents);
3768 rec->cache.start = key->offset;
3769 rec->cache.size = btrfs_chunk_length(leaf, ptr);
3771 rec->generation = btrfs_header_generation(leaf);
3773 rec->objectid = key->objectid;
3774 rec->type = key->type;
3775 rec->offset = key->offset;
3777 rec->length = rec->cache.size;
3778 rec->owner = btrfs_chunk_owner(leaf, ptr);
3779 rec->stripe_len = btrfs_chunk_stripe_len(leaf, ptr);
3780 rec->type_flags = btrfs_chunk_type(leaf, ptr);
3781 rec->io_width = btrfs_chunk_io_width(leaf, ptr);
3782 rec->io_align = btrfs_chunk_io_align(leaf, ptr);
3783 rec->sector_size = btrfs_chunk_sector_size(leaf, ptr);
3784 rec->num_stripes = num_stripes;
3785 rec->sub_stripes = btrfs_chunk_sub_stripes(leaf, ptr);
3787 for (i = 0; i < rec->num_stripes; ++i) {
3788 rec->stripes[i].devid =
3789 btrfs_stripe_devid_nr(leaf, ptr, i);
3790 rec->stripes[i].offset =
3791 btrfs_stripe_offset_nr(leaf, ptr, i);
3792 read_extent_buffer(leaf, rec->stripes[i].dev_uuid,
3793 (unsigned long)btrfs_stripe_dev_uuid_nr(ptr, i),
3800 static int process_chunk_item(struct cache_tree *chunk_cache,
3801 struct btrfs_key *key, struct extent_buffer *eb,
3804 struct chunk_record *rec;
3807 rec = btrfs_new_chunk_record(eb, key, slot);
3808 ret = insert_cache_extent(chunk_cache, &rec->cache);
3810 fprintf(stderr, "Chunk[%llu, %llu] existed.\n",
3811 rec->offset, rec->length);
3818 static int process_device_item(struct rb_root *dev_cache,
3819 struct btrfs_key *key, struct extent_buffer *eb, int slot)
3821 struct btrfs_dev_item *ptr;
3822 struct device_record *rec;
3825 ptr = btrfs_item_ptr(eb,
3826 slot, struct btrfs_dev_item);
3828 rec = malloc(sizeof(*rec));
3830 fprintf(stderr, "memory allocation failed\n");
3834 rec->devid = key->offset;
3835 rec->generation = btrfs_header_generation(eb);
3837 rec->objectid = key->objectid;
3838 rec->type = key->type;
3839 rec->offset = key->offset;
3841 rec->devid = btrfs_device_id(eb, ptr);
3842 rec->total_byte = btrfs_device_total_bytes(eb, ptr);
3843 rec->byte_used = btrfs_device_bytes_used(eb, ptr);
3845 ret = rb_insert(dev_cache, &rec->node, device_record_compare);
3847 fprintf(stderr, "Device[%llu] existed.\n", rec->devid);
3854 struct block_group_record *
3855 btrfs_new_block_group_record(struct extent_buffer *leaf, struct btrfs_key *key,
3858 struct btrfs_block_group_item *ptr;
3859 struct block_group_record *rec;
3861 rec = malloc(sizeof(*rec));
3863 fprintf(stderr, "memory allocation failed\n");
3866 memset(rec, 0, sizeof(*rec));
3868 rec->cache.start = key->objectid;
3869 rec->cache.size = key->offset;
3871 rec->generation = btrfs_header_generation(leaf);
3873 rec->objectid = key->objectid;
3874 rec->type = key->type;
3875 rec->offset = key->offset;
3877 ptr = btrfs_item_ptr(leaf, slot, struct btrfs_block_group_item);
3878 rec->flags = btrfs_disk_block_group_flags(leaf, ptr);
3880 INIT_LIST_HEAD(&rec->list);
3885 static int process_block_group_item(struct block_group_tree *block_group_cache,
3886 struct btrfs_key *key,
3887 struct extent_buffer *eb, int slot)
3889 struct block_group_record *rec;
3892 rec = btrfs_new_block_group_record(eb, key, slot);
3893 ret = insert_block_group_record(block_group_cache, rec);
3895 fprintf(stderr, "Block Group[%llu, %llu] existed.\n",
3896 rec->objectid, rec->offset);
3903 struct device_extent_record *
3904 btrfs_new_device_extent_record(struct extent_buffer *leaf,
3905 struct btrfs_key *key, int slot)
3907 struct device_extent_record *rec;
3908 struct btrfs_dev_extent *ptr;
3910 rec = malloc(sizeof(*rec));
3912 fprintf(stderr, "memory allocation failed\n");
3915 memset(rec, 0, sizeof(*rec));
3917 rec->cache.objectid = key->objectid;
3918 rec->cache.start = key->offset;
3920 rec->generation = btrfs_header_generation(leaf);
3922 rec->objectid = key->objectid;
3923 rec->type = key->type;
3924 rec->offset = key->offset;
3926 ptr = btrfs_item_ptr(leaf, slot, struct btrfs_dev_extent);
3927 rec->chunk_objecteid =
3928 btrfs_dev_extent_chunk_objectid(leaf, ptr);
3930 btrfs_dev_extent_chunk_offset(leaf, ptr);
3931 rec->length = btrfs_dev_extent_length(leaf, ptr);
3932 rec->cache.size = rec->length;
3934 INIT_LIST_HEAD(&rec->chunk_list);
3935 INIT_LIST_HEAD(&rec->device_list);
3941 process_device_extent_item(struct device_extent_tree *dev_extent_cache,
3942 struct btrfs_key *key, struct extent_buffer *eb,
3945 struct device_extent_record *rec;
3948 rec = btrfs_new_device_extent_record(eb, key, slot);
3949 ret = insert_device_extent_record(dev_extent_cache, rec);
3952 "Device extent[%llu, %llu, %llu] existed.\n",
3953 rec->objectid, rec->offset, rec->length);
3960 static int process_extent_item(struct btrfs_root *root,
3961 struct cache_tree *extent_cache,
3962 struct extent_buffer *eb, int slot)
3964 struct btrfs_extent_item *ei;
3965 struct btrfs_extent_inline_ref *iref;
3966 struct btrfs_extent_data_ref *dref;
3967 struct btrfs_shared_data_ref *sref;
3968 struct btrfs_key key;
3972 u32 item_size = btrfs_item_size_nr(eb, slot);
3978 btrfs_item_key_to_cpu(eb, &key, slot);
3980 if (key.type == BTRFS_METADATA_ITEM_KEY) {
3982 num_bytes = root->leafsize;
3984 num_bytes = key.offset;
3987 if (item_size < sizeof(*ei)) {
3988 #ifdef BTRFS_COMPAT_EXTENT_TREE_V0
3989 struct btrfs_extent_item_v0 *ei0;
3990 BUG_ON(item_size != sizeof(*ei0));
3991 ei0 = btrfs_item_ptr(eb, slot, struct btrfs_extent_item_v0);
3992 refs = btrfs_extent_refs_v0(eb, ei0);
3996 return add_extent_rec(extent_cache, NULL, 0, key.objectid,
3997 num_bytes, refs, 0, 0, 0, metadata, 1,
4001 ei = btrfs_item_ptr(eb, slot, struct btrfs_extent_item);
4002 refs = btrfs_extent_refs(eb, ei);
4004 add_extent_rec(extent_cache, NULL, 0, key.objectid, num_bytes,
4005 refs, 0, 0, 0, metadata, 1, num_bytes);
4007 ptr = (unsigned long)(ei + 1);
4008 if (btrfs_extent_flags(eb, ei) & BTRFS_EXTENT_FLAG_TREE_BLOCK &&
4009 key.type == BTRFS_EXTENT_ITEM_KEY)
4010 ptr += sizeof(struct btrfs_tree_block_info);
4012 end = (unsigned long)ei + item_size;
4014 iref = (struct btrfs_extent_inline_ref *)ptr;
4015 type = btrfs_extent_inline_ref_type(eb, iref);
4016 offset = btrfs_extent_inline_ref_offset(eb, iref);
4018 case BTRFS_TREE_BLOCK_REF_KEY:
4019 add_tree_backref(extent_cache, key.objectid,
4022 case BTRFS_SHARED_BLOCK_REF_KEY:
4023 add_tree_backref(extent_cache, key.objectid,
4026 case BTRFS_EXTENT_DATA_REF_KEY:
4027 dref = (struct btrfs_extent_data_ref *)(&iref->offset);
4028 add_data_backref(extent_cache, key.objectid, 0,
4029 btrfs_extent_data_ref_root(eb, dref),
4030 btrfs_extent_data_ref_objectid(eb,
4032 btrfs_extent_data_ref_offset(eb, dref),
4033 btrfs_extent_data_ref_count(eb, dref),
4036 case BTRFS_SHARED_DATA_REF_KEY:
4037 sref = (struct btrfs_shared_data_ref *)(iref + 1);
4038 add_data_backref(extent_cache, key.objectid, offset,
4040 btrfs_shared_data_ref_count(eb, sref),
4044 fprintf(stderr, "corrupt extent record: key %Lu %u %Lu\n",
4045 key.objectid, key.type, num_bytes);
4048 ptr += btrfs_extent_inline_ref_size(type);
4055 static int check_cache_range(struct btrfs_root *root,
4056 struct btrfs_block_group_cache *cache,
4057 u64 offset, u64 bytes)
4059 struct btrfs_free_space *entry;
4065 for (i = 0; i < BTRFS_SUPER_MIRROR_MAX; i++) {
4066 bytenr = btrfs_sb_offset(i);
4067 ret = btrfs_rmap_block(&root->fs_info->mapping_tree,
4068 cache->key.objectid, bytenr, 0,
4069 &logical, &nr, &stripe_len);
4074 if (logical[nr] + stripe_len <= offset)
4076 if (offset + bytes <= logical[nr])
4078 if (logical[nr] == offset) {
4079 if (stripe_len >= bytes) {
4083 bytes -= stripe_len;
4084 offset += stripe_len;
4085 } else if (logical[nr] < offset) {
4086 if (logical[nr] + stripe_len >=
4091 bytes = (offset + bytes) -
4092 (logical[nr] + stripe_len);
4093 offset = logical[nr] + stripe_len;
4096 * Could be tricky, the super may land in the
4097 * middle of the area we're checking. First
4098 * check the easiest case, it's at the end.
4100 if (logical[nr] + stripe_len >=
4102 bytes = logical[nr] - offset;
4106 /* Check the left side */
4107 ret = check_cache_range(root, cache,
4109 logical[nr] - offset);
4115 /* Now we continue with the right side */
4116 bytes = (offset + bytes) -
4117 (logical[nr] + stripe_len);
4118 offset = logical[nr] + stripe_len;
4125 entry = btrfs_find_free_space(cache->free_space_ctl, offset, bytes);
4127 fprintf(stderr, "There is no free space entry for %Lu-%Lu\n",
4128 offset, offset+bytes);
4132 if (entry->offset != offset) {
4133 fprintf(stderr, "Wanted offset %Lu, found %Lu\n", offset,
4138 if (entry->bytes != bytes) {
4139 fprintf(stderr, "Wanted bytes %Lu, found %Lu for off %Lu\n",
4140 bytes, entry->bytes, offset);
4144 unlink_free_space(cache->free_space_ctl, entry);
4149 static int verify_space_cache(struct btrfs_root *root,
4150 struct btrfs_block_group_cache *cache)
4152 struct btrfs_path *path;
4153 struct extent_buffer *leaf;
4154 struct btrfs_key key;
4158 path = btrfs_alloc_path();
4162 root = root->fs_info->extent_root;
4164 last = max_t(u64, cache->key.objectid, BTRFS_SUPER_INFO_OFFSET);
4166 key.objectid = last;
4168 key.type = BTRFS_EXTENT_ITEM_KEY;
4170 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
4175 if (path->slots[0] >= btrfs_header_nritems(path->nodes[0])) {
4176 ret = btrfs_next_leaf(root, path);
4184 leaf = path->nodes[0];
4185 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
4186 if (key.objectid >= cache->key.offset + cache->key.objectid)
4188 if (key.type != BTRFS_EXTENT_ITEM_KEY &&
4189 key.type != BTRFS_METADATA_ITEM_KEY) {
4194 if (last == key.objectid) {
4195 if (key.type == BTRFS_EXTENT_ITEM_KEY)
4196 last = key.objectid + key.offset;
4198 last = key.objectid + root->leafsize;
4203 ret = check_cache_range(root, cache, last,
4204 key.objectid - last);
4207 if (key.type == BTRFS_EXTENT_ITEM_KEY)
4208 last = key.objectid + key.offset;
4210 last = key.objectid + root->leafsize;
4214 if (last < cache->key.objectid + cache->key.offset)
4215 ret = check_cache_range(root, cache, last,
4216 cache->key.objectid +
4217 cache->key.offset - last);
4220 btrfs_free_path(path);
4223 !RB_EMPTY_ROOT(&cache->free_space_ctl->free_space_offset)) {
4224 fprintf(stderr, "There are still entries left in the space "
4232 static int check_space_cache(struct btrfs_root *root)
4234 struct btrfs_block_group_cache *cache;
4235 u64 start = BTRFS_SUPER_INFO_OFFSET + BTRFS_SUPER_INFO_SIZE;
4239 if (btrfs_super_cache_generation(root->fs_info->super_copy) != -1ULL &&
4240 btrfs_super_generation(root->fs_info->super_copy) !=
4241 btrfs_super_cache_generation(root->fs_info->super_copy)) {
4242 printf("cache and super generation don't match, space cache "
4243 "will be invalidated\n");
4248 cache = btrfs_lookup_first_block_group(root->fs_info, start);
4252 start = cache->key.objectid + cache->key.offset;
4253 if (!cache->free_space_ctl) {
4254 if (btrfs_init_free_space_ctl(cache,
4255 root->sectorsize)) {
4260 btrfs_remove_free_space_cache(cache);
4263 ret = load_free_space_cache(root->fs_info, cache);
4267 ret = verify_space_cache(root, cache);
4269 fprintf(stderr, "cache appears valid but isnt %Lu\n",
4270 cache->key.objectid);
4275 return error ? -EINVAL : 0;
4278 static int read_extent_data(struct btrfs_root *root, char *data,
4279 u64 logical, u64 *len, int mirror)
4282 struct btrfs_multi_bio *multi = NULL;
4283 struct btrfs_fs_info *info = root->fs_info;
4284 struct btrfs_device *device;
4288 ret = btrfs_map_block(&info->mapping_tree, READ, logical, len,
4289 &multi, mirror, NULL);
4291 fprintf(stderr, "Couldn't map the block %llu\n",
4295 device = multi->stripes[0].dev;
4297 if (device->fd == 0)
4302 ret = pread64(device->fd, data, *len, multi->stripes[0].physical);
4312 static int check_extent_csums(struct btrfs_root *root, u64 bytenr,
4313 u64 num_bytes, unsigned long leaf_offset,
4314 struct extent_buffer *eb) {
4317 u16 csum_size = btrfs_super_csum_size(root->fs_info->super_copy);
4319 unsigned long csum_offset;
4323 u64 data_checked = 0;
4329 if (num_bytes % root->sectorsize)
4332 data = malloc(num_bytes);
4336 while (offset < num_bytes) {
4339 read_len = num_bytes - offset;
4340 /* read as much space once a time */
4341 ret = read_extent_data(root, data + offset,
4342 bytenr + offset, &read_len, mirror);
4346 /* verify every 4k data's checksum */
4347 while (data_checked < read_len) {
4349 tmp = offset + data_checked;
4351 csum = btrfs_csum_data(NULL, (char *)data + tmp,
4352 csum, root->sectorsize);
4353 btrfs_csum_final(csum, (char *)&csum);
4355 csum_offset = leaf_offset +
4356 tmp / root->sectorsize * csum_size;
4357 read_extent_buffer(eb, (char *)&csum_expected,
4358 csum_offset, csum_size);
4359 /* try another mirror */
4360 if (csum != csum_expected) {
4361 fprintf(stderr, "mirror %d bytenr %llu csum %u expected csum %u\n",
4362 mirror, bytenr + tmp,
4363 csum, csum_expected);
4364 num_copies = btrfs_num_copies(
4365 &root->fs_info->mapping_tree,
4367 if (mirror < num_copies - 1) {
4372 data_checked += root->sectorsize;
4381 static int check_extent_exists(struct btrfs_root *root, u64 bytenr,
4384 struct btrfs_path *path;
4385 struct extent_buffer *leaf;
4386 struct btrfs_key key;
4389 path = btrfs_alloc_path();
4391 fprintf(stderr, "Error allocing path\n");
4395 key.objectid = bytenr;
4396 key.type = BTRFS_EXTENT_ITEM_KEY;
4397 key.offset = (u64)-1;
4400 ret = btrfs_search_slot(NULL, root->fs_info->extent_root, &key, path,
4403 fprintf(stderr, "Error looking up extent record %d\n", ret);
4404 btrfs_free_path(path);
4407 if (path->slots[0] > 0) {
4410 ret = btrfs_prev_leaf(root, path);
4413 } else if (ret > 0) {
4420 btrfs_item_key_to_cpu(path->nodes[0], &key, path->slots[0]);
4423 * Block group items come before extent items if they have the same
4424 * bytenr, so walk back one more just in case. Dear future traveler,
4425 * first congrats on mastering time travel. Now if it's not too much
4426 * trouble could you go back to 2006 and tell Chris to make the
4427 * BLOCK_GROUP_ITEM_KEY (and BTRFS_*_REF_KEY) lower than the
4428 * EXTENT_ITEM_KEY please?
4430 while (key.type > BTRFS_EXTENT_ITEM_KEY) {
4431 if (path->slots[0] > 0) {
4434 ret = btrfs_prev_leaf(root, path);
4437 } else if (ret > 0) {
4442 btrfs_item_key_to_cpu(path->nodes[0], &key, path->slots[0]);
4446 if (path->slots[0] >= btrfs_header_nritems(path->nodes[0])) {
4447 ret = btrfs_next_leaf(root, path);
4449 fprintf(stderr, "Error going to next leaf "
4451 btrfs_free_path(path);
4457 leaf = path->nodes[0];
4458 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
4459 if (key.type != BTRFS_EXTENT_ITEM_KEY) {
4463 if (key.objectid + key.offset < bytenr) {
4467 if (key.objectid > bytenr + num_bytes)
4470 if (key.objectid == bytenr) {
4471 if (key.offset >= num_bytes) {
4475 num_bytes -= key.offset;
4476 bytenr += key.offset;
4477 } else if (key.objectid < bytenr) {
4478 if (key.objectid + key.offset >= bytenr + num_bytes) {
4482 num_bytes = (bytenr + num_bytes) -
4483 (key.objectid + key.offset);
4484 bytenr = key.objectid + key.offset;
4486 if (key.objectid + key.offset < bytenr + num_bytes) {
4487 u64 new_start = key.objectid + key.offset;
4488 u64 new_bytes = bytenr + num_bytes - new_start;
4491 * Weird case, the extent is in the middle of
4492 * our range, we'll have to search one side
4493 * and then the other. Not sure if this happens
4494 * in real life, but no harm in coding it up
4495 * anyway just in case.
4497 btrfs_release_path(path);
4498 ret = check_extent_exists(root, new_start,
4501 fprintf(stderr, "Right section didn't "
4505 num_bytes = key.objectid - bytenr;
4508 num_bytes = key.objectid - bytenr;
4515 if (num_bytes && !ret) {
4516 fprintf(stderr, "There are no extents for csum range "
4517 "%Lu-%Lu\n", bytenr, bytenr+num_bytes);
4521 btrfs_free_path(path);
4525 static int check_csums(struct btrfs_root *root)
4527 struct btrfs_path *path;
4528 struct extent_buffer *leaf;
4529 struct btrfs_key key;
4530 u64 offset = 0, num_bytes = 0;
4531 u16 csum_size = btrfs_super_csum_size(root->fs_info->super_copy);
4535 unsigned long leaf_offset;
4537 root = root->fs_info->csum_root;
4538 if (!extent_buffer_uptodate(root->node)) {
4539 fprintf(stderr, "No valid csum tree found\n");
4543 key.objectid = BTRFS_EXTENT_CSUM_OBJECTID;
4544 key.type = BTRFS_EXTENT_CSUM_KEY;
4547 path = btrfs_alloc_path();
4551 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
4553 fprintf(stderr, "Error searching csum tree %d\n", ret);
4554 btrfs_free_path(path);
4558 if (ret > 0 && path->slots[0])
4563 if (path->slots[0] >= btrfs_header_nritems(path->nodes[0])) {
4564 ret = btrfs_next_leaf(root, path);
4566 fprintf(stderr, "Error going to next leaf "
4573 leaf = path->nodes[0];
4575 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
4576 if (key.type != BTRFS_EXTENT_CSUM_KEY) {
4581 data_len = (btrfs_item_size_nr(leaf, path->slots[0]) /
4582 csum_size) * root->sectorsize;
4583 if (!check_data_csum)
4584 goto skip_csum_check;
4585 leaf_offset = btrfs_item_ptr_offset(leaf, path->slots[0]);
4586 ret = check_extent_csums(root, key.offset, data_len,
4592 offset = key.offset;
4593 } else if (key.offset != offset + num_bytes) {
4594 ret = check_extent_exists(root, offset, num_bytes);
4596 fprintf(stderr, "Csum exists for %Lu-%Lu but "
4597 "there is no extent record\n",
4598 offset, offset+num_bytes);
4601 offset = key.offset;
4604 num_bytes += data_len;
4608 btrfs_free_path(path);
4612 static int is_dropped_key(struct btrfs_key *key,
4613 struct btrfs_key *drop_key) {
4614 if (key->objectid < drop_key->objectid)
4616 else if (key->objectid == drop_key->objectid) {
4617 if (key->type < drop_key->type)
4619 else if (key->type == drop_key->type) {
4620 if (key->offset < drop_key->offset)
4627 static int run_next_block(struct btrfs_trans_handle *trans,
4628 struct btrfs_root *root,
4629 struct block_info *bits,
4632 struct cache_tree *pending,
4633 struct cache_tree *seen,
4634 struct cache_tree *reada,
4635 struct cache_tree *nodes,
4636 struct cache_tree *extent_cache,
4637 struct cache_tree *chunk_cache,
4638 struct rb_root *dev_cache,
4639 struct block_group_tree *block_group_cache,
4640 struct device_extent_tree *dev_extent_cache,
4641 struct btrfs_root_item *ri)
4643 struct extent_buffer *buf;
4654 struct btrfs_key key;
4655 struct cache_extent *cache;
4658 nritems = pick_next_pending(pending, reada, nodes, *last, bits,
4659 bits_nr, &reada_bits);
4664 for(i = 0; i < nritems; i++) {
4665 ret = add_cache_extent(reada, bits[i].start,
4670 /* fixme, get the parent transid */
4671 readahead_tree_block(root, bits[i].start,
4675 *last = bits[0].start;
4676 bytenr = bits[0].start;
4677 size = bits[0].size;
4679 cache = lookup_cache_extent(pending, bytenr, size);
4681 remove_cache_extent(pending, cache);
4684 cache = lookup_cache_extent(reada, bytenr, size);
4686 remove_cache_extent(reada, cache);
4689 cache = lookup_cache_extent(nodes, bytenr, size);
4691 remove_cache_extent(nodes, cache);
4694 cache = lookup_cache_extent(extent_cache, bytenr, size);
4696 struct extent_record *rec;
4698 rec = container_of(cache, struct extent_record, cache);
4699 gen = rec->parent_generation;
4702 /* fixme, get the real parent transid */
4703 buf = read_tree_block(root, bytenr, size, gen);
4704 if (!extent_buffer_uptodate(buf)) {
4705 record_bad_block_io(root->fs_info,
4706 extent_cache, bytenr, size);
4710 nritems = btrfs_header_nritems(buf);
4713 * FIXME, this only works only if we don't have any full
4716 if (!init_extent_tree) {
4717 ret = btrfs_lookup_extent_info(NULL, root, bytenr,
4718 btrfs_header_level(buf), 1, NULL,
4726 if (flags & BTRFS_BLOCK_FLAG_FULL_BACKREF) {
4731 owner = btrfs_header_owner(buf);
4734 ret = check_block(trans, root, extent_cache, buf, flags);
4738 if (btrfs_is_leaf(buf)) {
4739 btree_space_waste += btrfs_leaf_free_space(root, buf);
4740 for (i = 0; i < nritems; i++) {
4741 struct btrfs_file_extent_item *fi;
4742 btrfs_item_key_to_cpu(buf, &key, i);
4743 if (key.type == BTRFS_EXTENT_ITEM_KEY) {
4744 process_extent_item(root, extent_cache, buf,
4748 if (key.type == BTRFS_METADATA_ITEM_KEY) {
4749 process_extent_item(root, extent_cache, buf,
4753 if (key.type == BTRFS_EXTENT_CSUM_KEY) {
4755 btrfs_item_size_nr(buf, i);
4758 if (key.type == BTRFS_CHUNK_ITEM_KEY) {
4759 process_chunk_item(chunk_cache, &key, buf, i);
4762 if (key.type == BTRFS_DEV_ITEM_KEY) {
4763 process_device_item(dev_cache, &key, buf, i);
4766 if (key.type == BTRFS_BLOCK_GROUP_ITEM_KEY) {
4767 process_block_group_item(block_group_cache,
4771 if (key.type == BTRFS_DEV_EXTENT_KEY) {
4772 process_device_extent_item(dev_extent_cache,
4777 if (key.type == BTRFS_EXTENT_REF_V0_KEY) {
4778 #ifdef BTRFS_COMPAT_EXTENT_TREE_V0
4779 process_extent_ref_v0(extent_cache, buf, i);
4786 if (key.type == BTRFS_TREE_BLOCK_REF_KEY) {
4787 add_tree_backref(extent_cache, key.objectid, 0,
4791 if (key.type == BTRFS_SHARED_BLOCK_REF_KEY) {
4792 add_tree_backref(extent_cache, key.objectid,
4796 if (key.type == BTRFS_EXTENT_DATA_REF_KEY) {
4797 struct btrfs_extent_data_ref *ref;
4798 ref = btrfs_item_ptr(buf, i,
4799 struct btrfs_extent_data_ref);
4800 add_data_backref(extent_cache,
4802 btrfs_extent_data_ref_root(buf, ref),
4803 btrfs_extent_data_ref_objectid(buf,
4805 btrfs_extent_data_ref_offset(buf, ref),
4806 btrfs_extent_data_ref_count(buf, ref),
4807 0, root->sectorsize);
4810 if (key.type == BTRFS_SHARED_DATA_REF_KEY) {
4811 struct btrfs_shared_data_ref *ref;
4812 ref = btrfs_item_ptr(buf, i,
4813 struct btrfs_shared_data_ref);
4814 add_data_backref(extent_cache,
4815 key.objectid, key.offset, 0, 0, 0,
4816 btrfs_shared_data_ref_count(buf, ref),
4817 0, root->sectorsize);
4820 if (key.type == BTRFS_ORPHAN_ITEM_KEY) {
4821 struct bad_item *bad;
4823 if (key.objectid == BTRFS_ORPHAN_OBJECTID)
4827 bad = malloc(sizeof(struct bad_item));
4830 INIT_LIST_HEAD(&bad->list);
4831 memcpy(&bad->key, &key,
4832 sizeof(struct btrfs_key));
4833 bad->root_id = owner;
4834 list_add_tail(&bad->list, &delete_items);
4837 if (key.type != BTRFS_EXTENT_DATA_KEY)
4839 fi = btrfs_item_ptr(buf, i,
4840 struct btrfs_file_extent_item);
4841 if (btrfs_file_extent_type(buf, fi) ==
4842 BTRFS_FILE_EXTENT_INLINE)
4844 if (btrfs_file_extent_disk_bytenr(buf, fi) == 0)
4847 data_bytes_allocated +=
4848 btrfs_file_extent_disk_num_bytes(buf, fi);
4849 if (data_bytes_allocated < root->sectorsize) {
4852 data_bytes_referenced +=
4853 btrfs_file_extent_num_bytes(buf, fi);
4854 add_data_backref(extent_cache,
4855 btrfs_file_extent_disk_bytenr(buf, fi),
4856 parent, owner, key.objectid, key.offset -
4857 btrfs_file_extent_offset(buf, fi), 1, 1,
4858 btrfs_file_extent_disk_num_bytes(buf, fi));
4862 struct btrfs_key first_key;
4864 first_key.objectid = 0;
4867 btrfs_item_key_to_cpu(buf, &first_key, 0);
4868 level = btrfs_header_level(buf);
4869 for (i = 0; i < nritems; i++) {
4870 ptr = btrfs_node_blockptr(buf, i);
4871 size = btrfs_level_size(root, level - 1);
4872 btrfs_node_key_to_cpu(buf, &key, i);
4874 struct btrfs_key drop_key;
4875 btrfs_disk_key_to_cpu(&drop_key,
4876 &ri->drop_progress);
4877 if ((level == ri->drop_level)
4878 && is_dropped_key(&key, &drop_key)) {
4882 ret = add_extent_rec(extent_cache, &key,
4883 btrfs_node_ptr_generation(buf, i),
4884 ptr, size, 0, 0, 1, 0, 1, 0,
4888 add_tree_backref(extent_cache, ptr, parent, owner, 1);
4891 add_pending(nodes, seen, ptr, size);
4893 add_pending(pending, seen, ptr, size);
4896 btree_space_waste += (BTRFS_NODEPTRS_PER_BLOCK(root) -
4897 nritems) * sizeof(struct btrfs_key_ptr);
4899 total_btree_bytes += buf->len;
4900 if (fs_root_objectid(btrfs_header_owner(buf)))
4901 total_fs_tree_bytes += buf->len;
4902 if (btrfs_header_owner(buf) == BTRFS_EXTENT_TREE_OBJECTID)
4903 total_extent_tree_bytes += buf->len;
4904 if (!found_old_backref &&
4905 btrfs_header_owner(buf) == BTRFS_TREE_RELOC_OBJECTID &&
4906 btrfs_header_backref_rev(buf) == BTRFS_MIXED_BACKREF_REV &&
4907 !btrfs_header_flag(buf, BTRFS_HEADER_FLAG_RELOC))
4908 found_old_backref = 1;
4910 free_extent_buffer(buf);
4914 static int add_root_to_pending(struct extent_buffer *buf,
4915 struct cache_tree *extent_cache,
4916 struct cache_tree *pending,
4917 struct cache_tree *seen,
4918 struct cache_tree *nodes,
4919 struct btrfs_key *root_key)
4921 if (btrfs_header_level(buf) > 0)
4922 add_pending(nodes, seen, buf->start, buf->len);
4924 add_pending(pending, seen, buf->start, buf->len);
4925 add_extent_rec(extent_cache, NULL, 0, buf->start, buf->len,
4926 0, 1, 1, 0, 1, 0, buf->len);
4928 if (root_key->objectid == BTRFS_TREE_RELOC_OBJECTID ||
4929 btrfs_header_backref_rev(buf) < BTRFS_MIXED_BACKREF_REV)
4930 add_tree_backref(extent_cache, buf->start, buf->start,
4933 add_tree_backref(extent_cache, buf->start, 0,
4934 root_key->objectid, 1);
4938 /* as we fix the tree, we might be deleting blocks that
4939 * we're tracking for repair. This hook makes sure we
4940 * remove any backrefs for blocks as we are fixing them.
4942 static int free_extent_hook(struct btrfs_trans_handle *trans,
4943 struct btrfs_root *root,
4944 u64 bytenr, u64 num_bytes, u64 parent,
4945 u64 root_objectid, u64 owner, u64 offset,
4948 struct extent_record *rec;
4949 struct cache_extent *cache;
4951 struct cache_tree *extent_cache = root->fs_info->fsck_extent_cache;
4953 is_data = owner >= BTRFS_FIRST_FREE_OBJECTID;
4954 cache = lookup_cache_extent(extent_cache, bytenr, num_bytes);
4958 rec = container_of(cache, struct extent_record, cache);
4960 struct data_backref *back;
4961 back = find_data_backref(rec, parent, root_objectid, owner,
4962 offset, 1, bytenr, num_bytes);
4965 if (back->node.found_ref) {
4966 back->found_ref -= refs_to_drop;
4968 rec->refs -= refs_to_drop;
4970 if (back->node.found_extent_tree) {
4971 back->num_refs -= refs_to_drop;
4972 if (rec->extent_item_refs)
4973 rec->extent_item_refs -= refs_to_drop;
4975 if (back->found_ref == 0)
4976 back->node.found_ref = 0;
4977 if (back->num_refs == 0)
4978 back->node.found_extent_tree = 0;
4980 if (!back->node.found_extent_tree && back->node.found_ref) {
4981 list_del(&back->node.list);
4985 struct tree_backref *back;
4986 back = find_tree_backref(rec, parent, root_objectid);
4989 if (back->node.found_ref) {
4992 back->node.found_ref = 0;
4994 if (back->node.found_extent_tree) {
4995 if (rec->extent_item_refs)
4996 rec->extent_item_refs--;
4997 back->node.found_extent_tree = 0;
4999 if (!back->node.found_extent_tree && back->node.found_ref) {
5000 list_del(&back->node.list);
5004 maybe_free_extent_rec(extent_cache, rec);
5009 static int delete_extent_records(struct btrfs_trans_handle *trans,
5010 struct btrfs_root *root,
5011 struct btrfs_path *path,
5012 u64 bytenr, u64 new_len)
5014 struct btrfs_key key;
5015 struct btrfs_key found_key;
5016 struct extent_buffer *leaf;
5021 key.objectid = bytenr;
5023 key.offset = (u64)-1;
5026 ret = btrfs_search_slot(trans, root->fs_info->extent_root,
5033 if (path->slots[0] == 0)
5039 leaf = path->nodes[0];
5040 slot = path->slots[0];
5042 btrfs_item_key_to_cpu(leaf, &found_key, slot);
5043 if (found_key.objectid != bytenr)
5046 if (found_key.type != BTRFS_EXTENT_ITEM_KEY &&
5047 found_key.type != BTRFS_METADATA_ITEM_KEY &&
5048 found_key.type != BTRFS_TREE_BLOCK_REF_KEY &&
5049 found_key.type != BTRFS_EXTENT_DATA_REF_KEY &&
5050 found_key.type != BTRFS_EXTENT_REF_V0_KEY &&
5051 found_key.type != BTRFS_SHARED_BLOCK_REF_KEY &&
5052 found_key.type != BTRFS_SHARED_DATA_REF_KEY) {
5053 btrfs_release_path(path);
5054 if (found_key.type == 0) {
5055 if (found_key.offset == 0)
5057 key.offset = found_key.offset - 1;
5058 key.type = found_key.type;
5060 key.type = found_key.type - 1;
5061 key.offset = (u64)-1;
5065 fprintf(stderr, "repair deleting extent record: key %Lu %u %Lu\n",
5066 found_key.objectid, found_key.type, found_key.offset);
5068 ret = btrfs_del_item(trans, root->fs_info->extent_root, path);
5071 btrfs_release_path(path);
5073 if (found_key.type == BTRFS_EXTENT_ITEM_KEY ||
5074 found_key.type == BTRFS_METADATA_ITEM_KEY) {
5075 u64 bytes = (found_key.type == BTRFS_EXTENT_ITEM_KEY) ?
5076 found_key.offset : root->leafsize;
5078 ret = btrfs_update_block_group(trans, root, bytenr,
5085 btrfs_release_path(path);
5090 * for a single backref, this will allocate a new extent
5091 * and add the backref to it.
5093 static int record_extent(struct btrfs_trans_handle *trans,
5094 struct btrfs_fs_info *info,
5095 struct btrfs_path *path,
5096 struct extent_record *rec,
5097 struct extent_backref *back,
5098 int allocated, u64 flags)
5101 struct btrfs_root *extent_root = info->extent_root;
5102 struct extent_buffer *leaf;
5103 struct btrfs_key ins_key;
5104 struct btrfs_extent_item *ei;
5105 struct tree_backref *tback;
5106 struct data_backref *dback;
5107 struct btrfs_tree_block_info *bi;
5110 rec->max_size = max_t(u64, rec->max_size,
5111 info->extent_root->leafsize);
5114 u32 item_size = sizeof(*ei);
5117 item_size += sizeof(*bi);
5119 ins_key.objectid = rec->start;
5120 ins_key.offset = rec->max_size;
5121 ins_key.type = BTRFS_EXTENT_ITEM_KEY;
5123 ret = btrfs_insert_empty_item(trans, extent_root, path,
5124 &ins_key, item_size);
5128 leaf = path->nodes[0];
5129 ei = btrfs_item_ptr(leaf, path->slots[0],
5130 struct btrfs_extent_item);
5132 btrfs_set_extent_refs(leaf, ei, 0);
5133 btrfs_set_extent_generation(leaf, ei, rec->generation);
5135 if (back->is_data) {
5136 btrfs_set_extent_flags(leaf, ei,
5137 BTRFS_EXTENT_FLAG_DATA);
5139 struct btrfs_disk_key copy_key;;
5141 tback = (struct tree_backref *)back;
5142 bi = (struct btrfs_tree_block_info *)(ei + 1);
5143 memset_extent_buffer(leaf, 0, (unsigned long)bi,
5146 btrfs_set_disk_key_objectid(©_key,
5147 rec->info_objectid);
5148 btrfs_set_disk_key_type(©_key, 0);
5149 btrfs_set_disk_key_offset(©_key, 0);
5151 btrfs_set_tree_block_level(leaf, bi, rec->info_level);
5152 btrfs_set_tree_block_key(leaf, bi, ©_key);
5154 btrfs_set_extent_flags(leaf, ei,
5155 BTRFS_EXTENT_FLAG_TREE_BLOCK | flags);
5158 btrfs_mark_buffer_dirty(leaf);
5159 ret = btrfs_update_block_group(trans, extent_root, rec->start,
5160 rec->max_size, 1, 0);
5163 btrfs_release_path(path);
5166 if (back->is_data) {
5170 dback = (struct data_backref *)back;
5171 if (back->full_backref)
5172 parent = dback->parent;
5176 for (i = 0; i < dback->found_ref; i++) {
5177 /* if parent != 0, we're doing a full backref
5178 * passing BTRFS_FIRST_FREE_OBJECTID as the owner
5179 * just makes the backref allocator create a data
5182 ret = btrfs_inc_extent_ref(trans, info->extent_root,
5183 rec->start, rec->max_size,
5187 BTRFS_FIRST_FREE_OBJECTID :
5193 fprintf(stderr, "adding new data backref"
5194 " on %llu %s %llu owner %llu"
5195 " offset %llu found %d\n",
5196 (unsigned long long)rec->start,
5197 back->full_backref ?
5199 back->full_backref ?
5200 (unsigned long long)parent :
5201 (unsigned long long)dback->root,
5202 (unsigned long long)dback->owner,
5203 (unsigned long long)dback->offset,
5208 tback = (struct tree_backref *)back;
5209 if (back->full_backref)
5210 parent = tback->parent;
5214 ret = btrfs_inc_extent_ref(trans, info->extent_root,
5215 rec->start, rec->max_size,
5216 parent, tback->root, 0, 0);
5217 fprintf(stderr, "adding new tree backref on "
5218 "start %llu len %llu parent %llu root %llu\n",
5219 rec->start, rec->max_size, tback->parent, tback->root);
5224 btrfs_release_path(path);
5228 struct extent_entry {
5233 struct list_head list;
5236 static struct extent_entry *find_entry(struct list_head *entries,
5237 u64 bytenr, u64 bytes)
5239 struct extent_entry *entry = NULL;
5241 list_for_each_entry(entry, entries, list) {
5242 if (entry->bytenr == bytenr && entry->bytes == bytes)
5249 static struct extent_entry *find_most_right_entry(struct list_head *entries)
5251 struct extent_entry *entry, *best = NULL, *prev = NULL;
5253 list_for_each_entry(entry, entries, list) {
5260 * If there are as many broken entries as entries then we know
5261 * not to trust this particular entry.
5263 if (entry->broken == entry->count)
5267 * If our current entry == best then we can't be sure our best
5268 * is really the best, so we need to keep searching.
5270 if (best && best->count == entry->count) {
5276 /* Prev == entry, not good enough, have to keep searching */
5277 if (!prev->broken && prev->count == entry->count)
5281 best = (prev->count > entry->count) ? prev : entry;
5282 else if (best->count < entry->count)
5290 static int repair_ref(struct btrfs_trans_handle *trans,
5291 struct btrfs_fs_info *info, struct btrfs_path *path,
5292 struct data_backref *dback, struct extent_entry *entry)
5294 struct btrfs_root *root;
5295 struct btrfs_file_extent_item *fi;
5296 struct extent_buffer *leaf;
5297 struct btrfs_key key;
5301 key.objectid = dback->root;
5302 key.type = BTRFS_ROOT_ITEM_KEY;
5303 key.offset = (u64)-1;
5304 root = btrfs_read_fs_root(info, &key);
5306 fprintf(stderr, "Couldn't find root for our ref\n");
5311 * The backref points to the original offset of the extent if it was
5312 * split, so we need to search down to the offset we have and then walk
5313 * forward until we find the backref we're looking for.
5315 key.objectid = dback->owner;
5316 key.type = BTRFS_EXTENT_DATA_KEY;
5317 key.offset = dback->offset;
5318 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
5320 fprintf(stderr, "Error looking up ref %d\n", ret);
5325 if (path->slots[0] >= btrfs_header_nritems(path->nodes[0])) {
5326 ret = btrfs_next_leaf(root, path);
5328 fprintf(stderr, "Couldn't find our ref, next\n");
5332 leaf = path->nodes[0];
5333 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
5334 if (key.objectid != dback->owner ||
5335 key.type != BTRFS_EXTENT_DATA_KEY) {
5336 fprintf(stderr, "Couldn't find our ref, search\n");
5339 fi = btrfs_item_ptr(leaf, path->slots[0],
5340 struct btrfs_file_extent_item);
5341 bytenr = btrfs_file_extent_disk_bytenr(leaf, fi);
5342 bytes = btrfs_file_extent_disk_num_bytes(leaf, fi);
5344 if (bytenr == dback->disk_bytenr && bytes == dback->bytes)
5349 btrfs_release_path(path);
5352 * Have to make sure that this root gets updated when we commit the
5355 record_root_in_trans(trans, root);
5358 * Ok we have the key of the file extent we want to fix, now we can cow
5359 * down to the thing and fix it.
5361 ret = btrfs_search_slot(trans, root, &key, path, 0, 1);
5363 fprintf(stderr, "Error cowing down to ref [%Lu, %u, %Lu]: %d\n",
5364 key.objectid, key.type, key.offset, ret);
5368 fprintf(stderr, "Well that's odd, we just found this key "
5369 "[%Lu, %u, %Lu]\n", key.objectid, key.type,
5373 leaf = path->nodes[0];
5374 fi = btrfs_item_ptr(leaf, path->slots[0],
5375 struct btrfs_file_extent_item);
5377 if (btrfs_file_extent_compression(leaf, fi) &&
5378 dback->disk_bytenr != entry->bytenr) {
5379 fprintf(stderr, "Ref doesn't match the record start and is "
5380 "compressed, please take a btrfs-image of this file "
5381 "system and send it to a btrfs developer so they can "
5382 "complete this functionality for bytenr %Lu\n",
5383 dback->disk_bytenr);
5387 if (dback->node.broken && dback->disk_bytenr != entry->bytenr) {
5388 btrfs_set_file_extent_disk_bytenr(leaf, fi, entry->bytenr);
5389 } else if (dback->disk_bytenr > entry->bytenr) {
5390 u64 off_diff, offset;
5392 off_diff = dback->disk_bytenr - entry->bytenr;
5393 offset = btrfs_file_extent_offset(leaf, fi);
5394 if (dback->disk_bytenr + offset +
5395 btrfs_file_extent_num_bytes(leaf, fi) >
5396 entry->bytenr + entry->bytes) {
5397 fprintf(stderr, "Ref is past the entry end, please "
5398 "take a btrfs-image of this file system and "
5399 "send it to a btrfs developer, ref %Lu\n",
5400 dback->disk_bytenr);
5404 btrfs_set_file_extent_disk_bytenr(leaf, fi, entry->bytenr);
5405 btrfs_set_file_extent_offset(leaf, fi, offset);
5406 } else if (dback->disk_bytenr < entry->bytenr) {
5409 offset = btrfs_file_extent_offset(leaf, fi);
5410 if (dback->disk_bytenr + offset < entry->bytenr) {
5411 fprintf(stderr, "Ref is before the entry start, please"
5412 " take a btrfs-image of this file system and "
5413 "send it to a btrfs developer, ref %Lu\n",
5414 dback->disk_bytenr);
5418 offset += dback->disk_bytenr;
5419 offset -= entry->bytenr;
5420 btrfs_set_file_extent_disk_bytenr(leaf, fi, entry->bytenr);
5421 btrfs_set_file_extent_offset(leaf, fi, offset);
5424 btrfs_set_file_extent_disk_num_bytes(leaf, fi, entry->bytes);
5427 * Chances are if disk_num_bytes were wrong then so is ram_bytes, but
5428 * only do this if we aren't using compression, otherwise it's a
5431 if (!btrfs_file_extent_compression(leaf, fi))
5432 btrfs_set_file_extent_ram_bytes(leaf, fi, entry->bytes);
5434 printf("ram bytes may be wrong?\n");
5435 btrfs_mark_buffer_dirty(leaf);
5436 btrfs_release_path(path);
5440 static int verify_backrefs(struct btrfs_trans_handle *trans,
5441 struct btrfs_fs_info *info, struct btrfs_path *path,
5442 struct extent_record *rec)
5444 struct extent_backref *back;
5445 struct data_backref *dback;
5446 struct extent_entry *entry, *best = NULL;
5449 int broken_entries = 0;
5454 * Metadata is easy and the backrefs should always agree on bytenr and
5455 * size, if not we've got bigger issues.
5460 list_for_each_entry(back, &rec->backrefs, list) {
5461 if (back->full_backref || !back->is_data)
5464 dback = (struct data_backref *)back;
5467 * We only pay attention to backrefs that we found a real
5470 if (dback->found_ref == 0)
5474 * For now we only catch when the bytes don't match, not the
5475 * bytenr. We can easily do this at the same time, but I want
5476 * to have a fs image to test on before we just add repair
5477 * functionality willy-nilly so we know we won't screw up the
5481 entry = find_entry(&entries, dback->disk_bytenr,
5484 entry = malloc(sizeof(struct extent_entry));
5489 memset(entry, 0, sizeof(*entry));
5490 entry->bytenr = dback->disk_bytenr;
5491 entry->bytes = dback->bytes;
5492 list_add_tail(&entry->list, &entries);
5497 * If we only have on entry we may think the entries agree when
5498 * in reality they don't so we have to do some extra checking.
5500 if (dback->disk_bytenr != rec->start ||
5501 dback->bytes != rec->nr || back->broken)
5512 /* Yay all the backrefs agree, carry on good sir */
5513 if (nr_entries <= 1 && !mismatch)
5516 fprintf(stderr, "attempting to repair backref discrepency for bytenr "
5517 "%Lu\n", rec->start);
5520 * First we want to see if the backrefs can agree amongst themselves who
5521 * is right, so figure out which one of the entries has the highest
5524 best = find_most_right_entry(&entries);
5527 * Ok so we may have an even split between what the backrefs think, so
5528 * this is where we use the extent ref to see what it thinks.
5531 entry = find_entry(&entries, rec->start, rec->nr);
5532 if (!entry && (!broken_entries || !rec->found_rec)) {
5533 fprintf(stderr, "Backrefs don't agree with each other "
5534 "and extent record doesn't agree with anybody,"
5535 " so we can't fix bytenr %Lu bytes %Lu\n",
5536 rec->start, rec->nr);
5539 } else if (!entry) {
5541 * Ok our backrefs were broken, we'll assume this is the
5542 * correct value and add an entry for this range.
5544 entry = malloc(sizeof(struct extent_entry));
5549 memset(entry, 0, sizeof(*entry));
5550 entry->bytenr = rec->start;
5551 entry->bytes = rec->nr;
5552 list_add_tail(&entry->list, &entries);
5556 best = find_most_right_entry(&entries);
5558 fprintf(stderr, "Backrefs and extent record evenly "
5559 "split on who is right, this is going to "
5560 "require user input to fix bytenr %Lu bytes "
5561 "%Lu\n", rec->start, rec->nr);
5568 * I don't think this can happen currently as we'll abort() if we catch
5569 * this case higher up, but in case somebody removes that we still can't
5570 * deal with it properly here yet, so just bail out of that's the case.
5572 if (best->bytenr != rec->start) {
5573 fprintf(stderr, "Extent start and backref starts don't match, "
5574 "please use btrfs-image on this file system and send "
5575 "it to a btrfs developer so they can make fsck fix "
5576 "this particular case. bytenr is %Lu, bytes is %Lu\n",
5577 rec->start, rec->nr);
5583 * Ok great we all agreed on an extent record, let's go find the real
5584 * references and fix up the ones that don't match.
5586 list_for_each_entry(back, &rec->backrefs, list) {
5587 if (back->full_backref || !back->is_data)
5590 dback = (struct data_backref *)back;
5593 * Still ignoring backrefs that don't have a real ref attached
5596 if (dback->found_ref == 0)
5599 if (dback->bytes == best->bytes &&
5600 dback->disk_bytenr == best->bytenr)
5603 ret = repair_ref(trans, info, path, dback, best);
5609 * Ok we messed with the actual refs, which means we need to drop our
5610 * entire cache and go back and rescan. I know this is a huge pain and
5611 * adds a lot of extra work, but it's the only way to be safe. Once all
5612 * the backrefs agree we may not need to do anything to the extent
5617 while (!list_empty(&entries)) {
5618 entry = list_entry(entries.next, struct extent_entry, list);
5619 list_del_init(&entry->list);
5625 static int process_duplicates(struct btrfs_root *root,
5626 struct cache_tree *extent_cache,
5627 struct extent_record *rec)
5629 struct extent_record *good, *tmp;
5630 struct cache_extent *cache;
5634 * If we found a extent record for this extent then return, or if we
5635 * have more than one duplicate we are likely going to need to delete
5638 if (rec->found_rec || rec->num_duplicates > 1)
5641 /* Shouldn't happen but just in case */
5642 BUG_ON(!rec->num_duplicates);
5645 * So this happens if we end up with a backref that doesn't match the
5646 * actual extent entry. So either the backref is bad or the extent
5647 * entry is bad. Either way we want to have the extent_record actually
5648 * reflect what we found in the extent_tree, so we need to take the
5649 * duplicate out and use that as the extent_record since the only way we
5650 * get a duplicate is if we find a real life BTRFS_EXTENT_ITEM_KEY.
5652 remove_cache_extent(extent_cache, &rec->cache);
5654 good = list_entry(rec->dups.next, struct extent_record, list);
5655 list_del_init(&good->list);
5656 INIT_LIST_HEAD(&good->backrefs);
5657 INIT_LIST_HEAD(&good->dups);
5658 good->cache.start = good->start;
5659 good->cache.size = good->nr;
5660 good->content_checked = 0;
5661 good->owner_ref_checked = 0;
5662 good->num_duplicates = 0;
5663 good->refs = rec->refs;
5664 list_splice_init(&rec->backrefs, &good->backrefs);
5666 cache = lookup_cache_extent(extent_cache, good->start,
5670 tmp = container_of(cache, struct extent_record, cache);
5673 * If we find another overlapping extent and it's found_rec is
5674 * set then it's a duplicate and we need to try and delete
5677 if (tmp->found_rec || tmp->num_duplicates > 0) {
5678 if (list_empty(&good->list))
5679 list_add_tail(&good->list,
5680 &duplicate_extents);
5681 good->num_duplicates += tmp->num_duplicates + 1;
5682 list_splice_init(&tmp->dups, &good->dups);
5683 list_del_init(&tmp->list);
5684 list_add_tail(&tmp->list, &good->dups);
5685 remove_cache_extent(extent_cache, &tmp->cache);
5690 * Ok we have another non extent item backed extent rec, so lets
5691 * just add it to this extent and carry on like we did above.
5693 good->refs += tmp->refs;
5694 list_splice_init(&tmp->backrefs, &good->backrefs);
5695 remove_cache_extent(extent_cache, &tmp->cache);
5698 ret = insert_cache_extent(extent_cache, &good->cache);
5701 return good->num_duplicates ? 0 : 1;
5704 static int delete_duplicate_records(struct btrfs_trans_handle *trans,
5705 struct btrfs_root *root,
5706 struct extent_record *rec)
5708 LIST_HEAD(delete_list);
5709 struct btrfs_path *path;
5710 struct extent_record *tmp, *good, *n;
5713 struct btrfs_key key;
5715 path = btrfs_alloc_path();
5722 /* Find the record that covers all of the duplicates. */
5723 list_for_each_entry(tmp, &rec->dups, list) {
5724 if (good->start < tmp->start)
5726 if (good->nr > tmp->nr)
5729 if (tmp->start + tmp->nr < good->start + good->nr) {
5730 fprintf(stderr, "Ok we have overlapping extents that "
5731 "aren't completely covered by eachother, this "
5732 "is going to require more careful thought. "
5733 "The extents are [%Lu-%Lu] and [%Lu-%Lu]\n",
5734 tmp->start, tmp->nr, good->start, good->nr);
5741 list_add_tail(&rec->list, &delete_list);
5743 list_for_each_entry_safe(tmp, n, &rec->dups, list) {
5746 list_move_tail(&tmp->list, &delete_list);
5749 root = root->fs_info->extent_root;
5750 list_for_each_entry(tmp, &delete_list, list) {
5751 if (tmp->found_rec == 0)
5753 key.objectid = tmp->start;
5754 key.type = BTRFS_EXTENT_ITEM_KEY;
5755 key.offset = tmp->nr;
5757 /* Shouldn't happen but just in case */
5758 if (tmp->metadata) {
5759 fprintf(stderr, "Well this shouldn't happen, extent "
5760 "record overlaps but is metadata? "
5761 "[%Lu, %Lu]\n", tmp->start, tmp->nr);
5765 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
5771 ret = btrfs_del_item(trans, root, path);
5774 btrfs_release_path(path);
5779 while (!list_empty(&delete_list)) {
5780 tmp = list_entry(delete_list.next, struct extent_record, list);
5781 list_del_init(&tmp->list);
5787 while (!list_empty(&rec->dups)) {
5788 tmp = list_entry(rec->dups.next, struct extent_record, list);
5789 list_del_init(&tmp->list);
5793 btrfs_free_path(path);
5795 if (!ret && !nr_del)
5796 rec->num_duplicates = 0;
5798 return ret ? ret : nr_del;
5801 static int find_possible_backrefs(struct btrfs_trans_handle *trans,
5802 struct btrfs_fs_info *info,
5803 struct btrfs_path *path,
5804 struct cache_tree *extent_cache,
5805 struct extent_record *rec)
5807 struct btrfs_root *root;
5808 struct extent_backref *back;
5809 struct data_backref *dback;
5810 struct cache_extent *cache;
5811 struct btrfs_file_extent_item *fi;
5812 struct btrfs_key key;
5816 list_for_each_entry(back, &rec->backrefs, list) {
5817 /* Don't care about full backrefs (poor unloved backrefs) */
5818 if (back->full_backref || !back->is_data)
5821 dback = (struct data_backref *)back;
5823 /* We found this one, we don't need to do a lookup */
5824 if (dback->found_ref)
5827 key.objectid = dback->root;
5828 key.type = BTRFS_ROOT_ITEM_KEY;
5829 key.offset = (u64)-1;
5831 root = btrfs_read_fs_root(info, &key);
5833 /* No root, definitely a bad ref, skip */
5834 if (IS_ERR(root) && PTR_ERR(root) == -ENOENT)
5836 /* Other err, exit */
5838 return PTR_ERR(root);
5840 key.objectid = dback->owner;
5841 key.type = BTRFS_EXTENT_DATA_KEY;
5842 key.offset = dback->offset;
5843 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
5845 btrfs_release_path(path);
5848 /* Didn't find it, we can carry on */
5853 fi = btrfs_item_ptr(path->nodes[0], path->slots[0],
5854 struct btrfs_file_extent_item);
5855 bytenr = btrfs_file_extent_disk_bytenr(path->nodes[0], fi);
5856 bytes = btrfs_file_extent_disk_num_bytes(path->nodes[0], fi);
5857 btrfs_release_path(path);
5858 cache = lookup_cache_extent(extent_cache, bytenr, 1);
5860 struct extent_record *tmp;
5861 tmp = container_of(cache, struct extent_record, cache);
5864 * If we found an extent record for the bytenr for this
5865 * particular backref then we can't add it to our
5866 * current extent record. We only want to add backrefs
5867 * that don't have a corresponding extent item in the
5868 * extent tree since they likely belong to this record
5869 * and we need to fix it if it doesn't match bytenrs.
5875 dback->found_ref += 1;
5876 dback->disk_bytenr = bytenr;
5877 dback->bytes = bytes;
5880 * Set this so the verify backref code knows not to trust the
5881 * values in this backref.
5890 * when an incorrect extent item is found, this will delete
5891 * all of the existing entries for it and recreate them
5892 * based on what the tree scan found.
5894 static int fixup_extent_refs(struct btrfs_trans_handle *trans,
5895 struct btrfs_fs_info *info,
5896 struct cache_tree *extent_cache,
5897 struct extent_record *rec)
5900 struct btrfs_path *path;
5901 struct list_head *cur = rec->backrefs.next;
5902 struct cache_extent *cache;
5903 struct extent_backref *back;
5908 * remember our flags for recreating the extent.
5909 * FIXME, if we have cleared extent tree, we can not
5910 * lookup extent info in extent tree.
5912 if (!init_extent_tree) {
5913 ret = btrfs_lookup_extent_info(NULL, info->extent_root,
5914 rec->start, rec->max_size,
5915 rec->metadata, NULL, &flags);
5922 path = btrfs_alloc_path();
5926 if (rec->refs != rec->extent_item_refs && !rec->metadata) {
5928 * Sometimes the backrefs themselves are so broken they don't
5929 * get attached to any meaningful rec, so first go back and
5930 * check any of our backrefs that we couldn't find and throw
5931 * them into the list if we find the backref so that
5932 * verify_backrefs can figure out what to do.
5934 ret = find_possible_backrefs(trans, info, path, extent_cache,
5940 /* step one, make sure all of the backrefs agree */
5941 ret = verify_backrefs(trans, info, path, rec);
5945 /* step two, delete all the existing records */
5946 ret = delete_extent_records(trans, info->extent_root, path,
5947 rec->start, rec->max_size);
5952 /* was this block corrupt? If so, don't add references to it */
5953 cache = lookup_cache_extent(info->corrupt_blocks,
5954 rec->start, rec->max_size);
5960 /* step three, recreate all the refs we did find */
5961 while(cur != &rec->backrefs) {
5962 back = list_entry(cur, struct extent_backref, list);
5966 * if we didn't find any references, don't create a
5969 if (!back->found_ref)
5972 ret = record_extent(trans, info, path, rec, back, allocated, flags);
5979 btrfs_free_path(path);
5983 /* right now we only prune from the extent allocation tree */
5984 static int prune_one_block(struct btrfs_trans_handle *trans,
5985 struct btrfs_fs_info *info,
5986 struct btrfs_corrupt_block *corrupt)
5989 struct btrfs_path path;
5990 struct extent_buffer *eb;
5994 int level = corrupt->level + 1;
5996 btrfs_init_path(&path);
5998 /* we want to stop at the parent to our busted block */
5999 path.lowest_level = level;
6001 ret = btrfs_search_slot(trans, info->extent_root,
6002 &corrupt->key, &path, -1, 1);
6007 eb = path.nodes[level];
6014 * hopefully the search gave us the block we want to prune,
6015 * lets try that first
6017 slot = path.slots[level];
6018 found = btrfs_node_blockptr(eb, slot);
6019 if (found == corrupt->cache.start)
6022 nritems = btrfs_header_nritems(eb);
6024 /* the search failed, lets scan this node and hope we find it */
6025 for (slot = 0; slot < nritems; slot++) {
6026 found = btrfs_node_blockptr(eb, slot);
6027 if (found == corrupt->cache.start)
6031 * we couldn't find the bad block. TODO, search all the nodes for pointers
6034 if (eb == info->extent_root->node) {
6039 btrfs_release_path(&path);
6044 printk("deleting pointer to block %Lu\n", corrupt->cache.start);
6045 ret = btrfs_del_ptr(trans, info->extent_root, &path, level, slot);
6048 btrfs_release_path(&path);
6052 static int prune_corrupt_blocks(struct btrfs_trans_handle *trans,
6053 struct btrfs_fs_info *info)
6055 struct cache_extent *cache;
6056 struct btrfs_corrupt_block *corrupt;
6058 cache = search_cache_extent(info->corrupt_blocks, 0);
6062 corrupt = container_of(cache, struct btrfs_corrupt_block, cache);
6063 prune_one_block(trans, info, corrupt);
6064 cache = next_cache_extent(cache);
6069 static void free_corrupt_block(struct cache_extent *cache)
6071 struct btrfs_corrupt_block *corrupt;
6073 corrupt = container_of(cache, struct btrfs_corrupt_block, cache);
6077 FREE_EXTENT_CACHE_BASED_TREE(corrupt_blocks, free_corrupt_block);
6079 static void reset_cached_block_groups(struct btrfs_fs_info *fs_info)
6081 struct btrfs_block_group_cache *cache;
6086 ret = find_first_extent_bit(&fs_info->free_space_cache, 0,
6087 &start, &end, EXTENT_DIRTY);
6090 clear_extent_dirty(&fs_info->free_space_cache, start, end,
6096 cache = btrfs_lookup_first_block_group(fs_info, start);
6101 start = cache->key.objectid + cache->key.offset;
6105 static int check_extent_refs(struct btrfs_trans_handle *trans,
6106 struct btrfs_root *root,
6107 struct cache_tree *extent_cache)
6109 struct extent_record *rec;
6110 struct cache_extent *cache;
6118 * if we're doing a repair, we have to make sure
6119 * we don't allocate from the problem extents.
6120 * In the worst case, this will be all the
6123 cache = search_cache_extent(extent_cache, 0);
6125 rec = container_of(cache, struct extent_record, cache);
6126 btrfs_pin_extent(root->fs_info,
6127 rec->start, rec->max_size);
6128 cache = next_cache_extent(cache);
6131 /* pin down all the corrupted blocks too */
6132 cache = search_cache_extent(root->fs_info->corrupt_blocks, 0);
6134 btrfs_pin_extent(root->fs_info,
6135 cache->start, cache->size);
6136 cache = next_cache_extent(cache);
6138 prune_corrupt_blocks(trans, root->fs_info);
6139 reset_cached_block_groups(root->fs_info);
6143 * We need to delete any duplicate entries we find first otherwise we
6144 * could mess up the extent tree when we have backrefs that actually
6145 * belong to a different extent item and not the weird duplicate one.
6147 while (repair && !list_empty(&duplicate_extents)) {
6148 rec = list_entry(duplicate_extents.next, struct extent_record,
6150 list_del_init(&rec->list);
6152 /* Sometimes we can find a backref before we find an actual
6153 * extent, so we need to process it a little bit to see if there
6154 * truly are multiple EXTENT_ITEM_KEY's for the same range, or
6155 * if this is a backref screwup. If we need to delete stuff
6156 * process_duplicates() will return 0, otherwise it will return
6159 if (process_duplicates(root, extent_cache, rec))
6161 ret = delete_duplicate_records(trans, root, rec);
6165 * delete_duplicate_records will return the number of entries
6166 * deleted, so if it's greater than 0 then we know we actually
6167 * did something and we need to remove.
6178 cache = search_cache_extent(extent_cache, 0);
6181 rec = container_of(cache, struct extent_record, cache);
6182 if (rec->num_duplicates) {
6183 fprintf(stderr, "extent item %llu has multiple extent "
6184 "items\n", (unsigned long long)rec->start);
6188 if (rec->refs != rec->extent_item_refs) {
6189 fprintf(stderr, "ref mismatch on [%llu %llu] ",
6190 (unsigned long long)rec->start,
6191 (unsigned long long)rec->nr);
6192 fprintf(stderr, "extent item %llu, found %llu\n",
6193 (unsigned long long)rec->extent_item_refs,
6194 (unsigned long long)rec->refs);
6195 if (!fixed && repair) {
6196 ret = fixup_extent_refs(trans, root->fs_info,
6205 if (all_backpointers_checked(rec, 1)) {
6206 fprintf(stderr, "backpointer mismatch on [%llu %llu]\n",
6207 (unsigned long long)rec->start,
6208 (unsigned long long)rec->nr);
6210 if (!fixed && repair) {
6211 ret = fixup_extent_refs(trans, root->fs_info,
6220 if (!rec->owner_ref_checked) {
6221 fprintf(stderr, "owner ref check failed [%llu %llu]\n",
6222 (unsigned long long)rec->start,
6223 (unsigned long long)rec->nr);
6224 if (!fixed && repair) {
6225 ret = fixup_extent_refs(trans, root->fs_info,
6234 remove_cache_extent(extent_cache, cache);
6235 free_all_extent_backrefs(rec);
6240 if (ret && ret != -EAGAIN) {
6241 fprintf(stderr, "failed to repair damaged filesystem, aborting\n");
6244 btrfs_fix_block_accounting(trans, root);
6247 fprintf(stderr, "repaired damaged extent references\n");
6253 u64 calc_stripe_length(u64 type, u64 length, int num_stripes)
6257 if (type & BTRFS_BLOCK_GROUP_RAID0) {
6258 stripe_size = length;
6259 stripe_size /= num_stripes;
6260 } else if (type & BTRFS_BLOCK_GROUP_RAID10) {
6261 stripe_size = length * 2;
6262 stripe_size /= num_stripes;
6263 } else if (type & BTRFS_BLOCK_GROUP_RAID5) {
6264 stripe_size = length;
6265 stripe_size /= (num_stripes - 1);
6266 } else if (type & BTRFS_BLOCK_GROUP_RAID6) {
6267 stripe_size = length;
6268 stripe_size /= (num_stripes - 2);
6270 stripe_size = length;
6276 * Check the chunk with its block group/dev list ref:
6277 * Return 0 if all refs seems valid.
6278 * Return 1 if part of refs seems valid, need later check for rebuild ref
6279 * like missing block group and needs to search extent tree to rebuild them.
6280 * Return -1 if essential refs are missing and unable to rebuild.
6282 static int check_chunk_refs(struct chunk_record *chunk_rec,
6283 struct block_group_tree *block_group_cache,
6284 struct device_extent_tree *dev_extent_cache,
6287 struct cache_extent *block_group_item;
6288 struct block_group_record *block_group_rec;
6289 struct cache_extent *dev_extent_item;
6290 struct device_extent_record *dev_extent_rec;
6297 block_group_item = lookup_cache_extent(&block_group_cache->tree,
6300 if (block_group_item) {
6301 block_group_rec = container_of(block_group_item,
6302 struct block_group_record,
6304 if (chunk_rec->length != block_group_rec->offset ||
6305 chunk_rec->offset != block_group_rec->objectid ||
6306 chunk_rec->type_flags != block_group_rec->flags) {
6309 "Chunk[%llu, %u, %llu]: length(%llu), offset(%llu), type(%llu) mismatch with block group[%llu, %u, %llu]: offset(%llu), objectid(%llu), flags(%llu)\n",
6310 chunk_rec->objectid,
6315 chunk_rec->type_flags,
6316 block_group_rec->objectid,
6317 block_group_rec->type,
6318 block_group_rec->offset,
6319 block_group_rec->offset,
6320 block_group_rec->objectid,
6321 block_group_rec->flags);
6324 list_del_init(&block_group_rec->list);
6325 chunk_rec->bg_rec = block_group_rec;
6330 "Chunk[%llu, %u, %llu]: length(%llu), offset(%llu), type(%llu) is not found in block group\n",
6331 chunk_rec->objectid,
6336 chunk_rec->type_flags);
6340 length = calc_stripe_length(chunk_rec->type_flags, chunk_rec->length,
6341 chunk_rec->num_stripes);
6342 for (i = 0; i < chunk_rec->num_stripes; ++i) {
6343 devid = chunk_rec->stripes[i].devid;
6344 offset = chunk_rec->stripes[i].offset;
6345 dev_extent_item = lookup_cache_extent2(&dev_extent_cache->tree,
6346 devid, offset, length);
6347 if (dev_extent_item) {
6348 dev_extent_rec = container_of(dev_extent_item,
6349 struct device_extent_record,
6351 if (dev_extent_rec->objectid != devid ||
6352 dev_extent_rec->offset != offset ||
6353 dev_extent_rec->chunk_offset != chunk_rec->offset ||
6354 dev_extent_rec->length != length) {
6357 "Chunk[%llu, %u, %llu] stripe[%llu, %llu] dismatch dev extent[%llu, %llu, %llu]\n",
6358 chunk_rec->objectid,
6361 chunk_rec->stripes[i].devid,
6362 chunk_rec->stripes[i].offset,
6363 dev_extent_rec->objectid,
6364 dev_extent_rec->offset,
6365 dev_extent_rec->length);
6368 list_move(&dev_extent_rec->chunk_list,
6369 &chunk_rec->dextents);
6374 "Chunk[%llu, %u, %llu] stripe[%llu, %llu] is not found in dev extent\n",
6375 chunk_rec->objectid,
6378 chunk_rec->stripes[i].devid,
6379 chunk_rec->stripes[i].offset);
6386 /* check btrfs_chunk -> btrfs_dev_extent / btrfs_block_group_item */
6387 int check_chunks(struct cache_tree *chunk_cache,
6388 struct block_group_tree *block_group_cache,
6389 struct device_extent_tree *dev_extent_cache,
6390 struct list_head *good, struct list_head *bad,
6391 struct list_head *rebuild, int silent)
6393 struct cache_extent *chunk_item;
6394 struct chunk_record *chunk_rec;
6395 struct block_group_record *bg_rec;
6396 struct device_extent_record *dext_rec;
6400 chunk_item = first_cache_extent(chunk_cache);
6401 while (chunk_item) {
6402 chunk_rec = container_of(chunk_item, struct chunk_record,
6404 err = check_chunk_refs(chunk_rec, block_group_cache,
6405 dev_extent_cache, silent);
6408 if (err == 0 && good)
6409 list_add_tail(&chunk_rec->list, good);
6410 if (err > 0 && rebuild)
6411 list_add_tail(&chunk_rec->list, rebuild);
6413 list_add_tail(&chunk_rec->list, bad);
6414 chunk_item = next_cache_extent(chunk_item);
6417 list_for_each_entry(bg_rec, &block_group_cache->block_groups, list) {
6420 "Block group[%llu, %llu] (flags = %llu) didn't find the relative chunk.\n",
6428 list_for_each_entry(dext_rec, &dev_extent_cache->no_chunk_orphans,
6432 "Device extent[%llu, %llu, %llu] didn't find the relative chunk.\n",
6443 static int check_device_used(struct device_record *dev_rec,
6444 struct device_extent_tree *dext_cache)
6446 struct cache_extent *cache;
6447 struct device_extent_record *dev_extent_rec;
6450 cache = search_cache_extent2(&dext_cache->tree, dev_rec->devid, 0);
6452 dev_extent_rec = container_of(cache,
6453 struct device_extent_record,
6455 if (dev_extent_rec->objectid != dev_rec->devid)
6458 list_del_init(&dev_extent_rec->device_list);
6459 total_byte += dev_extent_rec->length;
6460 cache = next_cache_extent(cache);
6463 if (total_byte != dev_rec->byte_used) {
6465 "Dev extent's total-byte(%llu) is not equal to byte-used(%llu) in dev[%llu, %u, %llu]\n",
6466 total_byte, dev_rec->byte_used, dev_rec->objectid,
6467 dev_rec->type, dev_rec->offset);
6474 /* check btrfs_dev_item -> btrfs_dev_extent */
6475 static int check_devices(struct rb_root *dev_cache,
6476 struct device_extent_tree *dev_extent_cache)
6478 struct rb_node *dev_node;
6479 struct device_record *dev_rec;
6480 struct device_extent_record *dext_rec;
6484 dev_node = rb_first(dev_cache);
6486 dev_rec = container_of(dev_node, struct device_record, node);
6487 err = check_device_used(dev_rec, dev_extent_cache);
6491 dev_node = rb_next(dev_node);
6493 list_for_each_entry(dext_rec, &dev_extent_cache->no_device_orphans,
6496 "Device extent[%llu, %llu, %llu] didn't find its device.\n",
6497 dext_rec->objectid, dext_rec->offset, dext_rec->length);
6504 static int check_chunks_and_extents(struct btrfs_root *root)
6506 struct rb_root dev_cache;
6507 struct cache_tree chunk_cache;
6508 struct block_group_tree block_group_cache;
6509 struct device_extent_tree dev_extent_cache;
6510 struct cache_tree extent_cache;
6511 struct cache_tree seen;
6512 struct cache_tree pending;
6513 struct cache_tree reada;
6514 struct cache_tree nodes;
6515 struct cache_tree corrupt_blocks;
6516 struct btrfs_path path;
6517 struct btrfs_key key;
6518 struct btrfs_key found_key;
6521 struct block_info *bits;
6523 struct extent_buffer *leaf;
6524 struct btrfs_trans_handle *trans = NULL;
6526 struct btrfs_root_item ri;
6527 struct list_head dropping_trees;
6529 dev_cache = RB_ROOT;
6530 cache_tree_init(&chunk_cache);
6531 block_group_tree_init(&block_group_cache);
6532 device_extent_tree_init(&dev_extent_cache);
6534 cache_tree_init(&extent_cache);
6535 cache_tree_init(&seen);
6536 cache_tree_init(&pending);
6537 cache_tree_init(&nodes);
6538 cache_tree_init(&reada);
6539 cache_tree_init(&corrupt_blocks);
6540 INIT_LIST_HEAD(&dropping_trees);
6543 trans = btrfs_start_transaction(root, 1);
6544 if (IS_ERR(trans)) {
6545 fprintf(stderr, "Error starting transaction\n");
6546 return PTR_ERR(trans);
6548 root->fs_info->fsck_extent_cache = &extent_cache;
6549 root->fs_info->free_extent_hook = free_extent_hook;
6550 root->fs_info->corrupt_blocks = &corrupt_blocks;
6554 bits = malloc(bits_nr * sizeof(struct block_info));
6561 add_root_to_pending(root->fs_info->tree_root->node,
6562 &extent_cache, &pending, &seen, &nodes,
6563 &root->fs_info->tree_root->root_key);
6565 add_root_to_pending(root->fs_info->chunk_root->node,
6566 &extent_cache, &pending, &seen, &nodes,
6567 &root->fs_info->chunk_root->root_key);
6569 btrfs_init_path(&path);
6572 btrfs_set_key_type(&key, BTRFS_ROOT_ITEM_KEY);
6573 ret = btrfs_search_slot(NULL, root->fs_info->tree_root,
6578 leaf = path.nodes[0];
6579 slot = path.slots[0];
6580 if (slot >= btrfs_header_nritems(path.nodes[0])) {
6581 ret = btrfs_next_leaf(root, &path);
6584 leaf = path.nodes[0];
6585 slot = path.slots[0];
6587 btrfs_item_key_to_cpu(leaf, &found_key, path.slots[0]);
6588 if (btrfs_key_type(&found_key) == BTRFS_ROOT_ITEM_KEY) {
6589 unsigned long offset;
6590 struct extent_buffer *buf;
6592 offset = btrfs_item_ptr_offset(leaf, path.slots[0]);
6593 read_extent_buffer(leaf, &ri, offset, sizeof(ri));
6594 if (btrfs_disk_key_objectid(&ri.drop_progress) == 0) {
6595 buf = read_tree_block(root->fs_info->tree_root,
6596 btrfs_root_bytenr(&ri),
6597 btrfs_level_size(root,
6598 btrfs_root_level(&ri)),
6604 add_root_to_pending(buf, &extent_cache,
6605 &pending, &seen, &nodes,
6607 free_extent_buffer(buf);
6609 struct dropping_root_item_record *dri_rec;
6610 dri_rec = malloc(sizeof(*dri_rec));
6615 memcpy(&dri_rec->ri, &ri, sizeof(ri));
6616 memcpy(&dri_rec->found_key, &found_key,
6618 list_add_tail(&dri_rec->list, &dropping_trees);
6623 btrfs_release_path(&path);
6625 ret = run_next_block(trans, root, bits, bits_nr, &last,
6626 &pending, &seen, &reada, &nodes,
6627 &extent_cache, &chunk_cache, &dev_cache,
6628 &block_group_cache, &dev_extent_cache,
6634 while (!list_empty(&dropping_trees)) {
6635 struct dropping_root_item_record *rec;
6636 struct extent_buffer *buf;
6637 rec = list_entry(dropping_trees.next,
6638 struct dropping_root_item_record, list);
6644 buf = read_tree_block(root->fs_info->tree_root,
6645 btrfs_root_bytenr(&rec->ri),
6646 btrfs_level_size(root,
6647 btrfs_root_level(&rec->ri)), 0);
6652 add_root_to_pending(buf, &extent_cache, &pending,
6653 &seen, &nodes, &rec->found_key);
6655 ret = run_next_block(trans, root, bits, bits_nr, &last,
6656 &pending, &seen, &reada,
6657 &nodes, &extent_cache,
6658 &chunk_cache, &dev_cache,
6665 free_extent_buffer(buf);
6666 list_del(&rec->list);
6671 ret = check_extent_refs(trans, root, &extent_cache);
6672 if (ret == -EAGAIN) {
6673 ret = btrfs_commit_transaction(trans, root);
6677 trans = btrfs_start_transaction(root, 1);
6678 if (IS_ERR(trans)) {
6679 ret = PTR_ERR(trans);
6683 free_corrupt_blocks_tree(root->fs_info->corrupt_blocks);
6684 free_extent_cache_tree(&seen);
6685 free_extent_cache_tree(&pending);
6686 free_extent_cache_tree(&reada);
6687 free_extent_cache_tree(&nodes);
6688 free_chunk_cache_tree(&chunk_cache);
6689 free_block_group_tree(&block_group_cache);
6690 free_device_cache_tree(&dev_cache);
6691 free_device_extent_tree(&dev_extent_cache);
6692 free_extent_record_cache(root->fs_info, &extent_cache);
6696 err = check_chunks(&chunk_cache, &block_group_cache,
6697 &dev_extent_cache, NULL, NULL, NULL, 0);
6701 err = check_devices(&dev_cache, &dev_extent_cache);
6707 err = btrfs_commit_transaction(trans, root);
6712 free_corrupt_blocks_tree(root->fs_info->corrupt_blocks);
6713 root->fs_info->fsck_extent_cache = NULL;
6714 root->fs_info->free_extent_hook = NULL;
6715 root->fs_info->corrupt_blocks = NULL;
6718 free_chunk_cache_tree(&chunk_cache);
6719 free_device_cache_tree(&dev_cache);
6720 free_block_group_tree(&block_group_cache);
6721 free_device_extent_tree(&dev_extent_cache);
6722 free_extent_cache_tree(&seen);
6723 free_extent_cache_tree(&pending);
6724 free_extent_cache_tree(&reada);
6725 free_extent_cache_tree(&nodes);
6729 static int btrfs_fsck_reinit_root(struct btrfs_trans_handle *trans,
6730 struct btrfs_root *root, int overwrite)
6732 struct extent_buffer *c;
6733 struct extent_buffer *old = root->node;
6736 struct btrfs_disk_key disk_key = {0,0,0};
6742 extent_buffer_get(c);
6745 c = btrfs_alloc_free_block(trans, root,
6746 btrfs_level_size(root, 0),
6747 root->root_key.objectid,
6748 &disk_key, level, 0, 0);
6751 extent_buffer_get(c);
6755 memset_extent_buffer(c, 0, 0, sizeof(struct btrfs_header));
6756 btrfs_set_header_level(c, level);
6757 btrfs_set_header_bytenr(c, c->start);
6758 btrfs_set_header_generation(c, trans->transid);
6759 btrfs_set_header_backref_rev(c, BTRFS_MIXED_BACKREF_REV);
6760 btrfs_set_header_owner(c, root->root_key.objectid);
6762 write_extent_buffer(c, root->fs_info->fsid,
6763 btrfs_header_fsid(), BTRFS_FSID_SIZE);
6765 write_extent_buffer(c, root->fs_info->chunk_tree_uuid,
6766 btrfs_header_chunk_tree_uuid(c),
6769 btrfs_mark_buffer_dirty(c);
6771 * this case can happen in the following case:
6773 * 1.overwrite previous root.
6775 * 2.reinit reloc data root, this is because we skip pin
6776 * down reloc data tree before which means we can allocate
6777 * same block bytenr here.
6779 if (old->start == c->start) {
6780 btrfs_set_root_generation(&root->root_item,
6782 root->root_item.level = btrfs_header_level(root->node);
6783 ret = btrfs_update_root(trans, root->fs_info->tree_root,
6784 &root->root_key, &root->root_item);
6786 free_extent_buffer(c);
6790 free_extent_buffer(old);
6792 add_root_to_dirty_list(root);
6796 static int pin_down_tree_blocks(struct btrfs_fs_info *fs_info,
6797 struct extent_buffer *eb, int tree_root)
6799 struct extent_buffer *tmp;
6800 struct btrfs_root_item *ri;
6801 struct btrfs_key key;
6804 int level = btrfs_header_level(eb);
6810 * If we have pinned this block before, don't pin it again.
6811 * This can not only avoid forever loop with broken filesystem
6812 * but also give us some speedups.
6814 if (test_range_bit(&fs_info->pinned_extents, eb->start,
6815 eb->start + eb->len - 1, EXTENT_DIRTY, 0))
6818 btrfs_pin_extent(fs_info, eb->start, eb->len);
6820 leafsize = btrfs_super_leafsize(fs_info->super_copy);
6821 nritems = btrfs_header_nritems(eb);
6822 for (i = 0; i < nritems; i++) {
6824 btrfs_item_key_to_cpu(eb, &key, i);
6825 if (key.type != BTRFS_ROOT_ITEM_KEY)
6827 /* Skip the extent root and reloc roots */
6828 if (key.objectid == BTRFS_EXTENT_TREE_OBJECTID ||
6829 key.objectid == BTRFS_TREE_RELOC_OBJECTID ||
6830 key.objectid == BTRFS_DATA_RELOC_TREE_OBJECTID)
6832 ri = btrfs_item_ptr(eb, i, struct btrfs_root_item);
6833 bytenr = btrfs_disk_root_bytenr(eb, ri);
6836 * If at any point we start needing the real root we
6837 * will have to build a stump root for the root we are
6838 * in, but for now this doesn't actually use the root so
6839 * just pass in extent_root.
6841 tmp = read_tree_block(fs_info->extent_root, bytenr,
6844 fprintf(stderr, "Error reading root block\n");
6847 ret = pin_down_tree_blocks(fs_info, tmp, 0);
6848 free_extent_buffer(tmp);
6852 bytenr = btrfs_node_blockptr(eb, i);
6854 /* If we aren't the tree root don't read the block */
6855 if (level == 1 && !tree_root) {
6856 btrfs_pin_extent(fs_info, bytenr, leafsize);
6860 tmp = read_tree_block(fs_info->extent_root, bytenr,
6863 fprintf(stderr, "Error reading tree block\n");
6866 ret = pin_down_tree_blocks(fs_info, tmp, tree_root);
6867 free_extent_buffer(tmp);
6876 static int pin_metadata_blocks(struct btrfs_fs_info *fs_info)
6880 ret = pin_down_tree_blocks(fs_info, fs_info->chunk_root->node, 0);
6884 return pin_down_tree_blocks(fs_info, fs_info->tree_root->node, 1);
6887 static int reset_block_groups(struct btrfs_fs_info *fs_info)
6889 struct btrfs_block_group_cache *cache;
6890 struct btrfs_path *path;
6891 struct extent_buffer *leaf;
6892 struct btrfs_chunk *chunk;
6893 struct btrfs_key key;
6897 path = btrfs_alloc_path();
6902 key.type = BTRFS_CHUNK_ITEM_KEY;
6905 ret = btrfs_search_slot(NULL, fs_info->chunk_root, &key, path, 0, 0);
6907 btrfs_free_path(path);
6912 * We do this in case the block groups were screwed up and had alloc
6913 * bits that aren't actually set on the chunks. This happens with
6914 * restored images every time and could happen in real life I guess.
6916 fs_info->avail_data_alloc_bits = 0;
6917 fs_info->avail_metadata_alloc_bits = 0;
6918 fs_info->avail_system_alloc_bits = 0;
6920 /* First we need to create the in-memory block groups */
6922 if (path->slots[0] >= btrfs_header_nritems(path->nodes[0])) {
6923 ret = btrfs_next_leaf(fs_info->chunk_root, path);
6925 btrfs_free_path(path);
6933 leaf = path->nodes[0];
6934 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
6935 if (key.type != BTRFS_CHUNK_ITEM_KEY) {
6940 chunk = btrfs_item_ptr(leaf, path->slots[0],
6941 struct btrfs_chunk);
6942 btrfs_add_block_group(fs_info, 0,
6943 btrfs_chunk_type(leaf, chunk),
6944 key.objectid, key.offset,
6945 btrfs_chunk_length(leaf, chunk));
6946 set_extent_dirty(&fs_info->free_space_cache, key.offset,
6947 key.offset + btrfs_chunk_length(leaf, chunk),
6953 cache = btrfs_lookup_first_block_group(fs_info, start);
6957 start = cache->key.objectid + cache->key.offset;
6960 btrfs_free_path(path);
6964 static int reset_balance(struct btrfs_trans_handle *trans,
6965 struct btrfs_fs_info *fs_info)
6967 struct btrfs_root *root = fs_info->tree_root;
6968 struct btrfs_path *path;
6969 struct extent_buffer *leaf;
6970 struct btrfs_key key;
6971 int del_slot, del_nr = 0;
6975 path = btrfs_alloc_path();
6979 key.objectid = BTRFS_BALANCE_OBJECTID;
6980 key.type = BTRFS_BALANCE_ITEM_KEY;
6983 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
6988 goto reinit_data_reloc;
6993 ret = btrfs_del_item(trans, root, path);
6996 btrfs_release_path(path);
6998 key.objectid = BTRFS_TREE_RELOC_OBJECTID;
6999 key.type = BTRFS_ROOT_ITEM_KEY;
7002 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
7006 if (path->slots[0] >= btrfs_header_nritems(path->nodes[0])) {
7011 ret = btrfs_del_items(trans, root, path,
7018 btrfs_release_path(path);
7021 ret = btrfs_search_slot(trans, root, &key, path,
7028 leaf = path->nodes[0];
7029 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
7030 if (key.objectid > BTRFS_TREE_RELOC_OBJECTID)
7032 if (key.objectid != BTRFS_TREE_RELOC_OBJECTID) {
7037 del_slot = path->slots[0];
7046 ret = btrfs_del_items(trans, root, path, del_slot, del_nr);
7050 btrfs_release_path(path);
7053 key.objectid = BTRFS_DATA_RELOC_TREE_OBJECTID;
7054 key.type = BTRFS_ROOT_ITEM_KEY;
7055 key.offset = (u64)-1;
7056 root = btrfs_read_fs_root(fs_info, &key);
7058 fprintf(stderr, "Error reading data reloc tree\n");
7059 return PTR_ERR(root);
7061 record_root_in_trans(trans, root);
7062 ret = btrfs_fsck_reinit_root(trans, root, 0);
7065 ret = btrfs_make_root_dir(trans, root, BTRFS_FIRST_FREE_OBJECTID);
7067 btrfs_free_path(path);
7071 static int reinit_extent_tree(struct btrfs_trans_handle *trans,
7072 struct btrfs_fs_info *fs_info)
7078 * The only reason we don't do this is because right now we're just
7079 * walking the trees we find and pinning down their bytes, we don't look
7080 * at any of the leaves. In order to do mixed groups we'd have to check
7081 * the leaves of any fs roots and pin down the bytes for any file
7082 * extents we find. Not hard but why do it if we don't have to?
7084 if (btrfs_fs_incompat(fs_info, BTRFS_FEATURE_INCOMPAT_MIXED_GROUPS)) {
7085 fprintf(stderr, "We don't support re-initing the extent tree "
7086 "for mixed block groups yet, please notify a btrfs "
7087 "developer you want to do this so they can add this "
7088 "functionality.\n");
7093 * first we need to walk all of the trees except the extent tree and pin
7094 * down the bytes that are in use so we don't overwrite any existing
7097 ret = pin_metadata_blocks(fs_info);
7099 fprintf(stderr, "error pinning down used bytes\n");
7104 * Need to drop all the block groups since we're going to recreate all
7107 btrfs_free_block_groups(fs_info);
7108 ret = reset_block_groups(fs_info);
7110 fprintf(stderr, "error resetting the block groups\n");
7114 /* Ok we can allocate now, reinit the extent root */
7115 ret = btrfs_fsck_reinit_root(trans, fs_info->extent_root, 0);
7117 fprintf(stderr, "extent root initialization failed\n");
7119 * When the transaction code is updated we should end the
7120 * transaction, but for now progs only knows about commit so
7121 * just return an error.
7127 * Now we have all the in-memory block groups setup so we can make
7128 * allocations properly, and the metadata we care about is safe since we
7129 * pinned all of it above.
7132 struct btrfs_block_group_cache *cache;
7134 cache = btrfs_lookup_first_block_group(fs_info, start);
7137 start = cache->key.objectid + cache->key.offset;
7138 ret = btrfs_insert_item(trans, fs_info->extent_root,
7139 &cache->key, &cache->item,
7140 sizeof(cache->item));
7142 fprintf(stderr, "Error adding block group\n");
7145 btrfs_extent_post_op(trans, fs_info->extent_root);
7148 ret = reset_balance(trans, fs_info);
7150 fprintf(stderr, "error reseting the pending balance\n");
7155 static int recow_extent_buffer(struct btrfs_root *root, struct extent_buffer *eb)
7157 struct btrfs_path *path;
7158 struct btrfs_trans_handle *trans;
7159 struct btrfs_key key;
7162 printf("Recowing metadata block %llu\n", eb->start);
7163 key.objectid = btrfs_header_owner(eb);
7164 key.type = BTRFS_ROOT_ITEM_KEY;
7165 key.offset = (u64)-1;
7167 root = btrfs_read_fs_root(root->fs_info, &key);
7169 fprintf(stderr, "Couldn't find owner root %llu\n",
7171 return PTR_ERR(root);
7174 path = btrfs_alloc_path();
7178 trans = btrfs_start_transaction(root, 1);
7179 if (IS_ERR(trans)) {
7180 btrfs_free_path(path);
7181 return PTR_ERR(trans);
7184 path->lowest_level = btrfs_header_level(eb);
7185 if (path->lowest_level)
7186 btrfs_node_key_to_cpu(eb, &key, 0);
7188 btrfs_item_key_to_cpu(eb, &key, 0);
7190 ret = btrfs_search_slot(trans, root, &key, path, 0, 1);
7191 btrfs_commit_transaction(trans, root);
7192 btrfs_free_path(path);
7196 static int delete_bad_item(struct btrfs_root *root, struct bad_item *bad)
7198 struct btrfs_path *path;
7199 struct btrfs_trans_handle *trans;
7200 struct btrfs_key key;
7203 printf("Deleting bad item [%llu,%u,%llu]\n", bad->key.objectid,
7204 bad->key.type, bad->key.offset);
7205 key.objectid = bad->root_id;
7206 key.type = BTRFS_ROOT_ITEM_KEY;
7207 key.offset = (u64)-1;
7209 root = btrfs_read_fs_root(root->fs_info, &key);
7211 fprintf(stderr, "Couldn't find owner root %llu\n",
7213 return PTR_ERR(root);
7216 path = btrfs_alloc_path();
7220 trans = btrfs_start_transaction(root, 1);
7221 if (IS_ERR(trans)) {
7222 btrfs_free_path(path);
7223 return PTR_ERR(trans);
7226 ret = btrfs_search_slot(trans, root, &bad->key, path, -1, 1);
7232 ret = btrfs_del_item(trans, root, path);
7234 btrfs_commit_transaction(trans, root);
7235 btrfs_free_path(path);
7239 static int zero_log_tree(struct btrfs_root *root)
7241 struct btrfs_trans_handle *trans;
7244 trans = btrfs_start_transaction(root, 1);
7245 if (IS_ERR(trans)) {
7246 ret = PTR_ERR(trans);
7249 btrfs_set_super_log_root(root->fs_info->super_copy, 0);
7250 btrfs_set_super_log_root_level(root->fs_info->super_copy, 0);
7251 ret = btrfs_commit_transaction(trans, root);
7255 static int populate_csum(struct btrfs_trans_handle *trans,
7256 struct btrfs_root *csum_root, char *buf, u64 start,
7263 while (offset < len) {
7264 sectorsize = csum_root->sectorsize;
7265 ret = read_extent_data(csum_root, buf, start + offset,
7269 ret = btrfs_csum_file_block(trans, csum_root, start + len,
7270 start + offset, buf, sectorsize);
7273 offset += sectorsize;
7278 static int fill_csum_tree(struct btrfs_trans_handle *trans,
7279 struct btrfs_root *csum_root)
7281 struct btrfs_root *extent_root = csum_root->fs_info->extent_root;
7282 struct btrfs_path *path;
7283 struct btrfs_extent_item *ei;
7284 struct extent_buffer *leaf;
7286 struct btrfs_key key;
7289 path = btrfs_alloc_path();
7294 key.type = BTRFS_EXTENT_ITEM_KEY;
7297 ret = btrfs_search_slot(NULL, extent_root, &key, path, 0, 0);
7299 btrfs_free_path(path);
7303 buf = malloc(csum_root->sectorsize);
7305 btrfs_free_path(path);
7310 if (path->slots[0] >= btrfs_header_nritems(path->nodes[0])) {
7311 ret = btrfs_next_leaf(extent_root, path);
7319 leaf = path->nodes[0];
7321 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
7322 if (key.type != BTRFS_EXTENT_ITEM_KEY) {
7327 ei = btrfs_item_ptr(leaf, path->slots[0],
7328 struct btrfs_extent_item);
7329 if (!(btrfs_extent_flags(leaf, ei) &
7330 BTRFS_EXTENT_FLAG_DATA)) {
7335 ret = populate_csum(trans, csum_root, buf, key.objectid,
7342 btrfs_free_path(path);
7347 struct root_item_info {
7348 /* level of the root */
7350 /* number of nodes at this level, must be 1 for a root */
7354 struct cache_extent cache_extent;
7357 static struct cache_tree *roots_info_cache = NULL;
7359 static void free_roots_info_cache(void)
7361 if (!roots_info_cache)
7364 while (!cache_tree_empty(roots_info_cache)) {
7365 struct cache_extent *entry;
7366 struct root_item_info *rii;
7368 entry = first_cache_extent(roots_info_cache);
7369 remove_cache_extent(roots_info_cache, entry);
7370 rii = container_of(entry, struct root_item_info, cache_extent);
7374 free(roots_info_cache);
7375 roots_info_cache = NULL;
7378 static int build_roots_info_cache(struct btrfs_fs_info *info)
7381 struct btrfs_key key;
7382 struct extent_buffer *leaf;
7383 struct btrfs_path *path;
7385 if (!roots_info_cache) {
7386 roots_info_cache = malloc(sizeof(*roots_info_cache));
7387 if (!roots_info_cache)
7389 cache_tree_init(roots_info_cache);
7392 path = btrfs_alloc_path();
7397 key.type = BTRFS_EXTENT_ITEM_KEY;
7400 ret = btrfs_search_slot(NULL, info->extent_root, &key, path, 0, 0);
7403 leaf = path->nodes[0];
7406 struct btrfs_key found_key;
7407 struct btrfs_extent_item *ei;
7408 struct btrfs_extent_inline_ref *iref;
7409 int slot = path->slots[0];
7414 struct cache_extent *entry;
7415 struct root_item_info *rii;
7417 if (slot >= btrfs_header_nritems(leaf)) {
7418 ret = btrfs_next_leaf(info->extent_root, path);
7425 leaf = path->nodes[0];
7426 slot = path->slots[0];
7429 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
7431 if (found_key.type != BTRFS_EXTENT_ITEM_KEY &&
7432 found_key.type != BTRFS_METADATA_ITEM_KEY)
7435 ei = btrfs_item_ptr(leaf, slot, struct btrfs_extent_item);
7436 flags = btrfs_extent_flags(leaf, ei);
7438 if (found_key.type == BTRFS_EXTENT_ITEM_KEY &&
7439 !(flags & BTRFS_EXTENT_FLAG_TREE_BLOCK))
7442 if (found_key.type == BTRFS_METADATA_ITEM_KEY) {
7443 iref = (struct btrfs_extent_inline_ref *)(ei + 1);
7444 level = found_key.offset;
7446 struct btrfs_tree_block_info *info;
7448 info = (struct btrfs_tree_block_info *)(ei + 1);
7449 iref = (struct btrfs_extent_inline_ref *)(info + 1);
7450 level = btrfs_tree_block_level(leaf, info);
7454 * For a root extent, it must be of the following type and the
7455 * first (and only one) iref in the item.
7457 type = btrfs_extent_inline_ref_type(leaf, iref);
7458 if (type != BTRFS_TREE_BLOCK_REF_KEY)
7461 root_id = btrfs_extent_inline_ref_offset(leaf, iref);
7462 entry = lookup_cache_extent(roots_info_cache, root_id, 1);
7464 rii = malloc(sizeof(struct root_item_info));
7469 rii->cache_extent.start = root_id;
7470 rii->cache_extent.size = 1;
7471 rii->level = (u8)-1;
7472 entry = &rii->cache_extent;
7473 ret = insert_cache_extent(roots_info_cache, entry);
7476 rii = container_of(entry, struct root_item_info,
7480 ASSERT(rii->cache_extent.start == root_id);
7481 ASSERT(rii->cache_extent.size == 1);
7483 if (level > rii->level || rii->level == (u8)-1) {
7485 rii->bytenr = found_key.objectid;
7486 rii->gen = btrfs_extent_generation(leaf, ei);
7487 rii->node_count = 1;
7488 } else if (level == rii->level) {
7496 btrfs_free_path(path);
7501 static int maybe_repair_root_item(struct btrfs_fs_info *info,
7502 struct btrfs_path *path,
7503 const struct btrfs_key *root_key,
7504 const int read_only_mode)
7506 const u64 root_id = root_key->objectid;
7507 struct cache_extent *entry;
7508 struct root_item_info *rii;
7509 struct btrfs_root_item ri;
7510 unsigned long offset;
7512 entry = lookup_cache_extent(roots_info_cache, root_id, 1);
7515 "Error: could not find extent items for root %llu\n",
7516 root_key->objectid);
7520 rii = container_of(entry, struct root_item_info, cache_extent);
7521 ASSERT(rii->cache_extent.start == root_id);
7522 ASSERT(rii->cache_extent.size == 1);
7524 if (rii->node_count != 1) {
7526 "Error: could not find btree root extent for root %llu\n",
7531 offset = btrfs_item_ptr_offset(path->nodes[0], path->slots[0]);
7532 read_extent_buffer(path->nodes[0], &ri, offset, sizeof(ri));
7534 if (btrfs_root_bytenr(&ri) != rii->bytenr ||
7535 btrfs_root_level(&ri) != rii->level ||
7536 btrfs_root_generation(&ri) != rii->gen) {
7539 * If we're in repair mode but our caller told us to not update
7540 * the root item, i.e. just check if it needs to be updated, don't
7541 * print this message, since the caller will call us again shortly
7542 * for the same root item without read only mode (the caller will
7543 * open a transaction first).
7545 if (!(read_only_mode && repair))
7547 "%sroot item for root %llu,"
7548 " current bytenr %llu, current gen %llu, current level %u,"
7549 " new bytenr %llu, new gen %llu, new level %u\n",
7550 (read_only_mode ? "" : "fixing "),
7552 btrfs_root_bytenr(&ri), btrfs_root_generation(&ri),
7553 btrfs_root_level(&ri),
7554 rii->bytenr, rii->gen, rii->level);
7556 if (btrfs_root_generation(&ri) > rii->gen) {
7558 "root %llu has a root item with a more recent gen (%llu) compared to the found root node (%llu)\n",
7559 root_id, btrfs_root_generation(&ri), rii->gen);
7563 if (!read_only_mode) {
7564 btrfs_set_root_bytenr(&ri, rii->bytenr);
7565 btrfs_set_root_level(&ri, rii->level);
7566 btrfs_set_root_generation(&ri, rii->gen);
7567 write_extent_buffer(path->nodes[0], &ri,
7568 offset, sizeof(ri));
7578 * A regression introduced in the 3.17 kernel (more specifically in 3.17-rc2),
7579 * caused read-only snapshots to be corrupted if they were created at a moment
7580 * when the source subvolume/snapshot had orphan items. The issue was that the
7581 * on-disk root items became incorrect, referring to the pre orphan cleanup root
7582 * node instead of the post orphan cleanup root node.
7583 * So this function, and its callees, just detects and fixes those cases. Even
7584 * though the regression was for read-only snapshots, this function applies to
7585 * any snapshot/subvolume root.
7586 * This must be run before any other repair code - not doing it so, makes other
7587 * repair code delete or modify backrefs in the extent tree for example, which
7588 * will result in an inconsistent fs after repairing the root items.
7590 static int repair_root_items(struct btrfs_fs_info *info)
7592 struct btrfs_path *path = NULL;
7593 struct btrfs_key key;
7594 struct extent_buffer *leaf;
7595 struct btrfs_trans_handle *trans = NULL;
7600 ret = build_roots_info_cache(info);
7604 path = btrfs_alloc_path();
7610 key.objectid = BTRFS_FIRST_FREE_OBJECTID;
7611 key.type = BTRFS_ROOT_ITEM_KEY;
7616 * Avoid opening and committing transactions if a leaf doesn't have
7617 * any root items that need to be fixed, so that we avoid rotating
7618 * backup roots unnecessarily.
7621 trans = btrfs_start_transaction(info->tree_root, 1);
7622 if (IS_ERR(trans)) {
7623 ret = PTR_ERR(trans);
7628 ret = btrfs_search_slot(trans, info->tree_root, &key, path,
7632 leaf = path->nodes[0];
7635 struct btrfs_key found_key;
7637 if (path->slots[0] >= btrfs_header_nritems(leaf)) {
7638 int no_more_keys = find_next_key(path, &key);
7640 btrfs_release_path(path);
7642 ret = btrfs_commit_transaction(trans,
7654 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
7656 if (found_key.type != BTRFS_ROOT_ITEM_KEY)
7659 ret = maybe_repair_root_item(info, path, &found_key,
7664 if (!trans && repair) {
7667 btrfs_release_path(path);
7677 free_roots_info_cache();
7679 btrfs_free_path(path);
7686 static struct option long_options[] = {
7687 { "super", 1, NULL, 's' },
7688 { "repair", 0, NULL, 0 },
7689 { "init-csum-tree", 0, NULL, 0 },
7690 { "init-extent-tree", 0, NULL, 0 },
7691 { "check-data-csum", 0, NULL, 0 },
7692 { "backup", 0, NULL, 0 },
7693 { "subvol-extents", 1, NULL, 'E' },
7694 { "qgroup-report", 0, NULL, 'Q' },
7695 { "tree-root", 1, NULL, 'r' },
7699 const char * const cmd_check_usage[] = {
7700 "btrfs check [options] <device>",
7701 "Check an unmounted btrfs filesystem.",
7703 "-s|--super <superblock> use this superblock copy",
7704 "-b|--backup use the backup root copy",
7705 "--repair try to repair the filesystem",
7706 "--init-csum-tree create a new CRC tree",
7707 "--init-extent-tree create a new extent tree",
7708 "--check-data-csum verify checkums of data blocks",
7709 "--qgroup-report print a report on qgroup consistency",
7710 "--subvol-extents <subvolid> print subvolume extents and sharing state",
7711 "--tree-root <bytenr> use the given bytenr for the tree root",
7715 int cmd_check(int argc, char **argv)
7717 struct cache_tree root_cache;
7718 struct btrfs_root *root;
7719 struct btrfs_fs_info *info;
7722 u64 tree_root_bytenr = 0;
7723 char uuidbuf[BTRFS_UUID_UNPARSED_SIZE];
7726 int option_index = 0;
7727 int init_csum_tree = 0;
7728 int qgroup_report = 0;
7729 enum btrfs_open_ctree_flags ctree_flags = OPEN_CTREE_EXCLUSIVE;
7733 c = getopt_long(argc, argv, "as:br:", long_options,
7738 case 'a': /* ignored */ break;
7740 ctree_flags |= OPEN_CTREE_BACKUP_ROOT;
7743 num = arg_strtou64(optarg);
7744 if (num >= BTRFS_SUPER_MIRROR_MAX) {
7746 "ERROR: super mirror should be less than: %d\n",
7747 BTRFS_SUPER_MIRROR_MAX);
7750 bytenr = btrfs_sb_offset(((int)num));
7751 printf("using SB copy %llu, bytenr %llu\n", num,
7752 (unsigned long long)bytenr);
7758 subvolid = arg_strtou64(optarg);
7761 tree_root_bytenr = arg_strtou64(optarg);
7765 usage(cmd_check_usage);
7767 if (option_index == 1) {
7768 printf("enabling repair mode\n");
7770 ctree_flags |= OPEN_CTREE_WRITES;
7771 } else if (option_index == 2) {
7772 printf("Creating a new CRC tree\n");
7775 ctree_flags |= OPEN_CTREE_WRITES;
7776 } else if (option_index == 3) {
7777 init_extent_tree = 1;
7778 ctree_flags |= (OPEN_CTREE_WRITES |
7779 OPEN_CTREE_NO_BLOCK_GROUPS);
7781 } else if (option_index == 4) {
7782 check_data_csum = 1;
7785 argc = argc - optind;
7787 if (check_argc_exact(argc, 1))
7788 usage(cmd_check_usage);
7791 cache_tree_init(&root_cache);
7793 if((ret = check_mounted(argv[optind])) < 0) {
7794 fprintf(stderr, "Could not check mount status: %s\n", strerror(-ret));
7797 fprintf(stderr, "%s is currently mounted. Aborting.\n", argv[optind]);
7802 /* only allow partial opening under repair mode */
7804 ctree_flags |= OPEN_CTREE_PARTIAL;
7806 info = open_ctree_fs_info(argv[optind], bytenr, tree_root_bytenr,
7809 fprintf(stderr, "Couldn't open file system\n");
7814 root = info->fs_root;
7816 ret = repair_root_items(info);
7820 fprintf(stderr, "Fixed %d roots.\n", ret);
7822 } else if (ret > 0) {
7824 "Found %d roots with an outdated root item.\n",
7827 "Please run a filesystem check with the option --repair to fix them.\n");
7833 * repair mode will force us to commit transaction which
7834 * will make us fail to load log tree when mounting.
7836 if (repair && btrfs_super_log_root(info->super_copy)) {
7837 ret = ask_user("repair mode will force to clear out log tree, Are you sure?");
7842 ret = zero_log_tree(root);
7844 fprintf(stderr, "fail to zero log tree\n");
7849 uuid_unparse(info->super_copy->fsid, uuidbuf);
7850 if (qgroup_report) {
7851 printf("Print quota groups for %s\nUUID: %s\n", argv[optind],
7853 ret = qgroup_verify_all(info);
7855 print_qgroup_report(1);
7859 printf("Print extent state for subvolume %llu on %s\nUUID: %s\n",
7860 subvolid, argv[optind], uuidbuf);
7861 ret = print_extent_state(info, subvolid);
7864 printf("Checking filesystem on %s\nUUID: %s\n", argv[optind], uuidbuf);
7866 if (!extent_buffer_uptodate(info->tree_root->node) ||
7867 !extent_buffer_uptodate(info->dev_root->node) ||
7868 !extent_buffer_uptodate(info->chunk_root->node)) {
7869 fprintf(stderr, "Critical roots corrupted, unable to fsck the FS\n");
7874 if (init_extent_tree || init_csum_tree) {
7875 struct btrfs_trans_handle *trans;
7877 trans = btrfs_start_transaction(info->extent_root, 0);
7878 if (IS_ERR(trans)) {
7879 fprintf(stderr, "Error starting transaction\n");
7880 ret = PTR_ERR(trans);
7884 if (init_extent_tree) {
7885 printf("Creating a new extent tree\n");
7886 ret = reinit_extent_tree(trans, info);
7891 if (init_csum_tree) {
7892 fprintf(stderr, "Reinit crc root\n");
7893 ret = btrfs_fsck_reinit_root(trans, info->csum_root, 0);
7895 fprintf(stderr, "crc root initialization failed\n");
7900 ret = fill_csum_tree(trans, info->csum_root);
7902 fprintf(stderr, "crc refilling failed\n");
7907 * Ok now we commit and run the normal fsck, which will add
7908 * extent entries for all of the items it finds.
7910 ret = btrfs_commit_transaction(trans, info->extent_root);
7914 if (!extent_buffer_uptodate(info->extent_root->node)) {
7915 fprintf(stderr, "Critical roots corrupted, unable to fsck the FS\n");
7919 if (!extent_buffer_uptodate(info->csum_root->node)) {
7920 fprintf(stderr, "Checksum root corrupted, rerun with --init-csum-tree option\n");
7925 fprintf(stderr, "checking extents\n");
7926 ret = check_chunks_and_extents(root);
7928 fprintf(stderr, "Errors found in extent allocation tree or chunk allocation\n");
7930 fprintf(stderr, "checking free space cache\n");
7931 ret = check_space_cache(root);
7936 * We used to have to have these hole extents in between our real
7937 * extents so if we don't have this flag set we need to make sure there
7938 * are no gaps in the file extents for inodes, otherwise we can just
7939 * ignore it when this happens.
7941 no_holes = btrfs_fs_incompat(root->fs_info,
7942 BTRFS_FEATURE_INCOMPAT_NO_HOLES);
7943 fprintf(stderr, "checking fs roots\n");
7944 ret = check_fs_roots(root, &root_cache);
7948 fprintf(stderr, "checking csums\n");
7949 ret = check_csums(root);
7953 fprintf(stderr, "checking root refs\n");
7954 ret = check_root_refs(root, &root_cache);
7958 while (repair && !list_empty(&root->fs_info->recow_ebs)) {
7959 struct extent_buffer *eb;
7961 eb = list_first_entry(&root->fs_info->recow_ebs,
7962 struct extent_buffer, recow);
7963 list_del_init(&eb->recow);
7964 ret = recow_extent_buffer(root, eb);
7969 while (!list_empty(&delete_items)) {
7970 struct bad_item *bad;
7972 bad = list_first_entry(&delete_items, struct bad_item, list);
7973 list_del_init(&bad->list);
7975 ret = delete_bad_item(root, bad);
7979 if (info->quota_enabled) {
7981 fprintf(stderr, "checking quota groups\n");
7982 err = qgroup_verify_all(info);
7987 if (!list_empty(&root->fs_info->recow_ebs)) {
7988 fprintf(stderr, "Transid errors in file system\n");
7992 print_qgroup_report(0);
7993 if (found_old_backref) { /*
7994 * there was a disk format change when mixed
7995 * backref was in testing tree. The old format
7996 * existed about one week.
7998 printf("\n * Found old mixed backref format. "
7999 "The old format is not supported! *"
8000 "\n * Please mount the FS in readonly mode, "
8001 "backup data and re-format the FS. *\n\n");
8004 printf("found %llu bytes used err is %d\n",
8005 (unsigned long long)bytes_used, ret);
8006 printf("total csum bytes: %llu\n",(unsigned long long)total_csum_bytes);
8007 printf("total tree bytes: %llu\n",
8008 (unsigned long long)total_btree_bytes);
8009 printf("total fs tree bytes: %llu\n",
8010 (unsigned long long)total_fs_tree_bytes);
8011 printf("total extent tree bytes: %llu\n",
8012 (unsigned long long)total_extent_tree_bytes);
8013 printf("btree space waste bytes: %llu\n",
8014 (unsigned long long)btree_space_waste);
8015 printf("file data blocks allocated: %llu\n referenced %llu\n",
8016 (unsigned long long)data_bytes_allocated,
8017 (unsigned long long)data_bytes_referenced);
8018 printf("%s\n", BTRFS_BUILD_VERSION);
8020 free_root_recs_tree(&root_cache);