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[PATH_MAX];
47 static char path_name[PATH_MAX];
48 static char symlink_target[PATH_MAX];
49 static int get_snaps = 0;
50 static int verbose = 0;
51 static int restore_metadata = 0;
52 static int restore_symlinks = 0;
53 static int ignore_errors = 0;
54 static int overwrite = 0;
55 static int get_xattrs = 0;
56 static int dry_run = 0;
59 #define PAGE_CACHE_SIZE 4096
60 #define lzo1x_worst_compress(x) ((x) + ((x) / 16) + 64 + 3)
62 static int decompress_zlib(char *inbuf, char *outbuf, u64 compress_len,
68 memset(&strm, 0, sizeof(strm));
69 ret = inflateInit(&strm);
71 fprintf(stderr, "inflate init returnd %d\n", ret);
75 strm.avail_in = compress_len;
76 strm.next_in = (unsigned char *)inbuf;
77 strm.avail_out = decompress_len;
78 strm.next_out = (unsigned char *)outbuf;
79 ret = inflate(&strm, Z_NO_FLUSH);
80 if (ret != Z_STREAM_END) {
81 (void)inflateEnd(&strm);
82 fprintf(stderr, "failed to inflate: %d\n", ret);
86 (void)inflateEnd(&strm);
89 static inline size_t read_compress_length(unsigned char *buf)
92 memcpy(&dlen, buf, LZO_LEN);
93 return le32_to_cpu(dlen);
96 static int decompress_lzo(unsigned char *inbuf, char *outbuf, u64 compress_len,
107 if (ret != LZO_E_OK) {
108 fprintf(stderr, "lzo init returned %d\n", ret);
112 tot_len = read_compress_length(inbuf);
116 while (tot_in < tot_len) {
119 in_len = read_compress_length(inbuf);
121 if ((tot_in + LZO_LEN + in_len) > tot_len) {
122 fprintf(stderr, "bad compress length %lu\n",
123 (unsigned long)in_len);
130 new_len = lzo1x_worst_compress(PAGE_CACHE_SIZE);
131 ret = lzo1x_decompress_safe((const unsigned char *)inbuf, in_len,
132 (unsigned char *)outbuf,
133 (void *)&new_len, NULL);
134 if (ret != LZO_E_OK) {
135 fprintf(stderr, "failed to inflate: %d\n", ret);
144 * If the 4 byte header does not fit to the rest of the page we
145 * have to move to the next one, unless we read some garbage
147 mod_page = tot_in % PAGE_CACHE_SIZE;
148 rem_page = PAGE_CACHE_SIZE - mod_page;
149 if (rem_page < LZO_LEN) {
155 *decompress_len = out_len;
160 static int decompress(char *inbuf, char *outbuf, u64 compress_len,
161 u64 *decompress_len, int compress)
164 case BTRFS_COMPRESS_ZLIB:
165 return decompress_zlib(inbuf, outbuf, compress_len,
167 case BTRFS_COMPRESS_LZO:
168 return decompress_lzo((unsigned char *)inbuf, outbuf, compress_len,
174 fprintf(stderr, "invalid compression type: %d\n", compress);
178 static int next_leaf(struct btrfs_root *root, struct btrfs_path *path)
183 struct extent_buffer *c;
184 struct extent_buffer *next = NULL;
187 for (; level < BTRFS_MAX_LEVEL; level++) {
188 if (path->nodes[level])
192 if (level >= BTRFS_MAX_LEVEL)
195 slot = path->slots[level] + 1;
197 while(level < BTRFS_MAX_LEVEL) {
198 if (!path->nodes[level])
201 slot = path->slots[level] + offset;
202 c = path->nodes[level];
203 if (slot >= btrfs_header_nritems(c)) {
205 if (level == BTRFS_MAX_LEVEL)
212 reada_for_search(root, path, level, slot, 0);
214 next = read_node_slot(root, c, slot);
215 if (extent_buffer_uptodate(next))
219 path->slots[level] = slot;
222 c = path->nodes[level];
223 free_extent_buffer(c);
224 path->nodes[level] = next;
225 path->slots[level] = 0;
229 reada_for_search(root, path, level, 0, 0);
230 next = read_node_slot(root, next, 0);
231 if (!extent_buffer_uptodate(next))
237 static int copy_one_inline(int fd, struct btrfs_path *path, u64 pos)
239 struct extent_buffer *leaf = path->nodes[0];
240 struct btrfs_file_extent_item *fi;
251 fi = btrfs_item_ptr(leaf, path->slots[0],
252 struct btrfs_file_extent_item);
253 ptr = btrfs_file_extent_inline_start(fi);
254 len = btrfs_file_extent_inline_len(leaf, path->slots[0], fi);
255 inline_item_len = btrfs_file_extent_inline_item_len(leaf, btrfs_item_nr(path->slots[0]));
256 read_extent_buffer(leaf, buf, ptr, inline_item_len);
258 compress = btrfs_file_extent_compression(leaf, fi);
259 if (compress == BTRFS_COMPRESS_NONE) {
260 done = pwrite(fd, buf, len, pos);
262 fprintf(stderr, "Short inline write, wanted %d, did "
263 "%zd: %d\n", len, done, errno);
269 ram_size = btrfs_file_extent_ram_bytes(leaf, fi);
270 outbuf = calloc(1, ram_size);
272 fprintf(stderr, "No memory\n");
276 ret = decompress(buf, outbuf, len, &ram_size, compress);
282 done = pwrite(fd, outbuf, ram_size, pos);
284 if (done < ram_size) {
285 fprintf(stderr, "Short compressed inline write, wanted %Lu, "
286 "did %zd: %d\n", ram_size, done, errno);
293 static int copy_one_extent(struct btrfs_root *root, int fd,
294 struct extent_buffer *leaf,
295 struct btrfs_file_extent_item *fi, u64 pos)
297 struct btrfs_multi_bio *multi = NULL;
298 struct btrfs_device *device;
299 char *inbuf, *outbuf = NULL;
300 ssize_t done, total = 0;
316 compress = btrfs_file_extent_compression(leaf, fi);
317 bytenr = btrfs_file_extent_disk_bytenr(leaf, fi);
318 disk_size = btrfs_file_extent_disk_num_bytes(leaf, fi);
319 ram_size = btrfs_file_extent_ram_bytes(leaf, fi);
320 offset = btrfs_file_extent_offset(leaf, fi);
321 num_bytes = btrfs_file_extent_num_bytes(leaf, fi);
322 size_left = disk_size;
323 if (compress == BTRFS_COMPRESS_NONE)
326 if (verbose && offset)
327 printf("offset is %Lu\n", offset);
328 /* we found a hole */
332 inbuf = malloc(size_left);
334 fprintf(stderr, "No memory\n");
338 if (compress != BTRFS_COMPRESS_NONE) {
339 outbuf = calloc(1, ram_size);
341 fprintf(stderr, "No memory\n");
348 ret = btrfs_map_block(&root->fs_info->mapping_tree, READ,
349 bytenr, &length, &multi, mirror_num, NULL);
351 fprintf(stderr, "Error mapping block %d\n", ret);
354 device = multi->stripes[0].dev;
357 dev_bytenr = multi->stripes[0].physical;
360 if (size_left < length)
363 done = pread(dev_fd, inbuf+count, length, dev_bytenr);
364 /* Need both checks, or we miss negative values due to u64 conversion */
365 if (done < 0 || done < length) {
366 num_copies = btrfs_num_copies(&root->fs_info->mapping_tree,
369 /* mirror_num is 1-indexed, so num_copies is a valid mirror. */
370 if (mirror_num > num_copies) {
372 fprintf(stderr, "Exhausted mirrors trying to read\n");
375 fprintf(stderr, "Trying another mirror\n");
386 if (compress == BTRFS_COMPRESS_NONE) {
387 while (total < num_bytes) {
388 done = pwrite(fd, inbuf+total, num_bytes-total,
392 fprintf(stderr, "Error writing: %d %s\n", errno, strerror(errno));
401 ret = decompress(inbuf, outbuf, disk_size, &ram_size, compress);
403 num_copies = btrfs_num_copies(&root->fs_info->mapping_tree,
406 if (mirror_num >= num_copies) {
410 fprintf(stderr, "Trying another mirror\n");
414 while (total < num_bytes) {
415 done = pwrite(fd, outbuf + offset + total,
436 static enum loop_response ask_to_continue(const char *file)
441 printf("We seem to be looping a lot on %s, do you want to keep going "
442 "on ? (y/N/a): ", file);
444 ret = fgets(buf, 2, stdin);
445 if (*ret == '\n' || tolower(*ret) == 'n')
447 if (tolower(*ret) == 'a')
449 if (tolower(*ret) != 'y') {
450 printf("Please enter one of 'y', 'n', or 'a': ");
454 return LOOP_CONTINUE;
458 static int set_file_xattrs(struct btrfs_root *root, u64 inode,
459 int fd, const char *file_name)
461 struct btrfs_key key;
462 struct btrfs_path *path;
463 struct extent_buffer *leaf;
464 struct btrfs_dir_item *di;
473 key.objectid = inode;
474 key.type = BTRFS_XATTR_ITEM_KEY;
477 path = btrfs_alloc_path();
481 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
485 leaf = path->nodes[0];
487 if (path->slots[0] >= btrfs_header_nritems(leaf)) {
489 ret = next_leaf(root, path);
492 "Error searching for extended attributes: %d\n",
496 /* No more leaves to search */
500 leaf = path->nodes[0];
505 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
506 if (key.type != BTRFS_XATTR_ITEM_KEY || key.objectid != inode)
509 total_len = btrfs_item_size_nr(leaf, path->slots[0]);
510 di = btrfs_item_ptr(leaf, path->slots[0],
511 struct btrfs_dir_item);
513 while (cur < total_len) {
514 len = btrfs_dir_name_len(leaf, di);
515 if (len > name_len) {
517 name = (char *) malloc(len + 1);
523 read_extent_buffer(leaf, name,
524 (unsigned long)(di + 1), len);
528 len = btrfs_dir_data_len(leaf, di);
529 if (len > data_len) {
531 data = (char *) malloc(len);
537 read_extent_buffer(leaf, data,
538 (unsigned long)(di + 1) + name_len,
542 if (fsetxattr(fd, name, data, data_len, 0)) {
546 "Error setting extended attribute %s on file %s: %s\n",
547 name, file_name, strerror(err));
550 len = sizeof(*di) + name_len + data_len;
552 di = (struct btrfs_dir_item *)((char *)di + len);
558 btrfs_free_path(path);
565 static int copy_metadata(struct btrfs_root *root, int fd,
566 struct btrfs_key *key)
568 struct btrfs_path *path;
569 struct btrfs_inode_item *inode_item;
572 path = btrfs_alloc_path();
574 fprintf(stderr, "ERROR: Ran out of memory\n");
578 ret = btrfs_lookup_inode(NULL, root, path, key, 0);
580 struct btrfs_timespec *bts;
581 struct timespec times[2];
583 inode_item = btrfs_item_ptr(path->nodes[0], path->slots[0],
584 struct btrfs_inode_item);
586 ret = fchown(fd, btrfs_inode_uid(path->nodes[0], inode_item),
587 btrfs_inode_gid(path->nodes[0], inode_item));
589 fprintf(stderr, "ERROR: Failed to change owner: %s\n",
594 ret = fchmod(fd, btrfs_inode_mode(path->nodes[0], inode_item));
596 fprintf(stderr, "ERROR: Failed to change mode: %s\n",
601 bts = btrfs_inode_atime(inode_item);
602 times[0].tv_sec = btrfs_timespec_sec(path->nodes[0], bts);
603 times[0].tv_nsec = btrfs_timespec_nsec(path->nodes[0], bts);
605 bts = btrfs_inode_mtime(inode_item);
606 times[1].tv_sec = btrfs_timespec_sec(path->nodes[0], bts);
607 times[1].tv_nsec = btrfs_timespec_nsec(path->nodes[0], bts);
609 ret = futimens(fd, times);
611 fprintf(stderr, "ERROR: Failed to set times: %s\n",
617 btrfs_free_path(path);
621 static int copy_file(struct btrfs_root *root, int fd, struct btrfs_key *key,
624 struct extent_buffer *leaf;
625 struct btrfs_path *path;
626 struct btrfs_file_extent_item *fi;
627 struct btrfs_inode_item *inode_item;
628 struct btrfs_timespec *bts;
629 struct btrfs_key found_key;
635 struct timespec times[2];
638 path = btrfs_alloc_path();
640 fprintf(stderr, "Ran out of memory\n");
644 ret = btrfs_lookup_inode(NULL, root, path, key, 0);
646 inode_item = btrfs_item_ptr(path->nodes[0], path->slots[0],
647 struct btrfs_inode_item);
648 found_size = btrfs_inode_size(path->nodes[0], inode_item);
650 if (restore_metadata) {
652 * Change the ownership and mode now, set times when
653 * copyout is finished.
656 ret = fchown(fd, btrfs_inode_uid(path->nodes[0], inode_item),
657 btrfs_inode_gid(path->nodes[0], inode_item));
658 if (ret && !ignore_errors)
661 ret = fchmod(fd, btrfs_inode_mode(path->nodes[0], inode_item));
662 if (ret && !ignore_errors)
665 bts = btrfs_inode_atime(inode_item);
666 times[0].tv_sec = btrfs_timespec_sec(path->nodes[0], bts);
667 times[0].tv_nsec = btrfs_timespec_nsec(path->nodes[0], bts);
669 bts = btrfs_inode_mtime(inode_item);
670 times[1].tv_sec = btrfs_timespec_sec(path->nodes[0], bts);
671 times[1].tv_nsec = btrfs_timespec_nsec(path->nodes[0], bts);
675 btrfs_release_path(path);
678 key->type = BTRFS_EXTENT_DATA_KEY;
680 ret = btrfs_search_slot(NULL, root, key, path, 0, 0);
682 fprintf(stderr, "Error searching %d\n", ret);
686 leaf = path->nodes[0];
688 ret = next_leaf(root, path);
690 fprintf(stderr, "Error getting next leaf %d\n",
693 } else if (ret > 0) {
694 /* No more leaves to search */
698 leaf = path->nodes[0];
702 if (loops >= 0 && loops++ >= 1024) {
703 enum loop_response resp;
705 resp = ask_to_continue(file);
706 if (resp == LOOP_STOP)
708 else if (resp == LOOP_CONTINUE)
710 else if (resp == LOOP_DONTASK)
713 if (path->slots[0] >= btrfs_header_nritems(leaf)) {
715 ret = next_leaf(root, path);
717 fprintf(stderr, "Error searching %d\n", ret);
720 /* No more leaves to search */
721 btrfs_free_path(path);
724 leaf = path->nodes[0];
728 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
729 if (found_key.objectid != key->objectid)
731 if (found_key.type != key->type)
733 fi = btrfs_item_ptr(leaf, path->slots[0],
734 struct btrfs_file_extent_item);
735 extent_type = btrfs_file_extent_type(leaf, fi);
736 compression = btrfs_file_extent_compression(leaf, fi);
737 if (compression >= BTRFS_COMPRESS_LAST) {
738 fprintf(stderr, "Don't support compression yet %d\n",
744 if (extent_type == BTRFS_FILE_EXTENT_PREALLOC)
746 if (extent_type == BTRFS_FILE_EXTENT_INLINE) {
747 ret = copy_one_inline(fd, path, found_key.offset);
750 } else if (extent_type == BTRFS_FILE_EXTENT_REG) {
751 ret = copy_one_extent(root, fd, leaf, fi,
756 printf("Weird extent type %d\n", extent_type);
762 btrfs_free_path(path);
765 ret = ftruncate(fd, (loff_t)found_size);
770 ret = set_file_xattrs(root, key->objectid, fd, file);
774 if (restore_metadata && times_ok) {
775 ret = futimens(fd, times);
782 btrfs_free_path(path);
788 * 0 if the file exists and should be skipped.
789 * 1 if the file does NOT exist
790 * 2 if the file exists but is OK to overwrite
792 static int overwrite_ok(const char * path)
798 /* don't be fooled by symlinks */
799 ret = fstatat(-1, path_name, &st, AT_SYMLINK_NOFOLLOW);
805 if (verbose || !warn)
806 printf("Skipping existing file"
809 printf("If you wish to overwrite use -o\n");
816 static int copy_symlink(struct btrfs_root *root, struct btrfs_key *key,
819 struct btrfs_path *path;
820 struct extent_buffer *leaf;
821 struct btrfs_file_extent_item *extent_item;
822 struct btrfs_inode_item *inode_item;
826 struct btrfs_timespec *bts;
827 struct timespec times[2];
829 ret = overwrite_ok(path_name);
831 return 0; /* skip this file */
833 /* symlink() can't overwrite, so unlink first */
835 ret = unlink(path_name);
837 fprintf(stderr, "failed to unlink '%s' for overwrite\n",
843 key->type = BTRFS_EXTENT_DATA_KEY;
846 path = btrfs_alloc_path();
850 ret = btrfs_search_slot(NULL, root, key, path, 0, 0);
854 leaf = path->nodes[0];
856 fprintf(stderr, "Error getting leaf for symlink '%s'\n", file);
861 extent_item = btrfs_item_ptr(leaf, path->slots[0],
862 struct btrfs_file_extent_item);
864 len = btrfs_file_extent_inline_item_len(leaf,
865 btrfs_item_nr(path->slots[0]));
866 if (len >= PATH_MAX) {
867 fprintf(stderr, "Symlink '%s' target length %d is longer than PATH_MAX\n",
873 name_offset = (unsigned long) extent_item
874 + offsetof(struct btrfs_file_extent_item, disk_bytenr);
875 read_extent_buffer(leaf, symlink_target, name_offset, len);
877 symlink_target[len] = 0;
880 ret = symlink(symlink_target, path_name);
882 fprintf(stderr, "Failed to restore symlink '%s': %s\n",
883 path_name, strerror(errno));
887 printf("SYMLINK: '%s' => '%s'\n", path_name, symlink_target);
890 if (!restore_metadata)
894 * Symlink metadata operates differently than files/directories, so do
897 key->type = BTRFS_INODE_ITEM_KEY;
900 btrfs_release_path(path);
902 ret = btrfs_lookup_inode(NULL, root, path, key, 0);
904 fprintf(stderr, "Failed to lookup inode for '%s'\n", file);
908 inode_item = btrfs_item_ptr(path->nodes[0], path->slots[0],
909 struct btrfs_inode_item);
911 ret = fchownat(-1, file, btrfs_inode_uid(path->nodes[0], inode_item),
912 btrfs_inode_gid(path->nodes[0], inode_item),
913 AT_SYMLINK_NOFOLLOW);
915 fprintf(stderr, "Failed to change owner: %s\n",
920 bts = btrfs_inode_atime(inode_item);
921 times[0].tv_sec = btrfs_timespec_sec(path->nodes[0], bts);
922 times[0].tv_nsec = btrfs_timespec_nsec(path->nodes[0], bts);
924 bts = btrfs_inode_mtime(inode_item);
925 times[1].tv_sec = btrfs_timespec_sec(path->nodes[0], bts);
926 times[1].tv_nsec = btrfs_timespec_nsec(path->nodes[0], bts);
928 ret = utimensat(-1, file, times, AT_SYMLINK_NOFOLLOW);
930 fprintf(stderr, "Failed to set times: %s\n", strerror(errno));
932 btrfs_free_path(path);
936 static int search_dir(struct btrfs_root *root, struct btrfs_key *key,
937 const char *output_rootdir, const char *in_dir,
940 struct btrfs_path *path;
941 struct extent_buffer *leaf;
942 struct btrfs_dir_item *dir_item;
943 struct btrfs_key found_key, location;
944 char filename[BTRFS_NAME_LEN + 1];
945 unsigned long name_ptr;
952 path = btrfs_alloc_path();
954 fprintf(stderr, "Ran out of memory\n");
959 key->type = BTRFS_DIR_INDEX_KEY;
961 ret = btrfs_search_slot(NULL, root, key, path, 0, 0);
963 fprintf(stderr, "Error searching %d\n", ret);
969 leaf = path->nodes[0];
972 printf("No leaf after search, looking for the next "
974 ret = next_leaf(root, path);
976 fprintf(stderr, "Error getting next leaf %d\n",
979 } else if (ret > 0) {
980 /* No more leaves to search */
982 printf("Reached the end of the tree looking "
983 "for the directory\n");
987 leaf = path->nodes[0];
991 if (loops++ >= 1024) {
992 printf("We have looped trying to restore files in %s "
993 "too many times to be making progress, "
994 "stopping\n", in_dir);
998 if (path->slots[0] >= btrfs_header_nritems(leaf)) {
1000 ret = next_leaf(root, path);
1002 fprintf(stderr, "Error searching %d\n",
1005 } else if (ret > 0) {
1006 /* No more leaves to search */
1008 printf("Reached the end of "
1009 "the tree searching the"
1014 leaf = path->nodes[0];
1018 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
1019 if (found_key.objectid != key->objectid) {
1021 printf("Found objectid=%Lu, key=%Lu\n",
1022 found_key.objectid, key->objectid);
1025 if (found_key.type != key->type) {
1027 printf("Found type=%u, want=%u\n",
1028 found_key.type, key->type);
1031 dir_item = btrfs_item_ptr(leaf, path->slots[0],
1032 struct btrfs_dir_item);
1033 name_ptr = (unsigned long)(dir_item + 1);
1034 name_len = btrfs_dir_name_len(leaf, dir_item);
1035 read_extent_buffer(leaf, filename, name_ptr, name_len);
1036 filename[name_len] = '\0';
1037 type = btrfs_dir_type(leaf, dir_item);
1038 btrfs_dir_item_key_to_cpu(leaf, dir_item, &location);
1040 /* full path from root of btrfs being restored */
1041 snprintf(fs_name, PATH_MAX, "%s/%s", in_dir, filename);
1043 if (mreg && REG_NOMATCH == regexec(mreg, fs_name, 0, NULL, 0))
1046 /* full path from system root */
1047 snprintf(path_name, PATH_MAX, "%s%s", output_rootdir, fs_name);
1050 * Restore directories, files, symlinks and metadata.
1052 if (type == BTRFS_FT_REG_FILE) {
1053 if (!overwrite_ok(path_name))
1057 printf("Restoring %s\n", path_name);
1060 fd = open(path_name, O_CREAT|O_WRONLY, 0644);
1062 fprintf(stderr, "Error creating %s: %d\n",
1070 ret = copy_file(root, fd, &location, path_name);
1073 fprintf(stderr, "Error copying data for %s\n",
1079 } else if (type == BTRFS_FT_DIR) {
1080 struct btrfs_root *search_root = root;
1081 char *dir = strdup(fs_name);
1084 fprintf(stderr, "Ran out of memory\n");
1089 if (location.type == BTRFS_ROOT_ITEM_KEY) {
1091 * If we are a snapshot and this is the index
1092 * object to ourselves just skip it.
1094 if (location.objectid ==
1095 root->root_key.objectid) {
1100 location.offset = (u64)-1;
1101 search_root = btrfs_read_fs_root(root->fs_info,
1103 if (IS_ERR(search_root)) {
1105 fprintf(stderr, "Error reading "
1106 "subvolume %s: %lu\n",
1108 PTR_ERR(search_root));
1111 ret = PTR_ERR(search_root);
1116 * A subvolume will have a key.offset of 0, a
1117 * snapshot will have key.offset of a transid.
1119 if (search_root->root_key.offset != 0 &&
1122 printf("Skipping snapshot %s\n",
1126 location.objectid = BTRFS_FIRST_FREE_OBJECTID;
1130 printf("Restoring %s\n", path_name);
1136 ret = mkdir(path_name, 0755);
1137 if (ret && errno != EEXIST) {
1139 fprintf(stderr, "Error mkdiring %s: %d\n",
1147 ret = search_dir(search_root, &location,
1148 output_rootdir, dir, mreg);
1151 fprintf(stderr, "Error searching %s\n",
1157 } else if (type == BTRFS_FT_SYMLINK) {
1158 if (restore_symlinks)
1159 ret = copy_symlink(root, &location, path_name);
1163 btrfs_free_path(path);
1171 if (restore_metadata) {
1172 snprintf(path_name, PATH_MAX, "%s%s", output_rootdir, in_dir);
1173 fd = open(path_name, O_RDONLY);
1175 fprintf(stderr, "ERROR: Failed to access %s to restore metadata\n",
1177 if (!ignore_errors) {
1183 * Set owner/mode/time on the directory as well
1185 key->type = BTRFS_INODE_ITEM_KEY;
1186 ret = copy_metadata(root, fd, key);
1188 if (ret && !ignore_errors)
1194 printf("Done searching %s\n", in_dir);
1196 btrfs_free_path(path);
1200 static int do_list_roots(struct btrfs_root *root)
1202 struct btrfs_key key;
1203 struct btrfs_key found_key;
1204 struct btrfs_disk_key disk_key;
1205 struct btrfs_path *path;
1206 struct extent_buffer *leaf;
1207 struct btrfs_root_item ri;
1208 unsigned long offset;
1212 root = root->fs_info->tree_root;
1213 path = btrfs_alloc_path();
1215 fprintf(stderr, "Failed to alloc path\n");
1221 key.type = BTRFS_ROOT_ITEM_KEY;
1223 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
1225 fprintf(stderr, "Failed to do search %d\n", ret);
1226 btrfs_free_path(path);
1230 leaf = path->nodes[0];
1233 slot = path->slots[0];
1234 if (slot >= btrfs_header_nritems(leaf)) {
1235 ret = btrfs_next_leaf(root, path);
1238 leaf = path->nodes[0];
1239 slot = path->slots[0];
1241 btrfs_item_key(leaf, &disk_key, slot);
1242 btrfs_disk_key_to_cpu(&found_key, &disk_key);
1243 if (btrfs_key_type(&found_key) != BTRFS_ROOT_ITEM_KEY) {
1248 offset = btrfs_item_ptr_offset(leaf, slot);
1249 read_extent_buffer(leaf, &ri, offset, sizeof(ri));
1251 btrfs_print_key(&disk_key);
1252 printf(" %Lu level %d\n", btrfs_root_bytenr(&ri),
1253 btrfs_root_level(&ri));
1256 btrfs_free_path(path);
1261 static struct btrfs_root *open_fs(const char *dev, u64 root_location,
1262 int super_mirror, int list_roots)
1264 struct btrfs_fs_info *fs_info = NULL;
1265 struct btrfs_root *root = NULL;
1269 for (i = super_mirror; i < BTRFS_SUPER_MIRROR_MAX; i++) {
1270 bytenr = btrfs_sb_offset(i);
1271 fs_info = open_ctree_fs_info(dev, bytenr, root_location,
1272 OPEN_CTREE_PARTIAL);
1275 fprintf(stderr, "Could not open root, trying backup super\n");
1282 * All we really need to succeed is reading the chunk tree, everything
1283 * else we can do by hand, since we only need to read the tree root and
1286 if (!extent_buffer_uptodate(fs_info->tree_root->node)) {
1289 root = fs_info->tree_root;
1291 root_location = btrfs_super_root(fs_info->super_copy);
1292 generation = btrfs_super_generation(fs_info->super_copy);
1293 root->node = read_tree_block(root, root_location,
1294 root->leafsize, generation);
1295 if (!extent_buffer_uptodate(root->node)) {
1296 fprintf(stderr, "Error opening tree root\n");
1302 if (!list_roots && !fs_info->fs_root) {
1303 struct btrfs_key key;
1305 key.objectid = BTRFS_FS_TREE_OBJECTID;
1306 key.type = BTRFS_ROOT_ITEM_KEY;
1307 key.offset = (u64)-1;
1308 fs_info->fs_root = btrfs_read_fs_root_no_cache(fs_info, &key);
1309 if (IS_ERR(fs_info->fs_root)) {
1310 fprintf(stderr, "Couldn't read fs root: %ld\n",
1311 PTR_ERR(fs_info->fs_root));
1312 close_ctree(fs_info->tree_root);
1317 if (list_roots && do_list_roots(fs_info->tree_root)) {
1318 close_ctree(fs_info->tree_root);
1322 return fs_info->fs_root;
1325 static int find_first_dir(struct btrfs_root *root, u64 *objectid)
1327 struct btrfs_path *path;
1328 struct btrfs_key found_key;
1329 struct btrfs_key key;
1334 key.type = BTRFS_DIR_INDEX_KEY;
1337 path = btrfs_alloc_path();
1339 fprintf(stderr, "Ran out of memory\n");
1343 ret = btrfs_search_slot(NULL, root, &key, path, 0, 0);
1345 fprintf(stderr, "Error searching %d\n", ret);
1349 if (!path->nodes[0]) {
1350 fprintf(stderr, "No leaf!\n");
1354 for (i = path->slots[0];
1355 i < btrfs_header_nritems(path->nodes[0]); i++) {
1356 btrfs_item_key_to_cpu(path->nodes[0], &found_key, i);
1357 if (found_key.type != key.type)
1360 printf("Using objectid %Lu for first dir\n",
1361 found_key.objectid);
1362 *objectid = found_key.objectid;
1367 ret = next_leaf(root, path);
1369 fprintf(stderr, "Error getting next leaf %d\n",
1372 } else if (ret > 0) {
1373 fprintf(stderr, "No more leaves\n");
1376 } while (!path->nodes[0]);
1379 printf("Couldn't find a dir index item\n");
1381 btrfs_free_path(path);
1385 const char * const cmd_restore_usage[] = {
1386 "btrfs restore [options] <device> <path> | -l <device>",
1387 "Try to restore files from a damaged filesystem (unmounted)",
1389 "-s|--snapshots get snapshots",
1390 "-x|--xattr get extended attributes",
1391 "-m|--metadata restore owner, mode and times",
1392 "-S|--symlinks restore symbolic links",
1393 "-v|--verbose verbose",
1394 "-i|--ignore-errors ignore errors",
1395 "-o|--overwrite overwrite",
1396 "-t <bytenr> tree location",
1397 "-f <bytenr> filesystem location",
1398 "-u|--super <mirror> super mirror",
1399 "-r|--root <rootid> root objectid",
1401 "-l|--list-roots list tree roots",
1402 "-D|--dry-run dry run (only list files that would be recovered)",
1403 "--path-regex <regex>",
1404 " restore only filenames matching regex,",
1405 " you have to use following syntax (possibly quoted):",
1406 " ^/(|home(|/username(|/Desktop(|/.*))))$",
1407 "-c ignore case (--path-regex only)",
1411 int cmd_restore(int argc, char **argv)
1413 struct btrfs_root *root;
1414 struct btrfs_key key;
1415 char dir_name[PATH_MAX];
1416 u64 tree_location = 0;
1417 u64 fs_location = 0;
1418 u64 root_objectid = 0;
1421 int super_mirror = 0;
1424 const char *match_regstr = NULL;
1425 int match_cflags = REG_EXTENDED | REG_NOSUB | REG_NEWLINE;
1426 regex_t match_reg, *mreg = NULL;
1431 static const struct option long_options[] = {
1432 { "path-regex", required_argument, NULL, 256},
1433 { "dry-run", no_argument, NULL, 'D'},
1434 { "metadata", no_argument, NULL, 'm'},
1435 { "symlinks", no_argument, NULL, 'S'},
1436 { "snapshots", no_argument, NULL, 's'},
1437 { "xattr", no_argument, NULL, 'x'},
1438 { "verbose", no_argument, NULL, 'v'},
1439 { "ignore-errors", no_argument, NULL, 'i'},
1440 { "overwrite", no_argument, NULL, 'o'},
1441 { "super", required_argument, NULL, 'u'},
1442 { "root", required_argument, NULL, 'r'},
1443 { "list-roots", no_argument, NULL, 'l'},
1447 opt = getopt_long(argc, argv, "sSxviot:u:dmf:r:lDc", long_options,
1466 tree_location = arg_strtou64(optarg);
1469 fs_location = arg_strtou64(optarg);
1472 super_mirror = arg_strtou64(optarg);
1473 if (super_mirror >= BTRFS_SUPER_MIRROR_MAX) {
1474 fprintf(stderr, "Super mirror not "
1483 root_objectid = arg_strtou64(optarg);
1484 if (!is_fstree(root_objectid)) {
1485 fprintf(stderr, "objectid %llu is not a valid fs/file tree\n",
1494 restore_metadata = 1;
1497 restore_symlinks = 1;
1503 match_cflags |= REG_ICASE;
1505 /* long option without single letter alternative */
1507 match_regstr = optarg;
1513 usage(cmd_restore_usage);
1517 if (!list_roots && check_argc_min(argc - optind, 2))
1518 usage(cmd_restore_usage);
1519 else if (list_roots && check_argc_min(argc - optind, 1))
1520 usage(cmd_restore_usage);
1522 if (fs_location && root_objectid) {
1523 fprintf(stderr, "don't use -f and -r at the same time.\n");
1527 if ((ret = check_mounted(argv[optind])) < 0) {
1528 fprintf(stderr, "Could not check mount status: %s\n",
1532 fprintf(stderr, "%s is currently mounted. Aborting.\n", argv[optind]);
1536 root = open_fs(argv[optind], tree_location, super_mirror, list_roots);
1543 if (fs_location != 0) {
1544 free_extent_buffer(root->node);
1545 root->node = read_tree_block(root, fs_location, root->leafsize, 0);
1546 if (!extent_buffer_uptodate(root->node)) {
1547 fprintf(stderr, "Failed to read fs location\n");
1553 memset(path_name, 0, PATH_MAX);
1555 if (strlen(argv[optind + 1]) >= PATH_MAX) {
1556 fprintf(stderr, "ERROR: path too long\n");
1560 strncpy(dir_name, argv[optind + 1], sizeof dir_name);
1561 dir_name[sizeof dir_name - 1] = 0;
1563 /* Strip the trailing / on the dir name */
1564 len = strlen(dir_name);
1565 while (len && dir_name[--len] == '/') {
1566 dir_name[len] = '\0';
1569 if (root_objectid != 0) {
1570 struct btrfs_root *orig_root = root;
1572 key.objectid = root_objectid;
1573 key.type = BTRFS_ROOT_ITEM_KEY;
1574 key.offset = (u64)-1;
1575 root = btrfs_read_fs_root(orig_root->fs_info, &key);
1577 fprintf(stderr, "fail to read root %llu: %s\n",
1578 root_objectid, strerror(-PTR_ERR(root)));
1588 ret = find_first_dir(root, &key.objectid);
1592 key.objectid = BTRFS_FIRST_FREE_OBJECTID;
1596 ret = regcomp(&match_reg, match_regstr, match_cflags);
1598 regerror(ret, &match_reg, reg_err, sizeof(reg_err));
1599 fprintf(stderr, "Regex compile failed: %s\n", reg_err);
1606 printf("This is a dry-run, no files are going to be restored\n");
1608 ret = search_dir(root, &key, dir_name, "", mreg);