2 * Copyright (C) 2008 Oracle. All rights reserved.
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public
6 * License v2 as published by the Free Software Foundation.
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11 * General Public License for more details.
13 * You should have received a copy of the GNU General Public
14 * License along with this program; if not, write to the
15 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
16 * Boston, MA 021110-1307, USA.
22 #include <sys/types.h>
30 #include "kerncompat.h"
34 #include "transaction.h"
37 #include "extent_io.h"
40 #define HEADER_MAGIC 0xbd5c25e27295668bULL
41 #define MAX_PENDING_SIZE (256 * 1024)
42 #define BLOCK_SIZE 1024
43 #define BLOCK_MASK (BLOCK_SIZE - 1)
45 #define COMPRESS_NONE 0
46 #define COMPRESS_ZLIB 1
48 #define MAX_WORKER_THREADS (32)
50 struct meta_cluster_item {
53 } __attribute__ ((__packed__));
55 struct meta_cluster_header {
60 } __attribute__ ((__packed__));
62 /* cluster header + index items + buffers */
64 struct meta_cluster_header header;
65 struct meta_cluster_item items[];
66 } __attribute__ ((__packed__));
68 #define ITEMS_PER_CLUSTER ((BLOCK_SIZE - sizeof(struct meta_cluster)) / \
69 sizeof(struct meta_cluster_item))
75 * physical_dup only store additonal physical for BTRFS_BLOCK_GROUP_DUP
76 * currently restore only support single and DUP
77 * TODO: modify this structure and the function related to this
78 * structure for support RAID*
84 struct list_head list;
88 struct list_head list;
89 struct list_head ordered;
97 struct metadump_struct {
98 struct btrfs_root *root;
102 struct meta_cluster cluster;
103 char meta_cluster_bytes[BLOCK_SIZE];
106 pthread_t threads[MAX_WORKER_THREADS];
108 pthread_mutex_t mutex;
110 struct rb_root name_tree;
112 struct list_head list;
113 struct list_head ordered;
135 struct mdrestore_struct {
139 pthread_t threads[MAX_WORKER_THREADS];
141 pthread_mutex_t mutex;
144 struct rb_root chunk_tree;
145 struct rb_root physical_tree;
146 struct list_head list;
147 struct list_head overlapping_chunks;
152 u64 last_physical_offset;
153 u8 uuid[BTRFS_UUID_SIZE];
154 u8 fsid[BTRFS_FSID_SIZE];
162 int clear_space_cache;
163 struct btrfs_fs_info *info;
166 static int search_for_chunk_blocks(struct mdrestore_struct *mdres,
167 u64 search, u64 cluster_bytenr);
168 static struct extent_buffer *alloc_dummy_eb(u64 bytenr, u32 size);
170 static void csum_block(u8 *buf, size_t len)
172 u8 result[BTRFS_CRC32_SIZE];
174 crc = crc32c(crc, buf + BTRFS_CSUM_SIZE, len - BTRFS_CSUM_SIZE);
175 btrfs_csum_final(crc, result);
176 memcpy(buf, result, BTRFS_CRC32_SIZE);
179 static int has_name(struct btrfs_key *key)
182 case BTRFS_DIR_ITEM_KEY:
183 case BTRFS_DIR_INDEX_KEY:
184 case BTRFS_INODE_REF_KEY:
185 case BTRFS_INODE_EXTREF_KEY:
186 case BTRFS_XATTR_ITEM_KEY:
195 static char *generate_garbage(u32 name_len)
197 char *buf = malloc(name_len);
203 for (i = 0; i < name_len; i++) {
204 char c = rand_range(94) + 33;
214 static int name_cmp(struct rb_node *a, struct rb_node *b, int fuzz)
216 struct name *entry = rb_entry(a, struct name, n);
217 struct name *ins = rb_entry(b, struct name, n);
220 len = min(ins->len, entry->len);
221 return memcmp(ins->val, entry->val, len);
224 static int chunk_cmp(struct rb_node *a, struct rb_node *b, int fuzz)
226 struct fs_chunk *entry = rb_entry(a, struct fs_chunk, l);
227 struct fs_chunk *ins = rb_entry(b, struct fs_chunk, l);
229 if (fuzz && ins->logical >= entry->logical &&
230 ins->logical < entry->logical + entry->bytes)
233 if (ins->logical < entry->logical)
235 else if (ins->logical > entry->logical)
240 static int physical_cmp(struct rb_node *a, struct rb_node *b, int fuzz)
242 struct fs_chunk *entry = rb_entry(a, struct fs_chunk, p);
243 struct fs_chunk *ins = rb_entry(b, struct fs_chunk, p);
245 if (fuzz && ins->physical >= entry->physical &&
246 ins->physical < entry->physical + entry->bytes)
249 if (fuzz && entry->physical >= ins->physical &&
250 entry->physical < ins->physical + ins->bytes)
253 if (ins->physical < entry->physical)
255 else if (ins->physical > entry->physical)
260 static void tree_insert(struct rb_root *root, struct rb_node *ins,
261 int (*cmp)(struct rb_node *a, struct rb_node *b,
264 struct rb_node ** p = &root->rb_node;
265 struct rb_node * parent = NULL;
271 dir = cmp(*p, ins, 1);
280 rb_link_node(ins, parent, p);
281 rb_insert_color(ins, root);
284 static struct rb_node *tree_search(struct rb_root *root,
285 struct rb_node *search,
286 int (*cmp)(struct rb_node *a,
287 struct rb_node *b, int fuzz),
290 struct rb_node *n = root->rb_node;
294 dir = cmp(n, search, fuzz);
306 static u64 logical_to_physical(struct mdrestore_struct *mdres, u64 logical,
307 u64 *size, u64 *physical_dup)
309 struct fs_chunk *fs_chunk;
310 struct rb_node *entry;
311 struct fs_chunk search;
314 if (logical == BTRFS_SUPER_INFO_OFFSET)
317 search.logical = logical;
318 entry = tree_search(&mdres->chunk_tree, &search.l, chunk_cmp, 1);
320 if (mdres->in != stdin)
321 warning("cannot find a chunk, using logical");
324 fs_chunk = rb_entry(entry, struct fs_chunk, l);
325 if (fs_chunk->logical > logical || fs_chunk->logical + fs_chunk->bytes < logical)
327 offset = search.logical - fs_chunk->logical;
330 /* Only in dup case, physical_dup is not equal to 0 */
331 if (fs_chunk->physical_dup)
332 *physical_dup = fs_chunk->physical_dup + offset;
337 *size = min(*size, fs_chunk->bytes + fs_chunk->logical - logical);
338 return fs_chunk->physical + offset;
342 static char *find_collision(struct metadump_struct *md, char *name,
346 struct rb_node *entry;
348 unsigned long checksum;
354 entry = tree_search(&md->name_tree, &tmp.n, name_cmp, 0);
356 val = rb_entry(entry, struct name, n);
361 val = malloc(sizeof(struct name));
363 error("cannot sanitize name, not enough memory");
368 memset(val, 0, sizeof(*val));
372 val->sub = malloc(name_len);
374 error("cannot sanitize name, not enough memory");
380 checksum = crc32c(~1, val->val, name_len);
381 memset(val->sub, ' ', name_len);
384 if (crc32c(~1, val->sub, name_len) == checksum &&
385 memcmp(val->sub, val->val, val->len)) {
390 if (val->sub[i] == 127) {
395 } while (val->sub[i] == 127);
400 if (val->sub[i] == '/')
402 memset(val->sub, ' ', i);
407 if (val->sub[i] == '/')
414 "cannot find a hash collision for '%.*s', generating garbage, it won't match indexes",
416 for (i = 0; i < name_len; i++) {
417 char c = rand_range(94) + 33;
425 tree_insert(&md->name_tree, &val->n, name_cmp);
429 static void sanitize_dir_item(struct metadump_struct *md, struct extent_buffer *eb,
432 struct btrfs_dir_item *dir_item;
435 unsigned long name_ptr;
440 int free_garbage = (md->sanitize_names == 1);
442 dir_item = btrfs_item_ptr(eb, slot, struct btrfs_dir_item);
443 total_len = btrfs_item_size_nr(eb, slot);
444 while (cur < total_len) {
445 this_len = sizeof(*dir_item) +
446 btrfs_dir_name_len(eb, dir_item) +
447 btrfs_dir_data_len(eb, dir_item);
448 name_ptr = (unsigned long)(dir_item + 1);
449 name_len = btrfs_dir_name_len(eb, dir_item);
451 if (md->sanitize_names > 1) {
452 buf = malloc(name_len);
454 error("cannot sanitize name, not enough memory");
457 read_extent_buffer(eb, buf, name_ptr, name_len);
458 garbage = find_collision(md, buf, name_len);
460 garbage = generate_garbage(name_len);
463 error("cannot sanitize name, not enough memory");
466 write_extent_buffer(eb, garbage, name_ptr, name_len);
468 dir_item = (struct btrfs_dir_item *)((char *)dir_item +
475 static void sanitize_inode_ref(struct metadump_struct *md,
476 struct extent_buffer *eb, int slot, int ext)
478 struct btrfs_inode_extref *extref;
479 struct btrfs_inode_ref *ref;
482 unsigned long name_ptr;
486 int free_garbage = (md->sanitize_names == 1);
488 item_size = btrfs_item_size_nr(eb, slot);
489 ptr = btrfs_item_ptr_offset(eb, slot);
490 while (cur_offset < item_size) {
492 extref = (struct btrfs_inode_extref *)(ptr +
494 name_ptr = (unsigned long)(&extref->name);
495 len = btrfs_inode_extref_name_len(eb, extref);
496 cur_offset += sizeof(*extref);
498 ref = (struct btrfs_inode_ref *)(ptr + cur_offset);
499 len = btrfs_inode_ref_name_len(eb, ref);
500 name_ptr = (unsigned long)(ref + 1);
501 cur_offset += sizeof(*ref);
505 if (md->sanitize_names > 1) {
508 error("cannot sanitize name, not enough memory");
511 read_extent_buffer(eb, buf, name_ptr, len);
512 garbage = find_collision(md, buf, len);
514 garbage = generate_garbage(len);
518 error("cannot sanitize name, not enough memory");
521 write_extent_buffer(eb, garbage, name_ptr, len);
527 static void sanitize_xattr(struct metadump_struct *md,
528 struct extent_buffer *eb, int slot)
530 struct btrfs_dir_item *dir_item;
531 unsigned long data_ptr;
534 dir_item = btrfs_item_ptr(eb, slot, struct btrfs_dir_item);
535 data_len = btrfs_dir_data_len(eb, dir_item);
537 data_ptr = (unsigned long)((char *)(dir_item + 1) +
538 btrfs_dir_name_len(eb, dir_item));
539 memset_extent_buffer(eb, 0, data_ptr, data_len);
542 static void sanitize_name(struct metadump_struct *md, u8 *dst,
543 struct extent_buffer *src, struct btrfs_key *key,
546 struct extent_buffer *eb;
548 eb = alloc_dummy_eb(src->start, src->len);
550 error("cannot sanitize name, not enough memory");
554 memcpy(eb->data, src->data, src->len);
557 case BTRFS_DIR_ITEM_KEY:
558 case BTRFS_DIR_INDEX_KEY:
559 sanitize_dir_item(md, eb, slot);
561 case BTRFS_INODE_REF_KEY:
562 sanitize_inode_ref(md, eb, slot, 0);
564 case BTRFS_INODE_EXTREF_KEY:
565 sanitize_inode_ref(md, eb, slot, 1);
567 case BTRFS_XATTR_ITEM_KEY:
568 sanitize_xattr(md, eb, slot);
574 memcpy(dst, eb->data, eb->len);
579 * zero inline extents and csum items
581 static void zero_items(struct metadump_struct *md, u8 *dst,
582 struct extent_buffer *src)
584 struct btrfs_file_extent_item *fi;
585 struct btrfs_item *item;
586 struct btrfs_key key;
587 u32 nritems = btrfs_header_nritems(src);
592 for (i = 0; i < nritems; i++) {
593 item = btrfs_item_nr(i);
594 btrfs_item_key_to_cpu(src, &key, i);
595 if (key.type == BTRFS_CSUM_ITEM_KEY) {
596 size = btrfs_item_size_nr(src, i);
597 memset(dst + btrfs_leaf_data(src) +
598 btrfs_item_offset_nr(src, i), 0, size);
602 if (md->sanitize_names && has_name(&key)) {
603 sanitize_name(md, dst, src, &key, i);
607 if (key.type != BTRFS_EXTENT_DATA_KEY)
610 fi = btrfs_item_ptr(src, i, struct btrfs_file_extent_item);
611 extent_type = btrfs_file_extent_type(src, fi);
612 if (extent_type != BTRFS_FILE_EXTENT_INLINE)
615 ptr = btrfs_file_extent_inline_start(fi);
616 size = btrfs_file_extent_inline_item_len(src, item);
617 memset(dst + ptr, 0, size);
622 * copy buffer and zero useless data in the buffer
624 static void copy_buffer(struct metadump_struct *md, u8 *dst,
625 struct extent_buffer *src)
631 memcpy(dst, src->data, src->len);
632 if (src->start == BTRFS_SUPER_INFO_OFFSET)
635 level = btrfs_header_level(src);
636 nritems = btrfs_header_nritems(src);
639 size = sizeof(struct btrfs_header);
640 memset(dst + size, 0, src->len - size);
641 } else if (level == 0) {
642 size = btrfs_leaf_data(src) +
643 btrfs_item_offset_nr(src, nritems - 1) -
644 btrfs_item_nr_offset(nritems);
645 memset(dst + btrfs_item_nr_offset(nritems), 0, size);
646 zero_items(md, dst, src);
648 size = offsetof(struct btrfs_node, ptrs) +
649 sizeof(struct btrfs_key_ptr) * nritems;
650 memset(dst + size, 0, src->len - size);
652 csum_block(dst, src->len);
655 static void *dump_worker(void *data)
657 struct metadump_struct *md = (struct metadump_struct *)data;
658 struct async_work *async;
662 pthread_mutex_lock(&md->mutex);
663 while (list_empty(&md->list)) {
665 pthread_mutex_unlock(&md->mutex);
668 pthread_cond_wait(&md->cond, &md->mutex);
670 async = list_entry(md->list.next, struct async_work, list);
671 list_del_init(&async->list);
672 pthread_mutex_unlock(&md->mutex);
674 if (md->compress_level > 0) {
675 u8 *orig = async->buffer;
677 async->bufsize = compressBound(async->size);
678 async->buffer = malloc(async->bufsize);
679 if (!async->buffer) {
680 error("not enough memory for async buffer");
681 pthread_mutex_lock(&md->mutex);
684 pthread_mutex_unlock(&md->mutex);
688 ret = compress2(async->buffer,
689 (unsigned long *)&async->bufsize,
690 orig, async->size, md->compress_level);
698 pthread_mutex_lock(&md->mutex);
700 pthread_mutex_unlock(&md->mutex);
706 static void meta_cluster_init(struct metadump_struct *md, u64 start)
708 struct meta_cluster_header *header;
712 header = &md->cluster.header;
713 header->magic = cpu_to_le64(HEADER_MAGIC);
714 header->bytenr = cpu_to_le64(start);
715 header->nritems = cpu_to_le32(0);
716 header->compress = md->compress_level > 0 ?
717 COMPRESS_ZLIB : COMPRESS_NONE;
720 static void metadump_destroy(struct metadump_struct *md, int num_threads)
725 pthread_mutex_lock(&md->mutex);
727 pthread_cond_broadcast(&md->cond);
728 pthread_mutex_unlock(&md->mutex);
730 for (i = 0; i < num_threads; i++)
731 pthread_join(md->threads[i], NULL);
733 pthread_cond_destroy(&md->cond);
734 pthread_mutex_destroy(&md->mutex);
736 while ((n = rb_first(&md->name_tree))) {
739 name = rb_entry(n, struct name, n);
740 rb_erase(n, &md->name_tree);
747 static int metadump_init(struct metadump_struct *md, struct btrfs_root *root,
748 FILE *out, int num_threads, int compress_level,
753 memset(md, 0, sizeof(*md));
754 INIT_LIST_HEAD(&md->list);
755 INIT_LIST_HEAD(&md->ordered);
758 md->pending_start = (u64)-1;
759 md->compress_level = compress_level;
760 md->sanitize_names = sanitize_names;
761 if (sanitize_names > 1)
762 crc32c_optimization_init();
764 md->name_tree.rb_node = NULL;
765 md->num_threads = num_threads;
766 pthread_cond_init(&md->cond, NULL);
767 pthread_mutex_init(&md->mutex, NULL);
768 meta_cluster_init(md, 0);
773 for (i = 0; i < num_threads; i++) {
774 ret = pthread_create(md->threads + i, NULL, dump_worker, md);
780 metadump_destroy(md, i + 1);
785 static int write_zero(FILE *out, size_t size)
787 static char zero[BLOCK_SIZE];
788 return fwrite(zero, size, 1, out);
791 static int write_buffers(struct metadump_struct *md, u64 *next)
793 struct meta_cluster_header *header = &md->cluster.header;
794 struct meta_cluster_item *item;
795 struct async_work *async;
801 if (list_empty(&md->ordered))
804 /* wait until all buffers are compressed */
805 while (!err && md->num_items > md->num_ready) {
806 struct timespec ts = {
810 pthread_mutex_unlock(&md->mutex);
811 nanosleep(&ts, NULL);
812 pthread_mutex_lock(&md->mutex);
817 error("one of the threads failed: %s", strerror(-err));
821 /* setup and write index block */
822 list_for_each_entry(async, &md->ordered, ordered) {
823 item = &md->cluster.items[nritems];
824 item->bytenr = cpu_to_le64(async->start);
825 item->size = cpu_to_le32(async->bufsize);
828 header->nritems = cpu_to_le32(nritems);
830 ret = fwrite(&md->cluster, BLOCK_SIZE, 1, md->out);
832 error("unable to write out cluster: %s", strerror(errno));
837 bytenr += le64_to_cpu(header->bytenr) + BLOCK_SIZE;
838 while (!list_empty(&md->ordered)) {
839 async = list_entry(md->ordered.next, struct async_work,
841 list_del_init(&async->ordered);
843 bytenr += async->bufsize;
845 ret = fwrite(async->buffer, async->bufsize, 1,
848 error("unable to write out cluster: %s",
858 /* zero unused space in the last block */
859 if (!err && bytenr & BLOCK_MASK) {
860 size_t size = BLOCK_SIZE - (bytenr & BLOCK_MASK);
863 ret = write_zero(md->out, size);
865 error("unable to zero out buffer: %s",
875 static int read_data_extent(struct metadump_struct *md,
876 struct async_work *async)
878 struct btrfs_root *root = md->root;
879 u64 bytes_left = async->size;
880 u64 logical = async->start;
887 num_copies = btrfs_num_copies(&root->fs_info->mapping_tree, logical,
890 /* Try our best to read data, just like read_tree_block() */
891 for (cur_mirror = 0; cur_mirror < num_copies; cur_mirror++) {
893 read_len = bytes_left;
894 ret = read_extent_data(root,
895 (char *)(async->buffer + offset),
896 logical, &read_len, cur_mirror);
901 bytes_left -= read_len;
909 static int get_dev_fd(struct btrfs_root *root)
911 struct btrfs_device *dev;
913 dev = list_first_entry(&root->fs_info->fs_devices->devices,
914 struct btrfs_device, dev_list);
918 static int flush_pending(struct metadump_struct *md, int done)
920 struct async_work *async = NULL;
921 struct extent_buffer *eb;
922 u64 blocksize = md->root->nodesize;
928 if (md->pending_size) {
929 async = calloc(1, sizeof(*async));
933 async->start = md->pending_start;
934 async->size = md->pending_size;
935 async->bufsize = async->size;
936 async->buffer = malloc(async->bufsize);
937 if (!async->buffer) {
942 start = async->start;
946 ret = read_data_extent(md, async);
955 * Balance can make the mapping not cover the super block, so
956 * just copy directly from one of the devices.
958 if (start == BTRFS_SUPER_INFO_OFFSET) {
959 int fd = get_dev_fd(md->root);
961 ret = pread64(fd, async->buffer, size, start);
965 error("unable to read superblock at %llu: %s",
966 (unsigned long long)start,
974 while (!md->data && size > 0) {
975 u64 this_read = min(blocksize, size);
976 eb = read_tree_block(md->root, start, this_read, 0);
977 if (!extent_buffer_uptodate(eb)) {
980 error("unable to read metadata block %llu",
981 (unsigned long long)start);
984 copy_buffer(md, async->buffer + offset, eb);
985 free_extent_buffer(eb);
991 md->pending_start = (u64)-1;
992 md->pending_size = 0;
997 pthread_mutex_lock(&md->mutex);
999 list_add_tail(&async->ordered, &md->ordered);
1001 if (md->compress_level > 0) {
1002 list_add_tail(&async->list, &md->list);
1003 pthread_cond_signal(&md->cond);
1008 if (md->num_items >= ITEMS_PER_CLUSTER || done) {
1009 ret = write_buffers(md, &start);
1011 error("unable to write buffers: %s", strerror(-ret));
1013 meta_cluster_init(md, start);
1015 pthread_mutex_unlock(&md->mutex);
1019 static int add_extent(u64 start, u64 size, struct metadump_struct *md,
1023 if (md->data != data ||
1024 md->pending_size + size > MAX_PENDING_SIZE ||
1025 md->pending_start + md->pending_size != start) {
1026 ret = flush_pending(md, 0);
1029 md->pending_start = start;
1031 readahead_tree_block(md->root, start, size, 0);
1032 md->pending_size += size;
1037 #ifdef BTRFS_COMPAT_EXTENT_TREE_V0
1038 static int is_tree_block(struct btrfs_root *extent_root,
1039 struct btrfs_path *path, u64 bytenr)
1041 struct extent_buffer *leaf;
1042 struct btrfs_key key;
1046 leaf = path->nodes[0];
1048 struct btrfs_extent_ref_v0 *ref_item;
1050 if (path->slots[0] >= btrfs_header_nritems(leaf)) {
1051 ret = btrfs_next_leaf(extent_root, path);
1056 leaf = path->nodes[0];
1058 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
1059 if (key.objectid != bytenr)
1061 if (key.type != BTRFS_EXTENT_REF_V0_KEY)
1063 ref_item = btrfs_item_ptr(leaf, path->slots[0],
1064 struct btrfs_extent_ref_v0);
1065 ref_objectid = btrfs_ref_objectid_v0(leaf, ref_item);
1066 if (ref_objectid < BTRFS_FIRST_FREE_OBJECTID)
1074 static int copy_tree_blocks(struct btrfs_root *root, struct extent_buffer *eb,
1075 struct metadump_struct *metadump, int root_tree)
1077 struct extent_buffer *tmp;
1078 struct btrfs_root_item *ri;
1079 struct btrfs_key key;
1086 ret = add_extent(btrfs_header_bytenr(eb), root->nodesize, metadump, 0);
1088 error("unable to add metadata block %llu: %d",
1089 btrfs_header_bytenr(eb), ret);
1093 if (btrfs_header_level(eb) == 0 && !root_tree)
1096 level = btrfs_header_level(eb);
1097 nritems = btrfs_header_nritems(eb);
1098 for (i = 0; i < nritems; i++) {
1100 btrfs_item_key_to_cpu(eb, &key, i);
1101 if (key.type != BTRFS_ROOT_ITEM_KEY)
1103 ri = btrfs_item_ptr(eb, i, struct btrfs_root_item);
1104 bytenr = btrfs_disk_root_bytenr(eb, ri);
1105 tmp = read_tree_block(root, bytenr, root->nodesize, 0);
1106 if (!extent_buffer_uptodate(tmp)) {
1107 error("unable to read log root block");
1110 ret = copy_tree_blocks(root, tmp, metadump, 0);
1111 free_extent_buffer(tmp);
1115 bytenr = btrfs_node_blockptr(eb, i);
1116 tmp = read_tree_block(root, bytenr, root->nodesize, 0);
1117 if (!extent_buffer_uptodate(tmp)) {
1118 error("unable to read log root block");
1121 ret = copy_tree_blocks(root, tmp, metadump, root_tree);
1122 free_extent_buffer(tmp);
1131 static int copy_log_trees(struct btrfs_root *root,
1132 struct metadump_struct *metadump)
1134 u64 blocknr = btrfs_super_log_root(root->fs_info->super_copy);
1139 if (!root->fs_info->log_root_tree ||
1140 !root->fs_info->log_root_tree->node) {
1141 error("unable to copy tree log, it has not been setup");
1145 return copy_tree_blocks(root, root->fs_info->log_root_tree->node,
1149 static int copy_space_cache(struct btrfs_root *root,
1150 struct metadump_struct *metadump,
1151 struct btrfs_path *path)
1153 struct extent_buffer *leaf;
1154 struct btrfs_file_extent_item *fi;
1155 struct btrfs_key key;
1156 u64 bytenr, num_bytes;
1159 root = root->fs_info->tree_root;
1162 key.type = BTRFS_EXTENT_DATA_KEY;
1165 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
1167 error("free space inode not found: %d", ret);
1171 leaf = path->nodes[0];
1174 if (path->slots[0] >= btrfs_header_nritems(leaf)) {
1175 ret = btrfs_next_leaf(root, path);
1177 error("cannot go to next leaf %d", ret);
1182 leaf = path->nodes[0];
1185 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
1186 if (key.type != BTRFS_EXTENT_DATA_KEY) {
1191 fi = btrfs_item_ptr(leaf, path->slots[0],
1192 struct btrfs_file_extent_item);
1193 if (btrfs_file_extent_type(leaf, fi) !=
1194 BTRFS_FILE_EXTENT_REG) {
1199 bytenr = btrfs_file_extent_disk_bytenr(leaf, fi);
1200 num_bytes = btrfs_file_extent_disk_num_bytes(leaf, fi);
1201 ret = add_extent(bytenr, num_bytes, metadump, 1);
1203 error("unable to add space cache blocks %d", ret);
1204 btrfs_release_path(path);
1213 static int copy_from_extent_tree(struct metadump_struct *metadump,
1214 struct btrfs_path *path)
1216 struct btrfs_root *extent_root;
1217 struct extent_buffer *leaf;
1218 struct btrfs_extent_item *ei;
1219 struct btrfs_key key;
1224 extent_root = metadump->root->fs_info->extent_root;
1225 bytenr = BTRFS_SUPER_INFO_OFFSET + BTRFS_SUPER_INFO_SIZE;
1226 key.objectid = bytenr;
1227 key.type = BTRFS_EXTENT_ITEM_KEY;
1230 ret = btrfs_search_slot(NULL, extent_root, &key, path, 0, 0);
1232 error("extent root not found: %d", ret);
1237 leaf = path->nodes[0];
1240 if (path->slots[0] >= btrfs_header_nritems(leaf)) {
1241 ret = btrfs_next_leaf(extent_root, path);
1243 error("cannot go to next leaf %d", ret);
1250 leaf = path->nodes[0];
1253 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
1254 if (key.objectid < bytenr ||
1255 (key.type != BTRFS_EXTENT_ITEM_KEY &&
1256 key.type != BTRFS_METADATA_ITEM_KEY)) {
1261 bytenr = key.objectid;
1262 if (key.type == BTRFS_METADATA_ITEM_KEY) {
1263 num_bytes = extent_root->nodesize;
1265 num_bytes = key.offset;
1268 if (num_bytes == 0) {
1269 error("extent length 0 at bytenr %llu key type %d",
1270 (unsigned long long)bytenr, key.type);
1275 if (btrfs_item_size_nr(leaf, path->slots[0]) > sizeof(*ei)) {
1276 ei = btrfs_item_ptr(leaf, path->slots[0],
1277 struct btrfs_extent_item);
1278 if (btrfs_extent_flags(leaf, ei) &
1279 BTRFS_EXTENT_FLAG_TREE_BLOCK) {
1280 ret = add_extent(bytenr, num_bytes, metadump,
1283 error("unable to add block %llu: %d",
1284 (unsigned long long)bytenr, ret);
1289 #ifdef BTRFS_COMPAT_EXTENT_TREE_V0
1290 ret = is_tree_block(extent_root, path, bytenr);
1292 error("failed to check tree block %llu: %d",
1293 (unsigned long long)bytenr, ret);
1298 ret = add_extent(bytenr, num_bytes, metadump,
1301 error("unable to add block %llu: %d",
1302 (unsigned long long)bytenr, ret);
1309 "either extent tree is corrupted or you haven't built with V0 support");
1314 bytenr += num_bytes;
1317 btrfs_release_path(path);
1322 static int create_metadump(const char *input, FILE *out, int num_threads,
1323 int compress_level, int sanitize, int walk_trees)
1325 struct btrfs_root *root;
1326 struct btrfs_path path;
1327 struct metadump_struct metadump;
1331 root = open_ctree(input, 0, 0);
1333 error("open ctree failed");
1337 ret = metadump_init(&metadump, root, out, num_threads,
1338 compress_level, sanitize);
1340 error("failed to initialize metadump: %d", ret);
1345 ret = add_extent(BTRFS_SUPER_INFO_OFFSET, BTRFS_SUPER_INFO_SIZE,
1348 error("unable to add metadata: %d", ret);
1353 btrfs_init_path(&path);
1356 ret = copy_tree_blocks(root, root->fs_info->chunk_root->node,
1363 ret = copy_tree_blocks(root, root->fs_info->tree_root->node,
1370 ret = copy_from_extent_tree(&metadump, &path);
1377 ret = copy_log_trees(root, &metadump);
1383 ret = copy_space_cache(root, &metadump, &path);
1385 ret = flush_pending(&metadump, 1);
1389 error("failed to flush pending data: %d", ret);
1392 metadump_destroy(&metadump, num_threads);
1394 btrfs_release_path(&path);
1395 ret = close_ctree(root);
1396 return err ? err : ret;
1399 static void update_super_old(u8 *buffer)
1401 struct btrfs_super_block *super = (struct btrfs_super_block *)buffer;
1402 struct btrfs_chunk *chunk;
1403 struct btrfs_disk_key *key;
1404 u32 sectorsize = btrfs_super_sectorsize(super);
1405 u64 flags = btrfs_super_flags(super);
1407 flags |= BTRFS_SUPER_FLAG_METADUMP;
1408 btrfs_set_super_flags(super, flags);
1410 key = (struct btrfs_disk_key *)(super->sys_chunk_array);
1411 chunk = (struct btrfs_chunk *)(super->sys_chunk_array +
1412 sizeof(struct btrfs_disk_key));
1414 btrfs_set_disk_key_objectid(key, BTRFS_FIRST_CHUNK_TREE_OBJECTID);
1415 btrfs_set_disk_key_type(key, BTRFS_CHUNK_ITEM_KEY);
1416 btrfs_set_disk_key_offset(key, 0);
1418 btrfs_set_stack_chunk_length(chunk, (u64)-1);
1419 btrfs_set_stack_chunk_owner(chunk, BTRFS_EXTENT_TREE_OBJECTID);
1420 btrfs_set_stack_chunk_stripe_len(chunk, BTRFS_STRIPE_LEN);
1421 btrfs_set_stack_chunk_type(chunk, BTRFS_BLOCK_GROUP_SYSTEM);
1422 btrfs_set_stack_chunk_io_align(chunk, sectorsize);
1423 btrfs_set_stack_chunk_io_width(chunk, sectorsize);
1424 btrfs_set_stack_chunk_sector_size(chunk, sectorsize);
1425 btrfs_set_stack_chunk_num_stripes(chunk, 1);
1426 btrfs_set_stack_chunk_sub_stripes(chunk, 0);
1427 chunk->stripe.devid = super->dev_item.devid;
1428 btrfs_set_stack_stripe_offset(&chunk->stripe, 0);
1429 memcpy(chunk->stripe.dev_uuid, super->dev_item.uuid, BTRFS_UUID_SIZE);
1430 btrfs_set_super_sys_array_size(super, sizeof(*key) + sizeof(*chunk));
1431 csum_block(buffer, BTRFS_SUPER_INFO_SIZE);
1434 static int update_super(struct mdrestore_struct *mdres, u8 *buffer)
1436 struct btrfs_super_block *super = (struct btrfs_super_block *)buffer;
1437 struct btrfs_chunk *chunk;
1438 struct btrfs_disk_key *disk_key;
1439 struct btrfs_key key;
1440 u64 flags = btrfs_super_flags(super);
1441 u32 new_array_size = 0;
1444 u8 *ptr, *write_ptr;
1445 int old_num_stripes;
1447 write_ptr = ptr = super->sys_chunk_array;
1448 array_size = btrfs_super_sys_array_size(super);
1450 while (cur < array_size) {
1451 disk_key = (struct btrfs_disk_key *)ptr;
1452 btrfs_disk_key_to_cpu(&key, disk_key);
1454 new_array_size += sizeof(*disk_key);
1455 memmove(write_ptr, ptr, sizeof(*disk_key));
1457 write_ptr += sizeof(*disk_key);
1458 ptr += sizeof(*disk_key);
1459 cur += sizeof(*disk_key);
1461 if (key.type == BTRFS_CHUNK_ITEM_KEY) {
1462 u64 type, physical, physical_dup, size = 0;
1464 chunk = (struct btrfs_chunk *)ptr;
1465 old_num_stripes = btrfs_stack_chunk_num_stripes(chunk);
1466 chunk = (struct btrfs_chunk *)write_ptr;
1468 memmove(write_ptr, ptr, sizeof(*chunk));
1469 btrfs_set_stack_chunk_sub_stripes(chunk, 0);
1470 type = btrfs_stack_chunk_type(chunk);
1471 if (type & BTRFS_BLOCK_GROUP_DUP) {
1472 new_array_size += sizeof(struct btrfs_stripe);
1473 write_ptr += sizeof(struct btrfs_stripe);
1475 btrfs_set_stack_chunk_num_stripes(chunk, 1);
1476 btrfs_set_stack_chunk_type(chunk,
1477 BTRFS_BLOCK_GROUP_SYSTEM);
1479 chunk->stripe.devid = super->dev_item.devid;
1480 physical = logical_to_physical(mdres, key.offset,
1481 &size, &physical_dup);
1482 if (size != (u64)-1)
1483 btrfs_set_stack_stripe_offset(&chunk->stripe,
1485 memcpy(chunk->stripe.dev_uuid, super->dev_item.uuid,
1487 new_array_size += sizeof(*chunk);
1489 error("bogus key in the sys array %d", key.type);
1492 write_ptr += sizeof(*chunk);
1493 ptr += btrfs_chunk_item_size(old_num_stripes);
1494 cur += btrfs_chunk_item_size(old_num_stripes);
1497 if (mdres->clear_space_cache)
1498 btrfs_set_super_cache_generation(super, 0);
1500 flags |= BTRFS_SUPER_FLAG_METADUMP_V2;
1501 btrfs_set_super_flags(super, flags);
1502 btrfs_set_super_sys_array_size(super, new_array_size);
1503 btrfs_set_super_num_devices(super, 1);
1504 csum_block(buffer, BTRFS_SUPER_INFO_SIZE);
1509 static struct extent_buffer *alloc_dummy_eb(u64 bytenr, u32 size)
1511 struct extent_buffer *eb;
1513 eb = calloc(1, sizeof(struct extent_buffer) + size);
1522 static void truncate_item(struct extent_buffer *eb, int slot, u32 new_size)
1524 struct btrfs_item *item;
1532 old_size = btrfs_item_size_nr(eb, slot);
1533 if (old_size == new_size)
1536 nritems = btrfs_header_nritems(eb);
1537 data_end = btrfs_item_offset_nr(eb, nritems - 1);
1539 old_data_start = btrfs_item_offset_nr(eb, slot);
1540 size_diff = old_size - new_size;
1542 for (i = slot; i < nritems; i++) {
1544 item = btrfs_item_nr(i);
1545 ioff = btrfs_item_offset(eb, item);
1546 btrfs_set_item_offset(eb, item, ioff + size_diff);
1549 memmove_extent_buffer(eb, btrfs_leaf_data(eb) + data_end + size_diff,
1550 btrfs_leaf_data(eb) + data_end,
1551 old_data_start + new_size - data_end);
1552 item = btrfs_item_nr(slot);
1553 btrfs_set_item_size(eb, item, new_size);
1556 static int fixup_chunk_tree_block(struct mdrestore_struct *mdres,
1557 struct async_work *async, u8 *buffer,
1560 struct extent_buffer *eb;
1561 size_t size_left = size;
1562 u64 bytenr = async->start;
1565 if (size_left % mdres->nodesize)
1568 eb = alloc_dummy_eb(bytenr, mdres->nodesize);
1574 memcpy(eb->data, buffer, mdres->nodesize);
1576 if (btrfs_header_bytenr(eb) != bytenr)
1578 if (memcmp(mdres->fsid,
1579 eb->data + offsetof(struct btrfs_header, fsid),
1583 if (btrfs_header_owner(eb) != BTRFS_CHUNK_TREE_OBJECTID)
1586 if (btrfs_header_level(eb) != 0)
1589 for (i = 0; i < btrfs_header_nritems(eb); i++) {
1590 struct btrfs_chunk *chunk;
1591 struct btrfs_key key;
1592 u64 type, physical, physical_dup, size = (u64)-1;
1594 btrfs_item_key_to_cpu(eb, &key, i);
1595 if (key.type != BTRFS_CHUNK_ITEM_KEY)
1599 physical = logical_to_physical(mdres, key.offset,
1600 &size, &physical_dup);
1603 truncate_item(eb, i, sizeof(*chunk));
1604 chunk = btrfs_item_ptr(eb, i, struct btrfs_chunk);
1607 /* Zero out the RAID profile */
1608 type = btrfs_chunk_type(eb, chunk);
1609 type &= (BTRFS_BLOCK_GROUP_DATA |
1610 BTRFS_BLOCK_GROUP_SYSTEM |
1611 BTRFS_BLOCK_GROUP_METADATA |
1612 BTRFS_BLOCK_GROUP_DUP);
1613 btrfs_set_chunk_type(eb, chunk, type);
1616 btrfs_set_chunk_num_stripes(eb, chunk, 1);
1617 btrfs_set_chunk_sub_stripes(eb, chunk, 0);
1618 btrfs_set_stripe_devid_nr(eb, chunk, 0, mdres->devid);
1619 if (size != (u64)-1)
1620 btrfs_set_stripe_offset_nr(eb, chunk, 0,
1622 /* update stripe 2 offset */
1624 btrfs_set_stripe_offset_nr(eb, chunk, 1,
1627 write_extent_buffer(eb, mdres->uuid,
1628 (unsigned long)btrfs_stripe_dev_uuid_nr(
1632 memcpy(buffer, eb->data, eb->len);
1633 csum_block(buffer, eb->len);
1635 size_left -= mdres->nodesize;
1636 buffer += mdres->nodesize;
1637 bytenr += mdres->nodesize;
1644 static void write_backup_supers(int fd, u8 *buf)
1646 struct btrfs_super_block *super = (struct btrfs_super_block *)buf;
1653 if (fstat(fd, &st)) {
1655 "cannot stat restore point, won't be able to write backup supers: %s",
1660 size = btrfs_device_size(fd, &st);
1662 for (i = 1; i < BTRFS_SUPER_MIRROR_MAX; i++) {
1663 bytenr = btrfs_sb_offset(i);
1664 if (bytenr + BTRFS_SUPER_INFO_SIZE > size)
1666 btrfs_set_super_bytenr(super, bytenr);
1667 csum_block(buf, BTRFS_SUPER_INFO_SIZE);
1668 ret = pwrite64(fd, buf, BTRFS_SUPER_INFO_SIZE, bytenr);
1669 if (ret < BTRFS_SUPER_INFO_SIZE) {
1672 "problem writing out backup super block %d: %s",
1673 i, strerror(errno));
1675 error("short write writing out backup super block");
1681 static void *restore_worker(void *data)
1683 struct mdrestore_struct *mdres = (struct mdrestore_struct *)data;
1684 struct async_work *async;
1690 int compress_size = MAX_PENDING_SIZE * 4;
1692 outfd = fileno(mdres->out);
1693 buffer = malloc(compress_size);
1695 error("not enough memory for restore worker buffer");
1696 pthread_mutex_lock(&mdres->mutex);
1698 mdres->error = -ENOMEM;
1699 pthread_mutex_unlock(&mdres->mutex);
1704 u64 bytenr, physical_dup;
1708 pthread_mutex_lock(&mdres->mutex);
1709 while (!mdres->nodesize || list_empty(&mdres->list)) {
1711 pthread_mutex_unlock(&mdres->mutex);
1714 pthread_cond_wait(&mdres->cond, &mdres->mutex);
1716 async = list_entry(mdres->list.next, struct async_work, list);
1717 list_del_init(&async->list);
1718 pthread_mutex_unlock(&mdres->mutex);
1720 if (mdres->compress_method == COMPRESS_ZLIB) {
1721 size = compress_size;
1722 ret = uncompress(buffer, (unsigned long *)&size,
1723 async->buffer, async->bufsize);
1725 error("decompressiion failed with %d", ret);
1730 outbuf = async->buffer;
1731 size = async->bufsize;
1734 if (!mdres->multi_devices) {
1735 if (async->start == BTRFS_SUPER_INFO_OFFSET) {
1736 if (mdres->old_restore) {
1737 update_super_old(outbuf);
1739 ret = update_super(mdres, outbuf);
1743 } else if (!mdres->old_restore) {
1744 ret = fixup_chunk_tree_block(mdres, async, outbuf, size);
1750 if (!mdres->fixup_offset) {
1752 u64 chunk_size = size;
1754 if (!mdres->multi_devices && !mdres->old_restore)
1755 bytenr = logical_to_physical(mdres,
1756 async->start + offset,
1760 bytenr = async->start + offset;
1762 ret = pwrite64(outfd, outbuf+offset, chunk_size,
1764 if (ret != chunk_size)
1768 ret = pwrite64(outfd, outbuf+offset,
1771 if (ret != chunk_size)
1775 offset += chunk_size;
1780 error("unable to write to device: %s",
1784 error("short write");
1788 } else if (async->start != BTRFS_SUPER_INFO_OFFSET) {
1789 ret = write_data_to_disk(mdres->info, outbuf, async->start, size, 0);
1791 error("failed to write data");
1797 /* backup super blocks are already there at fixup_offset stage */
1798 if (!mdres->multi_devices && async->start == BTRFS_SUPER_INFO_OFFSET)
1799 write_backup_supers(outfd, outbuf);
1801 pthread_mutex_lock(&mdres->mutex);
1802 if (err && !mdres->error)
1805 pthread_mutex_unlock(&mdres->mutex);
1807 free(async->buffer);
1815 static void mdrestore_destroy(struct mdrestore_struct *mdres, int num_threads)
1820 while ((n = rb_first(&mdres->chunk_tree))) {
1821 struct fs_chunk *entry;
1823 entry = rb_entry(n, struct fs_chunk, l);
1824 rb_erase(n, &mdres->chunk_tree);
1825 rb_erase(&entry->p, &mdres->physical_tree);
1828 pthread_mutex_lock(&mdres->mutex);
1830 pthread_cond_broadcast(&mdres->cond);
1831 pthread_mutex_unlock(&mdres->mutex);
1833 for (i = 0; i < num_threads; i++)
1834 pthread_join(mdres->threads[i], NULL);
1836 pthread_cond_destroy(&mdres->cond);
1837 pthread_mutex_destroy(&mdres->mutex);
1840 static int mdrestore_init(struct mdrestore_struct *mdres,
1841 FILE *in, FILE *out, int old_restore,
1842 int num_threads, int fixup_offset,
1843 struct btrfs_fs_info *info, int multi_devices)
1847 memset(mdres, 0, sizeof(*mdres));
1848 pthread_cond_init(&mdres->cond, NULL);
1849 pthread_mutex_init(&mdres->mutex, NULL);
1850 INIT_LIST_HEAD(&mdres->list);
1851 INIT_LIST_HEAD(&mdres->overlapping_chunks);
1854 mdres->old_restore = old_restore;
1855 mdres->chunk_tree.rb_node = NULL;
1856 mdres->fixup_offset = fixup_offset;
1858 mdres->multi_devices = multi_devices;
1859 mdres->clear_space_cache = 0;
1860 mdres->last_physical_offset = 0;
1861 mdres->alloced_chunks = 0;
1866 mdres->num_threads = num_threads;
1867 for (i = 0; i < num_threads; i++) {
1868 ret = pthread_create(&mdres->threads[i], NULL, restore_worker,
1871 /* pthread_create returns errno directly */
1877 mdrestore_destroy(mdres, i + 1);
1881 static int fill_mdres_info(struct mdrestore_struct *mdres,
1882 struct async_work *async)
1884 struct btrfs_super_block *super;
1889 /* We've already been initialized */
1890 if (mdres->nodesize)
1893 if (mdres->compress_method == COMPRESS_ZLIB) {
1894 size_t size = MAX_PENDING_SIZE * 2;
1896 buffer = malloc(MAX_PENDING_SIZE * 2);
1899 ret = uncompress(buffer, (unsigned long *)&size,
1900 async->buffer, async->bufsize);
1902 error("decompressiion failed with %d", ret);
1908 outbuf = async->buffer;
1911 super = (struct btrfs_super_block *)outbuf;
1912 mdres->nodesize = btrfs_super_nodesize(super);
1913 memcpy(mdres->fsid, super->fsid, BTRFS_FSID_SIZE);
1914 memcpy(mdres->uuid, super->dev_item.uuid,
1916 mdres->devid = le64_to_cpu(super->dev_item.devid);
1921 static int add_cluster(struct meta_cluster *cluster,
1922 struct mdrestore_struct *mdres, u64 *next)
1924 struct meta_cluster_item *item;
1925 struct meta_cluster_header *header = &cluster->header;
1926 struct async_work *async;
1931 mdres->compress_method = header->compress;
1933 bytenr = le64_to_cpu(header->bytenr) + BLOCK_SIZE;
1934 nritems = le32_to_cpu(header->nritems);
1935 for (i = 0; i < nritems; i++) {
1936 item = &cluster->items[i];
1937 async = calloc(1, sizeof(*async));
1939 error("not enough memory for async data");
1942 async->start = le64_to_cpu(item->bytenr);
1943 async->bufsize = le32_to_cpu(item->size);
1944 async->buffer = malloc(async->bufsize);
1945 if (!async->buffer) {
1946 error("not enough memory for async buffer");
1950 ret = fread(async->buffer, async->bufsize, 1, mdres->in);
1952 error("unable to read buffer: %s", strerror(errno));
1953 free(async->buffer);
1957 bytenr += async->bufsize;
1959 pthread_mutex_lock(&mdres->mutex);
1960 if (async->start == BTRFS_SUPER_INFO_OFFSET) {
1961 ret = fill_mdres_info(mdres, async);
1963 error("unable to set up restore state");
1964 pthread_mutex_unlock(&mdres->mutex);
1965 free(async->buffer);
1970 list_add_tail(&async->list, &mdres->list);
1972 pthread_cond_signal(&mdres->cond);
1973 pthread_mutex_unlock(&mdres->mutex);
1975 if (bytenr & BLOCK_MASK) {
1976 char buffer[BLOCK_MASK];
1977 size_t size = BLOCK_SIZE - (bytenr & BLOCK_MASK);
1980 ret = fread(buffer, size, 1, mdres->in);
1982 error("failed to read buffer: %s", strerror(errno));
1990 static int wait_for_worker(struct mdrestore_struct *mdres)
1994 pthread_mutex_lock(&mdres->mutex);
1996 while (!ret && mdres->num_items > 0) {
1997 struct timespec ts = {
1999 .tv_nsec = 10000000,
2001 pthread_mutex_unlock(&mdres->mutex);
2002 nanosleep(&ts, NULL);
2003 pthread_mutex_lock(&mdres->mutex);
2006 pthread_mutex_unlock(&mdres->mutex);
2010 static int read_chunk_block(struct mdrestore_struct *mdres, u8 *buffer,
2011 u64 bytenr, u64 item_bytenr, u32 bufsize,
2014 struct extent_buffer *eb;
2018 eb = alloc_dummy_eb(bytenr, mdres->nodesize);
2024 while (item_bytenr != bytenr) {
2025 buffer += mdres->nodesize;
2026 item_bytenr += mdres->nodesize;
2029 memcpy(eb->data, buffer, mdres->nodesize);
2030 if (btrfs_header_bytenr(eb) != bytenr) {
2031 error("eb bytenr does not match found bytenr: %llu != %llu",
2032 (unsigned long long)btrfs_header_bytenr(eb),
2033 (unsigned long long)bytenr);
2038 if (memcmp(mdres->fsid, eb->data + offsetof(struct btrfs_header, fsid),
2040 error("filesystem UUID of eb %llu does not match",
2041 (unsigned long long)bytenr);
2046 if (btrfs_header_owner(eb) != BTRFS_CHUNK_TREE_OBJECTID) {
2047 error("wrong eb %llu owner %llu",
2048 (unsigned long long)bytenr,
2049 (unsigned long long)btrfs_header_owner(eb));
2054 for (i = 0; i < btrfs_header_nritems(eb); i++) {
2055 struct btrfs_chunk *chunk;
2056 struct fs_chunk *fs_chunk;
2057 struct btrfs_key key;
2060 if (btrfs_header_level(eb)) {
2061 u64 blockptr = btrfs_node_blockptr(eb, i);
2063 ret = search_for_chunk_blocks(mdres, blockptr,
2070 /* Yay a leaf! We loves leafs! */
2071 btrfs_item_key_to_cpu(eb, &key, i);
2072 if (key.type != BTRFS_CHUNK_ITEM_KEY)
2075 fs_chunk = malloc(sizeof(struct fs_chunk));
2077 error("not enough memory to allocate chunk");
2081 memset(fs_chunk, 0, sizeof(*fs_chunk));
2082 chunk = btrfs_item_ptr(eb, i, struct btrfs_chunk);
2084 fs_chunk->logical = key.offset;
2085 fs_chunk->physical = btrfs_stripe_offset_nr(eb, chunk, 0);
2086 fs_chunk->bytes = btrfs_chunk_length(eb, chunk);
2087 INIT_LIST_HEAD(&fs_chunk->list);
2088 if (tree_search(&mdres->physical_tree, &fs_chunk->p,
2089 physical_cmp, 1) != NULL)
2090 list_add(&fs_chunk->list, &mdres->overlapping_chunks);
2092 tree_insert(&mdres->physical_tree, &fs_chunk->p,
2095 type = btrfs_chunk_type(eb, chunk);
2096 if (type & BTRFS_BLOCK_GROUP_DUP) {
2097 fs_chunk->physical_dup =
2098 btrfs_stripe_offset_nr(eb, chunk, 1);
2101 if (fs_chunk->physical_dup + fs_chunk->bytes >
2102 mdres->last_physical_offset)
2103 mdres->last_physical_offset = fs_chunk->physical_dup +
2105 else if (fs_chunk->physical + fs_chunk->bytes >
2106 mdres->last_physical_offset)
2107 mdres->last_physical_offset = fs_chunk->physical +
2109 mdres->alloced_chunks += fs_chunk->bytes;
2110 /* in dup case, fs_chunk->bytes should add twice */
2111 if (fs_chunk->physical_dup)
2112 mdres->alloced_chunks += fs_chunk->bytes;
2113 tree_insert(&mdres->chunk_tree, &fs_chunk->l, chunk_cmp);
2120 /* If you have to ask you aren't worthy */
2121 static int search_for_chunk_blocks(struct mdrestore_struct *mdres,
2122 u64 search, u64 cluster_bytenr)
2124 struct meta_cluster *cluster;
2125 struct meta_cluster_header *header;
2126 struct meta_cluster_item *item;
2127 u64 current_cluster = cluster_bytenr, bytenr;
2129 u32 bufsize, nritems, i;
2130 u32 max_size = MAX_PENDING_SIZE * 2;
2131 u8 *buffer, *tmp = NULL;
2134 cluster = malloc(BLOCK_SIZE);
2136 error("not enough memory for cluster");
2140 buffer = malloc(max_size);
2142 error("not enough memory for buffer");
2147 if (mdres->compress_method == COMPRESS_ZLIB) {
2148 tmp = malloc(max_size);
2150 error("not enough memory for buffer");
2157 bytenr = current_cluster;
2159 if (fseek(mdres->in, current_cluster, SEEK_SET)) {
2160 error("seek failed: %s", strerror(errno));
2165 ret = fread(cluster, BLOCK_SIZE, 1, mdres->in);
2167 if (cluster_bytenr != 0) {
2169 current_cluster = 0;
2174 "unknown state after reading cluster at %llu, probably crrupted data",
2178 } else if (ret < 0) {
2179 error("unable to read image at %llu: %s",
2180 (unsigned long long)cluster_bytenr,
2186 header = &cluster->header;
2187 if (le64_to_cpu(header->magic) != HEADER_MAGIC ||
2188 le64_to_cpu(header->bytenr) != current_cluster) {
2189 error("bad header in metadump image");
2194 bytenr += BLOCK_SIZE;
2195 nritems = le32_to_cpu(header->nritems);
2196 for (i = 0; i < nritems; i++) {
2199 item = &cluster->items[i];
2200 bufsize = le32_to_cpu(item->size);
2201 item_bytenr = le64_to_cpu(item->bytenr);
2203 if (bufsize > max_size) {
2204 error("item %u too big: %u > %u", i, bufsize,
2210 if (mdres->compress_method == COMPRESS_ZLIB) {
2211 ret = fread(tmp, bufsize, 1, mdres->in);
2213 error("read error: %s", strerror(errno));
2219 ret = uncompress(buffer,
2220 (unsigned long *)&size, tmp,
2223 error("decompressiion failed with %d",
2229 ret = fread(buffer, bufsize, 1, mdres->in);
2231 error("read error: %s",
2240 if (item_bytenr <= search &&
2241 item_bytenr + size > search) {
2242 ret = read_chunk_block(mdres, buffer, search,
2256 if (bytenr & BLOCK_MASK)
2257 bytenr += BLOCK_SIZE - (bytenr & BLOCK_MASK);
2258 current_cluster = bytenr;
2267 static int build_chunk_tree(struct mdrestore_struct *mdres,
2268 struct meta_cluster *cluster)
2270 struct btrfs_super_block *super;
2271 struct meta_cluster_header *header;
2272 struct meta_cluster_item *item = NULL;
2273 u64 chunk_root_bytenr = 0;
2279 /* We can't seek with stdin so don't bother doing this */
2280 if (mdres->in == stdin)
2283 ret = fread(cluster, BLOCK_SIZE, 1, mdres->in);
2285 error("unable to read cluster: %s", strerror(errno));
2290 header = &cluster->header;
2291 if (le64_to_cpu(header->magic) != HEADER_MAGIC ||
2292 le64_to_cpu(header->bytenr) != 0) {
2293 error("bad header in metadump image");
2297 bytenr += BLOCK_SIZE;
2298 mdres->compress_method = header->compress;
2299 nritems = le32_to_cpu(header->nritems);
2300 for (i = 0; i < nritems; i++) {
2301 item = &cluster->items[i];
2303 if (le64_to_cpu(item->bytenr) == BTRFS_SUPER_INFO_OFFSET)
2305 bytenr += le32_to_cpu(item->size);
2306 if (fseek(mdres->in, le32_to_cpu(item->size), SEEK_CUR)) {
2307 error("seek failed: %s", strerror(errno));
2312 if (!item || le64_to_cpu(item->bytenr) != BTRFS_SUPER_INFO_OFFSET) {
2313 error("did not find superblock at %llu",
2314 le64_to_cpu(item->bytenr));
2318 buffer = malloc(le32_to_cpu(item->size));
2320 error("not enough memory to allocate buffer");
2324 ret = fread(buffer, le32_to_cpu(item->size), 1, mdres->in);
2326 error("unable to read buffer: %s", strerror(errno));
2331 if (mdres->compress_method == COMPRESS_ZLIB) {
2332 size_t size = MAX_PENDING_SIZE * 2;
2335 tmp = malloc(MAX_PENDING_SIZE * 2);
2340 ret = uncompress(tmp, (unsigned long *)&size,
2341 buffer, le32_to_cpu(item->size));
2343 error("decompressiion failed with %d", ret);
2352 pthread_mutex_lock(&mdres->mutex);
2353 super = (struct btrfs_super_block *)buffer;
2354 chunk_root_bytenr = btrfs_super_chunk_root(super);
2355 mdres->nodesize = btrfs_super_nodesize(super);
2356 memcpy(mdres->fsid, super->fsid, BTRFS_FSID_SIZE);
2357 memcpy(mdres->uuid, super->dev_item.uuid,
2359 mdres->devid = le64_to_cpu(super->dev_item.devid);
2361 pthread_mutex_unlock(&mdres->mutex);
2363 return search_for_chunk_blocks(mdres, chunk_root_bytenr, 0);
2366 static int range_contains_super(u64 physical, u64 bytes)
2371 for (i = 0; i < BTRFS_SUPER_MIRROR_MAX; i++) {
2372 super_bytenr = btrfs_sb_offset(i);
2373 if (super_bytenr >= physical &&
2374 super_bytenr < physical + bytes)
2381 static void remap_overlapping_chunks(struct mdrestore_struct *mdres)
2383 struct fs_chunk *fs_chunk;
2385 while (!list_empty(&mdres->overlapping_chunks)) {
2386 fs_chunk = list_first_entry(&mdres->overlapping_chunks,
2387 struct fs_chunk, list);
2388 list_del_init(&fs_chunk->list);
2389 if (range_contains_super(fs_chunk->physical,
2392 "remapping a chunk that had a super mirror inside of it, clearing space cache so we don't end up with corruption");
2393 mdres->clear_space_cache = 1;
2395 fs_chunk->physical = mdres->last_physical_offset;
2396 tree_insert(&mdres->physical_tree, &fs_chunk->p, physical_cmp);
2397 mdres->last_physical_offset += fs_chunk->bytes;
2401 static int fixup_devices(struct btrfs_fs_info *fs_info,
2402 struct mdrestore_struct *mdres, off_t dev_size)
2404 struct btrfs_trans_handle *trans;
2405 struct btrfs_dev_item *dev_item;
2406 struct btrfs_path path;
2407 struct extent_buffer *leaf;
2408 struct btrfs_root *root = fs_info->chunk_root;
2409 struct btrfs_key key;
2410 u64 devid, cur_devid;
2413 trans = btrfs_start_transaction(fs_info->tree_root, 1);
2414 if (IS_ERR(trans)) {
2415 error("cannot starting transaction %ld", PTR_ERR(trans));
2416 return PTR_ERR(trans);
2419 dev_item = &fs_info->super_copy->dev_item;
2421 devid = btrfs_stack_device_id(dev_item);
2423 btrfs_set_stack_device_total_bytes(dev_item, dev_size);
2424 btrfs_set_stack_device_bytes_used(dev_item, mdres->alloced_chunks);
2426 key.objectid = BTRFS_DEV_ITEMS_OBJECTID;
2427 key.type = BTRFS_DEV_ITEM_KEY;
2430 btrfs_init_path(&path);
2433 ret = btrfs_search_slot(trans, root, &key, &path, -1, 1);
2435 error("search failed: %d", ret);
2440 leaf = path.nodes[0];
2441 if (path.slots[0] >= btrfs_header_nritems(leaf)) {
2442 ret = btrfs_next_leaf(root, &path);
2444 error("cannot go to next leaf %d", ret);
2451 leaf = path.nodes[0];
2454 btrfs_item_key_to_cpu(leaf, &key, path.slots[0]);
2455 if (key.type > BTRFS_DEV_ITEM_KEY)
2457 if (key.type != BTRFS_DEV_ITEM_KEY) {
2462 dev_item = btrfs_item_ptr(leaf, path.slots[0],
2463 struct btrfs_dev_item);
2464 cur_devid = btrfs_device_id(leaf, dev_item);
2465 if (devid != cur_devid) {
2466 ret = btrfs_del_item(trans, root, &path);
2468 error("cannot delete item: %d", ret);
2471 btrfs_release_path(&path);
2475 btrfs_set_device_total_bytes(leaf, dev_item, dev_size);
2476 btrfs_set_device_bytes_used(leaf, dev_item,
2477 mdres->alloced_chunks);
2478 btrfs_mark_buffer_dirty(leaf);
2482 btrfs_release_path(&path);
2483 ret = btrfs_commit_transaction(trans, fs_info->tree_root);
2485 error("unable to commit transaction: %d", ret);
2491 static int restore_metadump(const char *input, FILE *out, int old_restore,
2492 int num_threads, int fixup_offset,
2493 const char *target, int multi_devices)
2495 struct meta_cluster *cluster = NULL;
2496 struct meta_cluster_header *header;
2497 struct mdrestore_struct mdrestore;
2498 struct btrfs_fs_info *info = NULL;
2503 if (!strcmp(input, "-")) {
2506 in = fopen(input, "r");
2508 error("unable to open metadump image: %s",
2514 /* NOTE: open with write mode */
2516 info = open_ctree_fs_info(target, 0, 0, 0,
2518 OPEN_CTREE_RESTORE |
2519 OPEN_CTREE_PARTIAL);
2521 error("open ctree failed");
2527 cluster = malloc(BLOCK_SIZE);
2529 error("not enough memory for cluster");
2534 ret = mdrestore_init(&mdrestore, in, out, old_restore, num_threads,
2535 fixup_offset, info, multi_devices);
2537 error("failed to initialize metadata restore state: %d", ret);
2538 goto failed_cluster;
2541 if (!multi_devices && !old_restore) {
2542 ret = build_chunk_tree(&mdrestore, cluster);
2545 if (!list_empty(&mdrestore.overlapping_chunks))
2546 remap_overlapping_chunks(&mdrestore);
2549 if (in != stdin && fseek(in, 0, SEEK_SET)) {
2550 error("seek failed: %s", strerror(errno));
2554 while (!mdrestore.error) {
2555 ret = fread(cluster, BLOCK_SIZE, 1, in);
2559 header = &cluster->header;
2560 if (le64_to_cpu(header->magic) != HEADER_MAGIC ||
2561 le64_to_cpu(header->bytenr) != bytenr) {
2562 error("bad header in metadump image");
2566 ret = add_cluster(cluster, &mdrestore, &bytenr);
2568 error("failed to add cluster: %d", ret);
2572 ret = wait_for_worker(&mdrestore);
2574 if (!ret && !multi_devices && !old_restore) {
2575 struct btrfs_root *root;
2578 root = open_ctree_fd(fileno(out), target, 0,
2579 OPEN_CTREE_PARTIAL |
2581 OPEN_CTREE_NO_DEVICES);
2583 error("open ctree failed in %s", target);
2587 info = root->fs_info;
2589 if (stat(target, &st)) {
2590 error("stat %s failed: %s", target, strerror(errno));
2591 close_ctree(info->chunk_root);
2596 ret = fixup_devices(info, &mdrestore, st.st_size);
2597 close_ctree(info->chunk_root);
2602 mdrestore_destroy(&mdrestore, num_threads);
2606 if (fixup_offset && info)
2607 close_ctree(info->chunk_root);
2614 static int update_disk_super_on_device(struct btrfs_fs_info *info,
2615 const char *other_dev, u64 cur_devid)
2617 struct btrfs_key key;
2618 struct extent_buffer *leaf;
2619 struct btrfs_path path;
2620 struct btrfs_dev_item *dev_item;
2621 struct btrfs_super_block *disk_super;
2622 char dev_uuid[BTRFS_UUID_SIZE];
2623 char fs_uuid[BTRFS_UUID_SIZE];
2624 u64 devid, type, io_align, io_width;
2625 u64 sector_size, total_bytes, bytes_used;
2626 char buf[BTRFS_SUPER_INFO_SIZE];
2630 key.objectid = BTRFS_DEV_ITEMS_OBJECTID;
2631 key.type = BTRFS_DEV_ITEM_KEY;
2632 key.offset = cur_devid;
2634 btrfs_init_path(&path);
2635 ret = btrfs_search_slot(NULL, info->chunk_root, &key, &path, 0, 0);
2637 error("search key failed: %d", ret);
2642 leaf = path.nodes[0];
2643 dev_item = btrfs_item_ptr(leaf, path.slots[0],
2644 struct btrfs_dev_item);
2646 devid = btrfs_device_id(leaf, dev_item);
2647 if (devid != cur_devid) {
2648 error("devid mismatch: %llu != %llu",
2649 (unsigned long long)devid,
2650 (unsigned long long)cur_devid);
2655 type = btrfs_device_type(leaf, dev_item);
2656 io_align = btrfs_device_io_align(leaf, dev_item);
2657 io_width = btrfs_device_io_width(leaf, dev_item);
2658 sector_size = btrfs_device_sector_size(leaf, dev_item);
2659 total_bytes = btrfs_device_total_bytes(leaf, dev_item);
2660 bytes_used = btrfs_device_bytes_used(leaf, dev_item);
2661 read_extent_buffer(leaf, dev_uuid, (unsigned long)btrfs_device_uuid(dev_item), BTRFS_UUID_SIZE);
2662 read_extent_buffer(leaf, fs_uuid, (unsigned long)btrfs_device_fsid(dev_item), BTRFS_UUID_SIZE);
2664 btrfs_release_path(&path);
2666 printf("update disk super on %s devid=%llu\n", other_dev, devid);
2668 /* update other devices' super block */
2669 fp = open(other_dev, O_CREAT | O_RDWR, 0600);
2671 error("could not open %s: %s", other_dev, strerror(errno));
2676 memcpy(buf, info->super_copy, BTRFS_SUPER_INFO_SIZE);
2678 disk_super = (struct btrfs_super_block *)buf;
2679 dev_item = &disk_super->dev_item;
2681 btrfs_set_stack_device_type(dev_item, type);
2682 btrfs_set_stack_device_id(dev_item, devid);
2683 btrfs_set_stack_device_total_bytes(dev_item, total_bytes);
2684 btrfs_set_stack_device_bytes_used(dev_item, bytes_used);
2685 btrfs_set_stack_device_io_align(dev_item, io_align);
2686 btrfs_set_stack_device_io_width(dev_item, io_width);
2687 btrfs_set_stack_device_sector_size(dev_item, sector_size);
2688 memcpy(dev_item->uuid, dev_uuid, BTRFS_UUID_SIZE);
2689 memcpy(dev_item->fsid, fs_uuid, BTRFS_UUID_SIZE);
2690 csum_block((u8 *)buf, BTRFS_SUPER_INFO_SIZE);
2692 ret = pwrite64(fp, buf, BTRFS_SUPER_INFO_SIZE, BTRFS_SUPER_INFO_OFFSET);
2693 if (ret != BTRFS_SUPER_INFO_SIZE) {
2695 error("cannot write superblock: %s", strerror(ret));
2697 error("cannot write superblock");
2702 write_backup_supers(fp, (u8 *)buf);
2710 static void print_usage(int ret)
2712 printf("usage: btrfs-image [options] source target\n");
2713 printf("\t-r \trestore metadump image\n");
2714 printf("\t-c value\tcompression level (0 ~ 9)\n");
2715 printf("\t-t value\tnumber of threads (1 ~ 32)\n");
2716 printf("\t-o \tdon't mess with the chunk tree when restoring\n");
2717 printf("\t-s \tsanitize file names, use once to just use garbage, use twice if you want crc collisions\n");
2718 printf("\t-w \twalk all trees instead of using extent tree, do this if your extent tree is broken\n");
2719 printf("\t-m \trestore for multiple devices\n");
2721 printf("\tIn the dump mode, source is the btrfs device and target is the output file (use '-' for stdout).\n");
2722 printf("\tIn the restore mode, source is the dumped image and target is the btrfs device/file.\n");
2726 int main(int argc, char *argv[])
2730 u64 num_threads = 0;
2731 u64 compress_level = 0;
2733 int old_restore = 0;
2735 int multi_devices = 0;
2739 int usage_error = 0;
2743 static const struct option long_options[] = {
2744 { "help", no_argument, NULL, GETOPT_VAL_HELP},
2745 { NULL, 0, NULL, 0 }
2747 int c = getopt_long(argc, argv, "rc:t:oswm", long_options, NULL);
2755 num_threads = arg_strtou64(optarg);
2756 if (num_threads > MAX_WORKER_THREADS) {
2757 error("number of threads out of range: %llu > %d",
2758 (unsigned long long)num_threads,
2759 MAX_WORKER_THREADS);
2764 compress_level = arg_strtou64(optarg);
2765 if (compress_level > 9) {
2766 error("compression level out of range: %llu",
2767 (unsigned long long)compress_level);
2784 case GETOPT_VAL_HELP:
2786 print_usage(c != GETOPT_VAL_HELP);
2791 if (check_argc_min(argc - optind, 2))
2794 dev_cnt = argc - optind - 1;
2799 "create and restore cannot be used at the same time");
2803 if (walk_trees || sanitize || compress_level) {
2805 "useing -w, -s, -c options for restore makes no sense");
2808 if (multi_devices && dev_cnt < 2) {
2809 error("not enough devices specified for -m option");
2812 if (!multi_devices && dev_cnt != 1) {
2813 error("accepts only 1 device without -m option");
2821 source = argv[optind];
2822 target = argv[optind + 1];
2824 if (create && !strcmp(target, "-")) {
2827 out = fopen(target, "w+");
2829 error("unable to create target file %s", target);
2834 if (compress_level > 0 || create == 0) {
2835 if (num_threads == 0) {
2836 long tmp = sysconf(_SC_NPROCESSORS_ONLN);
2847 ret = check_mounted(source);
2849 warning("unable to check mount status of: %s",
2852 warning("%s already mounted, results may be inaccurate",
2856 ret = create_metadump(source, out, num_threads,
2857 compress_level, sanitize, walk_trees);
2859 ret = restore_metadump(source, out, old_restore, num_threads,
2860 0, target, multi_devices);
2863 error("%s failed: %s", (create) ? "create" : "restore",
2868 /* extended support for multiple devices */
2869 if (!create && multi_devices) {
2870 struct btrfs_fs_info *info;
2874 info = open_ctree_fs_info(target, 0, 0, 0,
2875 OPEN_CTREE_PARTIAL |
2876 OPEN_CTREE_RESTORE);
2878 error("open ctree failed at %s", target);
2882 total_devs = btrfs_super_num_devices(info->super_copy);
2883 if (total_devs != dev_cnt) {
2884 error("it needs %llu devices but has only %d",
2885 total_devs, dev_cnt);
2886 close_ctree(info->chunk_root);
2890 /* update super block on other disks */
2891 for (i = 2; i <= dev_cnt; i++) {
2892 ret = update_disk_super_on_device(info,
2893 argv[optind + i], (u64)i);
2895 error("update disk superblock failed devid %d: %d",
2897 close_ctree(info->chunk_root);
2902 close_ctree(info->chunk_root);
2904 /* fix metadata block to map correct chunk */
2905 ret = restore_metadump(source, out, 0, num_threads, 1,
2908 error("unable to fixup metadump: %d", ret);
2913 if (out == stdout) {
2917 if (ret && create) {
2920 unlink_ret = unlink(target);
2922 error("unlink output file %s failed: %s",
2923 target, strerror(errno));
2927 btrfs_close_all_devices();