btrfs-progs: Fix a bug in reset_nlink() which may deletes the recovered file
[platform/upstream/btrfs-progs.git] / cmds-check.c
1 /*
2  * Copyright (C) 2007 Oracle.  All rights reserved.
3  *
4  * This program is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU General Public
6  * License v2 as published by the Free Software Foundation.
7  *
8  * This program is distributed in the hope that it will be useful,
9  * but WITHOUT ANY WARRANTY; without even the implied warranty of
10  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11  * General Public License for more details.
12  *
13  * You should have received a copy of the GNU General Public
14  * License along with this program; if not, write to the
15  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
16  * Boston, MA 021110-1307, USA.
17  */
18
19 #define _XOPEN_SOURCE 500
20 #define _GNU_SOURCE 1
21 #include <stdio.h>
22 #include <stdlib.h>
23 #include <unistd.h>
24 #include <fcntl.h>
25 #include <sys/types.h>
26 #include <sys/stat.h>
27 #include <unistd.h>
28 #include <getopt.h>
29 #include <uuid/uuid.h>
30 #include "ctree.h"
31 #include "volumes.h"
32 #include "repair.h"
33 #include "disk-io.h"
34 #include "print-tree.h"
35 #include "transaction.h"
36 #include "version.h"
37 #include "utils.h"
38 #include "commands.h"
39 #include "free-space-cache.h"
40 #include "btrfsck.h"
41 #include "qgroup-verify.h"
42 #include "rbtree-utils.h"
43 #include "backref.h"
44 #include "ulist.h"
45
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;
61
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;
69 };
70
71 struct data_backref {
72         struct extent_backref node;
73         union {
74                 u64 parent;
75                 u64 root;
76         };
77         u64 owner;
78         u64 offset;
79         u64 disk_bytenr;
80         u64 bytes;
81         u64 ram_bytes;
82         u32 num_refs;
83         u32 found_ref;
84 };
85
86 struct tree_backref {
87         struct extent_backref node;
88         union {
89                 u64 parent;
90                 u64 root;
91         };
92 };
93
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;
100         u64 start;
101         u64 max_size;
102         u64 nr;
103         u64 refs;
104         u64 extent_item_refs;
105         u64 generation;
106         u64 parent_generation;
107         u64 info_objectid;
108         u32 num_duplicates;
109         u8 info_level;
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;
115         unsigned int flag_block_full_backref:1;
116 };
117
118 struct inode_backref {
119         struct list_head list;
120         unsigned int found_dir_item:1;
121         unsigned int found_dir_index:1;
122         unsigned int found_inode_ref:1;
123         unsigned int filetype:8;
124         int errors;
125         unsigned int ref_type;
126         u64 dir;
127         u64 index;
128         u16 namelen;
129         char name[0];
130 };
131
132 struct root_item_record {
133         struct list_head list;
134         u64 objectid;
135         u64 bytenr;
136         u8 level;
137         u8 drop_level;
138         int level_size;
139         struct btrfs_key drop_key;
140 };
141
142 #define REF_ERR_NO_DIR_ITEM             (1 << 0)
143 #define REF_ERR_NO_DIR_INDEX            (1 << 1)
144 #define REF_ERR_NO_INODE_REF            (1 << 2)
145 #define REF_ERR_DUP_DIR_ITEM            (1 << 3)
146 #define REF_ERR_DUP_DIR_INDEX           (1 << 4)
147 #define REF_ERR_DUP_INODE_REF           (1 << 5)
148 #define REF_ERR_INDEX_UNMATCH           (1 << 6)
149 #define REF_ERR_FILETYPE_UNMATCH        (1 << 7)
150 #define REF_ERR_NAME_TOO_LONG           (1 << 8) // 100
151 #define REF_ERR_NO_ROOT_REF             (1 << 9)
152 #define REF_ERR_NO_ROOT_BACKREF         (1 << 10)
153 #define REF_ERR_DUP_ROOT_REF            (1 << 11)
154 #define REF_ERR_DUP_ROOT_BACKREF        (1 << 12)
155
156 struct inode_record {
157         struct list_head backrefs;
158         unsigned int checked:1;
159         unsigned int merging:1;
160         unsigned int found_inode_item:1;
161         unsigned int found_dir_item:1;
162         unsigned int found_file_extent:1;
163         unsigned int found_csum_item:1;
164         unsigned int some_csum_missing:1;
165         unsigned int nodatasum:1;
166         int errors;
167
168         u64 ino;
169         u32 nlink;
170         u32 imode;
171         u64 isize;
172         u64 nbytes;
173
174         u32 found_link;
175         u64 found_size;
176         u64 extent_start;
177         u64 extent_end;
178         u64 first_extent_gap;
179
180         u32 refs;
181 };
182
183 #define I_ERR_NO_INODE_ITEM             (1 << 0)
184 #define I_ERR_NO_ORPHAN_ITEM            (1 << 1)
185 #define I_ERR_DUP_INODE_ITEM            (1 << 2)
186 #define I_ERR_DUP_DIR_INDEX             (1 << 3)
187 #define I_ERR_ODD_DIR_ITEM              (1 << 4)
188 #define I_ERR_ODD_FILE_EXTENT           (1 << 5)
189 #define I_ERR_BAD_FILE_EXTENT           (1 << 6)
190 #define I_ERR_FILE_EXTENT_OVERLAP       (1 << 7)
191 #define I_ERR_FILE_EXTENT_DISCOUNT      (1 << 8) // 100
192 #define I_ERR_DIR_ISIZE_WRONG           (1 << 9)
193 #define I_ERR_FILE_NBYTES_WRONG         (1 << 10) // 400
194 #define I_ERR_ODD_CSUM_ITEM             (1 << 11)
195 #define I_ERR_SOME_CSUM_MISSING         (1 << 12)
196 #define I_ERR_LINK_COUNT_WRONG          (1 << 13)
197
198 struct root_backref {
199         struct list_head list;
200         unsigned int found_dir_item:1;
201         unsigned int found_dir_index:1;
202         unsigned int found_back_ref:1;
203         unsigned int found_forward_ref:1;
204         unsigned int reachable:1;
205         int errors;
206         u64 ref_root;
207         u64 dir;
208         u64 index;
209         u16 namelen;
210         char name[0];
211 };
212
213 struct root_record {
214         struct list_head backrefs;
215         struct cache_extent cache;
216         unsigned int found_root_item:1;
217         u64 objectid;
218         u32 found_ref;
219 };
220
221 struct ptr_node {
222         struct cache_extent cache;
223         void *data;
224 };
225
226 struct shared_node {
227         struct cache_extent cache;
228         struct cache_tree root_cache;
229         struct cache_tree inode_cache;
230         struct inode_record *current;
231         u32 refs;
232 };
233
234 struct block_info {
235         u64 start;
236         u32 size;
237 };
238
239 struct walk_control {
240         struct cache_tree shared;
241         struct shared_node *nodes[BTRFS_MAX_LEVEL];
242         int active_node;
243         int root_level;
244 };
245
246 struct bad_item {
247         struct btrfs_key key;
248         u64 root_id;
249         struct list_head list;
250 };
251
252 static void reset_cached_block_groups(struct btrfs_fs_info *fs_info);
253
254 static void record_root_in_trans(struct btrfs_trans_handle *trans,
255                                  struct btrfs_root *root)
256 {
257         if (root->last_trans != trans->transid) {
258                 root->track_dirty = 1;
259                 root->last_trans = trans->transid;
260                 root->commit_root = root->node;
261                 extent_buffer_get(root->node);
262         }
263 }
264
265 static u8 imode_to_type(u32 imode)
266 {
267 #define S_SHIFT 12
268         static unsigned char btrfs_type_by_mode[S_IFMT >> S_SHIFT] = {
269                 [S_IFREG >> S_SHIFT]    = BTRFS_FT_REG_FILE,
270                 [S_IFDIR >> S_SHIFT]    = BTRFS_FT_DIR,
271                 [S_IFCHR >> S_SHIFT]    = BTRFS_FT_CHRDEV,
272                 [S_IFBLK >> S_SHIFT]    = BTRFS_FT_BLKDEV,
273                 [S_IFIFO >> S_SHIFT]    = BTRFS_FT_FIFO,
274                 [S_IFSOCK >> S_SHIFT]   = BTRFS_FT_SOCK,
275                 [S_IFLNK >> S_SHIFT]    = BTRFS_FT_SYMLINK,
276         };
277
278         return btrfs_type_by_mode[(imode & S_IFMT) >> S_SHIFT];
279 #undef S_SHIFT
280 }
281
282 static int device_record_compare(struct rb_node *node1, struct rb_node *node2)
283 {
284         struct device_record *rec1;
285         struct device_record *rec2;
286
287         rec1 = rb_entry(node1, struct device_record, node);
288         rec2 = rb_entry(node2, struct device_record, node);
289         if (rec1->devid > rec2->devid)
290                 return -1;
291         else if (rec1->devid < rec2->devid)
292                 return 1;
293         else
294                 return 0;
295 }
296
297 static struct inode_record *clone_inode_rec(struct inode_record *orig_rec)
298 {
299         struct inode_record *rec;
300         struct inode_backref *backref;
301         struct inode_backref *orig;
302         size_t size;
303
304         rec = malloc(sizeof(*rec));
305         memcpy(rec, orig_rec, sizeof(*rec));
306         rec->refs = 1;
307         INIT_LIST_HEAD(&rec->backrefs);
308
309         list_for_each_entry(orig, &orig_rec->backrefs, list) {
310                 size = sizeof(*orig) + orig->namelen + 1;
311                 backref = malloc(size);
312                 memcpy(backref, orig, size);
313                 list_add_tail(&backref->list, &rec->backrefs);
314         }
315         return rec;
316 }
317
318 static void print_inode_error(struct btrfs_root *root, struct inode_record *rec)
319 {
320         u64 root_objectid = root->root_key.objectid;
321         int errors = rec->errors;
322
323         if (!errors)
324                 return;
325         /* reloc root errors, we print its corresponding fs root objectid*/
326         if (root_objectid == BTRFS_TREE_RELOC_OBJECTID) {
327                 root_objectid = root->root_key.offset;
328                 fprintf(stderr, "reloc");
329         }
330         fprintf(stderr, "root %llu inode %llu errors %x",
331                 (unsigned long long) root_objectid,
332                 (unsigned long long) rec->ino, rec->errors);
333
334         if (errors & I_ERR_NO_INODE_ITEM)
335                 fprintf(stderr, ", no inode item");
336         if (errors & I_ERR_NO_ORPHAN_ITEM)
337                 fprintf(stderr, ", no orphan item");
338         if (errors & I_ERR_DUP_INODE_ITEM)
339                 fprintf(stderr, ", dup inode item");
340         if (errors & I_ERR_DUP_DIR_INDEX)
341                 fprintf(stderr, ", dup dir index");
342         if (errors & I_ERR_ODD_DIR_ITEM)
343                 fprintf(stderr, ", odd dir item");
344         if (errors & I_ERR_ODD_FILE_EXTENT)
345                 fprintf(stderr, ", odd file extent");
346         if (errors & I_ERR_BAD_FILE_EXTENT)
347                 fprintf(stderr, ", bad file extent");
348         if (errors & I_ERR_FILE_EXTENT_OVERLAP)
349                 fprintf(stderr, ", file extent overlap");
350         if (errors & I_ERR_FILE_EXTENT_DISCOUNT)
351                 fprintf(stderr, ", file extent discount");
352         if (errors & I_ERR_DIR_ISIZE_WRONG)
353                 fprintf(stderr, ", dir isize wrong");
354         if (errors & I_ERR_FILE_NBYTES_WRONG)
355                 fprintf(stderr, ", nbytes wrong");
356         if (errors & I_ERR_ODD_CSUM_ITEM)
357                 fprintf(stderr, ", odd csum item");
358         if (errors & I_ERR_SOME_CSUM_MISSING)
359                 fprintf(stderr, ", some csum missing");
360         if (errors & I_ERR_LINK_COUNT_WRONG)
361                 fprintf(stderr, ", link count wrong");
362         fprintf(stderr, "\n");
363 }
364
365 static void print_ref_error(int errors)
366 {
367         if (errors & REF_ERR_NO_DIR_ITEM)
368                 fprintf(stderr, ", no dir item");
369         if (errors & REF_ERR_NO_DIR_INDEX)
370                 fprintf(stderr, ", no dir index");
371         if (errors & REF_ERR_NO_INODE_REF)
372                 fprintf(stderr, ", no inode ref");
373         if (errors & REF_ERR_DUP_DIR_ITEM)
374                 fprintf(stderr, ", dup dir item");
375         if (errors & REF_ERR_DUP_DIR_INDEX)
376                 fprintf(stderr, ", dup dir index");
377         if (errors & REF_ERR_DUP_INODE_REF)
378                 fprintf(stderr, ", dup inode ref");
379         if (errors & REF_ERR_INDEX_UNMATCH)
380                 fprintf(stderr, ", index unmatch");
381         if (errors & REF_ERR_FILETYPE_UNMATCH)
382                 fprintf(stderr, ", filetype unmatch");
383         if (errors & REF_ERR_NAME_TOO_LONG)
384                 fprintf(stderr, ", name too long");
385         if (errors & REF_ERR_NO_ROOT_REF)
386                 fprintf(stderr, ", no root ref");
387         if (errors & REF_ERR_NO_ROOT_BACKREF)
388                 fprintf(stderr, ", no root backref");
389         if (errors & REF_ERR_DUP_ROOT_REF)
390                 fprintf(stderr, ", dup root ref");
391         if (errors & REF_ERR_DUP_ROOT_BACKREF)
392                 fprintf(stderr, ", dup root backref");
393         fprintf(stderr, "\n");
394 }
395
396 static struct inode_record *get_inode_rec(struct cache_tree *inode_cache,
397                                           u64 ino, int mod)
398 {
399         struct ptr_node *node;
400         struct cache_extent *cache;
401         struct inode_record *rec = NULL;
402         int ret;
403
404         cache = lookup_cache_extent(inode_cache, ino, 1);
405         if (cache) {
406                 node = container_of(cache, struct ptr_node, cache);
407                 rec = node->data;
408                 if (mod && rec->refs > 1) {
409                         node->data = clone_inode_rec(rec);
410                         rec->refs--;
411                         rec = node->data;
412                 }
413         } else if (mod) {
414                 rec = calloc(1, sizeof(*rec));
415                 rec->ino = ino;
416                 rec->extent_start = (u64)-1;
417                 rec->first_extent_gap = (u64)-1;
418                 rec->refs = 1;
419                 INIT_LIST_HEAD(&rec->backrefs);
420
421                 node = malloc(sizeof(*node));
422                 node->cache.start = ino;
423                 node->cache.size = 1;
424                 node->data = rec;
425
426                 if (ino == BTRFS_FREE_INO_OBJECTID)
427                         rec->found_link = 1;
428
429                 ret = insert_cache_extent(inode_cache, &node->cache);
430                 BUG_ON(ret);
431         }
432         return rec;
433 }
434
435 static void free_inode_rec(struct inode_record *rec)
436 {
437         struct inode_backref *backref;
438
439         if (--rec->refs > 0)
440                 return;
441
442         while (!list_empty(&rec->backrefs)) {
443                 backref = list_entry(rec->backrefs.next,
444                                      struct inode_backref, list);
445                 list_del(&backref->list);
446                 free(backref);
447         }
448         free(rec);
449 }
450
451 static int can_free_inode_rec(struct inode_record *rec)
452 {
453         if (!rec->errors && rec->checked && rec->found_inode_item &&
454             rec->nlink == rec->found_link && list_empty(&rec->backrefs))
455                 return 1;
456         return 0;
457 }
458
459 static void maybe_free_inode_rec(struct cache_tree *inode_cache,
460                                  struct inode_record *rec)
461 {
462         struct cache_extent *cache;
463         struct inode_backref *tmp, *backref;
464         struct ptr_node *node;
465         unsigned char filetype;
466
467         if (!rec->found_inode_item)
468                 return;
469
470         filetype = imode_to_type(rec->imode);
471         list_for_each_entry_safe(backref, tmp, &rec->backrefs, list) {
472                 if (backref->found_dir_item && backref->found_dir_index) {
473                         if (backref->filetype != filetype)
474                                 backref->errors |= REF_ERR_FILETYPE_UNMATCH;
475                         if (!backref->errors && backref->found_inode_ref) {
476                                 list_del(&backref->list);
477                                 free(backref);
478                         }
479                 }
480         }
481
482         if (!rec->checked || rec->merging)
483                 return;
484
485         if (S_ISDIR(rec->imode)) {
486                 if (rec->found_size != rec->isize)
487                         rec->errors |= I_ERR_DIR_ISIZE_WRONG;
488                 if (rec->found_file_extent)
489                         rec->errors |= I_ERR_ODD_FILE_EXTENT;
490         } else if (S_ISREG(rec->imode) || S_ISLNK(rec->imode)) {
491                 if (rec->found_dir_item)
492                         rec->errors |= I_ERR_ODD_DIR_ITEM;
493                 if (rec->found_size != rec->nbytes)
494                         rec->errors |= I_ERR_FILE_NBYTES_WRONG;
495                 if (rec->extent_start == (u64)-1 || rec->extent_start > 0)
496                         rec->first_extent_gap = 0;
497                 if (rec->nlink > 0 && !no_holes &&
498                     (rec->extent_end < rec->isize ||
499                      rec->first_extent_gap < rec->isize))
500                         rec->errors |= I_ERR_FILE_EXTENT_DISCOUNT;
501         }
502
503         if (S_ISREG(rec->imode) || S_ISLNK(rec->imode)) {
504                 if (rec->found_csum_item && rec->nodatasum)
505                         rec->errors |= I_ERR_ODD_CSUM_ITEM;
506                 if (rec->some_csum_missing && !rec->nodatasum)
507                         rec->errors |= I_ERR_SOME_CSUM_MISSING;
508         }
509
510         BUG_ON(rec->refs != 1);
511         if (can_free_inode_rec(rec)) {
512                 cache = lookup_cache_extent(inode_cache, rec->ino, 1);
513                 node = container_of(cache, struct ptr_node, cache);
514                 BUG_ON(node->data != rec);
515                 remove_cache_extent(inode_cache, &node->cache);
516                 free(node);
517                 free_inode_rec(rec);
518         }
519 }
520
521 static int check_orphan_item(struct btrfs_root *root, u64 ino)
522 {
523         struct btrfs_path path;
524         struct btrfs_key key;
525         int ret;
526
527         key.objectid = BTRFS_ORPHAN_OBJECTID;
528         key.type = BTRFS_ORPHAN_ITEM_KEY;
529         key.offset = ino;
530
531         btrfs_init_path(&path);
532         ret = btrfs_search_slot(NULL, root, &key, &path, 0, 0);
533         btrfs_release_path(&path);
534         if (ret > 0)
535                 ret = -ENOENT;
536         return ret;
537 }
538
539 static int process_inode_item(struct extent_buffer *eb,
540                               int slot, struct btrfs_key *key,
541                               struct shared_node *active_node)
542 {
543         struct inode_record *rec;
544         struct btrfs_inode_item *item;
545
546         rec = active_node->current;
547         BUG_ON(rec->ino != key->objectid || rec->refs > 1);
548         if (rec->found_inode_item) {
549                 rec->errors |= I_ERR_DUP_INODE_ITEM;
550                 return 1;
551         }
552         item = btrfs_item_ptr(eb, slot, struct btrfs_inode_item);
553         rec->nlink = btrfs_inode_nlink(eb, item);
554         rec->isize = btrfs_inode_size(eb, item);
555         rec->nbytes = btrfs_inode_nbytes(eb, item);
556         rec->imode = btrfs_inode_mode(eb, item);
557         if (btrfs_inode_flags(eb, item) & BTRFS_INODE_NODATASUM)
558                 rec->nodatasum = 1;
559         rec->found_inode_item = 1;
560         if (rec->nlink == 0)
561                 rec->errors |= I_ERR_NO_ORPHAN_ITEM;
562         maybe_free_inode_rec(&active_node->inode_cache, rec);
563         return 0;
564 }
565
566 static struct inode_backref *get_inode_backref(struct inode_record *rec,
567                                                 const char *name,
568                                                 int namelen, u64 dir)
569 {
570         struct inode_backref *backref;
571
572         list_for_each_entry(backref, &rec->backrefs, list) {
573                 if (rec->ino == BTRFS_MULTIPLE_OBJECTIDS)
574                         break;
575                 if (backref->dir != dir || backref->namelen != namelen)
576                         continue;
577                 if (memcmp(name, backref->name, namelen))
578                         continue;
579                 return backref;
580         }
581
582         backref = malloc(sizeof(*backref) + namelen + 1);
583         memset(backref, 0, sizeof(*backref));
584         backref->dir = dir;
585         backref->namelen = namelen;
586         memcpy(backref->name, name, namelen);
587         backref->name[namelen] = '\0';
588         list_add_tail(&backref->list, &rec->backrefs);
589         return backref;
590 }
591
592 static int add_inode_backref(struct cache_tree *inode_cache,
593                              u64 ino, u64 dir, u64 index,
594                              const char *name, int namelen,
595                              int filetype, int itemtype, int errors)
596 {
597         struct inode_record *rec;
598         struct inode_backref *backref;
599
600         rec = get_inode_rec(inode_cache, ino, 1);
601         backref = get_inode_backref(rec, name, namelen, dir);
602         if (errors)
603                 backref->errors |= errors;
604         if (itemtype == BTRFS_DIR_INDEX_KEY) {
605                 if (backref->found_dir_index)
606                         backref->errors |= REF_ERR_DUP_DIR_INDEX;
607                 if (backref->found_inode_ref && backref->index != index)
608                         backref->errors |= REF_ERR_INDEX_UNMATCH;
609                 if (backref->found_dir_item && backref->filetype != filetype)
610                         backref->errors |= REF_ERR_FILETYPE_UNMATCH;
611
612                 backref->index = index;
613                 backref->filetype = filetype;
614                 backref->found_dir_index = 1;
615         } else if (itemtype == BTRFS_DIR_ITEM_KEY) {
616                 rec->found_link++;
617                 if (backref->found_dir_item)
618                         backref->errors |= REF_ERR_DUP_DIR_ITEM;
619                 if (backref->found_dir_index && backref->filetype != filetype)
620                         backref->errors |= REF_ERR_FILETYPE_UNMATCH;
621
622                 backref->filetype = filetype;
623                 backref->found_dir_item = 1;
624         } else if ((itemtype == BTRFS_INODE_REF_KEY) ||
625                    (itemtype == BTRFS_INODE_EXTREF_KEY)) {
626                 if (backref->found_inode_ref)
627                         backref->errors |= REF_ERR_DUP_INODE_REF;
628                 if (backref->found_dir_index && backref->index != index)
629                         backref->errors |= REF_ERR_INDEX_UNMATCH;
630                 else
631                         backref->index = index;
632
633                 backref->ref_type = itemtype;
634                 backref->found_inode_ref = 1;
635         } else {
636                 BUG_ON(1);
637         }
638
639         maybe_free_inode_rec(inode_cache, rec);
640         return 0;
641 }
642
643 static int merge_inode_recs(struct inode_record *src, struct inode_record *dst,
644                             struct cache_tree *dst_cache)
645 {
646         struct inode_backref *backref;
647         u32 dir_count = 0;
648
649         dst->merging = 1;
650         list_for_each_entry(backref, &src->backrefs, list) {
651                 if (backref->found_dir_index) {
652                         add_inode_backref(dst_cache, dst->ino, backref->dir,
653                                         backref->index, backref->name,
654                                         backref->namelen, backref->filetype,
655                                         BTRFS_DIR_INDEX_KEY, backref->errors);
656                 }
657                 if (backref->found_dir_item) {
658                         dir_count++;
659                         add_inode_backref(dst_cache, dst->ino,
660                                         backref->dir, 0, backref->name,
661                                         backref->namelen, backref->filetype,
662                                         BTRFS_DIR_ITEM_KEY, backref->errors);
663                 }
664                 if (backref->found_inode_ref) {
665                         add_inode_backref(dst_cache, dst->ino,
666                                         backref->dir, backref->index,
667                                         backref->name, backref->namelen, 0,
668                                         backref->ref_type, backref->errors);
669                 }
670         }
671
672         if (src->found_dir_item)
673                 dst->found_dir_item = 1;
674         if (src->found_file_extent)
675                 dst->found_file_extent = 1;
676         if (src->found_csum_item)
677                 dst->found_csum_item = 1;
678         if (src->some_csum_missing)
679                 dst->some_csum_missing = 1;
680         if (dst->first_extent_gap > src->first_extent_gap)
681                 dst->first_extent_gap = src->first_extent_gap;
682
683         BUG_ON(src->found_link < dir_count);
684         dst->found_link += src->found_link - dir_count;
685         dst->found_size += src->found_size;
686         if (src->extent_start != (u64)-1) {
687                 if (dst->extent_start == (u64)-1) {
688                         dst->extent_start = src->extent_start;
689                         dst->extent_end = src->extent_end;
690                 } else {
691                         if (dst->extent_end > src->extent_start)
692                                 dst->errors |= I_ERR_FILE_EXTENT_OVERLAP;
693                         else if (dst->extent_end < src->extent_start &&
694                                  dst->extent_end < dst->first_extent_gap)
695                                 dst->first_extent_gap = dst->extent_end;
696                         if (dst->extent_end < src->extent_end)
697                                 dst->extent_end = src->extent_end;
698                 }
699         }
700
701         dst->errors |= src->errors;
702         if (src->found_inode_item) {
703                 if (!dst->found_inode_item) {
704                         dst->nlink = src->nlink;
705                         dst->isize = src->isize;
706                         dst->nbytes = src->nbytes;
707                         dst->imode = src->imode;
708                         dst->nodatasum = src->nodatasum;
709                         dst->found_inode_item = 1;
710                 } else {
711                         dst->errors |= I_ERR_DUP_INODE_ITEM;
712                 }
713         }
714         dst->merging = 0;
715
716         return 0;
717 }
718
719 static int splice_shared_node(struct shared_node *src_node,
720                               struct shared_node *dst_node)
721 {
722         struct cache_extent *cache;
723         struct ptr_node *node, *ins;
724         struct cache_tree *src, *dst;
725         struct inode_record *rec, *conflict;
726         u64 current_ino = 0;
727         int splice = 0;
728         int ret;
729
730         if (--src_node->refs == 0)
731                 splice = 1;
732         if (src_node->current)
733                 current_ino = src_node->current->ino;
734
735         src = &src_node->root_cache;
736         dst = &dst_node->root_cache;
737 again:
738         cache = search_cache_extent(src, 0);
739         while (cache) {
740                 node = container_of(cache, struct ptr_node, cache);
741                 rec = node->data;
742                 cache = next_cache_extent(cache);
743
744                 if (splice) {
745                         remove_cache_extent(src, &node->cache);
746                         ins = node;
747                 } else {
748                         ins = malloc(sizeof(*ins));
749                         ins->cache.start = node->cache.start;
750                         ins->cache.size = node->cache.size;
751                         ins->data = rec;
752                         rec->refs++;
753                 }
754                 ret = insert_cache_extent(dst, &ins->cache);
755                 if (ret == -EEXIST) {
756                         conflict = get_inode_rec(dst, rec->ino, 1);
757                         merge_inode_recs(rec, conflict, dst);
758                         if (rec->checked) {
759                                 conflict->checked = 1;
760                                 if (dst_node->current == conflict)
761                                         dst_node->current = NULL;
762                         }
763                         maybe_free_inode_rec(dst, conflict);
764                         free_inode_rec(rec);
765                         free(ins);
766                 } else {
767                         BUG_ON(ret);
768                 }
769         }
770
771         if (src == &src_node->root_cache) {
772                 src = &src_node->inode_cache;
773                 dst = &dst_node->inode_cache;
774                 goto again;
775         }
776
777         if (current_ino > 0 && (!dst_node->current ||
778             current_ino > dst_node->current->ino)) {
779                 if (dst_node->current) {
780                         dst_node->current->checked = 1;
781                         maybe_free_inode_rec(dst, dst_node->current);
782                 }
783                 dst_node->current = get_inode_rec(dst, current_ino, 1);
784         }
785         return 0;
786 }
787
788 static void free_inode_ptr(struct cache_extent *cache)
789 {
790         struct ptr_node *node;
791         struct inode_record *rec;
792
793         node = container_of(cache, struct ptr_node, cache);
794         rec = node->data;
795         free_inode_rec(rec);
796         free(node);
797 }
798
799 FREE_EXTENT_CACHE_BASED_TREE(inode_recs, free_inode_ptr);
800
801 static struct shared_node *find_shared_node(struct cache_tree *shared,
802                                             u64 bytenr)
803 {
804         struct cache_extent *cache;
805         struct shared_node *node;
806
807         cache = lookup_cache_extent(shared, bytenr, 1);
808         if (cache) {
809                 node = container_of(cache, struct shared_node, cache);
810                 return node;
811         }
812         return NULL;
813 }
814
815 static int add_shared_node(struct cache_tree *shared, u64 bytenr, u32 refs)
816 {
817         int ret;
818         struct shared_node *node;
819
820         node = calloc(1, sizeof(*node));
821         node->cache.start = bytenr;
822         node->cache.size = 1;
823         cache_tree_init(&node->root_cache);
824         cache_tree_init(&node->inode_cache);
825         node->refs = refs;
826
827         ret = insert_cache_extent(shared, &node->cache);
828         BUG_ON(ret);
829         return 0;
830 }
831
832 static int enter_shared_node(struct btrfs_root *root, u64 bytenr, u32 refs,
833                              struct walk_control *wc, int level)
834 {
835         struct shared_node *node;
836         struct shared_node *dest;
837
838         if (level == wc->active_node)
839                 return 0;
840
841         BUG_ON(wc->active_node <= level);
842         node = find_shared_node(&wc->shared, bytenr);
843         if (!node) {
844                 add_shared_node(&wc->shared, bytenr, refs);
845                 node = find_shared_node(&wc->shared, bytenr);
846                 wc->nodes[level] = node;
847                 wc->active_node = level;
848                 return 0;
849         }
850
851         if (wc->root_level == wc->active_node &&
852             btrfs_root_refs(&root->root_item) == 0) {
853                 if (--node->refs == 0) {
854                         free_inode_recs_tree(&node->root_cache);
855                         free_inode_recs_tree(&node->inode_cache);
856                         remove_cache_extent(&wc->shared, &node->cache);
857                         free(node);
858                 }
859                 return 1;
860         }
861
862         dest = wc->nodes[wc->active_node];
863         splice_shared_node(node, dest);
864         if (node->refs == 0) {
865                 remove_cache_extent(&wc->shared, &node->cache);
866                 free(node);
867         }
868         return 1;
869 }
870
871 static int leave_shared_node(struct btrfs_root *root,
872                              struct walk_control *wc, int level)
873 {
874         struct shared_node *node;
875         struct shared_node *dest;
876         int i;
877
878         if (level == wc->root_level)
879                 return 0;
880
881         for (i = level + 1; i < BTRFS_MAX_LEVEL; i++) {
882                 if (wc->nodes[i])
883                         break;
884         }
885         BUG_ON(i >= BTRFS_MAX_LEVEL);
886
887         node = wc->nodes[wc->active_node];
888         wc->nodes[wc->active_node] = NULL;
889         wc->active_node = i;
890
891         dest = wc->nodes[wc->active_node];
892         if (wc->active_node < wc->root_level ||
893             btrfs_root_refs(&root->root_item) > 0) {
894                 BUG_ON(node->refs <= 1);
895                 splice_shared_node(node, dest);
896         } else {
897                 BUG_ON(node->refs < 2);
898                 node->refs--;
899         }
900         return 0;
901 }
902
903 /*
904  * Returns:
905  * < 0 - on error
906  * 1   - if the root with id child_root_id is a child of root parent_root_id
907  * 0   - if the root child_root_id isn't a child of the root parent_root_id but
908  *       has other root(s) as parent(s)
909  * 2   - if the root child_root_id doesn't have any parent roots
910  */
911 static int is_child_root(struct btrfs_root *root, u64 parent_root_id,
912                          u64 child_root_id)
913 {
914         struct btrfs_path path;
915         struct btrfs_key key;
916         struct extent_buffer *leaf;
917         int has_parent = 0;
918         int ret;
919
920         btrfs_init_path(&path);
921
922         key.objectid = parent_root_id;
923         key.type = BTRFS_ROOT_REF_KEY;
924         key.offset = child_root_id;
925         ret = btrfs_search_slot(NULL, root->fs_info->tree_root, &key, &path,
926                                 0, 0);
927         if (ret < 0)
928                 return ret;
929         btrfs_release_path(&path);
930         if (!ret)
931                 return 1;
932
933         key.objectid = child_root_id;
934         key.type = BTRFS_ROOT_BACKREF_KEY;
935         key.offset = 0;
936         ret = btrfs_search_slot(NULL, root->fs_info->tree_root, &key, &path,
937                                 0, 0);
938         if (ret < 0)
939                 goto out;
940
941         while (1) {
942                 leaf = path.nodes[0];
943                 if (path.slots[0] >= btrfs_header_nritems(leaf)) {
944                         ret = btrfs_next_leaf(root->fs_info->tree_root, &path);
945                         if (ret)
946                                 break;
947                         leaf = path.nodes[0];
948                 }
949
950                 btrfs_item_key_to_cpu(leaf, &key, path.slots[0]);
951                 if (key.objectid != child_root_id ||
952                     key.type != BTRFS_ROOT_BACKREF_KEY)
953                         break;
954
955                 has_parent = 1;
956
957                 if (key.offset == parent_root_id) {
958                         btrfs_release_path(&path);
959                         return 1;
960                 }
961
962                 path.slots[0]++;
963         }
964 out:
965         btrfs_release_path(&path);
966         if (ret < 0)
967                 return ret;
968         return has_parent ? 0 : 2;
969 }
970
971 static int process_dir_item(struct btrfs_root *root,
972                             struct extent_buffer *eb,
973                             int slot, struct btrfs_key *key,
974                             struct shared_node *active_node)
975 {
976         u32 total;
977         u32 cur = 0;
978         u32 len;
979         u32 name_len;
980         u32 data_len;
981         int error;
982         int nritems = 0;
983         int filetype;
984         struct btrfs_dir_item *di;
985         struct inode_record *rec;
986         struct cache_tree *root_cache;
987         struct cache_tree *inode_cache;
988         struct btrfs_key location;
989         char namebuf[BTRFS_NAME_LEN];
990
991         root_cache = &active_node->root_cache;
992         inode_cache = &active_node->inode_cache;
993         rec = active_node->current;
994         rec->found_dir_item = 1;
995
996         di = btrfs_item_ptr(eb, slot, struct btrfs_dir_item);
997         total = btrfs_item_size_nr(eb, slot);
998         while (cur < total) {
999                 nritems++;
1000                 btrfs_dir_item_key_to_cpu(eb, di, &location);
1001                 name_len = btrfs_dir_name_len(eb, di);
1002                 data_len = btrfs_dir_data_len(eb, di);
1003                 filetype = btrfs_dir_type(eb, di);
1004
1005                 rec->found_size += name_len;
1006                 if (name_len <= BTRFS_NAME_LEN) {
1007                         len = name_len;
1008                         error = 0;
1009                 } else {
1010                         len = BTRFS_NAME_LEN;
1011                         error = REF_ERR_NAME_TOO_LONG;
1012                 }
1013                 read_extent_buffer(eb, namebuf, (unsigned long)(di + 1), len);
1014
1015                 if (location.type == BTRFS_INODE_ITEM_KEY) {
1016                         add_inode_backref(inode_cache, location.objectid,
1017                                           key->objectid, key->offset, namebuf,
1018                                           len, filetype, key->type, error);
1019                 } else if (location.type == BTRFS_ROOT_ITEM_KEY) {
1020                         add_inode_backref(root_cache, location.objectid,
1021                                           key->objectid, key->offset,
1022                                           namebuf, len, filetype,
1023                                           key->type, error);
1024                 } else {
1025                         fprintf(stderr, "invalid location in dir item %u\n",
1026                                 location.type);
1027                         add_inode_backref(inode_cache, BTRFS_MULTIPLE_OBJECTIDS,
1028                                           key->objectid, key->offset, namebuf,
1029                                           len, filetype, key->type, error);
1030                 }
1031
1032                 len = sizeof(*di) + name_len + data_len;
1033                 di = (struct btrfs_dir_item *)((char *)di + len);
1034                 cur += len;
1035         }
1036         if (key->type == BTRFS_DIR_INDEX_KEY && nritems > 1)
1037                 rec->errors |= I_ERR_DUP_DIR_INDEX;
1038
1039         return 0;
1040 }
1041
1042 static int process_inode_ref(struct extent_buffer *eb,
1043                              int slot, struct btrfs_key *key,
1044                              struct shared_node *active_node)
1045 {
1046         u32 total;
1047         u32 cur = 0;
1048         u32 len;
1049         u32 name_len;
1050         u64 index;
1051         int error;
1052         struct cache_tree *inode_cache;
1053         struct btrfs_inode_ref *ref;
1054         char namebuf[BTRFS_NAME_LEN];
1055
1056         inode_cache = &active_node->inode_cache;
1057
1058         ref = btrfs_item_ptr(eb, slot, struct btrfs_inode_ref);
1059         total = btrfs_item_size_nr(eb, slot);
1060         while (cur < total) {
1061                 name_len = btrfs_inode_ref_name_len(eb, ref);
1062                 index = btrfs_inode_ref_index(eb, ref);
1063                 if (name_len <= BTRFS_NAME_LEN) {
1064                         len = name_len;
1065                         error = 0;
1066                 } else {
1067                         len = BTRFS_NAME_LEN;
1068                         error = REF_ERR_NAME_TOO_LONG;
1069                 }
1070                 read_extent_buffer(eb, namebuf, (unsigned long)(ref + 1), len);
1071                 add_inode_backref(inode_cache, key->objectid, key->offset,
1072                                   index, namebuf, len, 0, key->type, error);
1073
1074                 len = sizeof(*ref) + name_len;
1075                 ref = (struct btrfs_inode_ref *)((char *)ref + len);
1076                 cur += len;
1077         }
1078         return 0;
1079 }
1080
1081 static int process_inode_extref(struct extent_buffer *eb,
1082                                 int slot, struct btrfs_key *key,
1083                                 struct shared_node *active_node)
1084 {
1085         u32 total;
1086         u32 cur = 0;
1087         u32 len;
1088         u32 name_len;
1089         u64 index;
1090         u64 parent;
1091         int error;
1092         struct cache_tree *inode_cache;
1093         struct btrfs_inode_extref *extref;
1094         char namebuf[BTRFS_NAME_LEN];
1095
1096         inode_cache = &active_node->inode_cache;
1097
1098         extref = btrfs_item_ptr(eb, slot, struct btrfs_inode_extref);
1099         total = btrfs_item_size_nr(eb, slot);
1100         while (cur < total) {
1101                 name_len = btrfs_inode_extref_name_len(eb, extref);
1102                 index = btrfs_inode_extref_index(eb, extref);
1103                 parent = btrfs_inode_extref_parent(eb, extref);
1104                 if (name_len <= BTRFS_NAME_LEN) {
1105                         len = name_len;
1106                         error = 0;
1107                 } else {
1108                         len = BTRFS_NAME_LEN;
1109                         error = REF_ERR_NAME_TOO_LONG;
1110                 }
1111                 read_extent_buffer(eb, namebuf,
1112                                    (unsigned long)(extref + 1), len);
1113                 add_inode_backref(inode_cache, key->objectid, parent,
1114                                   index, namebuf, len, 0, key->type, error);
1115
1116                 len = sizeof(*extref) + name_len;
1117                 extref = (struct btrfs_inode_extref *)((char *)extref + len);
1118                 cur += len;
1119         }
1120         return 0;
1121
1122 }
1123
1124 static int count_csum_range(struct btrfs_root *root, u64 start,
1125                             u64 len, u64 *found)
1126 {
1127         struct btrfs_key key;
1128         struct btrfs_path path;
1129         struct extent_buffer *leaf;
1130         int ret;
1131         size_t size;
1132         *found = 0;
1133         u64 csum_end;
1134         u16 csum_size = btrfs_super_csum_size(root->fs_info->super_copy);
1135
1136         btrfs_init_path(&path);
1137
1138         key.objectid = BTRFS_EXTENT_CSUM_OBJECTID;
1139         key.offset = start;
1140         key.type = BTRFS_EXTENT_CSUM_KEY;
1141
1142         ret = btrfs_search_slot(NULL, root->fs_info->csum_root,
1143                                 &key, &path, 0, 0);
1144         if (ret < 0)
1145                 goto out;
1146         if (ret > 0 && path.slots[0] > 0) {
1147                 leaf = path.nodes[0];
1148                 btrfs_item_key_to_cpu(leaf, &key, path.slots[0] - 1);
1149                 if (key.objectid == BTRFS_EXTENT_CSUM_OBJECTID &&
1150                     key.type == BTRFS_EXTENT_CSUM_KEY)
1151                         path.slots[0]--;
1152         }
1153
1154         while (len > 0) {
1155                 leaf = path.nodes[0];
1156                 if (path.slots[0] >= btrfs_header_nritems(leaf)) {
1157                         ret = btrfs_next_leaf(root->fs_info->csum_root, &path);
1158                         if (ret > 0)
1159                                 break;
1160                         else if (ret < 0)
1161                                 goto out;
1162                         leaf = path.nodes[0];
1163                 }
1164
1165                 btrfs_item_key_to_cpu(leaf, &key, path.slots[0]);
1166                 if (key.objectid != BTRFS_EXTENT_CSUM_OBJECTID ||
1167                     key.type != BTRFS_EXTENT_CSUM_KEY)
1168                         break;
1169
1170                 btrfs_item_key_to_cpu(leaf, &key, path.slots[0]);
1171                 if (key.offset >= start + len)
1172                         break;
1173
1174                 if (key.offset > start)
1175                         start = key.offset;
1176
1177                 size = btrfs_item_size_nr(leaf, path.slots[0]);
1178                 csum_end = key.offset + (size / csum_size) * root->sectorsize;
1179                 if (csum_end > start) {
1180                         size = min(csum_end - start, len);
1181                         len -= size;
1182                         start += size;
1183                         *found += size;
1184                 }
1185
1186                 path.slots[0]++;
1187         }
1188 out:
1189         if (ret < 0)
1190                 return ret;
1191         btrfs_release_path(&path);
1192         return 0;
1193 }
1194
1195 static int process_file_extent(struct btrfs_root *root,
1196                                 struct extent_buffer *eb,
1197                                 int slot, struct btrfs_key *key,
1198                                 struct shared_node *active_node)
1199 {
1200         struct inode_record *rec;
1201         struct btrfs_file_extent_item *fi;
1202         u64 num_bytes = 0;
1203         u64 disk_bytenr = 0;
1204         u64 extent_offset = 0;
1205         u64 mask = root->sectorsize - 1;
1206         int extent_type;
1207         int ret;
1208
1209         rec = active_node->current;
1210         BUG_ON(rec->ino != key->objectid || rec->refs > 1);
1211         rec->found_file_extent = 1;
1212
1213         if (rec->extent_start == (u64)-1) {
1214                 rec->extent_start = key->offset;
1215                 rec->extent_end = key->offset;
1216         }
1217
1218         if (rec->extent_end > key->offset)
1219                 rec->errors |= I_ERR_FILE_EXTENT_OVERLAP;
1220         else if (rec->extent_end < key->offset &&
1221                  rec->extent_end < rec->first_extent_gap)
1222                 rec->first_extent_gap = rec->extent_end;
1223
1224         fi = btrfs_item_ptr(eb, slot, struct btrfs_file_extent_item);
1225         extent_type = btrfs_file_extent_type(eb, fi);
1226
1227         if (extent_type == BTRFS_FILE_EXTENT_INLINE) {
1228                 num_bytes = btrfs_file_extent_inline_len(eb, slot, fi);
1229                 if (num_bytes == 0)
1230                         rec->errors |= I_ERR_BAD_FILE_EXTENT;
1231                 rec->found_size += num_bytes;
1232                 num_bytes = (num_bytes + mask) & ~mask;
1233         } else if (extent_type == BTRFS_FILE_EXTENT_REG ||
1234                    extent_type == BTRFS_FILE_EXTENT_PREALLOC) {
1235                 num_bytes = btrfs_file_extent_num_bytes(eb, fi);
1236                 disk_bytenr = btrfs_file_extent_disk_bytenr(eb, fi);
1237                 extent_offset = btrfs_file_extent_offset(eb, fi);
1238                 if (num_bytes == 0 || (num_bytes & mask))
1239                         rec->errors |= I_ERR_BAD_FILE_EXTENT;
1240                 if (num_bytes + extent_offset >
1241                     btrfs_file_extent_ram_bytes(eb, fi))
1242                         rec->errors |= I_ERR_BAD_FILE_EXTENT;
1243                 if (extent_type == BTRFS_FILE_EXTENT_PREALLOC &&
1244                     (btrfs_file_extent_compression(eb, fi) ||
1245                      btrfs_file_extent_encryption(eb, fi) ||
1246                      btrfs_file_extent_other_encoding(eb, fi)))
1247                         rec->errors |= I_ERR_BAD_FILE_EXTENT;
1248                 if (disk_bytenr > 0)
1249                         rec->found_size += num_bytes;
1250         } else {
1251                 rec->errors |= I_ERR_BAD_FILE_EXTENT;
1252         }
1253         rec->extent_end = key->offset + num_bytes;
1254
1255         if (disk_bytenr > 0) {
1256                 u64 found;
1257                 if (btrfs_file_extent_compression(eb, fi))
1258                         num_bytes = btrfs_file_extent_disk_num_bytes(eb, fi);
1259                 else
1260                         disk_bytenr += extent_offset;
1261
1262                 ret = count_csum_range(root, disk_bytenr, num_bytes, &found);
1263                 if (ret < 0)
1264                         return ret;
1265                 if (extent_type == BTRFS_FILE_EXTENT_REG) {
1266                         if (found > 0)
1267                                 rec->found_csum_item = 1;
1268                         if (found < num_bytes)
1269                                 rec->some_csum_missing = 1;
1270                 } else if (extent_type == BTRFS_FILE_EXTENT_PREALLOC) {
1271                         if (found > 0)
1272                                 rec->errors |= I_ERR_ODD_CSUM_ITEM;
1273                 }
1274         }
1275         return 0;
1276 }
1277
1278 static int process_one_leaf(struct btrfs_root *root, struct extent_buffer *eb,
1279                             struct walk_control *wc)
1280 {
1281         struct btrfs_key key;
1282         u32 nritems;
1283         int i;
1284         int ret = 0;
1285         struct cache_tree *inode_cache;
1286         struct shared_node *active_node;
1287
1288         if (wc->root_level == wc->active_node &&
1289             btrfs_root_refs(&root->root_item) == 0)
1290                 return 0;
1291
1292         active_node = wc->nodes[wc->active_node];
1293         inode_cache = &active_node->inode_cache;
1294         nritems = btrfs_header_nritems(eb);
1295         for (i = 0; i < nritems; i++) {
1296                 btrfs_item_key_to_cpu(eb, &key, i);
1297
1298                 if (key.objectid == BTRFS_FREE_SPACE_OBJECTID)
1299                         continue;
1300                 if (key.type == BTRFS_ORPHAN_ITEM_KEY)
1301                         continue;
1302
1303                 if (active_node->current == NULL ||
1304                     active_node->current->ino < key.objectid) {
1305                         if (active_node->current) {
1306                                 active_node->current->checked = 1;
1307                                 maybe_free_inode_rec(inode_cache,
1308                                                      active_node->current);
1309                         }
1310                         active_node->current = get_inode_rec(inode_cache,
1311                                                              key.objectid, 1);
1312                 }
1313                 switch (key.type) {
1314                 case BTRFS_DIR_ITEM_KEY:
1315                 case BTRFS_DIR_INDEX_KEY:
1316                         ret = process_dir_item(root, eb, i, &key, active_node);
1317                         break;
1318                 case BTRFS_INODE_REF_KEY:
1319                         ret = process_inode_ref(eb, i, &key, active_node);
1320                         break;
1321                 case BTRFS_INODE_EXTREF_KEY:
1322                         ret = process_inode_extref(eb, i, &key, active_node);
1323                         break;
1324                 case BTRFS_INODE_ITEM_KEY:
1325                         ret = process_inode_item(eb, i, &key, active_node);
1326                         break;
1327                 case BTRFS_EXTENT_DATA_KEY:
1328                         ret = process_file_extent(root, eb, i, &key,
1329                                                   active_node);
1330                         break;
1331                 default:
1332                         break;
1333                 };
1334         }
1335         return ret;
1336 }
1337
1338 static void reada_walk_down(struct btrfs_root *root,
1339                             struct extent_buffer *node, int slot)
1340 {
1341         u64 bytenr;
1342         u64 ptr_gen;
1343         u32 nritems;
1344         u32 blocksize;
1345         int i;
1346         int level;
1347
1348         level = btrfs_header_level(node);
1349         if (level != 1)
1350                 return;
1351
1352         nritems = btrfs_header_nritems(node);
1353         blocksize = btrfs_level_size(root, level - 1);
1354         for (i = slot; i < nritems; i++) {
1355                 bytenr = btrfs_node_blockptr(node, i);
1356                 ptr_gen = btrfs_node_ptr_generation(node, i);
1357                 readahead_tree_block(root, bytenr, blocksize, ptr_gen);
1358         }
1359 }
1360
1361 /*
1362  * Check the child node/leaf by the following condition:
1363  * 1. the first item key of the node/leaf should be the same with the one
1364  *    in parent.
1365  * 2. block in parent node should match the child node/leaf.
1366  * 3. generation of parent node and child's header should be consistent.
1367  *
1368  * Or the child node/leaf pointed by the key in parent is not valid.
1369  *
1370  * We hope to check leaf owner too, but since subvol may share leaves,
1371  * which makes leaf owner check not so strong, key check should be
1372  * sufficient enough for that case.
1373  */
1374 static int check_child_node(struct btrfs_root *root,
1375                             struct extent_buffer *parent, int slot,
1376                             struct extent_buffer *child)
1377 {
1378         struct btrfs_key parent_key;
1379         struct btrfs_key child_key;
1380         int ret = 0;
1381
1382         btrfs_node_key_to_cpu(parent, &parent_key, slot);
1383         if (btrfs_header_level(child) == 0)
1384                 btrfs_item_key_to_cpu(child, &child_key, 0);
1385         else
1386                 btrfs_node_key_to_cpu(child, &child_key, 0);
1387
1388         if (memcmp(&parent_key, &child_key, sizeof(parent_key))) {
1389                 ret = -EINVAL;
1390                 fprintf(stderr,
1391                         "Wrong key of child node/leaf, wanted: (%llu, %u, %llu), have: (%llu, %u, %llu)\n",
1392                         parent_key.objectid, parent_key.type, parent_key.offset,
1393                         child_key.objectid, child_key.type, child_key.offset);
1394         }
1395         if (btrfs_header_bytenr(child) != btrfs_node_blockptr(parent, slot)) {
1396                 ret = -EINVAL;
1397                 fprintf(stderr, "Wrong block of child node/leaf, wanted: %llu, have: %llu\n",
1398                         btrfs_node_blockptr(parent, slot),
1399                         btrfs_header_bytenr(child));
1400         }
1401         if (btrfs_node_ptr_generation(parent, slot) !=
1402             btrfs_header_generation(child)) {
1403                 ret = -EINVAL;
1404                 fprintf(stderr, "Wrong generation of child node/leaf, wanted: %llu, have: %llu\n",
1405                         btrfs_header_generation(child),
1406                         btrfs_node_ptr_generation(parent, slot));
1407         }
1408         return ret;
1409 }
1410
1411 static int walk_down_tree(struct btrfs_root *root, struct btrfs_path *path,
1412                           struct walk_control *wc, int *level)
1413 {
1414         enum btrfs_tree_block_status status;
1415         u64 bytenr;
1416         u64 ptr_gen;
1417         struct extent_buffer *next;
1418         struct extent_buffer *cur;
1419         u32 blocksize;
1420         int ret, err = 0;
1421         u64 refs;
1422
1423         WARN_ON(*level < 0);
1424         WARN_ON(*level >= BTRFS_MAX_LEVEL);
1425         ret = btrfs_lookup_extent_info(NULL, root,
1426                                        path->nodes[*level]->start,
1427                                        *level, 1, &refs, NULL);
1428         if (ret < 0) {
1429                 err = ret;
1430                 goto out;
1431         }
1432
1433         if (refs > 1) {
1434                 ret = enter_shared_node(root, path->nodes[*level]->start,
1435                                         refs, wc, *level);
1436                 if (ret > 0) {
1437                         err = ret;
1438                         goto out;
1439                 }
1440         }
1441
1442         while (*level >= 0) {
1443                 WARN_ON(*level < 0);
1444                 WARN_ON(*level >= BTRFS_MAX_LEVEL);
1445                 cur = path->nodes[*level];
1446
1447                 if (btrfs_header_level(cur) != *level)
1448                         WARN_ON(1);
1449
1450                 if (path->slots[*level] >= btrfs_header_nritems(cur))
1451                         break;
1452                 if (*level == 0) {
1453                         ret = process_one_leaf(root, cur, wc);
1454                         if (ret < 0)
1455                                 err = ret;
1456                         break;
1457                 }
1458                 bytenr = btrfs_node_blockptr(cur, path->slots[*level]);
1459                 ptr_gen = btrfs_node_ptr_generation(cur, path->slots[*level]);
1460                 blocksize = btrfs_level_size(root, *level - 1);
1461                 ret = btrfs_lookup_extent_info(NULL, root, bytenr, *level - 1,
1462                                                1, &refs, NULL);
1463                 if (ret < 0)
1464                         refs = 0;
1465
1466                 if (refs > 1) {
1467                         ret = enter_shared_node(root, bytenr, refs,
1468                                                 wc, *level - 1);
1469                         if (ret > 0) {
1470                                 path->slots[*level]++;
1471                                 continue;
1472                         }
1473                 }
1474
1475                 next = btrfs_find_tree_block(root, bytenr, blocksize);
1476                 if (!next || !btrfs_buffer_uptodate(next, ptr_gen)) {
1477                         free_extent_buffer(next);
1478                         reada_walk_down(root, cur, path->slots[*level]);
1479                         next = read_tree_block(root, bytenr, blocksize,
1480                                                ptr_gen);
1481                         if (!next) {
1482                                 struct btrfs_key node_key;
1483
1484                                 btrfs_node_key_to_cpu(path->nodes[*level],
1485                                                       &node_key,
1486                                                       path->slots[*level]);
1487                                 btrfs_add_corrupt_extent_record(root->fs_info,
1488                                                 &node_key,
1489                                                 path->nodes[*level]->start,
1490                                                 root->leafsize, *level);
1491                                 err = -EIO;
1492                                 goto out;
1493                         }
1494                 }
1495
1496                 ret = check_child_node(root, cur, path->slots[*level], next);
1497                 if (ret) {
1498                         err = ret;
1499                         goto out;
1500                 }
1501
1502                 if (btrfs_is_leaf(next))
1503                         status = btrfs_check_leaf(root, NULL, next);
1504                 else
1505                         status = btrfs_check_node(root, NULL, next);
1506                 if (status != BTRFS_TREE_BLOCK_CLEAN) {
1507                         free_extent_buffer(next);
1508                         err = -EIO;
1509                         goto out;
1510                 }
1511
1512                 *level = *level - 1;
1513                 free_extent_buffer(path->nodes[*level]);
1514                 path->nodes[*level] = next;
1515                 path->slots[*level] = 0;
1516         }
1517 out:
1518         path->slots[*level] = btrfs_header_nritems(path->nodes[*level]);
1519         return err;
1520 }
1521
1522 static int walk_up_tree(struct btrfs_root *root, struct btrfs_path *path,
1523                         struct walk_control *wc, int *level)
1524 {
1525         int i;
1526         struct extent_buffer *leaf;
1527
1528         for (i = *level; i < BTRFS_MAX_LEVEL - 1 && path->nodes[i]; i++) {
1529                 leaf = path->nodes[i];
1530                 if (path->slots[i] + 1 < btrfs_header_nritems(leaf)) {
1531                         path->slots[i]++;
1532                         *level = i;
1533                         return 0;
1534                 } else {
1535                         free_extent_buffer(path->nodes[*level]);
1536                         path->nodes[*level] = NULL;
1537                         BUG_ON(*level > wc->active_node);
1538                         if (*level == wc->active_node)
1539                                 leave_shared_node(root, wc, *level);
1540                         *level = i + 1;
1541                 }
1542         }
1543         return 1;
1544 }
1545
1546 static int check_root_dir(struct inode_record *rec)
1547 {
1548         struct inode_backref *backref;
1549         int ret = -1;
1550
1551         if (!rec->found_inode_item || rec->errors)
1552                 goto out;
1553         if (rec->nlink != 1 || rec->found_link != 0)
1554                 goto out;
1555         if (list_empty(&rec->backrefs))
1556                 goto out;
1557         backref = list_entry(rec->backrefs.next, struct inode_backref, list);
1558         if (!backref->found_inode_ref)
1559                 goto out;
1560         if (backref->index != 0 || backref->namelen != 2 ||
1561             memcmp(backref->name, "..", 2))
1562                 goto out;
1563         if (backref->found_dir_index || backref->found_dir_item)
1564                 goto out;
1565         ret = 0;
1566 out:
1567         return ret;
1568 }
1569
1570 static int repair_inode_isize(struct btrfs_trans_handle *trans,
1571                               struct btrfs_root *root, struct btrfs_path *path,
1572                               struct inode_record *rec)
1573 {
1574         struct btrfs_inode_item *ei;
1575         struct btrfs_key key;
1576         int ret;
1577
1578         key.objectid = rec->ino;
1579         key.type = BTRFS_INODE_ITEM_KEY;
1580         key.offset = (u64)-1;
1581
1582         ret = btrfs_search_slot(trans, root, &key, path, 0, 1);
1583         if (ret < 0)
1584                 goto out;
1585         if (ret) {
1586                 if (!path->slots[0]) {
1587                         ret = -ENOENT;
1588                         goto out;
1589                 }
1590                 path->slots[0]--;
1591                 ret = 0;
1592         }
1593         btrfs_item_key_to_cpu(path->nodes[0], &key, path->slots[0]);
1594         if (key.objectid != rec->ino) {
1595                 ret = -ENOENT;
1596                 goto out;
1597         }
1598
1599         ei = btrfs_item_ptr(path->nodes[0], path->slots[0],
1600                             struct btrfs_inode_item);
1601         btrfs_set_inode_size(path->nodes[0], ei, rec->found_size);
1602         btrfs_mark_buffer_dirty(path->nodes[0]);
1603         rec->errors &= ~I_ERR_DIR_ISIZE_WRONG;
1604         printf("reset isize for dir %Lu root %Lu\n", rec->ino,
1605                root->root_key.objectid);
1606 out:
1607         btrfs_release_path(path);
1608         return ret;
1609 }
1610
1611 static int repair_inode_orphan_item(struct btrfs_trans_handle *trans,
1612                                     struct btrfs_root *root,
1613                                     struct btrfs_path *path,
1614                                     struct inode_record *rec)
1615 {
1616         int ret;
1617
1618         ret = btrfs_add_orphan_item(trans, root, path, rec->ino);
1619         btrfs_release_path(path);
1620         if (!ret)
1621                 rec->errors &= ~I_ERR_NO_ORPHAN_ITEM;
1622         return ret;
1623 }
1624
1625 static int add_missing_dir_index(struct btrfs_root *root,
1626                                  struct cache_tree *inode_cache,
1627                                  struct inode_record *rec,
1628                                  struct inode_backref *backref)
1629 {
1630         struct btrfs_path *path;
1631         struct btrfs_trans_handle *trans;
1632         struct btrfs_dir_item *dir_item;
1633         struct extent_buffer *leaf;
1634         struct btrfs_key key;
1635         struct btrfs_disk_key disk_key;
1636         struct inode_record *dir_rec;
1637         unsigned long name_ptr;
1638         u32 data_size = sizeof(*dir_item) + backref->namelen;
1639         int ret;
1640
1641         path = btrfs_alloc_path();
1642         if (!path)
1643                 return -ENOMEM;
1644
1645         trans = btrfs_start_transaction(root, 1);
1646         if (IS_ERR(trans)) {
1647                 btrfs_free_path(path);
1648                 return PTR_ERR(trans);
1649         }
1650
1651         fprintf(stderr, "repairing missing dir index item for inode %llu\n",
1652                 (unsigned long long)rec->ino);
1653         key.objectid = backref->dir;
1654         key.type = BTRFS_DIR_INDEX_KEY;
1655         key.offset = backref->index;
1656
1657         ret = btrfs_insert_empty_item(trans, root, path, &key, data_size);
1658         BUG_ON(ret);
1659
1660         leaf = path->nodes[0];
1661         dir_item = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_dir_item);
1662
1663         disk_key.objectid = cpu_to_le64(rec->ino);
1664         disk_key.type = BTRFS_INODE_ITEM_KEY;
1665         disk_key.offset = 0;
1666
1667         btrfs_set_dir_item_key(leaf, dir_item, &disk_key);
1668         btrfs_set_dir_type(leaf, dir_item, imode_to_type(rec->imode));
1669         btrfs_set_dir_data_len(leaf, dir_item, 0);
1670         btrfs_set_dir_name_len(leaf, dir_item, backref->namelen);
1671         name_ptr = (unsigned long)(dir_item + 1);
1672         write_extent_buffer(leaf, backref->name, name_ptr, backref->namelen);
1673         btrfs_mark_buffer_dirty(leaf);
1674         btrfs_free_path(path);
1675         btrfs_commit_transaction(trans, root);
1676
1677         backref->found_dir_index = 1;
1678         dir_rec = get_inode_rec(inode_cache, backref->dir, 0);
1679         if (!dir_rec)
1680                 return 0;
1681         dir_rec->found_size += backref->namelen;
1682         if (dir_rec->found_size == dir_rec->isize &&
1683             (dir_rec->errors & I_ERR_DIR_ISIZE_WRONG))
1684                 dir_rec->errors &= ~I_ERR_DIR_ISIZE_WRONG;
1685         if (dir_rec->found_size != dir_rec->isize)
1686                 dir_rec->errors |= I_ERR_DIR_ISIZE_WRONG;
1687
1688         return 0;
1689 }
1690
1691 static int delete_dir_index(struct btrfs_root *root,
1692                             struct cache_tree *inode_cache,
1693                             struct inode_record *rec,
1694                             struct inode_backref *backref)
1695 {
1696         struct btrfs_trans_handle *trans;
1697         struct btrfs_dir_item *di;
1698         struct btrfs_path *path;
1699         int ret = 0;
1700
1701         path = btrfs_alloc_path();
1702         if (!path)
1703                 return -ENOMEM;
1704
1705         trans = btrfs_start_transaction(root, 1);
1706         if (IS_ERR(trans)) {
1707                 btrfs_free_path(path);
1708                 return PTR_ERR(trans);
1709         }
1710
1711
1712         fprintf(stderr, "Deleting bad dir index [%llu,%u,%llu] root %llu\n",
1713                 (unsigned long long)backref->dir,
1714                 BTRFS_DIR_INDEX_KEY, (unsigned long long)backref->index,
1715                 (unsigned long long)root->objectid);
1716
1717         di = btrfs_lookup_dir_index(trans, root, path, backref->dir,
1718                                     backref->name, backref->namelen,
1719                                     backref->index, -1);
1720         if (IS_ERR(di)) {
1721                 ret = PTR_ERR(di);
1722                 btrfs_free_path(path);
1723                 btrfs_commit_transaction(trans, root);
1724                 if (ret == -ENOENT)
1725                         return 0;
1726                 return ret;
1727         }
1728
1729         if (!di)
1730                 ret = btrfs_del_item(trans, root, path);
1731         else
1732                 ret = btrfs_delete_one_dir_name(trans, root, path, di);
1733         BUG_ON(ret);
1734         btrfs_free_path(path);
1735         btrfs_commit_transaction(trans, root);
1736         return ret;
1737 }
1738
1739 static int create_inode_item(struct btrfs_root *root,
1740                              struct inode_record *rec,
1741                              struct inode_backref *backref, int root_dir)
1742 {
1743         struct btrfs_trans_handle *trans;
1744         struct btrfs_inode_item inode_item;
1745         time_t now = time(NULL);
1746         int ret;
1747
1748         trans = btrfs_start_transaction(root, 1);
1749         if (IS_ERR(trans)) {
1750                 ret = PTR_ERR(trans);
1751                 return ret;
1752         }
1753
1754         fprintf(stderr, "root %llu inode %llu recreating inode item, this may "
1755                 "be incomplete, please check permissions and content after "
1756                 "the fsck completes.\n", (unsigned long long)root->objectid,
1757                 (unsigned long long)rec->ino);
1758
1759         memset(&inode_item, 0, sizeof(inode_item));
1760         btrfs_set_stack_inode_generation(&inode_item, trans->transid);
1761         if (root_dir)
1762                 btrfs_set_stack_inode_nlink(&inode_item, 1);
1763         else
1764                 btrfs_set_stack_inode_nlink(&inode_item, rec->found_link);
1765         btrfs_set_stack_inode_nbytes(&inode_item, rec->found_size);
1766         if (rec->found_dir_item) {
1767                 if (rec->found_file_extent)
1768                         fprintf(stderr, "root %llu inode %llu has both a dir "
1769                                 "item and extents, unsure if it is a dir or a "
1770                                 "regular file so setting it as a directory\n",
1771                                 (unsigned long long)root->objectid,
1772                                 (unsigned long long)rec->ino);
1773                 btrfs_set_stack_inode_mode(&inode_item, S_IFDIR | 0755);
1774                 btrfs_set_stack_inode_size(&inode_item, rec->found_size);
1775         } else if (!rec->found_dir_item) {
1776                 btrfs_set_stack_inode_size(&inode_item, rec->extent_end);
1777                 btrfs_set_stack_inode_mode(&inode_item, S_IFREG | 0755);
1778         }
1779         btrfs_set_stack_timespec_sec(&inode_item.atime, now);
1780         btrfs_set_stack_timespec_nsec(&inode_item.atime, 0);
1781         btrfs_set_stack_timespec_sec(&inode_item.ctime, now);
1782         btrfs_set_stack_timespec_nsec(&inode_item.ctime, 0);
1783         btrfs_set_stack_timespec_sec(&inode_item.mtime, now);
1784         btrfs_set_stack_timespec_nsec(&inode_item.mtime, 0);
1785         btrfs_set_stack_timespec_sec(&inode_item.otime, 0);
1786         btrfs_set_stack_timespec_nsec(&inode_item.otime, 0);
1787
1788         ret = btrfs_insert_inode(trans, root, rec->ino, &inode_item);
1789         BUG_ON(ret);
1790         btrfs_commit_transaction(trans, root);
1791         return 0;
1792 }
1793
1794 static int repair_inode_backrefs(struct btrfs_root *root,
1795                                  struct inode_record *rec,
1796                                  struct cache_tree *inode_cache,
1797                                  int delete)
1798 {
1799         struct inode_backref *tmp, *backref;
1800         u64 root_dirid = btrfs_root_dirid(&root->root_item);
1801         int ret = 0;
1802         int repaired = 0;
1803
1804         list_for_each_entry_safe(backref, tmp, &rec->backrefs, list) {
1805                 if (!delete && rec->ino == root_dirid) {
1806                         if (!rec->found_inode_item) {
1807                                 ret = create_inode_item(root, rec, backref, 1);
1808                                 if (ret)
1809                                         break;
1810                                 repaired++;
1811                         }
1812                 }
1813
1814                 /* Index 0 for root dir's are special, don't mess with it */
1815                 if (rec->ino == root_dirid && backref->index == 0)
1816                         continue;
1817
1818                 if (delete &&
1819                     ((backref->found_dir_index && !backref->found_inode_ref) ||
1820                      (backref->found_dir_index && backref->found_inode_ref &&
1821                       (backref->errors & REF_ERR_INDEX_UNMATCH)))) {
1822                         ret = delete_dir_index(root, inode_cache, rec, backref);
1823                         if (ret)
1824                                 break;
1825                         repaired++;
1826                         list_del(&backref->list);
1827                         free(backref);
1828                 }
1829
1830                 if (!delete && !backref->found_dir_index &&
1831                     backref->found_dir_item && backref->found_inode_ref) {
1832                         ret = add_missing_dir_index(root, inode_cache, rec,
1833                                                     backref);
1834                         if (ret)
1835                                 break;
1836                         repaired++;
1837                         if (backref->found_dir_item &&
1838                             backref->found_dir_index &&
1839                             backref->found_dir_index) {
1840                                 if (!backref->errors &&
1841                                     backref->found_inode_ref) {
1842                                         list_del(&backref->list);
1843                                         free(backref);
1844                                 }
1845                         }
1846                 }
1847
1848                 if (!delete && (!backref->found_dir_index &&
1849                                 !backref->found_dir_item &&
1850                                 backref->found_inode_ref)) {
1851                         struct btrfs_trans_handle *trans;
1852                         struct btrfs_key location;
1853
1854                         ret = check_dir_conflict(root, backref->name,
1855                                                  backref->namelen,
1856                                                  backref->dir,
1857                                                  backref->index);
1858                         if (ret) {
1859                                 /*
1860                                  * let nlink fixing routine to handle it,
1861                                  * which can do it better.
1862                                  */
1863                                 ret = 0;
1864                                 break;
1865                         }
1866                         location.objectid = rec->ino;
1867                         location.type = BTRFS_INODE_ITEM_KEY;
1868                         location.offset = 0;
1869
1870                         trans = btrfs_start_transaction(root, 1);
1871                         if (IS_ERR(trans)) {
1872                                 ret = PTR_ERR(trans);
1873                                 break;
1874                         }
1875                         fprintf(stderr, "adding missing dir index/item pair "
1876                                 "for inode %llu\n",
1877                                 (unsigned long long)rec->ino);
1878                         ret = btrfs_insert_dir_item(trans, root, backref->name,
1879                                                     backref->namelen,
1880                                                     backref->dir, &location,
1881                                                     imode_to_type(rec->imode),
1882                                                     backref->index);
1883                         BUG_ON(ret);
1884                         btrfs_commit_transaction(trans, root);
1885                         repaired++;
1886                 }
1887
1888                 if (!delete && (backref->found_inode_ref &&
1889                                 backref->found_dir_index &&
1890                                 backref->found_dir_item &&
1891                                 !(backref->errors & REF_ERR_INDEX_UNMATCH) &&
1892                                 !rec->found_inode_item)) {
1893                         ret = create_inode_item(root, rec, backref, 0);
1894                         if (ret)
1895                                 break;
1896                         repaired++;
1897                 }
1898
1899         }
1900         return ret ? ret : repaired;
1901 }
1902
1903 /*
1904  * To determine the file type for nlink/inode_item repair
1905  *
1906  * Return 0 if file type is found and BTRFS_FT_* is stored into type.
1907  * Return -ENOENT if file type is not found.
1908  */
1909 static int find_file_type(struct inode_record *rec, u8 *type)
1910 {
1911         struct inode_backref *backref;
1912
1913         /* For inode item recovered case */
1914         if (rec->found_inode_item) {
1915                 *type = imode_to_type(rec->imode);
1916                 return 0;
1917         }
1918
1919         list_for_each_entry(backref, &rec->backrefs, list) {
1920                 if (backref->found_dir_index || backref->found_dir_item) {
1921                         *type = backref->filetype;
1922                         return 0;
1923                 }
1924         }
1925         return -ENOENT;
1926 }
1927
1928 /*
1929  * To determine the file name for nlink repair
1930  *
1931  * Return 0 if file name is found, set name and namelen.
1932  * Return -ENOENT if file name is not found.
1933  */
1934 static int find_file_name(struct inode_record *rec,
1935                           char *name, int *namelen)
1936 {
1937         struct inode_backref *backref;
1938
1939         list_for_each_entry(backref, &rec->backrefs, list) {
1940                 if (backref->found_dir_index || backref->found_dir_item ||
1941                     backref->found_inode_ref) {
1942                         memcpy(name, backref->name, backref->namelen);
1943                         *namelen = backref->namelen;
1944                         return 0;
1945                 }
1946         }
1947         return -ENOENT;
1948 }
1949
1950 /* Reset the nlink of the inode to the correct one */
1951 static int reset_nlink(struct btrfs_trans_handle *trans,
1952                        struct btrfs_root *root,
1953                        struct btrfs_path *path,
1954                        struct inode_record *rec)
1955 {
1956         struct inode_backref *backref;
1957         struct inode_backref *tmp;
1958         struct btrfs_key key;
1959         struct btrfs_inode_item *inode_item;
1960         int ret = 0;
1961
1962         /* We don't believe this either, reset it and iterate backref */
1963         rec->found_link = 0;
1964
1965         /* Remove all backref including the valid ones */
1966         list_for_each_entry_safe(backref, tmp, &rec->backrefs, list) {
1967                 ret = btrfs_unlink(trans, root, rec->ino, backref->dir,
1968                                    backref->index, backref->name,
1969                                    backref->namelen, 0);
1970                 if (ret < 0)
1971                         goto out;
1972
1973                 /* remove invalid backref, so it won't be added back */
1974                 if (!(backref->found_dir_index &&
1975                       backref->found_dir_item &&
1976                       backref->found_inode_ref)) {
1977                         list_del(&backref->list);
1978                         free(backref);
1979                 } else {
1980                         rec->found_link++;
1981                 }
1982         }
1983
1984         /* Set nlink to 0 */
1985         key.objectid = rec->ino;
1986         key.type = BTRFS_INODE_ITEM_KEY;
1987         key.offset = 0;
1988         ret = btrfs_search_slot(trans, root, &key, path, 0, 1);
1989         if (ret < 0)
1990                 goto out;
1991         if (ret > 0) {
1992                 ret = -ENOENT;
1993                 goto out;
1994         }
1995         inode_item = btrfs_item_ptr(path->nodes[0], path->slots[0],
1996                                     struct btrfs_inode_item);
1997         btrfs_set_inode_nlink(path->nodes[0], inode_item, 0);
1998         btrfs_mark_buffer_dirty(path->nodes[0]);
1999         btrfs_release_path(path);
2000
2001         /*
2002          * Add back valid inode_ref/dir_item/dir_index,
2003          * add_link() will handle the nlink inc, so new nlink must be correct
2004          */
2005         list_for_each_entry(backref, &rec->backrefs, list) {
2006                 ret = btrfs_add_link(trans, root, rec->ino, backref->dir,
2007                                      backref->name, backref->namelen,
2008                                      backref->ref_type, &backref->index, 1);
2009                 if (ret < 0)
2010                         goto out;
2011         }
2012 out:
2013         btrfs_release_path(path);
2014         return ret;
2015 }
2016
2017 static int repair_inode_nlinks(struct btrfs_trans_handle *trans,
2018                                struct btrfs_root *root,
2019                                struct btrfs_path *path,
2020                                struct inode_record *rec)
2021 {
2022         char *dir_name = "lost+found";
2023         char namebuf[BTRFS_NAME_LEN] = {0};
2024         u64 lost_found_ino;
2025         u32 mode = 0700;
2026         u8 type = 0;
2027         int namelen = 0;
2028         int name_recovered = 0;
2029         int type_recovered = 0;
2030         int ret = 0;
2031
2032         /*
2033          * Get file name and type first before these invalid inode ref
2034          * are deleted by remove_all_invalid_backref()
2035          */
2036         name_recovered = !find_file_name(rec, namebuf, &namelen);
2037         type_recovered = !find_file_type(rec, &type);
2038
2039         if (!name_recovered) {
2040                 printf("Can't get file name for inode %llu, using '%llu' as fallback\n",
2041                        rec->ino, rec->ino);
2042                 namelen = count_digits(rec->ino);
2043                 sprintf(namebuf, "%llu", rec->ino);
2044                 name_recovered = 1;
2045         }
2046         if (!type_recovered) {
2047                 printf("Can't get file type for inode %llu, using FILE as fallback\n",
2048                        rec->ino);
2049                 type = BTRFS_FT_REG_FILE;
2050                 type_recovered = 1;
2051         }
2052
2053         ret = reset_nlink(trans, root, path, rec);
2054         if (ret < 0) {
2055                 fprintf(stderr,
2056                         "Failed to reset nlink for inode %llu: %s\n",
2057                         rec->ino, strerror(-ret));
2058                 goto out;
2059         }
2060
2061         if (rec->found_link == 0) {
2062                 lost_found_ino = root->highest_inode;
2063                 if (lost_found_ino >= BTRFS_LAST_FREE_OBJECTID) {
2064                         ret = -EOVERFLOW;
2065                         goto out;
2066                 }
2067                 lost_found_ino++;
2068                 ret = btrfs_mkdir(trans, root, dir_name, strlen(dir_name),
2069                                   BTRFS_FIRST_FREE_OBJECTID, &lost_found_ino,
2070                                   mode);
2071                 if (ret < 0) {
2072                         fprintf(stderr, "Failed to create '%s' dir: %s",
2073                                 dir_name, strerror(-ret));
2074                         goto out;
2075                 }
2076                 ret = btrfs_add_link(trans, root, rec->ino, lost_found_ino,
2077                                      namebuf, namelen, type, NULL, 1);
2078                 if (ret == -EEXIST) {
2079                         /*
2080                          * Conflicting file name, add ".INO" as suffix * +1 for '.'
2081                          */
2082                         if (namelen + count_digits(rec->ino) + 1 >
2083                             BTRFS_NAME_LEN) {
2084                                 ret = -EFBIG;
2085                                 goto out;
2086                         }
2087                         snprintf(namebuf + namelen, BTRFS_NAME_LEN - namelen,
2088                                  ".%llu", rec->ino);
2089                         namelen += count_digits(rec->ino) + 1;
2090                         ret = btrfs_add_link(trans, root, rec->ino,
2091                                              lost_found_ino, namebuf,
2092                                              namelen, type, NULL, 1);
2093                 }
2094                 if (ret < 0) {
2095                         fprintf(stderr,
2096                                 "Failed to link the inode %llu to %s dir: %s",
2097                                 rec->ino, dir_name, strerror(-ret));
2098                         goto out;
2099                 }
2100                 /*
2101                  * Just increase the found_link, don't actually add the
2102                  * backref. This will make things easier and this inode
2103                  * record will be freed after the repair is done.
2104                  * So fsck will not report problem about this inode.
2105                  */
2106                 rec->found_link++;
2107                 printf("Moving file '%.*s' to '%s' dir since it has no valid backref\n",
2108                        namelen, namebuf, dir_name);
2109         }
2110         rec->errors &= ~I_ERR_LINK_COUNT_WRONG;
2111         printf("Fixed the nlink of inode %llu\n", rec->ino);
2112 out:
2113         btrfs_release_path(path);
2114         return ret;
2115 }
2116
2117 /*
2118  * Check if there is any normal(reg or prealloc) file extent for given
2119  * ino.
2120  * This is used to determine the file type when neither its dir_index/item or
2121  * inode_item exists.
2122  *
2123  * This will *NOT* report error, if any error happens, just consider it does
2124  * not have any normal file extent.
2125  */
2126 static int find_normal_file_extent(struct btrfs_root *root, u64 ino)
2127 {
2128         struct btrfs_path *path;
2129         struct btrfs_key key;
2130         struct btrfs_key found_key;
2131         struct btrfs_file_extent_item *fi;
2132         u8 type;
2133         int ret = 0;
2134
2135         path = btrfs_alloc_path();
2136         if (!path)
2137                 goto out;
2138         key.objectid = ino;
2139         key.type = BTRFS_EXTENT_DATA_KEY;
2140         key.offset = 0;
2141
2142         ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
2143         if (ret < 0) {
2144                 ret = 0;
2145                 goto out;
2146         }
2147         if (ret && path->slots[0] >= btrfs_header_nritems(path->nodes[0])) {
2148                 ret = btrfs_next_leaf(root, path);
2149                 if (ret) {
2150                         ret = 0;
2151                         goto out;
2152                 }
2153         }
2154         while (1) {
2155                 btrfs_item_key_to_cpu(path->nodes[0], &found_key,
2156                                       path->slots[0]);
2157                 if (found_key.objectid != ino ||
2158                     found_key.type != BTRFS_EXTENT_DATA_KEY)
2159                         break;
2160                 fi = btrfs_item_ptr(path->nodes[0], path->slots[0],
2161                                     struct btrfs_file_extent_item);
2162                 type = btrfs_file_extent_type(path->nodes[0], fi);
2163                 if (type != BTRFS_FILE_EXTENT_INLINE)
2164                         ret = 1;
2165                         goto out;
2166         }
2167 out:
2168         btrfs_free_path(path);
2169         return ret;
2170 }
2171
2172 static u32 btrfs_type_to_imode(u8 type)
2173 {
2174         static u32 imode_by_btrfs_type[] = {
2175                 [BTRFS_FT_REG_FILE]     = S_IFREG,
2176                 [BTRFS_FT_DIR]          = S_IFDIR,
2177                 [BTRFS_FT_CHRDEV]       = S_IFCHR,
2178                 [BTRFS_FT_BLKDEV]       = S_IFBLK,
2179                 [BTRFS_FT_FIFO]         = S_IFIFO,
2180                 [BTRFS_FT_SOCK]         = S_IFSOCK,
2181                 [BTRFS_FT_SYMLINK]      = S_IFLNK,
2182         };
2183
2184         return imode_by_btrfs_type[(type)];
2185 }
2186
2187 static int repair_inode_no_item(struct btrfs_trans_handle *trans,
2188                                 struct btrfs_root *root,
2189                                 struct btrfs_path *path,
2190                                 struct inode_record *rec)
2191 {
2192         u8 filetype;
2193         u32 mode = 0700;
2194         int type_recovered = 0;
2195         int ret = 0;
2196
2197         /*
2198          * TODO:
2199          * 1. salvage data from existing file extent and
2200          *    punch hole to keep fi ext consistent.
2201          * 2. salvage data from extent tree
2202          */
2203         printf("Trying to rebuild inode:%llu\n", rec->ino);
2204
2205         type_recovered = !find_file_type(rec, &filetype);
2206
2207         /*
2208          * Try to determine inode type if type not found.
2209          *
2210          * For found regular file extent, it must be FILE.
2211          * For found dir_item/index, it must be DIR.
2212          *
2213          * For undetermined one, use FILE as fallback.
2214          *
2215          * TODO:
2216          * 1. If found extent belong to it in extent tree, it must be FILE
2217          *    Need extra hook in extent tree scan.
2218          * 2. If found backref(inode_index/item is already handled) to it,
2219          *    it must be DIR.
2220          *    Need new inode-inode ref structure to allow search for that.
2221          */
2222         if (!type_recovered) {
2223                 if (rec->found_file_extent &&
2224                     find_normal_file_extent(root, rec->ino)) {
2225                         type_recovered = 1;
2226                         filetype = BTRFS_FT_REG_FILE;
2227                 } else if (rec->found_dir_item) {
2228                         type_recovered = 1;
2229                         filetype = BTRFS_FT_DIR;
2230                 } else {
2231                         printf("Can't determint the filetype for inode %llu, assume it is a normal file\n",
2232                                rec->ino);
2233                         type_recovered = 1;
2234                         filetype = BTRFS_FT_REG_FILE;
2235                 }
2236         }
2237
2238         ret = btrfs_new_inode(trans, root, rec->ino,
2239                               mode | btrfs_type_to_imode(filetype));
2240         if (ret < 0)
2241                 goto out;
2242
2243         /*
2244          * Here inode rebuild is done, we only rebuild the inode item,
2245          * don't repair the nlink(like move to lost+found).
2246          * That is the job of nlink repair.
2247          *
2248          * We just fill the record and return
2249          */
2250         rec->found_dir_item = 1;
2251         rec->imode = mode | btrfs_type_to_imode(filetype);
2252         rec->nlink = 0;
2253         rec->errors &= ~I_ERR_NO_INODE_ITEM;
2254         /* Ensure the inode_nlinks repair function will be called */
2255         rec->errors |= I_ERR_LINK_COUNT_WRONG;
2256 out:
2257         return ret;
2258 }
2259
2260 static int try_repair_inode(struct btrfs_root *root, struct inode_record *rec)
2261 {
2262         struct btrfs_trans_handle *trans;
2263         struct btrfs_path *path;
2264         int ret = 0;
2265
2266         if (!(rec->errors & (I_ERR_DIR_ISIZE_WRONG |
2267                              I_ERR_NO_ORPHAN_ITEM |
2268                              I_ERR_LINK_COUNT_WRONG |
2269                              I_ERR_NO_INODE_ITEM)))
2270                 return rec->errors;
2271
2272         path = btrfs_alloc_path();
2273         if (!path)
2274                 return -ENOMEM;
2275
2276         /*
2277          * For nlink repair, it may create a dir and add link, so
2278          * 2 for parent(256)'s dir_index and dir_item
2279          * 2 for lost+found dir's inode_item and inode_ref
2280          * 1 for the new inode_ref of the file
2281          * 2 for lost+found dir's dir_index and dir_item for the file
2282          */
2283         trans = btrfs_start_transaction(root, 7);
2284         if (IS_ERR(trans)) {
2285                 btrfs_free_path(path);
2286                 return PTR_ERR(trans);
2287         }
2288
2289         if (rec->errors & I_ERR_NO_INODE_ITEM)
2290                 ret = repair_inode_no_item(trans, root, path, rec);
2291         if (!ret && rec->errors & I_ERR_DIR_ISIZE_WRONG)
2292                 ret = repair_inode_isize(trans, root, path, rec);
2293         if (!ret && rec->errors & I_ERR_NO_ORPHAN_ITEM)
2294                 ret = repair_inode_orphan_item(trans, root, path, rec);
2295         if (!ret && rec->errors & I_ERR_LINK_COUNT_WRONG)
2296                 ret = repair_inode_nlinks(trans, root, path, rec);
2297         btrfs_commit_transaction(trans, root);
2298         btrfs_free_path(path);
2299         return ret;
2300 }
2301
2302 static int check_inode_recs(struct btrfs_root *root,
2303                             struct cache_tree *inode_cache)
2304 {
2305         struct cache_extent *cache;
2306         struct ptr_node *node;
2307         struct inode_record *rec;
2308         struct inode_backref *backref;
2309         int stage = 0;
2310         int ret;
2311         int err = 0;
2312         u64 error = 0;
2313         u64 root_dirid = btrfs_root_dirid(&root->root_item);
2314
2315         if (btrfs_root_refs(&root->root_item) == 0) {
2316                 if (!cache_tree_empty(inode_cache))
2317                         fprintf(stderr, "warning line %d\n", __LINE__);
2318                 return 0;
2319         }
2320
2321         /*
2322          * We need to record the highest inode number for later 'lost+found'
2323          * dir creation.
2324          * We must select a ino not used/refered by any existing inode, or
2325          * 'lost+found' ino may be a missing ino in a corrupted leaf,
2326          * this may cause 'lost+found' dir has wrong nlinks.
2327          */
2328         cache = last_cache_extent(inode_cache);
2329         if (cache) {
2330                 node = container_of(cache, struct ptr_node, cache);
2331                 rec = node->data;
2332                 if (rec->ino > root->highest_inode)
2333                         root->highest_inode = rec->ino;
2334         }
2335
2336         /*
2337          * We need to repair backrefs first because we could change some of the
2338          * errors in the inode recs.
2339          *
2340          * We also need to go through and delete invalid backrefs first and then
2341          * add the correct ones second.  We do this because we may get EEXIST
2342          * when adding back the correct index because we hadn't yet deleted the
2343          * invalid index.
2344          *
2345          * For example, if we were missing a dir index then the directories
2346          * isize would be wrong, so if we fixed the isize to what we thought it
2347          * would be and then fixed the backref we'd still have a invalid fs, so
2348          * we need to add back the dir index and then check to see if the isize
2349          * is still wrong.
2350          */
2351         while (stage < 3) {
2352                 stage++;
2353                 if (stage == 3 && !err)
2354                         break;
2355
2356                 cache = search_cache_extent(inode_cache, 0);
2357                 while (repair && cache) {
2358                         node = container_of(cache, struct ptr_node, cache);
2359                         rec = node->data;
2360                         cache = next_cache_extent(cache);
2361
2362                         /* Need to free everything up and rescan */
2363                         if (stage == 3) {
2364                                 remove_cache_extent(inode_cache, &node->cache);
2365                                 free(node);
2366                                 free_inode_rec(rec);
2367                                 continue;
2368                         }
2369
2370                         if (list_empty(&rec->backrefs))
2371                                 continue;
2372
2373                         ret = repair_inode_backrefs(root, rec, inode_cache,
2374                                                     stage == 1);
2375                         if (ret < 0) {
2376                                 err = ret;
2377                                 stage = 2;
2378                                 break;
2379                         } if (ret > 0) {
2380                                 err = -EAGAIN;
2381                         }
2382                 }
2383         }
2384         if (err)
2385                 return err;
2386
2387         rec = get_inode_rec(inode_cache, root_dirid, 0);
2388         if (rec) {
2389                 ret = check_root_dir(rec);
2390                 if (ret) {
2391                         fprintf(stderr, "root %llu root dir %llu error\n",
2392                                 (unsigned long long)root->root_key.objectid,
2393                                 (unsigned long long)root_dirid);
2394                         print_inode_error(root, rec);
2395                         error++;
2396                 }
2397         } else {
2398                 if (repair) {
2399                         struct btrfs_trans_handle *trans;
2400
2401                         trans = btrfs_start_transaction(root, 1);
2402                         if (IS_ERR(trans)) {
2403                                 err = PTR_ERR(trans);
2404                                 return err;
2405                         }
2406
2407                         fprintf(stderr,
2408                                 "root %llu missing its root dir, recreating\n",
2409                                 (unsigned long long)root->objectid);
2410
2411                         ret = btrfs_make_root_dir(trans, root, root_dirid);
2412                         BUG_ON(ret);
2413
2414                         btrfs_commit_transaction(trans, root);
2415                         return -EAGAIN;
2416                 }
2417
2418                 fprintf(stderr, "root %llu root dir %llu not found\n",
2419                         (unsigned long long)root->root_key.objectid,
2420                         (unsigned long long)root_dirid);
2421         }
2422
2423         while (1) {
2424                 cache = search_cache_extent(inode_cache, 0);
2425                 if (!cache)
2426                         break;
2427                 node = container_of(cache, struct ptr_node, cache);
2428                 rec = node->data;
2429                 remove_cache_extent(inode_cache, &node->cache);
2430                 free(node);
2431                 if (rec->ino == root_dirid ||
2432                     rec->ino == BTRFS_ORPHAN_OBJECTID) {
2433                         free_inode_rec(rec);
2434                         continue;
2435                 }
2436
2437                 if (rec->errors & I_ERR_NO_ORPHAN_ITEM) {
2438                         ret = check_orphan_item(root, rec->ino);
2439                         if (ret == 0)
2440                                 rec->errors &= ~I_ERR_NO_ORPHAN_ITEM;
2441                         if (can_free_inode_rec(rec)) {
2442                                 free_inode_rec(rec);
2443                                 continue;
2444                         }
2445                 }
2446
2447                 if (!rec->found_inode_item)
2448                         rec->errors |= I_ERR_NO_INODE_ITEM;
2449                 if (rec->found_link != rec->nlink)
2450                         rec->errors |= I_ERR_LINK_COUNT_WRONG;
2451                 if (repair) {
2452                         ret = try_repair_inode(root, rec);
2453                         if (ret == 0 && can_free_inode_rec(rec)) {
2454                                 free_inode_rec(rec);
2455                                 continue;
2456                         }
2457                         ret = 0;
2458                 }
2459
2460                 error++;
2461                 print_inode_error(root, rec);
2462                 list_for_each_entry(backref, &rec->backrefs, list) {
2463                         if (!backref->found_dir_item)
2464                                 backref->errors |= REF_ERR_NO_DIR_ITEM;
2465                         if (!backref->found_dir_index)
2466                                 backref->errors |= REF_ERR_NO_DIR_INDEX;
2467                         if (!backref->found_inode_ref)
2468                                 backref->errors |= REF_ERR_NO_INODE_REF;
2469                         fprintf(stderr, "\tunresolved ref dir %llu index %llu"
2470                                 " namelen %u name %s filetype %d errors %x",
2471                                 (unsigned long long)backref->dir,
2472                                 (unsigned long long)backref->index,
2473                                 backref->namelen, backref->name,
2474                                 backref->filetype, backref->errors);
2475                         print_ref_error(backref->errors);
2476                 }
2477                 free_inode_rec(rec);
2478         }
2479         return (error > 0) ? -1 : 0;
2480 }
2481
2482 static struct root_record *get_root_rec(struct cache_tree *root_cache,
2483                                         u64 objectid)
2484 {
2485         struct cache_extent *cache;
2486         struct root_record *rec = NULL;
2487         int ret;
2488
2489         cache = lookup_cache_extent(root_cache, objectid, 1);
2490         if (cache) {
2491                 rec = container_of(cache, struct root_record, cache);
2492         } else {
2493                 rec = calloc(1, sizeof(*rec));
2494                 rec->objectid = objectid;
2495                 INIT_LIST_HEAD(&rec->backrefs);
2496                 rec->cache.start = objectid;
2497                 rec->cache.size = 1;
2498
2499                 ret = insert_cache_extent(root_cache, &rec->cache);
2500                 BUG_ON(ret);
2501         }
2502         return rec;
2503 }
2504
2505 static struct root_backref *get_root_backref(struct root_record *rec,
2506                                              u64 ref_root, u64 dir, u64 index,
2507                                              const char *name, int namelen)
2508 {
2509         struct root_backref *backref;
2510
2511         list_for_each_entry(backref, &rec->backrefs, list) {
2512                 if (backref->ref_root != ref_root || backref->dir != dir ||
2513                     backref->namelen != namelen)
2514                         continue;
2515                 if (memcmp(name, backref->name, namelen))
2516                         continue;
2517                 return backref;
2518         }
2519
2520         backref = malloc(sizeof(*backref) + namelen + 1);
2521         memset(backref, 0, sizeof(*backref));
2522         backref->ref_root = ref_root;
2523         backref->dir = dir;
2524         backref->index = index;
2525         backref->namelen = namelen;
2526         memcpy(backref->name, name, namelen);
2527         backref->name[namelen] = '\0';
2528         list_add_tail(&backref->list, &rec->backrefs);
2529         return backref;
2530 }
2531
2532 static void free_root_record(struct cache_extent *cache)
2533 {
2534         struct root_record *rec;
2535         struct root_backref *backref;
2536
2537         rec = container_of(cache, struct root_record, cache);
2538         while (!list_empty(&rec->backrefs)) {
2539                 backref = list_entry(rec->backrefs.next,
2540                                      struct root_backref, list);
2541                 list_del(&backref->list);
2542                 free(backref);
2543         }
2544
2545         kfree(rec);
2546 }
2547
2548 FREE_EXTENT_CACHE_BASED_TREE(root_recs, free_root_record);
2549
2550 static int add_root_backref(struct cache_tree *root_cache,
2551                             u64 root_id, u64 ref_root, u64 dir, u64 index,
2552                             const char *name, int namelen,
2553                             int item_type, int errors)
2554 {
2555         struct root_record *rec;
2556         struct root_backref *backref;
2557
2558         rec = get_root_rec(root_cache, root_id);
2559         backref = get_root_backref(rec, ref_root, dir, index, name, namelen);
2560
2561         backref->errors |= errors;
2562
2563         if (item_type != BTRFS_DIR_ITEM_KEY) {
2564                 if (backref->found_dir_index || backref->found_back_ref ||
2565                     backref->found_forward_ref) {
2566                         if (backref->index != index)
2567                                 backref->errors |= REF_ERR_INDEX_UNMATCH;
2568                 } else {
2569                         backref->index = index;
2570                 }
2571         }
2572
2573         if (item_type == BTRFS_DIR_ITEM_KEY) {
2574                 if (backref->found_forward_ref)
2575                         rec->found_ref++;
2576                 backref->found_dir_item = 1;
2577         } else if (item_type == BTRFS_DIR_INDEX_KEY) {
2578                 backref->found_dir_index = 1;
2579         } else if (item_type == BTRFS_ROOT_REF_KEY) {
2580                 if (backref->found_forward_ref)
2581                         backref->errors |= REF_ERR_DUP_ROOT_REF;
2582                 else if (backref->found_dir_item)
2583                         rec->found_ref++;
2584                 backref->found_forward_ref = 1;
2585         } else if (item_type == BTRFS_ROOT_BACKREF_KEY) {
2586                 if (backref->found_back_ref)
2587                         backref->errors |= REF_ERR_DUP_ROOT_BACKREF;
2588                 backref->found_back_ref = 1;
2589         } else {
2590                 BUG_ON(1);
2591         }
2592
2593         if (backref->found_forward_ref && backref->found_dir_item)
2594                 backref->reachable = 1;
2595         return 0;
2596 }
2597
2598 static int merge_root_recs(struct btrfs_root *root,
2599                            struct cache_tree *src_cache,
2600                            struct cache_tree *dst_cache)
2601 {
2602         struct cache_extent *cache;
2603         struct ptr_node *node;
2604         struct inode_record *rec;
2605         struct inode_backref *backref;
2606         int ret = 0;
2607
2608         if (root->root_key.objectid == BTRFS_TREE_RELOC_OBJECTID) {
2609                 free_inode_recs_tree(src_cache);
2610                 return 0;
2611         }
2612
2613         while (1) {
2614                 cache = search_cache_extent(src_cache, 0);
2615                 if (!cache)
2616                         break;
2617                 node = container_of(cache, struct ptr_node, cache);
2618                 rec = node->data;
2619                 remove_cache_extent(src_cache, &node->cache);
2620                 free(node);
2621
2622                 ret = is_child_root(root, root->objectid, rec->ino);
2623                 if (ret < 0)
2624                         break;
2625                 else if (ret == 0)
2626                         goto skip;
2627
2628                 list_for_each_entry(backref, &rec->backrefs, list) {
2629                         BUG_ON(backref->found_inode_ref);
2630                         if (backref->found_dir_item)
2631                                 add_root_backref(dst_cache, rec->ino,
2632                                         root->root_key.objectid, backref->dir,
2633                                         backref->index, backref->name,
2634                                         backref->namelen, BTRFS_DIR_ITEM_KEY,
2635                                         backref->errors);
2636                         if (backref->found_dir_index)
2637                                 add_root_backref(dst_cache, rec->ino,
2638                                         root->root_key.objectid, backref->dir,
2639                                         backref->index, backref->name,
2640                                         backref->namelen, BTRFS_DIR_INDEX_KEY,
2641                                         backref->errors);
2642                 }
2643 skip:
2644                 free_inode_rec(rec);
2645         }
2646         if (ret < 0)
2647                 return ret;
2648         return 0;
2649 }
2650
2651 static int check_root_refs(struct btrfs_root *root,
2652                            struct cache_tree *root_cache)
2653 {
2654         struct root_record *rec;
2655         struct root_record *ref_root;
2656         struct root_backref *backref;
2657         struct cache_extent *cache;
2658         int loop = 1;
2659         int ret;
2660         int error;
2661         int errors = 0;
2662
2663         rec = get_root_rec(root_cache, BTRFS_FS_TREE_OBJECTID);
2664         rec->found_ref = 1;
2665
2666         /* fixme: this can not detect circular references */
2667         while (loop) {
2668                 loop = 0;
2669                 cache = search_cache_extent(root_cache, 0);
2670                 while (1) {
2671                         if (!cache)
2672                                 break;
2673                         rec = container_of(cache, struct root_record, cache);
2674                         cache = next_cache_extent(cache);
2675
2676                         if (rec->found_ref == 0)
2677                                 continue;
2678
2679                         list_for_each_entry(backref, &rec->backrefs, list) {
2680                                 if (!backref->reachable)
2681                                         continue;
2682
2683                                 ref_root = get_root_rec(root_cache,
2684                                                         backref->ref_root);
2685                                 if (ref_root->found_ref > 0)
2686                                         continue;
2687
2688                                 backref->reachable = 0;
2689                                 rec->found_ref--;
2690                                 if (rec->found_ref == 0)
2691                                         loop = 1;
2692                         }
2693                 }
2694         }
2695
2696         cache = search_cache_extent(root_cache, 0);
2697         while (1) {
2698                 if (!cache)
2699                         break;
2700                 rec = container_of(cache, struct root_record, cache);
2701                 cache = next_cache_extent(cache);
2702
2703                 if (rec->found_ref == 0 &&
2704                     rec->objectid >= BTRFS_FIRST_FREE_OBJECTID &&
2705                     rec->objectid <= BTRFS_LAST_FREE_OBJECTID) {
2706                         ret = check_orphan_item(root->fs_info->tree_root,
2707                                                 rec->objectid);
2708                         if (ret == 0)
2709                                 continue;
2710
2711                         /*
2712                          * If we don't have a root item then we likely just have
2713                          * a dir item in a snapshot for this root but no actual
2714                          * ref key or anything so it's meaningless.
2715                          */
2716                         if (!rec->found_root_item)
2717                                 continue;
2718                         errors++;
2719                         fprintf(stderr, "fs tree %llu not referenced\n",
2720                                 (unsigned long long)rec->objectid);
2721                 }
2722
2723                 error = 0;
2724                 if (rec->found_ref > 0 && !rec->found_root_item)
2725                         error = 1;
2726                 list_for_each_entry(backref, &rec->backrefs, list) {
2727                         if (!backref->found_dir_item)
2728                                 backref->errors |= REF_ERR_NO_DIR_ITEM;
2729                         if (!backref->found_dir_index)
2730                                 backref->errors |= REF_ERR_NO_DIR_INDEX;
2731                         if (!backref->found_back_ref)
2732                                 backref->errors |= REF_ERR_NO_ROOT_BACKREF;
2733                         if (!backref->found_forward_ref)
2734                                 backref->errors |= REF_ERR_NO_ROOT_REF;
2735                         if (backref->reachable && backref->errors)
2736                                 error = 1;
2737                 }
2738                 if (!error)
2739                         continue;
2740
2741                 errors++;
2742                 fprintf(stderr, "fs tree %llu refs %u %s\n",
2743                         (unsigned long long)rec->objectid, rec->found_ref,
2744                          rec->found_root_item ? "" : "not found");
2745
2746                 list_for_each_entry(backref, &rec->backrefs, list) {
2747                         if (!backref->reachable)
2748                                 continue;
2749                         if (!backref->errors && rec->found_root_item)
2750                                 continue;
2751                         fprintf(stderr, "\tunresolved ref root %llu dir %llu"
2752                                 " index %llu namelen %u name %s errors %x\n",
2753                                 (unsigned long long)backref->ref_root,
2754                                 (unsigned long long)backref->dir,
2755                                 (unsigned long long)backref->index,
2756                                 backref->namelen, backref->name,
2757                                 backref->errors);
2758                         print_ref_error(backref->errors);
2759                 }
2760         }
2761         return errors > 0 ? 1 : 0;
2762 }
2763
2764 static int process_root_ref(struct extent_buffer *eb, int slot,
2765                             struct btrfs_key *key,
2766                             struct cache_tree *root_cache)
2767 {
2768         u64 dirid;
2769         u64 index;
2770         u32 len;
2771         u32 name_len;
2772         struct btrfs_root_ref *ref;
2773         char namebuf[BTRFS_NAME_LEN];
2774         int error;
2775
2776         ref = btrfs_item_ptr(eb, slot, struct btrfs_root_ref);
2777
2778         dirid = btrfs_root_ref_dirid(eb, ref);
2779         index = btrfs_root_ref_sequence(eb, ref);
2780         name_len = btrfs_root_ref_name_len(eb, ref);
2781
2782         if (name_len <= BTRFS_NAME_LEN) {
2783                 len = name_len;
2784                 error = 0;
2785         } else {
2786                 len = BTRFS_NAME_LEN;
2787                 error = REF_ERR_NAME_TOO_LONG;
2788         }
2789         read_extent_buffer(eb, namebuf, (unsigned long)(ref + 1), len);
2790
2791         if (key->type == BTRFS_ROOT_REF_KEY) {
2792                 add_root_backref(root_cache, key->offset, key->objectid, dirid,
2793                                  index, namebuf, len, key->type, error);
2794         } else {
2795                 add_root_backref(root_cache, key->objectid, key->offset, dirid,
2796                                  index, namebuf, len, key->type, error);
2797         }
2798         return 0;
2799 }
2800
2801 static void free_corrupt_block(struct cache_extent *cache)
2802 {
2803         struct btrfs_corrupt_block *corrupt;
2804
2805         corrupt = container_of(cache, struct btrfs_corrupt_block, cache);
2806         free(corrupt);
2807 }
2808
2809 FREE_EXTENT_CACHE_BASED_TREE(corrupt_blocks, free_corrupt_block);
2810
2811 /*
2812  * Repair the btree of the given root.
2813  *
2814  * The fix is to remove the node key in corrupt_blocks cache_tree.
2815  * and rebalance the tree.
2816  * After the fix, the btree should be writeable.
2817  */
2818 static int repair_btree(struct btrfs_root *root,
2819                         struct cache_tree *corrupt_blocks)
2820 {
2821         struct btrfs_trans_handle *trans;
2822         struct btrfs_path *path;
2823         struct btrfs_corrupt_block *corrupt;
2824         struct cache_extent *cache;
2825         struct btrfs_key key;
2826         u64 offset;
2827         int level;
2828         int ret = 0;
2829
2830         if (cache_tree_empty(corrupt_blocks))
2831                 return 0;
2832
2833         path = btrfs_alloc_path();
2834         if (!path)
2835                 return -ENOMEM;
2836
2837         trans = btrfs_start_transaction(root, 1);
2838         if (IS_ERR(trans)) {
2839                 ret = PTR_ERR(trans);
2840                 fprintf(stderr, "Error starting transaction: %s\n",
2841                         strerror(-ret));
2842                 return ret;
2843         }
2844         cache = first_cache_extent(corrupt_blocks);
2845         while (cache) {
2846                 corrupt = container_of(cache, struct btrfs_corrupt_block,
2847                                        cache);
2848                 level = corrupt->level;
2849                 path->lowest_level = level;
2850                 key.objectid = corrupt->key.objectid;
2851                 key.type = corrupt->key.type;
2852                 key.offset = corrupt->key.offset;
2853
2854                 /*
2855                  * Here we don't want to do any tree balance, since it may
2856                  * cause a balance with corrupted brother leaf/node,
2857                  * so ins_len set to 0 here.
2858                  * Balance will be done after all corrupt node/leaf is deleted.
2859                  */
2860                 ret = btrfs_search_slot(trans, root, &key, path, 0, 1);
2861                 if (ret < 0)
2862                         goto out;
2863                 offset = btrfs_node_blockptr(path->nodes[level],
2864                                              path->slots[level]);
2865
2866                 /* Remove the ptr */
2867                 ret = btrfs_del_ptr(trans, root, path, level,
2868                                     path->slots[level]);
2869                 if (ret < 0)
2870                         goto out;
2871                 /*
2872                  * Remove the corresponding extent
2873                  * return value is not concerned.
2874                  */
2875                 btrfs_release_path(path);
2876                 ret = btrfs_free_extent(trans, root, offset, root->nodesize,
2877                                         0, root->root_key.objectid,
2878                                         level - 1, 0);
2879                 cache = next_cache_extent(cache);
2880         }
2881
2882         /* Balance the btree using btrfs_search_slot() */
2883         cache = first_cache_extent(corrupt_blocks);
2884         while (cache) {
2885                 corrupt = container_of(cache, struct btrfs_corrupt_block,
2886                                        cache);
2887                 memcpy(&key, &corrupt->key, sizeof(key));
2888                 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
2889                 if (ret < 0)
2890                         goto out;
2891                 /* return will always >0 since it won't find the item */
2892                 ret = 0;
2893                 btrfs_release_path(path);
2894                 cache = next_cache_extent(cache);
2895         }
2896 out:
2897         btrfs_free_path(path);
2898         btrfs_commit_transaction(trans, root);
2899         return ret;
2900 }
2901
2902 static int check_fs_root(struct btrfs_root *root,
2903                          struct cache_tree *root_cache,
2904                          struct walk_control *wc)
2905 {
2906         int ret = 0;
2907         int err = 0;
2908         int wret;
2909         int level;
2910         struct btrfs_path path;
2911         struct shared_node root_node;
2912         struct root_record *rec;
2913         struct btrfs_root_item *root_item = &root->root_item;
2914         struct cache_tree corrupt_blocks;
2915         enum btrfs_tree_block_status status;
2916
2917         /*
2918          * Reuse the corrupt_block cache tree to record corrupted tree block
2919          *
2920          * Unlike the usage in extent tree check, here we do it in a per
2921          * fs/subvol tree base.
2922          */
2923         cache_tree_init(&corrupt_blocks);
2924         root->fs_info->corrupt_blocks = &corrupt_blocks;
2925         if (root->root_key.objectid != BTRFS_TREE_RELOC_OBJECTID) {
2926                 rec = get_root_rec(root_cache, root->root_key.objectid);
2927                 if (btrfs_root_refs(root_item) > 0)
2928                         rec->found_root_item = 1;
2929         }
2930
2931         btrfs_init_path(&path);
2932         memset(&root_node, 0, sizeof(root_node));
2933         cache_tree_init(&root_node.root_cache);
2934         cache_tree_init(&root_node.inode_cache);
2935
2936         level = btrfs_header_level(root->node);
2937         memset(wc->nodes, 0, sizeof(wc->nodes));
2938         wc->nodes[level] = &root_node;
2939         wc->active_node = level;
2940         wc->root_level = level;
2941
2942         /* We may not have checked the root block, lets do that now */
2943         if (btrfs_is_leaf(root->node))
2944                 status = btrfs_check_leaf(root, NULL, root->node);
2945         else
2946                 status = btrfs_check_node(root, NULL, root->node);
2947         if (status != BTRFS_TREE_BLOCK_CLEAN)
2948                 return -EIO;
2949
2950         if (btrfs_root_refs(root_item) > 0 ||
2951             btrfs_disk_key_objectid(&root_item->drop_progress) == 0) {
2952                 path.nodes[level] = root->node;
2953                 extent_buffer_get(root->node);
2954                 path.slots[level] = 0;
2955         } else {
2956                 struct btrfs_key key;
2957                 struct btrfs_disk_key found_key;
2958
2959                 btrfs_disk_key_to_cpu(&key, &root_item->drop_progress);
2960                 level = root_item->drop_level;
2961                 path.lowest_level = level;
2962                 wret = btrfs_search_slot(NULL, root, &key, &path, 0, 0);
2963                 if (wret < 0)
2964                         goto skip_walking;
2965                 btrfs_node_key(path.nodes[level], &found_key,
2966                                 path.slots[level]);
2967                 WARN_ON(memcmp(&found_key, &root_item->drop_progress,
2968                                         sizeof(found_key)));
2969         }
2970
2971         while (1) {
2972                 wret = walk_down_tree(root, &path, wc, &level);
2973                 if (wret < 0)
2974                         ret = wret;
2975                 if (wret != 0)
2976                         break;
2977
2978                 wret = walk_up_tree(root, &path, wc, &level);
2979                 if (wret < 0)
2980                         ret = wret;
2981                 if (wret != 0)
2982                         break;
2983         }
2984 skip_walking:
2985         btrfs_release_path(&path);
2986
2987         if (!cache_tree_empty(&corrupt_blocks)) {
2988                 struct cache_extent *cache;
2989                 struct btrfs_corrupt_block *corrupt;
2990
2991                 printf("The following tree block(s) is corrupted in tree %llu:\n",
2992                        root->root_key.objectid);
2993                 cache = first_cache_extent(&corrupt_blocks);
2994                 while (cache) {
2995                         corrupt = container_of(cache,
2996                                                struct btrfs_corrupt_block,
2997                                                cache);
2998                         printf("\ttree block bytenr: %llu, level: %d, node key: (%llu, %u, %llu)\n",
2999                                cache->start, corrupt->level,
3000                                corrupt->key.objectid, corrupt->key.type,
3001                                corrupt->key.offset);
3002                         cache = next_cache_extent(cache);
3003                 }
3004                 if (repair) {
3005                         printf("Try to repair the btree for root %llu\n",
3006                                root->root_key.objectid);
3007                         ret = repair_btree(root, &corrupt_blocks);
3008                         if (ret < 0)
3009                                 fprintf(stderr, "Failed to repair btree: %s\n",
3010                                         strerror(-ret));
3011                         if (!ret)
3012                                 printf("Btree for root %llu is fixed\n",
3013                                        root->root_key.objectid);
3014                 }
3015         }
3016
3017         err = merge_root_recs(root, &root_node.root_cache, root_cache);
3018         if (err < 0)
3019                 ret = err;
3020
3021         if (root_node.current) {
3022                 root_node.current->checked = 1;
3023                 maybe_free_inode_rec(&root_node.inode_cache,
3024                                 root_node.current);
3025         }
3026
3027         err = check_inode_recs(root, &root_node.inode_cache);
3028         if (!ret)
3029                 ret = err;
3030
3031         free_corrupt_blocks_tree(&corrupt_blocks);
3032         root->fs_info->corrupt_blocks = NULL;
3033         return ret;
3034 }
3035
3036 static int fs_root_objectid(u64 objectid)
3037 {
3038         if (objectid == BTRFS_TREE_RELOC_OBJECTID ||
3039             objectid == BTRFS_DATA_RELOC_TREE_OBJECTID)
3040                 return 1;
3041         return is_fstree(objectid);
3042 }
3043
3044 static int check_fs_roots(struct btrfs_root *root,
3045                           struct cache_tree *root_cache)
3046 {
3047         struct btrfs_path path;
3048         struct btrfs_key key;
3049         struct walk_control wc;
3050         struct extent_buffer *leaf, *tree_node;
3051         struct btrfs_root *tmp_root;
3052         struct btrfs_root *tree_root = root->fs_info->tree_root;
3053         int ret;
3054         int err = 0;
3055
3056         /*
3057          * Just in case we made any changes to the extent tree that weren't
3058          * reflected into the free space cache yet.
3059          */
3060         if (repair)
3061                 reset_cached_block_groups(root->fs_info);
3062         memset(&wc, 0, sizeof(wc));
3063         cache_tree_init(&wc.shared);
3064         btrfs_init_path(&path);
3065
3066 again:
3067         key.offset = 0;
3068         key.objectid = 0;
3069         key.type = BTRFS_ROOT_ITEM_KEY;
3070         ret = btrfs_search_slot(NULL, tree_root, &key, &path, 0, 0);
3071         if (ret < 0) {
3072                 err = 1;
3073                 goto out;
3074         }
3075         tree_node = tree_root->node;
3076         while (1) {
3077                 if (tree_node != tree_root->node) {
3078                         free_root_recs_tree(root_cache);
3079                         btrfs_release_path(&path);
3080                         goto again;
3081                 }
3082                 leaf = path.nodes[0];
3083                 if (path.slots[0] >= btrfs_header_nritems(leaf)) {
3084                         ret = btrfs_next_leaf(tree_root, &path);
3085                         if (ret) {
3086                                 if (ret < 0)
3087                                         err = 1;
3088                                 break;
3089                         }
3090                         leaf = path.nodes[0];
3091                 }
3092                 btrfs_item_key_to_cpu(leaf, &key, path.slots[0]);
3093                 if (key.type == BTRFS_ROOT_ITEM_KEY &&
3094                     fs_root_objectid(key.objectid)) {
3095                         if (key.objectid == BTRFS_TREE_RELOC_OBJECTID) {
3096                                 tmp_root = btrfs_read_fs_root_no_cache(
3097                                                 root->fs_info, &key);
3098                         } else {
3099                                 key.offset = (u64)-1;
3100                                 tmp_root = btrfs_read_fs_root(
3101                                                 root->fs_info, &key);
3102                         }
3103                         if (IS_ERR(tmp_root)) {
3104                                 err = 1;
3105                                 goto next;
3106                         }
3107                         ret = check_fs_root(tmp_root, root_cache, &wc);
3108                         if (ret == -EAGAIN) {
3109                                 free_root_recs_tree(root_cache);
3110                                 btrfs_release_path(&path);
3111                                 goto again;
3112                         }
3113                         if (ret)
3114                                 err = 1;
3115                         if (key.objectid == BTRFS_TREE_RELOC_OBJECTID)
3116                                 btrfs_free_fs_root(tmp_root);
3117                 } else if (key.type == BTRFS_ROOT_REF_KEY ||
3118                            key.type == BTRFS_ROOT_BACKREF_KEY) {
3119                         process_root_ref(leaf, path.slots[0], &key,
3120                                          root_cache);
3121                 }
3122 next:
3123                 path.slots[0]++;
3124         }
3125 out:
3126         btrfs_release_path(&path);
3127         if (err)
3128                 free_extent_cache_tree(&wc.shared);
3129         if (!cache_tree_empty(&wc.shared))
3130                 fprintf(stderr, "warning line %d\n", __LINE__);
3131
3132         return err;
3133 }
3134
3135 static int all_backpointers_checked(struct extent_record *rec, int print_errs)
3136 {
3137         struct list_head *cur = rec->backrefs.next;
3138         struct extent_backref *back;
3139         struct tree_backref *tback;
3140         struct data_backref *dback;
3141         u64 found = 0;
3142         int err = 0;
3143
3144         while(cur != &rec->backrefs) {
3145                 back = list_entry(cur, struct extent_backref, list);
3146                 cur = cur->next;
3147                 if (!back->found_extent_tree) {
3148                         err = 1;
3149                         if (!print_errs)
3150                                 goto out;
3151                         if (back->is_data) {
3152                                 dback = (struct data_backref *)back;
3153                                 fprintf(stderr, "Backref %llu %s %llu"
3154                                         " owner %llu offset %llu num_refs %lu"
3155                                         " not found in extent tree\n",
3156                                         (unsigned long long)rec->start,
3157                                         back->full_backref ?
3158                                         "parent" : "root",
3159                                         back->full_backref ?
3160                                         (unsigned long long)dback->parent:
3161                                         (unsigned long long)dback->root,
3162                                         (unsigned long long)dback->owner,
3163                                         (unsigned long long)dback->offset,
3164                                         (unsigned long)dback->num_refs);
3165                         } else {
3166                                 tback = (struct tree_backref *)back;
3167                                 fprintf(stderr, "Backref %llu parent %llu"
3168                                         " root %llu not found in extent tree\n",
3169                                         (unsigned long long)rec->start,
3170                                         (unsigned long long)tback->parent,
3171                                         (unsigned long long)tback->root);
3172                         }
3173                 }
3174                 if (!back->is_data && !back->found_ref) {
3175                         err = 1;
3176                         if (!print_errs)
3177                                 goto out;
3178                         tback = (struct tree_backref *)back;
3179                         fprintf(stderr, "Backref %llu %s %llu not referenced back %p\n",
3180                                 (unsigned long long)rec->start,
3181                                 back->full_backref ? "parent" : "root",
3182                                 back->full_backref ?
3183                                 (unsigned long long)tback->parent :
3184                                 (unsigned long long)tback->root, back);
3185                 }
3186                 if (back->is_data) {
3187                         dback = (struct data_backref *)back;
3188                         if (dback->found_ref != dback->num_refs) {
3189                                 err = 1;
3190                                 if (!print_errs)
3191                                         goto out;
3192                                 fprintf(stderr, "Incorrect local backref count"
3193                                         " on %llu %s %llu owner %llu"
3194                                         " offset %llu found %u wanted %u back %p\n",
3195                                         (unsigned long long)rec->start,
3196                                         back->full_backref ?
3197                                         "parent" : "root",
3198                                         back->full_backref ?
3199                                         (unsigned long long)dback->parent:
3200                                         (unsigned long long)dback->root,
3201                                         (unsigned long long)dback->owner,
3202                                         (unsigned long long)dback->offset,
3203                                         dback->found_ref, dback->num_refs, back);
3204                         }
3205                         if (dback->disk_bytenr != rec->start) {
3206                                 err = 1;
3207                                 if (!print_errs)
3208                                         goto out;
3209                                 fprintf(stderr, "Backref disk bytenr does not"
3210                                         " match extent record, bytenr=%llu, "
3211                                         "ref bytenr=%llu\n",
3212                                         (unsigned long long)rec->start,
3213                                         (unsigned long long)dback->disk_bytenr);
3214                         }
3215
3216                         if (dback->bytes != rec->nr) {
3217                                 err = 1;
3218                                 if (!print_errs)
3219                                         goto out;
3220                                 fprintf(stderr, "Backref bytes do not match "
3221                                         "extent backref, bytenr=%llu, ref "
3222                                         "bytes=%llu, backref bytes=%llu\n",
3223                                         (unsigned long long)rec->start,
3224                                         (unsigned long long)rec->nr,
3225                                         (unsigned long long)dback->bytes);
3226                         }
3227                 }
3228                 if (!back->is_data) {
3229                         found += 1;
3230                 } else {
3231                         dback = (struct data_backref *)back;
3232                         found += dback->found_ref;
3233                 }
3234         }
3235         if (found != rec->refs) {
3236                 err = 1;
3237                 if (!print_errs)
3238                         goto out;
3239                 fprintf(stderr, "Incorrect global backref count "
3240                         "on %llu found %llu wanted %llu\n",
3241                         (unsigned long long)rec->start,
3242                         (unsigned long long)found,
3243                         (unsigned long long)rec->refs);
3244         }
3245 out:
3246         return err;
3247 }
3248
3249 static int free_all_extent_backrefs(struct extent_record *rec)
3250 {
3251         struct extent_backref *back;
3252         struct list_head *cur;
3253         while (!list_empty(&rec->backrefs)) {
3254                 cur = rec->backrefs.next;
3255                 back = list_entry(cur, struct extent_backref, list);
3256                 list_del(cur);
3257                 free(back);
3258         }
3259         return 0;
3260 }
3261
3262 static void free_extent_record_cache(struct btrfs_fs_info *fs_info,
3263                                      struct cache_tree *extent_cache)
3264 {
3265         struct cache_extent *cache;
3266         struct extent_record *rec;
3267
3268         while (1) {
3269                 cache = first_cache_extent(extent_cache);
3270                 if (!cache)
3271                         break;
3272                 rec = container_of(cache, struct extent_record, cache);
3273                 btrfs_unpin_extent(fs_info, rec->start, rec->max_size);
3274                 remove_cache_extent(extent_cache, cache);
3275                 free_all_extent_backrefs(rec);
3276                 free(rec);
3277         }
3278 }
3279
3280 static int maybe_free_extent_rec(struct cache_tree *extent_cache,
3281                                  struct extent_record *rec)
3282 {
3283         if (rec->content_checked && rec->owner_ref_checked &&
3284             rec->extent_item_refs == rec->refs && rec->refs > 0 &&
3285             rec->num_duplicates == 0 && !all_backpointers_checked(rec, 0)) {
3286                 remove_cache_extent(extent_cache, &rec->cache);
3287                 free_all_extent_backrefs(rec);
3288                 list_del_init(&rec->list);
3289                 free(rec);
3290         }
3291         return 0;
3292 }
3293
3294 static int check_owner_ref(struct btrfs_root *root,
3295                             struct extent_record *rec,
3296                             struct extent_buffer *buf)
3297 {
3298         struct extent_backref *node;
3299         struct tree_backref *back;
3300         struct btrfs_root *ref_root;
3301         struct btrfs_key key;
3302         struct btrfs_path path;
3303         struct extent_buffer *parent;
3304         int level;
3305         int found = 0;
3306         int ret;
3307
3308         list_for_each_entry(node, &rec->backrefs, list) {
3309                 if (node->is_data)
3310                         continue;
3311                 if (!node->found_ref)
3312                         continue;
3313                 if (node->full_backref)
3314                         continue;
3315                 back = (struct tree_backref *)node;
3316                 if (btrfs_header_owner(buf) == back->root)
3317                         return 0;
3318         }
3319         BUG_ON(rec->is_root);
3320
3321         /* try to find the block by search corresponding fs tree */
3322         key.objectid = btrfs_header_owner(buf);
3323         key.type = BTRFS_ROOT_ITEM_KEY;
3324         key.offset = (u64)-1;
3325
3326         ref_root = btrfs_read_fs_root(root->fs_info, &key);
3327         if (IS_ERR(ref_root))
3328                 return 1;
3329
3330         level = btrfs_header_level(buf);
3331         if (level == 0)
3332                 btrfs_item_key_to_cpu(buf, &key, 0);
3333         else
3334                 btrfs_node_key_to_cpu(buf, &key, 0);
3335
3336         btrfs_init_path(&path);
3337         path.lowest_level = level + 1;
3338         ret = btrfs_search_slot(NULL, ref_root, &key, &path, 0, 0);
3339         if (ret < 0)
3340                 return 0;
3341
3342         parent = path.nodes[level + 1];
3343         if (parent && buf->start == btrfs_node_blockptr(parent,
3344                                                         path.slots[level + 1]))
3345                 found = 1;
3346
3347         btrfs_release_path(&path);
3348         return found ? 0 : 1;
3349 }
3350
3351 static int is_extent_tree_record(struct extent_record *rec)
3352 {
3353         struct list_head *cur = rec->backrefs.next;
3354         struct extent_backref *node;
3355         struct tree_backref *back;
3356         int is_extent = 0;
3357
3358         while(cur != &rec->backrefs) {
3359                 node = list_entry(cur, struct extent_backref, list);
3360                 cur = cur->next;
3361                 if (node->is_data)
3362                         return 0;
3363                 back = (struct tree_backref *)node;
3364                 if (node->full_backref)
3365                         return 0;
3366                 if (back->root == BTRFS_EXTENT_TREE_OBJECTID)
3367                         is_extent = 1;
3368         }
3369         return is_extent;
3370 }
3371
3372
3373 static int record_bad_block_io(struct btrfs_fs_info *info,
3374                                struct cache_tree *extent_cache,
3375                                u64 start, u64 len)
3376 {
3377         struct extent_record *rec;
3378         struct cache_extent *cache;
3379         struct btrfs_key key;
3380
3381         cache = lookup_cache_extent(extent_cache, start, len);
3382         if (!cache)
3383                 return 0;
3384
3385         rec = container_of(cache, struct extent_record, cache);
3386         if (!is_extent_tree_record(rec))
3387                 return 0;
3388
3389         btrfs_disk_key_to_cpu(&key, &rec->parent_key);
3390         return btrfs_add_corrupt_extent_record(info, &key, start, len, 0);
3391 }
3392
3393 static int swap_values(struct btrfs_root *root, struct btrfs_path *path,
3394                        struct extent_buffer *buf, int slot)
3395 {
3396         if (btrfs_header_level(buf)) {
3397                 struct btrfs_key_ptr ptr1, ptr2;
3398
3399                 read_extent_buffer(buf, &ptr1, btrfs_node_key_ptr_offset(slot),
3400                                    sizeof(struct btrfs_key_ptr));
3401                 read_extent_buffer(buf, &ptr2,
3402                                    btrfs_node_key_ptr_offset(slot + 1),
3403                                    sizeof(struct btrfs_key_ptr));
3404                 write_extent_buffer(buf, &ptr1,
3405                                     btrfs_node_key_ptr_offset(slot + 1),
3406                                     sizeof(struct btrfs_key_ptr));
3407                 write_extent_buffer(buf, &ptr2,
3408                                     btrfs_node_key_ptr_offset(slot),
3409                                     sizeof(struct btrfs_key_ptr));
3410                 if (slot == 0) {
3411                         struct btrfs_disk_key key;
3412                         btrfs_node_key(buf, &key, 0);
3413                         btrfs_fixup_low_keys(root, path, &key,
3414                                              btrfs_header_level(buf) + 1);
3415                 }
3416         } else {
3417                 struct btrfs_item *item1, *item2;
3418                 struct btrfs_key k1, k2;
3419                 char *item1_data, *item2_data;
3420                 u32 item1_offset, item2_offset, item1_size, item2_size;
3421
3422                 item1 = btrfs_item_nr(slot);
3423                 item2 = btrfs_item_nr(slot + 1);
3424                 btrfs_item_key_to_cpu(buf, &k1, slot);
3425                 btrfs_item_key_to_cpu(buf, &k2, slot + 1);
3426                 item1_offset = btrfs_item_offset(buf, item1);
3427                 item2_offset = btrfs_item_offset(buf, item2);
3428                 item1_size = btrfs_item_size(buf, item1);
3429                 item2_size = btrfs_item_size(buf, item2);
3430
3431                 item1_data = malloc(item1_size);
3432                 if (!item1_data)
3433                         return -ENOMEM;
3434                 item2_data = malloc(item2_size);
3435                 if (!item2_data) {
3436                         free(item1_data);
3437                         return -ENOMEM;
3438                 }
3439
3440                 read_extent_buffer(buf, item1_data, item1_offset, item1_size);
3441                 read_extent_buffer(buf, item2_data, item2_offset, item2_size);
3442
3443                 write_extent_buffer(buf, item1_data, item2_offset, item2_size);
3444                 write_extent_buffer(buf, item2_data, item1_offset, item1_size);
3445                 free(item1_data);
3446                 free(item2_data);
3447
3448                 btrfs_set_item_offset(buf, item1, item2_offset);
3449                 btrfs_set_item_offset(buf, item2, item1_offset);
3450                 btrfs_set_item_size(buf, item1, item2_size);
3451                 btrfs_set_item_size(buf, item2, item1_size);
3452
3453                 path->slots[0] = slot;
3454                 btrfs_set_item_key_unsafe(root, path, &k2);
3455                 path->slots[0] = slot + 1;
3456                 btrfs_set_item_key_unsafe(root, path, &k1);
3457         }
3458         return 0;
3459 }
3460
3461 static int fix_key_order(struct btrfs_trans_handle *trans,
3462                          struct btrfs_root *root,
3463                          struct btrfs_path *path)
3464 {
3465         struct extent_buffer *buf;
3466         struct btrfs_key k1, k2;
3467         int i;
3468         int level = path->lowest_level;
3469         int ret;
3470
3471         buf = path->nodes[level];
3472         for (i = 0; i < btrfs_header_nritems(buf) - 1; i++) {
3473                 if (level) {
3474                         btrfs_node_key_to_cpu(buf, &k1, i);
3475                         btrfs_node_key_to_cpu(buf, &k2, i + 1);
3476                 } else {
3477                         btrfs_item_key_to_cpu(buf, &k1, i);
3478                         btrfs_item_key_to_cpu(buf, &k2, i + 1);
3479                 }
3480                 if (btrfs_comp_cpu_keys(&k1, &k2) < 0)
3481                         continue;
3482                 ret = swap_values(root, path, buf, i);
3483                 if (ret)
3484                         break;
3485                 btrfs_mark_buffer_dirty(buf);
3486                 i = 0;
3487         }
3488         return ret;
3489 }
3490
3491 static int delete_bogus_item(struct btrfs_trans_handle *trans,
3492                              struct btrfs_root *root,
3493                              struct btrfs_path *path,
3494                              struct extent_buffer *buf, int slot)
3495 {
3496         struct btrfs_key key;
3497         int nritems = btrfs_header_nritems(buf);
3498
3499         btrfs_item_key_to_cpu(buf, &key, slot);
3500
3501         /* These are all the keys we can deal with missing. */
3502         if (key.type != BTRFS_DIR_INDEX_KEY &&
3503             key.type != BTRFS_EXTENT_ITEM_KEY &&
3504             key.type != BTRFS_METADATA_ITEM_KEY &&
3505             key.type != BTRFS_TREE_BLOCK_REF_KEY &&
3506             key.type != BTRFS_EXTENT_DATA_REF_KEY)
3507                 return -1;
3508
3509         printf("Deleting bogus item [%llu,%u,%llu] at slot %d on block %llu\n",
3510                (unsigned long long)key.objectid, key.type,
3511                (unsigned long long)key.offset, slot, buf->start);
3512         memmove_extent_buffer(buf, btrfs_item_nr_offset(slot),
3513                               btrfs_item_nr_offset(slot + 1),
3514                               sizeof(struct btrfs_item) *
3515                               (nritems - slot - 1));
3516         btrfs_set_header_nritems(buf, nritems - 1);
3517         if (slot == 0) {
3518                 struct btrfs_disk_key disk_key;
3519
3520                 btrfs_item_key(buf, &disk_key, 0);
3521                 btrfs_fixup_low_keys(root, path, &disk_key, 1);
3522         }
3523         btrfs_mark_buffer_dirty(buf);
3524         return 0;
3525 }
3526
3527 static int fix_item_offset(struct btrfs_trans_handle *trans,
3528                            struct btrfs_root *root,
3529                            struct btrfs_path *path)
3530 {
3531         struct extent_buffer *buf;
3532         int i;
3533         int ret = 0;
3534
3535         /* We should only get this for leaves */
3536         BUG_ON(path->lowest_level);
3537         buf = path->nodes[0];
3538 again:
3539         for (i = 0; i < btrfs_header_nritems(buf); i++) {
3540                 unsigned int shift = 0, offset;
3541
3542                 if (i == 0 && btrfs_item_end_nr(buf, i) !=
3543                     BTRFS_LEAF_DATA_SIZE(root)) {
3544                         if (btrfs_item_end_nr(buf, i) >
3545                             BTRFS_LEAF_DATA_SIZE(root)) {
3546                                 ret = delete_bogus_item(trans, root, path,
3547                                                         buf, i);
3548                                 if (!ret)
3549                                         goto again;
3550                                 fprintf(stderr, "item is off the end of the "
3551                                         "leaf, can't fix\n");
3552                                 ret = -EIO;
3553                                 break;
3554                         }
3555                         shift = BTRFS_LEAF_DATA_SIZE(root) -
3556                                 btrfs_item_end_nr(buf, i);
3557                 } else if (i > 0 && btrfs_item_end_nr(buf, i) !=
3558                            btrfs_item_offset_nr(buf, i - 1)) {
3559                         if (btrfs_item_end_nr(buf, i) >
3560                             btrfs_item_offset_nr(buf, i - 1)) {
3561                                 ret = delete_bogus_item(trans, root, path,
3562                                                         buf, i);
3563                                 if (!ret)
3564                                         goto again;
3565                                 fprintf(stderr, "items overlap, can't fix\n");
3566                                 ret = -EIO;
3567                                 break;
3568                         }
3569                         shift = btrfs_item_offset_nr(buf, i - 1) -
3570                                 btrfs_item_end_nr(buf, i);
3571                 }
3572                 if (!shift)
3573                         continue;
3574
3575                 printf("Shifting item nr %d by %u bytes in block %llu\n",
3576                        i, shift, (unsigned long long)buf->start);
3577                 offset = btrfs_item_offset_nr(buf, i);
3578                 memmove_extent_buffer(buf,
3579                                       btrfs_leaf_data(buf) + offset + shift,
3580                                       btrfs_leaf_data(buf) + offset,
3581                                       btrfs_item_size_nr(buf, i));
3582                 btrfs_set_item_offset(buf, btrfs_item_nr(i),
3583                                       offset + shift);
3584                 btrfs_mark_buffer_dirty(buf);
3585         }
3586
3587         /*
3588          * We may have moved things, in which case we want to exit so we don't
3589          * write those changes out.  Once we have proper abort functionality in
3590          * progs this can be changed to something nicer.
3591          */
3592         BUG_ON(ret);
3593         return ret;
3594 }
3595
3596 /*
3597  * Attempt to fix basic block failures.  If we can't fix it for whatever reason
3598  * then just return -EIO.
3599  */
3600 static int try_to_fix_bad_block(struct btrfs_trans_handle *trans,
3601                                 struct btrfs_root *root,
3602                                 struct extent_buffer *buf,
3603                                 enum btrfs_tree_block_status status)
3604 {
3605         struct ulist *roots;
3606         struct ulist_node *node;
3607         struct btrfs_root *search_root;
3608         struct btrfs_path *path;
3609         struct ulist_iterator iter;
3610         struct btrfs_key root_key, key;
3611         int ret;
3612
3613         if (status != BTRFS_TREE_BLOCK_BAD_KEY_ORDER &&
3614             status != BTRFS_TREE_BLOCK_INVALID_OFFSETS)
3615                 return -EIO;
3616
3617         path = btrfs_alloc_path();
3618         if (!path)
3619                 return -EIO;
3620
3621         ret = btrfs_find_all_roots(trans, root->fs_info, buf->start,
3622                                    0, &roots);
3623         if (ret) {
3624                 btrfs_free_path(path);
3625                 return -EIO;
3626         }
3627
3628         ULIST_ITER_INIT(&iter);
3629         while ((node = ulist_next(roots, &iter))) {
3630                 root_key.objectid = node->val;
3631                 root_key.type = BTRFS_ROOT_ITEM_KEY;
3632                 root_key.offset = (u64)-1;
3633
3634                 search_root = btrfs_read_fs_root(root->fs_info, &root_key);
3635                 if (IS_ERR(root)) {
3636                         ret = -EIO;
3637                         break;
3638                 }
3639
3640                 record_root_in_trans(trans, search_root);
3641
3642                 path->lowest_level = btrfs_header_level(buf);
3643                 path->skip_check_block = 1;
3644                 if (path->lowest_level)
3645                         btrfs_node_key_to_cpu(buf, &key, 0);
3646                 else
3647                         btrfs_item_key_to_cpu(buf, &key, 0);
3648                 ret = btrfs_search_slot(trans, search_root, &key, path, 0, 1);
3649                 if (ret) {
3650                         ret = -EIO;
3651                         break;
3652                 }
3653                 if (status == BTRFS_TREE_BLOCK_BAD_KEY_ORDER)
3654                         ret = fix_key_order(trans, search_root, path);
3655                 else if (status == BTRFS_TREE_BLOCK_INVALID_OFFSETS)
3656                         ret = fix_item_offset(trans, search_root, path);
3657                 if (ret)
3658                         break;
3659                 btrfs_release_path(path);
3660         }
3661         ulist_free(roots);
3662         btrfs_free_path(path);
3663         return ret;
3664 }
3665
3666 static int check_block(struct btrfs_trans_handle *trans,
3667                        struct btrfs_root *root,
3668                        struct cache_tree *extent_cache,
3669                        struct extent_buffer *buf, u64 flags)
3670 {
3671         struct extent_record *rec;
3672         struct cache_extent *cache;
3673         struct btrfs_key key;
3674         enum btrfs_tree_block_status status;
3675         int ret = 0;
3676         int level;
3677
3678         cache = lookup_cache_extent(extent_cache, buf->start, buf->len);
3679         if (!cache)
3680                 return 1;
3681         rec = container_of(cache, struct extent_record, cache);
3682         rec->generation = btrfs_header_generation(buf);
3683
3684         level = btrfs_header_level(buf);
3685         if (btrfs_header_nritems(buf) > 0) {
3686
3687                 if (level == 0)
3688                         btrfs_item_key_to_cpu(buf, &key, 0);
3689                 else
3690                         btrfs_node_key_to_cpu(buf, &key, 0);
3691
3692                 rec->info_objectid = key.objectid;
3693         }
3694         rec->info_level = level;
3695
3696         if (btrfs_is_leaf(buf))
3697                 status = btrfs_check_leaf(root, &rec->parent_key, buf);
3698         else
3699                 status = btrfs_check_node(root, &rec->parent_key, buf);
3700
3701         if (status != BTRFS_TREE_BLOCK_CLEAN) {
3702                 if (repair)
3703                         status = try_to_fix_bad_block(trans, root, buf,
3704                                                       status);
3705                 if (status != BTRFS_TREE_BLOCK_CLEAN) {
3706                         ret = -EIO;
3707                         fprintf(stderr, "bad block %llu\n",
3708                                 (unsigned long long)buf->start);
3709                 } else {
3710                         /*
3711                          * Signal to callers we need to start the scan over
3712                          * again since we'll have cow'ed blocks.
3713                          */
3714                         ret = -EAGAIN;
3715                 }
3716         } else {
3717                 rec->content_checked = 1;
3718                 if (flags & BTRFS_BLOCK_FLAG_FULL_BACKREF)
3719                         rec->owner_ref_checked = 1;
3720                 else {
3721                         ret = check_owner_ref(root, rec, buf);
3722                         if (!ret)
3723                                 rec->owner_ref_checked = 1;
3724                 }
3725         }
3726         if (!ret)
3727                 maybe_free_extent_rec(extent_cache, rec);
3728         return ret;
3729 }
3730
3731 static struct tree_backref *find_tree_backref(struct extent_record *rec,
3732                                                 u64 parent, u64 root)
3733 {
3734         struct list_head *cur = rec->backrefs.next;
3735         struct extent_backref *node;
3736         struct tree_backref *back;
3737
3738         while(cur != &rec->backrefs) {
3739                 node = list_entry(cur, struct extent_backref, list);
3740                 cur = cur->next;
3741                 if (node->is_data)
3742                         continue;
3743                 back = (struct tree_backref *)node;
3744                 if (parent > 0) {
3745                         if (!node->full_backref)
3746                                 continue;
3747                         if (parent == back->parent)
3748                                 return back;
3749                 } else {
3750                         if (node->full_backref)
3751                                 continue;
3752                         if (back->root == root)
3753                                 return back;
3754                 }
3755         }
3756         return NULL;
3757 }
3758
3759 static struct tree_backref *alloc_tree_backref(struct extent_record *rec,
3760                                                 u64 parent, u64 root)
3761 {
3762         struct tree_backref *ref = malloc(sizeof(*ref));
3763         memset(&ref->node, 0, sizeof(ref->node));
3764         if (parent > 0) {
3765                 ref->parent = parent;
3766                 ref->node.full_backref = 1;
3767         } else {
3768                 ref->root = root;
3769                 ref->node.full_backref = 0;
3770         }
3771         list_add_tail(&ref->node.list, &rec->backrefs);
3772
3773         return ref;
3774 }
3775
3776 static struct data_backref *find_data_backref(struct extent_record *rec,
3777                                                 u64 parent, u64 root,
3778                                                 u64 owner, u64 offset,
3779                                                 int found_ref,
3780                                                 u64 disk_bytenr, u64 bytes)
3781 {
3782         struct list_head *cur = rec->backrefs.next;
3783         struct extent_backref *node;
3784         struct data_backref *back;
3785
3786         while(cur != &rec->backrefs) {
3787                 node = list_entry(cur, struct extent_backref, list);
3788                 cur = cur->next;
3789                 if (!node->is_data)
3790                         continue;
3791                 back = (struct data_backref *)node;
3792                 if (parent > 0) {
3793                         if (!node->full_backref)
3794                                 continue;
3795                         if (parent == back->parent)
3796                                 return back;
3797                 } else {
3798                         if (node->full_backref)
3799                                 continue;
3800                         if (back->root == root && back->owner == owner &&
3801                             back->offset == offset) {
3802                                 if (found_ref && node->found_ref &&
3803                                     (back->bytes != bytes ||
3804                                     back->disk_bytenr != disk_bytenr))
3805                                         continue;
3806                                 return back;
3807                         }
3808                 }
3809         }
3810         return NULL;
3811 }
3812
3813 static struct data_backref *alloc_data_backref(struct extent_record *rec,
3814                                                 u64 parent, u64 root,
3815                                                 u64 owner, u64 offset,
3816                                                 u64 max_size)
3817 {
3818         struct data_backref *ref = malloc(sizeof(*ref));
3819         memset(&ref->node, 0, sizeof(ref->node));
3820         ref->node.is_data = 1;
3821
3822         if (parent > 0) {
3823                 ref->parent = parent;
3824                 ref->owner = 0;
3825                 ref->offset = 0;
3826                 ref->node.full_backref = 1;
3827         } else {
3828                 ref->root = root;
3829                 ref->owner = owner;
3830                 ref->offset = offset;
3831                 ref->node.full_backref = 0;
3832         }
3833         ref->bytes = max_size;
3834         ref->found_ref = 0;
3835         ref->num_refs = 0;
3836         list_add_tail(&ref->node.list, &rec->backrefs);
3837         if (max_size > rec->max_size)
3838                 rec->max_size = max_size;
3839         return ref;
3840 }
3841
3842 static int add_extent_rec(struct cache_tree *extent_cache,
3843                           struct btrfs_key *parent_key, u64 parent_gen,
3844                           u64 start, u64 nr, u64 extent_item_refs,
3845                           int is_root, int inc_ref, int set_checked,
3846                           int metadata, int extent_rec, u64 max_size)
3847 {
3848         struct extent_record *rec;
3849         struct cache_extent *cache;
3850         int ret = 0;
3851         int dup = 0;
3852
3853         cache = lookup_cache_extent(extent_cache, start, nr);
3854         if (cache) {
3855                 rec = container_of(cache, struct extent_record, cache);
3856                 if (inc_ref)
3857                         rec->refs++;
3858                 if (rec->nr == 1)
3859                         rec->nr = max(nr, max_size);
3860
3861                 /*
3862                  * We need to make sure to reset nr to whatever the extent
3863                  * record says was the real size, this way we can compare it to
3864                  * the backrefs.
3865                  */
3866                 if (extent_rec) {
3867                         if (start != rec->start || rec->found_rec) {
3868                                 struct extent_record *tmp;
3869
3870                                 dup = 1;
3871                                 if (list_empty(&rec->list))
3872                                         list_add_tail(&rec->list,
3873                                                       &duplicate_extents);
3874
3875                                 /*
3876                                  * We have to do this song and dance in case we
3877                                  * find an extent record that falls inside of
3878                                  * our current extent record but does not have
3879                                  * the same objectid.
3880                                  */
3881                                 tmp = malloc(sizeof(*tmp));
3882                                 if (!tmp)
3883                                         return -ENOMEM;
3884                                 tmp->start = start;
3885                                 tmp->max_size = max_size;
3886                                 tmp->nr = nr;
3887                                 tmp->found_rec = 1;
3888                                 tmp->metadata = metadata;
3889                                 tmp->extent_item_refs = extent_item_refs;
3890                                 INIT_LIST_HEAD(&tmp->list);
3891                                 list_add_tail(&tmp->list, &rec->dups);
3892                                 rec->num_duplicates++;
3893                         } else {
3894                                 rec->nr = nr;
3895                                 rec->found_rec = 1;
3896                         }
3897                 }
3898
3899                 if (extent_item_refs && !dup) {
3900                         if (rec->extent_item_refs) {
3901                                 fprintf(stderr, "block %llu rec "
3902                                         "extent_item_refs %llu, passed %llu\n",
3903                                         (unsigned long long)start,
3904                                         (unsigned long long)
3905                                                         rec->extent_item_refs,
3906                                         (unsigned long long)extent_item_refs);
3907                         }
3908                         rec->extent_item_refs = extent_item_refs;
3909                 }
3910                 if (is_root)
3911                         rec->is_root = 1;
3912                 if (set_checked) {
3913                         rec->content_checked = 1;
3914                         rec->owner_ref_checked = 1;
3915                 }
3916
3917                 if (parent_key)
3918                         btrfs_cpu_key_to_disk(&rec->parent_key, parent_key);
3919                 if (parent_gen)
3920                         rec->parent_generation = parent_gen;
3921
3922                 if (rec->max_size < max_size)
3923                         rec->max_size = max_size;
3924
3925                 maybe_free_extent_rec(extent_cache, rec);
3926                 return ret;
3927         }
3928         rec = malloc(sizeof(*rec));
3929         rec->start = start;
3930         rec->max_size = max_size;
3931         rec->nr = max(nr, max_size);
3932         rec->found_rec = !!extent_rec;
3933         rec->content_checked = 0;
3934         rec->owner_ref_checked = 0;
3935         rec->num_duplicates = 0;
3936         rec->metadata = metadata;
3937         INIT_LIST_HEAD(&rec->backrefs);
3938         INIT_LIST_HEAD(&rec->dups);
3939         INIT_LIST_HEAD(&rec->list);
3940
3941         if (is_root)
3942                 rec->is_root = 1;
3943         else
3944                 rec->is_root = 0;
3945
3946         if (inc_ref)
3947                 rec->refs = 1;
3948         else
3949                 rec->refs = 0;
3950
3951         if (extent_item_refs)
3952                 rec->extent_item_refs = extent_item_refs;
3953         else
3954                 rec->extent_item_refs = 0;
3955
3956         if (parent_key)
3957                 btrfs_cpu_key_to_disk(&rec->parent_key, parent_key);
3958         else
3959                 memset(&rec->parent_key, 0, sizeof(*parent_key));
3960
3961         if (parent_gen)
3962                 rec->parent_generation = parent_gen;
3963         else
3964                 rec->parent_generation = 0;
3965
3966         rec->cache.start = start;
3967         rec->cache.size = nr;
3968         ret = insert_cache_extent(extent_cache, &rec->cache);
3969         BUG_ON(ret);
3970         bytes_used += nr;
3971         if (set_checked) {
3972                 rec->content_checked = 1;
3973                 rec->owner_ref_checked = 1;
3974         }
3975         return ret;
3976 }
3977
3978 static int add_tree_backref(struct cache_tree *extent_cache, u64 bytenr,
3979                             u64 parent, u64 root, int found_ref)
3980 {
3981         struct extent_record *rec;
3982         struct tree_backref *back;
3983         struct cache_extent *cache;
3984
3985         cache = lookup_cache_extent(extent_cache, bytenr, 1);
3986         if (!cache) {
3987                 add_extent_rec(extent_cache, NULL, 0, bytenr,
3988                                1, 0, 0, 0, 0, 1, 0, 0);
3989                 cache = lookup_cache_extent(extent_cache, bytenr, 1);
3990                 if (!cache)
3991                         abort();
3992         }
3993
3994         rec = container_of(cache, struct extent_record, cache);
3995         if (rec->start != bytenr) {
3996                 abort();
3997         }
3998
3999         back = find_tree_backref(rec, parent, root);
4000         if (!back)
4001                 back = alloc_tree_backref(rec, parent, root);
4002
4003         if (found_ref) {
4004                 if (back->node.found_ref) {
4005                         fprintf(stderr, "Extent back ref already exists "
4006                                 "for %llu parent %llu root %llu \n",
4007                                 (unsigned long long)bytenr,
4008                                 (unsigned long long)parent,
4009                                 (unsigned long long)root);
4010                 }
4011                 back->node.found_ref = 1;
4012         } else {
4013                 if (back->node.found_extent_tree) {
4014                         fprintf(stderr, "Extent back ref already exists "
4015                                 "for %llu parent %llu root %llu \n",
4016                                 (unsigned long long)bytenr,
4017                                 (unsigned long long)parent,
4018                                 (unsigned long long)root);
4019                 }
4020                 back->node.found_extent_tree = 1;
4021         }
4022         maybe_free_extent_rec(extent_cache, rec);
4023         return 0;
4024 }
4025
4026 static int add_data_backref(struct cache_tree *extent_cache, u64 bytenr,
4027                             u64 parent, u64 root, u64 owner, u64 offset,
4028                             u32 num_refs, int found_ref, u64 max_size)
4029 {
4030         struct extent_record *rec;
4031         struct data_backref *back;
4032         struct cache_extent *cache;
4033
4034         cache = lookup_cache_extent(extent_cache, bytenr, 1);
4035         if (!cache) {
4036                 add_extent_rec(extent_cache, NULL, 0, bytenr, 1, 0, 0, 0, 0,
4037                                0, 0, max_size);
4038                 cache = lookup_cache_extent(extent_cache, bytenr, 1);
4039                 if (!cache)
4040                         abort();
4041         }
4042
4043         rec = container_of(cache, struct extent_record, cache);
4044         if (rec->max_size < max_size)
4045                 rec->max_size = max_size;
4046
4047         /*
4048          * If found_ref is set then max_size is the real size and must match the
4049          * existing refs.  So if we have already found a ref then we need to
4050          * make sure that this ref matches the existing one, otherwise we need
4051          * to add a new backref so we can notice that the backrefs don't match
4052          * and we need to figure out who is telling the truth.  This is to
4053          * account for that awful fsync bug I introduced where we'd end up with
4054          * a btrfs_file_extent_item that would have its length include multiple
4055          * prealloc extents or point inside of a prealloc extent.
4056          */
4057         back = find_data_backref(rec, parent, root, owner, offset, found_ref,
4058                                  bytenr, max_size);
4059         if (!back)
4060                 back = alloc_data_backref(rec, parent, root, owner, offset,
4061                                           max_size);
4062
4063         if (found_ref) {
4064                 BUG_ON(num_refs != 1);
4065                 if (back->node.found_ref)
4066                         BUG_ON(back->bytes != max_size);
4067                 back->node.found_ref = 1;
4068                 back->found_ref += 1;
4069                 back->bytes = max_size;
4070                 back->disk_bytenr = bytenr;
4071                 rec->refs += 1;
4072                 rec->content_checked = 1;
4073                 rec->owner_ref_checked = 1;
4074         } else {
4075                 if (back->node.found_extent_tree) {
4076                         fprintf(stderr, "Extent back ref already exists "
4077                                 "for %llu parent %llu root %llu "
4078                                 "owner %llu offset %llu num_refs %lu\n",
4079                                 (unsigned long long)bytenr,
4080                                 (unsigned long long)parent,
4081                                 (unsigned long long)root,
4082                                 (unsigned long long)owner,
4083                                 (unsigned long long)offset,
4084                                 (unsigned long)num_refs);
4085                 }
4086                 back->num_refs = num_refs;
4087                 back->node.found_extent_tree = 1;
4088         }
4089         maybe_free_extent_rec(extent_cache, rec);
4090         return 0;
4091 }
4092
4093 static int add_pending(struct cache_tree *pending,
4094                        struct cache_tree *seen, u64 bytenr, u32 size)
4095 {
4096         int ret;
4097         ret = add_cache_extent(seen, bytenr, size);
4098         if (ret)
4099                 return ret;
4100         add_cache_extent(pending, bytenr, size);
4101         return 0;
4102 }
4103
4104 static int pick_next_pending(struct cache_tree *pending,
4105                         struct cache_tree *reada,
4106                         struct cache_tree *nodes,
4107                         u64 last, struct block_info *bits, int bits_nr,
4108                         int *reada_bits)
4109 {
4110         unsigned long node_start = last;
4111         struct cache_extent *cache;
4112         int ret;
4113
4114         cache = search_cache_extent(reada, 0);
4115         if (cache) {
4116                 bits[0].start = cache->start;
4117                 bits[0].size = cache->size;
4118                 *reada_bits = 1;
4119                 return 1;
4120         }
4121         *reada_bits = 0;
4122         if (node_start > 32768)
4123                 node_start -= 32768;
4124
4125         cache = search_cache_extent(nodes, node_start);
4126         if (!cache)
4127                 cache = search_cache_extent(nodes, 0);
4128
4129         if (!cache) {
4130                  cache = search_cache_extent(pending, 0);
4131                  if (!cache)
4132                          return 0;
4133                  ret = 0;
4134                  do {
4135                          bits[ret].start = cache->start;
4136                          bits[ret].size = cache->size;
4137                          cache = next_cache_extent(cache);
4138                          ret++;
4139                  } while (cache && ret < bits_nr);
4140                  return ret;
4141         }
4142
4143         ret = 0;
4144         do {
4145                 bits[ret].start = cache->start;
4146                 bits[ret].size = cache->size;
4147                 cache = next_cache_extent(cache);
4148                 ret++;
4149         } while (cache && ret < bits_nr);
4150
4151         if (bits_nr - ret > 8) {
4152                 u64 lookup = bits[0].start + bits[0].size;
4153                 struct cache_extent *next;
4154                 next = search_cache_extent(pending, lookup);
4155                 while(next) {
4156                         if (next->start - lookup > 32768)
4157                                 break;
4158                         bits[ret].start = next->start;
4159                         bits[ret].size = next->size;
4160                         lookup = next->start + next->size;
4161                         ret++;
4162                         if (ret == bits_nr)
4163                                 break;
4164                         next = next_cache_extent(next);
4165                         if (!next)
4166                                 break;
4167                 }
4168         }
4169         return ret;
4170 }
4171
4172 static void free_chunk_record(struct cache_extent *cache)
4173 {
4174         struct chunk_record *rec;
4175
4176         rec = container_of(cache, struct chunk_record, cache);
4177         list_del_init(&rec->list);
4178         list_del_init(&rec->dextents);
4179         free(rec);
4180 }
4181
4182 void free_chunk_cache_tree(struct cache_tree *chunk_cache)
4183 {
4184         cache_tree_free_extents(chunk_cache, free_chunk_record);
4185 }
4186
4187 static void free_device_record(struct rb_node *node)
4188 {
4189         struct device_record *rec;
4190
4191         rec = container_of(node, struct device_record, node);
4192         free(rec);
4193 }
4194
4195 FREE_RB_BASED_TREE(device_cache, free_device_record);
4196
4197 int insert_block_group_record(struct block_group_tree *tree,
4198                               struct block_group_record *bg_rec)
4199 {
4200         int ret;
4201
4202         ret = insert_cache_extent(&tree->tree, &bg_rec->cache);
4203         if (ret)
4204                 return ret;
4205
4206         list_add_tail(&bg_rec->list, &tree->block_groups);
4207         return 0;
4208 }
4209
4210 static void free_block_group_record(struct cache_extent *cache)
4211 {
4212         struct block_group_record *rec;
4213
4214         rec = container_of(cache, struct block_group_record, cache);
4215         list_del_init(&rec->list);
4216         free(rec);
4217 }
4218
4219 void free_block_group_tree(struct block_group_tree *tree)
4220 {
4221         cache_tree_free_extents(&tree->tree, free_block_group_record);
4222 }
4223
4224 int insert_device_extent_record(struct device_extent_tree *tree,
4225                                 struct device_extent_record *de_rec)
4226 {
4227         int ret;
4228
4229         /*
4230          * Device extent is a bit different from the other extents, because
4231          * the extents which belong to the different devices may have the
4232          * same start and size, so we need use the special extent cache
4233          * search/insert functions.
4234          */
4235         ret = insert_cache_extent2(&tree->tree, &de_rec->cache);
4236         if (ret)
4237                 return ret;
4238
4239         list_add_tail(&de_rec->chunk_list, &tree->no_chunk_orphans);
4240         list_add_tail(&de_rec->device_list, &tree->no_device_orphans);
4241         return 0;
4242 }
4243
4244 static void free_device_extent_record(struct cache_extent *cache)
4245 {
4246         struct device_extent_record *rec;
4247
4248         rec = container_of(cache, struct device_extent_record, cache);
4249         if (!list_empty(&rec->chunk_list))
4250                 list_del_init(&rec->chunk_list);
4251         if (!list_empty(&rec->device_list))
4252                 list_del_init(&rec->device_list);
4253         free(rec);
4254 }
4255
4256 void free_device_extent_tree(struct device_extent_tree *tree)
4257 {
4258         cache_tree_free_extents(&tree->tree, free_device_extent_record);
4259 }
4260
4261 #ifdef BTRFS_COMPAT_EXTENT_TREE_V0
4262 static int process_extent_ref_v0(struct cache_tree *extent_cache,
4263                                  struct extent_buffer *leaf, int slot)
4264 {
4265         struct btrfs_extent_ref_v0 *ref0;
4266         struct btrfs_key key;
4267
4268         btrfs_item_key_to_cpu(leaf, &key, slot);
4269         ref0 = btrfs_item_ptr(leaf, slot, struct btrfs_extent_ref_v0);
4270         if (btrfs_ref_objectid_v0(leaf, ref0) < BTRFS_FIRST_FREE_OBJECTID) {
4271                 add_tree_backref(extent_cache, key.objectid, key.offset, 0, 0);
4272         } else {
4273                 add_data_backref(extent_cache, key.objectid, key.offset, 0,
4274                                  0, 0, btrfs_ref_count_v0(leaf, ref0), 0, 0);
4275         }
4276         return 0;
4277 }
4278 #endif
4279
4280 struct chunk_record *btrfs_new_chunk_record(struct extent_buffer *leaf,
4281                                             struct btrfs_key *key,
4282                                             int slot)
4283 {
4284         struct btrfs_chunk *ptr;
4285         struct chunk_record *rec;
4286         int num_stripes, i;
4287
4288         ptr = btrfs_item_ptr(leaf, slot, struct btrfs_chunk);
4289         num_stripes = btrfs_chunk_num_stripes(leaf, ptr);
4290
4291         rec = malloc(btrfs_chunk_record_size(num_stripes));
4292         if (!rec) {
4293                 fprintf(stderr, "memory allocation failed\n");
4294                 exit(-1);
4295         }
4296
4297         memset(rec, 0, btrfs_chunk_record_size(num_stripes));
4298
4299         INIT_LIST_HEAD(&rec->list);
4300         INIT_LIST_HEAD(&rec->dextents);
4301         rec->bg_rec = NULL;
4302
4303         rec->cache.start = key->offset;
4304         rec->cache.size = btrfs_chunk_length(leaf, ptr);
4305
4306         rec->generation = btrfs_header_generation(leaf);
4307
4308         rec->objectid = key->objectid;
4309         rec->type = key->type;
4310         rec->offset = key->offset;
4311
4312         rec->length = rec->cache.size;
4313         rec->owner = btrfs_chunk_owner(leaf, ptr);
4314         rec->stripe_len = btrfs_chunk_stripe_len(leaf, ptr);
4315         rec->type_flags = btrfs_chunk_type(leaf, ptr);
4316         rec->io_width = btrfs_chunk_io_width(leaf, ptr);
4317         rec->io_align = btrfs_chunk_io_align(leaf, ptr);
4318         rec->sector_size = btrfs_chunk_sector_size(leaf, ptr);
4319         rec->num_stripes = num_stripes;
4320         rec->sub_stripes = btrfs_chunk_sub_stripes(leaf, ptr);
4321
4322         for (i = 0; i < rec->num_stripes; ++i) {
4323                 rec->stripes[i].devid =
4324                         btrfs_stripe_devid_nr(leaf, ptr, i);
4325                 rec->stripes[i].offset =
4326                         btrfs_stripe_offset_nr(leaf, ptr, i);
4327                 read_extent_buffer(leaf, rec->stripes[i].dev_uuid,
4328                                 (unsigned long)btrfs_stripe_dev_uuid_nr(ptr, i),
4329                                 BTRFS_UUID_SIZE);
4330         }
4331
4332         return rec;
4333 }
4334
4335 static int process_chunk_item(struct cache_tree *chunk_cache,
4336                               struct btrfs_key *key, struct extent_buffer *eb,
4337                               int slot)
4338 {
4339         struct chunk_record *rec;
4340         int ret = 0;
4341
4342         rec = btrfs_new_chunk_record(eb, key, slot);
4343         ret = insert_cache_extent(chunk_cache, &rec->cache);
4344         if (ret) {
4345                 fprintf(stderr, "Chunk[%llu, %llu] existed.\n",
4346                         rec->offset, rec->length);
4347                 free(rec);
4348         }
4349
4350         return ret;
4351 }
4352
4353 static int process_device_item(struct rb_root *dev_cache,
4354                 struct btrfs_key *key, struct extent_buffer *eb, int slot)
4355 {
4356         struct btrfs_dev_item *ptr;
4357         struct device_record *rec;
4358         int ret = 0;
4359
4360         ptr = btrfs_item_ptr(eb,
4361                 slot, struct btrfs_dev_item);
4362
4363         rec = malloc(sizeof(*rec));
4364         if (!rec) {
4365                 fprintf(stderr, "memory allocation failed\n");
4366                 return -ENOMEM;
4367         }
4368
4369         rec->devid = key->offset;
4370         rec->generation = btrfs_header_generation(eb);
4371
4372         rec->objectid = key->objectid;
4373         rec->type = key->type;
4374         rec->offset = key->offset;
4375
4376         rec->devid = btrfs_device_id(eb, ptr);
4377         rec->total_byte = btrfs_device_total_bytes(eb, ptr);
4378         rec->byte_used = btrfs_device_bytes_used(eb, ptr);
4379
4380         ret = rb_insert(dev_cache, &rec->node, device_record_compare);
4381         if (ret) {
4382                 fprintf(stderr, "Device[%llu] existed.\n", rec->devid);
4383                 free(rec);
4384         }
4385
4386         return ret;
4387 }
4388
4389 struct block_group_record *
4390 btrfs_new_block_group_record(struct extent_buffer *leaf, struct btrfs_key *key,
4391                              int slot)
4392 {
4393         struct btrfs_block_group_item *ptr;
4394         struct block_group_record *rec;
4395
4396         rec = malloc(sizeof(*rec));
4397         if (!rec) {
4398                 fprintf(stderr, "memory allocation failed\n");
4399                 exit(-1);
4400         }
4401         memset(rec, 0, sizeof(*rec));
4402
4403         rec->cache.start = key->objectid;
4404         rec->cache.size = key->offset;
4405
4406         rec->generation = btrfs_header_generation(leaf);
4407
4408         rec->objectid = key->objectid;
4409         rec->type = key->type;
4410         rec->offset = key->offset;
4411
4412         ptr = btrfs_item_ptr(leaf, slot, struct btrfs_block_group_item);
4413         rec->flags = btrfs_disk_block_group_flags(leaf, ptr);
4414
4415         INIT_LIST_HEAD(&rec->list);
4416
4417         return rec;
4418 }
4419
4420 static int process_block_group_item(struct block_group_tree *block_group_cache,
4421                                     struct btrfs_key *key,
4422                                     struct extent_buffer *eb, int slot)
4423 {
4424         struct block_group_record *rec;
4425         int ret = 0;
4426
4427         rec = btrfs_new_block_group_record(eb, key, slot);
4428         ret = insert_block_group_record(block_group_cache, rec);
4429         if (ret) {
4430                 fprintf(stderr, "Block Group[%llu, %llu] existed.\n",
4431                         rec->objectid, rec->offset);
4432                 free(rec);
4433         }
4434
4435         return ret;
4436 }
4437
4438 struct device_extent_record *
4439 btrfs_new_device_extent_record(struct extent_buffer *leaf,
4440                                struct btrfs_key *key, int slot)
4441 {
4442         struct device_extent_record *rec;
4443         struct btrfs_dev_extent *ptr;
4444
4445         rec = malloc(sizeof(*rec));
4446         if (!rec) {
4447                 fprintf(stderr, "memory allocation failed\n");
4448                 exit(-1);
4449         }
4450         memset(rec, 0, sizeof(*rec));
4451
4452         rec->cache.objectid = key->objectid;
4453         rec->cache.start = key->offset;
4454
4455         rec->generation = btrfs_header_generation(leaf);
4456
4457         rec->objectid = key->objectid;
4458         rec->type = key->type;
4459         rec->offset = key->offset;
4460
4461         ptr = btrfs_item_ptr(leaf, slot, struct btrfs_dev_extent);
4462         rec->chunk_objecteid =
4463                 btrfs_dev_extent_chunk_objectid(leaf, ptr);
4464         rec->chunk_offset =
4465                 btrfs_dev_extent_chunk_offset(leaf, ptr);
4466         rec->length = btrfs_dev_extent_length(leaf, ptr);
4467         rec->cache.size = rec->length;
4468
4469         INIT_LIST_HEAD(&rec->chunk_list);
4470         INIT_LIST_HEAD(&rec->device_list);
4471
4472         return rec;
4473 }
4474
4475 static int
4476 process_device_extent_item(struct device_extent_tree *dev_extent_cache,
4477                            struct btrfs_key *key, struct extent_buffer *eb,
4478                            int slot)
4479 {
4480         struct device_extent_record *rec;
4481         int ret;
4482
4483         rec = btrfs_new_device_extent_record(eb, key, slot);
4484         ret = insert_device_extent_record(dev_extent_cache, rec);
4485         if (ret) {
4486                 fprintf(stderr,
4487                         "Device extent[%llu, %llu, %llu] existed.\n",
4488                         rec->objectid, rec->offset, rec->length);
4489                 free(rec);
4490         }
4491
4492         return ret;
4493 }
4494
4495 static int process_extent_item(struct btrfs_root *root,
4496                                struct cache_tree *extent_cache,
4497                                struct extent_buffer *eb, int slot)
4498 {
4499         struct btrfs_extent_item *ei;
4500         struct btrfs_extent_inline_ref *iref;
4501         struct btrfs_extent_data_ref *dref;
4502         struct btrfs_shared_data_ref *sref;
4503         struct btrfs_key key;
4504         unsigned long end;
4505         unsigned long ptr;
4506         int type;
4507         u32 item_size = btrfs_item_size_nr(eb, slot);
4508         u64 refs = 0;
4509         u64 offset;
4510         u64 num_bytes;
4511         int metadata = 0;
4512
4513         btrfs_item_key_to_cpu(eb, &key, slot);
4514
4515         if (key.type == BTRFS_METADATA_ITEM_KEY) {
4516                 metadata = 1;
4517                 num_bytes = root->leafsize;
4518         } else {
4519                 num_bytes = key.offset;
4520         }
4521
4522         if (item_size < sizeof(*ei)) {
4523 #ifdef BTRFS_COMPAT_EXTENT_TREE_V0
4524                 struct btrfs_extent_item_v0 *ei0;
4525                 BUG_ON(item_size != sizeof(*ei0));
4526                 ei0 = btrfs_item_ptr(eb, slot, struct btrfs_extent_item_v0);
4527                 refs = btrfs_extent_refs_v0(eb, ei0);
4528 #else
4529                 BUG();
4530 #endif
4531                 return add_extent_rec(extent_cache, NULL, 0, key.objectid,
4532                                       num_bytes, refs, 0, 0, 0, metadata, 1,
4533                                       num_bytes);
4534         }
4535
4536         ei = btrfs_item_ptr(eb, slot, struct btrfs_extent_item);
4537         refs = btrfs_extent_refs(eb, ei);
4538
4539         add_extent_rec(extent_cache, NULL, 0, key.objectid, num_bytes,
4540                        refs, 0, 0, 0, metadata, 1, num_bytes);
4541
4542         ptr = (unsigned long)(ei + 1);
4543         if (btrfs_extent_flags(eb, ei) & BTRFS_EXTENT_FLAG_TREE_BLOCK &&
4544             key.type == BTRFS_EXTENT_ITEM_KEY)
4545                 ptr += sizeof(struct btrfs_tree_block_info);
4546
4547         end = (unsigned long)ei + item_size;
4548         while (ptr < end) {
4549                 iref = (struct btrfs_extent_inline_ref *)ptr;
4550                 type = btrfs_extent_inline_ref_type(eb, iref);
4551                 offset = btrfs_extent_inline_ref_offset(eb, iref);
4552                 switch (type) {
4553                 case BTRFS_TREE_BLOCK_REF_KEY:
4554                         add_tree_backref(extent_cache, key.objectid,
4555                                          0, offset, 0);
4556                         break;
4557                 case BTRFS_SHARED_BLOCK_REF_KEY:
4558                         add_tree_backref(extent_cache, key.objectid,
4559                                          offset, 0, 0);
4560                         break;
4561                 case BTRFS_EXTENT_DATA_REF_KEY:
4562                         dref = (struct btrfs_extent_data_ref *)(&iref->offset);
4563                         add_data_backref(extent_cache, key.objectid, 0,
4564                                         btrfs_extent_data_ref_root(eb, dref),
4565                                         btrfs_extent_data_ref_objectid(eb,
4566                                                                        dref),
4567                                         btrfs_extent_data_ref_offset(eb, dref),
4568                                         btrfs_extent_data_ref_count(eb, dref),
4569                                         0, num_bytes);
4570                         break;
4571                 case BTRFS_SHARED_DATA_REF_KEY:
4572                         sref = (struct btrfs_shared_data_ref *)(iref + 1);
4573                         add_data_backref(extent_cache, key.objectid, offset,
4574                                         0, 0, 0,
4575                                         btrfs_shared_data_ref_count(eb, sref),
4576                                         0, num_bytes);
4577                         break;
4578                 default:
4579                         fprintf(stderr, "corrupt extent record: key %Lu %u %Lu\n",
4580                                 key.objectid, key.type, num_bytes);
4581                         goto out;
4582                 }
4583                 ptr += btrfs_extent_inline_ref_size(type);
4584         }
4585         WARN_ON(ptr > end);
4586 out:
4587         return 0;
4588 }
4589
4590 static int check_cache_range(struct btrfs_root *root,
4591                              struct btrfs_block_group_cache *cache,
4592                              u64 offset, u64 bytes)
4593 {
4594         struct btrfs_free_space *entry;
4595         u64 *logical;
4596         u64 bytenr;
4597         int stripe_len;
4598         int i, nr, ret;
4599
4600         for (i = 0; i < BTRFS_SUPER_MIRROR_MAX; i++) {
4601                 bytenr = btrfs_sb_offset(i);
4602                 ret = btrfs_rmap_block(&root->fs_info->mapping_tree,
4603                                        cache->key.objectid, bytenr, 0,
4604                                        &logical, &nr, &stripe_len);
4605                 if (ret)
4606                         return ret;
4607
4608                 while (nr--) {
4609                         if (logical[nr] + stripe_len <= offset)
4610                                 continue;
4611                         if (offset + bytes <= logical[nr])
4612                                 continue;
4613                         if (logical[nr] == offset) {
4614                                 if (stripe_len >= bytes) {
4615                                         kfree(logical);
4616                                         return 0;
4617                                 }
4618                                 bytes -= stripe_len;
4619                                 offset += stripe_len;
4620                         } else if (logical[nr] < offset) {
4621                                 if (logical[nr] + stripe_len >=
4622                                     offset + bytes) {
4623                                         kfree(logical);
4624                                         return 0;
4625                                 }
4626                                 bytes = (offset + bytes) -
4627                                         (logical[nr] + stripe_len);
4628                                 offset = logical[nr] + stripe_len;
4629                         } else {
4630                                 /*
4631                                  * Could be tricky, the super may land in the
4632                                  * middle of the area we're checking.  First
4633                                  * check the easiest case, it's at the end.
4634                                  */
4635                                 if (logical[nr] + stripe_len >=
4636                                     bytes + offset) {
4637                                         bytes = logical[nr] - offset;
4638                                         continue;
4639                                 }
4640
4641                                 /* Check the left side */
4642                                 ret = check_cache_range(root, cache,
4643                                                         offset,
4644                                                         logical[nr] - offset);
4645                                 if (ret) {
4646                                         kfree(logical);
4647                                         return ret;
4648                                 }
4649
4650                                 /* Now we continue with the right side */
4651                                 bytes = (offset + bytes) -
4652                                         (logical[nr] + stripe_len);
4653                                 offset = logical[nr] + stripe_len;
4654                         }
4655                 }
4656
4657                 kfree(logical);
4658         }
4659
4660         entry = btrfs_find_free_space(cache->free_space_ctl, offset, bytes);
4661         if (!entry) {
4662                 fprintf(stderr, "There is no free space entry for %Lu-%Lu\n",
4663                         offset, offset+bytes);
4664                 return -EINVAL;
4665         }
4666
4667         if (entry->offset != offset) {
4668                 fprintf(stderr, "Wanted offset %Lu, found %Lu\n", offset,
4669                         entry->offset);
4670                 return -EINVAL;
4671         }
4672
4673         if (entry->bytes != bytes) {
4674                 fprintf(stderr, "Wanted bytes %Lu, found %Lu for off %Lu\n",
4675                         bytes, entry->bytes, offset);
4676                 return -EINVAL;
4677         }
4678
4679         unlink_free_space(cache->free_space_ctl, entry);
4680         free(entry);
4681         return 0;
4682 }
4683
4684 static int verify_space_cache(struct btrfs_root *root,
4685                               struct btrfs_block_group_cache *cache)
4686 {
4687         struct btrfs_path *path;
4688         struct extent_buffer *leaf;
4689         struct btrfs_key key;
4690         u64 last;
4691         int ret = 0;
4692
4693         path = btrfs_alloc_path();
4694         if (!path)
4695                 return -ENOMEM;
4696
4697         root = root->fs_info->extent_root;
4698
4699         last = max_t(u64, cache->key.objectid, BTRFS_SUPER_INFO_OFFSET);
4700
4701         key.objectid = last;
4702         key.offset = 0;
4703         key.type = BTRFS_EXTENT_ITEM_KEY;
4704
4705         ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
4706         if (ret < 0)
4707                 goto out;
4708         ret = 0;
4709         while (1) {
4710                 if (path->slots[0] >= btrfs_header_nritems(path->nodes[0])) {
4711                         ret = btrfs_next_leaf(root, path);
4712                         if (ret < 0)
4713                                 goto out;
4714                         if (ret > 0) {
4715                                 ret = 0;
4716                                 break;
4717                         }
4718                 }
4719                 leaf = path->nodes[0];
4720                 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
4721                 if (key.objectid >= cache->key.offset + cache->key.objectid)
4722                         break;
4723                 if (key.type != BTRFS_EXTENT_ITEM_KEY &&
4724                     key.type != BTRFS_METADATA_ITEM_KEY) {
4725                         path->slots[0]++;
4726                         continue;
4727                 }
4728
4729                 if (last == key.objectid) {
4730                         if (key.type == BTRFS_EXTENT_ITEM_KEY)
4731                                 last = key.objectid + key.offset;
4732                         else
4733                                 last = key.objectid + root->leafsize;
4734                         path->slots[0]++;
4735                         continue;
4736                 }
4737
4738                 ret = check_cache_range(root, cache, last,
4739                                         key.objectid - last);
4740                 if (ret)
4741                         break;
4742                 if (key.type == BTRFS_EXTENT_ITEM_KEY)
4743                         last = key.objectid + key.offset;
4744                 else
4745                         last = key.objectid + root->leafsize;
4746                 path->slots[0]++;
4747         }
4748
4749         if (last < cache->key.objectid + cache->key.offset)
4750                 ret = check_cache_range(root, cache, last,
4751                                         cache->key.objectid +
4752                                         cache->key.offset - last);
4753
4754 out:
4755         btrfs_free_path(path);
4756
4757         if (!ret &&
4758             !RB_EMPTY_ROOT(&cache->free_space_ctl->free_space_offset)) {
4759                 fprintf(stderr, "There are still entries left in the space "
4760                         "cache\n");
4761                 ret = -EINVAL;
4762         }
4763
4764         return ret;
4765 }
4766
4767 static int check_space_cache(struct btrfs_root *root)
4768 {
4769         struct btrfs_block_group_cache *cache;
4770         u64 start = BTRFS_SUPER_INFO_OFFSET + BTRFS_SUPER_INFO_SIZE;
4771         int ret;
4772         int error = 0;
4773
4774         if (btrfs_super_cache_generation(root->fs_info->super_copy) != -1ULL &&
4775             btrfs_super_generation(root->fs_info->super_copy) !=
4776             btrfs_super_cache_generation(root->fs_info->super_copy)) {
4777                 printf("cache and super generation don't match, space cache "
4778                        "will be invalidated\n");
4779                 return 0;
4780         }
4781
4782         while (1) {
4783                 cache = btrfs_lookup_first_block_group(root->fs_info, start);
4784                 if (!cache)
4785                         break;
4786
4787                 start = cache->key.objectid + cache->key.offset;
4788                 if (!cache->free_space_ctl) {
4789                         if (btrfs_init_free_space_ctl(cache,
4790                                                       root->sectorsize)) {
4791                                 ret = -ENOMEM;
4792                                 break;
4793                         }
4794                 } else {
4795                         btrfs_remove_free_space_cache(cache);
4796                 }
4797
4798                 ret = load_free_space_cache(root->fs_info, cache);
4799                 if (!ret)
4800                         continue;
4801
4802                 ret = verify_space_cache(root, cache);
4803                 if (ret) {
4804                         fprintf(stderr, "cache appears valid but isnt %Lu\n",
4805                                 cache->key.objectid);
4806                         error++;
4807                 }
4808         }
4809
4810         return error ? -EINVAL : 0;
4811 }
4812
4813 static int read_extent_data(struct btrfs_root *root, char *data,
4814                         u64 logical, u64 *len, int mirror)
4815 {
4816         u64 offset = 0;
4817         struct btrfs_multi_bio *multi = NULL;
4818         struct btrfs_fs_info *info = root->fs_info;
4819         struct btrfs_device *device;
4820         int ret = 0;
4821         u64 max_len = *len;
4822
4823         ret = btrfs_map_block(&info->mapping_tree, READ, logical, len,
4824                               &multi, mirror, NULL);
4825         if (ret) {
4826                 fprintf(stderr, "Couldn't map the block %llu\n",
4827                                 logical + offset);
4828                 goto err;
4829         }
4830         device = multi->stripes[0].dev;
4831
4832         if (device->fd == 0)
4833                 goto err;
4834         if (*len > max_len)
4835                 *len = max_len;
4836
4837         ret = pread64(device->fd, data, *len, multi->stripes[0].physical);
4838         if (ret != *len)
4839                 ret = -EIO;
4840         else
4841                 ret = 0;
4842 err:
4843         kfree(multi);
4844         return ret;
4845 }
4846
4847 static int check_extent_csums(struct btrfs_root *root, u64 bytenr,
4848                         u64 num_bytes, unsigned long leaf_offset,
4849                         struct extent_buffer *eb) {
4850
4851         u64 offset = 0;
4852         u16 csum_size = btrfs_super_csum_size(root->fs_info->super_copy);
4853         char *data;
4854         unsigned long csum_offset;
4855         u32 csum;
4856         u32 csum_expected;
4857         u64 read_len;
4858         u64 data_checked = 0;
4859         u64 tmp;
4860         int ret = 0;
4861         int mirror;
4862         int num_copies;
4863
4864         if (num_bytes % root->sectorsize)
4865                 return -EINVAL;
4866
4867         data = malloc(num_bytes);
4868         if (!data)
4869                 return -ENOMEM;
4870
4871         while (offset < num_bytes) {
4872                 mirror = 0;
4873 again:
4874                 read_len = num_bytes - offset;
4875                 /* read as much space once a time */
4876                 ret = read_extent_data(root, data + offset,
4877                                 bytenr + offset, &read_len, mirror);
4878                 if (ret)
4879                         goto out;
4880                 data_checked = 0;
4881                 /* verify every 4k data's checksum */
4882                 while (data_checked < read_len) {
4883                         csum = ~(u32)0;
4884                         tmp = offset + data_checked;
4885
4886                         csum = btrfs_csum_data(NULL, (char *)data + tmp,
4887                                                csum, root->sectorsize);
4888                         btrfs_csum_final(csum, (char *)&csum);
4889
4890                         csum_offset = leaf_offset +
4891                                  tmp / root->sectorsize * csum_size;
4892                         read_extent_buffer(eb, (char *)&csum_expected,
4893                                            csum_offset, csum_size);
4894                         /* try another mirror */
4895                         if (csum != csum_expected) {
4896                                 fprintf(stderr, "mirror %d bytenr %llu csum %u expected csum %u\n",
4897                                                 mirror, bytenr + tmp,
4898                                                 csum, csum_expected);
4899                                 num_copies = btrfs_num_copies(
4900                                                 &root->fs_info->mapping_tree,
4901                                                 bytenr, num_bytes);
4902                                 if (mirror < num_copies - 1) {
4903                                         mirror += 1;
4904                                         goto again;
4905                                 }
4906                         }
4907                         data_checked += root->sectorsize;
4908                 }
4909                 offset += read_len;
4910         }
4911 out:
4912         free(data);
4913         return ret;
4914 }
4915
4916 static int check_extent_exists(struct btrfs_root *root, u64 bytenr,
4917                                u64 num_bytes)
4918 {
4919         struct btrfs_path *path;
4920         struct extent_buffer *leaf;
4921         struct btrfs_key key;
4922         int ret;
4923
4924         path = btrfs_alloc_path();
4925         if (!path) {
4926                 fprintf(stderr, "Error allocing path\n");
4927                 return -ENOMEM;
4928         }
4929
4930         key.objectid = bytenr;
4931         key.type = BTRFS_EXTENT_ITEM_KEY;
4932         key.offset = (u64)-1;
4933
4934 again:
4935         ret = btrfs_search_slot(NULL, root->fs_info->extent_root, &key, path,
4936                                 0, 0);
4937         if (ret < 0) {
4938                 fprintf(stderr, "Error looking up extent record %d\n", ret);
4939                 btrfs_free_path(path);
4940                 return ret;
4941         } else if (ret) {
4942                 if (path->slots[0] > 0) {
4943                         path->slots[0]--;
4944                 } else {
4945                         ret = btrfs_prev_leaf(root, path);
4946                         if (ret < 0) {
4947                                 goto out;
4948                         } else if (ret > 0) {
4949                                 ret = 0;
4950                                 goto out;
4951                         }
4952                 }
4953         }
4954
4955         btrfs_item_key_to_cpu(path->nodes[0], &key, path->slots[0]);
4956
4957         /*
4958          * Block group items come before extent items if they have the same
4959          * bytenr, so walk back one more just in case.  Dear future traveler,
4960          * first congrats on mastering time travel.  Now if it's not too much
4961          * trouble could you go back to 2006 and tell Chris to make the
4962          * BLOCK_GROUP_ITEM_KEY (and BTRFS_*_REF_KEY) lower than the
4963          * EXTENT_ITEM_KEY please?
4964          */
4965         while (key.type > BTRFS_EXTENT_ITEM_KEY) {
4966                 if (path->slots[0] > 0) {
4967                         path->slots[0]--;
4968                 } else {
4969                         ret = btrfs_prev_leaf(root, path);
4970                         if (ret < 0) {
4971                                 goto out;
4972                         } else if (ret > 0) {
4973                                 ret = 0;
4974                                 goto out;
4975                         }
4976                 }
4977                 btrfs_item_key_to_cpu(path->nodes[0], &key, path->slots[0]);
4978         }
4979
4980         while (num_bytes) {
4981                 if (path->slots[0] >= btrfs_header_nritems(path->nodes[0])) {
4982                         ret = btrfs_next_leaf(root, path);
4983                         if (ret < 0) {
4984                                 fprintf(stderr, "Error going to next leaf "
4985                                         "%d\n", ret);
4986                                 btrfs_free_path(path);
4987                                 return ret;
4988                         } else if (ret) {
4989                                 break;
4990                         }
4991                 }
4992                 leaf = path->nodes[0];
4993                 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
4994                 if (key.type != BTRFS_EXTENT_ITEM_KEY) {
4995                         path->slots[0]++;
4996                         continue;
4997                 }
4998                 if (key.objectid + key.offset < bytenr) {
4999                         path->slots[0]++;
5000                         continue;
5001                 }
5002                 if (key.objectid > bytenr + num_bytes)
5003                         break;
5004
5005                 if (key.objectid == bytenr) {
5006                         if (key.offset >= num_bytes) {
5007                                 num_bytes = 0;
5008                                 break;
5009                         }
5010                         num_bytes -= key.offset;
5011                         bytenr += key.offset;
5012                 } else if (key.objectid < bytenr) {
5013                         if (key.objectid + key.offset >= bytenr + num_bytes) {
5014                                 num_bytes = 0;
5015                                 break;
5016                         }
5017                         num_bytes = (bytenr + num_bytes) -
5018                                 (key.objectid + key.offset);
5019                         bytenr = key.objectid + key.offset;
5020                 } else {
5021                         if (key.objectid + key.offset < bytenr + num_bytes) {
5022                                 u64 new_start = key.objectid + key.offset;
5023                                 u64 new_bytes = bytenr + num_bytes - new_start;
5024
5025                                 /*
5026                                  * Weird case, the extent is in the middle of
5027                                  * our range, we'll have to search one side
5028                                  * and then the other.  Not sure if this happens
5029                                  * in real life, but no harm in coding it up
5030                                  * anyway just in case.
5031                                  */
5032                                 btrfs_release_path(path);
5033                                 ret = check_extent_exists(root, new_start,
5034                                                           new_bytes);
5035                                 if (ret) {
5036                                         fprintf(stderr, "Right section didn't "
5037                                                 "have a record\n");
5038                                         break;
5039                                 }
5040                                 num_bytes = key.objectid - bytenr;
5041                                 goto again;
5042                         }
5043                         num_bytes = key.objectid - bytenr;
5044                 }
5045                 path->slots[0]++;
5046         }
5047         ret = 0;
5048
5049 out:
5050         if (num_bytes && !ret) {
5051                 fprintf(stderr, "There are no extents for csum range "
5052                         "%Lu-%Lu\n", bytenr, bytenr+num_bytes);
5053                 ret = 1;
5054         }
5055
5056         btrfs_free_path(path);
5057         return ret;
5058 }
5059
5060 static int check_csums(struct btrfs_root *root)
5061 {
5062         struct btrfs_path *path;
5063         struct extent_buffer *leaf;
5064         struct btrfs_key key;
5065         u64 offset = 0, num_bytes = 0;
5066         u16 csum_size = btrfs_super_csum_size(root->fs_info->super_copy);
5067         int errors = 0;
5068         int ret;
5069         u64 data_len;
5070         unsigned long leaf_offset;
5071
5072         root = root->fs_info->csum_root;
5073         if (!extent_buffer_uptodate(root->node)) {
5074                 fprintf(stderr, "No valid csum tree found\n");
5075                 return -ENOENT;
5076         }
5077
5078         key.objectid = BTRFS_EXTENT_CSUM_OBJECTID;
5079         key.type = BTRFS_EXTENT_CSUM_KEY;
5080         key.offset = 0;
5081
5082         path = btrfs_alloc_path();
5083         if (!path)
5084                 return -ENOMEM;
5085
5086         ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
5087         if (ret < 0) {
5088                 fprintf(stderr, "Error searching csum tree %d\n", ret);
5089                 btrfs_free_path(path);
5090                 return ret;
5091         }
5092
5093         if (ret > 0 && path->slots[0])
5094                 path->slots[0]--;
5095         ret = 0;
5096
5097         while (1) {
5098                 if (path->slots[0] >= btrfs_header_nritems(path->nodes[0])) {
5099                         ret = btrfs_next_leaf(root, path);
5100                         if (ret < 0) {
5101                                 fprintf(stderr, "Error going to next leaf "
5102                                         "%d\n", ret);
5103                                 break;
5104                         }
5105                         if (ret)
5106                                 break;
5107                 }
5108                 leaf = path->nodes[0];
5109
5110                 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
5111                 if (key.type != BTRFS_EXTENT_CSUM_KEY) {
5112                         path->slots[0]++;
5113                         continue;
5114                 }
5115
5116                 data_len = (btrfs_item_size_nr(leaf, path->slots[0]) /
5117                               csum_size) * root->sectorsize;
5118                 if (!check_data_csum)
5119                         goto skip_csum_check;
5120                 leaf_offset = btrfs_item_ptr_offset(leaf, path->slots[0]);
5121                 ret = check_extent_csums(root, key.offset, data_len,
5122                                          leaf_offset, leaf);
5123                 if (ret)
5124                         break;
5125 skip_csum_check:
5126                 if (!num_bytes) {
5127                         offset = key.offset;
5128                 } else if (key.offset != offset + num_bytes) {
5129                         ret = check_extent_exists(root, offset, num_bytes);
5130                         if (ret) {
5131                                 fprintf(stderr, "Csum exists for %Lu-%Lu but "
5132                                         "there is no extent record\n",
5133                                         offset, offset+num_bytes);
5134                                 errors++;
5135                         }
5136                         offset = key.offset;
5137                         num_bytes = 0;
5138                 }
5139                 num_bytes += data_len;
5140                 path->slots[0]++;
5141         }
5142
5143         btrfs_free_path(path);
5144         return errors;
5145 }
5146
5147 static int is_dropped_key(struct btrfs_key *key,
5148                           struct btrfs_key *drop_key) {
5149         if (key->objectid < drop_key->objectid)
5150                 return 1;
5151         else if (key->objectid == drop_key->objectid) {
5152                 if (key->type < drop_key->type)
5153                         return 1;
5154                 else if (key->type == drop_key->type) {
5155                         if (key->offset < drop_key->offset)
5156                                 return 1;
5157                 }
5158         }
5159         return 0;
5160 }
5161
5162 static int calc_extent_flag(struct btrfs_root *root,
5163                            struct cache_tree *extent_cache,
5164                            struct extent_buffer *buf,
5165                            struct root_item_record *ri,
5166                            u64 *flags)
5167 {
5168         int i;
5169         int nritems = btrfs_header_nritems(buf);
5170         struct btrfs_key key;
5171         struct extent_record *rec;
5172         struct cache_extent *cache;
5173         struct data_backref *dback;
5174         struct tree_backref *tback;
5175         struct extent_buffer *new_buf;
5176         u64 owner = 0;
5177         u64 bytenr;
5178         u64 offset;
5179         u64 ptr;
5180         int size;
5181         int ret;
5182         u8 level;
5183
5184         /*
5185          * Except file/reloc tree, we can not have
5186          * FULL BACKREF MODE
5187          */
5188         if (ri->objectid < BTRFS_FIRST_FREE_OBJECTID)
5189                 goto normal;
5190         /*
5191          * root node
5192          */
5193         if (buf->start == ri->bytenr)
5194                 goto normal;
5195         if (btrfs_is_leaf(buf)) {
5196                 /*
5197                  * we are searching from original root, world
5198                  * peace is achieved, we use normal backref.
5199                  */
5200                 owner = btrfs_header_owner(buf);
5201                 if (owner == ri->objectid)
5202                         goto normal;
5203                 /*
5204                  * we check every eb here, and if any of
5205                  * eb dosen't have original root refers
5206                  * to this eb, we set full backref flag for
5207                  * this extent, otherwise normal backref.
5208                  */
5209                 for (i = 0; i < nritems; i++) {
5210                         struct btrfs_file_extent_item *fi;
5211                         btrfs_item_key_to_cpu(buf, &key, i);
5212
5213                         if (key.type != BTRFS_EXTENT_DATA_KEY)
5214                                 continue;
5215                         fi = btrfs_item_ptr(buf, i,
5216                                             struct btrfs_file_extent_item);
5217                         if (btrfs_file_extent_type(buf, fi) ==
5218                             BTRFS_FILE_EXTENT_INLINE)
5219                                 continue;
5220                         if (btrfs_file_extent_disk_bytenr(buf, fi) == 0)
5221                                 continue;
5222                         bytenr = btrfs_file_extent_disk_bytenr(buf, fi);
5223                         cache = lookup_cache_extent(extent_cache, bytenr, 1);
5224                         if (!cache)
5225                                 goto full_backref;
5226                         offset = btrfs_file_extent_offset(buf, fi);
5227                         rec = container_of(cache, struct extent_record, cache);
5228                         dback = find_data_backref(rec, 0, ri->objectid, owner,
5229                                         key.offset - offset, 1, bytenr, bytenr);
5230                         if (!dback)
5231                                 goto full_backref;
5232                 }
5233                 goto full_backref;
5234         } else {
5235                 level = btrfs_header_level(buf);
5236                 for (i = 0; i < nritems; i++) {
5237                         ptr = btrfs_node_blockptr(buf, i);
5238                         size = btrfs_level_size(root, level);
5239                         if (i == 0) {
5240                                 new_buf = read_tree_block(root, ptr, size, 0);
5241                                 if (!extent_buffer_uptodate(new_buf)) {
5242                                         free_extent_buffer(new_buf);
5243                                         ret = -EIO;
5244                                         return ret;
5245                                 }
5246                                 /*
5247                                  * we are searching from origin root, world
5248                                  * peace is achieved, we use normal backref.
5249                                  */
5250                                 owner = btrfs_header_owner(new_buf);
5251                                 free_extent_buffer(new_buf);
5252                                 if (owner == ri->objectid)
5253                                         goto normal;
5254                         }
5255                         cache = lookup_cache_extent(extent_cache, ptr, size);
5256                         if (!cache)
5257                                 goto full_backref;
5258                         rec = container_of(cache, struct extent_record, cache);
5259                         tback = find_tree_backref(rec, 0, owner);
5260                         if (!tback)
5261                                 goto full_backref;
5262                 }
5263
5264         }
5265 normal:
5266         *flags = 0;
5267         cache = lookup_cache_extent(extent_cache, buf->start, 1);
5268         /* we have added this extent before */
5269         BUG_ON(!cache);
5270         rec = container_of(cache, struct extent_record, cache);
5271         rec->flag_block_full_backref = 0;
5272         return 0;
5273 full_backref:
5274         *flags |= BTRFS_BLOCK_FLAG_FULL_BACKREF;
5275         cache = lookup_cache_extent(extent_cache, buf->start, 1);
5276         /* we have added this extent before */
5277         BUG_ON(!cache);
5278         rec = container_of(cache, struct extent_record, cache);
5279         rec->flag_block_full_backref = 1;
5280         return 0;
5281 }
5282
5283 static int run_next_block(struct btrfs_trans_handle *trans,
5284                           struct btrfs_root *root,
5285                           struct block_info *bits,
5286                           int bits_nr,
5287                           u64 *last,
5288                           struct cache_tree *pending,
5289                           struct cache_tree *seen,
5290                           struct cache_tree *reada,
5291                           struct cache_tree *nodes,
5292                           struct cache_tree *extent_cache,
5293                           struct cache_tree *chunk_cache,
5294                           struct rb_root *dev_cache,
5295                           struct block_group_tree *block_group_cache,
5296                           struct device_extent_tree *dev_extent_cache,
5297                           struct root_item_record *ri)
5298 {
5299         struct extent_buffer *buf;
5300         u64 bytenr;
5301         u32 size;
5302         u64 parent;
5303         u64 owner;
5304         u64 flags;
5305         u64 ptr;
5306         u64 gen = 0;
5307         int ret = 0;
5308         int i;
5309         int nritems;
5310         struct btrfs_key key;
5311         struct cache_extent *cache;
5312         int reada_bits;
5313
5314         nritems = pick_next_pending(pending, reada, nodes, *last, bits,
5315                                     bits_nr, &reada_bits);
5316         if (nritems == 0)
5317                 return 1;
5318
5319         if (!reada_bits) {
5320                 for(i = 0; i < nritems; i++) {
5321                         ret = add_cache_extent(reada, bits[i].start,
5322                                                bits[i].size);
5323                         if (ret == -EEXIST)
5324                                 continue;
5325
5326                         /* fixme, get the parent transid */
5327                         readahead_tree_block(root, bits[i].start,
5328                                              bits[i].size, 0);
5329                 }
5330         }
5331         *last = bits[0].start;
5332         bytenr = bits[0].start;
5333         size = bits[0].size;
5334
5335         cache = lookup_cache_extent(pending, bytenr, size);
5336         if (cache) {
5337                 remove_cache_extent(pending, cache);
5338                 free(cache);
5339         }
5340         cache = lookup_cache_extent(reada, bytenr, size);
5341         if (cache) {
5342                 remove_cache_extent(reada, cache);
5343                 free(cache);
5344         }
5345         cache = lookup_cache_extent(nodes, bytenr, size);
5346         if (cache) {
5347                 remove_cache_extent(nodes, cache);
5348                 free(cache);
5349         }
5350         cache = lookup_cache_extent(extent_cache, bytenr, size);
5351         if (cache) {
5352                 struct extent_record *rec;
5353
5354                 rec = container_of(cache, struct extent_record, cache);
5355                 gen = rec->parent_generation;
5356         }
5357
5358         /* fixme, get the real parent transid */
5359         buf = read_tree_block(root, bytenr, size, gen);
5360         if (!extent_buffer_uptodate(buf)) {
5361                 record_bad_block_io(root->fs_info,
5362                                     extent_cache, bytenr, size);
5363                 goto out;
5364         }
5365
5366         nritems = btrfs_header_nritems(buf);
5367
5368         /*
5369          * FIXME, this only works only if we don't have any full
5370          * backref mode.
5371          */
5372         if (!init_extent_tree) {
5373                 ret = btrfs_lookup_extent_info(NULL, root, bytenr,
5374                                        btrfs_header_level(buf), 1, NULL,
5375                                        &flags);
5376                 if (ret < 0)
5377                         goto out;
5378         } else {
5379                 flags = 0;
5380                 ret = calc_extent_flag(root, extent_cache, buf, ri, &flags);
5381                 if (ret < 0)
5382                         goto out;
5383         }
5384
5385         if (flags & BTRFS_BLOCK_FLAG_FULL_BACKREF) {
5386                 parent = bytenr;
5387                 owner = 0;
5388         } else {
5389                 parent = 0;
5390                 owner = btrfs_header_owner(buf);
5391         }
5392
5393         ret = check_block(trans, root, extent_cache, buf, flags);
5394         if (ret)
5395                 goto out;
5396
5397         if (btrfs_is_leaf(buf)) {
5398                 btree_space_waste += btrfs_leaf_free_space(root, buf);
5399                 for (i = 0; i < nritems; i++) {
5400                         struct btrfs_file_extent_item *fi;
5401                         btrfs_item_key_to_cpu(buf, &key, i);
5402                         if (key.type == BTRFS_EXTENT_ITEM_KEY) {
5403                                 process_extent_item(root, extent_cache, buf,
5404                                                     i);
5405                                 continue;
5406                         }
5407                         if (key.type == BTRFS_METADATA_ITEM_KEY) {
5408                                 process_extent_item(root, extent_cache, buf,
5409                                                     i);
5410                                 continue;
5411                         }
5412                         if (key.type == BTRFS_EXTENT_CSUM_KEY) {
5413                                 total_csum_bytes +=
5414                                         btrfs_item_size_nr(buf, i);
5415                                 continue;
5416                         }
5417                         if (key.type == BTRFS_CHUNK_ITEM_KEY) {
5418                                 process_chunk_item(chunk_cache, &key, buf, i);
5419                                 continue;
5420                         }
5421                         if (key.type == BTRFS_DEV_ITEM_KEY) {
5422                                 process_device_item(dev_cache, &key, buf, i);
5423                                 continue;
5424                         }
5425                         if (key.type == BTRFS_BLOCK_GROUP_ITEM_KEY) {
5426                                 process_block_group_item(block_group_cache,
5427                                         &key, buf, i);
5428                                 continue;
5429                         }
5430                         if (key.type == BTRFS_DEV_EXTENT_KEY) {
5431                                 process_device_extent_item(dev_extent_cache,
5432                                         &key, buf, i);
5433                                 continue;
5434
5435                         }
5436                         if (key.type == BTRFS_EXTENT_REF_V0_KEY) {
5437 #ifdef BTRFS_COMPAT_EXTENT_TREE_V0
5438                                 process_extent_ref_v0(extent_cache, buf, i);
5439 #else
5440                                 BUG();
5441 #endif
5442                                 continue;
5443                         }
5444
5445                         if (key.type == BTRFS_TREE_BLOCK_REF_KEY) {
5446                                 add_tree_backref(extent_cache, key.objectid, 0,
5447                                                  key.offset, 0);
5448                                 continue;
5449                         }
5450                         if (key.type == BTRFS_SHARED_BLOCK_REF_KEY) {
5451                                 add_tree_backref(extent_cache, key.objectid,
5452                                                  key.offset, 0, 0);
5453                                 continue;
5454                         }
5455                         if (key.type == BTRFS_EXTENT_DATA_REF_KEY) {
5456                                 struct btrfs_extent_data_ref *ref;
5457                                 ref = btrfs_item_ptr(buf, i,
5458                                                 struct btrfs_extent_data_ref);
5459                                 add_data_backref(extent_cache,
5460                                         key.objectid, 0,
5461                                         btrfs_extent_data_ref_root(buf, ref),
5462                                         btrfs_extent_data_ref_objectid(buf,
5463                                                                        ref),
5464                                         btrfs_extent_data_ref_offset(buf, ref),
5465                                         btrfs_extent_data_ref_count(buf, ref),
5466                                         0, root->sectorsize);
5467                                 continue;
5468                         }
5469                         if (key.type == BTRFS_SHARED_DATA_REF_KEY) {
5470                                 struct btrfs_shared_data_ref *ref;
5471                                 ref = btrfs_item_ptr(buf, i,
5472                                                 struct btrfs_shared_data_ref);
5473                                 add_data_backref(extent_cache,
5474                                         key.objectid, key.offset, 0, 0, 0,
5475                                         btrfs_shared_data_ref_count(buf, ref),
5476                                         0, root->sectorsize);
5477                                 continue;
5478                         }
5479                         if (key.type == BTRFS_ORPHAN_ITEM_KEY) {
5480                                 struct bad_item *bad;
5481
5482                                 if (key.objectid == BTRFS_ORPHAN_OBJECTID)
5483                                         continue;
5484                                 if (!owner)
5485                                         continue;
5486                                 bad = malloc(sizeof(struct bad_item));
5487                                 if (!bad)
5488                                         continue;
5489                                 INIT_LIST_HEAD(&bad->list);
5490                                 memcpy(&bad->key, &key,
5491                                        sizeof(struct btrfs_key));
5492                                 bad->root_id = owner;
5493                                 list_add_tail(&bad->list, &delete_items);
5494                                 continue;
5495                         }
5496                         if (key.type != BTRFS_EXTENT_DATA_KEY)
5497                                 continue;
5498                         fi = btrfs_item_ptr(buf, i,
5499                                             struct btrfs_file_extent_item);
5500                         if (btrfs_file_extent_type(buf, fi) ==
5501                             BTRFS_FILE_EXTENT_INLINE)
5502                                 continue;
5503                         if (btrfs_file_extent_disk_bytenr(buf, fi) == 0)
5504                                 continue;
5505
5506                         data_bytes_allocated +=
5507                                 btrfs_file_extent_disk_num_bytes(buf, fi);
5508                         if (data_bytes_allocated < root->sectorsize) {
5509                                 abort();
5510                         }
5511                         data_bytes_referenced +=
5512                                 btrfs_file_extent_num_bytes(buf, fi);
5513                         add_data_backref(extent_cache,
5514                                 btrfs_file_extent_disk_bytenr(buf, fi),
5515                                 parent, owner, key.objectid, key.offset -
5516                                 btrfs_file_extent_offset(buf, fi), 1, 1,
5517                                 btrfs_file_extent_disk_num_bytes(buf, fi));
5518                 }
5519         } else {
5520                 int level;
5521                 struct btrfs_key first_key;
5522
5523                 first_key.objectid = 0;
5524
5525                 if (nritems > 0)
5526                         btrfs_item_key_to_cpu(buf, &first_key, 0);
5527                 level = btrfs_header_level(buf);
5528                 for (i = 0; i < nritems; i++) {
5529                         ptr = btrfs_node_blockptr(buf, i);
5530                         size = btrfs_level_size(root, level - 1);
5531                         btrfs_node_key_to_cpu(buf, &key, i);
5532                         if (ri != NULL) {
5533                                 if ((level == ri->drop_level)
5534                                     && is_dropped_key(&key, &ri->drop_key)) {
5535                                         continue;
5536                                 }
5537                         }
5538                         ret = add_extent_rec(extent_cache, &key,
5539                                              btrfs_node_ptr_generation(buf, i),
5540                                              ptr, size, 0, 0, 1, 0, 1, 0,
5541                                              size);
5542                         BUG_ON(ret);
5543
5544                         add_tree_backref(extent_cache, ptr, parent, owner, 1);
5545
5546                         if (level > 1) {
5547                                 add_pending(nodes, seen, ptr, size);
5548                         } else {
5549                                 add_pending(pending, seen, ptr, size);
5550                         }
5551                 }
5552                 btree_space_waste += (BTRFS_NODEPTRS_PER_BLOCK(root) -
5553                                       nritems) * sizeof(struct btrfs_key_ptr);
5554         }
5555         total_btree_bytes += buf->len;
5556         if (fs_root_objectid(btrfs_header_owner(buf)))
5557                 total_fs_tree_bytes += buf->len;
5558         if (btrfs_header_owner(buf) == BTRFS_EXTENT_TREE_OBJECTID)
5559                 total_extent_tree_bytes += buf->len;
5560         if (!found_old_backref &&
5561             btrfs_header_owner(buf) == BTRFS_TREE_RELOC_OBJECTID &&
5562             btrfs_header_backref_rev(buf) == BTRFS_MIXED_BACKREF_REV &&
5563             !btrfs_header_flag(buf, BTRFS_HEADER_FLAG_RELOC))
5564                 found_old_backref = 1;
5565 out:
5566         free_extent_buffer(buf);
5567         return ret;
5568 }
5569
5570 static int add_root_to_pending(struct extent_buffer *buf,
5571                                struct cache_tree *extent_cache,
5572                                struct cache_tree *pending,
5573                                struct cache_tree *seen,
5574                                struct cache_tree *nodes,
5575                                u64 objectid)
5576 {
5577         if (btrfs_header_level(buf) > 0)
5578                 add_pending(nodes, seen, buf->start, buf->len);
5579         else
5580                 add_pending(pending, seen, buf->start, buf->len);
5581         add_extent_rec(extent_cache, NULL, 0, buf->start, buf->len,
5582                        0, 1, 1, 0, 1, 0, buf->len);
5583
5584         if (objectid == BTRFS_TREE_RELOC_OBJECTID ||
5585             btrfs_header_backref_rev(buf) < BTRFS_MIXED_BACKREF_REV)
5586                 add_tree_backref(extent_cache, buf->start, buf->start,
5587                                  0, 1);
5588         else
5589                 add_tree_backref(extent_cache, buf->start, 0, objectid, 1);
5590         return 0;
5591 }
5592
5593 /* as we fix the tree, we might be deleting blocks that
5594  * we're tracking for repair.  This hook makes sure we
5595  * remove any backrefs for blocks as we are fixing them.
5596  */
5597 static int free_extent_hook(struct btrfs_trans_handle *trans,
5598                             struct btrfs_root *root,
5599                             u64 bytenr, u64 num_bytes, u64 parent,
5600                             u64 root_objectid, u64 owner, u64 offset,
5601                             int refs_to_drop)
5602 {
5603         struct extent_record *rec;
5604         struct cache_extent *cache;
5605         int is_data;
5606         struct cache_tree *extent_cache = root->fs_info->fsck_extent_cache;
5607
5608         is_data = owner >= BTRFS_FIRST_FREE_OBJECTID;
5609         cache = lookup_cache_extent(extent_cache, bytenr, num_bytes);
5610         if (!cache)
5611                 return 0;
5612
5613         rec = container_of(cache, struct extent_record, cache);
5614         if (is_data) {
5615                 struct data_backref *back;
5616                 back = find_data_backref(rec, parent, root_objectid, owner,
5617                                          offset, 1, bytenr, num_bytes);
5618                 if (!back)
5619                         goto out;
5620                 if (back->node.found_ref) {
5621                         back->found_ref -= refs_to_drop;
5622                         if (rec->refs)
5623                                 rec->refs -= refs_to_drop;
5624                 }
5625                 if (back->node.found_extent_tree) {
5626                         back->num_refs -= refs_to_drop;
5627                         if (rec->extent_item_refs)
5628                                 rec->extent_item_refs -= refs_to_drop;
5629                 }
5630                 if (back->found_ref == 0)
5631                         back->node.found_ref = 0;
5632                 if (back->num_refs == 0)
5633                         back->node.found_extent_tree = 0;
5634
5635                 if (!back->node.found_extent_tree && back->node.found_ref) {
5636                         list_del(&back->node.list);
5637                         free(back);
5638                 }
5639         } else {
5640                 struct tree_backref *back;
5641                 back = find_tree_backref(rec, parent, root_objectid);
5642                 if (!back)
5643                         goto out;
5644                 if (back->node.found_ref) {
5645                         if (rec->refs)
5646                                 rec->refs--;
5647                         back->node.found_ref = 0;
5648                 }
5649                 if (back->node.found_extent_tree) {
5650                         if (rec->extent_item_refs)
5651                                 rec->extent_item_refs--;
5652                         back->node.found_extent_tree = 0;
5653                 }
5654                 if (!back->node.found_extent_tree && back->node.found_ref) {
5655                         list_del(&back->node.list);
5656                         free(back);
5657                 }
5658         }
5659         maybe_free_extent_rec(extent_cache, rec);
5660 out:
5661         return 0;
5662 }
5663
5664 static int delete_extent_records(struct btrfs_trans_handle *trans,
5665                                  struct btrfs_root *root,
5666                                  struct btrfs_path *path,
5667                                  u64 bytenr, u64 new_len)
5668 {
5669         struct btrfs_key key;
5670         struct btrfs_key found_key;
5671         struct extent_buffer *leaf;
5672         int ret;
5673         int slot;
5674
5675
5676         key.objectid = bytenr;
5677         key.type = (u8)-1;
5678         key.offset = (u64)-1;
5679
5680         while(1) {
5681                 ret = btrfs_search_slot(trans, root->fs_info->extent_root,
5682                                         &key, path, 0, 1);
5683                 if (ret < 0)
5684                         break;
5685
5686                 if (ret > 0) {
5687                         ret = 0;
5688                         if (path->slots[0] == 0)
5689                                 break;
5690                         path->slots[0]--;
5691                 }
5692                 ret = 0;
5693
5694                 leaf = path->nodes[0];
5695                 slot = path->slots[0];
5696
5697                 btrfs_item_key_to_cpu(leaf, &found_key, slot);
5698                 if (found_key.objectid != bytenr)
5699                         break;
5700
5701                 if (found_key.type != BTRFS_EXTENT_ITEM_KEY &&
5702                     found_key.type != BTRFS_METADATA_ITEM_KEY &&
5703                     found_key.type != BTRFS_TREE_BLOCK_REF_KEY &&
5704                     found_key.type != BTRFS_EXTENT_DATA_REF_KEY &&
5705                     found_key.type != BTRFS_EXTENT_REF_V0_KEY &&
5706                     found_key.type != BTRFS_SHARED_BLOCK_REF_KEY &&
5707                     found_key.type != BTRFS_SHARED_DATA_REF_KEY) {
5708                         btrfs_release_path(path);
5709                         if (found_key.type == 0) {
5710                                 if (found_key.offset == 0)
5711                                         break;
5712                                 key.offset = found_key.offset - 1;
5713                                 key.type = found_key.type;
5714                         }
5715                         key.type = found_key.type - 1;
5716                         key.offset = (u64)-1;
5717                         continue;
5718                 }
5719
5720                 fprintf(stderr, "repair deleting extent record: key %Lu %u %Lu\n",
5721                         found_key.objectid, found_key.type, found_key.offset);
5722
5723                 ret = btrfs_del_item(trans, root->fs_info->extent_root, path);
5724                 if (ret)
5725                         break;
5726                 btrfs_release_path(path);
5727
5728                 if (found_key.type == BTRFS_EXTENT_ITEM_KEY ||
5729                     found_key.type == BTRFS_METADATA_ITEM_KEY) {
5730                         u64 bytes = (found_key.type == BTRFS_EXTENT_ITEM_KEY) ?
5731                                 found_key.offset : root->leafsize;
5732
5733                         ret = btrfs_update_block_group(trans, root, bytenr,
5734                                                        bytes, 0, 0);
5735                         if (ret)
5736                                 break;
5737                 }
5738         }
5739
5740         btrfs_release_path(path);
5741         return ret;
5742 }
5743
5744 /*
5745  * for a single backref, this will allocate a new extent
5746  * and add the backref to it.
5747  */
5748 static int record_extent(struct btrfs_trans_handle *trans,
5749                          struct btrfs_fs_info *info,
5750                          struct btrfs_path *path,
5751                          struct extent_record *rec,
5752                          struct extent_backref *back,
5753                          int allocated, u64 flags)
5754 {
5755         int ret;
5756         struct btrfs_root *extent_root = info->extent_root;
5757         struct extent_buffer *leaf;
5758         struct btrfs_key ins_key;
5759         struct btrfs_extent_item *ei;
5760         struct tree_backref *tback;
5761         struct data_backref *dback;
5762         struct btrfs_tree_block_info *bi;
5763
5764         if (!back->is_data)
5765                 rec->max_size = max_t(u64, rec->max_size,
5766                                     info->extent_root->leafsize);
5767
5768         if (!allocated) {
5769                 u32 item_size = sizeof(*ei);
5770
5771                 if (!back->is_data)
5772                         item_size += sizeof(*bi);
5773
5774                 ins_key.objectid = rec->start;
5775                 ins_key.offset = rec->max_size;
5776                 ins_key.type = BTRFS_EXTENT_ITEM_KEY;
5777
5778                 ret = btrfs_insert_empty_item(trans, extent_root, path,
5779                                         &ins_key, item_size);
5780                 if (ret)
5781                         goto fail;
5782
5783                 leaf = path->nodes[0];
5784                 ei = btrfs_item_ptr(leaf, path->slots[0],
5785                                     struct btrfs_extent_item);
5786
5787                 btrfs_set_extent_refs(leaf, ei, 0);
5788                 btrfs_set_extent_generation(leaf, ei, rec->generation);
5789
5790                 if (back->is_data) {
5791                         btrfs_set_extent_flags(leaf, ei,
5792                                                BTRFS_EXTENT_FLAG_DATA);
5793                 } else {
5794                         struct btrfs_disk_key copy_key;;
5795
5796                         tback = (struct tree_backref *)back;
5797                         bi = (struct btrfs_tree_block_info *)(ei + 1);
5798                         memset_extent_buffer(leaf, 0, (unsigned long)bi,
5799                                              sizeof(*bi));
5800
5801                         btrfs_set_disk_key_objectid(&copy_key,
5802                                                     rec->info_objectid);
5803                         btrfs_set_disk_key_type(&copy_key, 0);
5804                         btrfs_set_disk_key_offset(&copy_key, 0);
5805
5806                         btrfs_set_tree_block_level(leaf, bi, rec->info_level);
5807                         btrfs_set_tree_block_key(leaf, bi, &copy_key);
5808
5809                         btrfs_set_extent_flags(leaf, ei,
5810                                                BTRFS_EXTENT_FLAG_TREE_BLOCK | flags);
5811                 }
5812
5813                 btrfs_mark_buffer_dirty(leaf);
5814                 ret = btrfs_update_block_group(trans, extent_root, rec->start,
5815                                                rec->max_size, 1, 0);
5816                 if (ret)
5817                         goto fail;
5818                 btrfs_release_path(path);
5819         }
5820
5821         if (back->is_data) {
5822                 u64 parent;
5823                 int i;
5824
5825                 dback = (struct data_backref *)back;
5826                 if (back->full_backref)
5827                         parent = dback->parent;
5828                 else
5829                         parent = 0;
5830
5831                 for (i = 0; i < dback->found_ref; i++) {
5832                         /* if parent != 0, we're doing a full backref
5833                          * passing BTRFS_FIRST_FREE_OBJECTID as the owner
5834                          * just makes the backref allocator create a data
5835                          * backref
5836                          */
5837                         ret = btrfs_inc_extent_ref(trans, info->extent_root,
5838                                                    rec->start, rec->max_size,
5839                                                    parent,
5840                                                    dback->root,
5841                                                    parent ?
5842                                                    BTRFS_FIRST_FREE_OBJECTID :
5843                                                    dback->owner,
5844                                                    dback->offset);
5845                         if (ret)
5846                                 break;
5847                 }
5848                 fprintf(stderr, "adding new data backref"
5849                                 " on %llu %s %llu owner %llu"
5850                                 " offset %llu found %d\n",
5851                                 (unsigned long long)rec->start,
5852                                 back->full_backref ?
5853                                 "parent" : "root",
5854                                 back->full_backref ?
5855                                 (unsigned long long)parent :
5856                                 (unsigned long long)dback->root,
5857                                 (unsigned long long)dback->owner,
5858                                 (unsigned long long)dback->offset,
5859                                 dback->found_ref);
5860         } else {
5861                 u64 parent;
5862
5863                 tback = (struct tree_backref *)back;
5864                 if (back->full_backref)
5865                         parent = tback->parent;
5866                 else
5867                         parent = 0;
5868
5869                 ret = btrfs_inc_extent_ref(trans, info->extent_root,
5870                                            rec->start, rec->max_size,
5871                                            parent, tback->root, 0, 0);
5872                 fprintf(stderr, "adding new tree backref on "
5873                         "start %llu len %llu parent %llu root %llu\n",
5874                         rec->start, rec->max_size, tback->parent, tback->root);
5875         }
5876         if (ret)
5877                 goto fail;
5878 fail:
5879         btrfs_release_path(path);
5880         return ret;
5881 }
5882
5883 struct extent_entry {
5884         u64 bytenr;
5885         u64 bytes;
5886         int count;
5887         int broken;
5888         struct list_head list;
5889 };
5890
5891 static struct extent_entry *find_entry(struct list_head *entries,
5892                                        u64 bytenr, u64 bytes)
5893 {
5894         struct extent_entry *entry = NULL;
5895
5896         list_for_each_entry(entry, entries, list) {
5897                 if (entry->bytenr == bytenr && entry->bytes == bytes)
5898                         return entry;
5899         }
5900
5901         return NULL;
5902 }
5903
5904 static struct extent_entry *find_most_right_entry(struct list_head *entries)
5905 {
5906         struct extent_entry *entry, *best = NULL, *prev = NULL;
5907
5908         list_for_each_entry(entry, entries, list) {
5909                 if (!prev) {
5910                         prev = entry;
5911                         continue;
5912                 }
5913
5914                 /*
5915                  * If there are as many broken entries as entries then we know
5916                  * not to trust this particular entry.
5917                  */
5918                 if (entry->broken == entry->count)
5919                         continue;
5920
5921                 /*
5922                  * If our current entry == best then we can't be sure our best
5923                  * is really the best, so we need to keep searching.
5924                  */
5925                 if (best && best->count == entry->count) {
5926                         prev = entry;
5927                         best = NULL;
5928                         continue;
5929                 }
5930
5931                 /* Prev == entry, not good enough, have to keep searching */
5932                 if (!prev->broken && prev->count == entry->count)
5933                         continue;
5934
5935                 if (!best)
5936                         best = (prev->count > entry->count) ? prev : entry;
5937                 else if (best->count < entry->count)
5938                         best = entry;
5939                 prev = entry;
5940         }
5941
5942         return best;
5943 }
5944
5945 static int repair_ref(struct btrfs_trans_handle *trans,
5946                       struct btrfs_fs_info *info, struct btrfs_path *path,
5947                       struct data_backref *dback, struct extent_entry *entry)
5948 {
5949         struct btrfs_root *root;
5950         struct btrfs_file_extent_item *fi;
5951         struct extent_buffer *leaf;
5952         struct btrfs_key key;
5953         u64 bytenr, bytes;
5954         int ret;
5955
5956         key.objectid = dback->root;
5957         key.type = BTRFS_ROOT_ITEM_KEY;
5958         key.offset = (u64)-1;
5959         root = btrfs_read_fs_root(info, &key);
5960         if (IS_ERR(root)) {
5961                 fprintf(stderr, "Couldn't find root for our ref\n");
5962                 return -EINVAL;
5963         }
5964
5965         /*
5966          * The backref points to the original offset of the extent if it was
5967          * split, so we need to search down to the offset we have and then walk
5968          * forward until we find the backref we're looking for.
5969          */
5970         key.objectid = dback->owner;
5971         key.type = BTRFS_EXTENT_DATA_KEY;
5972         key.offset = dback->offset;
5973         ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
5974         if (ret < 0) {
5975                 fprintf(stderr, "Error looking up ref %d\n", ret);
5976                 return ret;
5977         }
5978
5979         while (1) {
5980                 if (path->slots[0] >= btrfs_header_nritems(path->nodes[0])) {
5981                         ret = btrfs_next_leaf(root, path);
5982                         if (ret) {
5983                                 fprintf(stderr, "Couldn't find our ref, next\n");
5984                                 return -EINVAL;
5985                         }
5986                 }
5987                 leaf = path->nodes[0];
5988                 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
5989                 if (key.objectid != dback->owner ||
5990                     key.type != BTRFS_EXTENT_DATA_KEY) {
5991                         fprintf(stderr, "Couldn't find our ref, search\n");
5992                         return -EINVAL;
5993                 }
5994                 fi = btrfs_item_ptr(leaf, path->slots[0],
5995                                     struct btrfs_file_extent_item);
5996                 bytenr = btrfs_file_extent_disk_bytenr(leaf, fi);
5997                 bytes = btrfs_file_extent_disk_num_bytes(leaf, fi);
5998
5999                 if (bytenr == dback->disk_bytenr && bytes == dback->bytes)
6000                         break;
6001                 path->slots[0]++;
6002         }
6003
6004         btrfs_release_path(path);
6005
6006         /*
6007          * Have to make sure that this root gets updated when we commit the
6008          * transaction
6009          */
6010         record_root_in_trans(trans, root);
6011
6012         /*
6013          * Ok we have the key of the file extent we want to fix, now we can cow
6014          * down to the thing and fix it.
6015          */
6016         ret = btrfs_search_slot(trans, root, &key, path, 0, 1);
6017         if (ret < 0) {
6018                 fprintf(stderr, "Error cowing down to ref [%Lu, %u, %Lu]: %d\n",
6019                         key.objectid, key.type, key.offset, ret);
6020                 return ret;
6021         }
6022         if (ret > 0) {
6023                 fprintf(stderr, "Well that's odd, we just found this key "
6024                         "[%Lu, %u, %Lu]\n", key.objectid, key.type,
6025                         key.offset);
6026                 return -EINVAL;
6027         }
6028         leaf = path->nodes[0];
6029         fi = btrfs_item_ptr(leaf, path->slots[0],
6030                             struct btrfs_file_extent_item);
6031
6032         if (btrfs_file_extent_compression(leaf, fi) &&
6033             dback->disk_bytenr != entry->bytenr) {
6034                 fprintf(stderr, "Ref doesn't match the record start and is "
6035                         "compressed, please take a btrfs-image of this file "
6036                         "system and send it to a btrfs developer so they can "
6037                         "complete this functionality for bytenr %Lu\n",
6038                         dback->disk_bytenr);
6039                 return -EINVAL;
6040         }
6041
6042         if (dback->node.broken && dback->disk_bytenr != entry->bytenr) {
6043                 btrfs_set_file_extent_disk_bytenr(leaf, fi, entry->bytenr);
6044         } else if (dback->disk_bytenr > entry->bytenr) {
6045                 u64 off_diff, offset;
6046
6047                 off_diff = dback->disk_bytenr - entry->bytenr;
6048                 offset = btrfs_file_extent_offset(leaf, fi);
6049                 if (dback->disk_bytenr + offset +
6050                     btrfs_file_extent_num_bytes(leaf, fi) >
6051                     entry->bytenr + entry->bytes) {
6052                         fprintf(stderr, "Ref is past the entry end, please "
6053                                 "take a btrfs-image of this file system and "
6054                                 "send it to a btrfs developer, ref %Lu\n",
6055                                 dback->disk_bytenr);
6056                         return -EINVAL;
6057                 }
6058                 offset += off_diff;
6059                 btrfs_set_file_extent_disk_bytenr(leaf, fi, entry->bytenr);
6060                 btrfs_set_file_extent_offset(leaf, fi, offset);
6061         } else if (dback->disk_bytenr < entry->bytenr) {
6062                 u64 offset;
6063
6064                 offset = btrfs_file_extent_offset(leaf, fi);
6065                 if (dback->disk_bytenr + offset < entry->bytenr) {
6066                         fprintf(stderr, "Ref is before the entry start, please"
6067                                 " take a btrfs-image of this file system and "
6068                                 "send it to a btrfs developer, ref %Lu\n",
6069                                 dback->disk_bytenr);
6070                         return -EINVAL;
6071                 }
6072
6073                 offset += dback->disk_bytenr;
6074                 offset -= entry->bytenr;
6075                 btrfs_set_file_extent_disk_bytenr(leaf, fi, entry->bytenr);
6076                 btrfs_set_file_extent_offset(leaf, fi, offset);
6077         }
6078
6079         btrfs_set_file_extent_disk_num_bytes(leaf, fi, entry->bytes);
6080
6081         /*
6082          * Chances are if disk_num_bytes were wrong then so is ram_bytes, but
6083          * only do this if we aren't using compression, otherwise it's a
6084          * trickier case.
6085          */
6086         if (!btrfs_file_extent_compression(leaf, fi))
6087                 btrfs_set_file_extent_ram_bytes(leaf, fi, entry->bytes);
6088         else
6089                 printf("ram bytes may be wrong?\n");
6090         btrfs_mark_buffer_dirty(leaf);
6091         btrfs_release_path(path);
6092         return 0;
6093 }
6094
6095 static int verify_backrefs(struct btrfs_trans_handle *trans,
6096                            struct btrfs_fs_info *info, struct btrfs_path *path,
6097                            struct extent_record *rec)
6098 {
6099         struct extent_backref *back;
6100         struct data_backref *dback;
6101         struct extent_entry *entry, *best = NULL;
6102         LIST_HEAD(entries);
6103         int nr_entries = 0;
6104         int broken_entries = 0;
6105         int ret = 0;
6106         short mismatch = 0;
6107
6108         /*
6109          * Metadata is easy and the backrefs should always agree on bytenr and
6110          * size, if not we've got bigger issues.
6111          */
6112         if (rec->metadata)
6113                 return 0;
6114
6115         list_for_each_entry(back, &rec->backrefs, list) {
6116                 if (back->full_backref || !back->is_data)
6117                         continue;
6118
6119                 dback = (struct data_backref *)back;
6120
6121                 /*
6122                  * We only pay attention to backrefs that we found a real
6123                  * backref for.
6124                  */
6125                 if (dback->found_ref == 0)
6126                         continue;
6127
6128                 /*
6129                  * For now we only catch when the bytes don't match, not the
6130                  * bytenr.  We can easily do this at the same time, but I want
6131                  * to have a fs image to test on before we just add repair
6132                  * functionality willy-nilly so we know we won't screw up the
6133                  * repair.
6134                  */
6135
6136                 entry = find_entry(&entries, dback->disk_bytenr,
6137                                    dback->bytes);
6138                 if (!entry) {
6139                         entry = malloc(sizeof(struct extent_entry));
6140                         if (!entry) {
6141                                 ret = -ENOMEM;
6142                                 goto out;
6143                         }
6144                         memset(entry, 0, sizeof(*entry));
6145                         entry->bytenr = dback->disk_bytenr;
6146                         entry->bytes = dback->bytes;
6147                         list_add_tail(&entry->list, &entries);
6148                         nr_entries++;
6149                 }
6150
6151                 /*
6152                  * If we only have on entry we may think the entries agree when
6153                  * in reality they don't so we have to do some extra checking.
6154                  */
6155                 if (dback->disk_bytenr != rec->start ||
6156                     dback->bytes != rec->nr || back->broken)
6157                         mismatch = 1;
6158
6159                 if (back->broken) {
6160                         entry->broken++;
6161                         broken_entries++;
6162                 }
6163
6164                 entry->count++;
6165         }
6166
6167         /* Yay all the backrefs agree, carry on good sir */
6168         if (nr_entries <= 1 && !mismatch)
6169                 goto out;
6170
6171         fprintf(stderr, "attempting to repair backref discrepency for bytenr "
6172                 "%Lu\n", rec->start);
6173
6174         /*
6175          * First we want to see if the backrefs can agree amongst themselves who
6176          * is right, so figure out which one of the entries has the highest
6177          * count.
6178          */
6179         best = find_most_right_entry(&entries);
6180
6181         /*
6182          * Ok so we may have an even split between what the backrefs think, so
6183          * this is where we use the extent ref to see what it thinks.
6184          */
6185         if (!best) {
6186                 entry = find_entry(&entries, rec->start, rec->nr);
6187                 if (!entry && (!broken_entries || !rec->found_rec)) {
6188                         fprintf(stderr, "Backrefs don't agree with each other "
6189                                 "and extent record doesn't agree with anybody,"
6190                                 " so we can't fix bytenr %Lu bytes %Lu\n",
6191                                 rec->start, rec->nr);
6192                         ret = -EINVAL;
6193                         goto out;
6194                 } else if (!entry) {
6195                         /*
6196                          * Ok our backrefs were broken, we'll assume this is the
6197                          * correct value and add an entry for this range.
6198                          */
6199                         entry = malloc(sizeof(struct extent_entry));
6200                         if (!entry) {
6201                                 ret = -ENOMEM;
6202                                 goto out;
6203                         }
6204                         memset(entry, 0, sizeof(*entry));
6205                         entry->bytenr = rec->start;
6206                         entry->bytes = rec->nr;
6207                         list_add_tail(&entry->list, &entries);
6208                         nr_entries++;
6209                 }
6210                 entry->count++;
6211                 best = find_most_right_entry(&entries);
6212                 if (!best) {
6213                         fprintf(stderr, "Backrefs and extent record evenly "
6214                                 "split on who is right, this is going to "
6215                                 "require user input to fix bytenr %Lu bytes "
6216                                 "%Lu\n", rec->start, rec->nr);
6217                         ret = -EINVAL;
6218                         goto out;
6219                 }
6220         }
6221
6222         /*
6223          * I don't think this can happen currently as we'll abort() if we catch
6224          * this case higher up, but in case somebody removes that we still can't
6225          * deal with it properly here yet, so just bail out of that's the case.
6226          */
6227         if (best->bytenr != rec->start) {
6228                 fprintf(stderr, "Extent start and backref starts don't match, "
6229                         "please use btrfs-image on this file system and send "
6230                         "it to a btrfs developer so they can make fsck fix "
6231                         "this particular case.  bytenr is %Lu, bytes is %Lu\n",
6232                         rec->start, rec->nr);
6233                 ret = -EINVAL;
6234                 goto out;
6235         }
6236
6237         /*
6238          * Ok great we all agreed on an extent record, let's go find the real
6239          * references and fix up the ones that don't match.
6240          */
6241         list_for_each_entry(back, &rec->backrefs, list) {
6242                 if (back->full_backref || !back->is_data)
6243                         continue;
6244
6245                 dback = (struct data_backref *)back;
6246
6247                 /*
6248                  * Still ignoring backrefs that don't have a real ref attached
6249                  * to them.
6250                  */
6251                 if (dback->found_ref == 0)
6252                         continue;
6253
6254                 if (dback->bytes == best->bytes &&
6255                     dback->disk_bytenr == best->bytenr)
6256                         continue;
6257
6258                 ret = repair_ref(trans, info, path, dback, best);
6259                 if (ret)
6260                         goto out;
6261         }
6262
6263         /*
6264          * Ok we messed with the actual refs, which means we need to drop our
6265          * entire cache and go back and rescan.  I know this is a huge pain and
6266          * adds a lot of extra work, but it's the only way to be safe.  Once all
6267          * the backrefs agree we may not need to do anything to the extent
6268          * record itself.
6269          */
6270         ret = -EAGAIN;
6271 out:
6272         while (!list_empty(&entries)) {
6273                 entry = list_entry(entries.next, struct extent_entry, list);
6274                 list_del_init(&entry->list);
6275                 free(entry);
6276         }
6277         return ret;
6278 }
6279
6280 static int process_duplicates(struct btrfs_root *root,
6281                               struct cache_tree *extent_cache,
6282                               struct extent_record *rec)
6283 {
6284         struct extent_record *good, *tmp;
6285         struct cache_extent *cache;
6286         int ret;
6287
6288         /*
6289          * If we found a extent record for this extent then return, or if we
6290          * have more than one duplicate we are likely going to need to delete
6291          * something.
6292          */
6293         if (rec->found_rec || rec->num_duplicates > 1)
6294                 return 0;
6295
6296         /* Shouldn't happen but just in case */
6297         BUG_ON(!rec->num_duplicates);
6298
6299         /*
6300          * So this happens if we end up with a backref that doesn't match the
6301          * actual extent entry.  So either the backref is bad or the extent
6302          * entry is bad.  Either way we want to have the extent_record actually
6303          * reflect what we found in the extent_tree, so we need to take the
6304          * duplicate out and use that as the extent_record since the only way we
6305          * get a duplicate is if we find a real life BTRFS_EXTENT_ITEM_KEY.
6306          */
6307         remove_cache_extent(extent_cache, &rec->cache);
6308
6309         good = list_entry(rec->dups.next, struct extent_record, list);
6310         list_del_init(&good->list);
6311         INIT_LIST_HEAD(&good->backrefs);
6312         INIT_LIST_HEAD(&good->dups);
6313         good->cache.start = good->start;
6314         good->cache.size = good->nr;
6315         good->content_checked = 0;
6316         good->owner_ref_checked = 0;
6317         good->num_duplicates = 0;
6318         good->refs = rec->refs;
6319         list_splice_init(&rec->backrefs, &good->backrefs);
6320         while (1) {
6321                 cache = lookup_cache_extent(extent_cache, good->start,
6322                                             good->nr);
6323                 if (!cache)
6324                         break;
6325                 tmp = container_of(cache, struct extent_record, cache);
6326
6327                 /*
6328                  * If we find another overlapping extent and it's found_rec is
6329                  * set then it's a duplicate and we need to try and delete
6330                  * something.
6331                  */
6332                 if (tmp->found_rec || tmp->num_duplicates > 0) {
6333                         if (list_empty(&good->list))
6334                                 list_add_tail(&good->list,
6335                                               &duplicate_extents);
6336                         good->num_duplicates += tmp->num_duplicates + 1;
6337                         list_splice_init(&tmp->dups, &good->dups);
6338                         list_del_init(&tmp->list);
6339                         list_add_tail(&tmp->list, &good->dups);
6340                         remove_cache_extent(extent_cache, &tmp->cache);
6341                         continue;
6342                 }
6343
6344                 /*
6345                  * Ok we have another non extent item backed extent rec, so lets
6346                  * just add it to this extent and carry on like we did above.
6347                  */
6348                 good->refs += tmp->refs;
6349                 list_splice_init(&tmp->backrefs, &good->backrefs);
6350                 remove_cache_extent(extent_cache, &tmp->cache);
6351                 free(tmp);
6352         }
6353         ret = insert_cache_extent(extent_cache, &good->cache);
6354         BUG_ON(ret);
6355         free(rec);
6356         return good->num_duplicates ? 0 : 1;
6357 }
6358
6359 static int delete_duplicate_records(struct btrfs_trans_handle *trans,
6360                                     struct btrfs_root *root,
6361                                     struct extent_record *rec)
6362 {
6363         LIST_HEAD(delete_list);
6364         struct btrfs_path *path;
6365         struct extent_record *tmp, *good, *n;
6366         int nr_del = 0;
6367         int ret = 0;
6368         struct btrfs_key key;
6369
6370         path = btrfs_alloc_path();
6371         if (!path) {
6372                 ret = -ENOMEM;
6373                 goto out;
6374         }
6375
6376         good = rec;
6377         /* Find the record that covers all of the duplicates. */
6378         list_for_each_entry(tmp, &rec->dups, list) {
6379                 if (good->start < tmp->start)
6380                         continue;
6381                 if (good->nr > tmp->nr)
6382                         continue;
6383
6384                 if (tmp->start + tmp->nr < good->start + good->nr) {
6385                         fprintf(stderr, "Ok we have overlapping extents that "
6386                                 "aren't completely covered by eachother, this "
6387                                 "is going to require more careful thought.  "
6388                                 "The extents are [%Lu-%Lu] and [%Lu-%Lu]\n",
6389                                 tmp->start, tmp->nr, good->start, good->nr);
6390                         abort();
6391                 }
6392                 good = tmp;
6393         }
6394
6395         if (good != rec)
6396                 list_add_tail(&rec->list, &delete_list);
6397
6398         list_for_each_entry_safe(tmp, n, &rec->dups, list) {
6399                 if (tmp == good)
6400                         continue;
6401                 list_move_tail(&tmp->list, &delete_list);
6402         }
6403
6404         root = root->fs_info->extent_root;
6405         list_for_each_entry(tmp, &delete_list, list) {
6406                 if (tmp->found_rec == 0)
6407                         continue;
6408                 key.objectid = tmp->start;
6409                 key.type = BTRFS_EXTENT_ITEM_KEY;
6410                 key.offset = tmp->nr;
6411
6412                 /* Shouldn't happen but just in case */
6413                 if (tmp->metadata) {
6414                         fprintf(stderr, "Well this shouldn't happen, extent "
6415                                 "record overlaps but is metadata? "
6416                                 "[%Lu, %Lu]\n", tmp->start, tmp->nr);
6417                         abort();
6418                 }
6419
6420                 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
6421                 if (ret) {
6422                         if (ret > 0)
6423                                 ret = -EINVAL;
6424                         goto out;
6425                 }
6426                 ret = btrfs_del_item(trans, root, path);
6427                 if (ret)
6428                         goto out;
6429                 btrfs_release_path(path);
6430                 nr_del++;
6431         }
6432
6433 out:
6434         while (!list_empty(&delete_list)) {
6435                 tmp = list_entry(delete_list.next, struct extent_record, list);
6436                 list_del_init(&tmp->list);
6437                 if (tmp == rec)
6438                         continue;
6439                 free(tmp);
6440         }
6441
6442         while (!list_empty(&rec->dups)) {
6443                 tmp = list_entry(rec->dups.next, struct extent_record, list);
6444                 list_del_init(&tmp->list);
6445                 free(tmp);
6446         }
6447
6448         btrfs_free_path(path);
6449
6450         if (!ret && !nr_del)
6451                 rec->num_duplicates = 0;
6452
6453         return ret ? ret : nr_del;
6454 }
6455
6456 static int find_possible_backrefs(struct btrfs_trans_handle *trans,
6457                                   struct btrfs_fs_info *info,
6458                                   struct btrfs_path *path,
6459                                   struct cache_tree *extent_cache,
6460                                   struct extent_record *rec)
6461 {
6462         struct btrfs_root *root;
6463         struct extent_backref *back;
6464         struct data_backref *dback;
6465         struct cache_extent *cache;
6466         struct btrfs_file_extent_item *fi;
6467         struct btrfs_key key;
6468         u64 bytenr, bytes;
6469         int ret;
6470
6471         list_for_each_entry(back, &rec->backrefs, list) {
6472                 /* Don't care about full backrefs (poor unloved backrefs) */
6473                 if (back->full_backref || !back->is_data)
6474                         continue;
6475
6476                 dback = (struct data_backref *)back;
6477
6478                 /* We found this one, we don't need to do a lookup */
6479                 if (dback->found_ref)
6480                         continue;
6481
6482                 key.objectid = dback->root;
6483                 key.type = BTRFS_ROOT_ITEM_KEY;
6484                 key.offset = (u64)-1;
6485
6486                 root = btrfs_read_fs_root(info, &key);
6487
6488                 /* No root, definitely a bad ref, skip */
6489                 if (IS_ERR(root) && PTR_ERR(root) == -ENOENT)
6490                         continue;
6491                 /* Other err, exit */
6492                 if (IS_ERR(root))
6493                         return PTR_ERR(root);
6494
6495                 key.objectid = dback->owner;
6496                 key.type = BTRFS_EXTENT_DATA_KEY;
6497                 key.offset = dback->offset;
6498                 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
6499                 if (ret) {
6500                         btrfs_release_path(path);
6501                         if (ret < 0)
6502                                 return ret;
6503                         /* Didn't find it, we can carry on */
6504                         ret = 0;
6505                         continue;
6506                 }
6507
6508                 fi = btrfs_item_ptr(path->nodes[0], path->slots[0],
6509                                     struct btrfs_file_extent_item);
6510                 bytenr = btrfs_file_extent_disk_bytenr(path->nodes[0], fi);
6511                 bytes = btrfs_file_extent_disk_num_bytes(path->nodes[0], fi);
6512                 btrfs_release_path(path);
6513                 cache = lookup_cache_extent(extent_cache, bytenr, 1);
6514                 if (cache) {
6515                         struct extent_record *tmp;
6516                         tmp = container_of(cache, struct extent_record, cache);
6517
6518                         /*
6519                          * If we found an extent record for the bytenr for this
6520                          * particular backref then we can't add it to our
6521                          * current extent record.  We only want to add backrefs
6522                          * that don't have a corresponding extent item in the
6523                          * extent tree since they likely belong to this record
6524                          * and we need to fix it if it doesn't match bytenrs.
6525                          */
6526                         if  (tmp->found_rec)
6527                                 continue;
6528                 }
6529
6530                 dback->found_ref += 1;
6531                 dback->disk_bytenr = bytenr;
6532                 dback->bytes = bytes;
6533
6534                 /*
6535                  * Set this so the verify backref code knows not to trust the
6536                  * values in this backref.
6537                  */
6538                 back->broken = 1;
6539         }
6540
6541         return 0;
6542 }
6543
6544 /*
6545  * when an incorrect extent item is found, this will delete
6546  * all of the existing entries for it and recreate them
6547  * based on what the tree scan found.
6548  */
6549 static int fixup_extent_refs(struct btrfs_trans_handle *trans,
6550                              struct btrfs_fs_info *info,
6551                              struct cache_tree *extent_cache,
6552                              struct extent_record *rec)
6553 {
6554         int ret;
6555         struct btrfs_path *path;
6556         struct list_head *cur = rec->backrefs.next;
6557         struct cache_extent *cache;
6558         struct extent_backref *back;
6559         int allocated = 0;
6560         u64 flags = 0;
6561
6562         /*
6563          * remember our flags for recreating the extent.
6564          * FIXME, if we have cleared extent tree, we can not
6565          * lookup extent info in extent tree.
6566          */
6567         if (!init_extent_tree) {
6568                 ret = btrfs_lookup_extent_info(NULL, info->extent_root,
6569                                         rec->start, rec->max_size,
6570                                         rec->metadata, NULL, &flags);
6571                 if (ret < 0)
6572                         return ret;
6573         } else {
6574                 if (rec->flag_block_full_backref)
6575                         flags |= BTRFS_BLOCK_FLAG_FULL_BACKREF;
6576         }
6577
6578         path = btrfs_alloc_path();
6579         if (!path)
6580                 return -ENOMEM;
6581
6582         if (rec->refs != rec->extent_item_refs && !rec->metadata) {
6583                 /*
6584                  * Sometimes the backrefs themselves are so broken they don't
6585                  * get attached to any meaningful rec, so first go back and
6586                  * check any of our backrefs that we couldn't find and throw
6587                  * them into the list if we find the backref so that
6588                  * verify_backrefs can figure out what to do.
6589                  */
6590                 ret = find_possible_backrefs(trans, info, path, extent_cache,
6591                                              rec);
6592                 if (ret < 0)
6593                         goto out;
6594         }
6595
6596         /* step one, make sure all of the backrefs agree */
6597         ret = verify_backrefs(trans, info, path, rec);
6598         if (ret < 0)
6599                 goto out;
6600
6601         /* step two, delete all the existing records */
6602         ret = delete_extent_records(trans, info->extent_root, path,
6603                                     rec->start, rec->max_size);
6604
6605         if (ret < 0)
6606                 goto out;
6607
6608         /* was this block corrupt?  If so, don't add references to it */
6609         cache = lookup_cache_extent(info->corrupt_blocks,
6610                                     rec->start, rec->max_size);
6611         if (cache) {
6612                 ret = 0;
6613                 goto out;
6614         }
6615
6616         /* step three, recreate all the refs we did find */
6617         while(cur != &rec->backrefs) {
6618                 back = list_entry(cur, struct extent_backref, list);
6619                 cur = cur->next;
6620
6621                 /*
6622                  * if we didn't find any references, don't create a
6623                  * new extent record
6624                  */
6625                 if (!back->found_ref)
6626                         continue;
6627
6628                 ret = record_extent(trans, info, path, rec, back, allocated, flags);
6629                 allocated = 1;
6630
6631                 if (ret)
6632                         goto out;
6633         }
6634 out:
6635         btrfs_free_path(path);
6636         return ret;
6637 }
6638
6639 /* right now we only prune from the extent allocation tree */
6640 static int prune_one_block(struct btrfs_trans_handle *trans,
6641                            struct btrfs_fs_info *info,
6642                            struct btrfs_corrupt_block *corrupt)
6643 {
6644         int ret;
6645         struct btrfs_path path;
6646         struct extent_buffer *eb;
6647         u64 found;
6648         int slot;
6649         int nritems;
6650         int level = corrupt->level + 1;
6651
6652         btrfs_init_path(&path);
6653 again:
6654         /* we want to stop at the parent to our busted block */
6655         path.lowest_level = level;
6656
6657         ret = btrfs_search_slot(trans, info->extent_root,
6658                                 &corrupt->key, &path, -1, 1);
6659
6660         if (ret < 0)
6661                 goto out;
6662
6663         eb = path.nodes[level];
6664         if (!eb) {
6665                 ret = -ENOENT;
6666                 goto out;
6667         }
6668
6669         /*
6670          * hopefully the search gave us the block we want to prune,
6671          * lets try that first
6672          */
6673         slot = path.slots[level];
6674         found =  btrfs_node_blockptr(eb, slot);
6675         if (found == corrupt->cache.start)
6676                 goto del_ptr;
6677
6678         nritems = btrfs_header_nritems(eb);
6679
6680         /* the search failed, lets scan this node and hope we find it */
6681         for (slot = 0; slot < nritems; slot++) {
6682                 found =  btrfs_node_blockptr(eb, slot);
6683                 if (found == corrupt->cache.start)
6684                         goto del_ptr;
6685         }
6686         /*
6687          * we couldn't find the bad block.  TODO, search all the nodes for pointers
6688          * to this block
6689          */
6690         if (eb == info->extent_root->node) {
6691                 ret = -ENOENT;
6692                 goto out;
6693         } else {
6694                 level++;
6695                 btrfs_release_path(&path);
6696                 goto again;
6697         }
6698
6699 del_ptr:
6700         printk("deleting pointer to block %Lu\n", corrupt->cache.start);
6701         ret = btrfs_del_ptr(trans, info->extent_root, &path, level, slot);
6702
6703 out:
6704         btrfs_release_path(&path);
6705         return ret;
6706 }
6707
6708 static int prune_corrupt_blocks(struct btrfs_trans_handle *trans,
6709                                 struct btrfs_fs_info *info)
6710 {
6711         struct cache_extent *cache;
6712         struct btrfs_corrupt_block *corrupt;
6713
6714         cache = search_cache_extent(info->corrupt_blocks, 0);
6715         while (1) {
6716                 if (!cache)
6717                         break;
6718                 corrupt = container_of(cache, struct btrfs_corrupt_block, cache);
6719                 prune_one_block(trans, info, corrupt);
6720                 cache = next_cache_extent(cache);
6721         }
6722         return 0;
6723 }
6724
6725 static void reset_cached_block_groups(struct btrfs_fs_info *fs_info)
6726 {
6727         struct btrfs_block_group_cache *cache;
6728         u64 start, end;
6729         int ret;
6730
6731         while (1) {
6732                 ret = find_first_extent_bit(&fs_info->free_space_cache, 0,
6733                                             &start, &end, EXTENT_DIRTY);
6734                 if (ret)
6735                         break;
6736                 clear_extent_dirty(&fs_info->free_space_cache, start, end,
6737                                    GFP_NOFS);
6738         }
6739
6740         start = 0;
6741         while (1) {
6742                 cache = btrfs_lookup_first_block_group(fs_info, start);
6743                 if (!cache)
6744                         break;
6745                 if (cache->cached)
6746                         cache->cached = 0;
6747                 start = cache->key.objectid + cache->key.offset;
6748         }
6749 }
6750
6751 static int check_extent_refs(struct btrfs_trans_handle *trans,
6752                              struct btrfs_root *root,
6753                              struct cache_tree *extent_cache)
6754 {
6755         struct extent_record *rec;
6756         struct cache_extent *cache;
6757         int err = 0;
6758         int ret = 0;
6759         int fixed = 0;
6760         int had_dups = 0;
6761
6762         if (repair) {
6763                 /*
6764                  * if we're doing a repair, we have to make sure
6765                  * we don't allocate from the problem extents.
6766                  * In the worst case, this will be all the
6767                  * extents in the FS
6768                  */
6769                 cache = search_cache_extent(extent_cache, 0);
6770                 while(cache) {
6771                         rec = container_of(cache, struct extent_record, cache);
6772                         btrfs_pin_extent(root->fs_info,
6773                                          rec->start, rec->max_size);
6774                         cache = next_cache_extent(cache);
6775                 }
6776
6777                 /* pin down all the corrupted blocks too */
6778                 cache = search_cache_extent(root->fs_info->corrupt_blocks, 0);
6779                 while(cache) {
6780                         btrfs_pin_extent(root->fs_info,
6781                                          cache->start, cache->size);
6782                         cache = next_cache_extent(cache);
6783                 }
6784                 prune_corrupt_blocks(trans, root->fs_info);
6785                 reset_cached_block_groups(root->fs_info);
6786         }
6787
6788         /*
6789          * We need to delete any duplicate entries we find first otherwise we
6790          * could mess up the extent tree when we have backrefs that actually
6791          * belong to a different extent item and not the weird duplicate one.
6792          */
6793         while (repair && !list_empty(&duplicate_extents)) {
6794                 rec = list_entry(duplicate_extents.next, struct extent_record,
6795                                  list);
6796                 list_del_init(&rec->list);
6797
6798                 /* Sometimes we can find a backref before we find an actual
6799                  * extent, so we need to process it a little bit to see if there
6800                  * truly are multiple EXTENT_ITEM_KEY's for the same range, or
6801                  * if this is a backref screwup.  If we need to delete stuff
6802                  * process_duplicates() will return 0, otherwise it will return
6803                  * 1 and we
6804                  */
6805                 if (process_duplicates(root, extent_cache, rec))
6806                         continue;
6807                 ret = delete_duplicate_records(trans, root, rec);
6808                 if (ret < 0)
6809                         return ret;
6810                 /*
6811                  * delete_duplicate_records will return the number of entries
6812                  * deleted, so if it's greater than 0 then we know we actually
6813                  * did something and we need to remove.
6814                  */
6815                 if (ret)
6816                         had_dups = 1;
6817         }
6818
6819         if (had_dups)
6820                 return -EAGAIN;
6821
6822         while(1) {
6823                 fixed = 0;
6824                 cache = search_cache_extent(extent_cache, 0);
6825                 if (!cache)
6826                         break;
6827                 rec = container_of(cache, struct extent_record, cache);
6828                 if (rec->num_duplicates) {
6829                         fprintf(stderr, "extent item %llu has multiple extent "
6830                                 "items\n", (unsigned long long)rec->start);
6831                         err = 1;
6832                 }
6833
6834                 if (rec->refs != rec->extent_item_refs) {
6835                         fprintf(stderr, "ref mismatch on [%llu %llu] ",
6836                                 (unsigned long long)rec->start,
6837                                 (unsigned long long)rec->nr);
6838                         fprintf(stderr, "extent item %llu, found %llu\n",
6839                                 (unsigned long long)rec->extent_item_refs,
6840                                 (unsigned long long)rec->refs);
6841                         if (!fixed && repair) {
6842                                 ret = fixup_extent_refs(trans, root->fs_info,
6843                                                         extent_cache, rec);
6844                                 if (ret)
6845                                         goto repair_abort;
6846                                 fixed = 1;
6847                         }
6848                         err = 1;
6849
6850                 }
6851                 if (all_backpointers_checked(rec, 1)) {
6852                         fprintf(stderr, "backpointer mismatch on [%llu %llu]\n",
6853                                 (unsigned long long)rec->start,
6854                                 (unsigned long long)rec->nr);
6855
6856                         if (!fixed && repair) {
6857                                 ret = fixup_extent_refs(trans, root->fs_info,
6858                                                         extent_cache, rec);
6859                                 if (ret)
6860                                         goto repair_abort;
6861                                 fixed = 1;
6862                         }
6863
6864                         err = 1;
6865                 }
6866                 if (!rec->owner_ref_checked) {
6867                         fprintf(stderr, "owner ref check failed [%llu %llu]\n",
6868                                 (unsigned long long)rec->start,
6869                                 (unsigned long long)rec->nr);
6870                         if (!fixed && repair) {
6871                                 ret = fixup_extent_refs(trans, root->fs_info,
6872                                                         extent_cache, rec);
6873                                 if (ret)
6874                                         goto repair_abort;
6875                                 fixed = 1;
6876                         }
6877                         err = 1;
6878                 }
6879
6880                 remove_cache_extent(extent_cache, cache);
6881                 free_all_extent_backrefs(rec);
6882                 free(rec);
6883         }
6884 repair_abort:
6885         if (repair) {
6886                 if (ret && ret != -EAGAIN) {
6887                         fprintf(stderr, "failed to repair damaged filesystem, aborting\n");
6888                         exit(1);
6889                 } else if (!ret) {
6890                         btrfs_fix_block_accounting(trans, root);
6891                 }
6892                 if (err)
6893                         fprintf(stderr, "repaired damaged extent references\n");
6894                 return ret;
6895         }
6896         return err;
6897 }
6898
6899 u64 calc_stripe_length(u64 type, u64 length, int num_stripes)
6900 {
6901         u64 stripe_size;
6902
6903         if (type & BTRFS_BLOCK_GROUP_RAID0) {
6904                 stripe_size = length;
6905                 stripe_size /= num_stripes;
6906         } else if (type & BTRFS_BLOCK_GROUP_RAID10) {
6907                 stripe_size = length * 2;
6908                 stripe_size /= num_stripes;
6909         } else if (type & BTRFS_BLOCK_GROUP_RAID5) {
6910                 stripe_size = length;
6911                 stripe_size /= (num_stripes - 1);
6912         } else if (type & BTRFS_BLOCK_GROUP_RAID6) {
6913                 stripe_size = length;
6914                 stripe_size /= (num_stripes - 2);
6915         } else {
6916                 stripe_size = length;
6917         }
6918         return stripe_size;
6919 }
6920
6921 /*
6922  * Check the chunk with its block group/dev list ref:
6923  * Return 0 if all refs seems valid.
6924  * Return 1 if part of refs seems valid, need later check for rebuild ref
6925  * like missing block group and needs to search extent tree to rebuild them.
6926  * Return -1 if essential refs are missing and unable to rebuild.
6927  */
6928 static int check_chunk_refs(struct chunk_record *chunk_rec,
6929                             struct block_group_tree *block_group_cache,
6930                             struct device_extent_tree *dev_extent_cache,
6931                             int silent)
6932 {
6933         struct cache_extent *block_group_item;
6934         struct block_group_record *block_group_rec;
6935         struct cache_extent *dev_extent_item;
6936         struct device_extent_record *dev_extent_rec;
6937         u64 devid;
6938         u64 offset;
6939         u64 length;
6940         int i;
6941         int ret = 0;
6942
6943         block_group_item = lookup_cache_extent(&block_group_cache->tree,
6944                                                chunk_rec->offset,
6945                                                chunk_rec->length);
6946         if (block_group_item) {
6947                 block_group_rec = container_of(block_group_item,
6948                                                struct block_group_record,
6949                                                cache);
6950                 if (chunk_rec->length != block_group_rec->offset ||
6951                     chunk_rec->offset != block_group_rec->objectid ||
6952                     chunk_rec->type_flags != block_group_rec->flags) {
6953                         if (!silent)
6954                                 fprintf(stderr,
6955                                         "Chunk[%llu, %u, %llu]: length(%llu), offset(%llu), type(%llu) mismatch with block group[%llu, %u, %llu]: offset(%llu), objectid(%llu), flags(%llu)\n",
6956                                         chunk_rec->objectid,
6957                                         chunk_rec->type,
6958                                         chunk_rec->offset,
6959                                         chunk_rec->length,
6960                                         chunk_rec->offset,
6961                                         chunk_rec->type_flags,
6962                                         block_group_rec->objectid,
6963                                         block_group_rec->type,
6964                                         block_group_rec->offset,
6965                                         block_group_rec->offset,
6966                                         block_group_rec->objectid,
6967                                         block_group_rec->flags);
6968                         ret = -1;
6969                 } else {
6970                         list_del_init(&block_group_rec->list);
6971                         chunk_rec->bg_rec = block_group_rec;
6972                 }
6973         } else {
6974                 if (!silent)
6975                         fprintf(stderr,
6976                                 "Chunk[%llu, %u, %llu]: length(%llu), offset(%llu), type(%llu) is not found in block group\n",
6977                                 chunk_rec->objectid,
6978                                 chunk_rec->type,
6979                                 chunk_rec->offset,
6980                                 chunk_rec->length,
6981                                 chunk_rec->offset,
6982                                 chunk_rec->type_flags);
6983                 ret = 1;
6984         }
6985
6986         length = calc_stripe_length(chunk_rec->type_flags, chunk_rec->length,
6987                                     chunk_rec->num_stripes);
6988         for (i = 0; i < chunk_rec->num_stripes; ++i) {
6989                 devid = chunk_rec->stripes[i].devid;
6990                 offset = chunk_rec->stripes[i].offset;
6991                 dev_extent_item = lookup_cache_extent2(&dev_extent_cache->tree,
6992                                                        devid, offset, length);
6993                 if (dev_extent_item) {
6994                         dev_extent_rec = container_of(dev_extent_item,
6995                                                 struct device_extent_record,
6996                                                 cache);
6997                         if (dev_extent_rec->objectid != devid ||
6998                             dev_extent_rec->offset != offset ||
6999                             dev_extent_rec->chunk_offset != chunk_rec->offset ||
7000                             dev_extent_rec->length != length) {
7001                                 if (!silent)
7002                                         fprintf(stderr,
7003                                                 "Chunk[%llu, %u, %llu] stripe[%llu, %llu] dismatch dev extent[%llu, %llu, %llu]\n",
7004                                                 chunk_rec->objectid,
7005                                                 chunk_rec->type,
7006                                                 chunk_rec->offset,
7007                                                 chunk_rec->stripes[i].devid,
7008                                                 chunk_rec->stripes[i].offset,
7009                                                 dev_extent_rec->objectid,
7010                                                 dev_extent_rec->offset,
7011                                                 dev_extent_rec->length);
7012                                 ret = -1;
7013                         } else {
7014                                 list_move(&dev_extent_rec->chunk_list,
7015                                           &chunk_rec->dextents);
7016                         }
7017                 } else {
7018                         if (!silent)
7019                                 fprintf(stderr,
7020                                         "Chunk[%llu, %u, %llu] stripe[%llu, %llu] is not found in dev extent\n",
7021                                         chunk_rec->objectid,
7022                                         chunk_rec->type,
7023                                         chunk_rec->offset,
7024                                         chunk_rec->stripes[i].devid,
7025                                         chunk_rec->stripes[i].offset);
7026                         ret = -1;
7027                 }
7028         }
7029         return ret;
7030 }
7031
7032 /* check btrfs_chunk -> btrfs_dev_extent / btrfs_block_group_item */
7033 int check_chunks(struct cache_tree *chunk_cache,
7034                  struct block_group_tree *block_group_cache,
7035                  struct device_extent_tree *dev_extent_cache,
7036                  struct list_head *good, struct list_head *bad,
7037                  struct list_head *rebuild, int silent)
7038 {
7039         struct cache_extent *chunk_item;
7040         struct chunk_record *chunk_rec;
7041         struct block_group_record *bg_rec;
7042         struct device_extent_record *dext_rec;
7043         int err;
7044         int ret = 0;
7045
7046         chunk_item = first_cache_extent(chunk_cache);
7047         while (chunk_item) {
7048                 chunk_rec = container_of(chunk_item, struct chunk_record,
7049                                          cache);
7050                 err = check_chunk_refs(chunk_rec, block_group_cache,
7051                                        dev_extent_cache, silent);
7052                 if (err)
7053                         ret = err;
7054                 if (err == 0 && good)
7055                         list_add_tail(&chunk_rec->list, good);
7056                 if (err > 0 && rebuild)
7057                         list_add_tail(&chunk_rec->list, rebuild);
7058                 if (err < 0 && bad)
7059                         list_add_tail(&chunk_rec->list, bad);
7060                 chunk_item = next_cache_extent(chunk_item);
7061         }
7062
7063         list_for_each_entry(bg_rec, &block_group_cache->block_groups, list) {
7064                 if (!silent)
7065                         fprintf(stderr,
7066                                 "Block group[%llu, %llu] (flags = %llu) didn't find the relative chunk.\n",
7067                                 bg_rec->objectid,
7068                                 bg_rec->offset,
7069                                 bg_rec->flags);
7070                 if (!ret)
7071                         ret = 1;
7072         }
7073
7074         list_for_each_entry(dext_rec, &dev_extent_cache->no_chunk_orphans,
7075                             chunk_list) {
7076                 if (!silent)
7077                         fprintf(stderr,
7078                                 "Device extent[%llu, %llu, %llu] didn't find the relative chunk.\n",
7079                                 dext_rec->objectid,
7080                                 dext_rec->offset,
7081                                 dext_rec->length);
7082                 if (!ret)
7083                         ret = 1;
7084         }
7085         return ret;
7086 }
7087
7088
7089 static int check_device_used(struct device_record *dev_rec,
7090                              struct device_extent_tree *dext_cache)
7091 {
7092         struct cache_extent *cache;
7093         struct device_extent_record *dev_extent_rec;
7094         u64 total_byte = 0;
7095
7096         cache = search_cache_extent2(&dext_cache->tree, dev_rec->devid, 0);
7097         while (cache) {
7098                 dev_extent_rec = container_of(cache,
7099                                               struct device_extent_record,
7100                                               cache);
7101                 if (dev_extent_rec->objectid != dev_rec->devid)
7102                         break;
7103
7104                 list_del_init(&dev_extent_rec->device_list);
7105                 total_byte += dev_extent_rec->length;
7106                 cache = next_cache_extent(cache);
7107         }
7108
7109         if (total_byte != dev_rec->byte_used) {
7110                 fprintf(stderr,
7111                         "Dev extent's total-byte(%llu) is not equal to byte-used(%llu) in dev[%llu, %u, %llu]\n",
7112                         total_byte, dev_rec->byte_used, dev_rec->objectid,
7113                         dev_rec->type, dev_rec->offset);
7114                 return -1;
7115         } else {
7116                 return 0;
7117         }
7118 }
7119
7120 /* check btrfs_dev_item -> btrfs_dev_extent */
7121 static int check_devices(struct rb_root *dev_cache,
7122                          struct device_extent_tree *dev_extent_cache)
7123 {
7124         struct rb_node *dev_node;
7125         struct device_record *dev_rec;
7126         struct device_extent_record *dext_rec;
7127         int err;
7128         int ret = 0;
7129
7130         dev_node = rb_first(dev_cache);
7131         while (dev_node) {
7132                 dev_rec = container_of(dev_node, struct device_record, node);
7133                 err = check_device_used(dev_rec, dev_extent_cache);
7134                 if (err)
7135                         ret = err;
7136
7137                 dev_node = rb_next(dev_node);
7138         }
7139         list_for_each_entry(dext_rec, &dev_extent_cache->no_device_orphans,
7140                             device_list) {
7141                 fprintf(stderr,
7142                         "Device extent[%llu, %llu, %llu] didn't find its device.\n",
7143                         dext_rec->objectid, dext_rec->offset, dext_rec->length);
7144                 if (!ret)
7145                         ret = 1;
7146         }
7147         return ret;
7148 }
7149
7150 static int add_root_item_to_list(struct list_head *head,
7151                                   u64 objectid, u64 bytenr,
7152                                   u8 level, u8 drop_level,
7153                                   int level_size, struct btrfs_key *drop_key)
7154 {
7155
7156         struct root_item_record *ri_rec;
7157         ri_rec = malloc(sizeof(*ri_rec));
7158         if (!ri_rec)
7159                 return -ENOMEM;
7160         ri_rec->bytenr = bytenr;
7161         ri_rec->objectid = objectid;
7162         ri_rec->level = level;
7163         ri_rec->level_size = level_size;
7164         ri_rec->drop_level = drop_level;
7165         if (drop_key)
7166                 memcpy(&ri_rec->drop_key, drop_key, sizeof(*drop_key));
7167         list_add_tail(&ri_rec->list, head);
7168
7169         return 0;
7170 }
7171
7172 static int deal_root_from_list(struct list_head *list,
7173                                struct btrfs_trans_handle *trans,
7174                                struct btrfs_root *root,
7175                                struct block_info *bits,
7176                                int bits_nr,
7177                                struct cache_tree *pending,
7178                                struct cache_tree *seen,
7179                                struct cache_tree *reada,
7180                                struct cache_tree *nodes,
7181                                struct cache_tree *extent_cache,
7182                                struct cache_tree *chunk_cache,
7183                                struct rb_root *dev_cache,
7184                                struct block_group_tree *block_group_cache,
7185                                struct device_extent_tree *dev_extent_cache)
7186 {
7187         int ret = 0;
7188         u64 last;
7189
7190         while (!list_empty(list)) {
7191                 struct root_item_record *rec;
7192                 struct extent_buffer *buf;
7193                 rec = list_entry(list->next,
7194                                  struct root_item_record, list);
7195                 last = 0;
7196                 buf = read_tree_block(root->fs_info->tree_root,
7197                                       rec->bytenr, rec->level_size, 0);
7198                 if (!extent_buffer_uptodate(buf)) {
7199                         free_extent_buffer(buf);
7200                         ret = -EIO;
7201                         break;
7202                 }
7203                 add_root_to_pending(buf, extent_cache, pending,
7204                                     seen, nodes, rec->objectid);
7205                 /*
7206                  * To rebuild extent tree, we need deal with snapshot
7207                  * one by one, otherwise we deal with node firstly which
7208                  * can maximize readahead.
7209                  */
7210                 if (!init_extent_tree && !rec->drop_level)
7211                         goto skip;
7212                 while (1) {
7213                         ret = run_next_block(trans, root, bits, bits_nr, &last,
7214                                              pending, seen, reada,
7215                                              nodes, extent_cache,
7216                                              chunk_cache, dev_cache,
7217                                              block_group_cache,
7218                                              dev_extent_cache, rec);
7219                         if (ret != 0)
7220                                 break;
7221                 }
7222 skip:
7223                 free_extent_buffer(buf);
7224                 list_del(&rec->list);
7225                 free(rec);
7226         }
7227         while (ret >= 0) {
7228                 ret = run_next_block(trans, root, bits, bits_nr, &last,
7229                                      pending, seen, reada,
7230                                      nodes, extent_cache,
7231                                      chunk_cache, dev_cache,
7232                                      block_group_cache,
7233                                      dev_extent_cache, NULL);
7234                 if (ret != 0) {
7235                         if (ret > 0)
7236                                 ret = 0;
7237                         break;
7238                 }
7239         }
7240         return ret;
7241 }
7242
7243 static int check_chunks_and_extents(struct btrfs_root *root)
7244 {
7245         struct rb_root dev_cache;
7246         struct cache_tree chunk_cache;
7247         struct block_group_tree block_group_cache;
7248         struct device_extent_tree dev_extent_cache;
7249         struct cache_tree extent_cache;
7250         struct cache_tree seen;
7251         struct cache_tree pending;
7252         struct cache_tree reada;
7253         struct cache_tree nodes;
7254         struct cache_tree corrupt_blocks;
7255         struct btrfs_path path;
7256         struct btrfs_key key;
7257         struct btrfs_key found_key;
7258         int ret, err = 0;
7259         struct block_info *bits;
7260         int bits_nr;
7261         struct extent_buffer *leaf;
7262         struct btrfs_trans_handle *trans = NULL;
7263         int slot;
7264         struct btrfs_root_item ri;
7265         struct list_head dropping_trees;
7266         struct list_head normal_trees;
7267         struct btrfs_root *root1;
7268         u64 objectid;
7269         u32 level_size;
7270         u8 level;
7271
7272         dev_cache = RB_ROOT;
7273         cache_tree_init(&chunk_cache);
7274         block_group_tree_init(&block_group_cache);
7275         device_extent_tree_init(&dev_extent_cache);
7276
7277         cache_tree_init(&extent_cache);
7278         cache_tree_init(&seen);
7279         cache_tree_init(&pending);
7280         cache_tree_init(&nodes);
7281         cache_tree_init(&reada);
7282         cache_tree_init(&corrupt_blocks);
7283         INIT_LIST_HEAD(&dropping_trees);
7284         INIT_LIST_HEAD(&normal_trees);
7285
7286         if (repair) {
7287                 trans = btrfs_start_transaction(root, 1);
7288                 if (IS_ERR(trans)) {
7289                         fprintf(stderr, "Error starting transaction\n");
7290                         return PTR_ERR(trans);
7291                 }
7292                 root->fs_info->fsck_extent_cache = &extent_cache;
7293                 root->fs_info->free_extent_hook = free_extent_hook;
7294                 root->fs_info->corrupt_blocks = &corrupt_blocks;
7295         }
7296
7297         bits_nr = 1024;
7298         bits = malloc(bits_nr * sizeof(struct block_info));
7299         if (!bits) {
7300                 perror("malloc");
7301                 exit(1);
7302         }
7303
7304 again:
7305         root1 = root->fs_info->tree_root;
7306         level = btrfs_header_level(root1->node);
7307         ret = add_root_item_to_list(&normal_trees, root1->root_key.objectid,
7308                                     root1->node->start, level, 0,
7309                                     btrfs_level_size(root1, level), NULL);
7310         if (ret < 0)
7311                 goto out;
7312         root1 = root->fs_info->chunk_root;
7313         level = btrfs_header_level(root1->node);
7314         ret = add_root_item_to_list(&normal_trees, root1->root_key.objectid,
7315                                     root1->node->start, level, 0,
7316                                     btrfs_level_size(root1, level), NULL);
7317         if (ret < 0)
7318                 goto out;
7319         btrfs_init_path(&path);
7320         key.offset = 0;
7321         key.objectid = 0;
7322         btrfs_set_key_type(&key, BTRFS_ROOT_ITEM_KEY);
7323         ret = btrfs_search_slot(NULL, root->fs_info->tree_root,
7324                                         &key, &path, 0, 0);
7325         if (ret < 0)
7326                 goto out;
7327         while(1) {
7328                 leaf = path.nodes[0];
7329                 slot = path.slots[0];
7330                 if (slot >= btrfs_header_nritems(path.nodes[0])) {
7331                         ret = btrfs_next_leaf(root, &path);
7332                         if (ret != 0)
7333                                 break;
7334                         leaf = path.nodes[0];
7335                         slot = path.slots[0];
7336                 }
7337                 btrfs_item_key_to_cpu(leaf, &found_key, path.slots[0]);
7338                 if (btrfs_key_type(&found_key) == BTRFS_ROOT_ITEM_KEY) {
7339                         unsigned long offset;
7340
7341                         offset = btrfs_item_ptr_offset(leaf, path.slots[0]);
7342                         read_extent_buffer(leaf, &ri, offset, sizeof(ri));
7343                         if (btrfs_disk_key_objectid(&ri.drop_progress) == 0) {
7344                                 level = btrfs_root_level(&ri);
7345                                 level_size = btrfs_level_size(root, level);
7346                                 ret = add_root_item_to_list(&normal_trees,
7347                                                 found_key.objectid,
7348                                                 btrfs_root_bytenr(&ri), level,
7349                                                 0, level_size, NULL);
7350                                 if (ret < 0)
7351                                         goto out;
7352                         } else {
7353                                 level = btrfs_root_level(&ri);
7354                                 level_size = btrfs_level_size(root, level);
7355                                 objectid = found_key.objectid;
7356                                 btrfs_disk_key_to_cpu(&found_key,
7357                                                       &ri.drop_progress);
7358                                 ret = add_root_item_to_list(&dropping_trees,
7359                                                 objectid,
7360                                                 btrfs_root_bytenr(&ri),
7361                                                 level, ri.drop_level,
7362                                                 level_size, &found_key);
7363                                 if (ret < 0)
7364                                         goto out;
7365                         }
7366                 }
7367                 path.slots[0]++;
7368         }
7369         btrfs_release_path(&path);
7370         ret = deal_root_from_list(&normal_trees, trans, root,
7371                                   bits, bits_nr, &pending, &seen,
7372                                   &reada, &nodes, &extent_cache,
7373                                   &chunk_cache, &dev_cache, &block_group_cache,
7374                                   &dev_extent_cache);
7375         if (ret < 0)
7376                 goto out;
7377         ret = deal_root_from_list(&dropping_trees, trans, root,
7378                                   bits, bits_nr, &pending, &seen,
7379                                   &reada, &nodes, &extent_cache,
7380                                   &chunk_cache, &dev_cache, &block_group_cache,
7381                                   &dev_extent_cache);
7382         if (ret < 0)
7383                 goto out;
7384         if (ret >= 0)
7385                 ret = check_extent_refs(trans, root, &extent_cache);
7386         if (ret == -EAGAIN) {
7387                 ret = btrfs_commit_transaction(trans, root);
7388                 if (ret)
7389                         goto out;
7390
7391                 trans = btrfs_start_transaction(root, 1);
7392                 if (IS_ERR(trans)) {
7393                         ret = PTR_ERR(trans);
7394                         goto out;
7395                 }
7396
7397                 free_corrupt_blocks_tree(root->fs_info->corrupt_blocks);
7398                 free_extent_cache_tree(&seen);
7399                 free_extent_cache_tree(&pending);
7400                 free_extent_cache_tree(&reada);
7401                 free_extent_cache_tree(&nodes);
7402                 free_chunk_cache_tree(&chunk_cache);
7403                 free_block_group_tree(&block_group_cache);
7404                 free_device_cache_tree(&dev_cache);
7405                 free_device_extent_tree(&dev_extent_cache);
7406                 free_extent_record_cache(root->fs_info, &extent_cache);
7407                 goto again;
7408         }
7409
7410         err = check_chunks(&chunk_cache, &block_group_cache,
7411                            &dev_extent_cache, NULL, NULL, NULL, 0);
7412         if (err && !ret)
7413                 ret = err;
7414
7415         err = check_devices(&dev_cache, &dev_extent_cache);
7416         if (err && !ret)
7417                 ret = err;
7418
7419 out:
7420         if (trans) {
7421                 err = btrfs_commit_transaction(trans, root);
7422                 if (!ret)
7423                         ret = err;
7424         }
7425         if (repair) {
7426                 free_corrupt_blocks_tree(root->fs_info->corrupt_blocks);
7427                 root->fs_info->fsck_extent_cache = NULL;
7428                 root->fs_info->free_extent_hook = NULL;
7429                 root->fs_info->corrupt_blocks = NULL;
7430         }
7431         free(bits);
7432         free_chunk_cache_tree(&chunk_cache);
7433         free_device_cache_tree(&dev_cache);
7434         free_block_group_tree(&block_group_cache);
7435         free_device_extent_tree(&dev_extent_cache);
7436         free_extent_cache_tree(&seen);
7437         free_extent_cache_tree(&pending);
7438         free_extent_cache_tree(&reada);
7439         free_extent_cache_tree(&nodes);
7440         return ret;
7441 }
7442
7443 static int btrfs_fsck_reinit_root(struct btrfs_trans_handle *trans,
7444                            struct btrfs_root *root, int overwrite)
7445 {
7446         struct extent_buffer *c;
7447         struct extent_buffer *old = root->node;
7448         int level;
7449         int ret;
7450         struct btrfs_disk_key disk_key = {0,0,0};
7451
7452         level = 0;
7453
7454         if (overwrite) {
7455                 c = old;
7456                 extent_buffer_get(c);
7457                 goto init;
7458         }
7459         c = btrfs_alloc_free_block(trans, root,
7460                                    btrfs_level_size(root, 0),
7461                                    root->root_key.objectid,
7462                                    &disk_key, level, 0, 0);
7463         if (IS_ERR(c)) {
7464                 c = old;
7465                 extent_buffer_get(c);
7466                 overwrite = 1;
7467         }
7468 init:
7469         memset_extent_buffer(c, 0, 0, sizeof(struct btrfs_header));
7470         btrfs_set_header_level(c, level);
7471         btrfs_set_header_bytenr(c, c->start);
7472         btrfs_set_header_generation(c, trans->transid);
7473         btrfs_set_header_backref_rev(c, BTRFS_MIXED_BACKREF_REV);
7474         btrfs_set_header_owner(c, root->root_key.objectid);
7475
7476         write_extent_buffer(c, root->fs_info->fsid,
7477                             btrfs_header_fsid(), BTRFS_FSID_SIZE);
7478
7479         write_extent_buffer(c, root->fs_info->chunk_tree_uuid,
7480                             btrfs_header_chunk_tree_uuid(c),
7481                             BTRFS_UUID_SIZE);
7482
7483         btrfs_mark_buffer_dirty(c);
7484         /*
7485          * this case can happen in the following case:
7486          *
7487          * 1.overwrite previous root.
7488          *
7489          * 2.reinit reloc data root, this is because we skip pin
7490          * down reloc data tree before which means we can allocate
7491          * same block bytenr here.
7492          */
7493         if (old->start == c->start) {
7494                 btrfs_set_root_generation(&root->root_item,
7495                                           trans->transid);
7496                 root->root_item.level = btrfs_header_level(root->node);
7497                 ret = btrfs_update_root(trans, root->fs_info->tree_root,
7498                                         &root->root_key, &root->root_item);
7499                 if (ret) {
7500                         free_extent_buffer(c);
7501                         return ret;
7502                 }
7503         }
7504         free_extent_buffer(old);
7505         root->node = c;
7506         add_root_to_dirty_list(root);
7507         return 0;
7508 }
7509
7510 static int pin_down_tree_blocks(struct btrfs_fs_info *fs_info,
7511                                 struct extent_buffer *eb, int tree_root)
7512 {
7513         struct extent_buffer *tmp;
7514         struct btrfs_root_item *ri;
7515         struct btrfs_key key;
7516         u64 bytenr;
7517         u32 leafsize;
7518         int level = btrfs_header_level(eb);
7519         int nritems;
7520         int ret;
7521         int i;
7522
7523         /*
7524          * If we have pinned this block before, don't pin it again.
7525          * This can not only avoid forever loop with broken filesystem
7526          * but also give us some speedups.
7527          */
7528         if (test_range_bit(&fs_info->pinned_extents, eb->start,
7529                            eb->start + eb->len - 1, EXTENT_DIRTY, 0))
7530                 return 0;
7531
7532         btrfs_pin_extent(fs_info, eb->start, eb->len);
7533
7534         leafsize = btrfs_super_leafsize(fs_info->super_copy);
7535         nritems = btrfs_header_nritems(eb);
7536         for (i = 0; i < nritems; i++) {
7537                 if (level == 0) {
7538                         btrfs_item_key_to_cpu(eb, &key, i);
7539                         if (key.type != BTRFS_ROOT_ITEM_KEY)
7540                                 continue;
7541                         /* Skip the extent root and reloc roots */
7542                         if (key.objectid == BTRFS_EXTENT_TREE_OBJECTID ||
7543                             key.objectid == BTRFS_TREE_RELOC_OBJECTID ||
7544                             key.objectid == BTRFS_DATA_RELOC_TREE_OBJECTID)
7545                                 continue;
7546                         ri = btrfs_item_ptr(eb, i, struct btrfs_root_item);
7547                         bytenr = btrfs_disk_root_bytenr(eb, ri);
7548
7549                         /*
7550                          * If at any point we start needing the real root we
7551                          * will have to build a stump root for the root we are
7552                          * in, but for now this doesn't actually use the root so
7553                          * just pass in extent_root.
7554                          */
7555                         tmp = read_tree_block(fs_info->extent_root, bytenr,
7556                                               leafsize, 0);
7557                         if (!tmp) {
7558                                 fprintf(stderr, "Error reading root block\n");
7559                                 return -EIO;
7560                         }
7561                         ret = pin_down_tree_blocks(fs_info, tmp, 0);
7562                         free_extent_buffer(tmp);
7563                         if (ret)
7564                                 return ret;
7565                 } else {
7566                         bytenr = btrfs_node_blockptr(eb, i);
7567
7568                         /* If we aren't the tree root don't read the block */
7569                         if (level == 1 && !tree_root) {
7570                                 btrfs_pin_extent(fs_info, bytenr, leafsize);
7571                                 continue;
7572                         }
7573
7574                         tmp = read_tree_block(fs_info->extent_root, bytenr,
7575                                               leafsize, 0);
7576                         if (!tmp) {
7577                                 fprintf(stderr, "Error reading tree block\n");
7578                                 return -EIO;
7579                         }
7580                         ret = pin_down_tree_blocks(fs_info, tmp, tree_root);
7581                         free_extent_buffer(tmp);
7582                         if (ret)
7583                                 return ret;
7584                 }
7585         }
7586
7587         return 0;
7588 }
7589
7590 static int pin_metadata_blocks(struct btrfs_fs_info *fs_info)
7591 {
7592         int ret;
7593
7594         ret = pin_down_tree_blocks(fs_info, fs_info->chunk_root->node, 0);
7595         if (ret)
7596                 return ret;
7597
7598         return pin_down_tree_blocks(fs_info, fs_info->tree_root->node, 1);
7599 }
7600
7601 static int reset_block_groups(struct btrfs_fs_info *fs_info)
7602 {
7603         struct btrfs_block_group_cache *cache;
7604         struct btrfs_path *path;
7605         struct extent_buffer *leaf;
7606         struct btrfs_chunk *chunk;
7607         struct btrfs_key key;
7608         int ret;
7609         u64 start;
7610
7611         path = btrfs_alloc_path();
7612         if (!path)
7613                 return -ENOMEM;
7614
7615         key.objectid = 0;
7616         key.type = BTRFS_CHUNK_ITEM_KEY;
7617         key.offset = 0;
7618
7619         ret = btrfs_search_slot(NULL, fs_info->chunk_root, &key, path, 0, 0);
7620         if (ret < 0) {
7621                 btrfs_free_path(path);
7622                 return ret;
7623         }
7624
7625         /*
7626          * We do this in case the block groups were screwed up and had alloc
7627          * bits that aren't actually set on the chunks.  This happens with
7628          * restored images every time and could happen in real life I guess.
7629          */
7630         fs_info->avail_data_alloc_bits = 0;
7631         fs_info->avail_metadata_alloc_bits = 0;
7632         fs_info->avail_system_alloc_bits = 0;
7633
7634         /* First we need to create the in-memory block groups */
7635         while (1) {
7636                 if (path->slots[0] >= btrfs_header_nritems(path->nodes[0])) {
7637                         ret = btrfs_next_leaf(fs_info->chunk_root, path);
7638                         if (ret < 0) {
7639                                 btrfs_free_path(path);
7640                                 return ret;
7641                         }
7642                         if (ret) {
7643                                 ret = 0;
7644                                 break;
7645                         }
7646                 }
7647                 leaf = path->nodes[0];
7648                 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
7649                 if (key.type != BTRFS_CHUNK_ITEM_KEY) {
7650                         path->slots[0]++;
7651                         continue;
7652                 }
7653
7654                 chunk = btrfs_item_ptr(leaf, path->slots[0],
7655                                        struct btrfs_chunk);
7656                 btrfs_add_block_group(fs_info, 0,
7657                                       btrfs_chunk_type(leaf, chunk),
7658                                       key.objectid, key.offset,
7659                                       btrfs_chunk_length(leaf, chunk));
7660                 set_extent_dirty(&fs_info->free_space_cache, key.offset,
7661                                  key.offset + btrfs_chunk_length(leaf, chunk),
7662                                  GFP_NOFS);
7663                 path->slots[0]++;
7664         }
7665         start = 0;
7666         while (1) {
7667                 cache = btrfs_lookup_first_block_group(fs_info, start);
7668                 if (!cache)
7669                         break;
7670                 cache->cached = 1;
7671                 start = cache->key.objectid + cache->key.offset;
7672         }
7673
7674         btrfs_free_path(path);
7675         return 0;
7676 }
7677
7678 static int reset_balance(struct btrfs_trans_handle *trans,
7679                          struct btrfs_fs_info *fs_info)
7680 {
7681         struct btrfs_root *root = fs_info->tree_root;
7682         struct btrfs_path *path;
7683         struct extent_buffer *leaf;
7684         struct btrfs_key key;
7685         int del_slot, del_nr = 0;
7686         int ret;
7687         int found = 0;
7688
7689         path = btrfs_alloc_path();
7690         if (!path)
7691                 return -ENOMEM;
7692
7693         key.objectid = BTRFS_BALANCE_OBJECTID;
7694         key.type = BTRFS_BALANCE_ITEM_KEY;
7695         key.offset = 0;
7696
7697         ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
7698         if (ret) {
7699                 if (ret > 0)
7700                         ret = 0;
7701                 if (!ret)
7702                         goto reinit_data_reloc;
7703                 else
7704                         goto out;
7705         }
7706
7707         ret = btrfs_del_item(trans, root, path);
7708         if (ret)
7709                 goto out;
7710         btrfs_release_path(path);
7711
7712         key.objectid = BTRFS_TREE_RELOC_OBJECTID;
7713         key.type = BTRFS_ROOT_ITEM_KEY;
7714         key.offset = 0;
7715
7716         ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
7717         if (ret < 0)
7718                 goto out;
7719         while (1) {
7720                 if (path->slots[0] >= btrfs_header_nritems(path->nodes[0])) {
7721                         if (!found)
7722                                 break;
7723
7724                         if (del_nr) {
7725                                 ret = btrfs_del_items(trans, root, path,
7726                                                       del_slot, del_nr);
7727                                 del_nr = 0;
7728                                 if (ret)
7729                                         goto out;
7730                         }
7731                         key.offset++;
7732                         btrfs_release_path(path);
7733
7734                         found = 0;
7735                         ret = btrfs_search_slot(trans, root, &key, path,
7736                                                 -1, 1);
7737                         if (ret < 0)
7738                                 goto out;
7739                         continue;
7740                 }
7741                 found = 1;
7742                 leaf = path->nodes[0];
7743                 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
7744                 if (key.objectid > BTRFS_TREE_RELOC_OBJECTID)
7745                         break;
7746                 if (key.objectid != BTRFS_TREE_RELOC_OBJECTID) {
7747                         path->slots[0]++;
7748                         continue;
7749                 }
7750                 if (!del_nr) {
7751                         del_slot = path->slots[0];
7752                         del_nr = 1;
7753                 } else {
7754                         del_nr++;
7755                 }
7756                 path->slots[0]++;
7757         }
7758
7759         if (del_nr) {
7760                 ret = btrfs_del_items(trans, root, path, del_slot, del_nr);
7761                 if (ret)
7762                         goto out;
7763         }
7764         btrfs_release_path(path);
7765
7766 reinit_data_reloc:
7767         key.objectid = BTRFS_DATA_RELOC_TREE_OBJECTID;
7768         key.type = BTRFS_ROOT_ITEM_KEY;
7769         key.offset = (u64)-1;
7770         root = btrfs_read_fs_root(fs_info, &key);
7771         if (IS_ERR(root)) {
7772                 fprintf(stderr, "Error reading data reloc tree\n");
7773                 return PTR_ERR(root);
7774         }
7775         record_root_in_trans(trans, root);
7776         ret = btrfs_fsck_reinit_root(trans, root, 0);
7777         if (ret)
7778                 goto out;
7779         ret = btrfs_make_root_dir(trans, root, BTRFS_FIRST_FREE_OBJECTID);
7780 out:
7781         btrfs_free_path(path);
7782         return ret;
7783 }
7784
7785 static int reinit_extent_tree(struct btrfs_trans_handle *trans,
7786                               struct btrfs_fs_info *fs_info)
7787 {
7788         u64 start = 0;
7789         int ret;
7790
7791         /*
7792          * The only reason we don't do this is because right now we're just
7793          * walking the trees we find and pinning down their bytes, we don't look
7794          * at any of the leaves.  In order to do mixed groups we'd have to check
7795          * the leaves of any fs roots and pin down the bytes for any file
7796          * extents we find.  Not hard but why do it if we don't have to?
7797          */
7798         if (btrfs_fs_incompat(fs_info, BTRFS_FEATURE_INCOMPAT_MIXED_GROUPS)) {
7799                 fprintf(stderr, "We don't support re-initing the extent tree "
7800                         "for mixed block groups yet, please notify a btrfs "
7801                         "developer you want to do this so they can add this "
7802                         "functionality.\n");
7803                 return -EINVAL;
7804         }
7805
7806         /*
7807          * first we need to walk all of the trees except the extent tree and pin
7808          * down the bytes that are in use so we don't overwrite any existing
7809          * metadata.
7810          */
7811         ret = pin_metadata_blocks(fs_info);
7812         if (ret) {
7813                 fprintf(stderr, "error pinning down used bytes\n");
7814                 return ret;
7815         }
7816
7817         /*
7818          * Need to drop all the block groups since we're going to recreate all
7819          * of them again.
7820          */
7821         btrfs_free_block_groups(fs_info);
7822         ret = reset_block_groups(fs_info);
7823         if (ret) {
7824                 fprintf(stderr, "error resetting the block groups\n");
7825                 return ret;
7826         }
7827
7828         /* Ok we can allocate now, reinit the extent root */
7829         ret = btrfs_fsck_reinit_root(trans, fs_info->extent_root, 0);
7830         if (ret) {
7831                 fprintf(stderr, "extent root initialization failed\n");
7832                 /*
7833                  * When the transaction code is updated we should end the
7834                  * transaction, but for now progs only knows about commit so
7835                  * just return an error.
7836                  */
7837                 return ret;
7838         }
7839
7840         /*
7841          * Now we have all the in-memory block groups setup so we can make
7842          * allocations properly, and the metadata we care about is safe since we
7843          * pinned all of it above.
7844          */
7845         while (1) {
7846                 struct btrfs_block_group_cache *cache;
7847
7848                 cache = btrfs_lookup_first_block_group(fs_info, start);
7849                 if (!cache)
7850                         break;
7851                 start = cache->key.objectid + cache->key.offset;
7852                 ret = btrfs_insert_item(trans, fs_info->extent_root,
7853                                         &cache->key, &cache->item,
7854                                         sizeof(cache->item));
7855                 if (ret) {
7856                         fprintf(stderr, "Error adding block group\n");
7857                         return ret;
7858                 }
7859                 btrfs_extent_post_op(trans, fs_info->extent_root);
7860         }
7861
7862         ret = reset_balance(trans, fs_info);
7863         if (ret)
7864                 fprintf(stderr, "error reseting the pending balance\n");
7865
7866         return ret;
7867 }
7868
7869 static int recow_extent_buffer(struct btrfs_root *root, struct extent_buffer *eb)
7870 {
7871         struct btrfs_path *path;
7872         struct btrfs_trans_handle *trans;
7873         struct btrfs_key key;
7874         int ret;
7875
7876         printf("Recowing metadata block %llu\n", eb->start);
7877         key.objectid = btrfs_header_owner(eb);
7878         key.type = BTRFS_ROOT_ITEM_KEY;
7879         key.offset = (u64)-1;
7880
7881         root = btrfs_read_fs_root(root->fs_info, &key);
7882         if (IS_ERR(root)) {
7883                 fprintf(stderr, "Couldn't find owner root %llu\n",
7884                         key.objectid);
7885                 return PTR_ERR(root);
7886         }
7887
7888         path = btrfs_alloc_path();
7889         if (!path)
7890                 return -ENOMEM;
7891
7892         trans = btrfs_start_transaction(root, 1);
7893         if (IS_ERR(trans)) {
7894                 btrfs_free_path(path);
7895                 return PTR_ERR(trans);
7896         }
7897
7898         path->lowest_level = btrfs_header_level(eb);
7899         if (path->lowest_level)
7900                 btrfs_node_key_to_cpu(eb, &key, 0);
7901         else
7902                 btrfs_item_key_to_cpu(eb, &key, 0);
7903
7904         ret = btrfs_search_slot(trans, root, &key, path, 0, 1);
7905         btrfs_commit_transaction(trans, root);
7906         btrfs_free_path(path);
7907         return ret;
7908 }
7909
7910 static int delete_bad_item(struct btrfs_root *root, struct bad_item *bad)
7911 {
7912         struct btrfs_path *path;
7913         struct btrfs_trans_handle *trans;
7914         struct btrfs_key key;
7915         int ret;
7916
7917         printf("Deleting bad item [%llu,%u,%llu]\n", bad->key.objectid,
7918                bad->key.type, bad->key.offset);
7919         key.objectid = bad->root_id;
7920         key.type = BTRFS_ROOT_ITEM_KEY;
7921         key.offset = (u64)-1;
7922
7923         root = btrfs_read_fs_root(root->fs_info, &key);
7924         if (IS_ERR(root)) {
7925                 fprintf(stderr, "Couldn't find owner root %llu\n",
7926                         key.objectid);
7927                 return PTR_ERR(root);
7928         }
7929
7930         path = btrfs_alloc_path();
7931         if (!path)
7932                 return -ENOMEM;
7933
7934         trans = btrfs_start_transaction(root, 1);
7935         if (IS_ERR(trans)) {
7936                 btrfs_free_path(path);
7937                 return PTR_ERR(trans);
7938         }
7939
7940         ret = btrfs_search_slot(trans, root, &bad->key, path, -1, 1);
7941         if (ret) {
7942                 if (ret > 0)
7943                         ret = 0;
7944                 goto out;
7945         }
7946         ret = btrfs_del_item(trans, root, path);
7947 out:
7948         btrfs_commit_transaction(trans, root);
7949         btrfs_free_path(path);
7950         return ret;
7951 }
7952
7953 static int zero_log_tree(struct btrfs_root *root)
7954 {
7955         struct btrfs_trans_handle *trans;
7956         int ret;
7957
7958         trans = btrfs_start_transaction(root, 1);
7959         if (IS_ERR(trans)) {
7960                 ret = PTR_ERR(trans);
7961                 return ret;
7962         }
7963         btrfs_set_super_log_root(root->fs_info->super_copy, 0);
7964         btrfs_set_super_log_root_level(root->fs_info->super_copy, 0);
7965         ret = btrfs_commit_transaction(trans, root);
7966         return ret;
7967 }
7968
7969 static int populate_csum(struct btrfs_trans_handle *trans,
7970                          struct btrfs_root *csum_root, char *buf, u64 start,
7971                          u64 len)
7972 {
7973         u64 offset = 0;
7974         u64 sectorsize;
7975         int ret = 0;
7976
7977         while (offset < len) {
7978                 sectorsize = csum_root->sectorsize;
7979                 ret = read_extent_data(csum_root, buf, start + offset,
7980                                        &sectorsize, 0);
7981                 if (ret)
7982                         break;
7983                 ret = btrfs_csum_file_block(trans, csum_root, start + len,
7984                                             start + offset, buf, sectorsize);
7985                 if (ret)
7986                         break;
7987                 offset += sectorsize;
7988         }
7989         return ret;
7990 }
7991
7992 static int fill_csum_tree(struct btrfs_trans_handle *trans,
7993                           struct btrfs_root *csum_root)
7994 {
7995         struct btrfs_root *extent_root = csum_root->fs_info->extent_root;
7996         struct btrfs_path *path;
7997         struct btrfs_extent_item *ei;
7998         struct extent_buffer *leaf;
7999         char *buf;
8000         struct btrfs_key key;
8001         int ret;
8002
8003         path = btrfs_alloc_path();
8004         if (!path)
8005                 return -ENOMEM;
8006
8007         key.objectid = 0;
8008         key.type = BTRFS_EXTENT_ITEM_KEY;
8009         key.offset = 0;
8010
8011         ret = btrfs_search_slot(NULL, extent_root, &key, path, 0, 0);
8012         if (ret < 0) {
8013                 btrfs_free_path(path);
8014                 return ret;
8015         }
8016
8017         buf = malloc(csum_root->sectorsize);
8018         if (!buf) {
8019                 btrfs_free_path(path);
8020                 return -ENOMEM;
8021         }
8022
8023         while (1) {
8024                 if (path->slots[0] >= btrfs_header_nritems(path->nodes[0])) {
8025                         ret = btrfs_next_leaf(extent_root, path);
8026                         if (ret < 0)
8027                                 break;
8028                         if (ret) {
8029                                 ret = 0;
8030                                 break;
8031                         }
8032                 }
8033                 leaf = path->nodes[0];
8034
8035                 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
8036                 if (key.type != BTRFS_EXTENT_ITEM_KEY) {
8037                         path->slots[0]++;
8038                         continue;
8039                 }
8040
8041                 ei = btrfs_item_ptr(leaf, path->slots[0],
8042                                     struct btrfs_extent_item);
8043                 if (!(btrfs_extent_flags(leaf, ei) &
8044                       BTRFS_EXTENT_FLAG_DATA)) {
8045                         path->slots[0]++;
8046                         continue;
8047                 }
8048
8049                 ret = populate_csum(trans, csum_root, buf, key.objectid,
8050                                     key.offset);
8051                 if (ret)
8052                         break;
8053                 path->slots[0]++;
8054         }
8055
8056         btrfs_free_path(path);
8057         free(buf);
8058         return ret;
8059 }
8060
8061 struct root_item_info {
8062         /* level of the root */
8063         u8 level;
8064         /* number of nodes at this level, must be 1 for a root */
8065         int node_count;
8066         u64 bytenr;
8067         u64 gen;
8068         struct cache_extent cache_extent;
8069 };
8070
8071 static struct cache_tree *roots_info_cache = NULL;
8072
8073 static void free_roots_info_cache(void)
8074 {
8075         if (!roots_info_cache)
8076                 return;
8077
8078         while (!cache_tree_empty(roots_info_cache)) {
8079                 struct cache_extent *entry;
8080                 struct root_item_info *rii;
8081
8082                 entry = first_cache_extent(roots_info_cache);
8083                 if (!entry)
8084                         break;
8085                 remove_cache_extent(roots_info_cache, entry);
8086                 rii = container_of(entry, struct root_item_info, cache_extent);
8087                 free(rii);
8088         }
8089
8090         free(roots_info_cache);
8091         roots_info_cache = NULL;
8092 }
8093
8094 static int build_roots_info_cache(struct btrfs_fs_info *info)
8095 {
8096         int ret = 0;
8097         struct btrfs_key key;
8098         struct extent_buffer *leaf;
8099         struct btrfs_path *path;
8100
8101         if (!roots_info_cache) {
8102                 roots_info_cache = malloc(sizeof(*roots_info_cache));
8103                 if (!roots_info_cache)
8104                         return -ENOMEM;
8105                 cache_tree_init(roots_info_cache);
8106         }
8107
8108         path = btrfs_alloc_path();
8109         if (!path)
8110                 return -ENOMEM;
8111
8112         key.objectid = 0;
8113         key.type = BTRFS_EXTENT_ITEM_KEY;
8114         key.offset = 0;
8115
8116         ret = btrfs_search_slot(NULL, info->extent_root, &key, path, 0, 0);
8117         if (ret < 0)
8118                 goto out;
8119         leaf = path->nodes[0];
8120
8121         while (1) {
8122                 struct btrfs_key found_key;
8123                 struct btrfs_extent_item *ei;
8124                 struct btrfs_extent_inline_ref *iref;
8125                 int slot = path->slots[0];
8126                 int type;
8127                 u64 flags;
8128                 u64 root_id;
8129                 u8 level;
8130                 struct cache_extent *entry;
8131                 struct root_item_info *rii;
8132
8133                 if (slot >= btrfs_header_nritems(leaf)) {
8134                         ret = btrfs_next_leaf(info->extent_root, path);
8135                         if (ret < 0) {
8136                                 break;
8137                         } else if (ret) {
8138                                 ret = 0;
8139                                 break;
8140                         }
8141                         leaf = path->nodes[0];
8142                         slot = path->slots[0];
8143                 }
8144
8145                 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
8146
8147                 if (found_key.type != BTRFS_EXTENT_ITEM_KEY &&
8148                     found_key.type != BTRFS_METADATA_ITEM_KEY)
8149                         goto next;
8150
8151                 ei = btrfs_item_ptr(leaf, slot, struct btrfs_extent_item);
8152                 flags = btrfs_extent_flags(leaf, ei);
8153
8154                 if (found_key.type == BTRFS_EXTENT_ITEM_KEY &&
8155                     !(flags & BTRFS_EXTENT_FLAG_TREE_BLOCK))
8156                         goto next;
8157
8158                 if (found_key.type == BTRFS_METADATA_ITEM_KEY) {
8159                         iref = (struct btrfs_extent_inline_ref *)(ei + 1);
8160                         level = found_key.offset;
8161                 } else {
8162                         struct btrfs_tree_block_info *info;
8163
8164                         info = (struct btrfs_tree_block_info *)(ei + 1);
8165                         iref = (struct btrfs_extent_inline_ref *)(info + 1);
8166                         level = btrfs_tree_block_level(leaf, info);
8167                 }
8168
8169                 /*
8170                  * For a root extent, it must be of the following type and the
8171                  * first (and only one) iref in the item.
8172                  */
8173                 type = btrfs_extent_inline_ref_type(leaf, iref);
8174                 if (type != BTRFS_TREE_BLOCK_REF_KEY)
8175                         goto next;
8176
8177                 root_id = btrfs_extent_inline_ref_offset(leaf, iref);
8178                 entry = lookup_cache_extent(roots_info_cache, root_id, 1);
8179                 if (!entry) {
8180                         rii = malloc(sizeof(struct root_item_info));
8181                         if (!rii) {
8182                                 ret = -ENOMEM;
8183                                 goto out;
8184                         }
8185                         rii->cache_extent.start = root_id;
8186                         rii->cache_extent.size = 1;
8187                         rii->level = (u8)-1;
8188                         entry = &rii->cache_extent;
8189                         ret = insert_cache_extent(roots_info_cache, entry);
8190                         ASSERT(ret == 0);
8191                 } else {
8192                         rii = container_of(entry, struct root_item_info,
8193                                            cache_extent);
8194                 }
8195
8196                 ASSERT(rii->cache_extent.start == root_id);
8197                 ASSERT(rii->cache_extent.size == 1);
8198
8199                 if (level > rii->level || rii->level == (u8)-1) {
8200                         rii->level = level;
8201                         rii->bytenr = found_key.objectid;
8202                         rii->gen = btrfs_extent_generation(leaf, ei);
8203                         rii->node_count = 1;
8204                 } else if (level == rii->level) {
8205                         rii->node_count++;
8206                 }
8207 next:
8208                 path->slots[0]++;
8209         }
8210
8211 out:
8212         btrfs_free_path(path);
8213
8214         return ret;
8215 }
8216
8217 static int maybe_repair_root_item(struct btrfs_fs_info *info,
8218                                   struct btrfs_path *path,
8219                                   const struct btrfs_key *root_key,
8220                                   const int read_only_mode)
8221 {
8222         const u64 root_id = root_key->objectid;
8223         struct cache_extent *entry;
8224         struct root_item_info *rii;
8225         struct btrfs_root_item ri;
8226         unsigned long offset;
8227
8228         entry = lookup_cache_extent(roots_info_cache, root_id, 1);
8229         if (!entry) {
8230                 fprintf(stderr,
8231                         "Error: could not find extent items for root %llu\n",
8232                         root_key->objectid);
8233                 return -ENOENT;
8234         }
8235
8236         rii = container_of(entry, struct root_item_info, cache_extent);
8237         ASSERT(rii->cache_extent.start == root_id);
8238         ASSERT(rii->cache_extent.size == 1);
8239
8240         if (rii->node_count != 1) {
8241                 fprintf(stderr,
8242                         "Error: could not find btree root extent for root %llu\n",
8243                         root_id);
8244                 return -ENOENT;
8245         }
8246
8247         offset = btrfs_item_ptr_offset(path->nodes[0], path->slots[0]);
8248         read_extent_buffer(path->nodes[0], &ri, offset, sizeof(ri));
8249
8250         if (btrfs_root_bytenr(&ri) != rii->bytenr ||
8251             btrfs_root_level(&ri) != rii->level ||
8252             btrfs_root_generation(&ri) != rii->gen) {
8253
8254                 /*
8255                  * If we're in repair mode but our caller told us to not update
8256                  * the root item, i.e. just check if it needs to be updated, don't
8257                  * print this message, since the caller will call us again shortly
8258                  * for the same root item without read only mode (the caller will
8259                  * open a transaction first).
8260                  */
8261                 if (!(read_only_mode && repair))
8262                         fprintf(stderr,
8263                                 "%sroot item for root %llu,"
8264                                 " current bytenr %llu, current gen %llu, current level %u,"
8265                                 " new bytenr %llu, new gen %llu, new level %u\n",
8266                                 (read_only_mode ? "" : "fixing "),
8267                                 root_id,
8268                                 btrfs_root_bytenr(&ri), btrfs_root_generation(&ri),
8269                                 btrfs_root_level(&ri),
8270                                 rii->bytenr, rii->gen, rii->level);
8271
8272                 if (btrfs_root_generation(&ri) > rii->gen) {
8273                         fprintf(stderr,
8274                                 "root %llu has a root item with a more recent gen (%llu) compared to the found root node (%llu)\n",
8275                                 root_id, btrfs_root_generation(&ri), rii->gen);
8276                         return -EINVAL;
8277                 }
8278
8279                 if (!read_only_mode) {
8280                         btrfs_set_root_bytenr(&ri, rii->bytenr);
8281                         btrfs_set_root_level(&ri, rii->level);
8282                         btrfs_set_root_generation(&ri, rii->gen);
8283                         write_extent_buffer(path->nodes[0], &ri,
8284                                             offset, sizeof(ri));
8285                 }
8286
8287                 return 1;
8288         }
8289
8290         return 0;
8291 }
8292
8293 /*
8294  * A regression introduced in the 3.17 kernel (more specifically in 3.17-rc2),
8295  * caused read-only snapshots to be corrupted if they were created at a moment
8296  * when the source subvolume/snapshot had orphan items. The issue was that the
8297  * on-disk root items became incorrect, referring to the pre orphan cleanup root
8298  * node instead of the post orphan cleanup root node.
8299  * So this function, and its callees, just detects and fixes those cases. Even
8300  * though the regression was for read-only snapshots, this function applies to
8301  * any snapshot/subvolume root.
8302  * This must be run before any other repair code - not doing it so, makes other
8303  * repair code delete or modify backrefs in the extent tree for example, which
8304  * will result in an inconsistent fs after repairing the root items.
8305  */
8306 static int repair_root_items(struct btrfs_fs_info *info)
8307 {
8308         struct btrfs_path *path = NULL;
8309         struct btrfs_key key;
8310         struct extent_buffer *leaf;
8311         struct btrfs_trans_handle *trans = NULL;
8312         int ret = 0;
8313         int bad_roots = 0;
8314         int need_trans = 0;
8315
8316         ret = build_roots_info_cache(info);
8317         if (ret)
8318                 goto out;
8319
8320         path = btrfs_alloc_path();
8321         if (!path) {
8322                 ret = -ENOMEM;
8323                 goto out;
8324         }
8325
8326         key.objectid = BTRFS_FIRST_FREE_OBJECTID;
8327         key.type = BTRFS_ROOT_ITEM_KEY;
8328         key.offset = 0;
8329
8330 again:
8331         /*
8332          * Avoid opening and committing transactions if a leaf doesn't have
8333          * any root items that need to be fixed, so that we avoid rotating
8334          * backup roots unnecessarily.
8335          */
8336         if (need_trans) {
8337                 trans = btrfs_start_transaction(info->tree_root, 1);
8338                 if (IS_ERR(trans)) {
8339                         ret = PTR_ERR(trans);
8340                         goto out;
8341                 }
8342         }
8343
8344         ret = btrfs_search_slot(trans, info->tree_root, &key, path,
8345                                 0, trans ? 1 : 0);
8346         if (ret < 0)
8347                 goto out;
8348         leaf = path->nodes[0];
8349
8350         while (1) {
8351                 struct btrfs_key found_key;
8352
8353                 if (path->slots[0] >= btrfs_header_nritems(leaf)) {
8354                         int no_more_keys = find_next_key(path, &key);
8355
8356                         btrfs_release_path(path);
8357                         if (trans) {
8358                                 ret = btrfs_commit_transaction(trans,
8359                                                                info->tree_root);
8360                                 trans = NULL;
8361                                 if (ret < 0)
8362                                         goto out;
8363                         }
8364                         need_trans = 0;
8365                         if (no_more_keys)
8366                                 break;
8367                         goto again;
8368                 }
8369
8370                 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
8371
8372                 if (found_key.type != BTRFS_ROOT_ITEM_KEY)
8373                         goto next;
8374
8375                 ret = maybe_repair_root_item(info, path, &found_key,
8376                                              trans ? 0 : 1);
8377                 if (ret < 0)
8378                         goto out;
8379                 if (ret) {
8380                         if (!trans && repair) {
8381                                 need_trans = 1;
8382                                 key = found_key;
8383                                 btrfs_release_path(path);
8384                                 goto again;
8385                         }
8386                         bad_roots++;
8387                 }
8388 next:
8389                 path->slots[0]++;
8390         }
8391         ret = 0;
8392 out:
8393         free_roots_info_cache();
8394         if (path)
8395                 btrfs_free_path(path);
8396         if (ret < 0)
8397                 return ret;
8398
8399         return bad_roots;
8400 }
8401
8402 static struct option long_options[] = {
8403         { "super", 1, NULL, 's' },
8404         { "repair", 0, NULL, 0 },
8405         { "init-csum-tree", 0, NULL, 0 },
8406         { "init-extent-tree", 0, NULL, 0 },
8407         { "check-data-csum", 0, NULL, 0 },
8408         { "backup", 0, NULL, 0 },
8409         { "subvol-extents", 1, NULL, 'E' },
8410         { "qgroup-report", 0, NULL, 'Q' },
8411         { "tree-root", 1, NULL, 'r' },
8412         { NULL, 0, NULL, 0}
8413 };
8414
8415 const char * const cmd_check_usage[] = {
8416         "btrfs check [options] <device>",
8417         "Check an unmounted btrfs filesystem.",
8418         "",
8419         "-s|--super <superblock>     use this superblock copy",
8420         "-b|--backup                 use the backup root copy",
8421         "--repair                    try to repair the filesystem",
8422         "--init-csum-tree            create a new CRC tree",
8423         "--init-extent-tree          create a new extent tree",
8424         "--check-data-csum           verify checkums of data blocks",
8425         "--qgroup-report             print a report on qgroup consistency",
8426         "--subvol-extents <subvolid> print subvolume extents and sharing state",
8427         "--tree-root <bytenr>        use the given bytenr for the tree root",
8428         NULL
8429 };
8430
8431 int cmd_check(int argc, char **argv)
8432 {
8433         struct cache_tree root_cache;
8434         struct btrfs_root *root;
8435         struct btrfs_fs_info *info;
8436         u64 bytenr = 0;
8437         u64 subvolid = 0;
8438         u64 tree_root_bytenr = 0;
8439         char uuidbuf[BTRFS_UUID_UNPARSED_SIZE];
8440         int ret;
8441         u64 num;
8442         int option_index = 0;
8443         int init_csum_tree = 0;
8444         int qgroup_report = 0;
8445         enum btrfs_open_ctree_flags ctree_flags = OPEN_CTREE_EXCLUSIVE;
8446
8447         while(1) {
8448                 int c;
8449                 c = getopt_long(argc, argv, "as:br:", long_options,
8450                                 &option_index);
8451                 if (c < 0)
8452                         break;
8453                 switch(c) {
8454                         case 'a': /* ignored */ break;
8455                         case 'b':
8456                                 ctree_flags |= OPEN_CTREE_BACKUP_ROOT;
8457                                 break;
8458                         case 's':
8459                                 num = arg_strtou64(optarg);
8460                                 if (num >= BTRFS_SUPER_MIRROR_MAX) {
8461                                         fprintf(stderr,
8462                                                 "ERROR: super mirror should be less than: %d\n",
8463                                                 BTRFS_SUPER_MIRROR_MAX);
8464                                         exit(1);
8465                                 }
8466                                 bytenr = btrfs_sb_offset(((int)num));
8467                                 printf("using SB copy %llu, bytenr %llu\n", num,
8468                                        (unsigned long long)bytenr);
8469                                 break;
8470                         case 'Q':
8471                                 qgroup_report = 1;
8472                                 break;
8473                         case 'E':
8474                                 subvolid = arg_strtou64(optarg);
8475                                 break;
8476                         case 'r':
8477                                 tree_root_bytenr = arg_strtou64(optarg);
8478                                 break;
8479                         case '?':
8480                         case 'h':
8481                                 usage(cmd_check_usage);
8482                 }
8483                 if (option_index == 1) {
8484                         printf("enabling repair mode\n");
8485                         repair = 1;
8486                         ctree_flags |= OPEN_CTREE_WRITES;
8487                 } else if (option_index == 2) {
8488                         printf("Creating a new CRC tree\n");
8489                         init_csum_tree = 1;
8490                         repair = 1;
8491                         ctree_flags |= OPEN_CTREE_WRITES;
8492                 } else if (option_index == 3) {
8493                         init_extent_tree = 1;
8494                         ctree_flags |= (OPEN_CTREE_WRITES |
8495                                         OPEN_CTREE_NO_BLOCK_GROUPS);
8496                         repair = 1;
8497                 } else if (option_index == 4) {
8498                         check_data_csum = 1;
8499                 }
8500         }
8501         argc = argc - optind;
8502
8503         if (check_argc_exact(argc, 1))
8504                 usage(cmd_check_usage);
8505
8506         radix_tree_init();
8507         cache_tree_init(&root_cache);
8508
8509         if((ret = check_mounted(argv[optind])) < 0) {
8510                 fprintf(stderr, "Could not check mount status: %s\n", strerror(-ret));
8511                 goto err_out;
8512         } else if(ret) {
8513                 fprintf(stderr, "%s is currently mounted. Aborting.\n", argv[optind]);
8514                 ret = -EBUSY;
8515                 goto err_out;
8516         }
8517
8518         /* only allow partial opening under repair mode */
8519         if (repair)
8520                 ctree_flags |= OPEN_CTREE_PARTIAL;
8521
8522         info = open_ctree_fs_info(argv[optind], bytenr, tree_root_bytenr,
8523                                   ctree_flags);
8524         if (!info) {
8525                 fprintf(stderr, "Couldn't open file system\n");
8526                 ret = -EIO;
8527                 goto err_out;
8528         }
8529
8530         root = info->fs_root;
8531
8532         /*
8533          * repair mode will force us to commit transaction which
8534          * will make us fail to load log tree when mounting.
8535          */
8536         if (repair && btrfs_super_log_root(info->super_copy)) {
8537                 ret = ask_user("repair mode will force to clear out log tree, Are you sure?");
8538                 if (!ret) {
8539                         ret = 1;
8540                         goto close_out;
8541                 }
8542                 ret = zero_log_tree(root);
8543                 if (ret) {
8544                         fprintf(stderr, "fail to zero log tree\n");
8545                         goto close_out;
8546                 }
8547         }
8548
8549         uuid_unparse(info->super_copy->fsid, uuidbuf);
8550         if (qgroup_report) {
8551                 printf("Print quota groups for %s\nUUID: %s\n", argv[optind],
8552                        uuidbuf);
8553                 ret = qgroup_verify_all(info);
8554                 if (ret == 0)
8555                         print_qgroup_report(1);
8556                 goto close_out;
8557         }
8558         if (subvolid) {
8559                 printf("Print extent state for subvolume %llu on %s\nUUID: %s\n",
8560                        subvolid, argv[optind], uuidbuf);
8561                 ret = print_extent_state(info, subvolid);
8562                 goto close_out;
8563         }
8564         printf("Checking filesystem on %s\nUUID: %s\n", argv[optind], uuidbuf);
8565
8566         if (!extent_buffer_uptodate(info->tree_root->node) ||
8567             !extent_buffer_uptodate(info->dev_root->node) ||
8568             !extent_buffer_uptodate(info->chunk_root->node)) {
8569                 fprintf(stderr, "Critical roots corrupted, unable to fsck the FS\n");
8570                 ret = -EIO;
8571                 goto close_out;
8572         }
8573
8574         if (init_extent_tree || init_csum_tree) {
8575                 struct btrfs_trans_handle *trans;
8576
8577                 trans = btrfs_start_transaction(info->extent_root, 0);
8578                 if (IS_ERR(trans)) {
8579                         fprintf(stderr, "Error starting transaction\n");
8580                         ret = PTR_ERR(trans);
8581                         goto close_out;
8582                 }
8583
8584                 if (init_extent_tree) {
8585                         printf("Creating a new extent tree\n");
8586                         ret = reinit_extent_tree(trans, info);
8587                         if (ret)
8588                                 goto close_out;
8589                 }
8590
8591                 if (init_csum_tree) {
8592                         fprintf(stderr, "Reinit crc root\n");
8593                         ret = btrfs_fsck_reinit_root(trans, info->csum_root, 0);
8594                         if (ret) {
8595                                 fprintf(stderr, "crc root initialization failed\n");
8596                                 ret = -EIO;
8597                                 goto close_out;
8598                         }
8599
8600                         ret = fill_csum_tree(trans, info->csum_root);
8601                         if (ret) {
8602                                 fprintf(stderr, "crc refilling failed\n");
8603                                 return -EIO;
8604                         }
8605                 }
8606                 /*
8607                  * Ok now we commit and run the normal fsck, which will add
8608                  * extent entries for all of the items it finds.
8609                  */
8610                 ret = btrfs_commit_transaction(trans, info->extent_root);
8611                 if (ret)
8612                         goto close_out;
8613         }
8614         if (!extent_buffer_uptodate(info->extent_root->node)) {
8615                 fprintf(stderr, "Critical roots corrupted, unable to fsck the FS\n");
8616                 ret = -EIO;
8617                 goto close_out;
8618         }
8619         if (!extent_buffer_uptodate(info->csum_root->node)) {
8620                 fprintf(stderr, "Checksum root corrupted, rerun with --init-csum-tree option\n");
8621                 ret = -EIO;
8622                 goto close_out;
8623         }
8624
8625         fprintf(stderr, "checking extents\n");
8626         ret = check_chunks_and_extents(root);
8627         if (ret)
8628                 fprintf(stderr, "Errors found in extent allocation tree or chunk allocation\n");
8629
8630         ret = repair_root_items(info);
8631         if (ret < 0)
8632                 goto close_out;
8633         if (repair) {
8634                 fprintf(stderr, "Fixed %d roots.\n", ret);
8635                 ret = 0;
8636         } else if (ret > 0) {
8637                 fprintf(stderr,
8638                        "Found %d roots with an outdated root item.\n",
8639                        ret);
8640                 fprintf(stderr,
8641                         "Please run a filesystem check with the option --repair to fix them.\n");
8642                 ret = 1;
8643                 goto close_out;
8644         }
8645
8646         fprintf(stderr, "checking free space cache\n");
8647         ret = check_space_cache(root);
8648         if (ret)
8649                 goto out;
8650
8651         /*
8652          * We used to have to have these hole extents in between our real
8653          * extents so if we don't have this flag set we need to make sure there
8654          * are no gaps in the file extents for inodes, otherwise we can just
8655          * ignore it when this happens.
8656          */
8657         no_holes = btrfs_fs_incompat(root->fs_info,
8658                                      BTRFS_FEATURE_INCOMPAT_NO_HOLES);
8659         fprintf(stderr, "checking fs roots\n");
8660         ret = check_fs_roots(root, &root_cache);
8661         if (ret)
8662                 goto out;
8663
8664         fprintf(stderr, "checking csums\n");
8665         ret = check_csums(root);
8666         if (ret)
8667                 goto out;
8668
8669         fprintf(stderr, "checking root refs\n");
8670         ret = check_root_refs(root, &root_cache);
8671         if (ret)
8672                 goto out;
8673
8674         while (repair && !list_empty(&root->fs_info->recow_ebs)) {
8675                 struct extent_buffer *eb;
8676
8677                 eb = list_first_entry(&root->fs_info->recow_ebs,
8678                                       struct extent_buffer, recow);
8679                 list_del_init(&eb->recow);
8680                 ret = recow_extent_buffer(root, eb);
8681                 if (ret)
8682                         break;
8683         }
8684
8685         while (!list_empty(&delete_items)) {
8686                 struct bad_item *bad;
8687
8688                 bad = list_first_entry(&delete_items, struct bad_item, list);
8689                 list_del_init(&bad->list);
8690                 if (repair)
8691                         ret = delete_bad_item(root, bad);
8692                 free(bad);
8693         }
8694
8695         if (info->quota_enabled) {
8696                 int err;
8697                 fprintf(stderr, "checking quota groups\n");
8698                 err = qgroup_verify_all(info);
8699                 if (err)
8700                         goto out;
8701         }
8702
8703         if (!list_empty(&root->fs_info->recow_ebs)) {
8704                 fprintf(stderr, "Transid errors in file system\n");
8705                 ret = 1;
8706         }
8707 out:
8708         print_qgroup_report(0);
8709         if (found_old_backref) { /*
8710                  * there was a disk format change when mixed
8711                  * backref was in testing tree. The old format
8712                  * existed about one week.
8713                  */
8714                 printf("\n * Found old mixed backref format. "
8715                        "The old format is not supported! *"
8716                        "\n * Please mount the FS in readonly mode, "
8717                        "backup data and re-format the FS. *\n\n");
8718                 ret = 1;
8719         }
8720         printf("found %llu bytes used err is %d\n",
8721                (unsigned long long)bytes_used, ret);
8722         printf("total csum bytes: %llu\n",(unsigned long long)total_csum_bytes);
8723         printf("total tree bytes: %llu\n",
8724                (unsigned long long)total_btree_bytes);
8725         printf("total fs tree bytes: %llu\n",
8726                (unsigned long long)total_fs_tree_bytes);
8727         printf("total extent tree bytes: %llu\n",
8728                (unsigned long long)total_extent_tree_bytes);
8729         printf("btree space waste bytes: %llu\n",
8730                (unsigned long long)btree_space_waste);
8731         printf("file data blocks allocated: %llu\n referenced %llu\n",
8732                 (unsigned long long)data_bytes_allocated,
8733                 (unsigned long long)data_bytes_referenced);
8734         printf("%s\n", BTRFS_BUILD_VERSION);
8735
8736         free_root_recs_tree(&root_cache);
8737 close_out:
8738         close_ctree(root);
8739 err_out:
8740         return ret;
8741 }