btrfs-progs: use NULL instead of 0
[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
42 static u64 bytes_used = 0;
43 static u64 total_csum_bytes = 0;
44 static u64 total_btree_bytes = 0;
45 static u64 total_fs_tree_bytes = 0;
46 static u64 total_extent_tree_bytes = 0;
47 static u64 btree_space_waste = 0;
48 static u64 data_bytes_allocated = 0;
49 static u64 data_bytes_referenced = 0;
50 static int found_old_backref = 0;
51 static LIST_HEAD(duplicate_extents);
52
53 struct extent_backref {
54         struct list_head list;
55         unsigned int is_data:1;
56         unsigned int found_extent_tree:1;
57         unsigned int full_backref:1;
58         unsigned int found_ref:1;
59 };
60
61 struct data_backref {
62         struct extent_backref node;
63         union {
64                 u64 parent;
65                 u64 root;
66         };
67         u64 owner;
68         u64 offset;
69         u64 disk_bytenr;
70         u64 bytes;
71         u64 ram_bytes;
72         u32 num_refs;
73         u32 found_ref;
74 };
75
76 struct tree_backref {
77         struct extent_backref node;
78         union {
79                 u64 parent;
80                 u64 root;
81         };
82 };
83
84 struct extent_record {
85         struct list_head backrefs;
86         struct list_head dups;
87         struct list_head list;
88         struct cache_extent cache;
89         struct btrfs_disk_key parent_key;
90         unsigned int found_rec;
91         u64 start;
92         u64 max_size;
93         u64 nr;
94         u64 refs;
95         u64 extent_item_refs;
96         u64 generation;
97         u64 info_objectid;
98         u64 num_duplicates;
99         u8 info_level;
100         unsigned int content_checked:1;
101         unsigned int owner_ref_checked:1;
102         unsigned int is_root:1;
103         unsigned int metadata:1;
104 };
105
106 struct inode_backref {
107         struct list_head list;
108         unsigned int found_dir_item:1;
109         unsigned int found_dir_index:1;
110         unsigned int found_inode_ref:1;
111         unsigned int filetype:8;
112         int errors;
113         unsigned int ref_type;
114         u64 dir;
115         u64 index;
116         u16 namelen;
117         char name[0];
118 };
119
120 #define REF_ERR_NO_DIR_ITEM             (1 << 0)
121 #define REF_ERR_NO_DIR_INDEX            (1 << 1)
122 #define REF_ERR_NO_INODE_REF            (1 << 2)
123 #define REF_ERR_DUP_DIR_ITEM            (1 << 3)
124 #define REF_ERR_DUP_DIR_INDEX           (1 << 4)
125 #define REF_ERR_DUP_INODE_REF           (1 << 5)
126 #define REF_ERR_INDEX_UNMATCH           (1 << 6)
127 #define REF_ERR_FILETYPE_UNMATCH        (1 << 7)
128 #define REF_ERR_NAME_TOO_LONG           (1 << 8) // 100
129 #define REF_ERR_NO_ROOT_REF             (1 << 9)
130 #define REF_ERR_NO_ROOT_BACKREF         (1 << 10)
131 #define REF_ERR_DUP_ROOT_REF            (1 << 11)
132 #define REF_ERR_DUP_ROOT_BACKREF        (1 << 12)
133
134 struct inode_record {
135         struct list_head backrefs;
136         unsigned int checked:1;
137         unsigned int merging:1;
138         unsigned int found_inode_item:1;
139         unsigned int found_dir_item:1;
140         unsigned int found_file_extent:1;
141         unsigned int found_csum_item:1;
142         unsigned int some_csum_missing:1;
143         unsigned int nodatasum:1;
144         int errors;
145
146         u64 ino;
147         u32 nlink;
148         u32 imode;
149         u64 isize;
150         u64 nbytes;
151
152         u32 found_link;
153         u64 found_size;
154         u64 extent_start;
155         u64 extent_end;
156         u64 first_extent_gap;
157
158         u32 refs;
159 };
160
161 #define I_ERR_NO_INODE_ITEM             (1 << 0)
162 #define I_ERR_NO_ORPHAN_ITEM            (1 << 1)
163 #define I_ERR_DUP_INODE_ITEM            (1 << 2)
164 #define I_ERR_DUP_DIR_INDEX             (1 << 3)
165 #define I_ERR_ODD_DIR_ITEM              (1 << 4)
166 #define I_ERR_ODD_FILE_EXTENT           (1 << 5)
167 #define I_ERR_BAD_FILE_EXTENT           (1 << 6)
168 #define I_ERR_FILE_EXTENT_OVERLAP       (1 << 7)
169 #define I_ERR_FILE_EXTENT_DISCOUNT      (1 << 8) // 100
170 #define I_ERR_DIR_ISIZE_WRONG           (1 << 9)
171 #define I_ERR_FILE_NBYTES_WRONG         (1 << 10) // 400
172 #define I_ERR_ODD_CSUM_ITEM             (1 << 11)
173 #define I_ERR_SOME_CSUM_MISSING         (1 << 12)
174 #define I_ERR_LINK_COUNT_WRONG          (1 << 13)
175
176 struct root_backref {
177         struct list_head list;
178         unsigned int found_dir_item:1;
179         unsigned int found_dir_index:1;
180         unsigned int found_back_ref:1;
181         unsigned int found_forward_ref:1;
182         unsigned int reachable:1;
183         int errors;
184         u64 ref_root;
185         u64 dir;
186         u64 index;
187         u16 namelen;
188         char name[0];
189 };
190
191 struct root_record {
192         struct list_head backrefs;
193         struct cache_extent cache;
194         unsigned int found_root_item:1;
195         u64 objectid;
196         u32 found_ref;
197 };
198
199 struct ptr_node {
200         struct cache_extent cache;
201         void *data;
202 };
203
204 struct shared_node {
205         struct cache_extent cache;
206         struct cache_tree root_cache;
207         struct cache_tree inode_cache;
208         struct inode_record *current;
209         u32 refs;
210 };
211
212 struct block_info {
213         u64 start;
214         u32 size;
215 };
216
217 struct walk_control {
218         struct cache_tree shared;
219         struct shared_node *nodes[BTRFS_MAX_LEVEL];
220         int active_node;
221         int root_level;
222 };
223
224 static u8 imode_to_type(u32 imode)
225 {
226 #define S_SHIFT 12
227         static unsigned char btrfs_type_by_mode[S_IFMT >> S_SHIFT] = {
228                 [S_IFREG >> S_SHIFT]    = BTRFS_FT_REG_FILE,
229                 [S_IFDIR >> S_SHIFT]    = BTRFS_FT_DIR,
230                 [S_IFCHR >> S_SHIFT]    = BTRFS_FT_CHRDEV,
231                 [S_IFBLK >> S_SHIFT]    = BTRFS_FT_BLKDEV,
232                 [S_IFIFO >> S_SHIFT]    = BTRFS_FT_FIFO,
233                 [S_IFSOCK >> S_SHIFT]   = BTRFS_FT_SOCK,
234                 [S_IFLNK >> S_SHIFT]    = BTRFS_FT_SYMLINK,
235         };
236
237         return btrfs_type_by_mode[(imode & S_IFMT) >> S_SHIFT];
238 #undef S_SHIFT
239 }
240
241 static int device_record_compare(struct rb_node *node1, struct rb_node *node2)
242 {
243         struct device_record *rec1;
244         struct device_record *rec2;
245
246         rec1 = rb_entry(node1, struct device_record, node);
247         rec2 = rb_entry(node2, struct device_record, node);
248         if (rec1->devid > rec2->devid)
249                 return -1;
250         else if (rec1->devid < rec2->devid)
251                 return 1;
252         else
253                 return 0;
254 }
255
256 static struct inode_record *clone_inode_rec(struct inode_record *orig_rec)
257 {
258         struct inode_record *rec;
259         struct inode_backref *backref;
260         struct inode_backref *orig;
261         size_t size;
262
263         rec = malloc(sizeof(*rec));
264         memcpy(rec, orig_rec, sizeof(*rec));
265         rec->refs = 1;
266         INIT_LIST_HEAD(&rec->backrefs);
267
268         list_for_each_entry(orig, &orig_rec->backrefs, list) {
269                 size = sizeof(*orig) + orig->namelen + 1;
270                 backref = malloc(size);
271                 memcpy(backref, orig, size);
272                 list_add_tail(&backref->list, &rec->backrefs);
273         }
274         return rec;
275 }
276
277 static struct inode_record *get_inode_rec(struct cache_tree *inode_cache,
278                                           u64 ino, int mod)
279 {
280         struct ptr_node *node;
281         struct cache_extent *cache;
282         struct inode_record *rec = NULL;
283         int ret;
284
285         cache = lookup_cache_extent(inode_cache, ino, 1);
286         if (cache) {
287                 node = container_of(cache, struct ptr_node, cache);
288                 rec = node->data;
289                 if (mod && rec->refs > 1) {
290                         node->data = clone_inode_rec(rec);
291                         rec->refs--;
292                         rec = node->data;
293                 }
294         } else if (mod) {
295                 rec = calloc(1, sizeof(*rec));
296                 rec->ino = ino;
297                 rec->extent_start = (u64)-1;
298                 rec->first_extent_gap = (u64)-1;
299                 rec->refs = 1;
300                 INIT_LIST_HEAD(&rec->backrefs);
301
302                 node = malloc(sizeof(*node));
303                 node->cache.start = ino;
304                 node->cache.size = 1;
305                 node->data = rec;
306
307                 if (ino == BTRFS_FREE_INO_OBJECTID)
308                         rec->found_link = 1;
309
310                 ret = insert_cache_extent(inode_cache, &node->cache);
311                 BUG_ON(ret);
312         }
313         return rec;
314 }
315
316 static void free_inode_rec(struct inode_record *rec)
317 {
318         struct inode_backref *backref;
319
320         if (--rec->refs > 0)
321                 return;
322
323         while (!list_empty(&rec->backrefs)) {
324                 backref = list_entry(rec->backrefs.next,
325                                      struct inode_backref, list);
326                 list_del(&backref->list);
327                 free(backref);
328         }
329         free(rec);
330 }
331
332 static int can_free_inode_rec(struct inode_record *rec)
333 {
334         if (!rec->errors && rec->checked && rec->found_inode_item &&
335             rec->nlink == rec->found_link && list_empty(&rec->backrefs))
336                 return 1;
337         return 0;
338 }
339
340 static void maybe_free_inode_rec(struct cache_tree *inode_cache,
341                                  struct inode_record *rec)
342 {
343         struct cache_extent *cache;
344         struct inode_backref *tmp, *backref;
345         struct ptr_node *node;
346         unsigned char filetype;
347
348         if (!rec->found_inode_item)
349                 return;
350
351         filetype = imode_to_type(rec->imode);
352         list_for_each_entry_safe(backref, tmp, &rec->backrefs, list) {
353                 if (backref->found_dir_item && backref->found_dir_index) {
354                         if (backref->filetype != filetype)
355                                 backref->errors |= REF_ERR_FILETYPE_UNMATCH;
356                         if (!backref->errors && backref->found_inode_ref) {
357                                 list_del(&backref->list);
358                                 free(backref);
359                         }
360                 }
361         }
362
363         if (!rec->checked || rec->merging)
364                 return;
365
366         if (S_ISDIR(rec->imode)) {
367                 if (rec->found_size != rec->isize)
368                         rec->errors |= I_ERR_DIR_ISIZE_WRONG;
369                 if (rec->found_file_extent)
370                         rec->errors |= I_ERR_ODD_FILE_EXTENT;
371         } else if (S_ISREG(rec->imode) || S_ISLNK(rec->imode)) {
372                 if (rec->found_dir_item)
373                         rec->errors |= I_ERR_ODD_DIR_ITEM;
374                 if (rec->found_size != rec->nbytes)
375                         rec->errors |= I_ERR_FILE_NBYTES_WRONG;
376                 if (rec->extent_start == (u64)-1 || rec->extent_start > 0)
377                         rec->first_extent_gap = 0;
378                 if (rec->nlink > 0 && (rec->extent_end < rec->isize ||
379                     rec->first_extent_gap < rec->isize))
380                         rec->errors |= I_ERR_FILE_EXTENT_DISCOUNT;
381         }
382
383         if (S_ISREG(rec->imode) || S_ISLNK(rec->imode)) {
384                 if (rec->found_csum_item && rec->nodatasum)
385                         rec->errors |= I_ERR_ODD_CSUM_ITEM;
386                 if (rec->some_csum_missing && !rec->nodatasum)
387                         rec->errors |= I_ERR_SOME_CSUM_MISSING;
388         }
389
390         BUG_ON(rec->refs != 1);
391         if (can_free_inode_rec(rec)) {
392                 cache = lookup_cache_extent(inode_cache, rec->ino, 1);
393                 node = container_of(cache, struct ptr_node, cache);
394                 BUG_ON(node->data != rec);
395                 remove_cache_extent(inode_cache, &node->cache);
396                 free(node);
397                 free_inode_rec(rec);
398         }
399 }
400
401 static int check_orphan_item(struct btrfs_root *root, u64 ino)
402 {
403         struct btrfs_path path;
404         struct btrfs_key key;
405         int ret;
406
407         key.objectid = BTRFS_ORPHAN_OBJECTID;
408         key.type = BTRFS_ORPHAN_ITEM_KEY;
409         key.offset = ino;
410
411         btrfs_init_path(&path);
412         ret = btrfs_search_slot(NULL, root, &key, &path, 0, 0);
413         btrfs_release_path(&path);
414         if (ret > 0)
415                 ret = -ENOENT;
416         return ret;
417 }
418
419 static int process_inode_item(struct extent_buffer *eb,
420                               int slot, struct btrfs_key *key,
421                               struct shared_node *active_node)
422 {
423         struct inode_record *rec;
424         struct btrfs_inode_item *item;
425
426         rec = active_node->current;
427         BUG_ON(rec->ino != key->objectid || rec->refs > 1);
428         if (rec->found_inode_item) {
429                 rec->errors |= I_ERR_DUP_INODE_ITEM;
430                 return 1;
431         }
432         item = btrfs_item_ptr(eb, slot, struct btrfs_inode_item);
433         rec->nlink = btrfs_inode_nlink(eb, item);
434         rec->isize = btrfs_inode_size(eb, item);
435         rec->nbytes = btrfs_inode_nbytes(eb, item);
436         rec->imode = btrfs_inode_mode(eb, item);
437         if (btrfs_inode_flags(eb, item) & BTRFS_INODE_NODATASUM)
438                 rec->nodatasum = 1;
439         rec->found_inode_item = 1;
440         if (rec->nlink == 0)
441                 rec->errors |= I_ERR_NO_ORPHAN_ITEM;
442         maybe_free_inode_rec(&active_node->inode_cache, rec);
443         return 0;
444 }
445
446 static struct inode_backref *get_inode_backref(struct inode_record *rec,
447                                                 const char *name,
448                                                 int namelen, u64 dir)
449 {
450         struct inode_backref *backref;
451
452         list_for_each_entry(backref, &rec->backrefs, list) {
453                 if (backref->dir != dir || backref->namelen != namelen)
454                         continue;
455                 if (memcmp(name, backref->name, namelen))
456                         continue;
457                 return backref;
458         }
459
460         backref = malloc(sizeof(*backref) + namelen + 1);
461         memset(backref, 0, sizeof(*backref));
462         backref->dir = dir;
463         backref->namelen = namelen;
464         memcpy(backref->name, name, namelen);
465         backref->name[namelen] = '\0';
466         list_add_tail(&backref->list, &rec->backrefs);
467         return backref;
468 }
469
470 static int add_inode_backref(struct cache_tree *inode_cache,
471                              u64 ino, u64 dir, u64 index,
472                              const char *name, int namelen,
473                              int filetype, int itemtype, int errors)
474 {
475         struct inode_record *rec;
476         struct inode_backref *backref;
477
478         rec = get_inode_rec(inode_cache, ino, 1);
479         backref = get_inode_backref(rec, name, namelen, dir);
480         if (errors)
481                 backref->errors |= errors;
482         if (itemtype == BTRFS_DIR_INDEX_KEY) {
483                 if (backref->found_dir_index)
484                         backref->errors |= REF_ERR_DUP_DIR_INDEX;
485                 if (backref->found_inode_ref && backref->index != index)
486                         backref->errors |= REF_ERR_INDEX_UNMATCH;
487                 if (backref->found_dir_item && backref->filetype != filetype)
488                         backref->errors |= REF_ERR_FILETYPE_UNMATCH;
489
490                 backref->index = index;
491                 backref->filetype = filetype;
492                 backref->found_dir_index = 1;
493         } else if (itemtype == BTRFS_DIR_ITEM_KEY) {
494                 rec->found_link++;
495                 if (backref->found_dir_item)
496                         backref->errors |= REF_ERR_DUP_DIR_ITEM;
497                 if (backref->found_dir_index && backref->filetype != filetype)
498                         backref->errors |= REF_ERR_FILETYPE_UNMATCH;
499
500                 backref->filetype = filetype;
501                 backref->found_dir_item = 1;
502         } else if ((itemtype == BTRFS_INODE_REF_KEY) ||
503                    (itemtype == BTRFS_INODE_EXTREF_KEY)) {
504                 if (backref->found_inode_ref)
505                         backref->errors |= REF_ERR_DUP_INODE_REF;
506                 if (backref->found_dir_index && backref->index != index)
507                         backref->errors |= REF_ERR_INDEX_UNMATCH;
508
509                 backref->ref_type = itemtype;
510                 backref->index = index;
511                 backref->found_inode_ref = 1;
512         } else {
513                 BUG_ON(1);
514         }
515
516         maybe_free_inode_rec(inode_cache, rec);
517         return 0;
518 }
519
520 static int merge_inode_recs(struct inode_record *src, struct inode_record *dst,
521                             struct cache_tree *dst_cache)
522 {
523         struct inode_backref *backref;
524         u32 dir_count = 0;
525
526         dst->merging = 1;
527         list_for_each_entry(backref, &src->backrefs, list) {
528                 if (backref->found_dir_index) {
529                         add_inode_backref(dst_cache, dst->ino, backref->dir,
530                                         backref->index, backref->name,
531                                         backref->namelen, backref->filetype,
532                                         BTRFS_DIR_INDEX_KEY, backref->errors);
533                 }
534                 if (backref->found_dir_item) {
535                         dir_count++;
536                         add_inode_backref(dst_cache, dst->ino,
537                                         backref->dir, 0, backref->name,
538                                         backref->namelen, backref->filetype,
539                                         BTRFS_DIR_ITEM_KEY, backref->errors);
540                 }
541                 if (backref->found_inode_ref) {
542                         add_inode_backref(dst_cache, dst->ino,
543                                         backref->dir, backref->index,
544                                         backref->name, backref->namelen, 0,
545                                         backref->ref_type, backref->errors);
546                 }
547         }
548
549         if (src->found_dir_item)
550                 dst->found_dir_item = 1;
551         if (src->found_file_extent)
552                 dst->found_file_extent = 1;
553         if (src->found_csum_item)
554                 dst->found_csum_item = 1;
555         if (src->some_csum_missing)
556                 dst->some_csum_missing = 1;
557         if (dst->first_extent_gap > src->first_extent_gap)
558                 dst->first_extent_gap = src->first_extent_gap;
559
560         BUG_ON(src->found_link < dir_count);
561         dst->found_link += src->found_link - dir_count;
562         dst->found_size += src->found_size;
563         if (src->extent_start != (u64)-1) {
564                 if (dst->extent_start == (u64)-1) {
565                         dst->extent_start = src->extent_start;
566                         dst->extent_end = src->extent_end;
567                 } else {
568                         if (dst->extent_end > src->extent_start)
569                                 dst->errors |= I_ERR_FILE_EXTENT_OVERLAP;
570                         else if (dst->extent_end < src->extent_start &&
571                                  dst->extent_end < dst->first_extent_gap)
572                                 dst->first_extent_gap = dst->extent_end;
573                         if (dst->extent_end < src->extent_end)
574                                 dst->extent_end = src->extent_end;
575                 }
576         }
577
578         dst->errors |= src->errors;
579         if (src->found_inode_item) {
580                 if (!dst->found_inode_item) {
581                         dst->nlink = src->nlink;
582                         dst->isize = src->isize;
583                         dst->nbytes = src->nbytes;
584                         dst->imode = src->imode;
585                         dst->nodatasum = src->nodatasum;
586                         dst->found_inode_item = 1;
587                 } else {
588                         dst->errors |= I_ERR_DUP_INODE_ITEM;
589                 }
590         }
591         dst->merging = 0;
592
593         return 0;
594 }
595
596 static int splice_shared_node(struct shared_node *src_node,
597                               struct shared_node *dst_node)
598 {
599         struct cache_extent *cache;
600         struct ptr_node *node, *ins;
601         struct cache_tree *src, *dst;
602         struct inode_record *rec, *conflict;
603         u64 current_ino = 0;
604         int splice = 0;
605         int ret;
606
607         if (--src_node->refs == 0)
608                 splice = 1;
609         if (src_node->current)
610                 current_ino = src_node->current->ino;
611
612         src = &src_node->root_cache;
613         dst = &dst_node->root_cache;
614 again:
615         cache = search_cache_extent(src, 0);
616         while (cache) {
617                 node = container_of(cache, struct ptr_node, cache);
618                 rec = node->data;
619                 cache = next_cache_extent(cache);
620
621                 if (splice) {
622                         remove_cache_extent(src, &node->cache);
623                         ins = node;
624                 } else {
625                         ins = malloc(sizeof(*ins));
626                         ins->cache.start = node->cache.start;
627                         ins->cache.size = node->cache.size;
628                         ins->data = rec;
629                         rec->refs++;
630                 }
631                 ret = insert_cache_extent(dst, &ins->cache);
632                 if (ret == -EEXIST) {
633                         conflict = get_inode_rec(dst, rec->ino, 1);
634                         merge_inode_recs(rec, conflict, dst);
635                         if (rec->checked) {
636                                 conflict->checked = 1;
637                                 if (dst_node->current == conflict)
638                                         dst_node->current = NULL;
639                         }
640                         maybe_free_inode_rec(dst, conflict);
641                         free_inode_rec(rec);
642                         free(ins);
643                 } else {
644                         BUG_ON(ret);
645                 }
646         }
647
648         if (src == &src_node->root_cache) {
649                 src = &src_node->inode_cache;
650                 dst = &dst_node->inode_cache;
651                 goto again;
652         }
653
654         if (current_ino > 0 && (!dst_node->current ||
655             current_ino > dst_node->current->ino)) {
656                 if (dst_node->current) {
657                         dst_node->current->checked = 1;
658                         maybe_free_inode_rec(dst, dst_node->current);
659                 }
660                 dst_node->current = get_inode_rec(dst, current_ino, 1);
661         }
662         return 0;
663 }
664
665 static void free_inode_ptr(struct cache_extent *cache)
666 {
667         struct ptr_node *node;
668         struct inode_record *rec;
669
670         node = container_of(cache, struct ptr_node, cache);
671         rec = node->data;
672         free_inode_rec(rec);
673         free(node);
674 }
675
676 FREE_EXTENT_CACHE_BASED_TREE(inode_recs, free_inode_ptr);
677
678 static struct shared_node *find_shared_node(struct cache_tree *shared,
679                                             u64 bytenr)
680 {
681         struct cache_extent *cache;
682         struct shared_node *node;
683
684         cache = lookup_cache_extent(shared, bytenr, 1);
685         if (cache) {
686                 node = container_of(cache, struct shared_node, cache);
687                 return node;
688         }
689         return NULL;
690 }
691
692 static int add_shared_node(struct cache_tree *shared, u64 bytenr, u32 refs)
693 {
694         int ret;
695         struct shared_node *node;
696
697         node = calloc(1, sizeof(*node));
698         node->cache.start = bytenr;
699         node->cache.size = 1;
700         cache_tree_init(&node->root_cache);
701         cache_tree_init(&node->inode_cache);
702         node->refs = refs;
703
704         ret = insert_cache_extent(shared, &node->cache);
705         BUG_ON(ret);
706         return 0;
707 }
708
709 static int enter_shared_node(struct btrfs_root *root, u64 bytenr, u32 refs,
710                              struct walk_control *wc, int level)
711 {
712         struct shared_node *node;
713         struct shared_node *dest;
714
715         if (level == wc->active_node)
716                 return 0;
717
718         BUG_ON(wc->active_node <= level);
719         node = find_shared_node(&wc->shared, bytenr);
720         if (!node) {
721                 add_shared_node(&wc->shared, bytenr, refs);
722                 node = find_shared_node(&wc->shared, bytenr);
723                 wc->nodes[level] = node;
724                 wc->active_node = level;
725                 return 0;
726         }
727
728         if (wc->root_level == wc->active_node &&
729             btrfs_root_refs(&root->root_item) == 0) {
730                 if (--node->refs == 0) {
731                         free_inode_recs_tree(&node->root_cache);
732                         free_inode_recs_tree(&node->inode_cache);
733                         remove_cache_extent(&wc->shared, &node->cache);
734                         free(node);
735                 }
736                 return 1;
737         }
738
739         dest = wc->nodes[wc->active_node];
740         splice_shared_node(node, dest);
741         if (node->refs == 0) {
742                 remove_cache_extent(&wc->shared, &node->cache);
743                 free(node);
744         }
745         return 1;
746 }
747
748 static int leave_shared_node(struct btrfs_root *root,
749                              struct walk_control *wc, int level)
750 {
751         struct shared_node *node;
752         struct shared_node *dest;
753         int i;
754
755         if (level == wc->root_level)
756                 return 0;
757
758         for (i = level + 1; i < BTRFS_MAX_LEVEL; i++) {
759                 if (wc->nodes[i])
760                         break;
761         }
762         BUG_ON(i >= BTRFS_MAX_LEVEL);
763
764         node = wc->nodes[wc->active_node];
765         wc->nodes[wc->active_node] = NULL;
766         wc->active_node = i;
767
768         dest = wc->nodes[wc->active_node];
769         if (wc->active_node < wc->root_level ||
770             btrfs_root_refs(&root->root_item) > 0) {
771                 BUG_ON(node->refs <= 1);
772                 splice_shared_node(node, dest);
773         } else {
774                 BUG_ON(node->refs < 2);
775                 node->refs--;
776         }
777         return 0;
778 }
779
780 static int is_child_root(struct btrfs_root *root, u64 parent_root_id,
781                          u64 child_root_id)
782 {
783         struct btrfs_path path;
784         struct btrfs_key key;
785         struct extent_buffer *leaf;
786         int has_parent = 0;
787         int ret;
788
789         btrfs_init_path(&path);
790
791         key.objectid = parent_root_id;
792         key.type = BTRFS_ROOT_REF_KEY;
793         key.offset = child_root_id;
794         ret = btrfs_search_slot(NULL, root->fs_info->tree_root, &key, &path,
795                                 0, 0);
796         BUG_ON(ret < 0);
797         btrfs_release_path(&path);
798         if (!ret)
799                 return 1;
800
801         key.objectid = child_root_id;
802         key.type = BTRFS_ROOT_BACKREF_KEY;
803         key.offset = 0;
804         ret = btrfs_search_slot(NULL, root->fs_info->tree_root, &key, &path,
805                                 0, 0);
806         BUG_ON(ret <= 0);
807
808         while (1) {
809                 leaf = path.nodes[0];
810                 if (path.slots[0] >= btrfs_header_nritems(leaf)) {
811                         ret = btrfs_next_leaf(root->fs_info->tree_root, &path);
812                         BUG_ON(ret < 0);
813
814                         if (ret > 0)
815                                 break;
816                         leaf = path.nodes[0];
817                 }
818
819                 btrfs_item_key_to_cpu(leaf, &key, path.slots[0]);
820                 if (key.objectid != child_root_id ||
821                     key.type != BTRFS_ROOT_BACKREF_KEY)
822                         break;
823
824                 has_parent = 1;
825
826                 if (key.offset == parent_root_id) {
827                         btrfs_release_path(&path);
828                         return 1;
829                 }
830
831                 path.slots[0]++;
832         }
833
834         btrfs_release_path(&path);
835         return has_parent? 0 : -1;
836 }
837
838 static int process_dir_item(struct btrfs_root *root,
839                             struct extent_buffer *eb,
840                             int slot, struct btrfs_key *key,
841                             struct shared_node *active_node)
842 {
843         u32 total;
844         u32 cur = 0;
845         u32 len;
846         u32 name_len;
847         u32 data_len;
848         int error;
849         int nritems = 0;
850         int filetype;
851         struct btrfs_dir_item *di;
852         struct inode_record *rec;
853         struct cache_tree *root_cache;
854         struct cache_tree *inode_cache;
855         struct btrfs_key location;
856         char namebuf[BTRFS_NAME_LEN];
857
858         root_cache = &active_node->root_cache;
859         inode_cache = &active_node->inode_cache;
860         rec = active_node->current;
861         rec->found_dir_item = 1;
862
863         di = btrfs_item_ptr(eb, slot, struct btrfs_dir_item);
864         total = btrfs_item_size_nr(eb, slot);
865         while (cur < total) {
866                 nritems++;
867                 btrfs_dir_item_key_to_cpu(eb, di, &location);
868                 name_len = btrfs_dir_name_len(eb, di);
869                 data_len = btrfs_dir_data_len(eb, di);
870                 filetype = btrfs_dir_type(eb, di);
871
872                 rec->found_size += name_len;
873                 if (name_len <= BTRFS_NAME_LEN) {
874                         len = name_len;
875                         error = 0;
876                 } else {
877                         len = BTRFS_NAME_LEN;
878                         error = REF_ERR_NAME_TOO_LONG;
879                 }
880                 read_extent_buffer(eb, namebuf, (unsigned long)(di + 1), len);
881
882                 if (location.type == BTRFS_INODE_ITEM_KEY) {
883                         add_inode_backref(inode_cache, location.objectid,
884                                           key->objectid, key->offset, namebuf,
885                                           len, filetype, key->type, error);
886                 } else if (location.type == BTRFS_ROOT_ITEM_KEY) {
887                         add_inode_backref(root_cache, location.objectid,
888                                           key->objectid, key->offset,
889                                           namebuf, len, filetype,
890                                           key->type, error);
891                 } else {
892                         fprintf(stderr, "warning line %d\n", __LINE__);
893                 }
894
895                 len = sizeof(*di) + name_len + data_len;
896                 di = (struct btrfs_dir_item *)((char *)di + len);
897                 cur += len;
898         }
899         if (key->type == BTRFS_DIR_INDEX_KEY && nritems > 1)
900                 rec->errors |= I_ERR_DUP_DIR_INDEX;
901
902         return 0;
903 }
904
905 static int process_inode_ref(struct extent_buffer *eb,
906                              int slot, struct btrfs_key *key,
907                              struct shared_node *active_node)
908 {
909         u32 total;
910         u32 cur = 0;
911         u32 len;
912         u32 name_len;
913         u64 index;
914         int error;
915         struct cache_tree *inode_cache;
916         struct btrfs_inode_ref *ref;
917         char namebuf[BTRFS_NAME_LEN];
918
919         inode_cache = &active_node->inode_cache;
920
921         ref = btrfs_item_ptr(eb, slot, struct btrfs_inode_ref);
922         total = btrfs_item_size_nr(eb, slot);
923         while (cur < total) {
924                 name_len = btrfs_inode_ref_name_len(eb, ref);
925                 index = btrfs_inode_ref_index(eb, ref);
926                 if (name_len <= BTRFS_NAME_LEN) {
927                         len = name_len;
928                         error = 0;
929                 } else {
930                         len = BTRFS_NAME_LEN;
931                         error = REF_ERR_NAME_TOO_LONG;
932                 }
933                 read_extent_buffer(eb, namebuf, (unsigned long)(ref + 1), len);
934                 add_inode_backref(inode_cache, key->objectid, key->offset,
935                                   index, namebuf, len, 0, key->type, error);
936
937                 len = sizeof(*ref) + name_len;
938                 ref = (struct btrfs_inode_ref *)((char *)ref + len);
939                 cur += len;
940         }
941         return 0;
942 }
943
944 static int process_inode_extref(struct extent_buffer *eb,
945                                 int slot, struct btrfs_key *key,
946                                 struct shared_node *active_node)
947 {
948         u32 total;
949         u32 cur = 0;
950         u32 len;
951         u32 name_len;
952         u64 index;
953         u64 parent;
954         int error;
955         struct cache_tree *inode_cache;
956         struct btrfs_inode_extref *extref;
957         char namebuf[BTRFS_NAME_LEN];
958
959         inode_cache = &active_node->inode_cache;
960
961         extref = btrfs_item_ptr(eb, slot, struct btrfs_inode_extref);
962         total = btrfs_item_size_nr(eb, slot);
963         while (cur < total) {
964                 name_len = btrfs_inode_extref_name_len(eb, extref);
965                 index = btrfs_inode_extref_index(eb, extref);
966                 parent = btrfs_inode_extref_parent(eb, extref);
967                 if (name_len <= BTRFS_NAME_LEN) {
968                         len = name_len;
969                         error = 0;
970                 } else {
971                         len = BTRFS_NAME_LEN;
972                         error = REF_ERR_NAME_TOO_LONG;
973                 }
974                 read_extent_buffer(eb, namebuf,
975                                    (unsigned long)(extref + 1), len);
976                 add_inode_backref(inode_cache, key->objectid, parent,
977                                   index, namebuf, len, 0, key->type, error);
978
979                 len = sizeof(*extref) + name_len;
980                 extref = (struct btrfs_inode_extref *)((char *)extref + len);
981                 cur += len;
982         }
983         return 0;
984
985 }
986
987 static u64 count_csum_range(struct btrfs_root *root, u64 start, u64 len)
988 {
989         struct btrfs_key key;
990         struct btrfs_path path;
991         struct extent_buffer *leaf;
992         int ret ;
993         size_t size;
994         u64 found = 0;
995         u64 csum_end;
996         u16 csum_size = btrfs_super_csum_size(root->fs_info->super_copy);
997
998         btrfs_init_path(&path);
999
1000         key.objectid = BTRFS_EXTENT_CSUM_OBJECTID;
1001         key.offset = start;
1002         key.type = BTRFS_EXTENT_CSUM_KEY;
1003
1004         ret = btrfs_search_slot(NULL, root->fs_info->csum_root,
1005                                 &key, &path, 0, 0);
1006         BUG_ON(ret < 0);
1007         if (ret > 0 && path.slots[0] > 0) {
1008                 leaf = path.nodes[0];
1009                 btrfs_item_key_to_cpu(leaf, &key, path.slots[0] - 1);
1010                 if (key.objectid == BTRFS_EXTENT_CSUM_OBJECTID &&
1011                     key.type == BTRFS_EXTENT_CSUM_KEY)
1012                         path.slots[0]--;
1013         }
1014
1015         while (len > 0) {
1016                 leaf = path.nodes[0];
1017                 if (path.slots[0] >= btrfs_header_nritems(leaf)) {
1018                         ret = btrfs_next_leaf(root->fs_info->csum_root, &path);
1019                         BUG_ON(ret < 0);
1020                         if (ret > 0)
1021                                 break;
1022                         leaf = path.nodes[0];
1023                 }
1024
1025                 btrfs_item_key_to_cpu(leaf, &key, path.slots[0]);
1026                 if (key.objectid != BTRFS_EXTENT_CSUM_OBJECTID ||
1027                     key.type != BTRFS_EXTENT_CSUM_KEY)
1028                         break;
1029
1030                 btrfs_item_key_to_cpu(leaf, &key, path.slots[0]);
1031                 if (key.offset >= start + len)
1032                         break;
1033
1034                 if (key.offset > start)
1035                         start = key.offset;
1036
1037                 size = btrfs_item_size_nr(leaf, path.slots[0]);
1038                 csum_end = key.offset + (size / csum_size) * root->sectorsize;
1039                 if (csum_end > start) {
1040                         size = min(csum_end - start, len);
1041                         len -= size;
1042                         start += size;
1043                         found += size;
1044                 }
1045
1046                 path.slots[0]++;
1047         }
1048         btrfs_release_path(&path);
1049         return found;
1050 }
1051
1052 static int process_file_extent(struct btrfs_root *root,
1053                                 struct extent_buffer *eb,
1054                                 int slot, struct btrfs_key *key,
1055                                 struct shared_node *active_node)
1056 {
1057         struct inode_record *rec;
1058         struct btrfs_file_extent_item *fi;
1059         u64 num_bytes = 0;
1060         u64 disk_bytenr = 0;
1061         u64 extent_offset = 0;
1062         u64 mask = root->sectorsize - 1;
1063         int extent_type;
1064
1065         rec = active_node->current;
1066         BUG_ON(rec->ino != key->objectid || rec->refs > 1);
1067         rec->found_file_extent = 1;
1068
1069         if (rec->extent_start == (u64)-1) {
1070                 rec->extent_start = key->offset;
1071                 rec->extent_end = key->offset;
1072         }
1073
1074         if (rec->extent_end > key->offset)
1075                 rec->errors |= I_ERR_FILE_EXTENT_OVERLAP;
1076         else if (rec->extent_end < key->offset &&
1077                  rec->extent_end < rec->first_extent_gap)
1078                 rec->first_extent_gap = rec->extent_end;
1079
1080         fi = btrfs_item_ptr(eb, slot, struct btrfs_file_extent_item);
1081         extent_type = btrfs_file_extent_type(eb, fi);
1082
1083         if (extent_type == BTRFS_FILE_EXTENT_INLINE) {
1084                 num_bytes = btrfs_file_extent_inline_len(eb, fi);
1085                 if (num_bytes == 0)
1086                         rec->errors |= I_ERR_BAD_FILE_EXTENT;
1087                 rec->found_size += num_bytes;
1088                 num_bytes = (num_bytes + mask) & ~mask;
1089         } else if (extent_type == BTRFS_FILE_EXTENT_REG ||
1090                    extent_type == BTRFS_FILE_EXTENT_PREALLOC) {
1091                 num_bytes = btrfs_file_extent_num_bytes(eb, fi);
1092                 disk_bytenr = btrfs_file_extent_disk_bytenr(eb, fi);
1093                 extent_offset = btrfs_file_extent_offset(eb, fi);
1094                 if (num_bytes == 0 || (num_bytes & mask))
1095                         rec->errors |= I_ERR_BAD_FILE_EXTENT;
1096                 if (num_bytes + extent_offset >
1097                     btrfs_file_extent_ram_bytes(eb, fi))
1098                         rec->errors |= I_ERR_BAD_FILE_EXTENT;
1099                 if (extent_type == BTRFS_FILE_EXTENT_PREALLOC &&
1100                     (btrfs_file_extent_compression(eb, fi) ||
1101                      btrfs_file_extent_encryption(eb, fi) ||
1102                      btrfs_file_extent_other_encoding(eb, fi)))
1103                         rec->errors |= I_ERR_BAD_FILE_EXTENT;
1104                 if (disk_bytenr > 0)
1105                         rec->found_size += num_bytes;
1106         } else {
1107                 rec->errors |= I_ERR_BAD_FILE_EXTENT;
1108         }
1109         rec->extent_end = key->offset + num_bytes;
1110
1111         if (disk_bytenr > 0) {
1112                 u64 found;
1113                 if (btrfs_file_extent_compression(eb, fi))
1114                         num_bytes = btrfs_file_extent_disk_num_bytes(eb, fi);
1115                 else
1116                         disk_bytenr += extent_offset;
1117
1118                 found = count_csum_range(root, disk_bytenr, num_bytes);
1119                 if (extent_type == BTRFS_FILE_EXTENT_REG) {
1120                         if (found > 0)
1121                                 rec->found_csum_item = 1;
1122                         if (found < num_bytes)
1123                                 rec->some_csum_missing = 1;
1124                 } else if (extent_type == BTRFS_FILE_EXTENT_PREALLOC) {
1125                         if (found > 0)
1126                                 rec->errors |= I_ERR_ODD_CSUM_ITEM;
1127                 }
1128         }
1129         return 0;
1130 }
1131
1132 static int process_one_leaf(struct btrfs_root *root, struct extent_buffer *eb,
1133                             struct walk_control *wc)
1134 {
1135         struct btrfs_key key;
1136         u32 nritems;
1137         int i;
1138         int ret = 0;
1139         struct cache_tree *inode_cache;
1140         struct shared_node *active_node;
1141
1142         if (wc->root_level == wc->active_node &&
1143             btrfs_root_refs(&root->root_item) == 0)
1144                 return 0;
1145
1146         active_node = wc->nodes[wc->active_node];
1147         inode_cache = &active_node->inode_cache;
1148         nritems = btrfs_header_nritems(eb);
1149         for (i = 0; i < nritems; i++) {
1150                 btrfs_item_key_to_cpu(eb, &key, i);
1151
1152                 if (key.objectid == BTRFS_FREE_SPACE_OBJECTID)
1153                         continue;
1154
1155                 if (active_node->current == NULL ||
1156                     active_node->current->ino < key.objectid) {
1157                         if (active_node->current) {
1158                                 active_node->current->checked = 1;
1159                                 maybe_free_inode_rec(inode_cache,
1160                                                      active_node->current);
1161                         }
1162                         active_node->current = get_inode_rec(inode_cache,
1163                                                              key.objectid, 1);
1164                 }
1165                 switch (key.type) {
1166                 case BTRFS_DIR_ITEM_KEY:
1167                 case BTRFS_DIR_INDEX_KEY:
1168                         ret = process_dir_item(root, eb, i, &key, active_node);
1169                         break;
1170                 case BTRFS_INODE_REF_KEY:
1171                         ret = process_inode_ref(eb, i, &key, active_node);
1172                         break;
1173                 case BTRFS_INODE_EXTREF_KEY:
1174                         ret = process_inode_extref(eb, i, &key, active_node);
1175                         break;
1176                 case BTRFS_INODE_ITEM_KEY:
1177                         ret = process_inode_item(eb, i, &key, active_node);
1178                         break;
1179                 case BTRFS_EXTENT_DATA_KEY:
1180                         ret = process_file_extent(root, eb, i, &key,
1181                                                   active_node);
1182                         break;
1183                 default:
1184                         break;
1185                 };
1186         }
1187         return ret;
1188 }
1189
1190 static void reada_walk_down(struct btrfs_root *root,
1191                             struct extent_buffer *node, int slot)
1192 {
1193         u64 bytenr;
1194         u64 ptr_gen;
1195         u32 nritems;
1196         u32 blocksize;
1197         int i;
1198         int ret;
1199         int level;
1200
1201         level = btrfs_header_level(node);
1202         if (level != 1)
1203                 return;
1204
1205         nritems = btrfs_header_nritems(node);
1206         blocksize = btrfs_level_size(root, level - 1);
1207         for (i = slot; i < nritems; i++) {
1208                 bytenr = btrfs_node_blockptr(node, i);
1209                 ptr_gen = btrfs_node_ptr_generation(node, i);
1210                 ret = readahead_tree_block(root, bytenr, blocksize, ptr_gen);
1211                 if (ret)
1212                         break;
1213         }
1214 }
1215
1216 static int walk_down_tree(struct btrfs_root *root, struct btrfs_path *path,
1217                           struct walk_control *wc, int *level)
1218 {
1219         u64 bytenr;
1220         u64 ptr_gen;
1221         struct extent_buffer *next;
1222         struct extent_buffer *cur;
1223         u32 blocksize;
1224         int ret, err = 0;
1225         u64 refs;
1226
1227         WARN_ON(*level < 0);
1228         WARN_ON(*level >= BTRFS_MAX_LEVEL);
1229         ret = btrfs_lookup_extent_info(NULL, root,
1230                                        path->nodes[*level]->start,
1231                                        *level, 1, &refs, NULL);
1232         if (ret < 0) {
1233                 err = ret;
1234                 goto out;
1235         }
1236
1237         if (refs > 1) {
1238                 ret = enter_shared_node(root, path->nodes[*level]->start,
1239                                         refs, wc, *level);
1240                 if (ret > 0) {
1241                         err = ret;
1242                         goto out;
1243                 }
1244         }
1245
1246         while (*level >= 0) {
1247                 WARN_ON(*level < 0);
1248                 WARN_ON(*level >= BTRFS_MAX_LEVEL);
1249                 cur = path->nodes[*level];
1250
1251                 if (btrfs_header_level(cur) != *level)
1252                         WARN_ON(1);
1253
1254                 if (path->slots[*level] >= btrfs_header_nritems(cur))
1255                         break;
1256                 if (*level == 0) {
1257                         ret = process_one_leaf(root, cur, wc);
1258                         break;
1259                 }
1260                 bytenr = btrfs_node_blockptr(cur, path->slots[*level]);
1261                 ptr_gen = btrfs_node_ptr_generation(cur, path->slots[*level]);
1262                 blocksize = btrfs_level_size(root, *level - 1);
1263                 ret = btrfs_lookup_extent_info(NULL, root, bytenr, *level - 1,
1264                                                1, &refs, NULL);
1265                 if (ret < 0)
1266                         refs = 0;
1267
1268                 if (refs > 1) {
1269                         ret = enter_shared_node(root, bytenr, refs,
1270                                                 wc, *level - 1);
1271                         if (ret > 0) {
1272                                 path->slots[*level]++;
1273                                 continue;
1274                         }
1275                 }
1276
1277                 next = btrfs_find_tree_block(root, bytenr, blocksize);
1278                 if (!next || !btrfs_buffer_uptodate(next, ptr_gen)) {
1279                         free_extent_buffer(next);
1280                         reada_walk_down(root, cur, path->slots[*level]);
1281                         next = read_tree_block(root, bytenr, blocksize,
1282                                                ptr_gen);
1283                         if (!next) {
1284                                 err = -EIO;
1285                                 goto out;
1286                         }
1287                 }
1288
1289                 *level = *level - 1;
1290                 free_extent_buffer(path->nodes[*level]);
1291                 path->nodes[*level] = next;
1292                 path->slots[*level] = 0;
1293         }
1294 out:
1295         path->slots[*level] = btrfs_header_nritems(path->nodes[*level]);
1296         return err;
1297 }
1298
1299 static int walk_up_tree(struct btrfs_root *root, struct btrfs_path *path,
1300                         struct walk_control *wc, int *level)
1301 {
1302         int i;
1303         struct extent_buffer *leaf;
1304
1305         for (i = *level; i < BTRFS_MAX_LEVEL - 1 && path->nodes[i]; i++) {
1306                 leaf = path->nodes[i];
1307                 if (path->slots[i] + 1 < btrfs_header_nritems(leaf)) {
1308                         path->slots[i]++;
1309                         *level = i;
1310                         return 0;
1311                 } else {
1312                         free_extent_buffer(path->nodes[*level]);
1313                         path->nodes[*level] = NULL;
1314                         BUG_ON(*level > wc->active_node);
1315                         if (*level == wc->active_node)
1316                                 leave_shared_node(root, wc, *level);
1317                         *level = i + 1;
1318                 }
1319         }
1320         return 1;
1321 }
1322
1323 static int check_root_dir(struct inode_record *rec)
1324 {
1325         struct inode_backref *backref;
1326         int ret = -1;
1327
1328         if (!rec->found_inode_item || rec->errors)
1329                 goto out;
1330         if (rec->nlink != 1 || rec->found_link != 0)
1331                 goto out;
1332         if (list_empty(&rec->backrefs))
1333                 goto out;
1334         backref = list_entry(rec->backrefs.next, struct inode_backref, list);
1335         if (!backref->found_inode_ref)
1336                 goto out;
1337         if (backref->index != 0 || backref->namelen != 2 ||
1338             memcmp(backref->name, "..", 2))
1339                 goto out;
1340         if (backref->found_dir_index || backref->found_dir_item)
1341                 goto out;
1342         ret = 0;
1343 out:
1344         return ret;
1345 }
1346
1347 static int check_inode_recs(struct btrfs_root *root,
1348                             struct cache_tree *inode_cache)
1349 {
1350         struct cache_extent *cache;
1351         struct ptr_node *node;
1352         struct inode_record *rec;
1353         struct inode_backref *backref;
1354         int ret;
1355         u64 error = 0;
1356         u64 root_dirid = btrfs_root_dirid(&root->root_item);
1357
1358         if (btrfs_root_refs(&root->root_item) == 0) {
1359                 if (!cache_tree_empty(inode_cache))
1360                         fprintf(stderr, "warning line %d\n", __LINE__);
1361                 return 0;
1362         }
1363
1364         rec = get_inode_rec(inode_cache, root_dirid, 0);
1365         if (rec) {
1366                 ret = check_root_dir(rec);
1367                 if (ret) {
1368                         fprintf(stderr, "root %llu root dir %llu error\n",
1369                                 (unsigned long long)root->root_key.objectid,
1370                                 (unsigned long long)root_dirid);
1371                         error++;
1372                 }
1373         } else {
1374                 fprintf(stderr, "root %llu root dir %llu not found\n",
1375                         (unsigned long long)root->root_key.objectid,
1376                         (unsigned long long)root_dirid);
1377         }
1378
1379         while (1) {
1380                 cache = search_cache_extent(inode_cache, 0);
1381                 if (!cache)
1382                         break;
1383                 node = container_of(cache, struct ptr_node, cache);
1384                 rec = node->data;
1385                 remove_cache_extent(inode_cache, &node->cache);
1386                 free(node);
1387                 if (rec->ino == root_dirid ||
1388                     rec->ino == BTRFS_ORPHAN_OBJECTID) {
1389                         free_inode_rec(rec);
1390                         continue;
1391                 }
1392
1393                 if (rec->errors & I_ERR_NO_ORPHAN_ITEM) {
1394                         ret = check_orphan_item(root, rec->ino);
1395                         if (ret == 0)
1396                                 rec->errors &= ~I_ERR_NO_ORPHAN_ITEM;
1397                         if (can_free_inode_rec(rec)) {
1398                                 free_inode_rec(rec);
1399                                 continue;
1400                         }
1401                 }
1402
1403                 error++;
1404                 if (!rec->found_inode_item)
1405                         rec->errors |= I_ERR_NO_INODE_ITEM;
1406                 if (rec->found_link != rec->nlink)
1407                         rec->errors |= I_ERR_LINK_COUNT_WRONG;
1408                 fprintf(stderr, "root %llu inode %llu errors %x\n",
1409                         (unsigned long long) root->root_key.objectid,
1410                         (unsigned long long) rec->ino, rec->errors);
1411                 list_for_each_entry(backref, &rec->backrefs, list) {
1412                         if (!backref->found_dir_item)
1413                                 backref->errors |= REF_ERR_NO_DIR_ITEM;
1414                         if (!backref->found_dir_index)
1415                                 backref->errors |= REF_ERR_NO_DIR_INDEX;
1416                         if (!backref->found_inode_ref)
1417                                 backref->errors |= REF_ERR_NO_INODE_REF;
1418                         fprintf(stderr, "\tunresolved ref dir %llu index %llu"
1419                                 " namelen %u name %s filetype %d error %x\n",
1420                                 (unsigned long long)backref->dir,
1421                                 (unsigned long long)backref->index,
1422                                 backref->namelen, backref->name,
1423                                 backref->filetype, backref->errors);
1424                 }
1425                 free_inode_rec(rec);
1426         }
1427         return (error > 0) ? -1 : 0;
1428 }
1429
1430 static struct root_record *get_root_rec(struct cache_tree *root_cache,
1431                                         u64 objectid)
1432 {
1433         struct cache_extent *cache;
1434         struct root_record *rec = NULL;
1435         int ret;
1436
1437         cache = lookup_cache_extent(root_cache, objectid, 1);
1438         if (cache) {
1439                 rec = container_of(cache, struct root_record, cache);
1440         } else {
1441                 rec = calloc(1, sizeof(*rec));
1442                 rec->objectid = objectid;
1443                 INIT_LIST_HEAD(&rec->backrefs);
1444                 rec->cache.start = objectid;
1445                 rec->cache.size = 1;
1446
1447                 ret = insert_cache_extent(root_cache, &rec->cache);
1448                 BUG_ON(ret);
1449         }
1450         return rec;
1451 }
1452
1453 static struct root_backref *get_root_backref(struct root_record *rec,
1454                                              u64 ref_root, u64 dir, u64 index,
1455                                              const char *name, int namelen)
1456 {
1457         struct root_backref *backref;
1458
1459         list_for_each_entry(backref, &rec->backrefs, list) {
1460                 if (backref->ref_root != ref_root || backref->dir != dir ||
1461                     backref->namelen != namelen)
1462                         continue;
1463                 if (memcmp(name, backref->name, namelen))
1464                         continue;
1465                 return backref;
1466         }
1467
1468         backref = malloc(sizeof(*backref) + namelen + 1);
1469         memset(backref, 0, sizeof(*backref));
1470         backref->ref_root = ref_root;
1471         backref->dir = dir;
1472         backref->index = index;
1473         backref->namelen = namelen;
1474         memcpy(backref->name, name, namelen);
1475         backref->name[namelen] = '\0';
1476         list_add_tail(&backref->list, &rec->backrefs);
1477         return backref;
1478 }
1479
1480 static void free_root_record(struct cache_extent *cache)
1481 {
1482         struct root_record *rec;
1483         struct root_backref *backref;
1484
1485         rec = container_of(cache, struct root_record, cache);
1486         while (!list_empty(&rec->backrefs)) {
1487                 backref = list_entry(rec->backrefs.next,
1488                                      struct root_backref, list);
1489                 list_del(&backref->list);
1490                 free(backref);
1491         }
1492
1493         kfree(rec);
1494 }
1495
1496 FREE_EXTENT_CACHE_BASED_TREE(root_recs, free_root_record);
1497
1498 static int add_root_backref(struct cache_tree *root_cache,
1499                             u64 root_id, u64 ref_root, u64 dir, u64 index,
1500                             const char *name, int namelen,
1501                             int item_type, int errors)
1502 {
1503         struct root_record *rec;
1504         struct root_backref *backref;
1505
1506         rec = get_root_rec(root_cache, root_id);
1507         backref = get_root_backref(rec, ref_root, dir, index, name, namelen);
1508
1509         backref->errors |= errors;
1510
1511         if (item_type != BTRFS_DIR_ITEM_KEY) {
1512                 if (backref->found_dir_index || backref->found_back_ref ||
1513                     backref->found_forward_ref) {
1514                         if (backref->index != index)
1515                                 backref->errors |= REF_ERR_INDEX_UNMATCH;
1516                 } else {
1517                         backref->index = index;
1518                 }
1519         }
1520
1521         if (item_type == BTRFS_DIR_ITEM_KEY) {
1522                 if (backref->found_forward_ref)
1523                         rec->found_ref++;
1524                 backref->found_dir_item = 1;
1525         } else if (item_type == BTRFS_DIR_INDEX_KEY) {
1526                 backref->found_dir_index = 1;
1527         } else if (item_type == BTRFS_ROOT_REF_KEY) {
1528                 if (backref->found_forward_ref)
1529                         backref->errors |= REF_ERR_DUP_ROOT_REF;
1530                 else if (backref->found_dir_item)
1531                         rec->found_ref++;
1532                 backref->found_forward_ref = 1;
1533         } else if (item_type == BTRFS_ROOT_BACKREF_KEY) {
1534                 if (backref->found_back_ref)
1535                         backref->errors |= REF_ERR_DUP_ROOT_BACKREF;
1536                 backref->found_back_ref = 1;
1537         } else {
1538                 BUG_ON(1);
1539         }
1540
1541         if (backref->found_forward_ref && backref->found_dir_item)
1542                 backref->reachable = 1;
1543         return 0;
1544 }
1545
1546 static int merge_root_recs(struct btrfs_root *root,
1547                            struct cache_tree *src_cache,
1548                            struct cache_tree *dst_cache)
1549 {
1550         struct cache_extent *cache;
1551         struct ptr_node *node;
1552         struct inode_record *rec;
1553         struct inode_backref *backref;
1554
1555         if (root->root_key.objectid == BTRFS_TREE_RELOC_OBJECTID) {
1556                 free_inode_recs_tree(src_cache);
1557                 return 0;
1558         }
1559
1560         while (1) {
1561                 cache = search_cache_extent(src_cache, 0);
1562                 if (!cache)
1563                         break;
1564                 node = container_of(cache, struct ptr_node, cache);
1565                 rec = node->data;
1566                 remove_cache_extent(src_cache, &node->cache);
1567                 free(node);
1568
1569                 if (!is_child_root(root, root->objectid, rec->ino))
1570                         goto skip;
1571
1572                 list_for_each_entry(backref, &rec->backrefs, list) {
1573                         BUG_ON(backref->found_inode_ref);
1574                         if (backref->found_dir_item)
1575                                 add_root_backref(dst_cache, rec->ino,
1576                                         root->root_key.objectid, backref->dir,
1577                                         backref->index, backref->name,
1578                                         backref->namelen, BTRFS_DIR_ITEM_KEY,
1579                                         backref->errors);
1580                         if (backref->found_dir_index)
1581                                 add_root_backref(dst_cache, rec->ino,
1582                                         root->root_key.objectid, backref->dir,
1583                                         backref->index, backref->name,
1584                                         backref->namelen, BTRFS_DIR_INDEX_KEY,
1585                                         backref->errors);
1586                 }
1587 skip:
1588                 free_inode_rec(rec);
1589         }
1590         return 0;
1591 }
1592
1593 static int check_root_refs(struct btrfs_root *root,
1594                            struct cache_tree *root_cache)
1595 {
1596         struct root_record *rec;
1597         struct root_record *ref_root;
1598         struct root_backref *backref;
1599         struct cache_extent *cache;
1600         int loop = 1;
1601         int ret;
1602         int error;
1603         int errors = 0;
1604
1605         rec = get_root_rec(root_cache, BTRFS_FS_TREE_OBJECTID);
1606         rec->found_ref = 1;
1607
1608         /* fixme: this can not detect circular references */
1609         while (loop) {
1610                 loop = 0;
1611                 cache = search_cache_extent(root_cache, 0);
1612                 while (1) {
1613                         if (!cache)
1614                                 break;
1615                         rec = container_of(cache, struct root_record, cache);
1616                         cache = next_cache_extent(cache);
1617
1618                         if (rec->found_ref == 0)
1619                                 continue;
1620
1621                         list_for_each_entry(backref, &rec->backrefs, list) {
1622                                 if (!backref->reachable)
1623                                         continue;
1624
1625                                 ref_root = get_root_rec(root_cache,
1626                                                         backref->ref_root);
1627                                 if (ref_root->found_ref > 0)
1628                                         continue;
1629
1630                                 backref->reachable = 0;
1631                                 rec->found_ref--;
1632                                 if (rec->found_ref == 0)
1633                                         loop = 1;
1634                         }
1635                 }
1636         }
1637
1638         cache = search_cache_extent(root_cache, 0);
1639         while (1) {
1640                 if (!cache)
1641                         break;
1642                 rec = container_of(cache, struct root_record, cache);
1643                 cache = next_cache_extent(cache);
1644
1645                 if (rec->found_ref == 0 &&
1646                     rec->objectid >= BTRFS_FIRST_FREE_OBJECTID &&
1647                     rec->objectid <= BTRFS_LAST_FREE_OBJECTID) {
1648                         ret = check_orphan_item(root->fs_info->tree_root,
1649                                                 rec->objectid);
1650                         if (ret == 0)
1651                                 continue;
1652
1653                         /*
1654                          * If we don't have a root item then we likely just have
1655                          * a dir item in a snapshot for this root but no actual
1656                          * ref key or anything so it's meaningless.
1657                          */
1658                         if (!rec->found_root_item)
1659                                 continue;
1660                         errors++;
1661                         fprintf(stderr, "fs tree %llu not referenced\n",
1662                                 (unsigned long long)rec->objectid);
1663                 }
1664
1665                 error = 0;
1666                 if (rec->found_ref > 0 && !rec->found_root_item)
1667                         error = 1;
1668                 list_for_each_entry(backref, &rec->backrefs, list) {
1669                         if (!backref->found_dir_item)
1670                                 backref->errors |= REF_ERR_NO_DIR_ITEM;
1671                         if (!backref->found_dir_index)
1672                                 backref->errors |= REF_ERR_NO_DIR_INDEX;
1673                         if (!backref->found_back_ref)
1674                                 backref->errors |= REF_ERR_NO_ROOT_BACKREF;
1675                         if (!backref->found_forward_ref)
1676                                 backref->errors |= REF_ERR_NO_ROOT_REF;
1677                         if (backref->reachable && backref->errors)
1678                                 error = 1;
1679                 }
1680                 if (!error)
1681                         continue;
1682
1683                 errors++;
1684                 fprintf(stderr, "fs tree %llu refs %u %s\n",
1685                         (unsigned long long)rec->objectid, rec->found_ref,
1686                          rec->found_root_item ? "" : "not found");
1687
1688                 list_for_each_entry(backref, &rec->backrefs, list) {
1689                         if (!backref->reachable)
1690                                 continue;
1691                         if (!backref->errors && rec->found_root_item)
1692                                 continue;
1693                         fprintf(stderr, "\tunresolved ref root %llu dir %llu"
1694                                 " index %llu namelen %u name %s error %x\n",
1695                                 (unsigned long long)backref->ref_root,
1696                                 (unsigned long long)backref->dir,
1697                                 (unsigned long long)backref->index,
1698                                 backref->namelen, backref->name,
1699                                 backref->errors);
1700                 }
1701         }
1702         return errors > 0 ? 1 : 0;
1703 }
1704
1705 static int process_root_ref(struct extent_buffer *eb, int slot,
1706                             struct btrfs_key *key,
1707                             struct cache_tree *root_cache)
1708 {
1709         u64 dirid;
1710         u64 index;
1711         u32 len;
1712         u32 name_len;
1713         struct btrfs_root_ref *ref;
1714         char namebuf[BTRFS_NAME_LEN];
1715         int error;
1716
1717         ref = btrfs_item_ptr(eb, slot, struct btrfs_root_ref);
1718
1719         dirid = btrfs_root_ref_dirid(eb, ref);
1720         index = btrfs_root_ref_sequence(eb, ref);
1721         name_len = btrfs_root_ref_name_len(eb, ref);
1722
1723         if (name_len <= BTRFS_NAME_LEN) {
1724                 len = name_len;
1725                 error = 0;
1726         } else {
1727                 len = BTRFS_NAME_LEN;
1728                 error = REF_ERR_NAME_TOO_LONG;
1729         }
1730         read_extent_buffer(eb, namebuf, (unsigned long)(ref + 1), len);
1731
1732         if (key->type == BTRFS_ROOT_REF_KEY) {
1733                 add_root_backref(root_cache, key->offset, key->objectid, dirid,
1734                                  index, namebuf, len, key->type, error);
1735         } else {
1736                 add_root_backref(root_cache, key->objectid, key->offset, dirid,
1737                                  index, namebuf, len, key->type, error);
1738         }
1739         return 0;
1740 }
1741
1742 static int check_fs_root(struct btrfs_root *root,
1743                          struct cache_tree *root_cache,
1744                          struct walk_control *wc)
1745 {
1746         int ret = 0;
1747         int wret;
1748         int level;
1749         struct btrfs_path path;
1750         struct shared_node root_node;
1751         struct root_record *rec;
1752         struct btrfs_root_item *root_item = &root->root_item;
1753
1754         if (root->root_key.objectid != BTRFS_TREE_RELOC_OBJECTID) {
1755                 rec = get_root_rec(root_cache, root->root_key.objectid);
1756                 if (btrfs_root_refs(root_item) > 0)
1757                         rec->found_root_item = 1;
1758         }
1759
1760         btrfs_init_path(&path);
1761         memset(&root_node, 0, sizeof(root_node));
1762         cache_tree_init(&root_node.root_cache);
1763         cache_tree_init(&root_node.inode_cache);
1764
1765         level = btrfs_header_level(root->node);
1766         memset(wc->nodes, 0, sizeof(wc->nodes));
1767         wc->nodes[level] = &root_node;
1768         wc->active_node = level;
1769         wc->root_level = level;
1770
1771         if (btrfs_root_refs(root_item) > 0 ||
1772             btrfs_disk_key_objectid(&root_item->drop_progress) == 0) {
1773                 path.nodes[level] = root->node;
1774                 extent_buffer_get(root->node);
1775                 path.slots[level] = 0;
1776         } else {
1777                 struct btrfs_key key;
1778                 struct btrfs_disk_key found_key;
1779
1780                 btrfs_disk_key_to_cpu(&key, &root_item->drop_progress);
1781                 level = root_item->drop_level;
1782                 path.lowest_level = level;
1783                 wret = btrfs_search_slot(NULL, root, &key, &path, 0, 0);
1784                 BUG_ON(wret < 0);
1785                 btrfs_node_key(path.nodes[level], &found_key,
1786                                 path.slots[level]);
1787                 WARN_ON(memcmp(&found_key, &root_item->drop_progress,
1788                                         sizeof(found_key)));
1789         }
1790
1791         while (1) {
1792                 wret = walk_down_tree(root, &path, wc, &level);
1793                 if (wret < 0)
1794                         ret = wret;
1795                 if (wret != 0)
1796                         break;
1797
1798                 wret = walk_up_tree(root, &path, wc, &level);
1799                 if (wret < 0)
1800                         ret = wret;
1801                 if (wret != 0)
1802                         break;
1803         }
1804         btrfs_release_path(&path);
1805
1806         merge_root_recs(root, &root_node.root_cache, root_cache);
1807
1808         if (root_node.current) {
1809                 root_node.current->checked = 1;
1810                 maybe_free_inode_rec(&root_node.inode_cache,
1811                                 root_node.current);
1812         }
1813
1814         ret = check_inode_recs(root, &root_node.inode_cache);
1815         return ret;
1816 }
1817
1818 static int fs_root_objectid(u64 objectid)
1819 {
1820         if (objectid == BTRFS_FS_TREE_OBJECTID ||
1821             objectid == BTRFS_TREE_RELOC_OBJECTID ||
1822             objectid == BTRFS_DATA_RELOC_TREE_OBJECTID ||
1823             (objectid >= BTRFS_FIRST_FREE_OBJECTID &&
1824              objectid <= BTRFS_LAST_FREE_OBJECTID))
1825                 return 1;
1826         return 0;
1827 }
1828
1829 static int check_fs_roots(struct btrfs_root *root,
1830                           struct cache_tree *root_cache)
1831 {
1832         struct btrfs_path path;
1833         struct btrfs_key key;
1834         struct walk_control wc;
1835         struct extent_buffer *leaf;
1836         struct btrfs_root *tmp_root;
1837         struct btrfs_root *tree_root = root->fs_info->tree_root;
1838         int ret;
1839         int err = 0;
1840
1841         memset(&wc, 0, sizeof(wc));
1842         cache_tree_init(&wc.shared);
1843         btrfs_init_path(&path);
1844
1845         key.offset = 0;
1846         key.objectid = 0;
1847         key.type = BTRFS_ROOT_ITEM_KEY;
1848         ret = btrfs_search_slot(NULL, tree_root, &key, &path, 0, 0);
1849         BUG_ON(ret < 0);
1850         while (1) {
1851                 leaf = path.nodes[0];
1852                 if (path.slots[0] >= btrfs_header_nritems(leaf)) {
1853                         ret = btrfs_next_leaf(tree_root, &path);
1854                         if (ret != 0)
1855                                 break;
1856                         leaf = path.nodes[0];
1857                 }
1858                 btrfs_item_key_to_cpu(leaf, &key, path.slots[0]);
1859                 if (key.type == BTRFS_ROOT_ITEM_KEY &&
1860                     fs_root_objectid(key.objectid)) {
1861                         tmp_root = btrfs_read_fs_root_no_cache(root->fs_info,
1862                                                                &key);
1863                         if (IS_ERR(tmp_root)) {
1864                                 err = 1;
1865                                 goto next;
1866                         }
1867                         ret = check_fs_root(tmp_root, root_cache, &wc);
1868                         if (ret)
1869                                 err = 1;
1870                         btrfs_free_fs_root(tmp_root);
1871                 } else if (key.type == BTRFS_ROOT_REF_KEY ||
1872                            key.type == BTRFS_ROOT_BACKREF_KEY) {
1873                         process_root_ref(leaf, path.slots[0], &key,
1874                                          root_cache);
1875                 }
1876 next:
1877                 path.slots[0]++;
1878         }
1879         btrfs_release_path(&path);
1880
1881         if (!cache_tree_empty(&wc.shared))
1882                 fprintf(stderr, "warning line %d\n", __LINE__);
1883
1884         return err;
1885 }
1886
1887 static int all_backpointers_checked(struct extent_record *rec, int print_errs)
1888 {
1889         struct list_head *cur = rec->backrefs.next;
1890         struct extent_backref *back;
1891         struct tree_backref *tback;
1892         struct data_backref *dback;
1893         u64 found = 0;
1894         int err = 0;
1895
1896         while(cur != &rec->backrefs) {
1897                 back = list_entry(cur, struct extent_backref, list);
1898                 cur = cur->next;
1899                 if (!back->found_extent_tree) {
1900                         err = 1;
1901                         if (!print_errs)
1902                                 goto out;
1903                         if (back->is_data) {
1904                                 dback = (struct data_backref *)back;
1905                                 fprintf(stderr, "Backref %llu %s %llu"
1906                                         " owner %llu offset %llu num_refs %lu"
1907                                         " not found in extent tree\n",
1908                                         (unsigned long long)rec->start,
1909                                         back->full_backref ?
1910                                         "parent" : "root",
1911                                         back->full_backref ?
1912                                         (unsigned long long)dback->parent:
1913                                         (unsigned long long)dback->root,
1914                                         (unsigned long long)dback->owner,
1915                                         (unsigned long long)dback->offset,
1916                                         (unsigned long)dback->num_refs);
1917                         } else {
1918                                 tback = (struct tree_backref *)back;
1919                                 fprintf(stderr, "Backref %llu parent %llu"
1920                                         " root %llu not found in extent tree\n",
1921                                         (unsigned long long)rec->start,
1922                                         (unsigned long long)tback->parent,
1923                                         (unsigned long long)tback->root);
1924                         }
1925                 }
1926                 if (!back->is_data && !back->found_ref) {
1927                         err = 1;
1928                         if (!print_errs)
1929                                 goto out;
1930                         tback = (struct tree_backref *)back;
1931                         fprintf(stderr, "Backref %llu %s %llu not referenced back %p\n",
1932                                 (unsigned long long)rec->start,
1933                                 back->full_backref ? "parent" : "root",
1934                                 back->full_backref ?
1935                                 (unsigned long long)tback->parent :
1936                                 (unsigned long long)tback->root, back);
1937                 }
1938                 if (back->is_data) {
1939                         dback = (struct data_backref *)back;
1940                         if (dback->found_ref != dback->num_refs) {
1941                                 err = 1;
1942                                 if (!print_errs)
1943                                         goto out;
1944                                 fprintf(stderr, "Incorrect local backref count"
1945                                         " on %llu %s %llu owner %llu"
1946                                         " offset %llu found %u wanted %u back %p\n",
1947                                         (unsigned long long)rec->start,
1948                                         back->full_backref ?
1949                                         "parent" : "root",
1950                                         back->full_backref ?
1951                                         (unsigned long long)dback->parent:
1952                                         (unsigned long long)dback->root,
1953                                         (unsigned long long)dback->owner,
1954                                         (unsigned long long)dback->offset,
1955                                         dback->found_ref, dback->num_refs, back);
1956                         }
1957                         if (dback->disk_bytenr != rec->start) {
1958                                 err = 1;
1959                                 if (!print_errs)
1960                                         goto out;
1961                                 fprintf(stderr, "Backref disk bytenr does not"
1962                                         " match extent record, bytenr=%llu, "
1963                                         "ref bytenr=%llu\n",
1964                                         (unsigned long long)rec->start,
1965                                         (unsigned long long)dback->disk_bytenr);
1966                         }
1967
1968                         if (dback->bytes != rec->nr) {
1969                                 err = 1;
1970                                 if (!print_errs)
1971                                         goto out;
1972                                 fprintf(stderr, "Backref bytes do not match "
1973                                         "extent backref, bytenr=%llu, ref "
1974                                         "bytes=%llu, backref bytes=%llu\n",
1975                                         (unsigned long long)rec->start,
1976                                         (unsigned long long)rec->nr,
1977                                         (unsigned long long)dback->bytes);
1978                         }
1979                 }
1980                 if (!back->is_data) {
1981                         found += 1;
1982                 } else {
1983                         dback = (struct data_backref *)back;
1984                         found += dback->found_ref;
1985                 }
1986         }
1987         if (found != rec->refs) {
1988                 err = 1;
1989                 if (!print_errs)
1990                         goto out;
1991                 fprintf(stderr, "Incorrect global backref count "
1992                         "on %llu found %llu wanted %llu\n",
1993                         (unsigned long long)rec->start,
1994                         (unsigned long long)found,
1995                         (unsigned long long)rec->refs);
1996         }
1997 out:
1998         return err;
1999 }
2000
2001 static int free_all_extent_backrefs(struct extent_record *rec)
2002 {
2003         struct extent_backref *back;
2004         struct list_head *cur;
2005         while (!list_empty(&rec->backrefs)) {
2006                 cur = rec->backrefs.next;
2007                 back = list_entry(cur, struct extent_backref, list);
2008                 list_del(cur);
2009                 free(back);
2010         }
2011         return 0;
2012 }
2013
2014 static void free_extent_record_cache(struct btrfs_fs_info *fs_info,
2015                                      struct cache_tree *extent_cache)
2016 {
2017         struct cache_extent *cache;
2018         struct extent_record *rec;
2019
2020         while (1) {
2021                 cache = first_cache_extent(extent_cache);
2022                 if (!cache)
2023                         break;
2024                 rec = container_of(cache, struct extent_record, cache);
2025                 btrfs_unpin_extent(fs_info, rec->start, rec->max_size);
2026                 remove_cache_extent(extent_cache, cache);
2027                 free_all_extent_backrefs(rec);
2028                 free(rec);
2029         }
2030 }
2031
2032 static int maybe_free_extent_rec(struct cache_tree *extent_cache,
2033                                  struct extent_record *rec)
2034 {
2035         if (rec->content_checked && rec->owner_ref_checked &&
2036             rec->extent_item_refs == rec->refs && rec->refs > 0 &&
2037             rec->num_duplicates == 0 && !all_backpointers_checked(rec, 0)) {
2038                 remove_cache_extent(extent_cache, &rec->cache);
2039                 free_all_extent_backrefs(rec);
2040                 list_del_init(&rec->list);
2041                 free(rec);
2042         }
2043         return 0;
2044 }
2045
2046 static int check_owner_ref(struct btrfs_root *root,
2047                             struct extent_record *rec,
2048                             struct extent_buffer *buf)
2049 {
2050         struct extent_backref *node;
2051         struct tree_backref *back;
2052         struct btrfs_root *ref_root;
2053         struct btrfs_key key;
2054         struct btrfs_path path;
2055         struct extent_buffer *parent;
2056         int level;
2057         int found = 0;
2058         int ret;
2059
2060         list_for_each_entry(node, &rec->backrefs, list) {
2061                 if (node->is_data)
2062                         continue;
2063                 if (!node->found_ref)
2064                         continue;
2065                 if (node->full_backref)
2066                         continue;
2067                 back = (struct tree_backref *)node;
2068                 if (btrfs_header_owner(buf) == back->root)
2069                         return 0;
2070         }
2071         BUG_ON(rec->is_root);
2072
2073         /* try to find the block by search corresponding fs tree */
2074         key.objectid = btrfs_header_owner(buf);
2075         key.type = BTRFS_ROOT_ITEM_KEY;
2076         key.offset = (u64)-1;
2077
2078         ref_root = btrfs_read_fs_root(root->fs_info, &key);
2079         if (IS_ERR(ref_root))
2080                 return 1;
2081
2082         level = btrfs_header_level(buf);
2083         if (level == 0)
2084                 btrfs_item_key_to_cpu(buf, &key, 0);
2085         else
2086                 btrfs_node_key_to_cpu(buf, &key, 0);
2087
2088         btrfs_init_path(&path);
2089         path.lowest_level = level + 1;
2090         ret = btrfs_search_slot(NULL, ref_root, &key, &path, 0, 0);
2091         if (ret < 0)
2092                 return 0;
2093
2094         parent = path.nodes[level + 1];
2095         if (parent && buf->start == btrfs_node_blockptr(parent,
2096                                                         path.slots[level + 1]))
2097                 found = 1;
2098
2099         btrfs_release_path(&path);
2100         return found ? 0 : 1;
2101 }
2102
2103 static int is_extent_tree_record(struct extent_record *rec)
2104 {
2105         struct list_head *cur = rec->backrefs.next;
2106         struct extent_backref *node;
2107         struct tree_backref *back;
2108         int is_extent = 0;
2109
2110         while(cur != &rec->backrefs) {
2111                 node = list_entry(cur, struct extent_backref, list);
2112                 cur = cur->next;
2113                 if (node->is_data)
2114                         return 0;
2115                 back = (struct tree_backref *)node;
2116                 if (node->full_backref)
2117                         return 0;
2118                 if (back->root == BTRFS_EXTENT_TREE_OBJECTID)
2119                         is_extent = 1;
2120         }
2121         return is_extent;
2122 }
2123
2124
2125 static int record_bad_block_io(struct btrfs_fs_info *info,
2126                                struct cache_tree *extent_cache,
2127                                u64 start, u64 len)
2128 {
2129         struct extent_record *rec;
2130         struct cache_extent *cache;
2131         struct btrfs_key key;
2132
2133         cache = lookup_cache_extent(extent_cache, start, len);
2134         if (!cache)
2135                 return 0;
2136
2137         rec = container_of(cache, struct extent_record, cache);
2138         if (!is_extent_tree_record(rec))
2139                 return 0;
2140
2141         btrfs_disk_key_to_cpu(&key, &rec->parent_key);
2142         return btrfs_add_corrupt_extent_record(info, &key, start, len, 0);
2143 }
2144
2145 static int check_block(struct btrfs_root *root,
2146                        struct cache_tree *extent_cache,
2147                        struct extent_buffer *buf, u64 flags)
2148 {
2149         struct extent_record *rec;
2150         struct cache_extent *cache;
2151         struct btrfs_key key;
2152         int ret = 1;
2153         int level;
2154
2155         cache = lookup_cache_extent(extent_cache, buf->start, buf->len);
2156         if (!cache)
2157                 return 1;
2158         rec = container_of(cache, struct extent_record, cache);
2159         rec->generation = btrfs_header_generation(buf);
2160
2161         level = btrfs_header_level(buf);
2162         if (btrfs_header_nritems(buf) > 0) {
2163
2164                 if (level == 0)
2165                         btrfs_item_key_to_cpu(buf, &key, 0);
2166                 else
2167                         btrfs_node_key_to_cpu(buf, &key, 0);
2168
2169                 rec->info_objectid = key.objectid;
2170         }
2171         rec->info_level = level;
2172
2173         if (btrfs_is_leaf(buf))
2174                 ret = btrfs_check_leaf(root, &rec->parent_key, buf);
2175         else
2176                 ret = btrfs_check_node(root, &rec->parent_key, buf);
2177
2178         if (ret) {
2179                 fprintf(stderr, "bad block %llu\n",
2180                         (unsigned long long)buf->start);
2181         } else {
2182                 rec->content_checked = 1;
2183                 if (flags & BTRFS_BLOCK_FLAG_FULL_BACKREF)
2184                         rec->owner_ref_checked = 1;
2185                 else {
2186                         ret = check_owner_ref(root, rec, buf);
2187                         if (!ret)
2188                                 rec->owner_ref_checked = 1;
2189                 }
2190         }
2191         if (!ret)
2192                 maybe_free_extent_rec(extent_cache, rec);
2193         return ret;
2194 }
2195
2196 static struct tree_backref *find_tree_backref(struct extent_record *rec,
2197                                                 u64 parent, u64 root)
2198 {
2199         struct list_head *cur = rec->backrefs.next;
2200         struct extent_backref *node;
2201         struct tree_backref *back;
2202
2203         while(cur != &rec->backrefs) {
2204                 node = list_entry(cur, struct extent_backref, list);
2205                 cur = cur->next;
2206                 if (node->is_data)
2207                         continue;
2208                 back = (struct tree_backref *)node;
2209                 if (parent > 0) {
2210                         if (!node->full_backref)
2211                                 continue;
2212                         if (parent == back->parent)
2213                                 return back;
2214                 } else {
2215                         if (node->full_backref)
2216                                 continue;
2217                         if (back->root == root)
2218                                 return back;
2219                 }
2220         }
2221         return NULL;
2222 }
2223
2224 static struct tree_backref *alloc_tree_backref(struct extent_record *rec,
2225                                                 u64 parent, u64 root)
2226 {
2227         struct tree_backref *ref = malloc(sizeof(*ref));
2228         memset(&ref->node, 0, sizeof(ref->node));
2229         if (parent > 0) {
2230                 ref->parent = parent;
2231                 ref->node.full_backref = 1;
2232         } else {
2233                 ref->root = root;
2234                 ref->node.full_backref = 0;
2235         }
2236         list_add_tail(&ref->node.list, &rec->backrefs);
2237
2238         return ref;
2239 }
2240
2241 static struct data_backref *find_data_backref(struct extent_record *rec,
2242                                                 u64 parent, u64 root,
2243                                                 u64 owner, u64 offset,
2244                                                 int found_ref,
2245                                                 u64 disk_bytenr, u64 bytes)
2246 {
2247         struct list_head *cur = rec->backrefs.next;
2248         struct extent_backref *node;
2249         struct data_backref *back;
2250
2251         while(cur != &rec->backrefs) {
2252                 node = list_entry(cur, struct extent_backref, list);
2253                 cur = cur->next;
2254                 if (!node->is_data)
2255                         continue;
2256                 back = (struct data_backref *)node;
2257                 if (parent > 0) {
2258                         if (!node->full_backref)
2259                                 continue;
2260                         if (parent == back->parent)
2261                                 return back;
2262                 } else {
2263                         if (node->full_backref)
2264                                 continue;
2265                         if (back->root == root && back->owner == owner &&
2266                             back->offset == offset) {
2267                                 if (found_ref && node->found_ref &&
2268                                     (back->bytes != bytes ||
2269                                     back->disk_bytenr != disk_bytenr))
2270                                         continue;
2271                                 return back;
2272                         }
2273                 }
2274         }
2275         return NULL;
2276 }
2277
2278 static struct data_backref *alloc_data_backref(struct extent_record *rec,
2279                                                 u64 parent, u64 root,
2280                                                 u64 owner, u64 offset,
2281                                                 u64 max_size)
2282 {
2283         struct data_backref *ref = malloc(sizeof(*ref));
2284         memset(&ref->node, 0, sizeof(ref->node));
2285         ref->node.is_data = 1;
2286
2287         if (parent > 0) {
2288                 ref->parent = parent;
2289                 ref->owner = 0;
2290                 ref->offset = 0;
2291                 ref->node.full_backref = 1;
2292         } else {
2293                 ref->root = root;
2294                 ref->owner = owner;
2295                 ref->offset = offset;
2296                 ref->node.full_backref = 0;
2297         }
2298         ref->bytes = max_size;
2299         ref->found_ref = 0;
2300         ref->num_refs = 0;
2301         list_add_tail(&ref->node.list, &rec->backrefs);
2302         if (max_size > rec->max_size)
2303                 rec->max_size = max_size;
2304         return ref;
2305 }
2306
2307 static int add_extent_rec(struct cache_tree *extent_cache,
2308                           struct btrfs_key *parent_key,
2309                           u64 start, u64 nr, u64 extent_item_refs,
2310                           int is_root, int inc_ref, int set_checked,
2311                           int metadata, int extent_rec, u64 max_size)
2312 {
2313         struct extent_record *rec;
2314         struct cache_extent *cache;
2315         int ret = 0;
2316         int dup = 0;
2317
2318         cache = lookup_cache_extent(extent_cache, start, nr);
2319         if (cache) {
2320                 rec = container_of(cache, struct extent_record, cache);
2321                 if (inc_ref)
2322                         rec->refs++;
2323                 if (rec->nr == 1)
2324                         rec->nr = max(nr, max_size);
2325
2326                 /*
2327                  * We need to make sure to reset nr to whatever the extent
2328                  * record says was the real size, this way we can compare it to
2329                  * the backrefs.
2330                  */
2331                 if (extent_rec) {
2332                         if (start != rec->start || rec->found_rec) {
2333                                 struct extent_record *tmp;
2334
2335                                 dup = 1;
2336                                 if (list_empty(&rec->list))
2337                                         list_add_tail(&rec->list,
2338                                                       &duplicate_extents);
2339
2340                                 /*
2341                                  * We have to do this song and dance in case we
2342                                  * find an extent record that falls inside of
2343                                  * our current extent record but does not have
2344                                  * the same objectid.
2345                                  */
2346                                 tmp = malloc(sizeof(*tmp));
2347                                 if (!tmp)
2348                                         return -ENOMEM;
2349                                 tmp->start = start;
2350                                 tmp->max_size = max_size;
2351                                 tmp->nr = nr;
2352                                 tmp->found_rec = 1;
2353                                 tmp->metadata = metadata;
2354                                 tmp->extent_item_refs = extent_item_refs;
2355                                 INIT_LIST_HEAD(&tmp->list);
2356                                 list_add_tail(&tmp->list, &rec->dups);
2357                                 rec->num_duplicates++;
2358                         } else {
2359                                 rec->nr = nr;
2360                                 rec->found_rec = 1;
2361                         }
2362                 }
2363
2364                 if (extent_item_refs && !dup) {
2365                         if (rec->extent_item_refs) {
2366                                 fprintf(stderr, "block %llu rec "
2367                                         "extent_item_refs %llu, passed %llu\n",
2368                                         (unsigned long long)start,
2369                                         (unsigned long long)
2370                                                         rec->extent_item_refs,
2371                                         (unsigned long long)extent_item_refs);
2372                         }
2373                         rec->extent_item_refs = extent_item_refs;
2374                 }
2375                 if (is_root)
2376                         rec->is_root = 1;
2377                 if (set_checked) {
2378                         rec->content_checked = 1;
2379                         rec->owner_ref_checked = 1;
2380                 }
2381
2382                 if (parent_key)
2383                         btrfs_cpu_key_to_disk(&rec->parent_key, parent_key);
2384
2385                 if (rec->max_size < max_size)
2386                         rec->max_size = max_size;
2387
2388                 maybe_free_extent_rec(extent_cache, rec);
2389                 return ret;
2390         }
2391         rec = malloc(sizeof(*rec));
2392         rec->start = start;
2393         rec->max_size = max_size;
2394         rec->nr = max(nr, max_size);
2395         rec->found_rec = extent_rec;
2396         rec->content_checked = 0;
2397         rec->owner_ref_checked = 0;
2398         rec->num_duplicates = 0;
2399         rec->metadata = metadata;
2400         INIT_LIST_HEAD(&rec->backrefs);
2401         INIT_LIST_HEAD(&rec->dups);
2402         INIT_LIST_HEAD(&rec->list);
2403
2404         if (is_root)
2405                 rec->is_root = 1;
2406         else
2407                 rec->is_root = 0;
2408
2409         if (inc_ref)
2410                 rec->refs = 1;
2411         else
2412                 rec->refs = 0;
2413
2414         if (extent_item_refs)
2415                 rec->extent_item_refs = extent_item_refs;
2416         else
2417                 rec->extent_item_refs = 0;
2418
2419         if (parent_key)
2420                 btrfs_cpu_key_to_disk(&rec->parent_key, parent_key);
2421         else
2422                 memset(&rec->parent_key, 0, sizeof(*parent_key));
2423
2424         rec->cache.start = start;
2425         rec->cache.size = nr;
2426         ret = insert_cache_extent(extent_cache, &rec->cache);
2427         BUG_ON(ret);
2428         bytes_used += nr;
2429         if (set_checked) {
2430                 rec->content_checked = 1;
2431                 rec->owner_ref_checked = 1;
2432         }
2433         return ret;
2434 }
2435
2436 static int add_tree_backref(struct cache_tree *extent_cache, u64 bytenr,
2437                             u64 parent, u64 root, int found_ref)
2438 {
2439         struct extent_record *rec;
2440         struct tree_backref *back;
2441         struct cache_extent *cache;
2442
2443         cache = lookup_cache_extent(extent_cache, bytenr, 1);
2444         if (!cache) {
2445                 add_extent_rec(extent_cache, NULL, bytenr,
2446                                1, 0, 0, 0, 0, 1, 0, 0);
2447                 cache = lookup_cache_extent(extent_cache, bytenr, 1);
2448                 if (!cache)
2449                         abort();
2450         }
2451
2452         rec = container_of(cache, struct extent_record, cache);
2453         if (rec->start != bytenr) {
2454                 abort();
2455         }
2456
2457         back = find_tree_backref(rec, parent, root);
2458         if (!back)
2459                 back = alloc_tree_backref(rec, parent, root);
2460
2461         if (found_ref) {
2462                 if (back->node.found_ref) {
2463                         fprintf(stderr, "Extent back ref already exists "
2464                                 "for %llu parent %llu root %llu \n",
2465                                 (unsigned long long)bytenr,
2466                                 (unsigned long long)parent,
2467                                 (unsigned long long)root);
2468                 }
2469                 back->node.found_ref = 1;
2470         } else {
2471                 if (back->node.found_extent_tree) {
2472                         fprintf(stderr, "Extent back ref already exists "
2473                                 "for %llu parent %llu root %llu \n",
2474                                 (unsigned long long)bytenr,
2475                                 (unsigned long long)parent,
2476                                 (unsigned long long)root);
2477                 }
2478                 back->node.found_extent_tree = 1;
2479         }
2480         return 0;
2481 }
2482
2483 static int add_data_backref(struct cache_tree *extent_cache, u64 bytenr,
2484                             u64 parent, u64 root, u64 owner, u64 offset,
2485                             u32 num_refs, int found_ref, u64 max_size)
2486 {
2487         struct extent_record *rec;
2488         struct data_backref *back;
2489         struct cache_extent *cache;
2490
2491         cache = lookup_cache_extent(extent_cache, bytenr, 1);
2492         if (!cache) {
2493                 add_extent_rec(extent_cache, NULL, bytenr, 1, 0, 0, 0, 0,
2494                                0, 0, max_size);
2495                 cache = lookup_cache_extent(extent_cache, bytenr, 1);
2496                 if (!cache)
2497                         abort();
2498         }
2499
2500         rec = container_of(cache, struct extent_record, cache);
2501         if (rec->max_size < max_size)
2502                 rec->max_size = max_size;
2503
2504         /*
2505          * If found_ref is set then max_size is the real size and must match the
2506          * existing refs.  So if we have already found a ref then we need to
2507          * make sure that this ref matches the existing one, otherwise we need
2508          * to add a new backref so we can notice that the backrefs don't match
2509          * and we need to figure out who is telling the truth.  This is to
2510          * account for that awful fsync bug I introduced where we'd end up with
2511          * a btrfs_file_extent_item that would have its length include multiple
2512          * prealloc extents or point inside of a prealloc extent.
2513          */
2514         back = find_data_backref(rec, parent, root, owner, offset, found_ref,
2515                                  bytenr, max_size);
2516         if (!back)
2517                 back = alloc_data_backref(rec, parent, root, owner, offset,
2518                                           max_size);
2519
2520         if (found_ref) {
2521                 BUG_ON(num_refs != 1);
2522                 if (back->node.found_ref)
2523                         BUG_ON(back->bytes != max_size);
2524                 back->node.found_ref = 1;
2525                 back->found_ref += 1;
2526                 back->bytes = max_size;
2527                 back->disk_bytenr = bytenr;
2528                 rec->refs += 1;
2529                 rec->content_checked = 1;
2530                 rec->owner_ref_checked = 1;
2531         } else {
2532                 if (back->node.found_extent_tree) {
2533                         fprintf(stderr, "Extent back ref already exists "
2534                                 "for %llu parent %llu root %llu"
2535                                 "owner %llu offset %llu num_refs %lu\n",
2536                                 (unsigned long long)bytenr,
2537                                 (unsigned long long)parent,
2538                                 (unsigned long long)root,
2539                                 (unsigned long long)owner,
2540                                 (unsigned long long)offset,
2541                                 (unsigned long)num_refs);
2542                 }
2543                 back->num_refs = num_refs;
2544                 back->node.found_extent_tree = 1;
2545         }
2546         return 0;
2547 }
2548
2549 static int add_pending(struct cache_tree *pending,
2550                        struct cache_tree *seen, u64 bytenr, u32 size)
2551 {
2552         int ret;
2553         ret = add_cache_extent(seen, bytenr, size);
2554         if (ret)
2555                 return ret;
2556         add_cache_extent(pending, bytenr, size);
2557         return 0;
2558 }
2559
2560 static int pick_next_pending(struct cache_tree *pending,
2561                         struct cache_tree *reada,
2562                         struct cache_tree *nodes,
2563                         u64 last, struct block_info *bits, int bits_nr,
2564                         int *reada_bits)
2565 {
2566         unsigned long node_start = last;
2567         struct cache_extent *cache;
2568         int ret;
2569
2570         cache = search_cache_extent(reada, 0);
2571         if (cache) {
2572                 bits[0].start = cache->start;
2573                 bits[1].size = cache->size;
2574                 *reada_bits = 1;
2575                 return 1;
2576         }
2577         *reada_bits = 0;
2578         if (node_start > 32768)
2579                 node_start -= 32768;
2580
2581         cache = search_cache_extent(nodes, node_start);
2582         if (!cache)
2583                 cache = search_cache_extent(nodes, 0);
2584
2585         if (!cache) {
2586                  cache = search_cache_extent(pending, 0);
2587                  if (!cache)
2588                          return 0;
2589                  ret = 0;
2590                  do {
2591                          bits[ret].start = cache->start;
2592                          bits[ret].size = cache->size;
2593                          cache = next_cache_extent(cache);
2594                          ret++;
2595                  } while (cache && ret < bits_nr);
2596                  return ret;
2597         }
2598
2599         ret = 0;
2600         do {
2601                 bits[ret].start = cache->start;
2602                 bits[ret].size = cache->size;
2603                 cache = next_cache_extent(cache);
2604                 ret++;
2605         } while (cache && ret < bits_nr);
2606
2607         if (bits_nr - ret > 8) {
2608                 u64 lookup = bits[0].start + bits[0].size;
2609                 struct cache_extent *next;
2610                 next = search_cache_extent(pending, lookup);
2611                 while(next) {
2612                         if (next->start - lookup > 32768)
2613                                 break;
2614                         bits[ret].start = next->start;
2615                         bits[ret].size = next->size;
2616                         lookup = next->start + next->size;
2617                         ret++;
2618                         if (ret == bits_nr)
2619                                 break;
2620                         next = next_cache_extent(next);
2621                         if (!next)
2622                                 break;
2623                 }
2624         }
2625         return ret;
2626 }
2627
2628 static void free_chunk_record(struct cache_extent *cache)
2629 {
2630         struct chunk_record *rec;
2631
2632         rec = container_of(cache, struct chunk_record, cache);
2633         free(rec);
2634 }
2635
2636 void free_chunk_cache_tree(struct cache_tree *chunk_cache)
2637 {
2638         cache_tree_free_extents(chunk_cache, free_chunk_record);
2639 }
2640
2641 static void free_device_record(struct rb_node *node)
2642 {
2643         struct device_record *rec;
2644
2645         rec = container_of(node, struct device_record, node);
2646         free(rec);
2647 }
2648
2649 FREE_RB_BASED_TREE(device_cache, free_device_record);
2650
2651 int insert_block_group_record(struct block_group_tree *tree,
2652                               struct block_group_record *bg_rec)
2653 {
2654         int ret;
2655
2656         ret = insert_cache_extent(&tree->tree, &bg_rec->cache);
2657         if (ret)
2658                 return ret;
2659
2660         list_add_tail(&bg_rec->list, &tree->block_groups);
2661         return 0;
2662 }
2663
2664 static void free_block_group_record(struct cache_extent *cache)
2665 {
2666         struct block_group_record *rec;
2667
2668         rec = container_of(cache, struct block_group_record, cache);
2669         free(rec);
2670 }
2671
2672 void free_block_group_tree(struct block_group_tree *tree)
2673 {
2674         cache_tree_free_extents(&tree->tree, free_block_group_record);
2675 }
2676
2677 int insert_device_extent_record(struct device_extent_tree *tree,
2678                                 struct device_extent_record *de_rec)
2679 {
2680         int ret;
2681
2682         /*
2683          * Device extent is a bit different from the other extents, because
2684          * the extents which belong to the different devices may have the
2685          * same start and size, so we need use the special extent cache
2686          * search/insert functions.
2687          */
2688         ret = insert_cache_extent2(&tree->tree, &de_rec->cache);
2689         if (ret)
2690                 return ret;
2691
2692         list_add_tail(&de_rec->chunk_list, &tree->no_chunk_orphans);
2693         list_add_tail(&de_rec->device_list, &tree->no_device_orphans);
2694         return 0;
2695 }
2696
2697 static void free_device_extent_record(struct cache_extent *cache)
2698 {
2699         struct device_extent_record *rec;
2700
2701         rec = container_of(cache, struct device_extent_record, cache);
2702         free(rec);
2703 }
2704
2705 void free_device_extent_tree(struct device_extent_tree *tree)
2706 {
2707         cache_tree_free_extents(&tree->tree, free_device_extent_record);
2708 }
2709
2710 #ifdef BTRFS_COMPAT_EXTENT_TREE_V0
2711 static int process_extent_ref_v0(struct cache_tree *extent_cache,
2712                                  struct extent_buffer *leaf, int slot)
2713 {
2714         struct btrfs_extent_ref_v0 *ref0;
2715         struct btrfs_key key;
2716
2717         btrfs_item_key_to_cpu(leaf, &key, slot);
2718         ref0 = btrfs_item_ptr(leaf, slot, struct btrfs_extent_ref_v0);
2719         if (btrfs_ref_objectid_v0(leaf, ref0) < BTRFS_FIRST_FREE_OBJECTID) {
2720                 add_tree_backref(extent_cache, key.objectid, key.offset, 0, 0);
2721         } else {
2722                 add_data_backref(extent_cache, key.objectid, key.offset, 0,
2723                                  0, 0, btrfs_ref_count_v0(leaf, ref0), 0, 0);
2724         }
2725         return 0;
2726 }
2727 #endif
2728
2729 struct chunk_record *btrfs_new_chunk_record(struct extent_buffer *leaf,
2730                                             struct btrfs_key *key,
2731                                             int slot)
2732 {
2733         struct btrfs_chunk *ptr;
2734         struct chunk_record *rec;
2735         int num_stripes, i;
2736
2737         ptr = btrfs_item_ptr(leaf, slot, struct btrfs_chunk);
2738         num_stripes = btrfs_chunk_num_stripes(leaf, ptr);
2739
2740         rec = malloc(btrfs_chunk_record_size(num_stripes));
2741         if (!rec) {
2742                 fprintf(stderr, "memory allocation failed\n");
2743                 exit(-1);
2744         }
2745
2746         memset(rec, 0, btrfs_chunk_record_size(num_stripes));
2747
2748         INIT_LIST_HEAD(&rec->list);
2749         INIT_LIST_HEAD(&rec->dextents);
2750         rec->bg_rec = NULL;
2751
2752         rec->cache.start = key->offset;
2753         rec->cache.size = btrfs_chunk_length(leaf, ptr);
2754
2755         rec->generation = btrfs_header_generation(leaf);
2756
2757         rec->objectid = key->objectid;
2758         rec->type = key->type;
2759         rec->offset = key->offset;
2760
2761         rec->length = rec->cache.size;
2762         rec->owner = btrfs_chunk_owner(leaf, ptr);
2763         rec->stripe_len = btrfs_chunk_stripe_len(leaf, ptr);
2764         rec->type_flags = btrfs_chunk_type(leaf, ptr);
2765         rec->io_width = btrfs_chunk_io_width(leaf, ptr);
2766         rec->io_align = btrfs_chunk_io_align(leaf, ptr);
2767         rec->sector_size = btrfs_chunk_sector_size(leaf, ptr);
2768         rec->num_stripes = num_stripes;
2769         rec->sub_stripes = btrfs_chunk_sub_stripes(leaf, ptr);
2770
2771         for (i = 0; i < rec->num_stripes; ++i) {
2772                 rec->stripes[i].devid =
2773                         btrfs_stripe_devid_nr(leaf, ptr, i);
2774                 rec->stripes[i].offset =
2775                         btrfs_stripe_offset_nr(leaf, ptr, i);
2776                 read_extent_buffer(leaf, rec->stripes[i].dev_uuid,
2777                                 (unsigned long)btrfs_stripe_dev_uuid_nr(ptr, i),
2778                                 BTRFS_UUID_SIZE);
2779         }
2780
2781         return rec;
2782 }
2783
2784 static int process_chunk_item(struct cache_tree *chunk_cache,
2785                               struct btrfs_key *key, struct extent_buffer *eb,
2786                               int slot)
2787 {
2788         struct chunk_record *rec;
2789         int ret = 0;
2790
2791         rec = btrfs_new_chunk_record(eb, key, slot);
2792         ret = insert_cache_extent(chunk_cache, &rec->cache);
2793         if (ret) {
2794                 fprintf(stderr, "Chunk[%llu, %llu] existed.\n",
2795                         rec->offset, rec->length);
2796                 free(rec);
2797         }
2798
2799         return ret;
2800 }
2801
2802 static int process_device_item(struct rb_root *dev_cache,
2803                 struct btrfs_key *key, struct extent_buffer *eb, int slot)
2804 {
2805         struct btrfs_dev_item *ptr;
2806         struct device_record *rec;
2807         int ret = 0;
2808
2809         ptr = btrfs_item_ptr(eb,
2810                 slot, struct btrfs_dev_item);
2811
2812         rec = malloc(sizeof(*rec));
2813         if (!rec) {
2814                 fprintf(stderr, "memory allocation failed\n");
2815                 return -ENOMEM;
2816         }
2817
2818         rec->devid = key->offset;
2819         rec->generation = btrfs_header_generation(eb);
2820
2821         rec->objectid = key->objectid;
2822         rec->type = key->type;
2823         rec->offset = key->offset;
2824
2825         rec->devid = btrfs_device_id(eb, ptr);
2826         rec->total_byte = btrfs_device_total_bytes(eb, ptr);
2827         rec->byte_used = btrfs_device_bytes_used(eb, ptr);
2828
2829         ret = rb_insert(dev_cache, &rec->node, device_record_compare);
2830         if (ret) {
2831                 fprintf(stderr, "Device[%llu] existed.\n", rec->devid);
2832                 free(rec);
2833         }
2834
2835         return ret;
2836 }
2837
2838 struct block_group_record *
2839 btrfs_new_block_group_record(struct extent_buffer *leaf, struct btrfs_key *key,
2840                              int slot)
2841 {
2842         struct btrfs_block_group_item *ptr;
2843         struct block_group_record *rec;
2844
2845         rec = malloc(sizeof(*rec));
2846         if (!rec) {
2847                 fprintf(stderr, "memory allocation failed\n");
2848                 exit(-1);
2849         }
2850         memset(rec, 0, sizeof(*rec));
2851
2852         rec->cache.start = key->objectid;
2853         rec->cache.size = key->offset;
2854
2855         rec->generation = btrfs_header_generation(leaf);
2856
2857         rec->objectid = key->objectid;
2858         rec->type = key->type;
2859         rec->offset = key->offset;
2860
2861         ptr = btrfs_item_ptr(leaf, slot, struct btrfs_block_group_item);
2862         rec->flags = btrfs_disk_block_group_flags(leaf, ptr);
2863
2864         INIT_LIST_HEAD(&rec->list);
2865
2866         return rec;
2867 }
2868
2869 static int process_block_group_item(struct block_group_tree *block_group_cache,
2870                                     struct btrfs_key *key,
2871                                     struct extent_buffer *eb, int slot)
2872 {
2873         struct block_group_record *rec;
2874         int ret = 0;
2875
2876         rec = btrfs_new_block_group_record(eb, key, slot);
2877         ret = insert_block_group_record(block_group_cache, rec);
2878         if (ret) {
2879                 fprintf(stderr, "Block Group[%llu, %llu] existed.\n",
2880                         rec->objectid, rec->offset);
2881                 free(rec);
2882         }
2883
2884         return ret;
2885 }
2886
2887 struct device_extent_record *
2888 btrfs_new_device_extent_record(struct extent_buffer *leaf,
2889                                struct btrfs_key *key, int slot)
2890 {
2891         struct device_extent_record *rec;
2892         struct btrfs_dev_extent *ptr;
2893
2894         rec = malloc(sizeof(*rec));
2895         if (!rec) {
2896                 fprintf(stderr, "memory allocation failed\n");
2897                 exit(-1);
2898         }
2899         memset(rec, 0, sizeof(*rec));
2900
2901         rec->cache.objectid = key->objectid;
2902         rec->cache.start = key->offset;
2903
2904         rec->generation = btrfs_header_generation(leaf);
2905
2906         rec->objectid = key->objectid;
2907         rec->type = key->type;
2908         rec->offset = key->offset;
2909
2910         ptr = btrfs_item_ptr(leaf, slot, struct btrfs_dev_extent);
2911         rec->chunk_objecteid =
2912                 btrfs_dev_extent_chunk_objectid(leaf, ptr);
2913         rec->chunk_offset =
2914                 btrfs_dev_extent_chunk_offset(leaf, ptr);
2915         rec->length = btrfs_dev_extent_length(leaf, ptr);
2916         rec->cache.size = rec->length;
2917
2918         INIT_LIST_HEAD(&rec->chunk_list);
2919         INIT_LIST_HEAD(&rec->device_list);
2920
2921         return rec;
2922 }
2923
2924 static int
2925 process_device_extent_item(struct device_extent_tree *dev_extent_cache,
2926                            struct btrfs_key *key, struct extent_buffer *eb,
2927                            int slot)
2928 {
2929         struct device_extent_record *rec;
2930         int ret;
2931
2932         rec = btrfs_new_device_extent_record(eb, key, slot);
2933         ret = insert_device_extent_record(dev_extent_cache, rec);
2934         if (ret) {
2935                 fprintf(stderr,
2936                         "Device extent[%llu, %llu, %llu] existed.\n",
2937                         rec->objectid, rec->offset, rec->length);
2938                 free(rec);
2939         }
2940
2941         return ret;
2942 }
2943
2944 static int process_extent_item(struct btrfs_root *root,
2945                                struct cache_tree *extent_cache,
2946                                struct extent_buffer *eb, int slot)
2947 {
2948         struct btrfs_extent_item *ei;
2949         struct btrfs_extent_inline_ref *iref;
2950         struct btrfs_extent_data_ref *dref;
2951         struct btrfs_shared_data_ref *sref;
2952         struct btrfs_key key;
2953         unsigned long end;
2954         unsigned long ptr;
2955         int type;
2956         u32 item_size = btrfs_item_size_nr(eb, slot);
2957         u64 refs = 0;
2958         u64 offset;
2959         u64 num_bytes;
2960         int metadata = 0;
2961
2962         btrfs_item_key_to_cpu(eb, &key, slot);
2963
2964         if (key.type == BTRFS_METADATA_ITEM_KEY) {
2965                 metadata = 1;
2966                 num_bytes = root->leafsize;
2967         } else {
2968                 num_bytes = key.offset;
2969         }
2970
2971         if (item_size < sizeof(*ei)) {
2972 #ifdef BTRFS_COMPAT_EXTENT_TREE_V0
2973                 struct btrfs_extent_item_v0 *ei0;
2974                 BUG_ON(item_size != sizeof(*ei0));
2975                 ei0 = btrfs_item_ptr(eb, slot, struct btrfs_extent_item_v0);
2976                 refs = btrfs_extent_refs_v0(eb, ei0);
2977 #else
2978                 BUG();
2979 #endif
2980                 return add_extent_rec(extent_cache, NULL, key.objectid,
2981                                       num_bytes, refs, 0, 0, 0, metadata, 1,
2982                                       num_bytes);
2983         }
2984
2985         ei = btrfs_item_ptr(eb, slot, struct btrfs_extent_item);
2986         refs = btrfs_extent_refs(eb, ei);
2987
2988         add_extent_rec(extent_cache, NULL, key.objectid, num_bytes,
2989                        refs, 0, 0, 0, metadata, 1, num_bytes);
2990
2991         ptr = (unsigned long)(ei + 1);
2992         if (btrfs_extent_flags(eb, ei) & BTRFS_EXTENT_FLAG_TREE_BLOCK &&
2993             key.type == BTRFS_EXTENT_ITEM_KEY)
2994                 ptr += sizeof(struct btrfs_tree_block_info);
2995
2996         end = (unsigned long)ei + item_size;
2997         while (ptr < end) {
2998                 iref = (struct btrfs_extent_inline_ref *)ptr;
2999                 type = btrfs_extent_inline_ref_type(eb, iref);
3000                 offset = btrfs_extent_inline_ref_offset(eb, iref);
3001                 switch (type) {
3002                 case BTRFS_TREE_BLOCK_REF_KEY:
3003                         add_tree_backref(extent_cache, key.objectid,
3004                                          0, offset, 0);
3005                         break;
3006                 case BTRFS_SHARED_BLOCK_REF_KEY:
3007                         add_tree_backref(extent_cache, key.objectid,
3008                                          offset, 0, 0);
3009                         break;
3010                 case BTRFS_EXTENT_DATA_REF_KEY:
3011                         dref = (struct btrfs_extent_data_ref *)(&iref->offset);
3012                         add_data_backref(extent_cache, key.objectid, 0,
3013                                         btrfs_extent_data_ref_root(eb, dref),
3014                                         btrfs_extent_data_ref_objectid(eb,
3015                                                                        dref),
3016                                         btrfs_extent_data_ref_offset(eb, dref),
3017                                         btrfs_extent_data_ref_count(eb, dref),
3018                                         0, num_bytes);
3019                         break;
3020                 case BTRFS_SHARED_DATA_REF_KEY:
3021                         sref = (struct btrfs_shared_data_ref *)(iref + 1);
3022                         add_data_backref(extent_cache, key.objectid, offset,
3023                                         0, 0, 0,
3024                                         btrfs_shared_data_ref_count(eb, sref),
3025                                         0, num_bytes);
3026                         break;
3027                 default:
3028                         fprintf(stderr, "corrupt extent record: key %Lu %u %Lu\n",
3029                                 key.objectid, key.type, num_bytes);
3030                         goto out;
3031                 }
3032                 ptr += btrfs_extent_inline_ref_size(type);
3033         }
3034         WARN_ON(ptr > end);
3035 out:
3036         return 0;
3037 }
3038
3039 static int check_cache_range(struct btrfs_root *root,
3040                              struct btrfs_block_group_cache *cache,
3041                              u64 offset, u64 bytes)
3042 {
3043         struct btrfs_free_space *entry;
3044         u64 *logical;
3045         u64 bytenr;
3046         int stripe_len;
3047         int i, nr, ret;
3048
3049         for (i = 0; i < BTRFS_SUPER_MIRROR_MAX; i++) {
3050                 bytenr = btrfs_sb_offset(i);
3051                 ret = btrfs_rmap_block(&root->fs_info->mapping_tree,
3052                                        cache->key.objectid, bytenr, 0,
3053                                        &logical, &nr, &stripe_len);
3054                 if (ret)
3055                         return ret;
3056
3057                 while (nr--) {
3058                         if (logical[nr] + stripe_len <= offset)
3059                                 continue;
3060                         if (offset + bytes <= logical[nr])
3061                                 continue;
3062                         if (logical[nr] == offset) {
3063                                 if (stripe_len >= bytes) {
3064                                         kfree(logical);
3065                                         return 0;
3066                                 }
3067                                 bytes -= stripe_len;
3068                                 offset += stripe_len;
3069                         } else if (logical[nr] < offset) {
3070                                 if (logical[nr] + stripe_len >=
3071                                     offset + bytes) {
3072                                         kfree(logical);
3073                                         return 0;
3074                                 }
3075                                 bytes = (offset + bytes) -
3076                                         (logical[nr] + stripe_len);
3077                                 offset = logical[nr] + stripe_len;
3078                         } else {
3079                                 /*
3080                                  * Could be tricky, the super may land in the
3081                                  * middle of the area we're checking.  First
3082                                  * check the easiest case, it's at the end.
3083                                  */
3084                                 if (logical[nr] + stripe_len >=
3085                                     bytes + offset) {
3086                                         bytes = logical[nr] - offset;
3087                                         continue;
3088                                 }
3089
3090                                 /* Check the left side */
3091                                 ret = check_cache_range(root, cache,
3092                                                         offset,
3093                                                         logical[nr] - offset);
3094                                 if (ret) {
3095                                         kfree(logical);
3096                                         return ret;
3097                                 }
3098
3099                                 /* Now we continue with the right side */
3100                                 bytes = (offset + bytes) -
3101                                         (logical[nr] + stripe_len);
3102                                 offset = logical[nr] + stripe_len;
3103                         }
3104                 }
3105
3106                 kfree(logical);
3107         }
3108
3109         entry = btrfs_find_free_space(cache->free_space_ctl, offset, bytes);
3110         if (!entry) {
3111                 fprintf(stderr, "There is no free space entry for %Lu-%Lu\n",
3112                         offset, offset+bytes);
3113                 return -EINVAL;
3114         }
3115
3116         if (entry->offset != offset) {
3117                 fprintf(stderr, "Wanted offset %Lu, found %Lu\n", offset,
3118                         entry->offset);
3119                 return -EINVAL;
3120         }
3121
3122         if (entry->bytes != bytes) {
3123                 fprintf(stderr, "Wanted bytes %Lu, found %Lu for off %Lu\n",
3124                         bytes, entry->bytes, offset);
3125                 return -EINVAL;
3126         }
3127
3128         unlink_free_space(cache->free_space_ctl, entry);
3129         free(entry);
3130         return 0;
3131 }
3132
3133 static int verify_space_cache(struct btrfs_root *root,
3134                               struct btrfs_block_group_cache *cache)
3135 {
3136         struct btrfs_path *path;
3137         struct extent_buffer *leaf;
3138         struct btrfs_key key;
3139         u64 last;
3140         int ret = 0;
3141
3142         path = btrfs_alloc_path();
3143         if (!path)
3144                 return -ENOMEM;
3145
3146         root = root->fs_info->extent_root;
3147
3148         last = max_t(u64, cache->key.objectid, BTRFS_SUPER_INFO_OFFSET);
3149
3150         key.objectid = last;
3151         key.offset = 0;
3152         key.type = BTRFS_EXTENT_ITEM_KEY;
3153
3154         ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
3155         if (ret < 0)
3156                 return ret;
3157         ret = 0;
3158         while (1) {
3159                 if (path->slots[0] >= btrfs_header_nritems(path->nodes[0])) {
3160                         ret = btrfs_next_leaf(root, path);
3161                         if (ret < 0)
3162                                 return ret;
3163                         if (ret > 0) {
3164                                 ret = 0;
3165                                 break;
3166                         }
3167                 }
3168                 leaf = path->nodes[0];
3169                 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
3170                 if (key.objectid >= cache->key.offset + cache->key.objectid)
3171                         break;
3172                 if (key.type != BTRFS_EXTENT_ITEM_KEY &&
3173                     key.type != BTRFS_METADATA_ITEM_KEY) {
3174                         path->slots[0]++;
3175                         continue;
3176                 }
3177
3178                 if (last == key.objectid) {
3179                         if (key.type == BTRFS_EXTENT_ITEM_KEY)
3180                                 last = key.objectid + key.offset;
3181                         else
3182                                 last = key.objectid + root->leafsize;
3183                         path->slots[0]++;
3184                         continue;
3185                 }
3186
3187                 ret = check_cache_range(root, cache, last,
3188                                         key.objectid - last);
3189                 if (ret)
3190                         break;
3191                 if (key.type == BTRFS_EXTENT_ITEM_KEY)
3192                         last = key.objectid + key.offset;
3193                 else
3194                         last = key.objectid + root->leafsize;
3195                 path->slots[0]++;
3196         }
3197
3198         if (last < cache->key.objectid + cache->key.offset)
3199                 ret = check_cache_range(root, cache, last,
3200                                         cache->key.objectid +
3201                                         cache->key.offset - last);
3202         btrfs_free_path(path);
3203
3204         if (!ret &&
3205             !RB_EMPTY_ROOT(&cache->free_space_ctl->free_space_offset)) {
3206                 fprintf(stderr, "There are still entries left in the space "
3207                         "cache\n");
3208                 ret = -EINVAL;
3209         }
3210
3211         return ret;
3212 }
3213
3214 static int check_space_cache(struct btrfs_root *root)
3215 {
3216         struct btrfs_block_group_cache *cache;
3217         u64 start = BTRFS_SUPER_INFO_OFFSET + BTRFS_SUPER_INFO_SIZE;
3218         int ret;
3219         int error = 0;
3220
3221         if (btrfs_super_generation(root->fs_info->super_copy) !=
3222             btrfs_super_cache_generation(root->fs_info->super_copy)) {
3223                 printf("cache and super generation don't match, space cache "
3224                        "will be invalidated\n");
3225                 return 0;
3226         }
3227
3228         while (1) {
3229                 cache = btrfs_lookup_first_block_group(root->fs_info, start);
3230                 if (!cache)
3231                         break;
3232
3233                 start = cache->key.objectid + cache->key.offset;
3234                 if (!cache->free_space_ctl) {
3235                         if (btrfs_init_free_space_ctl(cache,
3236                                                       root->sectorsize)) {
3237                                 ret = -ENOMEM;
3238                                 break;
3239                         }
3240                 } else {
3241                         btrfs_remove_free_space_cache(cache);
3242                 }
3243
3244                 ret = load_free_space_cache(root->fs_info, cache);
3245                 if (!ret)
3246                         continue;
3247
3248                 ret = verify_space_cache(root, cache);
3249                 if (ret) {
3250                         fprintf(stderr, "cache appears valid but isnt %Lu\n",
3251                                 cache->key.objectid);
3252                         error++;
3253                 }
3254         }
3255
3256         return error ? -EINVAL : 0;
3257 }
3258
3259 static int check_extent_exists(struct btrfs_root *root, u64 bytenr,
3260                                u64 num_bytes)
3261 {
3262         struct btrfs_path *path;
3263         struct extent_buffer *leaf;
3264         struct btrfs_key key;
3265         int ret;
3266
3267         path = btrfs_alloc_path();
3268         if (!path) {
3269                 fprintf(stderr, "Error allocing path\n");
3270                 return -ENOMEM;
3271         }
3272
3273         key.objectid = bytenr;
3274         key.type = BTRFS_EXTENT_ITEM_KEY;
3275         key.offset = 0;
3276
3277
3278 again:
3279         ret = btrfs_search_slot(NULL, root->fs_info->extent_root, &key, path,
3280                                 0, 0);
3281         if (ret < 0) {
3282                 fprintf(stderr, "Error looking up extent record %d\n", ret);
3283                 btrfs_free_path(path);
3284                 return ret;
3285         } else if (ret) {
3286                 if (path->slots[0])
3287                         path->slots[0]--;
3288                 else
3289                         btrfs_prev_leaf(root, path);
3290         }
3291
3292         btrfs_item_key_to_cpu(path->nodes[0], &key, path->slots[0]);
3293
3294         /*
3295          * Block group items come before extent items if they have the same
3296          * bytenr, so walk back one more just in case.  Dear future traveler,
3297          * first congrats on mastering time travel.  Now if it's not too much
3298          * trouble could you go back to 2006 and tell Chris to make the
3299          * BLOCK_GROUP_ITEM_KEY lower than the EXTENT_ITEM_KEY please?
3300          */
3301         if (key.type == BTRFS_BLOCK_GROUP_ITEM_KEY) {
3302                 if (path->slots[0])
3303                         path->slots[0]--;
3304                 else
3305                         btrfs_prev_leaf(root, path);
3306         }
3307
3308         while (num_bytes) {
3309                 if (path->slots[0] >= btrfs_header_nritems(path->nodes[0])) {
3310                         ret = btrfs_next_leaf(root, path);
3311                         if (ret < 0) {
3312                                 fprintf(stderr, "Error going to next leaf "
3313                                         "%d\n", ret);
3314                                 btrfs_free_path(path);
3315                                 return ret;
3316                         } else if (ret) {
3317                                 break;
3318                         }
3319                 }
3320                 leaf = path->nodes[0];
3321                 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
3322                 if (key.type != BTRFS_EXTENT_ITEM_KEY) {
3323                         path->slots[0]++;
3324                         continue;
3325                 }
3326                 if (key.objectid + key.offset < bytenr) {
3327                         path->slots[0]++;
3328                         continue;
3329                 }
3330                 if (key.objectid > bytenr + num_bytes)
3331                         break;
3332
3333                 if (key.objectid == bytenr) {
3334                         if (key.offset >= num_bytes) {
3335                                 num_bytes = 0;
3336                                 break;
3337                         }
3338                         num_bytes -= key.offset;
3339                         bytenr += key.offset;
3340                 } else if (key.objectid < bytenr) {
3341                         if (key.objectid + key.offset >= bytenr + num_bytes) {
3342                                 num_bytes = 0;
3343                                 break;
3344                         }
3345                         num_bytes = (bytenr + num_bytes) -
3346                                 (key.objectid + key.offset);
3347                         bytenr = key.objectid + key.offset;
3348                 } else {
3349                         if (key.objectid + key.offset < bytenr + num_bytes) {
3350                                 u64 new_start = key.objectid + key.offset;
3351                                 u64 new_bytes = bytenr + num_bytes - new_start;
3352
3353                                 /*
3354                                  * Weird case, the extent is in the middle of
3355                                  * our range, we'll have to search one side
3356                                  * and then the other.  Not sure if this happens
3357                                  * in real life, but no harm in coding it up
3358                                  * anyway just in case.
3359                                  */
3360                                 btrfs_release_path(path);
3361                                 ret = check_extent_exists(root, new_start,
3362                                                           new_bytes);
3363                                 if (ret) {
3364                                         fprintf(stderr, "Right section didn't "
3365                                                 "have a record\n");
3366                                         break;
3367                                 }
3368                                 num_bytes = key.objectid - bytenr;
3369                                 goto again;
3370                         }
3371                         num_bytes = key.objectid - bytenr;
3372                 }
3373                 path->slots[0]++;
3374         }
3375         ret = 0;
3376
3377         if (num_bytes) {
3378                 fprintf(stderr, "There are no extents for csum range "
3379                         "%Lu-%Lu\n", bytenr, bytenr+num_bytes);
3380                 ret = 1;
3381         }
3382
3383         btrfs_free_path(path);
3384         return ret;
3385 }
3386
3387 static int check_csums(struct btrfs_root *root)
3388 {
3389         struct btrfs_path *path;
3390         struct extent_buffer *leaf;
3391         struct btrfs_key key;
3392         u64 offset = 0, num_bytes = 0;
3393         u16 csum_size = btrfs_super_csum_size(root->fs_info->super_copy);
3394         int errors = 0;
3395         int ret;
3396
3397         root = root->fs_info->csum_root;
3398
3399         key.objectid = BTRFS_EXTENT_CSUM_OBJECTID;
3400         key.type = BTRFS_EXTENT_CSUM_KEY;
3401         key.offset = 0;
3402
3403         path = btrfs_alloc_path();
3404         if (!path)
3405                 return -ENOMEM;
3406
3407         ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
3408         if (ret < 0) {
3409                 fprintf(stderr, "Error searching csum tree %d\n", ret);
3410                 btrfs_free_path(path);
3411                 return ret;
3412         }
3413
3414         if (ret > 0 && path->slots[0])
3415                 path->slots[0]--;
3416         ret = 0;
3417
3418         while (1) {
3419                 if (path->slots[0] >= btrfs_header_nritems(path->nodes[0])) {
3420                         ret = btrfs_next_leaf(root, path);
3421                         if (ret < 0) {
3422                                 fprintf(stderr, "Error going to next leaf "
3423                                         "%d\n", ret);
3424                                 break;
3425                         }
3426                         if (ret)
3427                                 break;
3428                 }
3429                 leaf = path->nodes[0];
3430
3431                 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
3432                 if (key.type != BTRFS_EXTENT_CSUM_KEY) {
3433                         path->slots[0]++;
3434                         continue;
3435                 }
3436
3437                 if (!num_bytes) {
3438                         offset = key.offset;
3439                 } else if (key.offset != offset + num_bytes) {
3440                         ret = check_extent_exists(root, offset, num_bytes);
3441                         if (ret) {
3442                                 fprintf(stderr, "Csum exists for %Lu-%Lu but "
3443                                         "there is no extent record\n",
3444                                         offset, offset+num_bytes);
3445                                 errors++;
3446                         }
3447                         offset = key.offset;
3448                         num_bytes = 0;
3449                 }
3450
3451                 num_bytes += (btrfs_item_size_nr(leaf, path->slots[0]) /
3452                               csum_size) * root->sectorsize;
3453                 path->slots[0]++;
3454         }
3455
3456         btrfs_free_path(path);
3457         return errors;
3458 }
3459
3460 static int run_next_block(struct btrfs_root *root,
3461                           struct block_info *bits,
3462                           int bits_nr,
3463                           u64 *last,
3464                           struct cache_tree *pending,
3465                           struct cache_tree *seen,
3466                           struct cache_tree *reada,
3467                           struct cache_tree *nodes,
3468                           struct cache_tree *extent_cache,
3469                           struct cache_tree *chunk_cache,
3470                           struct rb_root *dev_cache,
3471                           struct block_group_tree *block_group_cache,
3472                           struct device_extent_tree *dev_extent_cache)
3473 {
3474         struct extent_buffer *buf;
3475         u64 bytenr;
3476         u32 size;
3477         u64 parent;
3478         u64 owner;
3479         u64 flags;
3480         u64 ptr;
3481         int ret;
3482         int i;
3483         int nritems;
3484         struct btrfs_key key;
3485         struct cache_extent *cache;
3486         int reada_bits;
3487
3488         nritems = pick_next_pending(pending, reada, nodes, *last, bits,
3489                                     bits_nr, &reada_bits);
3490         if (nritems == 0)
3491                 return 1;
3492
3493         if (!reada_bits) {
3494                 for(i = 0; i < nritems; i++) {
3495                         ret = add_cache_extent(reada, bits[i].start,
3496                                                bits[i].size);
3497                         if (ret == -EEXIST)
3498                                 continue;
3499
3500                         /* fixme, get the parent transid */
3501                         readahead_tree_block(root, bits[i].start,
3502                                              bits[i].size, 0);
3503                 }
3504         }
3505         *last = bits[0].start;
3506         bytenr = bits[0].start;
3507         size = bits[0].size;
3508
3509         cache = lookup_cache_extent(pending, bytenr, size);
3510         if (cache) {
3511                 remove_cache_extent(pending, cache);
3512                 free(cache);
3513         }
3514         cache = lookup_cache_extent(reada, bytenr, size);
3515         if (cache) {
3516                 remove_cache_extent(reada, cache);
3517                 free(cache);
3518         }
3519         cache = lookup_cache_extent(nodes, bytenr, size);
3520         if (cache) {
3521                 remove_cache_extent(nodes, cache);
3522                 free(cache);
3523         }
3524
3525         /* fixme, get the real parent transid */
3526         buf = read_tree_block(root, bytenr, size, 0);
3527         if (!extent_buffer_uptodate(buf)) {
3528                 record_bad_block_io(root->fs_info,
3529                                     extent_cache, bytenr, size);
3530                 goto out;
3531         }
3532
3533         nritems = btrfs_header_nritems(buf);
3534
3535         ret = btrfs_lookup_extent_info(NULL, root, bytenr,
3536                                        btrfs_header_level(buf), 1, NULL,
3537                                        &flags);
3538         if (ret < 0)
3539                 flags = BTRFS_BLOCK_FLAG_FULL_BACKREF;
3540
3541         if (flags & BTRFS_BLOCK_FLAG_FULL_BACKREF) {
3542                 parent = bytenr;
3543                 owner = 0;
3544         } else {
3545                 parent = 0;
3546                 owner = btrfs_header_owner(buf);
3547         }
3548
3549         ret = check_block(root, extent_cache, buf, flags);
3550         if (ret)
3551                 goto out;
3552
3553         if (btrfs_is_leaf(buf)) {
3554                 btree_space_waste += btrfs_leaf_free_space(root, buf);
3555                 for (i = 0; i < nritems; i++) {
3556                         struct btrfs_file_extent_item *fi;
3557                         btrfs_item_key_to_cpu(buf, &key, i);
3558                         if (key.type == BTRFS_EXTENT_ITEM_KEY) {
3559                                 process_extent_item(root, extent_cache, buf,
3560                                                     i);
3561                                 continue;
3562                         }
3563                         if (key.type == BTRFS_METADATA_ITEM_KEY) {
3564                                 process_extent_item(root, extent_cache, buf,
3565                                                     i);
3566                                 continue;
3567                         }
3568                         if (key.type == BTRFS_EXTENT_CSUM_KEY) {
3569                                 total_csum_bytes +=
3570                                         btrfs_item_size_nr(buf, i);
3571                                 continue;
3572                         }
3573                         if (key.type == BTRFS_CHUNK_ITEM_KEY) {
3574                                 process_chunk_item(chunk_cache, &key, buf, i);
3575                                 continue;
3576                         }
3577                         if (key.type == BTRFS_DEV_ITEM_KEY) {
3578                                 process_device_item(dev_cache, &key, buf, i);
3579                                 continue;
3580                         }
3581                         if (key.type == BTRFS_BLOCK_GROUP_ITEM_KEY) {
3582                                 process_block_group_item(block_group_cache,
3583                                         &key, buf, i);
3584                                 continue;
3585                         }
3586                         if (key.type == BTRFS_DEV_EXTENT_KEY) {
3587                                 process_device_extent_item(dev_extent_cache,
3588                                         &key, buf, i);
3589                                 continue;
3590
3591                         }
3592                         if (key.type == BTRFS_EXTENT_REF_V0_KEY) {
3593 #ifdef BTRFS_COMPAT_EXTENT_TREE_V0
3594                                 process_extent_ref_v0(extent_cache, buf, i);
3595 #else
3596                                 BUG();
3597 #endif
3598                                 continue;
3599                         }
3600
3601                         if (key.type == BTRFS_TREE_BLOCK_REF_KEY) {
3602                                 add_tree_backref(extent_cache, key.objectid, 0,
3603                                                  key.offset, 0);
3604                                 continue;
3605                         }
3606                         if (key.type == BTRFS_SHARED_BLOCK_REF_KEY) {
3607                                 add_tree_backref(extent_cache, key.objectid,
3608                                                  key.offset, 0, 0);
3609                                 continue;
3610                         }
3611                         if (key.type == BTRFS_EXTENT_DATA_REF_KEY) {
3612                                 struct btrfs_extent_data_ref *ref;
3613                                 ref = btrfs_item_ptr(buf, i,
3614                                                 struct btrfs_extent_data_ref);
3615                                 add_data_backref(extent_cache,
3616                                         key.objectid, 0,
3617                                         btrfs_extent_data_ref_root(buf, ref),
3618                                         btrfs_extent_data_ref_objectid(buf,
3619                                                                        ref),
3620                                         btrfs_extent_data_ref_offset(buf, ref),
3621                                         btrfs_extent_data_ref_count(buf, ref),
3622                                         0, root->sectorsize);
3623                                 continue;
3624                         }
3625                         if (key.type == BTRFS_SHARED_DATA_REF_KEY) {
3626                                 struct btrfs_shared_data_ref *ref;
3627                                 ref = btrfs_item_ptr(buf, i,
3628                                                 struct btrfs_shared_data_ref);
3629                                 add_data_backref(extent_cache,
3630                                         key.objectid, key.offset, 0, 0, 0,
3631                                         btrfs_shared_data_ref_count(buf, ref),
3632                                         0, root->sectorsize);
3633                                 continue;
3634                         }
3635                         if (key.type != BTRFS_EXTENT_DATA_KEY)
3636                                 continue;
3637                         fi = btrfs_item_ptr(buf, i,
3638                                             struct btrfs_file_extent_item);
3639                         if (btrfs_file_extent_type(buf, fi) ==
3640                             BTRFS_FILE_EXTENT_INLINE)
3641                                 continue;
3642                         if (btrfs_file_extent_disk_bytenr(buf, fi) == 0)
3643                                 continue;
3644
3645                         data_bytes_allocated +=
3646                                 btrfs_file_extent_disk_num_bytes(buf, fi);
3647                         if (data_bytes_allocated < root->sectorsize) {
3648                                 abort();
3649                         }
3650                         data_bytes_referenced +=
3651                                 btrfs_file_extent_num_bytes(buf, fi);
3652                         add_data_backref(extent_cache,
3653                                 btrfs_file_extent_disk_bytenr(buf, fi),
3654                                 parent, owner, key.objectid, key.offset -
3655                                 btrfs_file_extent_offset(buf, fi), 1, 1,
3656                                 btrfs_file_extent_disk_num_bytes(buf, fi));
3657                         BUG_ON(ret);
3658                 }
3659         } else {
3660                 int level;
3661                 struct btrfs_key first_key;
3662
3663                 first_key.objectid = 0;
3664
3665                 if (nritems > 0)
3666                         btrfs_item_key_to_cpu(buf, &first_key, 0);
3667                 level = btrfs_header_level(buf);
3668                 for (i = 0; i < nritems; i++) {
3669                         ptr = btrfs_node_blockptr(buf, i);
3670                         size = btrfs_level_size(root, level - 1);
3671                         btrfs_node_key_to_cpu(buf, &key, i);
3672                         ret = add_extent_rec(extent_cache, &key,
3673                                              ptr, size, 0, 0, 1, 0, 1, 0,
3674                                              size);
3675                         BUG_ON(ret);
3676
3677                         add_tree_backref(extent_cache, ptr, parent, owner, 1);
3678
3679                         if (level > 1) {
3680                                 add_pending(nodes, seen, ptr, size);
3681                         } else {
3682                                 add_pending(pending, seen, ptr, size);
3683                         }
3684                 }
3685                 btree_space_waste += (BTRFS_NODEPTRS_PER_BLOCK(root) -
3686                                       nritems) * sizeof(struct btrfs_key_ptr);
3687         }
3688         total_btree_bytes += buf->len;
3689         if (fs_root_objectid(btrfs_header_owner(buf)))
3690                 total_fs_tree_bytes += buf->len;
3691         if (btrfs_header_owner(buf) == BTRFS_EXTENT_TREE_OBJECTID)
3692                 total_extent_tree_bytes += buf->len;
3693         if (!found_old_backref &&
3694             btrfs_header_owner(buf) == BTRFS_TREE_RELOC_OBJECTID &&
3695             btrfs_header_backref_rev(buf) == BTRFS_MIXED_BACKREF_REV &&
3696             !btrfs_header_flag(buf, BTRFS_HEADER_FLAG_RELOC))
3697                 found_old_backref = 1;
3698 out:
3699         free_extent_buffer(buf);
3700         return 0;
3701 }
3702
3703 static int add_root_to_pending(struct extent_buffer *buf,
3704                                struct cache_tree *extent_cache,
3705                                struct cache_tree *pending,
3706                                struct cache_tree *seen,
3707                                struct cache_tree *nodes,
3708                                struct btrfs_key *root_key)
3709 {
3710         if (btrfs_header_level(buf) > 0)
3711                 add_pending(nodes, seen, buf->start, buf->len);
3712         else
3713                 add_pending(pending, seen, buf->start, buf->len);
3714         add_extent_rec(extent_cache, NULL, buf->start, buf->len,
3715                        0, 1, 1, 0, 1, 0, buf->len);
3716
3717         if (root_key->objectid == BTRFS_TREE_RELOC_OBJECTID ||
3718             btrfs_header_backref_rev(buf) < BTRFS_MIXED_BACKREF_REV)
3719                 add_tree_backref(extent_cache, buf->start, buf->start,
3720                                  0, 1);
3721         else
3722                 add_tree_backref(extent_cache, buf->start, 0,
3723                                  root_key->objectid, 1);
3724         return 0;
3725 }
3726
3727 /* as we fix the tree, we might be deleting blocks that
3728  * we're tracking for repair.  This hook makes sure we
3729  * remove any backrefs for blocks as we are fixing them.
3730  */
3731 static int free_extent_hook(struct btrfs_trans_handle *trans,
3732                             struct btrfs_root *root,
3733                             u64 bytenr, u64 num_bytes, u64 parent,
3734                             u64 root_objectid, u64 owner, u64 offset,
3735                             int refs_to_drop)
3736 {
3737         struct extent_record *rec;
3738         struct cache_extent *cache;
3739         int is_data;
3740         struct cache_tree *extent_cache = root->fs_info->fsck_extent_cache;
3741
3742         is_data = owner >= BTRFS_FIRST_FREE_OBJECTID;
3743         cache = lookup_cache_extent(extent_cache, bytenr, num_bytes);
3744         if (!cache)
3745                 return 0;
3746
3747         rec = container_of(cache, struct extent_record, cache);
3748         if (is_data) {
3749                 struct data_backref *back;
3750                 back = find_data_backref(rec, parent, root_objectid, owner,
3751                                          offset, 1, bytenr, num_bytes);
3752                 if (!back)
3753                         goto out;
3754                 if (back->node.found_ref) {
3755                         back->found_ref -= refs_to_drop;
3756                         if (rec->refs)
3757                                 rec->refs -= refs_to_drop;
3758                 }
3759                 if (back->node.found_extent_tree) {
3760                         back->num_refs -= refs_to_drop;
3761                         if (rec->extent_item_refs)
3762                                 rec->extent_item_refs -= refs_to_drop;
3763                 }
3764                 if (back->found_ref == 0)
3765                         back->node.found_ref = 0;
3766                 if (back->num_refs == 0)
3767                         back->node.found_extent_tree = 0;
3768
3769                 if (!back->node.found_extent_tree && back->node.found_ref) {
3770                         list_del(&back->node.list);
3771                         free(back);
3772                 }
3773         } else {
3774                 struct tree_backref *back;
3775                 back = find_tree_backref(rec, parent, root_objectid);
3776                 if (!back)
3777                         goto out;
3778                 if (back->node.found_ref) {
3779                         if (rec->refs)
3780                                 rec->refs--;
3781                         back->node.found_ref = 0;
3782                 }
3783                 if (back->node.found_extent_tree) {
3784                         if (rec->extent_item_refs)
3785                                 rec->extent_item_refs--;
3786                         back->node.found_extent_tree = 0;
3787                 }
3788                 if (!back->node.found_extent_tree && back->node.found_ref) {
3789                         list_del(&back->node.list);
3790                         free(back);
3791                 }
3792         }
3793         maybe_free_extent_rec(extent_cache, rec);
3794 out:
3795         return 0;
3796 }
3797
3798 static int delete_extent_records(struct btrfs_trans_handle *trans,
3799                                  struct btrfs_root *root,
3800                                  struct btrfs_path *path,
3801                                  u64 bytenr, u64 new_len)
3802 {
3803         struct btrfs_key key;
3804         struct btrfs_key found_key;
3805         struct extent_buffer *leaf;
3806         int ret;
3807         int slot;
3808
3809
3810         key.objectid = bytenr;
3811         key.type = (u8)-1;
3812         key.offset = (u64)-1;
3813
3814         while(1) {
3815                 ret = btrfs_search_slot(trans, root->fs_info->extent_root,
3816                                         &key, path, 0, 1);
3817                 if (ret < 0)
3818                         break;
3819
3820                 if (ret > 0) {
3821                         ret = 0;
3822                         if (path->slots[0] == 0)
3823                                 break;
3824                         path->slots[0]--;
3825                 }
3826                 ret = 0;
3827
3828                 leaf = path->nodes[0];
3829                 slot = path->slots[0];
3830
3831                 btrfs_item_key_to_cpu(leaf, &found_key, slot);
3832                 if (found_key.objectid != bytenr)
3833                         break;
3834
3835                 if (found_key.type != BTRFS_EXTENT_ITEM_KEY &&
3836                     found_key.type != BTRFS_METADATA_ITEM_KEY &&
3837                     found_key.type != BTRFS_TREE_BLOCK_REF_KEY &&
3838                     found_key.type != BTRFS_EXTENT_DATA_REF_KEY &&
3839                     found_key.type != BTRFS_EXTENT_REF_V0_KEY &&
3840                     found_key.type != BTRFS_SHARED_BLOCK_REF_KEY &&
3841                     found_key.type != BTRFS_SHARED_DATA_REF_KEY) {
3842                         btrfs_release_path(path);
3843                         if (found_key.type == 0) {
3844                                 if (found_key.offset == 0)
3845                                         break;
3846                                 key.offset = found_key.offset - 1;
3847                                 key.type = found_key.type;
3848                         }
3849                         key.type = found_key.type - 1;
3850                         key.offset = (u64)-1;
3851                         continue;
3852                 }
3853
3854                 fprintf(stderr, "repair deleting extent record: key %Lu %u %Lu\n",
3855                         found_key.objectid, found_key.type, found_key.offset);
3856
3857                 ret = btrfs_del_item(trans, root->fs_info->extent_root, path);
3858                 if (ret)
3859                         break;
3860                 btrfs_release_path(path);
3861
3862                 if (found_key.type == BTRFS_EXTENT_ITEM_KEY ||
3863                     found_key.type == BTRFS_METADATA_ITEM_KEY) {
3864                         u64 bytes = (found_key.type == BTRFS_EXTENT_ITEM_KEY) ?
3865                                 found_key.offset : root->leafsize;
3866
3867                         ret = btrfs_update_block_group(trans, root, bytenr,
3868                                                        bytes, 0, 0);
3869                         if (ret)
3870                                 break;
3871                 }
3872         }
3873
3874         btrfs_release_path(path);
3875         return ret;
3876 }
3877
3878 /*
3879  * for a single backref, this will allocate a new extent
3880  * and add the backref to it.
3881  */
3882 static int record_extent(struct btrfs_trans_handle *trans,
3883                          struct btrfs_fs_info *info,
3884                          struct btrfs_path *path,
3885                          struct extent_record *rec,
3886                          struct extent_backref *back,
3887                          int allocated, u64 flags)
3888 {
3889         int ret;
3890         struct btrfs_root *extent_root = info->extent_root;
3891         struct extent_buffer *leaf;
3892         struct btrfs_key ins_key;
3893         struct btrfs_extent_item *ei;
3894         struct tree_backref *tback;
3895         struct data_backref *dback;
3896         struct btrfs_tree_block_info *bi;
3897
3898         if (!back->is_data)
3899                 rec->max_size = max_t(u64, rec->max_size,
3900                                     info->extent_root->leafsize);
3901
3902         if (!allocated) {
3903                 u32 item_size = sizeof(*ei);
3904
3905                 if (!back->is_data)
3906                         item_size += sizeof(*bi);
3907
3908                 ins_key.objectid = rec->start;
3909                 ins_key.offset = rec->max_size;
3910                 ins_key.type = BTRFS_EXTENT_ITEM_KEY;
3911
3912                 ret = btrfs_insert_empty_item(trans, extent_root, path,
3913                                         &ins_key, item_size);
3914                 if (ret)
3915                         goto fail;
3916
3917                 leaf = path->nodes[0];
3918                 ei = btrfs_item_ptr(leaf, path->slots[0],
3919                                     struct btrfs_extent_item);
3920
3921                 btrfs_set_extent_refs(leaf, ei, 0);
3922                 btrfs_set_extent_generation(leaf, ei, rec->generation);
3923
3924                 if (back->is_data) {
3925                         btrfs_set_extent_flags(leaf, ei,
3926                                                BTRFS_EXTENT_FLAG_DATA);
3927                 } else {
3928                         struct btrfs_disk_key copy_key;;
3929
3930                         tback = (struct tree_backref *)back;
3931                         bi = (struct btrfs_tree_block_info *)(ei + 1);
3932                         memset_extent_buffer(leaf, 0, (unsigned long)bi,
3933                                              sizeof(*bi));
3934
3935                         btrfs_set_disk_key_objectid(&copy_key,
3936                                                     rec->info_objectid);
3937                         btrfs_set_disk_key_type(&copy_key, 0);
3938                         btrfs_set_disk_key_offset(&copy_key, 0);
3939
3940                         btrfs_set_tree_block_level(leaf, bi, rec->info_level);
3941                         btrfs_set_tree_block_key(leaf, bi, &copy_key);
3942
3943                         btrfs_set_extent_flags(leaf, ei,
3944                                                BTRFS_EXTENT_FLAG_TREE_BLOCK | flags);
3945                 }
3946
3947                 btrfs_mark_buffer_dirty(leaf);
3948                 ret = btrfs_update_block_group(trans, extent_root, rec->start,
3949                                                rec->max_size, 1, 0);
3950                 if (ret)
3951                         goto fail;
3952                 btrfs_release_path(path);
3953         }
3954
3955         if (back->is_data) {
3956                 u64 parent;
3957                 int i;
3958
3959                 dback = (struct data_backref *)back;
3960                 if (back->full_backref)
3961                         parent = dback->parent;
3962                 else
3963                         parent = 0;
3964
3965                 for (i = 0; i < dback->found_ref; i++) {
3966                         /* if parent != 0, we're doing a full backref
3967                          * passing BTRFS_FIRST_FREE_OBJECTID as the owner
3968                          * just makes the backref allocator create a data
3969                          * backref
3970                          */
3971                         ret = btrfs_inc_extent_ref(trans, info->extent_root,
3972                                                    rec->start, rec->max_size,
3973                                                    parent,
3974                                                    dback->root,
3975                                                    parent ?
3976                                                    BTRFS_FIRST_FREE_OBJECTID :
3977                                                    dback->owner,
3978                                                    dback->offset);
3979                         if (ret)
3980                                 break;
3981                 }
3982                 fprintf(stderr, "adding new data backref"
3983                                 " on %llu %s %llu owner %llu"
3984                                 " offset %llu found %d\n",
3985                                 (unsigned long long)rec->start,
3986                                 back->full_backref ?
3987                                 "parent" : "root",
3988                                 back->full_backref ?
3989                                 (unsigned long long)parent :
3990                                 (unsigned long long)dback->root,
3991                                 (unsigned long long)dback->owner,
3992                                 (unsigned long long)dback->offset,
3993                                 dback->found_ref);
3994         } else {
3995                 u64 parent;
3996
3997                 tback = (struct tree_backref *)back;
3998                 if (back->full_backref)
3999                         parent = tback->parent;
4000                 else
4001                         parent = 0;
4002
4003                 ret = btrfs_inc_extent_ref(trans, info->extent_root,
4004                                            rec->start, rec->max_size,
4005                                            parent, tback->root, 0, 0);
4006                 fprintf(stderr, "adding new tree backref on "
4007                         "start %llu len %llu parent %llu root %llu\n",
4008                         rec->start, rec->max_size, tback->parent, tback->root);
4009         }
4010         if (ret)
4011                 goto fail;
4012 fail:
4013         btrfs_release_path(path);
4014         return ret;
4015 }
4016
4017 struct extent_entry {
4018         u64 bytenr;
4019         u64 bytes;
4020         int count;
4021         struct list_head list;
4022 };
4023
4024 static struct extent_entry *find_entry(struct list_head *entries,
4025                                        u64 bytenr, u64 bytes)
4026 {
4027         struct extent_entry *entry = NULL;
4028
4029         list_for_each_entry(entry, entries, list) {
4030                 if (entry->bytenr == bytenr && entry->bytes == bytes)
4031                         return entry;
4032         }
4033
4034         return NULL;
4035 }
4036
4037 static struct extent_entry *find_most_right_entry(struct list_head *entries)
4038 {
4039         struct extent_entry *entry, *best = NULL, *prev = NULL;
4040
4041         list_for_each_entry(entry, entries, list) {
4042                 if (!prev) {
4043                         prev = entry;
4044                         continue;
4045                 }
4046
4047                 /*
4048                  * If our current entry == best then we can't be sure our best
4049                  * is really the best, so we need to keep searching.
4050                  */
4051                 if (best && best->count == entry->count) {
4052                         prev = entry;
4053                         best = NULL;
4054                         continue;
4055                 }
4056
4057                 /* Prev == entry, not good enough, have to keep searching */
4058                 if (prev->count == entry->count)
4059                         continue;
4060
4061                 if (!best)
4062                         best = (prev->count > entry->count) ? prev : entry;
4063                 else if (best->count < entry->count)
4064                         best = entry;
4065                 prev = entry;
4066         }
4067
4068         return best;
4069 }
4070
4071 static int repair_ref(struct btrfs_trans_handle *trans,
4072                       struct btrfs_fs_info *info, struct btrfs_path *path,
4073                       struct data_backref *dback, struct extent_entry *entry)
4074 {
4075         struct btrfs_root *root;
4076         struct btrfs_file_extent_item *fi;
4077         struct extent_buffer *leaf;
4078         struct btrfs_key key;
4079         u64 bytenr, bytes;
4080         int ret;
4081
4082         key.objectid = dback->root;
4083         key.type = BTRFS_ROOT_ITEM_KEY;
4084         key.offset = (u64)-1;
4085         root = btrfs_read_fs_root(info, &key);
4086         if (IS_ERR(root)) {
4087                 fprintf(stderr, "Couldn't find root for our ref\n");
4088                 return -EINVAL;
4089         }
4090
4091         /*
4092          * The backref points to the original offset of the extent if it was
4093          * split, so we need to search down to the offset we have and then walk
4094          * forward until we find the backref we're looking for.
4095          */
4096         key.objectid = dback->owner;
4097         key.type = BTRFS_EXTENT_DATA_KEY;
4098         key.offset = dback->offset;
4099         ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
4100         if (ret < 0) {
4101                 fprintf(stderr, "Error looking up ref %d\n", ret);
4102                 return ret;
4103         }
4104
4105         while (1) {
4106                 if (path->slots[0] >= btrfs_header_nritems(path->nodes[0])) {
4107                         ret = btrfs_next_leaf(root, path);
4108                         if (ret) {
4109                                 fprintf(stderr, "Couldn't find our ref, next\n");
4110                                 return -EINVAL;
4111                         }
4112                 }
4113                 leaf = path->nodes[0];
4114                 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
4115                 if (key.objectid != dback->owner ||
4116                     key.type != BTRFS_EXTENT_DATA_KEY) {
4117                         fprintf(stderr, "Couldn't find our ref, search\n");
4118                         return -EINVAL;
4119                 }
4120                 fi = btrfs_item_ptr(leaf, path->slots[0],
4121                                     struct btrfs_file_extent_item);
4122                 bytenr = btrfs_file_extent_disk_bytenr(leaf, fi);
4123                 bytes = btrfs_file_extent_disk_num_bytes(leaf, fi);
4124
4125                 if (bytenr == dback->disk_bytenr && bytes == dback->bytes)
4126                         break;
4127                 path->slots[0]++;
4128         }
4129
4130         btrfs_release_path(path);
4131
4132         /*
4133          * Have to make sure that this root gets updated when we commit the
4134          * transaction
4135          */
4136         root->track_dirty = 1;
4137         if (root->last_trans != trans->transid) {
4138                 root->last_trans = trans->transid;
4139                 root->commit_root = root->node;
4140                 extent_buffer_get(root->node);
4141         }
4142
4143         /*
4144          * Ok we have the key of the file extent we want to fix, now we can cow
4145          * down to the thing and fix it.
4146          */
4147         ret = btrfs_search_slot(trans, root, &key, path, 0, 1);
4148         if (ret < 0) {
4149                 fprintf(stderr, "Error cowing down to ref [%Lu, %u, %Lu]: %d\n",
4150                         key.objectid, key.type, key.offset, ret);
4151                 return ret;
4152         }
4153         if (ret > 0) {
4154                 fprintf(stderr, "Well that's odd, we just found this key "
4155                         "[%Lu, %u, %Lu]\n", key.objectid, key.type,
4156                         key.offset);
4157                 return -EINVAL;
4158         }
4159         leaf = path->nodes[0];
4160         fi = btrfs_item_ptr(leaf, path->slots[0],
4161                             struct btrfs_file_extent_item);
4162
4163         if (btrfs_file_extent_compression(leaf, fi) &&
4164             dback->disk_bytenr != entry->bytenr) {
4165                 fprintf(stderr, "Ref doesn't match the record start and is "
4166                         "compressed, please take a btrfs-image of this file "
4167                         "system and send it to a btrfs developer so they can "
4168                         "complete this functionality for bytenr %Lu\n",
4169                         dback->disk_bytenr);
4170                 return -EINVAL;
4171         }
4172
4173         if (dback->disk_bytenr > entry->bytenr) {
4174                 u64 off_diff, offset;
4175
4176                 off_diff = dback->disk_bytenr - entry->bytenr;
4177                 offset = btrfs_file_extent_offset(leaf, fi);
4178                 if (dback->disk_bytenr + offset +
4179                     btrfs_file_extent_num_bytes(leaf, fi) >
4180                     entry->bytenr + entry->bytes) {
4181                         fprintf(stderr, "Ref is past the entry end, please "
4182                                 "take a btrfs-image of this file system and "
4183                                 "send it to a btrfs developer, ref %Lu\n",
4184                                 dback->disk_bytenr);
4185                         return -EINVAL;
4186                 }
4187                 offset += off_diff;
4188                 btrfs_set_file_extent_disk_bytenr(leaf, fi, entry->bytenr);
4189                 btrfs_set_file_extent_offset(leaf, fi, offset);
4190         } else if (dback->disk_bytenr < entry->bytenr) {
4191                 u64 offset;
4192
4193                 offset = btrfs_file_extent_offset(leaf, fi);
4194                 if (dback->disk_bytenr + offset < entry->bytenr) {
4195                         fprintf(stderr, "Ref is before the entry start, please"
4196                                 " take a btrfs-image of this file system and "
4197                                 "send it to a btrfs developer, ref %Lu\n",
4198                                 dback->disk_bytenr);
4199                         return -EINVAL;
4200                 }
4201
4202                 offset += dback->disk_bytenr;
4203                 offset -= entry->bytenr;
4204                 btrfs_set_file_extent_disk_bytenr(leaf, fi, entry->bytenr);
4205                 btrfs_set_file_extent_offset(leaf, fi, offset);
4206         }
4207
4208         btrfs_set_file_extent_disk_num_bytes(leaf, fi, entry->bytes);
4209
4210         /*
4211          * Chances are if disk_num_bytes were wrong then so is ram_bytes, but
4212          * only do this if we aren't using compression, otherwise it's a
4213          * trickier case.
4214          */
4215         if (!btrfs_file_extent_compression(leaf, fi))
4216                 btrfs_set_file_extent_ram_bytes(leaf, fi, entry->bytes);
4217         else
4218                 printf("ram bytes may be wrong?\n");
4219         btrfs_mark_buffer_dirty(leaf);
4220         btrfs_release_path(path);
4221         return 0;
4222 }
4223
4224 static int verify_backrefs(struct btrfs_trans_handle *trans,
4225                            struct btrfs_fs_info *info, struct btrfs_path *path,
4226                            struct extent_record *rec)
4227 {
4228         struct extent_backref *back;
4229         struct data_backref *dback;
4230         struct extent_entry *entry, *best = NULL;
4231         LIST_HEAD(entries);
4232         int nr_entries = 0;
4233         int ret = 0;
4234
4235         /*
4236          * Metadata is easy and the backrefs should always agree on bytenr and
4237          * size, if not we've got bigger issues.
4238          */
4239         if (rec->metadata)
4240                 return 0;
4241
4242         list_for_each_entry(back, &rec->backrefs, list) {
4243                 dback = (struct data_backref *)back;
4244                 /*
4245                  * We only pay attention to backrefs that we found a real
4246                  * backref for.
4247                  */
4248                 if (dback->found_ref == 0)
4249                         continue;
4250                 if (back->full_backref)
4251                         continue;
4252
4253                 /*
4254                  * For now we only catch when the bytes don't match, not the
4255                  * bytenr.  We can easily do this at the same time, but I want
4256                  * to have a fs image to test on before we just add repair
4257                  * functionality willy-nilly so we know we won't screw up the
4258                  * repair.
4259                  */
4260
4261                 entry = find_entry(&entries, dback->disk_bytenr,
4262                                    dback->bytes);
4263                 if (!entry) {
4264                         entry = malloc(sizeof(struct extent_entry));
4265                         if (!entry) {
4266                                 ret = -ENOMEM;
4267                                 goto out;
4268                         }
4269                         memset(entry, 0, sizeof(*entry));
4270                         entry->bytenr = dback->disk_bytenr;
4271                         entry->bytes = dback->bytes;
4272                         list_add_tail(&entry->list, &entries);
4273                         nr_entries++;
4274                 }
4275                 entry->count++;
4276         }
4277
4278         /* Yay all the backrefs agree, carry on good sir */
4279         if (nr_entries <= 1)
4280                 goto out;
4281
4282         fprintf(stderr, "attempting to repair backref discrepency for bytenr "
4283                 "%Lu\n", rec->start);
4284
4285         /*
4286          * First we want to see if the backrefs can agree amongst themselves who
4287          * is right, so figure out which one of the entries has the highest
4288          * count.
4289          */
4290         best = find_most_right_entry(&entries);
4291
4292         /*
4293          * Ok so we may have an even split between what the backrefs think, so
4294          * this is where we use the extent ref to see what it thinks.
4295          */
4296         if (!best) {
4297                 entry = find_entry(&entries, rec->start, rec->nr);
4298                 if (!entry) {
4299                         fprintf(stderr, "Backrefs don't agree with eachother "
4300                                 "and extent record doesn't agree with anybody,"
4301                                 " so we can't fix bytenr %Lu bytes %Lu\n",
4302                                 rec->start, rec->nr);
4303                         ret = -EINVAL;
4304                         goto out;
4305                 }
4306                 entry->count++;
4307                 best = find_most_right_entry(&entries);
4308                 if (!best) {
4309                         fprintf(stderr, "Backrefs and extent record evenly "
4310                                 "split on who is right, this is going to "
4311                                 "require user input to fix bytenr %Lu bytes "
4312                                 "%Lu\n", rec->start, rec->nr);
4313                         ret = -EINVAL;
4314                         goto out;
4315                 }
4316         }
4317
4318         /*
4319          * I don't think this can happen currently as we'll abort() if we catch
4320          * this case higher up, but in case somebody removes that we still can't
4321          * deal with it properly here yet, so just bail out of that's the case.
4322          */
4323         if (best->bytenr != rec->start) {
4324                 fprintf(stderr, "Extent start and backref starts don't match, "
4325                         "please use btrfs-image on this file system and send "
4326                         "it to a btrfs developer so they can make fsck fix "
4327                         "this particular case.  bytenr is %Lu, bytes is %Lu\n",
4328                         rec->start, rec->nr);
4329                 ret = -EINVAL;
4330                 goto out;
4331         }
4332
4333         /*
4334          * Ok great we all agreed on an extent record, let's go find the real
4335          * references and fix up the ones that don't match.
4336          */
4337         list_for_each_entry(back, &rec->backrefs, list) {
4338                 dback = (struct data_backref *)back;
4339
4340                 /*
4341                  * Still ignoring backrefs that don't have a real ref attached
4342                  * to them.
4343                  */
4344                 if (dback->found_ref == 0)
4345                         continue;
4346                 if (back->full_backref)
4347                         continue;
4348
4349                 if (dback->bytes == best->bytes &&
4350                     dback->disk_bytenr == best->bytenr)
4351                         continue;
4352
4353                 ret = repair_ref(trans, info, path, dback, best);
4354                 if (ret)
4355                         goto out;
4356         }
4357
4358         /*
4359          * Ok we messed with the actual refs, which means we need to drop our
4360          * entire cache and go back and rescan.  I know this is a huge pain and
4361          * adds a lot of extra work, but it's the only way to be safe.  Once all
4362          * the backrefs agree we may not need to do anything to the extent
4363          * record itself.
4364          */
4365         ret = -EAGAIN;
4366 out:
4367         while (!list_empty(&entries)) {
4368                 entry = list_entry(entries.next, struct extent_entry, list);
4369                 list_del_init(&entry->list);
4370                 free(entry);
4371         }
4372         return ret;
4373 }
4374
4375 static int process_duplicates(struct btrfs_root *root,
4376                               struct cache_tree *extent_cache,
4377                               struct extent_record *rec)
4378 {
4379         struct extent_record *good, *tmp;
4380         struct cache_extent *cache;
4381         int ret;
4382
4383         /*
4384          * If we found a extent record for this extent then return, or if we
4385          * have more than one duplicate we are likely going to need to delete
4386          * something.
4387          */
4388         if (rec->found_rec || rec->num_duplicates > 1)
4389                 return 0;
4390
4391         /* Shouldn't happen but just in case */
4392         BUG_ON(!rec->num_duplicates);
4393
4394         /*
4395          * So this happens if we end up with a backref that doesn't match the
4396          * actual extent entry.  So either the backref is bad or the extent
4397          * entry is bad.  Either way we want to have the extent_record actually
4398          * reflect what we found in the extent_tree, so we need to take the
4399          * duplicate out and use that as the extent_record since the only way we
4400          * get a duplicate is if we find a real life BTRFS_EXTENT_ITEM_KEY.
4401          */
4402         remove_cache_extent(extent_cache, &rec->cache);
4403
4404         good = list_entry(rec->dups.next, struct extent_record, list);
4405         list_del_init(&good->list);
4406         INIT_LIST_HEAD(&good->backrefs);
4407         INIT_LIST_HEAD(&good->dups);
4408         good->cache.start = good->start;
4409         good->cache.size = good->nr;
4410         good->content_checked = 0;
4411         good->owner_ref_checked = 0;
4412         good->num_duplicates = 0;
4413         good->refs = rec->refs;
4414         list_splice_init(&rec->backrefs, &good->backrefs);
4415         while (1) {
4416                 cache = lookup_cache_extent(extent_cache, good->start,
4417                                             good->nr);
4418                 if (!cache)
4419                         break;
4420                 tmp = container_of(cache, struct extent_record, cache);
4421
4422                 /*
4423                  * If we find another overlapping extent and it's found_rec is
4424                  * set then it's a duplicate and we need to try and delete
4425                  * something.
4426                  */
4427                 if (tmp->found_rec || tmp->num_duplicates > 0) {
4428                         if (list_empty(&good->list))
4429                                 list_add_tail(&good->list,
4430                                               &duplicate_extents);
4431                         good->num_duplicates += tmp->num_duplicates + 1;
4432                         list_splice_init(&tmp->dups, &good->dups);
4433                         list_del_init(&tmp->list);
4434                         list_add_tail(&tmp->list, &good->dups);
4435                         remove_cache_extent(extent_cache, &tmp->cache);
4436                         continue;
4437                 }
4438
4439                 /*
4440                  * Ok we have another non extent item backed extent rec, so lets
4441                  * just add it to this extent and carry on like we did above.
4442                  */
4443                 good->refs += tmp->refs;
4444                 list_splice_init(&tmp->backrefs, &good->backrefs);
4445                 remove_cache_extent(extent_cache, &tmp->cache);
4446                 free(tmp);
4447         }
4448         ret = insert_cache_extent(extent_cache, &good->cache);
4449         BUG_ON(ret);
4450         free(rec);
4451         return good->num_duplicates ? 0 : 1;
4452 }
4453
4454 static int delete_duplicate_records(struct btrfs_trans_handle *trans,
4455                                     struct btrfs_root *root,
4456                                     struct extent_record *rec)
4457 {
4458         LIST_HEAD(delete_list);
4459         struct btrfs_path *path;
4460         struct extent_record *tmp, *good, *n;
4461         int nr_del = 0;
4462         int ret = 0;
4463         struct btrfs_key key;
4464
4465         path = btrfs_alloc_path();
4466         if (!path) {
4467                 ret = -ENOMEM;
4468                 goto out;
4469         }
4470
4471         good = rec;
4472         /* Find the record that covers all of the duplicates. */
4473         list_for_each_entry(tmp, &rec->dups, list) {
4474                 if (good->start < tmp->start)
4475                         continue;
4476                 if (good->nr > tmp->nr)
4477                         continue;
4478
4479                 if (tmp->start + tmp->nr < good->start + good->nr) {
4480                         fprintf(stderr, "Ok we have overlapping extents that "
4481                                 "aren't completely covered by eachother, this "
4482                                 "is going to require more careful thought.  "
4483                                 "The extents are [%Lu-%Lu] and [%Lu-%Lu]\n",
4484                                 tmp->start, tmp->nr, good->start, good->nr);
4485                         abort();
4486                 }
4487                 good = tmp;
4488         }
4489
4490         if (good != rec)
4491                 list_add_tail(&rec->list, &delete_list);
4492
4493         list_for_each_entry_safe(tmp, n, &rec->dups, list) {
4494                 if (tmp == good)
4495                         continue;
4496                 list_move_tail(&tmp->list, &delete_list);
4497         }
4498
4499         root = root->fs_info->extent_root;
4500         list_for_each_entry(tmp, &delete_list, list) {
4501                 if (tmp->found_rec == 0)
4502                         continue;
4503                 key.objectid = tmp->start;
4504                 key.type = BTRFS_EXTENT_ITEM_KEY;
4505                 key.offset = tmp->nr;
4506
4507                 /* Shouldn't happen but just in case */
4508                 if (tmp->metadata) {
4509                         fprintf(stderr, "Well this shouldn't happen, extent "
4510                                 "record overlaps but is metadata? "
4511                                 "[%Lu, %Lu]\n", tmp->start, tmp->nr);
4512                         abort();
4513                 }
4514
4515                 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
4516                 if (ret) {
4517                         if (ret > 0)
4518                                 ret = -EINVAL;
4519                         goto out;
4520                 }
4521                 ret = btrfs_del_item(trans, root, path);
4522                 if (ret)
4523                         goto out;
4524                 btrfs_release_path(path);
4525                 nr_del++;
4526         }
4527
4528 out:
4529         while (!list_empty(&delete_list)) {
4530                 tmp = list_entry(delete_list.next, struct extent_record, list);
4531                 list_del_init(&tmp->list);
4532                 if (tmp == rec)
4533                         continue;
4534                 free(tmp);
4535         }
4536
4537         while (!list_empty(&rec->dups)) {
4538                 tmp = list_entry(rec->dups.next, struct extent_record, list);
4539                 list_del_init(&tmp->list);
4540                 free(tmp);
4541         }
4542
4543         btrfs_free_path(path);
4544
4545         if (!ret && !nr_del)
4546                 rec->num_duplicates = 0;
4547
4548         return ret ? ret : nr_del;
4549 }
4550
4551 /*
4552  * when an incorrect extent item is found, this will delete
4553  * all of the existing entries for it and recreate them
4554  * based on what the tree scan found.
4555  */
4556 static int fixup_extent_refs(struct btrfs_trans_handle *trans,
4557                              struct btrfs_fs_info *info,
4558                              struct extent_record *rec)
4559 {
4560         int ret;
4561         struct btrfs_path *path;
4562         struct list_head *cur = rec->backrefs.next;
4563         struct cache_extent *cache;
4564         struct extent_backref *back;
4565         int allocated = 0;
4566         u64 flags = 0;
4567
4568         /* remember our flags for recreating the extent */
4569         ret = btrfs_lookup_extent_info(NULL, info->extent_root, rec->start,
4570                                        rec->max_size, rec->metadata, NULL,
4571                                        &flags);
4572         if (ret < 0)
4573                 flags = BTRFS_BLOCK_FLAG_FULL_BACKREF;
4574
4575         path = btrfs_alloc_path();
4576         if (!path)
4577                 return -ENOMEM;
4578
4579         /* step one, make sure all of the backrefs agree */
4580         ret = verify_backrefs(trans, info, path, rec);
4581         if (ret < 0)
4582                 goto out;
4583
4584         /* step two, delete all the existing records */
4585         ret = delete_extent_records(trans, info->extent_root, path,
4586                                     rec->start, rec->max_size);
4587
4588         if (ret < 0)
4589                 goto out;
4590
4591         /* was this block corrupt?  If so, don't add references to it */
4592         cache = lookup_cache_extent(info->corrupt_blocks,
4593                                     rec->start, rec->max_size);
4594         if (cache) {
4595                 ret = 0;
4596                 goto out;
4597         }
4598
4599         /* step three, recreate all the refs we did find */
4600         while(cur != &rec->backrefs) {
4601                 back = list_entry(cur, struct extent_backref, list);
4602                 cur = cur->next;
4603
4604                 /*
4605                  * if we didn't find any references, don't create a
4606                  * new extent record
4607                  */
4608                 if (!back->found_ref)
4609                         continue;
4610
4611                 ret = record_extent(trans, info, path, rec, back, allocated, flags);
4612                 allocated = 1;
4613
4614                 if (ret)
4615                         goto out;
4616         }
4617 out:
4618         btrfs_free_path(path);
4619         return ret;
4620 }
4621
4622 /* right now we only prune from the extent allocation tree */
4623 static int prune_one_block(struct btrfs_trans_handle *trans,
4624                            struct btrfs_fs_info *info,
4625                            struct btrfs_corrupt_block *corrupt)
4626 {
4627         int ret;
4628         struct btrfs_path path;
4629         struct extent_buffer *eb;
4630         u64 found;
4631         int slot;
4632         int nritems;
4633         int level = corrupt->level + 1;
4634
4635         btrfs_init_path(&path);
4636 again:
4637         /* we want to stop at the parent to our busted block */
4638         path.lowest_level = level;
4639
4640         ret = btrfs_search_slot(trans, info->extent_root,
4641                                 &corrupt->key, &path, -1, 1);
4642
4643         if (ret < 0)
4644                 goto out;
4645
4646         eb = path.nodes[level];
4647         if (!eb) {
4648                 ret = -ENOENT;
4649                 goto out;
4650         }
4651
4652         /*
4653          * hopefully the search gave us the block we want to prune,
4654          * lets try that first
4655          */
4656         slot = path.slots[level];
4657         found =  btrfs_node_blockptr(eb, slot);
4658         if (found == corrupt->cache.start)
4659                 goto del_ptr;
4660
4661         nritems = btrfs_header_nritems(eb);
4662
4663         /* the search failed, lets scan this node and hope we find it */
4664         for (slot = 0; slot < nritems; slot++) {
4665                 found =  btrfs_node_blockptr(eb, slot);
4666                 if (found == corrupt->cache.start)
4667                         goto del_ptr;
4668         }
4669         /*
4670          * we couldn't find the bad block.  TODO, search all the nodes for pointers
4671          * to this block
4672          */
4673         if (eb == info->extent_root->node) {
4674                 ret = -ENOENT;
4675                 goto out;
4676         } else {
4677                 level++;
4678                 btrfs_release_path(&path);
4679                 goto again;
4680         }
4681
4682 del_ptr:
4683         printk("deleting pointer to block %Lu\n", corrupt->cache.start);
4684         ret = btrfs_del_ptr(trans, info->extent_root, &path, level, slot);
4685
4686 out:
4687         btrfs_release_path(&path);
4688         return ret;
4689 }
4690
4691 static int prune_corrupt_blocks(struct btrfs_trans_handle *trans,
4692                                 struct btrfs_fs_info *info)
4693 {
4694         struct cache_extent *cache;
4695         struct btrfs_corrupt_block *corrupt;
4696
4697         cache = search_cache_extent(info->corrupt_blocks, 0);
4698         while (1) {
4699                 if (!cache)
4700                         break;
4701                 corrupt = container_of(cache, struct btrfs_corrupt_block, cache);
4702                 prune_one_block(trans, info, corrupt);
4703                 cache = next_cache_extent(cache);
4704         }
4705         return 0;
4706 }
4707
4708 static void free_corrupt_block(struct cache_extent *cache)
4709 {
4710         struct btrfs_corrupt_block *corrupt;
4711
4712         corrupt = container_of(cache, struct btrfs_corrupt_block, cache);
4713         free(corrupt);
4714 }
4715
4716 FREE_EXTENT_CACHE_BASED_TREE(corrupt_blocks, free_corrupt_block);
4717
4718 static int check_block_group(struct btrfs_trans_handle *trans,
4719                               struct btrfs_fs_info *info,
4720                               struct map_lookup *map,
4721                               int *reinit)
4722 {
4723         struct btrfs_key key;
4724         struct btrfs_path path;
4725         int ret;
4726
4727         key.objectid = map->ce.start;
4728         key.offset = map->ce.size;
4729         key.type = BTRFS_BLOCK_GROUP_ITEM_KEY;
4730
4731         btrfs_init_path(&path);
4732         ret = btrfs_search_slot(NULL, info->extent_root,
4733                                 &key, &path, 0, 0);
4734         btrfs_release_path(&path);
4735         if (ret <= 0)
4736                 goto out;
4737
4738         ret = btrfs_make_block_group(trans, info->extent_root, 0, map->type,
4739                                BTRFS_FIRST_CHUNK_TREE_OBJECTID,
4740                                key.objectid, key.offset);
4741         *reinit = 1;
4742 out:
4743         return ret;
4744 }
4745
4746 static int check_block_groups(struct btrfs_trans_handle *trans,
4747                               struct btrfs_fs_info *info, int *reinit)
4748 {
4749         struct cache_extent *ce;
4750         struct map_lookup *map;
4751         struct btrfs_mapping_tree *map_tree = &info->mapping_tree;
4752
4753         /* this isn't quite working */
4754         return 0;
4755
4756         ce = search_cache_extent(&map_tree->cache_tree, 0);
4757         while (1) {
4758                 if (!ce)
4759                         break;
4760                 map = container_of(ce, struct map_lookup, ce);
4761                 check_block_group(trans, info, map, reinit);
4762                 ce = next_cache_extent(ce);
4763         }
4764         return 0;
4765 }
4766
4767 static void reset_cached_block_groups(struct btrfs_fs_info *fs_info)
4768 {
4769         struct btrfs_block_group_cache *cache;
4770         u64 start, end;
4771         int ret;
4772
4773         while (1) {
4774                 ret = find_first_extent_bit(&fs_info->free_space_cache, 0,
4775                                             &start, &end, EXTENT_DIRTY);
4776                 if (ret)
4777                         break;
4778                 clear_extent_dirty(&fs_info->free_space_cache, start, end,
4779                                    GFP_NOFS);
4780         }
4781
4782         start = 0;
4783         while (1) {
4784                 cache = btrfs_lookup_first_block_group(fs_info, start);
4785                 if (!cache)
4786                         break;
4787                 if (cache->cached)
4788                         cache->cached = 0;
4789                 start = cache->key.objectid + cache->key.offset;
4790         }
4791 }
4792
4793 static int check_extent_refs(struct btrfs_trans_handle *trans,
4794                              struct btrfs_root *root,
4795                              struct cache_tree *extent_cache, int repair)
4796 {
4797         struct extent_record *rec;
4798         struct cache_extent *cache;
4799         int err = 0;
4800         int ret = 0;
4801         int fixed = 0;
4802         int reinit = 0;
4803         int had_dups = 0;
4804
4805         if (repair) {
4806                 /*
4807                  * if we're doing a repair, we have to make sure
4808                  * we don't allocate from the problem extents.
4809                  * In the worst case, this will be all the
4810                  * extents in the FS
4811                  */
4812                 cache = search_cache_extent(extent_cache, 0);
4813                 while(cache) {
4814                         rec = container_of(cache, struct extent_record, cache);
4815                         btrfs_pin_extent(root->fs_info,
4816                                          rec->start, rec->max_size);
4817                         cache = next_cache_extent(cache);
4818                 }
4819
4820                 /* pin down all the corrupted blocks too */
4821                 cache = search_cache_extent(root->fs_info->corrupt_blocks, 0);
4822                 while(cache) {
4823                         btrfs_pin_extent(root->fs_info,
4824                                          cache->start, cache->size);
4825                         cache = next_cache_extent(cache);
4826                 }
4827                 prune_corrupt_blocks(trans, root->fs_info);
4828                 check_block_groups(trans, root->fs_info, &reinit);
4829                 if (reinit)
4830                         btrfs_read_block_groups(root->fs_info->extent_root);
4831                 reset_cached_block_groups(root->fs_info);
4832         }
4833
4834         /*
4835          * We need to delete any duplicate entries we find first otherwise we
4836          * could mess up the extent tree when we have backrefs that actually
4837          * belong to a different extent item and not the weird duplicate one.
4838          */
4839         while (repair && !list_empty(&duplicate_extents)) {
4840                 rec = list_entry(duplicate_extents.next, struct extent_record,
4841                                  list);
4842                 list_del_init(&rec->list);
4843
4844                 /* Sometimes we can find a backref before we find an actual
4845                  * extent, so we need to process it a little bit to see if there
4846                  * truly are multiple EXTENT_ITEM_KEY's for the same range, or
4847                  * if this is a backref screwup.  If we need to delete stuff
4848                  * process_duplicates() will return 0, otherwise it will return
4849                  * 1 and we
4850                  */
4851                 if (process_duplicates(root, extent_cache, rec))
4852                         continue;
4853                 ret = delete_duplicate_records(trans, root, rec);
4854                 if (ret < 0)
4855                         return ret;
4856                 /*
4857                  * delete_duplicate_records will return the number of entries
4858                  * deleted, so if it's greater than 0 then we know we actually
4859                  * did something and we need to remove.
4860                  */
4861                 if (ret)
4862                         had_dups = 1;
4863         }
4864
4865         if (had_dups)
4866                 return -EAGAIN;
4867
4868         while(1) {
4869                 fixed = 0;
4870                 cache = search_cache_extent(extent_cache, 0);
4871                 if (!cache)
4872                         break;
4873                 rec = container_of(cache, struct extent_record, cache);
4874                 if (rec->num_duplicates) {
4875                         fprintf(stderr, "extent item %llu has multiple extent "
4876                                 "items\n", (unsigned long long)rec->start);
4877                         err = 1;
4878                 }
4879
4880                 if (rec->refs != rec->extent_item_refs) {
4881                         fprintf(stderr, "ref mismatch on [%llu %llu] ",
4882                                 (unsigned long long)rec->start,
4883                                 (unsigned long long)rec->nr);
4884                         fprintf(stderr, "extent item %llu, found %llu\n",
4885                                 (unsigned long long)rec->extent_item_refs,
4886                                 (unsigned long long)rec->refs);
4887                         if (!fixed && repair) {
4888                                 ret = fixup_extent_refs(trans, root->fs_info, rec);
4889                                 if (ret)
4890                                         goto repair_abort;
4891                                 fixed = 1;
4892                         }
4893                         err = 1;
4894
4895                 }
4896                 if (all_backpointers_checked(rec, 1)) {
4897                         fprintf(stderr, "backpointer mismatch on [%llu %llu]\n",
4898                                 (unsigned long long)rec->start,
4899                                 (unsigned long long)rec->nr);
4900
4901                         if (!fixed && repair) {
4902                                 ret = fixup_extent_refs(trans, root->fs_info, rec);
4903                                 if (ret)
4904                                         goto repair_abort;
4905                                 fixed = 1;
4906                         }
4907
4908                         err = 1;
4909                 }
4910                 if (!rec->owner_ref_checked) {
4911                         fprintf(stderr, "owner ref check failed [%llu %llu]\n",
4912                                 (unsigned long long)rec->start,
4913                                 (unsigned long long)rec->nr);
4914                         if (!fixed && repair) {
4915                                 ret = fixup_extent_refs(trans, root->fs_info, rec);
4916                                 if (ret)
4917                                         goto repair_abort;
4918                                 fixed = 1;
4919                         }
4920                         err = 1;
4921                 }
4922
4923                 remove_cache_extent(extent_cache, cache);
4924                 free_all_extent_backrefs(rec);
4925                 free(rec);
4926         }
4927 repair_abort:
4928         if (repair) {
4929                 if (ret && ret != -EAGAIN) {
4930                         fprintf(stderr, "failed to repair damaged filesystem, aborting\n");
4931                         exit(1);
4932                 } else if (!ret) {
4933                         btrfs_fix_block_accounting(trans, root);
4934                 }
4935                 if (err)
4936                         fprintf(stderr, "repaired damaged extent references\n");
4937                 return ret;
4938         }
4939         return err;
4940 }
4941
4942 u64 calc_stripe_length(u64 type, u64 length, int num_stripes)
4943 {
4944         u64 stripe_size;
4945
4946         if (type & BTRFS_BLOCK_GROUP_RAID0) {
4947                 stripe_size = length;
4948                 stripe_size /= num_stripes;
4949         } else if (type & BTRFS_BLOCK_GROUP_RAID10) {
4950                 stripe_size = length * 2;
4951                 stripe_size /= num_stripes;
4952         } else if (type & BTRFS_BLOCK_GROUP_RAID5) {
4953                 stripe_size = length;
4954                 stripe_size /= (num_stripes - 1);
4955         } else if (type & BTRFS_BLOCK_GROUP_RAID6) {
4956                 stripe_size = length;
4957                 stripe_size /= (num_stripes - 2);
4958         } else {
4959                 stripe_size = length;
4960         }
4961         return stripe_size;
4962 }
4963
4964 static int check_chunk_refs(struct chunk_record *chunk_rec,
4965                             struct block_group_tree *block_group_cache,
4966                             struct device_extent_tree *dev_extent_cache,
4967                             int silent)
4968 {
4969         struct cache_extent *block_group_item;
4970         struct block_group_record *block_group_rec;
4971         struct cache_extent *dev_extent_item;
4972         struct device_extent_record *dev_extent_rec;
4973         u64 devid;
4974         u64 offset;
4975         u64 length;
4976         int i;
4977         int ret = 0;
4978
4979         block_group_item = lookup_cache_extent(&block_group_cache->tree,
4980                                                chunk_rec->offset,
4981                                                chunk_rec->length);
4982         if (block_group_item) {
4983                 block_group_rec = container_of(block_group_item,
4984                                                struct block_group_record,
4985                                                cache);
4986                 if (chunk_rec->length != block_group_rec->offset ||
4987                     chunk_rec->offset != block_group_rec->objectid ||
4988                     chunk_rec->type_flags != block_group_rec->flags) {
4989                         if (!silent)
4990                                 fprintf(stderr,
4991                                         "Chunk[%llu, %u, %llu]: length(%llu), offset(%llu), type(%llu) mismatch with block group[%llu, %u, %llu]: offset(%llu), objectid(%llu), flags(%llu)\n",
4992                                         chunk_rec->objectid,
4993                                         chunk_rec->type,
4994                                         chunk_rec->offset,
4995                                         chunk_rec->length,
4996                                         chunk_rec->offset,
4997                                         chunk_rec->type_flags,
4998                                         block_group_rec->objectid,
4999                                         block_group_rec->type,
5000                                         block_group_rec->offset,
5001                                         block_group_rec->offset,
5002                                         block_group_rec->objectid,
5003                                         block_group_rec->flags);
5004                         ret = -1;
5005                 } else {
5006                         list_del_init(&block_group_rec->list);
5007                         chunk_rec->bg_rec = block_group_rec;
5008                 }
5009         } else {
5010                 if (!silent)
5011                         fprintf(stderr,
5012                                 "Chunk[%llu, %u, %llu]: length(%llu), offset(%llu), type(%llu) is not found in block group\n",
5013                                 chunk_rec->objectid,
5014                                 chunk_rec->type,
5015                                 chunk_rec->offset,
5016                                 chunk_rec->length,
5017                                 chunk_rec->offset,
5018                                 chunk_rec->type_flags);
5019                 ret = -1;
5020         }
5021
5022         length = calc_stripe_length(chunk_rec->type_flags, chunk_rec->length,
5023                                     chunk_rec->num_stripes);
5024         for (i = 0; i < chunk_rec->num_stripes; ++i) {
5025                 devid = chunk_rec->stripes[i].devid;
5026                 offset = chunk_rec->stripes[i].offset;
5027                 dev_extent_item = lookup_cache_extent2(&dev_extent_cache->tree,
5028                                                        devid, offset, length);
5029                 if (dev_extent_item) {
5030                         dev_extent_rec = container_of(dev_extent_item,
5031                                                 struct device_extent_record,
5032                                                 cache);
5033                         if (dev_extent_rec->objectid != devid ||
5034                             dev_extent_rec->offset != offset ||
5035                             dev_extent_rec->chunk_offset != chunk_rec->offset ||
5036                             dev_extent_rec->length != length) {
5037                                 if (!silent)
5038                                         fprintf(stderr,
5039                                                 "Chunk[%llu, %u, %llu] stripe[%llu, %llu] dismatch dev extent[%llu, %llu, %llu]\n",
5040                                                 chunk_rec->objectid,
5041                                                 chunk_rec->type,
5042                                                 chunk_rec->offset,
5043                                                 chunk_rec->stripes[i].devid,
5044                                                 chunk_rec->stripes[i].offset,
5045                                                 dev_extent_rec->objectid,
5046                                                 dev_extent_rec->offset,
5047                                                 dev_extent_rec->length);
5048                                 ret = -1;
5049                         } else {
5050                                 list_move(&dev_extent_rec->chunk_list,
5051                                           &chunk_rec->dextents);
5052                         }
5053                 } else {
5054                         if (!silent)
5055                                 fprintf(stderr,
5056                                         "Chunk[%llu, %u, %llu] stripe[%llu, %llu] is not found in dev extent\n",
5057                                         chunk_rec->objectid,
5058                                         chunk_rec->type,
5059                                         chunk_rec->offset,
5060                                         chunk_rec->stripes[i].devid,
5061                                         chunk_rec->stripes[i].offset);
5062                         ret = -1;
5063                 }
5064         }
5065         return ret;
5066 }
5067
5068 /* check btrfs_chunk -> btrfs_dev_extent / btrfs_block_group_item */
5069 int check_chunks(struct cache_tree *chunk_cache,
5070                  struct block_group_tree *block_group_cache,
5071                  struct device_extent_tree *dev_extent_cache,
5072                  struct list_head *good, struct list_head *bad, int silent)
5073 {
5074         struct cache_extent *chunk_item;
5075         struct chunk_record *chunk_rec;
5076         struct block_group_record *bg_rec;
5077         struct device_extent_record *dext_rec;
5078         int err;
5079         int ret = 0;
5080
5081         chunk_item = first_cache_extent(chunk_cache);
5082         while (chunk_item) {
5083                 chunk_rec = container_of(chunk_item, struct chunk_record,
5084                                          cache);
5085                 err = check_chunk_refs(chunk_rec, block_group_cache,
5086                                        dev_extent_cache, silent);
5087                 if (err) {
5088                         ret = err;
5089                         if (bad)
5090                                 list_add_tail(&chunk_rec->list, bad);
5091                 } else {
5092                         if (good)
5093                                 list_add_tail(&chunk_rec->list, good);
5094                 }
5095
5096                 chunk_item = next_cache_extent(chunk_item);
5097         }
5098
5099         list_for_each_entry(bg_rec, &block_group_cache->block_groups, list) {
5100                 if (!silent)
5101                         fprintf(stderr,
5102                                 "Block group[%llu, %llu] (flags = %llu) didn't find the relative chunk.\n",
5103                                 bg_rec->objectid,
5104                                 bg_rec->offset,
5105                                 bg_rec->flags);
5106                 if (!ret)
5107                         ret = 1;
5108         }
5109
5110         list_for_each_entry(dext_rec, &dev_extent_cache->no_chunk_orphans,
5111                             chunk_list) {
5112                 if (!silent)
5113                         fprintf(stderr,
5114                                 "Device extent[%llu, %llu, %llu] didn't find the relative chunk.\n",
5115                                 dext_rec->objectid,
5116                                 dext_rec->offset,
5117                                 dext_rec->length);
5118                 if (!ret)
5119                         ret = 1;
5120         }
5121         return ret;
5122 }
5123
5124
5125 static int check_device_used(struct device_record *dev_rec,
5126                              struct device_extent_tree *dext_cache)
5127 {
5128         struct cache_extent *cache;
5129         struct device_extent_record *dev_extent_rec;
5130         u64 total_byte = 0;
5131
5132         cache = search_cache_extent2(&dext_cache->tree, dev_rec->devid, 0);
5133         while (cache) {
5134                 dev_extent_rec = container_of(cache,
5135                                               struct device_extent_record,
5136                                               cache);
5137                 if (dev_extent_rec->objectid != dev_rec->devid)
5138                         break;
5139
5140                 list_del(&dev_extent_rec->device_list);
5141                 total_byte += dev_extent_rec->length;
5142                 cache = next_cache_extent(cache);
5143         }
5144
5145         if (total_byte != dev_rec->byte_used) {
5146                 fprintf(stderr,
5147                         "Dev extent's total-byte(%llu) is not equal to byte-used(%llu) in dev[%llu, %u, %llu]\n",
5148                         total_byte, dev_rec->byte_used, dev_rec->objectid,
5149                         dev_rec->type, dev_rec->offset);
5150                 return -1;
5151         } else {
5152                 return 0;
5153         }
5154 }
5155
5156 /* check btrfs_dev_item -> btrfs_dev_extent */
5157 static int check_devices(struct rb_root *dev_cache,
5158                          struct device_extent_tree *dev_extent_cache)
5159 {
5160         struct rb_node *dev_node;
5161         struct device_record *dev_rec;
5162         struct device_extent_record *dext_rec;
5163         int err;
5164         int ret = 0;
5165
5166         dev_node = rb_first(dev_cache);
5167         while (dev_node) {
5168                 dev_rec = container_of(dev_node, struct device_record, node);
5169                 err = check_device_used(dev_rec, dev_extent_cache);
5170                 if (err)
5171                         ret = err;
5172
5173                 dev_node = rb_next(dev_node);
5174         }
5175         list_for_each_entry(dext_rec, &dev_extent_cache->no_device_orphans,
5176                             device_list) {
5177                 fprintf(stderr,
5178                         "Device extent[%llu, %llu, %llu] didn't find its device.\n",
5179                         dext_rec->objectid, dext_rec->offset, dext_rec->length);
5180                 if (!ret)
5181                         ret = 1;
5182         }
5183         return ret;
5184 }
5185
5186 static int check_chunks_and_extents(struct btrfs_root *root, int repair)
5187 {
5188         struct rb_root dev_cache;
5189         struct cache_tree chunk_cache;
5190         struct block_group_tree block_group_cache;
5191         struct device_extent_tree dev_extent_cache;
5192         struct cache_tree extent_cache;
5193         struct cache_tree seen;
5194         struct cache_tree pending;
5195         struct cache_tree reada;
5196         struct cache_tree nodes;
5197         struct cache_tree corrupt_blocks;
5198         struct btrfs_path path;
5199         struct btrfs_key key;
5200         struct btrfs_key found_key;
5201         int ret, err = 0;
5202         u64 last = 0;
5203         struct block_info *bits;
5204         int bits_nr;
5205         struct extent_buffer *leaf;
5206         struct btrfs_trans_handle *trans = NULL;
5207         int slot;
5208         struct btrfs_root_item ri;
5209
5210         dev_cache = RB_ROOT;
5211         cache_tree_init(&chunk_cache);
5212         block_group_tree_init(&block_group_cache);
5213         device_extent_tree_init(&dev_extent_cache);
5214
5215         cache_tree_init(&extent_cache);
5216         cache_tree_init(&seen);
5217         cache_tree_init(&pending);
5218         cache_tree_init(&nodes);
5219         cache_tree_init(&reada);
5220         cache_tree_init(&corrupt_blocks);
5221
5222         if (repair) {
5223                 trans = btrfs_start_transaction(root, 1);
5224                 if (IS_ERR(trans)) {
5225                         fprintf(stderr, "Error starting transaction\n");
5226                         return PTR_ERR(trans);
5227                 }
5228                 root->fs_info->fsck_extent_cache = &extent_cache;
5229                 root->fs_info->free_extent_hook = free_extent_hook;
5230                 root->fs_info->corrupt_blocks = &corrupt_blocks;
5231         }
5232
5233         bits_nr = 1024;
5234         bits = malloc(bits_nr * sizeof(struct block_info));
5235         if (!bits) {
5236                 perror("malloc");
5237                 exit(1);
5238         }
5239
5240 again:
5241         add_root_to_pending(root->fs_info->tree_root->node,
5242                             &extent_cache, &pending, &seen, &nodes,
5243                             &root->fs_info->tree_root->root_key);
5244
5245         add_root_to_pending(root->fs_info->chunk_root->node,
5246                             &extent_cache, &pending, &seen, &nodes,
5247                             &root->fs_info->chunk_root->root_key);
5248
5249         btrfs_init_path(&path);
5250         key.offset = 0;
5251         key.objectid = 0;
5252         btrfs_set_key_type(&key, BTRFS_ROOT_ITEM_KEY);
5253         ret = btrfs_search_slot(NULL, root->fs_info->tree_root,
5254                                         &key, &path, 0, 0);
5255         BUG_ON(ret < 0);
5256         while(1) {
5257                 leaf = path.nodes[0];
5258                 slot = path.slots[0];
5259                 if (slot >= btrfs_header_nritems(path.nodes[0])) {
5260                         ret = btrfs_next_leaf(root, &path);
5261                         if (ret != 0)
5262                                 break;
5263                         leaf = path.nodes[0];
5264                         slot = path.slots[0];
5265                 }
5266                 btrfs_item_key_to_cpu(leaf, &found_key, path.slots[0]);
5267                 if (btrfs_key_type(&found_key) == BTRFS_ROOT_ITEM_KEY) {
5268                         unsigned long offset;
5269                         struct extent_buffer *buf;
5270
5271                         offset = btrfs_item_ptr_offset(leaf, path.slots[0]);
5272                         read_extent_buffer(leaf, &ri, offset, sizeof(ri));
5273                         buf = read_tree_block(root->fs_info->tree_root,
5274                                               btrfs_root_bytenr(&ri),
5275                                               btrfs_level_size(root,
5276                                                btrfs_root_level(&ri)), 0);
5277                         add_root_to_pending(buf, &extent_cache, &pending,
5278                                             &seen, &nodes, &found_key);
5279                         free_extent_buffer(buf);
5280                 }
5281                 path.slots[0]++;
5282         }
5283         btrfs_release_path(&path);
5284         while(1) {
5285                 ret = run_next_block(root, bits, bits_nr, &last, &pending,
5286                                      &seen, &reada, &nodes, &extent_cache,
5287                                      &chunk_cache, &dev_cache,
5288                                      &block_group_cache, &dev_extent_cache);
5289                 if (ret != 0)
5290                         break;
5291         }
5292
5293         ret = check_extent_refs(trans, root, &extent_cache, repair);
5294         if (ret == -EAGAIN) {
5295                 ret = btrfs_commit_transaction(trans, root);
5296                 if (ret)
5297                         goto out;
5298
5299                 trans = btrfs_start_transaction(root, 1);
5300                 if (IS_ERR(trans)) {
5301                         ret = PTR_ERR(trans);
5302                         goto out;
5303                 }
5304
5305                 free_corrupt_blocks_tree(root->fs_info->corrupt_blocks);
5306                 free_extent_cache_tree(&seen);
5307                 free_extent_cache_tree(&pending);
5308                 free_extent_cache_tree(&reada);
5309                 free_extent_cache_tree(&nodes);
5310                 free_extent_record_cache(root->fs_info, &extent_cache);
5311                 goto again;
5312         }
5313
5314         err = check_chunks(&chunk_cache, &block_group_cache,
5315                            &dev_extent_cache, NULL, NULL, 0);
5316         if (err && !ret)
5317                 ret = err;
5318
5319         err = check_devices(&dev_cache, &dev_extent_cache);
5320         if (err && !ret)
5321                 ret = err;
5322
5323         if (trans) {
5324                 err = btrfs_commit_transaction(trans, root);
5325                 if (!ret)
5326                         ret = err;
5327         }
5328 out:
5329         if (repair) {
5330                 free_corrupt_blocks_tree(root->fs_info->corrupt_blocks);
5331                 root->fs_info->fsck_extent_cache = NULL;
5332                 root->fs_info->free_extent_hook = NULL;
5333                 root->fs_info->corrupt_blocks = NULL;
5334         }
5335         free(bits);
5336         free_chunk_cache_tree(&chunk_cache);
5337         free_device_cache_tree(&dev_cache);
5338         free_block_group_tree(&block_group_cache);
5339         free_device_extent_tree(&dev_extent_cache);
5340         return ret;
5341 }
5342
5343 static int btrfs_fsck_reinit_root(struct btrfs_trans_handle *trans,
5344                            struct btrfs_root *root, int overwrite)
5345 {
5346         struct extent_buffer *c;
5347         struct extent_buffer *old = root->node;
5348         int level;
5349         struct btrfs_disk_key disk_key = {0,0,0};
5350
5351         level = 0;
5352
5353         if (overwrite) {
5354                 c = old;
5355                 extent_buffer_get(c);
5356                 goto init;
5357         }
5358         c = btrfs_alloc_free_block(trans, root,
5359                                    btrfs_level_size(root, 0),
5360                                    root->root_key.objectid,
5361                                    &disk_key, level, 0, 0);
5362         if (IS_ERR(c)) {
5363                 c = old;
5364                 extent_buffer_get(c);
5365         }
5366 init:
5367         memset_extent_buffer(c, 0, 0, sizeof(struct btrfs_header));
5368         btrfs_set_header_level(c, level);
5369         btrfs_set_header_bytenr(c, c->start);
5370         btrfs_set_header_generation(c, trans->transid);
5371         btrfs_set_header_backref_rev(c, BTRFS_MIXED_BACKREF_REV);
5372         btrfs_set_header_owner(c, root->root_key.objectid);
5373
5374         write_extent_buffer(c, root->fs_info->fsid,
5375                             (unsigned long)btrfs_header_fsid(c),
5376                             BTRFS_FSID_SIZE);
5377
5378         write_extent_buffer(c, root->fs_info->chunk_tree_uuid,
5379                             (unsigned long)btrfs_header_chunk_tree_uuid(c),
5380                             BTRFS_UUID_SIZE);
5381
5382         btrfs_mark_buffer_dirty(c);
5383
5384         free_extent_buffer(old);
5385         root->node = c;
5386         add_root_to_dirty_list(root);
5387         return 0;
5388 }
5389
5390 static int pin_down_tree_blocks(struct btrfs_fs_info *fs_info,
5391                                 struct extent_buffer *eb, int tree_root)
5392 {
5393         struct extent_buffer *tmp;
5394         struct btrfs_root_item *ri;
5395         struct btrfs_key key;
5396         u64 bytenr;
5397         u32 leafsize;
5398         int level = btrfs_header_level(eb);
5399         int nritems;
5400         int ret;
5401         int i;
5402
5403         btrfs_pin_extent(fs_info, eb->start, eb->len);
5404
5405         leafsize = btrfs_super_leafsize(fs_info->super_copy);
5406         nritems = btrfs_header_nritems(eb);
5407         for (i = 0; i < nritems; i++) {
5408                 if (level == 0) {
5409                         btrfs_item_key_to_cpu(eb, &key, i);
5410                         if (key.type != BTRFS_ROOT_ITEM_KEY)
5411                                 continue;
5412                         /* Skip the extent root and reloc roots */
5413                         if (key.objectid == BTRFS_EXTENT_TREE_OBJECTID ||
5414                             key.objectid == BTRFS_TREE_RELOC_OBJECTID ||
5415                             key.objectid == BTRFS_DATA_RELOC_TREE_OBJECTID)
5416                                 continue;
5417                         ri = btrfs_item_ptr(eb, i, struct btrfs_root_item);
5418                         bytenr = btrfs_disk_root_bytenr(eb, ri);
5419
5420                         /*
5421                          * If at any point we start needing the real root we
5422                          * will have to build a stump root for the root we are
5423                          * in, but for now this doesn't actually use the root so
5424                          * just pass in extent_root.
5425                          */
5426                         tmp = read_tree_block(fs_info->extent_root, bytenr,
5427                                               leafsize, 0);
5428                         if (!tmp) {
5429                                 fprintf(stderr, "Error reading root block\n");
5430                                 return -EIO;
5431                         }
5432                         ret = pin_down_tree_blocks(fs_info, tmp, 0);
5433                         free_extent_buffer(tmp);
5434                         if (ret)
5435                                 return ret;
5436                 } else {
5437                         bytenr = btrfs_node_blockptr(eb, i);
5438
5439                         /* If we aren't the tree root don't read the block */
5440                         if (level == 1 && !tree_root) {
5441                                 btrfs_pin_extent(fs_info, bytenr, leafsize);
5442                                 continue;
5443                         }
5444
5445                         tmp = read_tree_block(fs_info->extent_root, bytenr,
5446                                               leafsize, 0);
5447                         if (!tmp) {
5448                                 fprintf(stderr, "Error reading tree block\n");
5449                                 return -EIO;
5450                         }
5451                         ret = pin_down_tree_blocks(fs_info, tmp, tree_root);
5452                         free_extent_buffer(tmp);
5453                         if (ret)
5454                                 return ret;
5455                 }
5456         }
5457
5458         return 0;
5459 }
5460
5461 static int pin_metadata_blocks(struct btrfs_fs_info *fs_info)
5462 {
5463         int ret;
5464
5465         ret = pin_down_tree_blocks(fs_info, fs_info->chunk_root->node, 0);
5466         if (ret)
5467                 return ret;
5468
5469         return pin_down_tree_blocks(fs_info, fs_info->tree_root->node, 1);
5470 }
5471
5472 static int reset_block_groups(struct btrfs_fs_info *fs_info)
5473 {
5474         struct btrfs_path *path;
5475         struct extent_buffer *leaf;
5476         struct btrfs_chunk *chunk;
5477         struct btrfs_key key;
5478         int ret;
5479
5480         path = btrfs_alloc_path();
5481         if (!path)
5482                 return -ENOMEM;
5483
5484         key.objectid = 0;
5485         key.type = BTRFS_CHUNK_ITEM_KEY;
5486         key.offset = 0;
5487
5488         ret = btrfs_search_slot(NULL, fs_info->chunk_root, &key, path, 0, 0);
5489         if (ret < 0) {
5490                 btrfs_free_path(path);
5491                 return ret;
5492         }
5493
5494         /*
5495          * We do this in case the block groups were screwed up and had alloc
5496          * bits that aren't actually set on the chunks.  This happens with
5497          * restored images every time and could happen in real life I guess.
5498          */
5499         fs_info->avail_data_alloc_bits = 0;
5500         fs_info->avail_metadata_alloc_bits = 0;
5501         fs_info->avail_system_alloc_bits = 0;
5502
5503         /* First we need to create the in-memory block groups */
5504         while (1) {
5505                 if (path->slots[0] >= btrfs_header_nritems(path->nodes[0])) {
5506                         ret = btrfs_next_leaf(fs_info->chunk_root, path);
5507                         if (ret < 0) {
5508                                 btrfs_free_path(path);
5509                                 return ret;
5510                         }
5511                         if (ret) {
5512                                 ret = 0;
5513                                 break;
5514                         }
5515                 }
5516                 leaf = path->nodes[0];
5517                 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
5518                 if (key.type != BTRFS_CHUNK_ITEM_KEY) {
5519                         path->slots[0]++;
5520                         continue;
5521                 }
5522
5523                 chunk = btrfs_item_ptr(leaf, path->slots[0],
5524                                        struct btrfs_chunk);
5525                 btrfs_add_block_group(fs_info, 0,
5526                                       btrfs_chunk_type(leaf, chunk),
5527                                       key.objectid, key.offset,
5528                                       btrfs_chunk_length(leaf, chunk));
5529                 path->slots[0]++;
5530         }
5531
5532         btrfs_free_path(path);
5533         return 0;
5534 }
5535
5536 static int reset_balance(struct btrfs_trans_handle *trans,
5537                          struct btrfs_fs_info *fs_info)
5538 {
5539         struct btrfs_root *root = fs_info->tree_root;
5540         struct btrfs_path *path;
5541         struct extent_buffer *leaf;
5542         struct btrfs_key key;
5543         int del_slot, del_nr = 0;
5544         int ret;
5545         int found = 0;
5546
5547         path = btrfs_alloc_path();
5548         if (!path)
5549                 return -ENOMEM;
5550
5551         key.objectid = BTRFS_BALANCE_OBJECTID;
5552         key.type = BTRFS_BALANCE_ITEM_KEY;
5553         key.offset = 0;
5554
5555         ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
5556         if (ret) {
5557                 if (ret > 0)
5558                         ret = 0;
5559                 goto out;
5560         }
5561
5562         ret = btrfs_del_item(trans, root, path);
5563         if (ret)
5564                 goto out;
5565         btrfs_release_path(path);
5566
5567         key.objectid = BTRFS_TREE_RELOC_OBJECTID;
5568         key.type = BTRFS_ROOT_ITEM_KEY;
5569         key.offset = 0;
5570
5571         ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
5572         if (ret < 0)
5573                 goto out;
5574         while (1) {
5575                 if (path->slots[0] >= btrfs_header_nritems(path->nodes[0])) {
5576                         if (!found)
5577                                 break;
5578
5579                         if (del_nr) {
5580                                 ret = btrfs_del_items(trans, root, path,
5581                                                       del_slot, del_nr);
5582                                 del_nr = 0;
5583                                 if (ret)
5584                                         goto out;
5585                         }
5586                         key.offset++;
5587                         btrfs_release_path(path);
5588
5589                         found = 0;
5590                         ret = btrfs_search_slot(trans, root, &key, path,
5591                                                 -1, 1);
5592                         if (ret < 0)
5593                                 goto out;
5594                         continue;
5595                 }
5596                 found = 1;
5597                 leaf = path->nodes[0];
5598                 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
5599                 if (key.objectid > BTRFS_TREE_RELOC_OBJECTID)
5600                         break;
5601                 if (key.objectid != BTRFS_TREE_RELOC_OBJECTID) {
5602                         path->slots[0]++;
5603                         continue;
5604                 }
5605                 if (!del_nr) {
5606                         del_slot = path->slots[0];
5607                         del_nr = 1;
5608                 } else {
5609                         del_nr++;
5610                 }
5611                 path->slots[0]++;
5612         }
5613
5614         if (del_nr) {
5615                 ret = btrfs_del_items(trans, root, path, del_slot, del_nr);
5616                 if (ret)
5617                         goto out;
5618         }
5619         btrfs_release_path(path);
5620
5621         key.objectid = BTRFS_DATA_RELOC_TREE_OBJECTID;
5622         key.type = BTRFS_ROOT_ITEM_KEY;
5623         key.offset = (u64)-1;
5624         root = btrfs_read_fs_root(fs_info, &key);
5625         if (IS_ERR(root)) {
5626                 fprintf(stderr, "Error reading data reloc tree\n");
5627                 return PTR_ERR(root);
5628         }
5629         root->track_dirty = 1;
5630         if (root->last_trans != trans->transid) {
5631                 root->last_trans = trans->transid;
5632                 root->commit_root = root->node;
5633                 extent_buffer_get(root->node);
5634         }
5635         ret = btrfs_fsck_reinit_root(trans, root, 0);
5636 out:
5637         btrfs_free_path(path);
5638         return ret;
5639 }
5640
5641 static int reinit_extent_tree(struct btrfs_fs_info *fs_info)
5642 {
5643         struct btrfs_trans_handle *trans;
5644         u64 start = 0;
5645         int ret;
5646
5647         /*
5648          * The only reason we don't do this is because right now we're just
5649          * walking the trees we find and pinning down their bytes, we don't look
5650          * at any of the leaves.  In order to do mixed groups we'd have to check
5651          * the leaves of any fs roots and pin down the bytes for any file
5652          * extents we find.  Not hard but why do it if we don't have to?
5653          */
5654         if (btrfs_fs_incompat(fs_info, BTRFS_FEATURE_INCOMPAT_MIXED_GROUPS)) {
5655                 fprintf(stderr, "We don't support re-initing the extent tree "
5656                         "for mixed block groups yet, please notify a btrfs "
5657                         "developer you want to do this so they can add this "
5658                         "functionality.\n");
5659                 return -EINVAL;
5660         }
5661
5662         trans = btrfs_start_transaction(fs_info->extent_root, 1);
5663         if (IS_ERR(trans)) {
5664                 fprintf(stderr, "Error starting transaction\n");
5665                 return PTR_ERR(trans);
5666         }
5667
5668         /*
5669          * first we need to walk all of the trees except the extent tree and pin
5670          * down the bytes that are in use so we don't overwrite any existing
5671          * metadata.
5672          */
5673         ret = pin_metadata_blocks(fs_info);
5674         if (ret) {
5675                 fprintf(stderr, "error pinning down used bytes\n");
5676                 return ret;
5677         }
5678
5679         /*
5680          * Need to drop all the block groups since we're going to recreate all
5681          * of them again.
5682          */
5683         btrfs_free_block_groups(fs_info);
5684         ret = reset_block_groups(fs_info);
5685         if (ret) {
5686                 fprintf(stderr, "error resetting the block groups\n");
5687                 return ret;
5688         }
5689
5690         /* Ok we can allocate now, reinit the extent root */
5691         ret = btrfs_fsck_reinit_root(trans, fs_info->extent_root, 1);
5692         if (ret) {
5693                 fprintf(stderr, "extent root initialization failed\n");
5694                 /*
5695                  * When the transaction code is updated we should end the
5696                  * transaction, but for now progs only knows about commit so
5697                  * just return an error.
5698                  */
5699                 return ret;
5700         }
5701
5702         ret = reset_balance(trans, fs_info);
5703         if (ret) {
5704                 fprintf(stderr, "error reseting the pending balance\n");
5705                 return ret;
5706         }
5707
5708         /*
5709          * Now we have all the in-memory block groups setup so we can make
5710          * allocations properly, and the metadata we care about is safe since we
5711          * pinned all of it above.
5712          */
5713         while (1) {
5714                 struct btrfs_block_group_cache *cache;
5715
5716                 cache = btrfs_lookup_first_block_group(fs_info, start);
5717                 if (!cache)
5718                         break;
5719                 start = cache->key.objectid + cache->key.offset;
5720                 ret = btrfs_insert_item(trans, fs_info->extent_root,
5721                                         &cache->key, &cache->item,
5722                                         sizeof(cache->item));
5723                 if (ret) {
5724                         fprintf(stderr, "Error adding block group\n");
5725                         return ret;
5726                 }
5727                 btrfs_extent_post_op(trans, fs_info->extent_root);
5728         }
5729
5730         /*
5731          * Ok now we commit and run the normal fsck, which will add extent
5732          * entries for all of the items it finds.
5733          */
5734         return btrfs_commit_transaction(trans, fs_info->extent_root);
5735 }
5736
5737 static struct option long_options[] = {
5738         { "super", 1, NULL, 's' },
5739         { "repair", 0, NULL, 0 },
5740         { "init-csum-tree", 0, NULL, 0 },
5741         { "init-extent-tree", 0, NULL, 0 },
5742         { NULL, 0, NULL, 0}
5743 };
5744
5745 const char * const cmd_check_usage[] = {
5746         "btrfs check [options] <device>",
5747         "Check an unmounted btrfs filesystem.",
5748         "",
5749         "-s|--super <superblock>     use this superblock copy",
5750         "--repair                    try to repair the filesystem",
5751         "--init-csum-tree            create a new CRC tree",
5752         "--init-extent-tree          create a new extent tree",
5753         NULL
5754 };
5755
5756 int cmd_check(int argc, char **argv)
5757 {
5758         struct cache_tree root_cache;
5759         struct btrfs_root *root;
5760         struct btrfs_fs_info *info;
5761         u64 bytenr = 0;
5762         char uuidbuf[37];
5763         int ret;
5764         int num;
5765         int repair = 0;
5766         int option_index = 0;
5767         int init_csum_tree = 0;
5768         int init_extent_tree = 0;
5769         int rw = 0;
5770
5771         while(1) {
5772                 int c;
5773                 c = getopt_long(argc, argv, "as:", long_options,
5774                                 &option_index);
5775                 if (c < 0)
5776                         break;
5777                 switch(c) {
5778                         case 'a': /* ignored */ break;
5779                         case 's':
5780                                 num = atol(optarg);
5781                                 bytenr = btrfs_sb_offset(num);
5782                                 printf("using SB copy %d, bytenr %llu\n", num,
5783                                        (unsigned long long)bytenr);
5784                                 break;
5785                         case '?':
5786                         case 'h':
5787                                 usage(cmd_check_usage);
5788                 }
5789                 if (option_index == 1) {
5790                         printf("enabling repair mode\n");
5791                         repair = 1;
5792                         rw = 1;
5793                 } else if (option_index == 2) {
5794                         printf("Creating a new CRC tree\n");
5795                         init_csum_tree = 1;
5796                         rw = 1;
5797                 } else if (option_index == 3) {
5798                         init_extent_tree = 1;
5799                         rw = 1;
5800                         repair = 1;
5801                 }
5802
5803         }
5804         argc = argc - optind;
5805
5806         if (argc != 1)
5807                 usage(cmd_check_usage);
5808
5809         radix_tree_init();
5810         cache_tree_init(&root_cache);
5811
5812         if((ret = check_mounted(argv[optind])) < 0) {
5813                 fprintf(stderr, "Could not check mount status: %s\n", strerror(-ret));
5814                 return ret;
5815         } else if(ret) {
5816                 fprintf(stderr, "%s is currently mounted. Aborting.\n", argv[optind]);
5817                 return -EBUSY;
5818         }
5819
5820         info = open_ctree_fs_info(argv[optind], bytenr, 0, rw, 1);
5821         if (!info) {
5822                 fprintf(stderr, "Couldn't open file system\n");
5823                 return -EIO;
5824         }
5825
5826         uuid_unparse(info->super_copy->fsid, uuidbuf);
5827         printf("Checking filesystem on %s\nUUID: %s\n", argv[optind], uuidbuf);
5828
5829         if (!extent_buffer_uptodate(info->tree_root->node) ||
5830             !extent_buffer_uptodate(info->dev_root->node) ||
5831             !extent_buffer_uptodate(info->extent_root->node) ||
5832             !extent_buffer_uptodate(info->chunk_root->node)) {
5833                 fprintf(stderr, "Critical roots corrupted, unable to fsck the FS\n");
5834                 return -EIO;
5835         }
5836
5837         root = info->fs_root;
5838
5839         if (init_extent_tree) {
5840                 printf("Creating a new extent tree\n");
5841                 ret = reinit_extent_tree(info);
5842                 if (ret)
5843                         return ret;
5844         }
5845         fprintf(stderr, "checking extents\n");
5846         if (init_csum_tree) {
5847                 struct btrfs_trans_handle *trans;
5848
5849                 fprintf(stderr, "Reinit crc root\n");
5850                 trans = btrfs_start_transaction(info->csum_root, 1);
5851                 if (IS_ERR(trans)) {
5852                         fprintf(stderr, "Error starting transaction\n");
5853                         return PTR_ERR(trans);
5854                 }
5855
5856                 ret = btrfs_fsck_reinit_root(trans, info->csum_root, 0);
5857                 if (ret) {
5858                         fprintf(stderr, "crc root initialization failed\n");
5859                         return -EIO;
5860                 }
5861
5862                 ret = btrfs_commit_transaction(trans, info->csum_root);
5863                 if (ret)
5864                         exit(1);
5865                 goto out;
5866         }
5867         ret = check_chunks_and_extents(root, repair);
5868         if (ret)
5869                 fprintf(stderr, "Errors found in extent allocation tree or chunk allocation\n");
5870
5871         fprintf(stderr, "checking free space cache\n");
5872         ret = check_space_cache(root);
5873         if (ret)
5874                 goto out;
5875
5876         fprintf(stderr, "checking fs roots\n");
5877         ret = check_fs_roots(root, &root_cache);
5878         if (ret)
5879                 goto out;
5880
5881         fprintf(stderr, "checking csums\n");
5882         ret = check_csums(root);
5883         if (ret)
5884                 goto out;
5885
5886         fprintf(stderr, "checking root refs\n");
5887         ret = check_root_refs(root, &root_cache);
5888 out:
5889         free_root_recs_tree(&root_cache);
5890         close_ctree(root);
5891
5892         if (found_old_backref) { /*
5893                  * there was a disk format change when mixed
5894                  * backref was in testing tree. The old format
5895                  * existed about one week.
5896                  */
5897                 printf("\n * Found old mixed backref format. "
5898                        "The old format is not supported! *"
5899                        "\n * Please mount the FS in readonly mode, "
5900                        "backup data and re-format the FS. *\n\n");
5901                 ret = 1;
5902         }
5903         printf("found %llu bytes used err is %d\n",
5904                (unsigned long long)bytes_used, ret);
5905         printf("total csum bytes: %llu\n",(unsigned long long)total_csum_bytes);
5906         printf("total tree bytes: %llu\n",
5907                (unsigned long long)total_btree_bytes);
5908         printf("total fs tree bytes: %llu\n",
5909                (unsigned long long)total_fs_tree_bytes);
5910         printf("total extent tree bytes: %llu\n",
5911                (unsigned long long)total_extent_tree_bytes);
5912         printf("btree space waste bytes: %llu\n",
5913                (unsigned long long)btree_space_waste);
5914         printf("file data blocks allocated: %llu\n referenced %llu\n",
5915                 (unsigned long long)data_bytes_allocated,
5916                 (unsigned long long)data_bytes_referenced);
5917         printf("%s\n", BTRFS_BUILD_VERSION);
5918         return ret;
5919 }