2 * Copyright (C) 2011 Red Hat. 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.
20 #include "kerncompat.h"
28 #include <sys/types.h>
29 #include <lzo/lzoconf.h>
30 #include <lzo/lzo1x.h>
34 #include <sys/types.h>
35 #include <sys/xattr.h>
39 #include "print-tree.h"
40 #include "transaction.h"
46 static char fs_name[4096];
47 static char path_name[4096];
48 static int get_snaps = 0;
49 static int verbose = 0;
50 static int restore_metadata = 0;
51 static int ignore_errors = 0;
52 static int overwrite = 0;
53 static int get_xattrs = 0;
54 static int dry_run = 0;
57 #define PAGE_CACHE_SIZE 4096
58 #define lzo1x_worst_compress(x) ((x) + ((x) / 16) + 64 + 3)
60 static int decompress_zlib(char *inbuf, char *outbuf, u64 compress_len,
66 memset(&strm, 0, sizeof(strm));
67 ret = inflateInit(&strm);
69 fprintf(stderr, "inflate init returnd %d\n", ret);
73 strm.avail_in = compress_len;
74 strm.next_in = (unsigned char *)inbuf;
75 strm.avail_out = decompress_len;
76 strm.next_out = (unsigned char *)outbuf;
77 ret = inflate(&strm, Z_NO_FLUSH);
78 if (ret != Z_STREAM_END) {
79 (void)inflateEnd(&strm);
80 fprintf(stderr, "failed to inflate: %d\n", ret);
84 (void)inflateEnd(&strm);
87 static inline size_t read_compress_length(unsigned char *buf)
90 memcpy(&dlen, buf, LZO_LEN);
91 return le32_to_cpu(dlen);
94 static int decompress_lzo(unsigned char *inbuf, char *outbuf, u64 compress_len,
105 if (ret != LZO_E_OK) {
106 fprintf(stderr, "lzo init returned %d\n", ret);
110 tot_len = read_compress_length(inbuf);
114 while (tot_in < tot_len) {
117 in_len = read_compress_length(inbuf);
119 if ((tot_in + LZO_LEN + in_len) > tot_len) {
120 fprintf(stderr, "bad compress length %lu\n",
121 (unsigned long)in_len);
128 new_len = lzo1x_worst_compress(PAGE_CACHE_SIZE);
129 ret = lzo1x_decompress_safe((const unsigned char *)inbuf, in_len,
130 (unsigned char *)outbuf,
131 (void *)&new_len, NULL);
132 if (ret != LZO_E_OK) {
133 fprintf(stderr, "failed to inflate: %d\n", ret);
142 * If the 4 byte header does not fit to the rest of the page we
143 * have to move to the next one, unless we read some garbage
145 mod_page = tot_in % PAGE_CACHE_SIZE;
146 rem_page = PAGE_CACHE_SIZE - mod_page;
147 if (rem_page < LZO_LEN) {
153 *decompress_len = out_len;
158 static int decompress(char *inbuf, char *outbuf, u64 compress_len,
159 u64 *decompress_len, int compress)
162 case BTRFS_COMPRESS_ZLIB:
163 return decompress_zlib(inbuf, outbuf, compress_len,
165 case BTRFS_COMPRESS_LZO:
166 return decompress_lzo((unsigned char *)inbuf, outbuf, compress_len,
172 fprintf(stderr, "invalid compression type: %d\n", compress);
176 static int next_leaf(struct btrfs_root *root, struct btrfs_path *path)
181 struct extent_buffer *c;
182 struct extent_buffer *next = NULL;
185 for (; level < BTRFS_MAX_LEVEL; level++) {
186 if (path->nodes[level])
190 if (level >= BTRFS_MAX_LEVEL)
193 slot = path->slots[level] + 1;
195 while(level < BTRFS_MAX_LEVEL) {
196 if (!path->nodes[level])
199 slot = path->slots[level] + offset;
200 c = path->nodes[level];
201 if (slot >= btrfs_header_nritems(c)) {
203 if (level == BTRFS_MAX_LEVEL)
210 reada_for_search(root, path, level, slot, 0);
212 next = read_node_slot(root, c, slot);
213 if (extent_buffer_uptodate(next))
217 path->slots[level] = slot;
220 c = path->nodes[level];
221 free_extent_buffer(c);
222 path->nodes[level] = next;
223 path->slots[level] = 0;
227 reada_for_search(root, path, level, 0, 0);
228 next = read_node_slot(root, next, 0);
229 if (!extent_buffer_uptodate(next))
235 static int copy_one_inline(int fd, struct btrfs_path *path, u64 pos)
237 struct extent_buffer *leaf = path->nodes[0];
238 struct btrfs_file_extent_item *fi;
249 fi = btrfs_item_ptr(leaf, path->slots[0],
250 struct btrfs_file_extent_item);
251 ptr = btrfs_file_extent_inline_start(fi);
252 len = btrfs_file_extent_inline_len(leaf, path->slots[0], fi);
253 inline_item_len = btrfs_file_extent_inline_item_len(leaf, btrfs_item_nr(path->slots[0]));
254 read_extent_buffer(leaf, buf, ptr, inline_item_len);
256 compress = btrfs_file_extent_compression(leaf, fi);
257 if (compress == BTRFS_COMPRESS_NONE) {
258 done = pwrite(fd, buf, len, pos);
260 fprintf(stderr, "Short inline write, wanted %d, did "
261 "%zd: %d\n", len, done, errno);
267 ram_size = btrfs_file_extent_ram_bytes(leaf, fi);
268 outbuf = calloc(1, ram_size);
270 fprintf(stderr, "No memory\n");
274 ret = decompress(buf, outbuf, len, &ram_size, compress);
280 done = pwrite(fd, outbuf, ram_size, pos);
282 if (done < ram_size) {
283 fprintf(stderr, "Short compressed inline write, wanted %Lu, "
284 "did %zd: %d\n", ram_size, done, errno);
291 static int copy_one_extent(struct btrfs_root *root, int fd,
292 struct extent_buffer *leaf,
293 struct btrfs_file_extent_item *fi, u64 pos)
295 struct btrfs_multi_bio *multi = NULL;
296 struct btrfs_device *device;
297 char *inbuf, *outbuf = NULL;
298 ssize_t done, total = 0;
314 compress = btrfs_file_extent_compression(leaf, fi);
315 bytenr = btrfs_file_extent_disk_bytenr(leaf, fi);
316 disk_size = btrfs_file_extent_disk_num_bytes(leaf, fi);
317 ram_size = btrfs_file_extent_ram_bytes(leaf, fi);
318 offset = btrfs_file_extent_offset(leaf, fi);
319 num_bytes = btrfs_file_extent_num_bytes(leaf, fi);
320 size_left = disk_size;
321 if (compress == BTRFS_COMPRESS_NONE)
324 if (verbose && offset)
325 printf("offset is %Lu\n", offset);
326 /* we found a hole */
330 inbuf = malloc(size_left);
332 fprintf(stderr, "No memory\n");
336 if (compress != BTRFS_COMPRESS_NONE) {
337 outbuf = calloc(1, ram_size);
339 fprintf(stderr, "No memory\n");
346 ret = btrfs_map_block(&root->fs_info->mapping_tree, READ,
347 bytenr, &length, &multi, mirror_num, NULL);
349 fprintf(stderr, "Error mapping block %d\n", ret);
352 device = multi->stripes[0].dev;
355 dev_bytenr = multi->stripes[0].physical;
358 if (size_left < length)
361 done = pread(dev_fd, inbuf+count, length, dev_bytenr);
362 /* Need both checks, or we miss negative values due to u64 conversion */
363 if (done < 0 || done < length) {
364 num_copies = btrfs_num_copies(&root->fs_info->mapping_tree,
367 /* mirror_num is 1-indexed, so num_copies is a valid mirror. */
368 if (mirror_num > num_copies) {
370 fprintf(stderr, "Exhausted mirrors trying to read\n");
373 fprintf(stderr, "Trying another mirror\n");
384 if (compress == BTRFS_COMPRESS_NONE) {
385 while (total < num_bytes) {
386 done = pwrite(fd, inbuf+total, num_bytes-total,
390 fprintf(stderr, "Error writing: %d %s\n", errno, strerror(errno));
399 ret = decompress(inbuf, outbuf, disk_size, &ram_size, compress);
401 num_copies = btrfs_num_copies(&root->fs_info->mapping_tree,
404 if (mirror_num >= num_copies) {
408 fprintf(stderr, "Trying another mirror\n");
412 while (total < num_bytes) {
413 done = pwrite(fd, outbuf + offset + total,
434 static enum loop_response ask_to_continue(const char *file)
439 printf("We seem to be looping a lot on %s, do you want to keep going "
440 "on ? (y/N/a): ", file);
442 ret = fgets(buf, 2, stdin);
443 if (*ret == '\n' || tolower(*ret) == 'n')
445 if (tolower(*ret) == 'a')
447 if (tolower(*ret) != 'y') {
448 printf("Please enter one of 'y', 'n', or 'a': ");
452 return LOOP_CONTINUE;
456 static int set_file_xattrs(struct btrfs_root *root, u64 inode,
457 int fd, const char *file_name)
459 struct btrfs_key key;
460 struct btrfs_path *path;
461 struct extent_buffer *leaf;
462 struct btrfs_dir_item *di;
471 key.objectid = inode;
472 key.type = BTRFS_XATTR_ITEM_KEY;
475 path = btrfs_alloc_path();
479 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
483 leaf = path->nodes[0];
485 if (path->slots[0] >= btrfs_header_nritems(leaf)) {
487 ret = next_leaf(root, path);
490 "Error searching for extended attributes: %d\n",
494 /* No more leaves to search */
498 leaf = path->nodes[0];
503 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
504 if (key.type != BTRFS_XATTR_ITEM_KEY || key.objectid != inode)
507 total_len = btrfs_item_size_nr(leaf, path->slots[0]);
508 di = btrfs_item_ptr(leaf, path->slots[0],
509 struct btrfs_dir_item);
511 while (cur < total_len) {
512 len = btrfs_dir_name_len(leaf, di);
513 if (len > name_len) {
515 name = (char *) malloc(len + 1);
521 read_extent_buffer(leaf, name,
522 (unsigned long)(di + 1), len);
526 len = btrfs_dir_data_len(leaf, di);
527 if (len > data_len) {
529 data = (char *) malloc(len);
535 read_extent_buffer(leaf, data,
536 (unsigned long)(di + 1) + name_len,
540 if (fsetxattr(fd, name, data, data_len, 0)) {
544 "Error setting extended attribute %s on file %s: %s\n",
545 name, file_name, strerror(err));
548 len = sizeof(*di) + name_len + data_len;
550 di = (struct btrfs_dir_item *)((char *)di + len);
556 btrfs_free_path(path);
563 static int copy_metadata(struct btrfs_root *root, int fd,
564 struct btrfs_key *key)
566 struct btrfs_path *path;
567 struct btrfs_inode_item *inode_item;
570 path = btrfs_alloc_path();
572 fprintf(stderr, "ERROR: Ran out of memory\n");
576 ret = btrfs_lookup_inode(NULL, root, path, key, 0);
578 struct btrfs_timespec *bts;
579 struct timespec times[2];
581 inode_item = btrfs_item_ptr(path->nodes[0], path->slots[0],
582 struct btrfs_inode_item);
584 ret = fchown(fd, btrfs_inode_uid(path->nodes[0], inode_item),
585 btrfs_inode_gid(path->nodes[0], inode_item));
587 fprintf(stderr, "ERROR: Failed to change owner: %s\n",
592 ret = fchmod(fd, btrfs_inode_mode(path->nodes[0], inode_item));
594 fprintf(stderr, "ERROR: Failed to change mode: %s\n",
599 bts = btrfs_inode_atime(inode_item);
600 times[0].tv_sec = btrfs_timespec_sec(path->nodes[0], bts);
601 times[0].tv_nsec = btrfs_timespec_nsec(path->nodes[0], bts);
603 bts = btrfs_inode_mtime(inode_item);
604 times[1].tv_sec = btrfs_timespec_sec(path->nodes[0], bts);
605 times[1].tv_nsec = btrfs_timespec_nsec(path->nodes[0], bts);
607 ret = futimens(fd, times);
609 fprintf(stderr, "ERROR: Failed to set times: %s\n",
615 btrfs_free_path(path);
619 static int copy_file(struct btrfs_root *root, int fd, struct btrfs_key *key,
622 struct extent_buffer *leaf;
623 struct btrfs_path *path;
624 struct btrfs_file_extent_item *fi;
625 struct btrfs_inode_item *inode_item;
626 struct btrfs_timespec *bts;
627 struct btrfs_key found_key;
633 struct timespec times[2];
636 path = btrfs_alloc_path();
638 fprintf(stderr, "Ran out of memory\n");
642 ret = btrfs_lookup_inode(NULL, root, path, key, 0);
644 inode_item = btrfs_item_ptr(path->nodes[0], path->slots[0],
645 struct btrfs_inode_item);
646 found_size = btrfs_inode_size(path->nodes[0], inode_item);
648 if (restore_metadata) {
650 * Change the ownership and mode now, set times when
651 * copyout is finished.
654 ret = fchown(fd, btrfs_inode_uid(path->nodes[0], inode_item),
655 btrfs_inode_gid(path->nodes[0], inode_item));
656 if (ret && !ignore_errors)
659 ret = fchmod(fd, btrfs_inode_mode(path->nodes[0], inode_item));
660 if (ret && !ignore_errors)
663 bts = btrfs_inode_atime(inode_item);
664 times[0].tv_sec = btrfs_timespec_sec(path->nodes[0], bts);
665 times[0].tv_nsec = btrfs_timespec_nsec(path->nodes[0], bts);
667 bts = btrfs_inode_mtime(inode_item);
668 times[1].tv_sec = btrfs_timespec_sec(path->nodes[0], bts);
669 times[1].tv_nsec = btrfs_timespec_nsec(path->nodes[0], bts);
673 btrfs_release_path(path);
676 key->type = BTRFS_EXTENT_DATA_KEY;
678 ret = btrfs_search_slot(NULL, root, key, path, 0, 0);
680 fprintf(stderr, "Error searching %d\n", ret);
684 leaf = path->nodes[0];
686 ret = next_leaf(root, path);
688 fprintf(stderr, "Error getting next leaf %d\n",
691 } else if (ret > 0) {
692 /* No more leaves to search */
696 leaf = path->nodes[0];
700 if (loops >= 0 && loops++ >= 1024) {
701 enum loop_response resp;
703 resp = ask_to_continue(file);
704 if (resp == LOOP_STOP)
706 else if (resp == LOOP_CONTINUE)
708 else if (resp == LOOP_DONTASK)
711 if (path->slots[0] >= btrfs_header_nritems(leaf)) {
713 ret = next_leaf(root, path);
715 fprintf(stderr, "Error searching %d\n", ret);
718 /* No more leaves to search */
719 btrfs_free_path(path);
722 leaf = path->nodes[0];
726 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
727 if (found_key.objectid != key->objectid)
729 if (found_key.type != key->type)
731 fi = btrfs_item_ptr(leaf, path->slots[0],
732 struct btrfs_file_extent_item);
733 extent_type = btrfs_file_extent_type(leaf, fi);
734 compression = btrfs_file_extent_compression(leaf, fi);
735 if (compression >= BTRFS_COMPRESS_LAST) {
736 fprintf(stderr, "Don't support compression yet %d\n",
742 if (extent_type == BTRFS_FILE_EXTENT_PREALLOC)
744 if (extent_type == BTRFS_FILE_EXTENT_INLINE) {
745 ret = copy_one_inline(fd, path, found_key.offset);
748 } else if (extent_type == BTRFS_FILE_EXTENT_REG) {
749 ret = copy_one_extent(root, fd, leaf, fi,
754 printf("Weird extent type %d\n", extent_type);
760 btrfs_free_path(path);
763 ret = ftruncate(fd, (loff_t)found_size);
768 ret = set_file_xattrs(root, key->objectid, fd, file);
772 if (restore_metadata && times_ok) {
773 ret = futimens(fd, times);
780 btrfs_free_path(path);
784 static int search_dir(struct btrfs_root *root, struct btrfs_key *key,
785 const char *output_rootdir, const char *in_dir,
788 struct btrfs_path *path;
789 struct extent_buffer *leaf;
790 struct btrfs_dir_item *dir_item;
791 struct btrfs_key found_key, location;
792 char filename[BTRFS_NAME_LEN + 1];
793 unsigned long name_ptr;
800 path = btrfs_alloc_path();
802 fprintf(stderr, "Ran out of memory\n");
807 key->type = BTRFS_DIR_INDEX_KEY;
809 ret = btrfs_search_slot(NULL, root, key, path, 0, 0);
811 fprintf(stderr, "Error searching %d\n", ret);
815 leaf = path->nodes[0];
818 printf("No leaf after search, looking for the next "
820 ret = next_leaf(root, path);
822 fprintf(stderr, "Error getting next leaf %d\n",
825 } else if (ret > 0) {
826 /* No more leaves to search */
828 printf("Reached the end of the tree looking "
829 "for the directory\n");
833 leaf = path->nodes[0];
837 if (loops++ >= 1024) {
838 printf("We have looped trying to restore files in %s "
839 "too many times to be making progress, "
840 "stopping\n", in_dir);
844 if (path->slots[0] >= btrfs_header_nritems(leaf)) {
846 ret = next_leaf(root, path);
848 fprintf(stderr, "Error searching %d\n",
851 } else if (ret > 0) {
852 /* No more leaves to search */
854 printf("Reached the end of "
855 "the tree searching the"
860 leaf = path->nodes[0];
864 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
865 if (found_key.objectid != key->objectid) {
867 printf("Found objectid=%Lu, key=%Lu\n",
868 found_key.objectid, key->objectid);
871 if (found_key.type != key->type) {
873 printf("Found type=%u, want=%u\n",
874 found_key.type, key->type);
877 dir_item = btrfs_item_ptr(leaf, path->slots[0],
878 struct btrfs_dir_item);
879 name_ptr = (unsigned long)(dir_item + 1);
880 name_len = btrfs_dir_name_len(leaf, dir_item);
881 read_extent_buffer(leaf, filename, name_ptr, name_len);
882 filename[name_len] = '\0';
883 type = btrfs_dir_type(leaf, dir_item);
884 btrfs_dir_item_key_to_cpu(leaf, dir_item, &location);
886 /* full path from root of btrfs being restored */
887 snprintf(fs_name, 4096, "%s/%s", in_dir, filename);
889 if (mreg && REG_NOMATCH == regexec(mreg, fs_name, 0, NULL, 0))
892 /* full path from system root */
893 snprintf(path_name, 4096, "%s%s", output_rootdir, fs_name);
896 * At this point we're only going to restore directories and
897 * files, no symlinks or anything else.
899 if (type == BTRFS_FT_REG_FILE) {
904 ret = stat(path_name, &st);
907 if (verbose || !warn)
908 printf("Skipping existing file"
912 printf("If you wish to overwrite use "
913 "the -o option to overwrite\n");
920 printf("Restoring %s\n", path_name);
923 fd = open(path_name, O_CREAT|O_WRONLY, 0644);
925 fprintf(stderr, "Error creating %s: %d\n",
933 ret = copy_file(root, fd, &location, path_name);
936 fprintf(stderr, "Error copying data for %s\n",
942 } else if (type == BTRFS_FT_DIR) {
943 struct btrfs_root *search_root = root;
944 char *dir = strdup(fs_name);
947 fprintf(stderr, "Ran out of memory\n");
952 if (location.type == BTRFS_ROOT_ITEM_KEY) {
954 * If we are a snapshot and this is the index
955 * object to ourselves just skip it.
957 if (location.objectid ==
958 root->root_key.objectid) {
963 location.offset = (u64)-1;
964 search_root = btrfs_read_fs_root(root->fs_info,
966 if (IS_ERR(search_root)) {
968 fprintf(stderr, "Error reading "
969 "subvolume %s: %lu\n",
971 PTR_ERR(search_root));
974 ret = PTR_ERR(search_root);
979 * A subvolume will have a key.offset of 0, a
980 * snapshot will have key.offset of a transid.
982 if (search_root->root_key.offset != 0 &&
985 printf("Skipping snapshot %s\n",
989 location.objectid = BTRFS_FIRST_FREE_OBJECTID;
993 printf("Restoring %s\n", path_name);
999 ret = mkdir(path_name, 0755);
1000 if (ret && errno != EEXIST) {
1002 fprintf(stderr, "Error mkdiring %s: %d\n",
1010 ret = search_dir(search_root, &location,
1011 output_rootdir, dir, mreg);
1014 fprintf(stderr, "Error searching %s\n",
1025 if (restore_metadata) {
1026 snprintf(path_name, 4096, "%s%s", output_rootdir, in_dir);
1027 fd = open(path_name, O_RDONLY);
1029 fprintf(stderr, "ERROR: Failed to access %s to restore metadata\n",
1031 if (!ignore_errors) {
1037 * Set owner/mode/time on the directory as well
1039 key->type = BTRFS_INODE_ITEM_KEY;
1040 ret = copy_metadata(root, fd, key);
1042 if (ret && !ignore_errors)
1048 printf("Done searching %s\n", in_dir);
1050 btrfs_free_path(path);
1054 static int do_list_roots(struct btrfs_root *root)
1056 struct btrfs_key key;
1057 struct btrfs_key found_key;
1058 struct btrfs_disk_key disk_key;
1059 struct btrfs_path *path;
1060 struct extent_buffer *leaf;
1061 struct btrfs_root_item ri;
1062 unsigned long offset;
1066 root = root->fs_info->tree_root;
1067 path = btrfs_alloc_path();
1069 fprintf(stderr, "Failed to alloc path\n");
1075 key.type = BTRFS_ROOT_ITEM_KEY;
1077 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
1079 fprintf(stderr, "Failed to do search %d\n", ret);
1080 btrfs_free_path(path);
1084 leaf = path->nodes[0];
1087 slot = path->slots[0];
1088 if (slot >= btrfs_header_nritems(leaf)) {
1089 ret = btrfs_next_leaf(root, path);
1092 leaf = path->nodes[0];
1093 slot = path->slots[0];
1095 btrfs_item_key(leaf, &disk_key, slot);
1096 btrfs_disk_key_to_cpu(&found_key, &disk_key);
1097 if (btrfs_key_type(&found_key) != BTRFS_ROOT_ITEM_KEY) {
1102 offset = btrfs_item_ptr_offset(leaf, slot);
1103 read_extent_buffer(leaf, &ri, offset, sizeof(ri));
1105 btrfs_print_key(&disk_key);
1106 printf(" %Lu level %d\n", btrfs_root_bytenr(&ri),
1107 btrfs_root_level(&ri));
1110 btrfs_free_path(path);
1115 static struct btrfs_root *open_fs(const char *dev, u64 root_location,
1116 int super_mirror, int list_roots)
1118 struct btrfs_fs_info *fs_info = NULL;
1119 struct btrfs_root *root = NULL;
1123 for (i = super_mirror; i < BTRFS_SUPER_MIRROR_MAX; i++) {
1124 bytenr = btrfs_sb_offset(i);
1125 fs_info = open_ctree_fs_info(dev, bytenr, root_location,
1126 OPEN_CTREE_PARTIAL);
1129 fprintf(stderr, "Could not open root, trying backup super\n");
1136 * All we really need to succeed is reading the chunk tree, everything
1137 * else we can do by hand, since we only need to read the tree root and
1140 if (!extent_buffer_uptodate(fs_info->tree_root->node)) {
1143 root = fs_info->tree_root;
1145 root_location = btrfs_super_root(fs_info->super_copy);
1146 generation = btrfs_super_generation(fs_info->super_copy);
1147 root->node = read_tree_block(root, root_location,
1148 root->leafsize, generation);
1149 if (!extent_buffer_uptodate(root->node)) {
1150 fprintf(stderr, "Error opening tree root\n");
1156 if (!list_roots && !fs_info->fs_root) {
1157 struct btrfs_key key;
1159 key.objectid = BTRFS_FS_TREE_OBJECTID;
1160 key.type = BTRFS_ROOT_ITEM_KEY;
1161 key.offset = (u64)-1;
1162 fs_info->fs_root = btrfs_read_fs_root_no_cache(fs_info, &key);
1163 if (IS_ERR(fs_info->fs_root)) {
1164 fprintf(stderr, "Couldn't read fs root: %ld\n",
1165 PTR_ERR(fs_info->fs_root));
1166 close_ctree(fs_info->tree_root);
1171 if (list_roots && do_list_roots(fs_info->tree_root)) {
1172 close_ctree(fs_info->tree_root);
1176 return fs_info->fs_root;
1179 static int find_first_dir(struct btrfs_root *root, u64 *objectid)
1181 struct btrfs_path *path;
1182 struct btrfs_key found_key;
1183 struct btrfs_key key;
1188 key.type = BTRFS_DIR_INDEX_KEY;
1191 path = btrfs_alloc_path();
1193 fprintf(stderr, "Ran out of memory\n");
1197 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
1199 fprintf(stderr, "Error searching %d\n", ret);
1203 if (!path->nodes[0]) {
1204 fprintf(stderr, "No leaf!\n");
1208 for (i = path->slots[0];
1209 i < btrfs_header_nritems(path->nodes[0]); i++) {
1210 btrfs_item_key_to_cpu(path->nodes[0], &found_key, i);
1211 if (found_key.type != key.type)
1214 printf("Using objectid %Lu for first dir\n",
1215 found_key.objectid);
1216 *objectid = found_key.objectid;
1221 ret = next_leaf(root, path);
1223 fprintf(stderr, "Error getting next leaf %d\n",
1226 } else if (ret > 0) {
1227 fprintf(stderr, "No more leaves\n");
1230 } while (!path->nodes[0]);
1233 printf("Couldn't find a dir index item\n");
1235 btrfs_free_path(path);
1239 const char * const cmd_restore_usage[] = {
1240 "btrfs restore [options] <device> <path> | -l <device>",
1241 "Try to restore files from a damaged filesystem (unmounted)",
1244 "-x get extended attributes",
1245 "-m|--metadata restore owner, mode and times",
1249 "-t <bytenr> tree location",
1250 "-f <bytenr> filesystem location",
1251 "-u <mirror> super mirror",
1252 "-r <rootid> root objectid",
1254 "-l list tree roots",
1255 "-D|--dry-run dry run (only list files that would be recovered)",
1256 "--path-regex <regex>",
1257 " restore only filenames matching regex,",
1258 " you have to use following syntax (possibly quoted):",
1259 " ^/(|home(|/username(|/Desktop(|/.*))))$",
1260 "-c ignore case (--path-regrex only)",
1264 int cmd_restore(int argc, char **argv)
1266 struct btrfs_root *root;
1267 struct btrfs_key key;
1269 u64 tree_location = 0;
1270 u64 fs_location = 0;
1271 u64 root_objectid = 0;
1274 int super_mirror = 0;
1277 const char *match_regstr = NULL;
1278 int match_cflags = REG_EXTENDED | REG_NOSUB | REG_NEWLINE;
1279 regex_t match_reg, *mreg = NULL;
1284 static const struct option long_options[] = {
1285 { "path-regex", required_argument, NULL, 256},
1286 { "dry-run", no_argument, NULL, 'D'},
1287 { "metadata", no_argument, NULL, 'm'},
1291 opt = getopt_long(argc, argv, "sxviot:u:dmf:r:lDc", long_options,
1310 tree_location = arg_strtou64(optarg);
1313 fs_location = arg_strtou64(optarg);
1316 super_mirror = arg_strtou64(optarg);
1317 if (super_mirror >= BTRFS_SUPER_MIRROR_MAX) {
1318 fprintf(stderr, "Super mirror not "
1327 root_objectid = arg_strtou64(optarg);
1328 if (!is_fstree(root_objectid)) {
1329 fprintf(stderr, "objectid %llu is not a valid fs/file tree\n",
1338 restore_metadata = 1;
1344 match_cflags |= REG_ICASE;
1346 /* long option without single letter alternative */
1348 match_regstr = optarg;
1354 usage(cmd_restore_usage);
1358 if (!list_roots && check_argc_min(argc - optind, 2))
1359 usage(cmd_restore_usage);
1360 else if (list_roots && check_argc_min(argc - optind, 1))
1361 usage(cmd_restore_usage);
1363 if (fs_location && root_objectid) {
1364 fprintf(stderr, "don't use -f and -r at the same time.\n");
1368 if ((ret = check_mounted(argv[optind])) < 0) {
1369 fprintf(stderr, "Could not check mount status: %s\n",
1373 fprintf(stderr, "%s is currently mounted. Aborting.\n", argv[optind]);
1377 root = open_fs(argv[optind], tree_location, super_mirror, list_roots);
1384 if (fs_location != 0) {
1385 free_extent_buffer(root->node);
1386 root->node = read_tree_block(root, fs_location, root->leafsize, 0);
1387 if (!extent_buffer_uptodate(root->node)) {
1388 fprintf(stderr, "Failed to read fs location\n");
1394 memset(path_name, 0, 4096);
1396 strncpy(dir_name, argv[optind + 1], sizeof dir_name);
1397 dir_name[sizeof dir_name - 1] = 0;
1399 /* Strip the trailing / on the dir name */
1400 len = strlen(dir_name);
1401 while (len && dir_name[--len] == '/') {
1402 dir_name[len] = '\0';
1405 if (root_objectid != 0) {
1406 struct btrfs_root *orig_root = root;
1408 key.objectid = root_objectid;
1409 key.type = BTRFS_ROOT_ITEM_KEY;
1410 key.offset = (u64)-1;
1411 root = btrfs_read_fs_root(orig_root->fs_info, &key);
1413 fprintf(stderr, "fail to read root %llu: %s\n",
1414 root_objectid, strerror(-PTR_ERR(root)));
1424 ret = find_first_dir(root, &key.objectid);
1428 key.objectid = BTRFS_FIRST_FREE_OBJECTID;
1432 ret = regcomp(&match_reg, match_regstr, match_cflags);
1434 regerror(ret, &match_reg, reg_err, sizeof(reg_err));
1435 fprintf(stderr, "Regex compile failed: %s\n", reg_err);
1442 printf("This is a dry-run, no files are going to be restored\n");
1444 ret = search_dir(root, &key, dir_name, "", mreg);