2 * Copyright (C) 2013 FUJITSU LIMITED. All rights reserved.
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public
6 * License v2 as published by the Free Software Foundation.
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11 * General Public License for more details.
13 * You should have received a copy of the GNU General Public
14 * License along with this program; if not, write to the
15 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
16 * Boston, MA 021110-1307, USA.
19 #include "kerncompat.h"
20 #include "androidcompat.h"
23 #include <stdio_ext.h>
25 #include <sys/types.h>
29 #include <uuid/uuid.h>
33 #include "radix-tree.h"
35 #include "extent-cache.h"
38 #include "transaction.h"
44 struct recover_control {
52 u64 chunk_root_generation;
54 struct btrfs_fs_devices *fs_devices;
56 struct cache_tree chunk;
57 struct block_group_tree bg;
58 struct device_extent_tree devext;
59 struct cache_tree eb_cache;
61 struct list_head good_chunks;
62 struct list_head bad_chunks;
63 struct list_head rebuild_chunks;
64 struct list_head unrepaired_chunks;
65 pthread_mutex_t rc_lock;
68 struct extent_record {
69 struct cache_extent cache;
71 u8 csum[BTRFS_CSUM_SIZE];
72 struct btrfs_device *devices[BTRFS_MAX_MIRRORS];
73 u64 offsets[BTRFS_MAX_MIRRORS];
78 struct recover_control *rc;
79 struct btrfs_device *dev;
84 static struct extent_record *btrfs_new_extent_record(struct extent_buffer *eb)
86 struct extent_record *rec;
88 rec = calloc(1, sizeof(*rec));
90 fprintf(stderr, "Fail to allocate memory for extent record.\n");
94 rec->cache.start = btrfs_header_bytenr(eb);
95 rec->cache.size = eb->len;
96 rec->generation = btrfs_header_generation(eb);
97 read_extent_buffer(eb, rec->csum, (unsigned long)btrfs_header_csum(eb),
102 static int process_extent_buffer(struct cache_tree *eb_cache,
103 struct extent_buffer *eb,
104 struct btrfs_device *device, u64 offset)
106 struct extent_record *rec;
107 struct extent_record *exist;
108 struct cache_extent *cache;
111 rec = btrfs_new_extent_record(eb);
112 if (!rec->cache.size)
115 cache = lookup_cache_extent(eb_cache,
119 exist = container_of(cache, struct extent_record, cache);
121 if (exist->generation > rec->generation)
123 if (exist->generation == rec->generation) {
124 if (exist->cache.start != rec->cache.start ||
125 exist->cache.size != rec->cache.size ||
126 memcmp(exist->csum, rec->csum, BTRFS_CSUM_SIZE)) {
129 BUG_ON(exist->nmirrors >= BTRFS_MAX_MIRRORS);
130 exist->devices[exist->nmirrors] = device;
131 exist->offsets[exist->nmirrors] = offset;
136 remove_cache_extent(eb_cache, cache);
141 rec->devices[0] = device;
142 rec->offsets[0] = offset;
144 ret = insert_cache_extent(eb_cache, &rec->cache);
153 static void free_extent_record(struct cache_extent *cache)
155 struct extent_record *er;
157 er = container_of(cache, struct extent_record, cache);
161 FREE_EXTENT_CACHE_BASED_TREE(extent_record, free_extent_record);
163 static struct btrfs_chunk *create_chunk_item(struct chunk_record *record)
165 struct btrfs_chunk *ret;
166 struct btrfs_stripe *chunk_stripe;
169 if (!record || record->num_stripes == 0)
171 ret = malloc(btrfs_chunk_item_size(record->num_stripes));
174 btrfs_set_stack_chunk_length(ret, record->length);
175 btrfs_set_stack_chunk_owner(ret, record->owner);
176 btrfs_set_stack_chunk_stripe_len(ret, record->stripe_len);
177 btrfs_set_stack_chunk_type(ret, record->type_flags);
178 btrfs_set_stack_chunk_io_align(ret, record->io_align);
179 btrfs_set_stack_chunk_io_width(ret, record->io_width);
180 btrfs_set_stack_chunk_sector_size(ret, record->sector_size);
181 btrfs_set_stack_chunk_num_stripes(ret, record->num_stripes);
182 btrfs_set_stack_chunk_sub_stripes(ret, record->sub_stripes);
183 for (i = 0, chunk_stripe = &ret->stripe; i < record->num_stripes;
184 i++, chunk_stripe++) {
185 btrfs_set_stack_stripe_devid(chunk_stripe,
186 record->stripes[i].devid);
187 btrfs_set_stack_stripe_offset(chunk_stripe,
188 record->stripes[i].offset);
189 memcpy(chunk_stripe->dev_uuid, record->stripes[i].dev_uuid,
195 static void init_recover_control(struct recover_control *rc, int verbose,
198 memset(rc, 0, sizeof(struct recover_control));
199 cache_tree_init(&rc->chunk);
200 cache_tree_init(&rc->eb_cache);
201 block_group_tree_init(&rc->bg);
202 device_extent_tree_init(&rc->devext);
204 INIT_LIST_HEAD(&rc->good_chunks);
205 INIT_LIST_HEAD(&rc->bad_chunks);
206 INIT_LIST_HEAD(&rc->rebuild_chunks);
207 INIT_LIST_HEAD(&rc->unrepaired_chunks);
209 rc->verbose = verbose;
211 pthread_mutex_init(&rc->rc_lock, NULL);
214 static void free_recover_control(struct recover_control *rc)
216 free_block_group_tree(&rc->bg);
217 free_chunk_cache_tree(&rc->chunk);
218 free_device_extent_tree(&rc->devext);
219 free_extent_record_tree(&rc->eb_cache);
220 pthread_mutex_destroy(&rc->rc_lock);
223 static int process_block_group_item(struct block_group_tree *bg_cache,
224 struct extent_buffer *leaf,
225 struct btrfs_key *key, int slot)
227 struct block_group_record *rec;
228 struct block_group_record *exist;
229 struct cache_extent *cache;
232 rec = btrfs_new_block_group_record(leaf, key, slot);
233 if (!rec->cache.size)
236 cache = lookup_cache_extent(&bg_cache->tree,
240 exist = container_of(cache, struct block_group_record, cache);
242 /*check the generation and replace if needed*/
243 if (exist->generation > rec->generation)
245 if (exist->generation == rec->generation) {
246 int offset = offsetof(struct block_group_record,
249 * According to the current kernel code, the following
250 * case is impossble, or there is something wrong in
253 if (memcmp(((void *)exist) + offset,
254 ((void *)rec) + offset,
255 sizeof(*rec) - offset))
259 remove_cache_extent(&bg_cache->tree, cache);
260 list_del_init(&exist->list);
263 * We must do search again to avoid the following cache.
264 * /--old bg 1--//--old bg 2--/
270 ret = insert_block_group_record(bg_cache, rec);
279 static int process_chunk_item(struct cache_tree *chunk_cache,
280 struct extent_buffer *leaf, struct btrfs_key *key,
283 struct chunk_record *rec;
284 struct chunk_record *exist;
285 struct cache_extent *cache;
288 rec = btrfs_new_chunk_record(leaf, key, slot);
289 if (!rec->cache.size)
292 cache = lookup_cache_extent(chunk_cache, rec->offset, rec->length);
294 exist = container_of(cache, struct chunk_record, cache);
296 if (exist->generation > rec->generation)
298 if (exist->generation == rec->generation) {
299 int num_stripes = rec->num_stripes;
300 int rec_size = btrfs_chunk_record_size(num_stripes);
301 int offset = offsetof(struct chunk_record, generation);
303 if (exist->num_stripes != rec->num_stripes ||
304 memcmp(((void *)exist) + offset,
305 ((void *)rec) + offset,
310 remove_cache_extent(chunk_cache, cache);
314 ret = insert_cache_extent(chunk_cache, &rec->cache);
323 static int process_device_extent_item(struct device_extent_tree *devext_cache,
324 struct extent_buffer *leaf,
325 struct btrfs_key *key, int slot)
327 struct device_extent_record *rec;
328 struct device_extent_record *exist;
329 struct cache_extent *cache;
332 rec = btrfs_new_device_extent_record(leaf, key, slot);
333 if (!rec->cache.size)
336 cache = lookup_cache_extent2(&devext_cache->tree,
341 exist = container_of(cache, struct device_extent_record, cache);
342 if (exist->generation > rec->generation)
344 if (exist->generation == rec->generation) {
345 int offset = offsetof(struct device_extent_record,
347 if (memcmp(((void *)exist) + offset,
348 ((void *)rec) + offset,
349 sizeof(*rec) - offset))
353 remove_cache_extent(&devext_cache->tree, cache);
354 list_del_init(&exist->chunk_list);
355 list_del_init(&exist->device_list);
360 ret = insert_device_extent_record(devext_cache, rec);
369 static void print_block_group_info(struct block_group_record *rec, char *prefix)
372 printf("%s", prefix);
373 printf("Block Group: start = %llu, len = %llu, flag = %llx\n",
374 rec->objectid, rec->offset, rec->flags);
377 static void print_block_group_tree(struct block_group_tree *tree)
379 struct cache_extent *cache;
380 struct block_group_record *rec;
382 printf("All Block Groups:\n");
383 for (cache = first_cache_extent(&tree->tree); cache;
384 cache = next_cache_extent(cache)) {
385 rec = container_of(cache, struct block_group_record, cache);
386 print_block_group_info(rec, "\t");
391 static void print_stripe_info(struct stripe *data, char *prefix1, char *prefix2,
395 printf("%s", prefix1);
397 printf("%s", prefix2);
398 printf("[%2d] Stripe: devid = %llu, offset = %llu\n",
399 index, data->devid, data->offset);
402 static void print_chunk_self_info(struct chunk_record *rec, char *prefix)
407 printf("%s", prefix);
408 printf("Chunk: start = %llu, len = %llu, type = %llx, num_stripes = %u\n",
409 rec->offset, rec->length, rec->type_flags, rec->num_stripes);
411 printf("%s", prefix);
412 printf(" Stripes list:\n");
413 for (i = 0; i < rec->num_stripes; i++)
414 print_stripe_info(&rec->stripes[i], prefix, " ", i);
417 static void print_chunk_tree(struct cache_tree *tree)
419 struct cache_extent *n;
420 struct chunk_record *entry;
422 printf("All Chunks:\n");
423 for (n = first_cache_extent(tree); n;
424 n = next_cache_extent(n)) {
425 entry = container_of(n, struct chunk_record, cache);
426 print_chunk_self_info(entry, "\t");
431 static void print_device_extent_info(struct device_extent_record *rec,
435 printf("%s", prefix);
436 printf("Device extent: devid = %llu, start = %llu, len = %llu, chunk offset = %llu\n",
437 rec->objectid, rec->offset, rec->length, rec->chunk_offset);
440 static void print_device_extent_tree(struct device_extent_tree *tree)
442 struct cache_extent *n;
443 struct device_extent_record *entry;
445 printf("All Device Extents:\n");
446 for (n = first_cache_extent(&tree->tree); n;
447 n = next_cache_extent(n)) {
448 entry = container_of(n, struct device_extent_record, cache);
449 print_device_extent_info(entry, "\t");
454 static void print_device_info(struct btrfs_device *device, char *prefix)
457 printf("%s", prefix);
458 printf("Device: id = %llu, name = %s\n",
459 device->devid, device->name);
462 static void print_all_devices(struct list_head *devices)
464 struct btrfs_device *dev;
466 printf("All Devices:\n");
467 list_for_each_entry(dev, devices, dev_list)
468 print_device_info(dev, "\t");
472 static void print_scan_result(struct recover_control *rc)
477 printf("DEVICE SCAN RESULT:\n");
478 printf("Filesystem Information:\n");
479 printf("\tsectorsize: %d\n", rc->sectorsize);
480 printf("\tleafsize: %d\n", rc->leafsize);
481 printf("\ttree root generation: %llu\n", rc->generation);
482 printf("\tchunk root generation: %llu\n", rc->chunk_root_generation);
485 print_all_devices(&rc->fs_devices->devices);
486 print_block_group_tree(&rc->bg);
487 print_chunk_tree(&rc->chunk);
488 print_device_extent_tree(&rc->devext);
491 static void print_chunk_info(struct chunk_record *chunk, char *prefix)
493 struct device_extent_record *devext;
496 print_chunk_self_info(chunk, prefix);
498 printf("%s", prefix);
500 print_block_group_info(chunk->bg_rec, " ");
502 printf(" No block group.\n");
504 printf("%s", prefix);
505 if (list_empty(&chunk->dextents)) {
506 printf(" No device extent.\n");
508 printf(" Device extent list:\n");
510 list_for_each_entry(devext, &chunk->dextents, chunk_list) {
512 printf("%s", prefix);
513 printf("%s[%2d]", " ", i);
514 print_device_extent_info(devext, NULL);
520 static void print_check_result(struct recover_control *rc)
522 struct chunk_record *chunk;
523 struct block_group_record *bg;
524 struct device_extent_record *devext;
532 printf("CHECK RESULT:\n");
533 printf("Recoverable Chunks:\n");
534 list_for_each_entry(chunk, &rc->good_chunks, list) {
535 print_chunk_info(chunk, " ");
539 list_for_each_entry(chunk, &rc->rebuild_chunks, list) {
540 print_chunk_info(chunk, " ");
544 list_for_each_entry(chunk, &rc->unrepaired_chunks, list) {
545 print_chunk_info(chunk, " ");
549 printf("Unrecoverable Chunks:\n");
550 list_for_each_entry(chunk, &rc->bad_chunks, list) {
551 print_chunk_info(chunk, " ");
556 printf("Total Chunks:\t\t%d\n", total);
557 printf(" Recoverable:\t\t%d\n", good);
558 printf(" Unrecoverable:\t%d\n", bad);
561 printf("Orphan Block Groups:\n");
562 list_for_each_entry(bg, &rc->bg.block_groups, list)
563 print_block_group_info(bg, " ");
566 printf("Orphan Device Extents:\n");
567 list_for_each_entry(devext, &rc->devext.no_chunk_orphans, chunk_list)
568 print_device_extent_info(devext, " ");
572 static int check_chunk_by_metadata(struct recover_control *rc,
573 struct btrfs_root *root,
574 struct chunk_record *chunk, int bg_only)
579 struct btrfs_path path;
580 struct btrfs_key key;
581 struct btrfs_root *dev_root;
582 struct stripe *stripe;
583 struct btrfs_dev_extent *dev_extent;
584 struct btrfs_block_group_item *bg_ptr;
585 struct extent_buffer *l;
587 btrfs_init_path(&path);
592 dev_root = root->fs_info->dev_root;
593 for (i = 0; i < chunk->num_stripes; i++) {
594 stripe = &chunk->stripes[i];
596 key.objectid = stripe->devid;
597 key.offset = stripe->offset;
598 key.type = BTRFS_DEV_EXTENT_KEY;
600 ret = btrfs_search_slot(NULL, dev_root, &key, &path, 0, 0);
602 fprintf(stderr, "Search device extent failed(%d)\n",
604 btrfs_release_path(&path);
606 } else if (ret > 0) {
609 "No device extent[%llu, %llu]\n",
610 stripe->devid, stripe->offset);
611 btrfs_release_path(&path);
615 slot = path.slots[0];
616 dev_extent = btrfs_item_ptr(l, slot, struct btrfs_dev_extent);
618 btrfs_dev_extent_chunk_offset(l, dev_extent)) {
621 "Device tree unmatch with chunks dev_extent[%llu, %llu], chunk[%llu, %llu]\n",
622 btrfs_dev_extent_chunk_offset(l,
624 btrfs_dev_extent_length(l, dev_extent),
625 chunk->offset, chunk->length);
626 btrfs_release_path(&path);
629 btrfs_release_path(&path);
633 key.objectid = chunk->offset;
634 key.type = BTRFS_BLOCK_GROUP_ITEM_KEY;
635 key.offset = chunk->length;
637 ret = btrfs_search_slot(NULL, root->fs_info->extent_root, &key, &path,
640 fprintf(stderr, "Search block group failed(%d)\n", ret);
641 btrfs_release_path(&path);
643 } else if (ret > 0) {
645 fprintf(stderr, "No block group[%llu, %llu]\n",
646 key.objectid, key.offset);
647 btrfs_release_path(&path);
652 slot = path.slots[0];
653 bg_ptr = btrfs_item_ptr(l, slot, struct btrfs_block_group_item);
654 if (chunk->type_flags != btrfs_disk_block_group_flags(l, bg_ptr)) {
657 "Chunk[%llu, %llu]'s type(%llu) is differemt with Block Group's type(%llu)\n",
658 chunk->offset, chunk->length, chunk->type_flags,
659 btrfs_disk_block_group_flags(l, bg_ptr));
660 btrfs_release_path(&path);
663 btrfs_release_path(&path);
667 static int check_all_chunks_by_metadata(struct recover_control *rc,
668 struct btrfs_root *root)
670 struct chunk_record *chunk;
671 struct chunk_record *next;
672 LIST_HEAD(orphan_chunks);
676 list_for_each_entry_safe(chunk, next, &rc->good_chunks, list) {
677 err = check_chunk_by_metadata(rc, root, chunk, 0);
680 list_move_tail(&chunk->list, &orphan_chunks);
681 else if (err && !ret)
686 list_for_each_entry_safe(chunk, next, &rc->unrepaired_chunks, list) {
687 err = check_chunk_by_metadata(rc, root, chunk, 1);
689 list_move_tail(&chunk->list, &orphan_chunks);
690 else if (err && !ret)
694 list_for_each_entry(chunk, &rc->bad_chunks, list) {
695 err = check_chunk_by_metadata(rc, root, chunk, 1);
696 if (err != -ENOENT && !ret)
697 ret = err ? err : -EINVAL;
699 list_splice(&orphan_chunks, &rc->bad_chunks);
703 static int extract_metadata_record(struct recover_control *rc,
704 struct extent_buffer *leaf)
706 struct btrfs_key key;
711 nritems = btrfs_header_nritems(leaf);
712 for (i = 0; i < nritems; i++) {
713 btrfs_item_key_to_cpu(leaf, &key, i);
715 case BTRFS_BLOCK_GROUP_ITEM_KEY:
716 pthread_mutex_lock(&rc->rc_lock);
717 ret = process_block_group_item(&rc->bg, leaf, &key, i);
718 pthread_mutex_unlock(&rc->rc_lock);
720 case BTRFS_CHUNK_ITEM_KEY:
721 pthread_mutex_lock(&rc->rc_lock);
722 ret = process_chunk_item(&rc->chunk, leaf, &key, i);
723 pthread_mutex_unlock(&rc->rc_lock);
725 case BTRFS_DEV_EXTENT_KEY:
726 pthread_mutex_lock(&rc->rc_lock);
727 ret = process_device_extent_item(&rc->devext, leaf,
729 pthread_mutex_unlock(&rc->rc_lock);
738 static inline int is_super_block_address(u64 offset)
742 for (i = 0; i < BTRFS_SUPER_MIRROR_MAX; i++) {
743 if (offset == btrfs_sb_offset(i))
749 static int scan_one_device(void *dev_scan_struct)
751 struct extent_buffer *buf;
754 struct device_scan *dev_scan = (struct device_scan *)dev_scan_struct;
755 struct recover_control *rc = dev_scan->rc;
756 struct btrfs_device *device = dev_scan->dev;
757 int fd = dev_scan->fd;
760 ret = pthread_setcanceltype(PTHREAD_CANCEL_ASYNCHRONOUS, &oldtype);
764 buf = malloc(sizeof(*buf) + rc->leafsize);
767 buf->len = rc->leafsize;
771 dev_scan->bytenr = bytenr;
773 if (is_super_block_address(bytenr))
774 bytenr += rc->sectorsize;
776 if (pread64(fd, buf->data, rc->leafsize, bytenr) <
780 if (memcmp_extent_buffer(buf, rc->fs_devices->fsid,
783 bytenr += rc->sectorsize;
787 if (verify_tree_block_csum_silent(buf, rc->csum_size)) {
788 bytenr += rc->sectorsize;
792 pthread_mutex_lock(&rc->rc_lock);
793 ret = process_extent_buffer(&rc->eb_cache, buf, device, bytenr);
794 pthread_mutex_unlock(&rc->rc_lock);
798 if (btrfs_header_level(buf) != 0)
801 switch (btrfs_header_owner(buf)) {
802 case BTRFS_EXTENT_TREE_OBJECTID:
803 case BTRFS_DEV_TREE_OBJECTID:
804 /* different tree use different generation */
805 if (btrfs_header_generation(buf) > rc->generation)
807 ret = extract_metadata_record(rc, buf);
811 case BTRFS_CHUNK_TREE_OBJECTID:
812 if (btrfs_header_generation(buf) >
813 rc->chunk_root_generation)
815 ret = extract_metadata_record(rc, buf);
821 bytenr += rc->leafsize;
829 static int scan_devices(struct recover_control *rc)
833 struct btrfs_device *dev;
834 struct device_scan *dev_scans;
842 list_for_each_entry(dev, &rc->fs_devices->devices, dev_list)
844 dev_scans = (struct device_scan *)malloc(sizeof(struct device_scan)
848 t_scans = (pthread_t *)malloc(sizeof(pthread_t) * devnr);
851 t_rets = (long *)malloc(sizeof(long) * devnr);
855 list_for_each_entry(dev, &rc->fs_devices->devices, dev_list) {
856 fd = open(dev->name, O_RDONLY);
858 fprintf(stderr, "Failed to open device %s\n",
863 dev_scans[devidx].rc = rc;
864 dev_scans[devidx].dev = dev;
865 dev_scans[devidx].fd = fd;
866 dev_scans[devidx].bytenr = -1;
870 for (i = 0; i < devidx; i++) {
871 ret = pthread_create(&t_scans[i], NULL,
872 (void *)scan_one_device,
873 (void *)&dev_scans[i]);
877 dev_scans[i].bytenr = 0;
882 for (i = 0; i < devidx; i++) {
883 if (dev_scans[i].bytenr == -1)
885 ret = pthread_tryjoin_np(t_scans[i],
886 (void **)&t_rets[i]);
891 if (ret || t_rets[i]) {
895 dev_scans[i].bytenr = -1;
898 printf("\rScanning: ");
899 for (i = 0; i < devidx; i++) {
900 if (dev_scans[i].bytenr == -1)
901 printf("%sDONE in dev%d",
904 printf("%s%llu in dev%d",
905 i ? ", " : "", dev_scans[i].bytenr, i);
907 /* clear chars if exist in tail */
909 printf("\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b");
920 for (i = 0; i < devidx; i++) {
921 if (dev_scans[i].bytenr == -1)
923 pthread_cancel(t_scans[i]);
932 static int build_device_map_by_chunk_record(struct btrfs_root *root,
933 struct chunk_record *chunk)
938 u8 uuid[BTRFS_UUID_SIZE];
940 struct btrfs_mapping_tree *map_tree;
941 struct map_lookup *map;
942 struct stripe *stripe;
944 map_tree = &root->fs_info->mapping_tree;
945 num_stripes = chunk->num_stripes;
946 map = malloc(btrfs_map_lookup_size(num_stripes));
949 map->ce.start = chunk->offset;
950 map->ce.size = chunk->length;
951 map->num_stripes = num_stripes;
952 map->io_width = chunk->io_width;
953 map->io_align = chunk->io_align;
954 map->sector_size = chunk->sector_size;
955 map->stripe_len = chunk->stripe_len;
956 map->type = chunk->type_flags;
957 map->sub_stripes = chunk->sub_stripes;
959 for (i = 0, stripe = chunk->stripes; i < num_stripes; i++, stripe++) {
960 devid = stripe->devid;
961 memcpy(uuid, stripe->dev_uuid, BTRFS_UUID_SIZE);
962 map->stripes[i].physical = stripe->offset;
963 map->stripes[i].dev = btrfs_find_device(root, devid,
965 if (!map->stripes[i].dev) {
971 ret = insert_cache_extent(&map_tree->cache_tree, &map->ce);
975 static int build_device_maps_by_chunk_records(struct recover_control *rc,
976 struct btrfs_root *root)
979 struct chunk_record *chunk;
981 list_for_each_entry(chunk, &rc->good_chunks, list) {
982 ret = build_device_map_by_chunk_record(root, chunk);
986 list_for_each_entry(chunk, &rc->rebuild_chunks, list) {
987 ret = build_device_map_by_chunk_record(root, chunk);
994 static int block_group_remove_all_extent_items(struct btrfs_trans_handle *trans,
995 struct btrfs_root *root,
996 struct block_group_record *bg)
998 struct btrfs_fs_info *fs_info = root->fs_info;
999 struct btrfs_key key;
1000 struct btrfs_path path;
1001 struct extent_buffer *leaf;
1002 u64 start = bg->objectid;
1003 u64 end = bg->objectid + bg->offset;
1010 btrfs_init_path(&path);
1011 root = root->fs_info->extent_root;
1013 key.objectid = start;
1015 key.type = BTRFS_EXTENT_ITEM_KEY;
1017 ret = btrfs_search_slot(trans, root, &key, &path, -1, 1);
1023 leaf = path.nodes[0];
1024 nitems = btrfs_header_nritems(leaf);
1026 /* The tree is empty. */
1031 if (path.slots[0] >= nitems) {
1032 ret = btrfs_next_leaf(root, &path);
1039 leaf = path.nodes[0];
1040 btrfs_item_key_to_cpu(leaf, &key, 0);
1041 if (key.objectid >= end)
1043 btrfs_release_path(&path);
1049 for (i = path.slots[0]; i < nitems; i++) {
1050 btrfs_item_key_to_cpu(leaf, &key, i);
1051 if (key.objectid >= end)
1054 if (key.type == BTRFS_BLOCK_GROUP_ITEM_KEY) {
1064 if (key.type == BTRFS_EXTENT_ITEM_KEY ||
1065 key.type == BTRFS_METADATA_ITEM_KEY) {
1066 old_val = btrfs_super_bytes_used(fs_info->super_copy);
1067 if (key.type == BTRFS_METADATA_ITEM_KEY)
1068 old_val += root->leafsize;
1070 old_val += key.offset;
1071 btrfs_set_super_bytes_used(fs_info->super_copy,
1077 ret = btrfs_del_items(trans, root, &path, del_s, del_nr);
1082 if (key.objectid < end) {
1083 if (key.type == BTRFS_BLOCK_GROUP_ITEM_KEY) {
1084 key.objectid += root->sectorsize;
1085 key.type = BTRFS_EXTENT_ITEM_KEY;
1088 btrfs_release_path(&path);
1092 btrfs_release_path(&path);
1096 static int block_group_free_all_extent(struct btrfs_root *root,
1097 struct block_group_record *bg)
1099 struct btrfs_block_group_cache *cache;
1100 struct btrfs_fs_info *info;
1104 info = root->fs_info;
1105 cache = btrfs_lookup_block_group(info, bg->objectid);
1109 start = cache->key.objectid;
1110 end = start + cache->key.offset - 1;
1112 set_extent_bits(&info->block_group_cache, start, end,
1113 BLOCK_GROUP_DIRTY, GFP_NOFS);
1114 set_extent_dirty(&info->free_space_cache, start, end, GFP_NOFS);
1116 btrfs_set_block_group_used(&cache->item, 0);
1121 static int remove_chunk_extent_item(struct btrfs_trans_handle *trans,
1122 struct recover_control *rc,
1123 struct btrfs_root *root)
1125 struct chunk_record *chunk;
1128 list_for_each_entry(chunk, &rc->good_chunks, list) {
1129 if (!(chunk->type_flags & BTRFS_BLOCK_GROUP_SYSTEM))
1131 ret = block_group_remove_all_extent_items(trans, root,
1136 ret = block_group_free_all_extent(root, chunk->bg_rec);
1143 static int __rebuild_chunk_root(struct btrfs_trans_handle *trans,
1144 struct recover_control *rc,
1145 struct btrfs_root *root)
1148 struct btrfs_device *dev;
1149 struct extent_buffer *cow;
1150 struct btrfs_disk_key disk_key;
1153 list_for_each_entry(dev, &rc->fs_devices->devices, dev_list) {
1154 if (min_devid > dev->devid)
1155 min_devid = dev->devid;
1157 disk_key.objectid = BTRFS_DEV_ITEMS_OBJECTID;
1158 disk_key.type = BTRFS_DEV_ITEM_KEY;
1159 disk_key.offset = min_devid;
1161 cow = btrfs_alloc_free_block(trans, root, root->nodesize,
1162 BTRFS_CHUNK_TREE_OBJECTID,
1163 &disk_key, 0, 0, 0);
1164 btrfs_set_header_bytenr(cow, cow->start);
1165 btrfs_set_header_generation(cow, trans->transid);
1166 btrfs_set_header_nritems(cow, 0);
1167 btrfs_set_header_level(cow, 0);
1168 btrfs_set_header_backref_rev(cow, BTRFS_MIXED_BACKREF_REV);
1169 btrfs_set_header_owner(cow, BTRFS_CHUNK_TREE_OBJECTID);
1170 write_extent_buffer(cow, root->fs_info->fsid,
1171 btrfs_header_fsid(), BTRFS_FSID_SIZE);
1173 write_extent_buffer(cow, root->fs_info->chunk_tree_uuid,
1174 btrfs_header_chunk_tree_uuid(cow),
1178 btrfs_mark_buffer_dirty(cow);
1183 static int __rebuild_device_items(struct btrfs_trans_handle *trans,
1184 struct recover_control *rc,
1185 struct btrfs_root *root)
1187 struct btrfs_device *dev;
1188 struct btrfs_key key;
1189 struct btrfs_dev_item *dev_item;
1192 dev_item = malloc(sizeof(struct btrfs_dev_item));
1196 list_for_each_entry(dev, &rc->fs_devices->devices, dev_list) {
1197 key.objectid = BTRFS_DEV_ITEMS_OBJECTID;
1198 key.type = BTRFS_DEV_ITEM_KEY;
1199 key.offset = dev->devid;
1201 btrfs_set_stack_device_generation(dev_item, 0);
1202 btrfs_set_stack_device_type(dev_item, dev->type);
1203 btrfs_set_stack_device_id(dev_item, dev->devid);
1204 btrfs_set_stack_device_total_bytes(dev_item, dev->total_bytes);
1205 btrfs_set_stack_device_bytes_used(dev_item, dev->bytes_used);
1206 btrfs_set_stack_device_io_align(dev_item, dev->io_align);
1207 btrfs_set_stack_device_io_width(dev_item, dev->io_width);
1208 btrfs_set_stack_device_sector_size(dev_item, dev->sector_size);
1209 memcpy(dev_item->uuid, dev->uuid, BTRFS_UUID_SIZE);
1210 memcpy(dev_item->fsid, dev->fs_devices->fsid, BTRFS_UUID_SIZE);
1212 ret = btrfs_insert_item(trans, root, &key,
1213 dev_item, sizeof(*dev_item));
1220 static int __insert_chunk_item(struct btrfs_trans_handle *trans,
1221 struct chunk_record *chunk_rec,
1222 struct btrfs_root *chunk_root)
1224 struct btrfs_key key;
1225 struct btrfs_chunk *chunk = NULL;
1228 chunk = create_chunk_item(chunk_rec);
1231 key.objectid = BTRFS_FIRST_CHUNK_TREE_OBJECTID;
1232 key.type = BTRFS_CHUNK_ITEM_KEY;
1233 key.offset = chunk_rec->offset;
1235 ret = btrfs_insert_item(trans, chunk_root, &key, chunk,
1236 btrfs_chunk_item_size(chunk->num_stripes));
1241 static int __rebuild_chunk_items(struct btrfs_trans_handle *trans,
1242 struct recover_control *rc,
1243 struct btrfs_root *root)
1245 struct btrfs_root *chunk_root;
1246 struct chunk_record *chunk_rec;
1249 chunk_root = root->fs_info->chunk_root;
1251 list_for_each_entry(chunk_rec, &rc->good_chunks, list) {
1252 ret = __insert_chunk_item(trans, chunk_rec, chunk_root);
1256 list_for_each_entry(chunk_rec, &rc->rebuild_chunks, list) {
1257 ret = __insert_chunk_item(trans, chunk_rec, chunk_root);
1264 static int rebuild_chunk_tree(struct btrfs_trans_handle *trans,
1265 struct recover_control *rc,
1266 struct btrfs_root *root)
1270 root = root->fs_info->chunk_root;
1272 ret = __rebuild_chunk_root(trans, rc, root);
1276 ret = __rebuild_device_items(trans, rc, root);
1280 ret = __rebuild_chunk_items(trans, rc, root);
1285 static int rebuild_sys_array(struct recover_control *rc,
1286 struct btrfs_root *root)
1288 struct btrfs_chunk *chunk;
1289 struct btrfs_key key;
1290 struct chunk_record *chunk_rec;
1294 btrfs_set_super_sys_array_size(root->fs_info->super_copy, 0);
1296 list_for_each_entry(chunk_rec, &rc->good_chunks, list) {
1297 if (!(chunk_rec->type_flags & BTRFS_BLOCK_GROUP_SYSTEM))
1300 num_stripes = chunk_rec->num_stripes;
1301 chunk = create_chunk_item(chunk_rec);
1307 key.objectid = BTRFS_FIRST_CHUNK_TREE_OBJECTID;
1308 key.type = BTRFS_CHUNK_ITEM_KEY;
1309 key.offset = chunk_rec->offset;
1311 ret = btrfs_add_system_chunk(NULL, root, &key, chunk,
1312 btrfs_chunk_item_size(num_stripes));
1321 static int calculate_bg_used(struct btrfs_root *extent_root,
1322 struct chunk_record *chunk_rec,
1323 struct btrfs_path *path,
1326 struct extent_buffer *node;
1327 struct btrfs_key found_key;
1333 node = path->nodes[0];
1334 slot = path->slots[0];
1335 btrfs_item_key_to_cpu(node, &found_key, slot);
1336 if (found_key.objectid >= chunk_rec->offset + chunk_rec->length)
1338 if (found_key.type != BTRFS_METADATA_ITEM_KEY &&
1339 found_key.type != BTRFS_EXTENT_DATA_KEY)
1341 if (found_key.type == BTRFS_METADATA_ITEM_KEY)
1342 used_ret += extent_root->nodesize;
1344 used_ret += found_key.offset;
1346 if (slot + 1 < btrfs_header_nritems(node)) {
1349 ret = btrfs_next_leaf(extent_root, path);
1363 static int __insert_block_group(struct btrfs_trans_handle *trans,
1364 struct chunk_record *chunk_rec,
1365 struct btrfs_root *extent_root,
1368 struct btrfs_block_group_item bg_item;
1369 struct btrfs_key key;
1372 btrfs_set_block_group_used(&bg_item, used);
1373 btrfs_set_block_group_chunk_objectid(&bg_item, used);
1374 btrfs_set_block_group_flags(&bg_item, chunk_rec->type_flags);
1375 key.objectid = chunk_rec->offset;
1376 key.type = BTRFS_BLOCK_GROUP_ITEM_KEY;
1377 key.offset = chunk_rec->length;
1379 ret = btrfs_insert_item(trans, extent_root, &key, &bg_item,
1385 * Search through the extent tree to rebuild the 'used' member of the block
1387 * However, since block group and extent item shares the extent tree,
1388 * the extent item may also missing.
1389 * In that case, we fill the 'used' with the length of the block group to
1390 * ensure no write into the block group.
1391 * Btrfsck will hate it but we will inform user to call '--init-extent-tree'
1392 * if possible, or just salvage as much data as possible from the fs.
1394 static int rebuild_block_group(struct btrfs_trans_handle *trans,
1395 struct recover_control *rc,
1396 struct btrfs_root *root)
1398 struct chunk_record *chunk_rec;
1399 struct btrfs_key search_key;
1400 struct btrfs_path *path;
1404 if (list_empty(&rc->rebuild_chunks))
1407 path = btrfs_alloc_path();
1410 list_for_each_entry(chunk_rec, &rc->rebuild_chunks, list) {
1411 search_key.objectid = chunk_rec->offset;
1412 search_key.type = BTRFS_EXTENT_ITEM_KEY;
1413 search_key.offset = 0;
1414 ret = btrfs_search_slot(NULL, root->fs_info->extent_root,
1415 &search_key, path, 0, 0);
1418 ret = calculate_bg_used(root->fs_info->extent_root,
1419 chunk_rec, path, &used);
1421 * Extent tree is damaged, better to rebuild the whole extent
1422 * tree. Currently, change the used to chunk's len to prevent
1423 * write/block reserve happening in that block group.
1427 "Fail to search extent tree for block group: [%llu,%llu]\n",
1429 chunk_rec->offset + chunk_rec->length);
1431 "Mark the block group full to prevent block rsv problems\n");
1432 used = chunk_rec->length;
1434 btrfs_release_path(path);
1435 ret = __insert_block_group(trans, chunk_rec,
1436 root->fs_info->extent_root,
1442 btrfs_free_path(path);
1446 static struct btrfs_root *
1447 open_ctree_with_broken_chunk(struct recover_control *rc)
1449 struct btrfs_fs_info *fs_info;
1450 struct btrfs_super_block *disk_super;
1451 struct extent_buffer *eb;
1458 fs_info = btrfs_new_fs_info(1, BTRFS_SUPER_INFO_OFFSET);
1460 fprintf(stderr, "Failed to allocate memory for fs_info\n");
1461 return ERR_PTR(-ENOMEM);
1463 fs_info->is_chunk_recover = 1;
1465 fs_info->fs_devices = rc->fs_devices;
1466 ret = btrfs_open_devices(fs_info->fs_devices, O_RDWR);
1470 disk_super = fs_info->super_copy;
1471 ret = btrfs_read_dev_super(fs_info->fs_devices->latest_bdev,
1472 disk_super, fs_info->super_bytenr, 1);
1474 fprintf(stderr, "No valid btrfs found\n");
1478 memcpy(fs_info->fsid, &disk_super->fsid, BTRFS_FSID_SIZE);
1480 ret = btrfs_check_fs_compatibility(disk_super, 1);
1484 nodesize = btrfs_super_nodesize(disk_super);
1485 leafsize = btrfs_super_leafsize(disk_super);
1486 sectorsize = btrfs_super_sectorsize(disk_super);
1487 stripesize = btrfs_super_stripesize(disk_super);
1489 __setup_root(nodesize, leafsize, sectorsize, stripesize,
1490 fs_info->chunk_root, fs_info, BTRFS_CHUNK_TREE_OBJECTID);
1492 ret = build_device_maps_by_chunk_records(rc, fs_info->chunk_root);
1496 ret = btrfs_setup_all_roots(fs_info, 0, 0);
1500 eb = fs_info->tree_root->node;
1501 read_extent_buffer(eb, fs_info->chunk_tree_uuid,
1502 btrfs_header_chunk_tree_uuid(eb),
1505 return fs_info->fs_root;
1507 btrfs_release_all_roots(fs_info);
1509 btrfs_cleanup_all_caches(fs_info);
1511 btrfs_close_devices(fs_info->fs_devices);
1513 btrfs_free_fs_info(fs_info);
1514 return ERR_PTR(ret);
1517 static int recover_prepare(struct recover_control *rc, char *path)
1521 struct btrfs_super_block *sb;
1522 struct btrfs_fs_devices *fs_devices;
1525 fd = open(path, O_RDONLY);
1527 fprintf(stderr, "open %s\n error.\n", path);
1531 sb = malloc(BTRFS_SUPER_INFO_SIZE);
1533 fprintf(stderr, "allocating memory for sb failed.\n");
1538 ret = btrfs_read_dev_super(fd, sb, BTRFS_SUPER_INFO_OFFSET, 1);
1540 fprintf(stderr, "read super block error\n");
1544 rc->sectorsize = btrfs_super_sectorsize(sb);
1545 rc->leafsize = btrfs_super_leafsize(sb);
1546 rc->generation = btrfs_super_generation(sb);
1547 rc->chunk_root_generation = btrfs_super_chunk_root_generation(sb);
1548 rc->csum_size = btrfs_super_csum_size(sb);
1550 /* if seed, the result of scanning below will be partial */
1551 if (btrfs_super_flags(sb) & BTRFS_SUPER_FLAG_SEEDING) {
1552 fprintf(stderr, "this device is seed device\n");
1557 ret = btrfs_scan_fs_devices(fd, path, &fs_devices, 0, 1, 0);
1561 rc->fs_devices = fs_devices;
1564 print_all_devices(&rc->fs_devices->devices);
1573 static int btrfs_get_device_extents(u64 chunk_object,
1574 struct list_head *orphan_devexts,
1575 struct list_head *ret_list)
1577 struct device_extent_record *devext;
1578 struct device_extent_record *next;
1581 list_for_each_entry_safe(devext, next, orphan_devexts, chunk_list) {
1582 if (devext->chunk_offset == chunk_object) {
1583 list_move_tail(&devext->chunk_list, ret_list);
1590 static int calc_num_stripes(u64 type)
1592 if (type & (BTRFS_BLOCK_GROUP_RAID0 |
1593 BTRFS_BLOCK_GROUP_RAID10 |
1594 BTRFS_BLOCK_GROUP_RAID5 |
1595 BTRFS_BLOCK_GROUP_RAID6))
1597 else if (type & (BTRFS_BLOCK_GROUP_RAID1 |
1598 BTRFS_BLOCK_GROUP_DUP))
1604 static inline int calc_sub_nstripes(u64 type)
1606 if (type & BTRFS_BLOCK_GROUP_RAID10)
1612 static int btrfs_verify_device_extents(struct block_group_record *bg,
1613 struct list_head *devexts, int ndevexts)
1615 struct device_extent_record *devext;
1617 int expected_num_stripes;
1619 expected_num_stripes = calc_num_stripes(bg->flags);
1620 if (expected_num_stripes && expected_num_stripes != ndevexts)
1623 strpie_length = calc_stripe_length(bg->flags, bg->offset, ndevexts);
1624 list_for_each_entry(devext, devexts, chunk_list) {
1625 if (devext->length != strpie_length)
1631 static int btrfs_rebuild_unordered_chunk_stripes(struct recover_control *rc,
1632 struct chunk_record *chunk)
1634 struct device_extent_record *devext;
1635 struct btrfs_device *device;
1638 devext = list_first_entry(&chunk->dextents, struct device_extent_record,
1640 for (i = 0; i < chunk->num_stripes; i++) {
1641 chunk->stripes[i].devid = devext->objectid;
1642 chunk->stripes[i].offset = devext->offset;
1643 device = btrfs_find_device_by_devid(rc->fs_devices,
1648 BUG_ON(btrfs_find_device_by_devid(rc->fs_devices,
1651 memcpy(chunk->stripes[i].dev_uuid, device->uuid,
1653 devext = list_next_entry(devext, chunk_list);
1658 static int btrfs_calc_stripe_index(struct chunk_record *chunk, u64 logical)
1660 u64 offset = logical - chunk->offset;
1662 int nr_data_stripes;
1665 stripe_nr = offset / chunk->stripe_len;
1666 if (chunk->type_flags & BTRFS_BLOCK_GROUP_RAID0) {
1667 index = stripe_nr % chunk->num_stripes;
1668 } else if (chunk->type_flags & BTRFS_BLOCK_GROUP_RAID10) {
1669 index = stripe_nr % (chunk->num_stripes / chunk->sub_stripes);
1670 index *= chunk->sub_stripes;
1671 } else if (chunk->type_flags & BTRFS_BLOCK_GROUP_RAID5) {
1672 nr_data_stripes = chunk->num_stripes - 1;
1673 index = stripe_nr % nr_data_stripes;
1674 stripe_nr /= nr_data_stripes;
1675 index = (index + stripe_nr) % chunk->num_stripes;
1676 } else if (chunk->type_flags & BTRFS_BLOCK_GROUP_RAID6) {
1677 nr_data_stripes = chunk->num_stripes - 2;
1678 index = stripe_nr % nr_data_stripes;
1679 stripe_nr /= nr_data_stripes;
1680 index = (index + stripe_nr) % chunk->num_stripes;
1687 /* calc the logical offset which is the start of the next stripe. */
1688 static inline u64 btrfs_next_stripe_logical_offset(struct chunk_record *chunk,
1691 u64 offset = logical - chunk->offset;
1693 offset /= chunk->stripe_len;
1694 offset *= chunk->stripe_len;
1695 offset += chunk->stripe_len;
1697 return offset + chunk->offset;
1700 static int is_extent_record_in_device_extent(struct extent_record *er,
1701 struct device_extent_record *dext,
1706 for (i = 0; i < er->nmirrors; i++) {
1707 if (er->devices[i]->devid == dext->objectid &&
1708 er->offsets[i] >= dext->offset &&
1709 er->offsets[i] < dext->offset + dext->length) {
1718 btrfs_rebuild_ordered_meta_chunk_stripes(struct recover_control *rc,
1719 struct chunk_record *chunk)
1721 u64 start = chunk->offset;
1722 u64 end = chunk->offset + chunk->length;
1723 struct cache_extent *cache;
1724 struct extent_record *er;
1725 struct device_extent_record *devext;
1726 struct device_extent_record *next;
1727 struct btrfs_device *device;
1733 cache = lookup_cache_extent(&rc->eb_cache,
1734 start, chunk->length);
1736 /* No used space, we can reorder the stripes freely. */
1737 ret = btrfs_rebuild_unordered_chunk_stripes(rc, chunk);
1741 list_splice_init(&chunk->dextents, &devexts);
1743 er = container_of(cache, struct extent_record, cache);
1744 index = btrfs_calc_stripe_index(chunk, er->cache.start);
1745 BUG_ON(index == -1);
1746 if (chunk->stripes[index].devid)
1748 list_for_each_entry_safe(devext, next, &devexts, chunk_list) {
1749 if (is_extent_record_in_device_extent(er, devext, &mirror)) {
1750 chunk->stripes[index].devid = devext->objectid;
1751 chunk->stripes[index].offset = devext->offset;
1752 memcpy(chunk->stripes[index].dev_uuid,
1753 er->devices[mirror]->uuid,
1756 list_move(&devext->chunk_list, &chunk->dextents);
1760 start = btrfs_next_stripe_logical_offset(chunk, er->cache.start);
1762 goto no_extent_record;
1764 cache = lookup_cache_extent(&rc->eb_cache, start, end - start);
1768 if (list_empty(&devexts))
1771 if (chunk->type_flags & (BTRFS_BLOCK_GROUP_RAID5 |
1772 BTRFS_BLOCK_GROUP_RAID6)) {
1773 /* Fixme: try to recover the order by the parity block. */
1774 list_splice_tail(&devexts, &chunk->dextents);
1778 /* There is no data on the lost stripes, we can reorder them freely. */
1779 for (index = 0; index < chunk->num_stripes; index++) {
1780 if (chunk->stripes[index].devid)
1783 devext = list_first_entry(&devexts,
1784 struct device_extent_record,
1786 list_move(&devext->chunk_list, &chunk->dextents);
1788 chunk->stripes[index].devid = devext->objectid;
1789 chunk->stripes[index].offset = devext->offset;
1790 device = btrfs_find_device_by_devid(rc->fs_devices,
1794 list_splice_tail(&devexts, &chunk->dextents);
1797 BUG_ON(btrfs_find_device_by_devid(rc->fs_devices,
1800 memcpy(chunk->stripes[index].dev_uuid, device->uuid,
1806 #define BTRFS_ORDERED_RAID (BTRFS_BLOCK_GROUP_RAID0 | \
1807 BTRFS_BLOCK_GROUP_RAID10 | \
1808 BTRFS_BLOCK_GROUP_RAID5 | \
1809 BTRFS_BLOCK_GROUP_RAID6)
1811 static int btrfs_rebuild_chunk_stripes(struct recover_control *rc,
1812 struct chunk_record *chunk)
1817 * All the data in the system metadata chunk will be dropped,
1818 * so we need not guarantee that the data is right or not, that
1819 * is we can reorder the stripes in the system metadata chunk.
1821 if ((chunk->type_flags & BTRFS_BLOCK_GROUP_METADATA) &&
1822 (chunk->type_flags & BTRFS_ORDERED_RAID))
1823 ret =btrfs_rebuild_ordered_meta_chunk_stripes(rc, chunk);
1824 else if ((chunk->type_flags & BTRFS_BLOCK_GROUP_DATA) &&
1825 (chunk->type_flags & BTRFS_ORDERED_RAID))
1826 ret = 1; /* Be handled after the fs is opened. */
1828 ret = btrfs_rebuild_unordered_chunk_stripes(rc, chunk);
1833 static int next_csum(struct btrfs_root *root,
1834 struct extent_buffer **leaf,
1835 struct btrfs_path *path,
1840 struct btrfs_key *key)
1843 struct btrfs_root *csum_root = root->fs_info->csum_root;
1844 struct btrfs_csum_item *csum_item;
1845 u32 blocksize = root->sectorsize;
1846 u16 csum_size = btrfs_super_csum_size(root->fs_info->super_copy);
1847 int csums_in_item = btrfs_item_size_nr(*leaf, *slot) / csum_size;
1849 if (*csum_offset >= csums_in_item) {
1852 if (*slot >= btrfs_header_nritems(*leaf)) {
1853 ret = btrfs_next_leaf(csum_root, path);
1858 *leaf = path->nodes[0];
1859 *slot = path->slots[0];
1861 btrfs_item_key_to_cpu(*leaf, key, *slot);
1864 if (key->offset + (*csum_offset) * blocksize >= end)
1866 csum_item = btrfs_item_ptr(*leaf, *slot, struct btrfs_csum_item);
1867 csum_item = (struct btrfs_csum_item *)((unsigned char *)csum_item
1868 + (*csum_offset) * csum_size);
1869 read_extent_buffer(*leaf, tree_csum,
1870 (unsigned long)csum_item, csum_size);
1874 static u64 calc_data_offset(struct btrfs_key *key,
1875 struct chunk_record *chunk,
1881 int logical_stripe_nr;
1883 int nr_data_stripes;
1885 data_offset = key->offset + csum_offset * blocksize - chunk->offset;
1886 nr_data_stripes = chunk->num_stripes;
1888 if (chunk->type_flags & BTRFS_BLOCK_GROUP_RAID5)
1889 nr_data_stripes -= 1;
1890 else if (chunk->type_flags & BTRFS_BLOCK_GROUP_RAID6)
1891 nr_data_stripes -= 2;
1893 logical_stripe_nr = data_offset / chunk->stripe_len;
1894 dev_stripe_nr = logical_stripe_nr / nr_data_stripes;
1896 data_offset -= logical_stripe_nr * chunk->stripe_len;
1897 data_offset += dev_stripe_nr * chunk->stripe_len;
1899 return dev_offset + data_offset;
1902 static int check_one_csum(int fd, u64 start, u32 len, u32 tree_csum)
1906 u32 csum_result = ~(u32)0;
1911 ret = pread64(fd, data, len, start);
1912 if (ret < 0 || ret != len) {
1917 csum_result = btrfs_csum_data(NULL, data, csum_result, len);
1918 btrfs_csum_final(csum_result, (char *)&csum_result);
1919 if (csum_result != tree_csum)
1926 static u64 item_end_offset(struct btrfs_root *root, struct btrfs_key *key,
1927 struct extent_buffer *leaf, int slot) {
1928 u32 blocksize = root->sectorsize;
1929 u16 csum_size = btrfs_super_csum_size(root->fs_info->super_copy);
1931 u64 offset = btrfs_item_size_nr(leaf, slot);
1932 offset /= csum_size;
1933 offset *= blocksize;
1934 offset += key->offset;
1939 static int insert_stripe(struct list_head *devexts,
1940 struct recover_control *rc,
1941 struct chunk_record *chunk,
1943 struct device_extent_record *devext;
1944 struct btrfs_device *dev;
1946 devext = list_entry(devexts->next, struct device_extent_record,
1948 dev = btrfs_find_device_by_devid(rc->fs_devices, devext->objectid,
1952 BUG_ON(btrfs_find_device_by_devid(rc->fs_devices, devext->objectid,
1955 chunk->stripes[index].devid = devext->objectid;
1956 chunk->stripes[index].offset = devext->offset;
1957 memcpy(chunk->stripes[index].dev_uuid, dev->uuid, BTRFS_UUID_SIZE);
1959 list_move(&devext->chunk_list, &chunk->dextents);
1964 static inline int count_devext_records(struct list_head *record_list)
1966 int num_of_records = 0;
1967 struct device_extent_record *devext;
1969 list_for_each_entry(devext, record_list, chunk_list)
1972 return num_of_records;
1975 static int fill_chunk_up(struct chunk_record *chunk, struct list_head *devexts,
1976 struct recover_control *rc)
1981 for (i = 0; i < chunk->num_stripes; i++) {
1982 if (!chunk->stripes[i].devid) {
1983 ret = insert_stripe(devexts, rc, chunk, i);
1992 #define EQUAL_STRIPE (1 << 0)
1994 static int rebuild_raid_data_chunk_stripes(struct recover_control *rc,
1995 struct btrfs_root *root,
1996 struct chunk_record *chunk,
2002 struct btrfs_path path;
2003 struct btrfs_key prev_key;
2004 struct btrfs_key key;
2005 struct btrfs_root *csum_root;
2006 struct extent_buffer *leaf;
2007 struct device_extent_record *devext;
2008 struct device_extent_record *next;
2009 struct btrfs_device *dev;
2010 u64 start = chunk->offset;
2011 u64 end = start + chunk->stripe_len;
2012 u64 chunk_end = chunk->offset + chunk->length;
2013 u64 csum_offset = 0;
2015 u32 blocksize = root->sectorsize;
2018 int num_unordered = 0;
2019 LIST_HEAD(unordered);
2020 LIST_HEAD(candidates);
2022 csum_root = root->fs_info->csum_root;
2023 btrfs_init_path(&path);
2024 list_splice_init(&chunk->dextents, &candidates);
2026 if (list_is_last(candidates.next, &candidates))
2029 key.objectid = BTRFS_EXTENT_CSUM_OBJECTID;
2030 key.type = BTRFS_EXTENT_CSUM_KEY;
2033 ret = btrfs_search_slot(NULL, csum_root, &key, &path, 0, 0);
2035 fprintf(stderr, "Search csum failed(%d)\n", ret);
2038 leaf = path.nodes[0];
2039 slot = path.slots[0];
2041 if (slot >= btrfs_header_nritems(leaf)) {
2042 ret = btrfs_next_leaf(csum_root, &path);
2045 "Walk tree failed(%d)\n", ret);
2047 } else if (ret > 0) {
2048 slot = btrfs_header_nritems(leaf) - 1;
2049 btrfs_item_key_to_cpu(leaf, &key, slot);
2050 if (item_end_offset(root, &key, leaf, slot)
2052 csum_offset = start - key.offset;
2053 csum_offset /= blocksize;
2058 leaf = path.nodes[0];
2059 slot = path.slots[0];
2061 btrfs_item_key_to_cpu(leaf, &key, slot);
2062 ret = btrfs_previous_item(csum_root, &path, 0,
2063 BTRFS_EXTENT_CSUM_KEY);
2067 if (key.offset >= end)
2072 leaf = path.nodes[0];
2073 slot = path.slots[0];
2075 btrfs_item_key_to_cpu(leaf, &prev_key, slot);
2076 if (item_end_offset(root, &prev_key, leaf, slot) > start) {
2077 csum_offset = start - prev_key.offset;
2078 csum_offset /= blocksize;
2079 btrfs_item_key_to_cpu(leaf, &key, slot);
2081 if (key.offset >= end)
2085 if (key.offset + csum_offset * blocksize > chunk_end)
2089 ret = next_csum(root, &leaf, &path, &slot, &csum_offset, &tree_csum,
2092 fprintf(stderr, "Fetch csum failed\n");
2094 } else if (ret == 1) {
2095 if (!(*flags & EQUAL_STRIPE))
2096 *flags |= EQUAL_STRIPE;
2098 } else if (ret == 2)
2101 list_for_each_entry_safe(devext, next, &candidates, chunk_list) {
2102 data_offset = calc_data_offset(&key, chunk, devext->offset,
2103 csum_offset, blocksize);
2104 dev = btrfs_find_device_by_devid(rc->fs_devices,
2105 devext->objectid, 0);
2110 BUG_ON(btrfs_find_device_by_devid(rc->fs_devices,
2111 devext->objectid, 1));
2113 ret = check_one_csum(dev->fd, data_offset, blocksize,
2118 list_move(&devext->chunk_list, &unordered);
2121 if (list_empty(&candidates)) {
2122 num_unordered = count_devext_records(&unordered);
2123 if (chunk->type_flags & BTRFS_BLOCK_GROUP_RAID6
2124 && num_unordered == 2) {
2125 btrfs_release_path(&path);
2126 ret = fill_chunk_up(chunk, &unordered, rc);
2133 if (list_is_last(candidates.next, &candidates)) {
2134 index = btrfs_calc_stripe_index(chunk,
2135 key.offset + csum_offset * blocksize);
2136 BUG_ON(index == -1);
2137 if (chunk->stripes[index].devid)
2139 ret = insert_stripe(&candidates, rc, chunk, index);
2147 start = btrfs_next_stripe_logical_offset(chunk, start);
2148 end = min(start + chunk->stripe_len, chunk_end);
2149 list_splice_init(&unordered, &candidates);
2150 btrfs_release_path(&path);
2152 if (end < chunk_end)
2156 list_splice_init(&candidates, &unordered);
2157 num_unordered = count_devext_records(&unordered);
2158 if (num_unordered == 1) {
2159 for (i = 0; i < chunk->num_stripes; i++) {
2160 if (!chunk->stripes[i].devid) {
2165 ret = insert_stripe(&unordered, rc, chunk, index);
2169 if ((num_unordered == 2 && chunk->type_flags
2170 & BTRFS_BLOCK_GROUP_RAID5)
2171 || (num_unordered == 3 && chunk->type_flags
2172 & BTRFS_BLOCK_GROUP_RAID6)) {
2173 ret = fill_chunk_up(chunk, &unordered, rc);
2177 ret = !!ret || (list_empty(&unordered) ? 0 : 1);
2178 list_splice_init(&candidates, &chunk->dextents);
2179 list_splice_init(&unordered, &chunk->dextents);
2180 btrfs_release_path(&path);
2185 static int btrfs_rebuild_ordered_data_chunk_stripes(struct recover_control *rc,
2186 struct btrfs_root *root)
2188 struct chunk_record *chunk;
2189 struct chunk_record *next;
2194 list_for_each_entry_safe(chunk, next, &rc->unrepaired_chunks, list) {
2195 if ((chunk->type_flags & BTRFS_BLOCK_GROUP_DATA)
2196 && (chunk->type_flags & BTRFS_ORDERED_RAID)) {
2198 err = rebuild_raid_data_chunk_stripes(rc, root, chunk,
2201 list_move(&chunk->list, &rc->bad_chunks);
2202 if (flags & EQUAL_STRIPE)
2204 "Failure: too many equal stripes in chunk[%llu %llu]\n",
2205 chunk->offset, chunk->length);
2209 list_move(&chunk->list, &rc->good_chunks);
2215 static int btrfs_recover_chunks(struct recover_control *rc)
2217 struct chunk_record *chunk;
2218 struct block_group_record *bg;
2219 struct block_group_record *next;
2220 LIST_HEAD(new_chunks);
2225 /* create the chunk by block group */
2226 list_for_each_entry_safe(bg, next, &rc->bg.block_groups, list) {
2227 nstripes = btrfs_get_device_extents(bg->objectid,
2228 &rc->devext.no_chunk_orphans,
2230 chunk = calloc(1, btrfs_chunk_record_size(nstripes));
2233 INIT_LIST_HEAD(&chunk->dextents);
2235 chunk->cache.start = bg->objectid;
2236 chunk->cache.size = bg->offset;
2237 chunk->objectid = BTRFS_FIRST_CHUNK_TREE_OBJECTID;
2238 chunk->type = BTRFS_CHUNK_ITEM_KEY;
2239 chunk->offset = bg->objectid;
2240 chunk->generation = bg->generation;
2241 chunk->length = bg->offset;
2242 chunk->owner = BTRFS_CHUNK_TREE_OBJECTID;
2243 chunk->stripe_len = BTRFS_STRIPE_LEN;
2244 chunk->type_flags = bg->flags;
2245 chunk->io_width = BTRFS_STRIPE_LEN;
2246 chunk->io_align = BTRFS_STRIPE_LEN;
2247 chunk->sector_size = rc->sectorsize;
2248 chunk->sub_stripes = calc_sub_nstripes(bg->flags);
2250 ret = insert_cache_extent(&rc->chunk, &chunk->cache);
2253 list_del_init(&bg->list);
2255 list_add_tail(&chunk->list, &rc->bad_chunks);
2259 list_splice_init(&devexts, &chunk->dextents);
2261 ret = btrfs_verify_device_extents(bg, &devexts, nstripes);
2263 list_add_tail(&chunk->list, &rc->bad_chunks);
2267 chunk->num_stripes = nstripes;
2268 ret = btrfs_rebuild_chunk_stripes(rc, chunk);
2270 list_add_tail(&chunk->list, &rc->unrepaired_chunks);
2272 list_add_tail(&chunk->list, &rc->bad_chunks);
2274 list_add_tail(&chunk->list, &rc->good_chunks);
2277 * Don't worry about the lost orphan device extents, they don't
2278 * have its chunk and block group, they must be the old ones that
2284 static inline int is_chunk_overlap(struct chunk_record *chunk1,
2285 struct chunk_record *chunk2)
2287 if (chunk1->offset >= chunk2->offset + chunk2->length ||
2288 chunk1->offset + chunk1->length <= chunk2->offset)
2293 /* Move invalid(overlap with good chunks) rebuild chunks to bad chunk list */
2294 static void validate_rebuild_chunks(struct recover_control *rc)
2296 struct chunk_record *good;
2297 struct chunk_record *rebuild;
2298 struct chunk_record *tmp;
2300 list_for_each_entry_safe(rebuild, tmp, &rc->rebuild_chunks, list) {
2301 list_for_each_entry(good, &rc->good_chunks, list) {
2302 if (is_chunk_overlap(rebuild, good)) {
2303 list_move_tail(&rebuild->list,
2312 * Return 0 when successful, < 0 on error and > 0 if aborted by user
2314 int btrfs_recover_chunk_tree(char *path, int verbose, int yes)
2317 struct btrfs_root *root = NULL;
2318 struct btrfs_trans_handle *trans;
2319 struct recover_control rc;
2321 init_recover_control(&rc, verbose, yes);
2323 ret = recover_prepare(&rc, path);
2325 fprintf(stderr, "recover prepare error\n");
2329 ret = scan_devices(&rc);
2331 fprintf(stderr, "scan chunk headers error\n");
2335 if (cache_tree_empty(&rc.chunk) &&
2336 cache_tree_empty(&rc.bg.tree) &&
2337 cache_tree_empty(&rc.devext.tree)) {
2338 fprintf(stderr, "no recoverable chunk\n");
2342 print_scan_result(&rc);
2344 ret = check_chunks(&rc.chunk, &rc.bg, &rc.devext, &rc.good_chunks,
2345 &rc.bad_chunks, &rc.rebuild_chunks, 1);
2347 if (!list_empty(&rc.bg.block_groups) ||
2348 !list_empty(&rc.devext.no_chunk_orphans)) {
2349 ret = btrfs_recover_chunks(&rc);
2354 print_check_result(&rc);
2355 printf("Check chunks successfully with no orphans\n");
2358 validate_rebuild_chunks(&rc);
2359 print_check_result(&rc);
2361 root = open_ctree_with_broken_chunk(&rc);
2363 fprintf(stderr, "open with broken chunk error\n");
2364 ret = PTR_ERR(root);
2368 ret = check_all_chunks_by_metadata(&rc, root);
2370 fprintf(stderr, "The chunks in memory can not match the metadata of the fs. Repair failed.\n");
2371 goto fail_close_ctree;
2374 ret = btrfs_rebuild_ordered_data_chunk_stripes(&rc, root);
2376 fprintf(stderr, "Failed to rebuild ordered chunk stripes.\n");
2377 goto fail_close_ctree;
2381 ret = ask_user("We are going to rebuild the chunk tree on disk, it might destroy the old metadata on the disk, Are you sure?");
2384 goto fail_close_ctree;
2388 trans = btrfs_start_transaction(root, 1);
2389 ret = remove_chunk_extent_item(trans, &rc, root);
2392 ret = rebuild_chunk_tree(trans, &rc, root);
2395 ret = rebuild_sys_array(&rc, root);
2398 ret = rebuild_block_group(trans, &rc, root);
2400 printf("Fail to rebuild block groups.\n");
2401 printf("Recommend to run 'btrfs check --init-extent-tree <dev>' after recovery\n");
2404 btrfs_commit_transaction(trans, root);
2408 free_recover_control(&rc);