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"
39 #define HEADER_MAGIC 0xbd5c25e27295668bULL
40 #define MAX_PENDING_SIZE (256 * 1024)
41 #define BLOCK_SIZE 1024
42 #define BLOCK_MASK (BLOCK_SIZE - 1)
44 #define COMPRESS_NONE 0
45 #define COMPRESS_ZLIB 1
47 struct meta_cluster_item {
50 } __attribute__ ((__packed__));
52 struct meta_cluster_header {
57 } __attribute__ ((__packed__));
59 /* cluster header + index items + buffers */
61 struct meta_cluster_header header;
62 struct meta_cluster_item items[];
63 } __attribute__ ((__packed__));
65 #define ITEMS_PER_CLUSTER ((BLOCK_SIZE - sizeof(struct meta_cluster)) / \
66 sizeof(struct meta_cluster_item))
72 * physical_dup only store additonal physical for BTRFS_BLOCK_GROUP_DUP
73 * currently restore only support single and DUP
74 * TODO: modify this structure and the function related to this
75 * structure for support RAID*
81 struct list_head list;
85 struct list_head list;
86 struct list_head ordered;
94 struct metadump_struct {
95 struct btrfs_root *root;
98 struct meta_cluster *cluster;
102 pthread_mutex_t mutex;
104 struct rb_root name_tree;
106 struct list_head list;
107 struct list_head ordered;
129 struct mdrestore_struct {
135 pthread_mutex_t mutex;
138 struct rb_root chunk_tree;
139 struct rb_root physical_tree;
140 struct list_head list;
141 struct list_head overlapping_chunks;
146 u64 last_physical_offset;
147 u8 uuid[BTRFS_UUID_SIZE];
148 u8 fsid[BTRFS_FSID_SIZE];
156 int clear_space_cache;
157 struct btrfs_fs_info *info;
160 static int search_for_chunk_blocks(struct mdrestore_struct *mdres,
161 u64 search, u64 cluster_bytenr);
162 static struct extent_buffer *alloc_dummy_eb(u64 bytenr, u32 size);
164 static void csum_block(u8 *buf, size_t len)
166 u8 result[BTRFS_CRC32_SIZE];
168 crc = crc32c(crc, buf + BTRFS_CSUM_SIZE, len - BTRFS_CSUM_SIZE);
169 btrfs_csum_final(crc, result);
170 memcpy(buf, result, BTRFS_CRC32_SIZE);
173 static int has_name(struct btrfs_key *key)
176 case BTRFS_DIR_ITEM_KEY:
177 case BTRFS_DIR_INDEX_KEY:
178 case BTRFS_INODE_REF_KEY:
179 case BTRFS_INODE_EXTREF_KEY:
180 case BTRFS_XATTR_ITEM_KEY:
189 static char *generate_garbage(u32 name_len)
191 char *buf = malloc(name_len);
197 for (i = 0; i < name_len; i++) {
198 char c = rand_range(94) + 33;
208 static int name_cmp(struct rb_node *a, struct rb_node *b, int fuzz)
210 struct name *entry = rb_entry(a, struct name, n);
211 struct name *ins = rb_entry(b, struct name, n);
214 len = min(ins->len, entry->len);
215 return memcmp(ins->val, entry->val, len);
218 static int chunk_cmp(struct rb_node *a, struct rb_node *b, int fuzz)
220 struct fs_chunk *entry = rb_entry(a, struct fs_chunk, l);
221 struct fs_chunk *ins = rb_entry(b, struct fs_chunk, l);
223 if (fuzz && ins->logical >= entry->logical &&
224 ins->logical < entry->logical + entry->bytes)
227 if (ins->logical < entry->logical)
229 else if (ins->logical > entry->logical)
234 static int physical_cmp(struct rb_node *a, struct rb_node *b, int fuzz)
236 struct fs_chunk *entry = rb_entry(a, struct fs_chunk, p);
237 struct fs_chunk *ins = rb_entry(b, struct fs_chunk, p);
239 if (fuzz && ins->physical >= entry->physical &&
240 ins->physical < entry->physical + entry->bytes)
243 if (fuzz && entry->physical >= ins->physical &&
244 entry->physical < ins->physical + ins->bytes)
247 if (ins->physical < entry->physical)
249 else if (ins->physical > entry->physical)
254 static void tree_insert(struct rb_root *root, struct rb_node *ins,
255 int (*cmp)(struct rb_node *a, struct rb_node *b,
258 struct rb_node ** p = &root->rb_node;
259 struct rb_node * parent = NULL;
265 dir = cmp(*p, ins, 1);
274 rb_link_node(ins, parent, p);
275 rb_insert_color(ins, root);
278 static struct rb_node *tree_search(struct rb_root *root,
279 struct rb_node *search,
280 int (*cmp)(struct rb_node *a,
281 struct rb_node *b, int fuzz),
284 struct rb_node *n = root->rb_node;
288 dir = cmp(n, search, fuzz);
300 static u64 logical_to_physical(struct mdrestore_struct *mdres, u64 logical,
301 u64 *size, u64 *physical_dup)
303 struct fs_chunk *fs_chunk;
304 struct rb_node *entry;
305 struct fs_chunk search;
308 if (logical == BTRFS_SUPER_INFO_OFFSET)
311 search.logical = logical;
312 entry = tree_search(&mdres->chunk_tree, &search.l, chunk_cmp, 1);
314 if (mdres->in != stdin)
315 warning("cannot find a chunk, using logical");
318 fs_chunk = rb_entry(entry, struct fs_chunk, l);
319 if (fs_chunk->logical > logical || fs_chunk->logical + fs_chunk->bytes < logical)
321 offset = search.logical - fs_chunk->logical;
324 /* Only in dup case, physical_dup is not equal to 0 */
325 if (fs_chunk->physical_dup)
326 *physical_dup = fs_chunk->physical_dup + offset;
331 *size = min(*size, fs_chunk->bytes + fs_chunk->logical - logical);
332 return fs_chunk->physical + offset;
336 static char *find_collision(struct metadump_struct *md, char *name,
340 struct rb_node *entry;
342 unsigned long checksum;
348 entry = tree_search(&md->name_tree, &tmp.n, name_cmp, 0);
350 val = rb_entry(entry, struct name, n);
355 val = malloc(sizeof(struct name));
357 error("cannot sanitize name, not enough memory");
362 memset(val, 0, sizeof(*val));
366 val->sub = malloc(name_len);
368 error("cannot sanitize name, not enough memory");
374 checksum = crc32c(~1, val->val, name_len);
375 memset(val->sub, ' ', name_len);
378 if (crc32c(~1, val->sub, name_len) == checksum &&
379 memcmp(val->sub, val->val, val->len)) {
384 if (val->sub[i] == 127) {
389 } while (val->sub[i] == 127);
394 if (val->sub[i] == '/')
396 memset(val->sub, ' ', i);
401 if (val->sub[i] == '/')
408 "cannot find a hash collision for '%.*s', generating garbage, it won't match indexes",
410 for (i = 0; i < name_len; i++) {
411 char c = rand_range(94) + 33;
419 tree_insert(&md->name_tree, &val->n, name_cmp);
423 static void sanitize_dir_item(struct metadump_struct *md, struct extent_buffer *eb,
426 struct btrfs_dir_item *dir_item;
429 unsigned long name_ptr;
434 int free_garbage = (md->sanitize_names == 1);
436 dir_item = btrfs_item_ptr(eb, slot, struct btrfs_dir_item);
437 total_len = btrfs_item_size_nr(eb, slot);
438 while (cur < total_len) {
439 this_len = sizeof(*dir_item) +
440 btrfs_dir_name_len(eb, dir_item) +
441 btrfs_dir_data_len(eb, dir_item);
442 name_ptr = (unsigned long)(dir_item + 1);
443 name_len = btrfs_dir_name_len(eb, dir_item);
445 if (md->sanitize_names > 1) {
446 buf = malloc(name_len);
448 error("cannot sanitize name, not enough memory");
451 read_extent_buffer(eb, buf, name_ptr, name_len);
452 garbage = find_collision(md, buf, name_len);
454 garbage = generate_garbage(name_len);
457 error("cannot sanitize name, not enough memory");
460 write_extent_buffer(eb, garbage, name_ptr, name_len);
462 dir_item = (struct btrfs_dir_item *)((char *)dir_item +
469 static void sanitize_inode_ref(struct metadump_struct *md,
470 struct extent_buffer *eb, int slot, int ext)
472 struct btrfs_inode_extref *extref;
473 struct btrfs_inode_ref *ref;
476 unsigned long name_ptr;
480 int free_garbage = (md->sanitize_names == 1);
482 item_size = btrfs_item_size_nr(eb, slot);
483 ptr = btrfs_item_ptr_offset(eb, slot);
484 while (cur_offset < item_size) {
486 extref = (struct btrfs_inode_extref *)(ptr +
488 name_ptr = (unsigned long)(&extref->name);
489 len = btrfs_inode_extref_name_len(eb, extref);
490 cur_offset += sizeof(*extref);
492 ref = (struct btrfs_inode_ref *)(ptr + cur_offset);
493 len = btrfs_inode_ref_name_len(eb, ref);
494 name_ptr = (unsigned long)(ref + 1);
495 cur_offset += sizeof(*ref);
499 if (md->sanitize_names > 1) {
502 error("cannot sanitize name, not enough memory");
505 read_extent_buffer(eb, buf, name_ptr, len);
506 garbage = find_collision(md, buf, len);
508 garbage = generate_garbage(len);
512 error("cannot sanitize name, not enough memory");
515 write_extent_buffer(eb, garbage, name_ptr, len);
521 static void sanitize_xattr(struct metadump_struct *md,
522 struct extent_buffer *eb, int slot)
524 struct btrfs_dir_item *dir_item;
525 unsigned long data_ptr;
528 dir_item = btrfs_item_ptr(eb, slot, struct btrfs_dir_item);
529 data_len = btrfs_dir_data_len(eb, dir_item);
531 data_ptr = (unsigned long)((char *)(dir_item + 1) +
532 btrfs_dir_name_len(eb, dir_item));
533 memset_extent_buffer(eb, 0, data_ptr, data_len);
536 static void sanitize_name(struct metadump_struct *md, u8 *dst,
537 struct extent_buffer *src, struct btrfs_key *key,
540 struct extent_buffer *eb;
542 eb = alloc_dummy_eb(src->start, src->len);
544 error("cannot sanitize name, not enough memory");
548 memcpy(eb->data, dst, eb->len);
551 case BTRFS_DIR_ITEM_KEY:
552 case BTRFS_DIR_INDEX_KEY:
553 sanitize_dir_item(md, eb, slot);
555 case BTRFS_INODE_REF_KEY:
556 sanitize_inode_ref(md, eb, slot, 0);
558 case BTRFS_INODE_EXTREF_KEY:
559 sanitize_inode_ref(md, eb, slot, 1);
561 case BTRFS_XATTR_ITEM_KEY:
562 sanitize_xattr(md, eb, slot);
568 memcpy(dst, eb->data, eb->len);
573 * zero inline extents and csum items
575 static void zero_items(struct metadump_struct *md, u8 *dst,
576 struct extent_buffer *src)
578 struct btrfs_file_extent_item *fi;
579 struct btrfs_item *item;
580 struct btrfs_key key;
581 u32 nritems = btrfs_header_nritems(src);
586 for (i = 0; i < nritems; i++) {
587 item = btrfs_item_nr(i);
588 btrfs_item_key_to_cpu(src, &key, i);
589 if (key.type == BTRFS_CSUM_ITEM_KEY) {
590 size = btrfs_item_size_nr(src, i);
591 memset(dst + btrfs_leaf_data(src) +
592 btrfs_item_offset_nr(src, i), 0, size);
596 if (md->sanitize_names && has_name(&key)) {
597 sanitize_name(md, dst, src, &key, i);
601 if (key.type != BTRFS_EXTENT_DATA_KEY)
604 fi = btrfs_item_ptr(src, i, struct btrfs_file_extent_item);
605 extent_type = btrfs_file_extent_type(src, fi);
606 if (extent_type != BTRFS_FILE_EXTENT_INLINE)
609 ptr = btrfs_file_extent_inline_start(fi);
610 size = btrfs_file_extent_inline_item_len(src, item);
611 memset(dst + ptr, 0, size);
616 * copy buffer and zero useless data in the buffer
618 static void copy_buffer(struct metadump_struct *md, u8 *dst,
619 struct extent_buffer *src)
625 memcpy(dst, src->data, src->len);
626 if (src->start == BTRFS_SUPER_INFO_OFFSET)
629 level = btrfs_header_level(src);
630 nritems = btrfs_header_nritems(src);
633 size = sizeof(struct btrfs_header);
634 memset(dst + size, 0, src->len - size);
635 } else if (level == 0) {
636 size = btrfs_leaf_data(src) +
637 btrfs_item_offset_nr(src, nritems - 1) -
638 btrfs_item_nr_offset(nritems);
639 memset(dst + btrfs_item_nr_offset(nritems), 0, size);
640 zero_items(md, dst, src);
642 size = offsetof(struct btrfs_node, ptrs) +
643 sizeof(struct btrfs_key_ptr) * nritems;
644 memset(dst + size, 0, src->len - size);
646 csum_block(dst, src->len);
649 static void *dump_worker(void *data)
651 struct metadump_struct *md = (struct metadump_struct *)data;
652 struct async_work *async;
656 pthread_mutex_lock(&md->mutex);
657 while (list_empty(&md->list)) {
659 pthread_mutex_unlock(&md->mutex);
662 pthread_cond_wait(&md->cond, &md->mutex);
664 async = list_entry(md->list.next, struct async_work, list);
665 list_del_init(&async->list);
666 pthread_mutex_unlock(&md->mutex);
668 if (md->compress_level > 0) {
669 u8 *orig = async->buffer;
671 async->bufsize = compressBound(async->size);
672 async->buffer = malloc(async->bufsize);
673 if (!async->buffer) {
674 error("not enough memory for async buffer");
675 pthread_mutex_lock(&md->mutex);
678 pthread_mutex_unlock(&md->mutex);
682 ret = compress2(async->buffer,
683 (unsigned long *)&async->bufsize,
684 orig, async->size, md->compress_level);
692 pthread_mutex_lock(&md->mutex);
694 pthread_mutex_unlock(&md->mutex);
700 static void meta_cluster_init(struct metadump_struct *md, u64 start)
702 struct meta_cluster_header *header;
706 header = &md->cluster->header;
707 header->magic = cpu_to_le64(HEADER_MAGIC);
708 header->bytenr = cpu_to_le64(start);
709 header->nritems = cpu_to_le32(0);
710 header->compress = md->compress_level > 0 ?
711 COMPRESS_ZLIB : COMPRESS_NONE;
714 static void metadump_destroy(struct metadump_struct *md, int num_threads)
719 pthread_mutex_lock(&md->mutex);
721 pthread_cond_broadcast(&md->cond);
722 pthread_mutex_unlock(&md->mutex);
724 for (i = 0; i < num_threads; i++)
725 pthread_join(md->threads[i], NULL);
727 pthread_cond_destroy(&md->cond);
728 pthread_mutex_destroy(&md->mutex);
730 while ((n = rb_first(&md->name_tree))) {
733 name = rb_entry(n, struct name, n);
734 rb_erase(n, &md->name_tree);
743 static int metadump_init(struct metadump_struct *md, struct btrfs_root *root,
744 FILE *out, int num_threads, int compress_level,
749 memset(md, 0, sizeof(*md));
750 md->cluster = calloc(1, BLOCK_SIZE);
753 md->threads = calloc(num_threads, sizeof(pthread_t));
758 INIT_LIST_HEAD(&md->list);
759 INIT_LIST_HEAD(&md->ordered);
762 md->pending_start = (u64)-1;
763 md->compress_level = compress_level;
764 md->sanitize_names = sanitize_names;
765 if (sanitize_names > 1)
766 crc32c_optimization_init();
768 md->name_tree.rb_node = NULL;
769 md->num_threads = num_threads;
770 pthread_cond_init(&md->cond, NULL);
771 pthread_mutex_init(&md->mutex, NULL);
772 meta_cluster_init(md, 0);
777 for (i = 0; i < num_threads; i++) {
778 ret = pthread_create(md->threads + i, NULL, dump_worker, md);
784 metadump_destroy(md, i + 1);
789 static int write_zero(FILE *out, size_t size)
791 static char zero[BLOCK_SIZE];
792 return fwrite(zero, size, 1, out);
795 static int write_buffers(struct metadump_struct *md, u64 *next)
797 struct meta_cluster_header *header = &md->cluster->header;
798 struct meta_cluster_item *item;
799 struct async_work *async;
805 if (list_empty(&md->ordered))
808 /* wait until all buffers are compressed */
809 while (!err && md->num_items > md->num_ready) {
810 struct timespec ts = {
814 pthread_mutex_unlock(&md->mutex);
815 nanosleep(&ts, NULL);
816 pthread_mutex_lock(&md->mutex);
821 error("one of the threads failed: %s", strerror(-err));
825 /* setup and write index block */
826 list_for_each_entry(async, &md->ordered, ordered) {
827 item = md->cluster->items + nritems;
828 item->bytenr = cpu_to_le64(async->start);
829 item->size = cpu_to_le32(async->bufsize);
832 header->nritems = cpu_to_le32(nritems);
834 ret = fwrite(md->cluster, BLOCK_SIZE, 1, md->out);
836 error("unable to write out cluster: %s", strerror(errno));
841 bytenr += le64_to_cpu(header->bytenr) + BLOCK_SIZE;
842 while (!list_empty(&md->ordered)) {
843 async = list_entry(md->ordered.next, struct async_work,
845 list_del_init(&async->ordered);
847 bytenr += async->bufsize;
849 ret = fwrite(async->buffer, async->bufsize, 1,
852 error("unable to write out cluster: %s",
862 /* zero unused space in the last block */
863 if (!err && bytenr & BLOCK_MASK) {
864 size_t size = BLOCK_SIZE - (bytenr & BLOCK_MASK);
867 ret = write_zero(md->out, size);
869 error("unable to zero out buffer: %s",
879 static int read_data_extent(struct metadump_struct *md,
880 struct async_work *async)
882 struct btrfs_root *root = md->root;
883 u64 bytes_left = async->size;
884 u64 logical = async->start;
891 num_copies = btrfs_num_copies(&root->fs_info->mapping_tree, logical,
894 /* Try our best to read data, just like read_tree_block() */
895 for (cur_mirror = 0; cur_mirror < num_copies; cur_mirror++) {
897 read_len = bytes_left;
898 ret = read_extent_data(root,
899 (char *)(async->buffer + offset),
900 logical, &read_len, cur_mirror);
905 bytes_left -= read_len;
913 static int get_dev_fd(struct btrfs_root *root)
915 struct btrfs_device *dev;
917 dev = list_first_entry(&root->fs_info->fs_devices->devices,
918 struct btrfs_device, dev_list);
922 static int flush_pending(struct metadump_struct *md, int done)
924 struct async_work *async = NULL;
925 struct extent_buffer *eb;
926 u64 blocksize = md->root->nodesize;
932 if (md->pending_size) {
933 async = calloc(1, sizeof(*async));
937 async->start = md->pending_start;
938 async->size = md->pending_size;
939 async->bufsize = async->size;
940 async->buffer = malloc(async->bufsize);
941 if (!async->buffer) {
946 start = async->start;
950 ret = read_data_extent(md, async);
959 * Balance can make the mapping not cover the super block, so
960 * just copy directly from one of the devices.
962 if (start == BTRFS_SUPER_INFO_OFFSET) {
963 int fd = get_dev_fd(md->root);
965 ret = pread64(fd, async->buffer, size, start);
969 error("unable to read superblock at %llu: %s",
970 (unsigned long long)start,
978 while (!md->data && size > 0) {
979 u64 this_read = min(blocksize, size);
980 eb = read_tree_block(md->root, start, this_read, 0);
981 if (!extent_buffer_uptodate(eb)) {
984 error("unable to read metadata block %llu",
985 (unsigned long long)start);
988 copy_buffer(md, async->buffer + offset, eb);
989 free_extent_buffer(eb);
995 md->pending_start = (u64)-1;
996 md->pending_size = 0;
1001 pthread_mutex_lock(&md->mutex);
1003 list_add_tail(&async->ordered, &md->ordered);
1005 if (md->compress_level > 0) {
1006 list_add_tail(&async->list, &md->list);
1007 pthread_cond_signal(&md->cond);
1012 if (md->num_items >= ITEMS_PER_CLUSTER || done) {
1013 ret = write_buffers(md, &start);
1015 error("unable to write buffers: %s", strerror(-ret));
1017 meta_cluster_init(md, start);
1019 pthread_mutex_unlock(&md->mutex);
1023 static int add_extent(u64 start, u64 size, struct metadump_struct *md,
1027 if (md->data != data ||
1028 md->pending_size + size > MAX_PENDING_SIZE ||
1029 md->pending_start + md->pending_size != start) {
1030 ret = flush_pending(md, 0);
1033 md->pending_start = start;
1035 readahead_tree_block(md->root, start, size, 0);
1036 md->pending_size += size;
1041 #ifdef BTRFS_COMPAT_EXTENT_TREE_V0
1042 static int is_tree_block(struct btrfs_root *extent_root,
1043 struct btrfs_path *path, u64 bytenr)
1045 struct extent_buffer *leaf;
1046 struct btrfs_key key;
1050 leaf = path->nodes[0];
1052 struct btrfs_extent_ref_v0 *ref_item;
1054 if (path->slots[0] >= btrfs_header_nritems(leaf)) {
1055 ret = btrfs_next_leaf(extent_root, path);
1060 leaf = path->nodes[0];
1062 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
1063 if (key.objectid != bytenr)
1065 if (key.type != BTRFS_EXTENT_REF_V0_KEY)
1067 ref_item = btrfs_item_ptr(leaf, path->slots[0],
1068 struct btrfs_extent_ref_v0);
1069 ref_objectid = btrfs_ref_objectid_v0(leaf, ref_item);
1070 if (ref_objectid < BTRFS_FIRST_FREE_OBJECTID)
1078 static int copy_tree_blocks(struct btrfs_root *root, struct extent_buffer *eb,
1079 struct metadump_struct *metadump, int root_tree)
1081 struct extent_buffer *tmp;
1082 struct btrfs_root_item *ri;
1083 struct btrfs_key key;
1090 ret = add_extent(btrfs_header_bytenr(eb), root->nodesize, metadump, 0);
1092 error("unable to add metadata block %llu: %d",
1093 btrfs_header_bytenr(eb), ret);
1097 if (btrfs_header_level(eb) == 0 && !root_tree)
1100 level = btrfs_header_level(eb);
1101 nritems = btrfs_header_nritems(eb);
1102 for (i = 0; i < nritems; i++) {
1104 btrfs_item_key_to_cpu(eb, &key, i);
1105 if (key.type != BTRFS_ROOT_ITEM_KEY)
1107 ri = btrfs_item_ptr(eb, i, struct btrfs_root_item);
1108 bytenr = btrfs_disk_root_bytenr(eb, ri);
1109 tmp = read_tree_block(root, bytenr, root->nodesize, 0);
1110 if (!extent_buffer_uptodate(tmp)) {
1111 error("unable to read log root block");
1114 ret = copy_tree_blocks(root, tmp, metadump, 0);
1115 free_extent_buffer(tmp);
1119 bytenr = btrfs_node_blockptr(eb, i);
1120 tmp = read_tree_block(root, bytenr, root->nodesize, 0);
1121 if (!extent_buffer_uptodate(tmp)) {
1122 error("unable to read log root block");
1125 ret = copy_tree_blocks(root, tmp, metadump, root_tree);
1126 free_extent_buffer(tmp);
1135 static int copy_log_trees(struct btrfs_root *root,
1136 struct metadump_struct *metadump,
1137 struct btrfs_path *path)
1139 u64 blocknr = btrfs_super_log_root(root->fs_info->super_copy);
1144 if (!root->fs_info->log_root_tree ||
1145 !root->fs_info->log_root_tree->node) {
1146 error("unable to copy tree log, it has not been setup");
1150 return copy_tree_blocks(root, root->fs_info->log_root_tree->node,
1154 static int copy_space_cache(struct btrfs_root *root,
1155 struct metadump_struct *metadump,
1156 struct btrfs_path *path)
1158 struct extent_buffer *leaf;
1159 struct btrfs_file_extent_item *fi;
1160 struct btrfs_key key;
1161 u64 bytenr, num_bytes;
1164 root = root->fs_info->tree_root;
1167 key.type = BTRFS_EXTENT_DATA_KEY;
1170 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
1172 error("free space inode not found: %d", ret);
1176 leaf = path->nodes[0];
1179 if (path->slots[0] >= btrfs_header_nritems(leaf)) {
1180 ret = btrfs_next_leaf(root, path);
1182 error("cannot go to next leaf %d", ret);
1187 leaf = path->nodes[0];
1190 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
1191 if (key.type != BTRFS_EXTENT_DATA_KEY) {
1196 fi = btrfs_item_ptr(leaf, path->slots[0],
1197 struct btrfs_file_extent_item);
1198 if (btrfs_file_extent_type(leaf, fi) !=
1199 BTRFS_FILE_EXTENT_REG) {
1204 bytenr = btrfs_file_extent_disk_bytenr(leaf, fi);
1205 num_bytes = btrfs_file_extent_disk_num_bytes(leaf, fi);
1206 ret = add_extent(bytenr, num_bytes, metadump, 1);
1208 error("unable to add space cache blocks %d", ret);
1209 btrfs_release_path(path);
1218 static int copy_from_extent_tree(struct metadump_struct *metadump,
1219 struct btrfs_path *path)
1221 struct btrfs_root *extent_root;
1222 struct extent_buffer *leaf;
1223 struct btrfs_extent_item *ei;
1224 struct btrfs_key key;
1229 extent_root = metadump->root->fs_info->extent_root;
1230 bytenr = BTRFS_SUPER_INFO_OFFSET + BTRFS_SUPER_INFO_SIZE;
1231 key.objectid = bytenr;
1232 key.type = BTRFS_EXTENT_ITEM_KEY;
1235 ret = btrfs_search_slot(NULL, extent_root, &key, path, 0, 0);
1237 error("extent root not found: %d", ret);
1242 leaf = path->nodes[0];
1245 if (path->slots[0] >= btrfs_header_nritems(leaf)) {
1246 ret = btrfs_next_leaf(extent_root, path);
1248 error("cannot go to next leaf %d", ret);
1255 leaf = path->nodes[0];
1258 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
1259 if (key.objectid < bytenr ||
1260 (key.type != BTRFS_EXTENT_ITEM_KEY &&
1261 key.type != BTRFS_METADATA_ITEM_KEY)) {
1266 bytenr = key.objectid;
1267 if (key.type == BTRFS_METADATA_ITEM_KEY) {
1268 num_bytes = extent_root->nodesize;
1270 num_bytes = key.offset;
1273 if (num_bytes == 0) {
1274 error("extent length 0 at bytenr %llu key type %d",
1275 (unsigned long long)bytenr, key.type);
1280 if (btrfs_item_size_nr(leaf, path->slots[0]) > sizeof(*ei)) {
1281 ei = btrfs_item_ptr(leaf, path->slots[0],
1282 struct btrfs_extent_item);
1283 if (btrfs_extent_flags(leaf, ei) &
1284 BTRFS_EXTENT_FLAG_TREE_BLOCK) {
1285 ret = add_extent(bytenr, num_bytes, metadump,
1288 error("unable to add block %llu: %d",
1289 (unsigned long long)bytenr, ret);
1294 #ifdef BTRFS_COMPAT_EXTENT_TREE_V0
1295 ret = is_tree_block(extent_root, path, bytenr);
1297 error("failed to check tree block %llu: %d",
1298 (unsigned long long)bytenr, ret);
1303 ret = add_extent(bytenr, num_bytes, metadump,
1306 error("unable to add block %llu: %d",
1307 (unsigned long long)bytenr, ret);
1314 "either extent tree is corrupted or you haven't built with V0 support");
1319 bytenr += num_bytes;
1322 btrfs_release_path(path);
1327 static int create_metadump(const char *input, FILE *out, int num_threads,
1328 int compress_level, int sanitize, int walk_trees)
1330 struct btrfs_root *root;
1331 struct btrfs_path *path = NULL;
1332 struct metadump_struct metadump;
1336 root = open_ctree(input, 0, 0);
1338 error("open ctree failed");
1342 ret = metadump_init(&metadump, root, out, num_threads,
1343 compress_level, sanitize);
1345 error("failed to initialize metadump: %d", ret);
1350 ret = add_extent(BTRFS_SUPER_INFO_OFFSET, BTRFS_SUPER_INFO_SIZE,
1353 error("unable to add metadata: %d", ret);
1358 path = btrfs_alloc_path();
1360 error("not enough memory to allocate path");
1366 ret = copy_tree_blocks(root, root->fs_info->chunk_root->node,
1373 ret = copy_tree_blocks(root, root->fs_info->tree_root->node,
1380 ret = copy_from_extent_tree(&metadump, path);
1387 ret = copy_log_trees(root, &metadump, path);
1393 ret = copy_space_cache(root, &metadump, path);
1395 ret = flush_pending(&metadump, 1);
1399 error("failed to flush pending data: %d", ret);
1402 metadump_destroy(&metadump, num_threads);
1404 btrfs_free_path(path);
1405 ret = close_ctree(root);
1406 return err ? err : ret;
1409 static void update_super_old(u8 *buffer)
1411 struct btrfs_super_block *super = (struct btrfs_super_block *)buffer;
1412 struct btrfs_chunk *chunk;
1413 struct btrfs_disk_key *key;
1414 u32 sectorsize = btrfs_super_sectorsize(super);
1415 u64 flags = btrfs_super_flags(super);
1417 flags |= BTRFS_SUPER_FLAG_METADUMP;
1418 btrfs_set_super_flags(super, flags);
1420 key = (struct btrfs_disk_key *)(super->sys_chunk_array);
1421 chunk = (struct btrfs_chunk *)(super->sys_chunk_array +
1422 sizeof(struct btrfs_disk_key));
1424 btrfs_set_disk_key_objectid(key, BTRFS_FIRST_CHUNK_TREE_OBJECTID);
1425 btrfs_set_disk_key_type(key, BTRFS_CHUNK_ITEM_KEY);
1426 btrfs_set_disk_key_offset(key, 0);
1428 btrfs_set_stack_chunk_length(chunk, (u64)-1);
1429 btrfs_set_stack_chunk_owner(chunk, BTRFS_EXTENT_TREE_OBJECTID);
1430 btrfs_set_stack_chunk_stripe_len(chunk, BTRFS_STRIPE_LEN);
1431 btrfs_set_stack_chunk_type(chunk, BTRFS_BLOCK_GROUP_SYSTEM);
1432 btrfs_set_stack_chunk_io_align(chunk, sectorsize);
1433 btrfs_set_stack_chunk_io_width(chunk, sectorsize);
1434 btrfs_set_stack_chunk_sector_size(chunk, sectorsize);
1435 btrfs_set_stack_chunk_num_stripes(chunk, 1);
1436 btrfs_set_stack_chunk_sub_stripes(chunk, 0);
1437 chunk->stripe.devid = super->dev_item.devid;
1438 btrfs_set_stack_stripe_offset(&chunk->stripe, 0);
1439 memcpy(chunk->stripe.dev_uuid, super->dev_item.uuid, BTRFS_UUID_SIZE);
1440 btrfs_set_super_sys_array_size(super, sizeof(*key) + sizeof(*chunk));
1441 csum_block(buffer, BTRFS_SUPER_INFO_SIZE);
1444 static int update_super(struct mdrestore_struct *mdres, u8 *buffer)
1446 struct btrfs_super_block *super = (struct btrfs_super_block *)buffer;
1447 struct btrfs_chunk *chunk;
1448 struct btrfs_disk_key *disk_key;
1449 struct btrfs_key key;
1450 u64 flags = btrfs_super_flags(super);
1451 u32 new_array_size = 0;
1454 u8 *ptr, *write_ptr;
1455 int old_num_stripes;
1457 write_ptr = ptr = super->sys_chunk_array;
1458 array_size = btrfs_super_sys_array_size(super);
1460 while (cur < array_size) {
1461 disk_key = (struct btrfs_disk_key *)ptr;
1462 btrfs_disk_key_to_cpu(&key, disk_key);
1464 new_array_size += sizeof(*disk_key);
1465 memmove(write_ptr, ptr, sizeof(*disk_key));
1467 write_ptr += sizeof(*disk_key);
1468 ptr += sizeof(*disk_key);
1469 cur += sizeof(*disk_key);
1471 if (key.type == BTRFS_CHUNK_ITEM_KEY) {
1472 u64 type, physical, physical_dup, size = 0;
1474 chunk = (struct btrfs_chunk *)ptr;
1475 old_num_stripes = btrfs_stack_chunk_num_stripes(chunk);
1476 chunk = (struct btrfs_chunk *)write_ptr;
1478 memmove(write_ptr, ptr, sizeof(*chunk));
1479 btrfs_set_stack_chunk_sub_stripes(chunk, 0);
1480 type = btrfs_stack_chunk_type(chunk);
1481 if (type & BTRFS_BLOCK_GROUP_DUP) {
1482 new_array_size += sizeof(struct btrfs_stripe);
1483 write_ptr += sizeof(struct btrfs_stripe);
1485 btrfs_set_stack_chunk_num_stripes(chunk, 1);
1486 btrfs_set_stack_chunk_type(chunk,
1487 BTRFS_BLOCK_GROUP_SYSTEM);
1489 chunk->stripe.devid = super->dev_item.devid;
1490 physical = logical_to_physical(mdres, key.offset,
1491 &size, &physical_dup);
1492 if (size != (u64)-1)
1493 btrfs_set_stack_stripe_offset(&chunk->stripe,
1495 memcpy(chunk->stripe.dev_uuid, super->dev_item.uuid,
1497 new_array_size += sizeof(*chunk);
1499 error("bogus key in the sys array %d", key.type);
1502 write_ptr += sizeof(*chunk);
1503 ptr += btrfs_chunk_item_size(old_num_stripes);
1504 cur += btrfs_chunk_item_size(old_num_stripes);
1507 if (mdres->clear_space_cache)
1508 btrfs_set_super_cache_generation(super, 0);
1510 flags |= BTRFS_SUPER_FLAG_METADUMP_V2;
1511 btrfs_set_super_flags(super, flags);
1512 btrfs_set_super_sys_array_size(super, new_array_size);
1513 csum_block(buffer, BTRFS_SUPER_INFO_SIZE);
1518 static struct extent_buffer *alloc_dummy_eb(u64 bytenr, u32 size)
1520 struct extent_buffer *eb;
1522 eb = calloc(1, sizeof(struct extent_buffer) + size);
1531 static void truncate_item(struct extent_buffer *eb, int slot, u32 new_size)
1533 struct btrfs_item *item;
1541 old_size = btrfs_item_size_nr(eb, slot);
1542 if (old_size == new_size)
1545 nritems = btrfs_header_nritems(eb);
1546 data_end = btrfs_item_offset_nr(eb, nritems - 1);
1548 old_data_start = btrfs_item_offset_nr(eb, slot);
1549 size_diff = old_size - new_size;
1551 for (i = slot; i < nritems; i++) {
1553 item = btrfs_item_nr(i);
1554 ioff = btrfs_item_offset(eb, item);
1555 btrfs_set_item_offset(eb, item, ioff + size_diff);
1558 memmove_extent_buffer(eb, btrfs_leaf_data(eb) + data_end + size_diff,
1559 btrfs_leaf_data(eb) + data_end,
1560 old_data_start + new_size - data_end);
1561 item = btrfs_item_nr(slot);
1562 btrfs_set_item_size(eb, item, new_size);
1565 static int fixup_chunk_tree_block(struct mdrestore_struct *mdres,
1566 struct async_work *async, u8 *buffer,
1569 struct extent_buffer *eb;
1570 size_t size_left = size;
1571 u64 bytenr = async->start;
1574 if (size_left % mdres->nodesize)
1577 eb = alloc_dummy_eb(bytenr, mdres->nodesize);
1583 memcpy(eb->data, buffer, mdres->nodesize);
1585 if (btrfs_header_bytenr(eb) != bytenr)
1587 if (memcmp(mdres->fsid,
1588 eb->data + offsetof(struct btrfs_header, fsid),
1592 if (btrfs_header_owner(eb) != BTRFS_CHUNK_TREE_OBJECTID)
1595 if (btrfs_header_level(eb) != 0)
1598 for (i = 0; i < btrfs_header_nritems(eb); i++) {
1599 struct btrfs_chunk *chunk;
1600 struct btrfs_key key;
1601 u64 type, physical, physical_dup, size = (u64)-1;
1603 btrfs_item_key_to_cpu(eb, &key, i);
1604 if (key.type != BTRFS_CHUNK_ITEM_KEY)
1608 physical = logical_to_physical(mdres, key.offset,
1609 &size, &physical_dup);
1612 truncate_item(eb, i, sizeof(*chunk));
1613 chunk = btrfs_item_ptr(eb, i, struct btrfs_chunk);
1616 /* Zero out the RAID profile */
1617 type = btrfs_chunk_type(eb, chunk);
1618 type &= (BTRFS_BLOCK_GROUP_DATA |
1619 BTRFS_BLOCK_GROUP_SYSTEM |
1620 BTRFS_BLOCK_GROUP_METADATA |
1621 BTRFS_BLOCK_GROUP_DUP);
1622 btrfs_set_chunk_type(eb, chunk, type);
1625 btrfs_set_chunk_num_stripes(eb, chunk, 1);
1626 btrfs_set_chunk_sub_stripes(eb, chunk, 0);
1627 btrfs_set_stripe_devid_nr(eb, chunk, 0, mdres->devid);
1628 if (size != (u64)-1)
1629 btrfs_set_stripe_offset_nr(eb, chunk, 0,
1631 /* update stripe 2 offset */
1633 btrfs_set_stripe_offset_nr(eb, chunk, 1,
1636 write_extent_buffer(eb, mdres->uuid,
1637 (unsigned long)btrfs_stripe_dev_uuid_nr(
1641 memcpy(buffer, eb->data, eb->len);
1642 csum_block(buffer, eb->len);
1644 size_left -= mdres->nodesize;
1645 buffer += mdres->nodesize;
1646 bytenr += mdres->nodesize;
1653 static void write_backup_supers(int fd, u8 *buf)
1655 struct btrfs_super_block *super = (struct btrfs_super_block *)buf;
1662 if (fstat(fd, &st)) {
1664 "cannot stat restore point, won't be able to write backup supers: %s",
1669 size = btrfs_device_size(fd, &st);
1671 for (i = 1; i < BTRFS_SUPER_MIRROR_MAX; i++) {
1672 bytenr = btrfs_sb_offset(i);
1673 if (bytenr + BTRFS_SUPER_INFO_SIZE > size)
1675 btrfs_set_super_bytenr(super, bytenr);
1676 csum_block(buf, BTRFS_SUPER_INFO_SIZE);
1677 ret = pwrite64(fd, buf, BTRFS_SUPER_INFO_SIZE, bytenr);
1678 if (ret < BTRFS_SUPER_INFO_SIZE) {
1681 "problem writing out backup super block %d: %s",
1682 i, strerror(errno));
1684 error("short write writing out backup super block");
1690 static void *restore_worker(void *data)
1692 struct mdrestore_struct *mdres = (struct mdrestore_struct *)data;
1693 struct async_work *async;
1699 int compress_size = MAX_PENDING_SIZE * 4;
1701 outfd = fileno(mdres->out);
1702 buffer = malloc(compress_size);
1704 error("not enough memory for restore worker buffer");
1705 pthread_mutex_lock(&mdres->mutex);
1707 mdres->error = -ENOMEM;
1708 pthread_mutex_unlock(&mdres->mutex);
1713 u64 bytenr, physical_dup;
1717 pthread_mutex_lock(&mdres->mutex);
1718 while (!mdres->nodesize || list_empty(&mdres->list)) {
1720 pthread_mutex_unlock(&mdres->mutex);
1723 pthread_cond_wait(&mdres->cond, &mdres->mutex);
1725 async = list_entry(mdres->list.next, struct async_work, list);
1726 list_del_init(&async->list);
1727 pthread_mutex_unlock(&mdres->mutex);
1729 if (mdres->compress_method == COMPRESS_ZLIB) {
1730 size = compress_size;
1731 ret = uncompress(buffer, (unsigned long *)&size,
1732 async->buffer, async->bufsize);
1734 error("decompressiion failed with %d", ret);
1739 outbuf = async->buffer;
1740 size = async->bufsize;
1743 if (!mdres->multi_devices) {
1744 if (async->start == BTRFS_SUPER_INFO_OFFSET) {
1745 if (mdres->old_restore) {
1746 update_super_old(outbuf);
1748 ret = update_super(mdres, outbuf);
1752 } else if (!mdres->old_restore) {
1753 ret = fixup_chunk_tree_block(mdres, async, outbuf, size);
1759 if (!mdres->fixup_offset) {
1761 u64 chunk_size = size;
1763 if (!mdres->multi_devices && !mdres->old_restore)
1764 bytenr = logical_to_physical(mdres,
1765 async->start + offset,
1769 bytenr = async->start + offset;
1771 ret = pwrite64(outfd, outbuf+offset, chunk_size,
1773 if (ret != chunk_size)
1777 ret = pwrite64(outfd, outbuf+offset,
1780 if (ret != chunk_size)
1784 offset += chunk_size;
1789 error("unable to write to device: %s",
1793 error("short write");
1797 } else if (async->start != BTRFS_SUPER_INFO_OFFSET) {
1798 ret = write_data_to_disk(mdres->info, outbuf, async->start, size, 0);
1800 error("failed to write data");
1806 /* backup super blocks are already there at fixup_offset stage */
1807 if (!mdres->multi_devices && async->start == BTRFS_SUPER_INFO_OFFSET)
1808 write_backup_supers(outfd, outbuf);
1810 pthread_mutex_lock(&mdres->mutex);
1811 if (err && !mdres->error)
1814 pthread_mutex_unlock(&mdres->mutex);
1816 free(async->buffer);
1824 static void mdrestore_destroy(struct mdrestore_struct *mdres, int num_threads)
1829 while ((n = rb_first(&mdres->chunk_tree))) {
1830 struct fs_chunk *entry;
1832 entry = rb_entry(n, struct fs_chunk, l);
1833 rb_erase(n, &mdres->chunk_tree);
1834 rb_erase(&entry->p, &mdres->physical_tree);
1837 pthread_mutex_lock(&mdres->mutex);
1839 pthread_cond_broadcast(&mdres->cond);
1840 pthread_mutex_unlock(&mdres->mutex);
1842 for (i = 0; i < num_threads; i++)
1843 pthread_join(mdres->threads[i], NULL);
1845 pthread_cond_destroy(&mdres->cond);
1846 pthread_mutex_destroy(&mdres->mutex);
1847 free(mdres->threads);
1850 static int mdrestore_init(struct mdrestore_struct *mdres,
1851 FILE *in, FILE *out, int old_restore,
1852 int num_threads, int fixup_offset,
1853 struct btrfs_fs_info *info, int multi_devices)
1857 memset(mdres, 0, sizeof(*mdres));
1858 pthread_cond_init(&mdres->cond, NULL);
1859 pthread_mutex_init(&mdres->mutex, NULL);
1860 INIT_LIST_HEAD(&mdres->list);
1861 INIT_LIST_HEAD(&mdres->overlapping_chunks);
1864 mdres->old_restore = old_restore;
1865 mdres->chunk_tree.rb_node = NULL;
1866 mdres->fixup_offset = fixup_offset;
1868 mdres->multi_devices = multi_devices;
1869 mdres->clear_space_cache = 0;
1870 mdres->last_physical_offset = 0;
1871 mdres->alloced_chunks = 0;
1876 mdres->num_threads = num_threads;
1877 mdres->threads = calloc(num_threads, sizeof(pthread_t));
1878 if (!mdres->threads)
1880 for (i = 0; i < num_threads; i++) {
1881 ret = pthread_create(mdres->threads + i, NULL, restore_worker,
1884 /* pthread_create returns errno directly */
1890 mdrestore_destroy(mdres, i + 1);
1894 static int fill_mdres_info(struct mdrestore_struct *mdres,
1895 struct async_work *async)
1897 struct btrfs_super_block *super;
1902 /* We've already been initialized */
1903 if (mdres->nodesize)
1906 if (mdres->compress_method == COMPRESS_ZLIB) {
1907 size_t size = MAX_PENDING_SIZE * 2;
1909 buffer = malloc(MAX_PENDING_SIZE * 2);
1912 ret = uncompress(buffer, (unsigned long *)&size,
1913 async->buffer, async->bufsize);
1915 error("decompressiion failed with %d", ret);
1921 outbuf = async->buffer;
1924 super = (struct btrfs_super_block *)outbuf;
1925 mdres->nodesize = btrfs_super_nodesize(super);
1926 memcpy(mdres->fsid, super->fsid, BTRFS_FSID_SIZE);
1927 memcpy(mdres->uuid, super->dev_item.uuid,
1929 mdres->devid = le64_to_cpu(super->dev_item.devid);
1934 static int add_cluster(struct meta_cluster *cluster,
1935 struct mdrestore_struct *mdres, u64 *next)
1937 struct meta_cluster_item *item;
1938 struct meta_cluster_header *header = &cluster->header;
1939 struct async_work *async;
1944 mdres->compress_method = header->compress;
1946 bytenr = le64_to_cpu(header->bytenr) + BLOCK_SIZE;
1947 nritems = le32_to_cpu(header->nritems);
1948 for (i = 0; i < nritems; i++) {
1949 item = &cluster->items[i];
1950 async = calloc(1, sizeof(*async));
1952 error("not enough memory for async data");
1955 async->start = le64_to_cpu(item->bytenr);
1956 async->bufsize = le32_to_cpu(item->size);
1957 async->buffer = malloc(async->bufsize);
1958 if (!async->buffer) {
1959 error("not enough memory for async buffer");
1963 ret = fread(async->buffer, async->bufsize, 1, mdres->in);
1965 error("unable to read buffer: %s", strerror(errno));
1966 free(async->buffer);
1970 bytenr += async->bufsize;
1972 pthread_mutex_lock(&mdres->mutex);
1973 if (async->start == BTRFS_SUPER_INFO_OFFSET) {
1974 ret = fill_mdres_info(mdres, async);
1976 error("unable to set up restore state");
1977 pthread_mutex_unlock(&mdres->mutex);
1978 free(async->buffer);
1983 list_add_tail(&async->list, &mdres->list);
1985 pthread_cond_signal(&mdres->cond);
1986 pthread_mutex_unlock(&mdres->mutex);
1988 if (bytenr & BLOCK_MASK) {
1989 char buffer[BLOCK_MASK];
1990 size_t size = BLOCK_SIZE - (bytenr & BLOCK_MASK);
1993 ret = fread(buffer, size, 1, mdres->in);
1995 error("failed to read buffer: %s", strerror(errno));
2003 static int wait_for_worker(struct mdrestore_struct *mdres)
2007 pthread_mutex_lock(&mdres->mutex);
2009 while (!ret && mdres->num_items > 0) {
2010 struct timespec ts = {
2012 .tv_nsec = 10000000,
2014 pthread_mutex_unlock(&mdres->mutex);
2015 nanosleep(&ts, NULL);
2016 pthread_mutex_lock(&mdres->mutex);
2019 pthread_mutex_unlock(&mdres->mutex);
2023 static int read_chunk_block(struct mdrestore_struct *mdres, u8 *buffer,
2024 u64 bytenr, u64 item_bytenr, u32 bufsize,
2027 struct extent_buffer *eb;
2031 eb = alloc_dummy_eb(bytenr, mdres->nodesize);
2037 while (item_bytenr != bytenr) {
2038 buffer += mdres->nodesize;
2039 item_bytenr += mdres->nodesize;
2042 memcpy(eb->data, buffer, mdres->nodesize);
2043 if (btrfs_header_bytenr(eb) != bytenr) {
2044 error("eb bytenr does not match found bytenr: %llu != %llu",
2045 (unsigned long long)btrfs_header_bytenr(eb),
2046 (unsigned long long)bytenr);
2051 if (memcmp(mdres->fsid, eb->data + offsetof(struct btrfs_header, fsid),
2053 error("filesystem UUID of eb %llu does not match",
2054 (unsigned long long)bytenr);
2059 if (btrfs_header_owner(eb) != BTRFS_CHUNK_TREE_OBJECTID) {
2060 error("wrong eb %llu owner %llu",
2061 (unsigned long long)bytenr,
2062 (unsigned long long)btrfs_header_owner(eb));
2067 for (i = 0; i < btrfs_header_nritems(eb); i++) {
2068 struct btrfs_chunk *chunk;
2069 struct fs_chunk *fs_chunk;
2070 struct btrfs_key key;
2073 if (btrfs_header_level(eb)) {
2074 u64 blockptr = btrfs_node_blockptr(eb, i);
2076 ret = search_for_chunk_blocks(mdres, blockptr,
2083 /* Yay a leaf! We loves leafs! */
2084 btrfs_item_key_to_cpu(eb, &key, i);
2085 if (key.type != BTRFS_CHUNK_ITEM_KEY)
2088 fs_chunk = malloc(sizeof(struct fs_chunk));
2090 error("not enough memory to allocate chunk");
2094 memset(fs_chunk, 0, sizeof(*fs_chunk));
2095 chunk = btrfs_item_ptr(eb, i, struct btrfs_chunk);
2097 fs_chunk->logical = key.offset;
2098 fs_chunk->physical = btrfs_stripe_offset_nr(eb, chunk, 0);
2099 fs_chunk->bytes = btrfs_chunk_length(eb, chunk);
2100 INIT_LIST_HEAD(&fs_chunk->list);
2101 if (tree_search(&mdres->physical_tree, &fs_chunk->p,
2102 physical_cmp, 1) != NULL)
2103 list_add(&fs_chunk->list, &mdres->overlapping_chunks);
2105 tree_insert(&mdres->physical_tree, &fs_chunk->p,
2108 type = btrfs_chunk_type(eb, chunk);
2109 if (type & BTRFS_BLOCK_GROUP_DUP) {
2110 fs_chunk->physical_dup =
2111 btrfs_stripe_offset_nr(eb, chunk, 1);
2114 if (fs_chunk->physical_dup + fs_chunk->bytes >
2115 mdres->last_physical_offset)
2116 mdres->last_physical_offset = fs_chunk->physical_dup +
2118 else if (fs_chunk->physical + fs_chunk->bytes >
2119 mdres->last_physical_offset)
2120 mdres->last_physical_offset = fs_chunk->physical +
2122 mdres->alloced_chunks += fs_chunk->bytes;
2123 /* in dup case, fs_chunk->bytes should add twice */
2124 if (fs_chunk->physical_dup)
2125 mdres->alloced_chunks += fs_chunk->bytes;
2126 tree_insert(&mdres->chunk_tree, &fs_chunk->l, chunk_cmp);
2133 /* If you have to ask you aren't worthy */
2134 static int search_for_chunk_blocks(struct mdrestore_struct *mdres,
2135 u64 search, u64 cluster_bytenr)
2137 struct meta_cluster *cluster;
2138 struct meta_cluster_header *header;
2139 struct meta_cluster_item *item;
2140 u64 current_cluster = cluster_bytenr, bytenr;
2142 u32 bufsize, nritems, i;
2143 u32 max_size = MAX_PENDING_SIZE * 2;
2144 u8 *buffer, *tmp = NULL;
2147 cluster = malloc(BLOCK_SIZE);
2149 error("not enough memory for cluster");
2153 buffer = malloc(max_size);
2155 error("not enough memory for buffer");
2160 if (mdres->compress_method == COMPRESS_ZLIB) {
2161 tmp = malloc(max_size);
2163 error("not enough memory for buffer");
2170 bytenr = current_cluster;
2172 if (fseek(mdres->in, current_cluster, SEEK_SET)) {
2173 error("seek failed: %s\n", strerror(errno));
2178 ret = fread(cluster, BLOCK_SIZE, 1, mdres->in);
2180 if (cluster_bytenr != 0) {
2182 current_cluster = 0;
2187 "unknown state after reading cluster at %llu, probably crrupted data",
2191 } else if (ret < 0) {
2192 error("unable to read image at %llu: %s",
2193 (unsigned long long)cluster_bytenr,
2199 header = &cluster->header;
2200 if (le64_to_cpu(header->magic) != HEADER_MAGIC ||
2201 le64_to_cpu(header->bytenr) != current_cluster) {
2202 error("bad header in metadump image");
2207 bytenr += BLOCK_SIZE;
2208 nritems = le32_to_cpu(header->nritems);
2209 for (i = 0; i < nritems; i++) {
2212 item = &cluster->items[i];
2213 bufsize = le32_to_cpu(item->size);
2214 item_bytenr = le64_to_cpu(item->bytenr);
2216 if (bufsize > max_size) {
2217 error("item %u too big: %u > %u", i, bufsize,
2223 if (mdres->compress_method == COMPRESS_ZLIB) {
2224 ret = fread(tmp, bufsize, 1, mdres->in);
2226 error("read error: %s", strerror(errno));
2232 ret = uncompress(buffer,
2233 (unsigned long *)&size, tmp,
2236 error("decompressiion failed with %d",
2242 ret = fread(buffer, bufsize, 1, mdres->in);
2244 error("read error: %s",
2253 if (item_bytenr <= search &&
2254 item_bytenr + size > search) {
2255 ret = read_chunk_block(mdres, buffer, search,
2269 if (bytenr & BLOCK_MASK)
2270 bytenr += BLOCK_SIZE - (bytenr & BLOCK_MASK);
2271 current_cluster = bytenr;
2280 static int build_chunk_tree(struct mdrestore_struct *mdres,
2281 struct meta_cluster *cluster)
2283 struct btrfs_super_block *super;
2284 struct meta_cluster_header *header;
2285 struct meta_cluster_item *item = NULL;
2286 u64 chunk_root_bytenr = 0;
2292 /* We can't seek with stdin so don't bother doing this */
2293 if (mdres->in == stdin)
2296 ret = fread(cluster, BLOCK_SIZE, 1, mdres->in);
2298 error("unable to read cluster: %s", strerror(errno));
2303 header = &cluster->header;
2304 if (le64_to_cpu(header->magic) != HEADER_MAGIC ||
2305 le64_to_cpu(header->bytenr) != 0) {
2306 error("bad header in metadump image");
2310 bytenr += BLOCK_SIZE;
2311 mdres->compress_method = header->compress;
2312 nritems = le32_to_cpu(header->nritems);
2313 for (i = 0; i < nritems; i++) {
2314 item = &cluster->items[i];
2316 if (le64_to_cpu(item->bytenr) == BTRFS_SUPER_INFO_OFFSET)
2318 bytenr += le32_to_cpu(item->size);
2319 if (fseek(mdres->in, le32_to_cpu(item->size), SEEK_CUR)) {
2320 error("seek failed: %s\n", strerror(errno));
2325 if (!item || le64_to_cpu(item->bytenr) != BTRFS_SUPER_INFO_OFFSET) {
2326 error("did not find superblock at %llu",
2327 le64_to_cpu(item->bytenr));
2331 buffer = malloc(le32_to_cpu(item->size));
2333 error("not enough memory to allocate buffer");
2337 ret = fread(buffer, le32_to_cpu(item->size), 1, mdres->in);
2339 error("unable to read buffer: %s", strerror(errno));
2344 if (mdres->compress_method == COMPRESS_ZLIB) {
2345 size_t size = MAX_PENDING_SIZE * 2;
2348 tmp = malloc(MAX_PENDING_SIZE * 2);
2353 ret = uncompress(tmp, (unsigned long *)&size,
2354 buffer, le32_to_cpu(item->size));
2356 error("decompressiion failed with %d", ret);
2365 pthread_mutex_lock(&mdres->mutex);
2366 super = (struct btrfs_super_block *)buffer;
2367 chunk_root_bytenr = btrfs_super_chunk_root(super);
2368 mdres->nodesize = btrfs_super_nodesize(super);
2369 memcpy(mdres->fsid, super->fsid, BTRFS_FSID_SIZE);
2370 memcpy(mdres->uuid, super->dev_item.uuid,
2372 mdres->devid = le64_to_cpu(super->dev_item.devid);
2374 pthread_mutex_unlock(&mdres->mutex);
2376 return search_for_chunk_blocks(mdres, chunk_root_bytenr, 0);
2379 static int range_contains_super(u64 physical, u64 bytes)
2384 for (i = 0; i < BTRFS_SUPER_MIRROR_MAX; i++) {
2385 super_bytenr = btrfs_sb_offset(i);
2386 if (super_bytenr >= physical &&
2387 super_bytenr < physical + bytes)
2394 static void remap_overlapping_chunks(struct mdrestore_struct *mdres)
2396 struct fs_chunk *fs_chunk;
2398 while (!list_empty(&mdres->overlapping_chunks)) {
2399 fs_chunk = list_first_entry(&mdres->overlapping_chunks,
2400 struct fs_chunk, list);
2401 list_del_init(&fs_chunk->list);
2402 if (range_contains_super(fs_chunk->physical,
2405 "remapping a chunk that had a super mirror inside of it, clearing space cache so we don't end up with corruption");
2406 mdres->clear_space_cache = 1;
2408 fs_chunk->physical = mdres->last_physical_offset;
2409 tree_insert(&mdres->physical_tree, &fs_chunk->p, physical_cmp);
2410 mdres->last_physical_offset += fs_chunk->bytes;
2414 static int fixup_devices(struct btrfs_fs_info *fs_info,
2415 struct mdrestore_struct *mdres, off_t dev_size)
2417 struct btrfs_trans_handle *trans;
2418 struct btrfs_dev_item *dev_item;
2419 struct btrfs_path *path;
2420 struct extent_buffer *leaf;
2421 struct btrfs_root *root = fs_info->chunk_root;
2422 struct btrfs_key key;
2423 u64 devid, cur_devid;
2426 path = btrfs_alloc_path();
2428 error("not enough memory to allocate path");
2432 trans = btrfs_start_transaction(fs_info->tree_root, 1);
2433 if (IS_ERR(trans)) {
2434 error("cannot starting transaction %ld", PTR_ERR(trans));
2435 btrfs_free_path(path);
2436 return PTR_ERR(trans);
2439 dev_item = &fs_info->super_copy->dev_item;
2441 devid = btrfs_stack_device_id(dev_item);
2443 btrfs_set_stack_device_total_bytes(dev_item, dev_size);
2444 btrfs_set_stack_device_bytes_used(dev_item, mdres->alloced_chunks);
2446 key.objectid = BTRFS_DEV_ITEMS_OBJECTID;
2447 key.type = BTRFS_DEV_ITEM_KEY;
2451 ret = btrfs_search_slot(trans, root, &key, path, -1, 1);
2453 error("search failed: %d", ret);
2458 leaf = path->nodes[0];
2459 if (path->slots[0] >= btrfs_header_nritems(leaf)) {
2460 ret = btrfs_next_leaf(root, path);
2462 error("cannot go to next leaf %d", ret);
2469 leaf = path->nodes[0];
2472 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
2473 if (key.type > BTRFS_DEV_ITEM_KEY)
2475 if (key.type != BTRFS_DEV_ITEM_KEY) {
2480 dev_item = btrfs_item_ptr(leaf, path->slots[0],
2481 struct btrfs_dev_item);
2482 cur_devid = btrfs_device_id(leaf, dev_item);
2483 if (devid != cur_devid) {
2484 ret = btrfs_del_item(trans, root, path);
2486 error("cannot delete item: %d", ret);
2489 btrfs_release_path(path);
2493 btrfs_set_device_total_bytes(leaf, dev_item, dev_size);
2494 btrfs_set_device_bytes_used(leaf, dev_item,
2495 mdres->alloced_chunks);
2496 btrfs_mark_buffer_dirty(leaf);
2500 btrfs_free_path(path);
2501 ret = btrfs_commit_transaction(trans, fs_info->tree_root);
2503 error("unable to commit transaction: %d", ret);
2509 static int restore_metadump(const char *input, FILE *out, int old_restore,
2510 int num_threads, int fixup_offset,
2511 const char *target, int multi_devices)
2513 struct meta_cluster *cluster = NULL;
2514 struct meta_cluster_header *header;
2515 struct mdrestore_struct mdrestore;
2516 struct btrfs_fs_info *info = NULL;
2521 if (!strcmp(input, "-")) {
2524 in = fopen(input, "r");
2526 error("unable to open metadump image: %s",
2532 /* NOTE: open with write mode */
2534 info = open_ctree_fs_info(target, 0, 0, 0,
2536 OPEN_CTREE_RESTORE |
2537 OPEN_CTREE_PARTIAL);
2539 error("open ctree failed");
2545 cluster = malloc(BLOCK_SIZE);
2547 error("not enough memory for cluster");
2552 ret = mdrestore_init(&mdrestore, in, out, old_restore, num_threads,
2553 fixup_offset, info, multi_devices);
2555 error("failed to intialize metadata restore state: %d", ret);
2556 goto failed_cluster;
2559 if (!multi_devices && !old_restore) {
2560 ret = build_chunk_tree(&mdrestore, cluster);
2563 if (!list_empty(&mdrestore.overlapping_chunks))
2564 remap_overlapping_chunks(&mdrestore);
2567 if (in != stdin && fseek(in, 0, SEEK_SET)) {
2568 error("seek failed: %s\n", strerror(errno));
2572 while (!mdrestore.error) {
2573 ret = fread(cluster, BLOCK_SIZE, 1, in);
2577 header = &cluster->header;
2578 if (le64_to_cpu(header->magic) != HEADER_MAGIC ||
2579 le64_to_cpu(header->bytenr) != bytenr) {
2580 error("bad header in metadump image");
2584 ret = add_cluster(cluster, &mdrestore, &bytenr);
2586 error("failed to add cluster: %d", ret);
2590 ret = wait_for_worker(&mdrestore);
2592 if (!ret && !multi_devices && !old_restore) {
2593 struct btrfs_root *root;
2596 root = open_ctree_fd(fileno(out), target, 0,
2597 OPEN_CTREE_PARTIAL |
2599 OPEN_CTREE_NO_DEVICES);
2601 error("open ctree failed in %s", target);
2605 info = root->fs_info;
2607 if (stat(target, &st)) {
2608 error("stat %s failed: %s", target, strerror(errno));
2609 close_ctree(info->chunk_root);
2614 ret = fixup_devices(info, &mdrestore, st.st_size);
2615 close_ctree(info->chunk_root);
2620 mdrestore_destroy(&mdrestore, num_threads);
2624 if (fixup_offset && info)
2625 close_ctree(info->chunk_root);
2632 static int update_disk_super_on_device(struct btrfs_fs_info *info,
2633 const char *other_dev, u64 cur_devid)
2635 struct btrfs_key key;
2636 struct extent_buffer *leaf;
2637 struct btrfs_path path;
2638 struct btrfs_dev_item *dev_item;
2639 struct btrfs_super_block *disk_super;
2640 char dev_uuid[BTRFS_UUID_SIZE];
2641 char fs_uuid[BTRFS_UUID_SIZE];
2642 u64 devid, type, io_align, io_width;
2643 u64 sector_size, total_bytes, bytes_used;
2644 char buf[BTRFS_SUPER_INFO_SIZE];
2648 key.objectid = BTRFS_DEV_ITEMS_OBJECTID;
2649 key.type = BTRFS_DEV_ITEM_KEY;
2650 key.offset = cur_devid;
2652 btrfs_init_path(&path);
2653 ret = btrfs_search_slot(NULL, info->chunk_root, &key, &path, 0, 0);
2655 error("search key failed: %d", ret);
2660 leaf = path.nodes[0];
2661 dev_item = btrfs_item_ptr(leaf, path.slots[0],
2662 struct btrfs_dev_item);
2664 devid = btrfs_device_id(leaf, dev_item);
2665 if (devid != cur_devid) {
2666 error("devid mismatch: %llu != %llu",
2667 (unsigned long long)devid,
2668 (unsigned long long)cur_devid);
2673 type = btrfs_device_type(leaf, dev_item);
2674 io_align = btrfs_device_io_align(leaf, dev_item);
2675 io_width = btrfs_device_io_width(leaf, dev_item);
2676 sector_size = btrfs_device_sector_size(leaf, dev_item);
2677 total_bytes = btrfs_device_total_bytes(leaf, dev_item);
2678 bytes_used = btrfs_device_bytes_used(leaf, dev_item);
2679 read_extent_buffer(leaf, dev_uuid, (unsigned long)btrfs_device_uuid(dev_item), BTRFS_UUID_SIZE);
2680 read_extent_buffer(leaf, fs_uuid, (unsigned long)btrfs_device_fsid(dev_item), BTRFS_UUID_SIZE);
2682 btrfs_release_path(&path);
2684 printf("update disk super on %s devid=%llu\n", other_dev, devid);
2686 /* update other devices' super block */
2687 fp = open(other_dev, O_CREAT | O_RDWR, 0600);
2689 error("could not open %s: %s", other_dev, strerror(errno));
2694 memcpy(buf, info->super_copy, BTRFS_SUPER_INFO_SIZE);
2696 disk_super = (struct btrfs_super_block *)buf;
2697 dev_item = &disk_super->dev_item;
2699 btrfs_set_stack_device_type(dev_item, type);
2700 btrfs_set_stack_device_id(dev_item, devid);
2701 btrfs_set_stack_device_total_bytes(dev_item, total_bytes);
2702 btrfs_set_stack_device_bytes_used(dev_item, bytes_used);
2703 btrfs_set_stack_device_io_align(dev_item, io_align);
2704 btrfs_set_stack_device_io_width(dev_item, io_width);
2705 btrfs_set_stack_device_sector_size(dev_item, sector_size);
2706 memcpy(dev_item->uuid, dev_uuid, BTRFS_UUID_SIZE);
2707 memcpy(dev_item->fsid, fs_uuid, BTRFS_UUID_SIZE);
2708 csum_block((u8 *)buf, BTRFS_SUPER_INFO_SIZE);
2710 ret = pwrite64(fp, buf, BTRFS_SUPER_INFO_SIZE, BTRFS_SUPER_INFO_OFFSET);
2711 if (ret != BTRFS_SUPER_INFO_SIZE) {
2713 error("cannot write superblock: %s", strerror(ret));
2715 error("cannot write superblock");
2720 write_backup_supers(fp, (u8 *)buf);
2728 static void print_usage(int ret)
2730 printf("usage: btrfs-image [options] source target\n");
2731 printf("\t-r \trestore metadump image\n");
2732 printf("\t-c value\tcompression level (0 ~ 9)\n");
2733 printf("\t-t value\tnumber of threads (1 ~ 32)\n");
2734 printf("\t-o \tdon't mess with the chunk tree when restoring\n");
2735 printf("\t-s \tsanitize file names, use once to just use garbage, use twice if you want crc collisions\n");
2736 printf("\t-w \twalk all trees instead of using extent tree, do this if your extent tree is broken\n");
2737 printf("\t-m \trestore for multiple devices\n");
2739 printf("\tIn the dump mode, source is the btrfs device and target is the output file (use '-' for stdout).\n");
2740 printf("\tIn the restore mode, source is the dumped image and target is the btrfs device/file.\n");
2744 int main(int argc, char *argv[])
2748 u64 num_threads = 0;
2749 u64 compress_level = 0;
2751 int old_restore = 0;
2753 int multi_devices = 0;
2757 int usage_error = 0;
2761 static const struct option long_options[] = {
2762 { "help", no_argument, NULL, GETOPT_VAL_HELP},
2763 { NULL, 0, NULL, 0 }
2765 int c = getopt_long(argc, argv, "rc:t:oswm", long_options, NULL);
2773 num_threads = arg_strtou64(optarg);
2774 if (num_threads > 32) {
2775 error("number of threads out of range: %llu",
2776 (unsigned long long)num_threads);
2781 compress_level = arg_strtou64(optarg);
2782 if (compress_level > 9) {
2783 error("compression level out of range: %llu",
2784 (unsigned long long)compress_level);
2801 case GETOPT_VAL_HELP:
2803 print_usage(c != GETOPT_VAL_HELP);
2808 if (check_argc_min(argc - optind, 2))
2811 dev_cnt = argc - optind - 1;
2816 "create and restore cannot be used at the same time");
2820 if (walk_trees || sanitize || compress_level) {
2822 "useing -w, -s, -c options for restore makes no sense");
2825 if (multi_devices && dev_cnt < 2) {
2826 error("not enough devices specified for -m option");
2829 if (!multi_devices && dev_cnt != 1) {
2830 error("accepts only 1 device without -m option");
2838 source = argv[optind];
2839 target = argv[optind + 1];
2841 if (create && !strcmp(target, "-")) {
2844 out = fopen(target, "w+");
2846 error("unable to create target file %s", target);
2851 if (compress_level > 0 || create == 0) {
2852 if (num_threads == 0) {
2853 long tmp = sysconf(_SC_NPROCESSORS_ONLN);
2864 ret = check_mounted(source);
2866 warning("unable to check mount status of: %s",
2869 warning("%s already mounted, results may be inaccurate",
2873 ret = create_metadump(source, out, num_threads,
2874 compress_level, sanitize, walk_trees);
2876 ret = restore_metadump(source, out, old_restore, num_threads,
2877 0, target, multi_devices);
2880 error("%s failed: %s", (create) ? "create" : "restore",
2885 /* extended support for multiple devices */
2886 if (!create && multi_devices) {
2887 struct btrfs_fs_info *info;
2891 info = open_ctree_fs_info(target, 0, 0, 0,
2892 OPEN_CTREE_PARTIAL |
2893 OPEN_CTREE_RESTORE);
2895 error("open ctree failed at %s", target);
2899 total_devs = btrfs_super_num_devices(info->super_copy);
2900 if (total_devs != dev_cnt) {
2901 error("it needs %llu devices but has only %d",
2902 total_devs, dev_cnt);
2903 close_ctree(info->chunk_root);
2907 /* update super block on other disks */
2908 for (i = 2; i <= dev_cnt; i++) {
2909 ret = update_disk_super_on_device(info,
2910 argv[optind + i], (u64)i);
2912 error("update disk superblock failed devid %d: %d",
2914 close_ctree(info->chunk_root);
2919 close_ctree(info->chunk_root);
2921 /* fix metadata block to map correct chunk */
2922 ret = restore_metadump(source, out, 0, num_threads, 1,
2925 error("unable to fixup metadump: %d", ret);
2930 if (out == stdout) {
2934 if (ret && create) {
2937 unlink_ret = unlink(target);
2939 error("unlink output file %s failed: %s",
2940 target, strerror(errno));
2944 btrfs_close_all_devices();