2 * Copyright (C) 2013 SUSE. All rights reserved.
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public
6 * License v2 as published by the Free Software Foundation.
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11 * General Public License for more details.
13 * You should have received a copy of the GNU General Public
14 * License along with this program; if not, write to the
15 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
16 * Boston, MA 021110-1307, USA.
19 #include "kerncompat.h"
25 static const char * const rescue_cmd_group_usage[] = {
26 "btrfs rescue <command> [options] <path>",
30 int btrfs_recover_chunk_tree(char *path, int verbose, int yes);
31 int btrfs_recover_superblocks(char *path, int verbose, int yes);
33 const char * const cmd_chunk_recover_usage[] = {
34 "btrfs rescue chunk-recover [options] <device>",
35 "Recover the chunk tree by scanning the devices one by one.",
37 "-y Assume an answer of `yes' to all questions",
43 const char * const cmd_super_recover_usage[] = {
44 "btrfs rescue super-recover [options] <device>",
45 "Recover bad superblocks from good copies",
47 "-y Assume an answer of `yes' to all questions",
52 int cmd_chunk_recover(int argc, char *argv[])
60 int c = getopt(argc, argv, "yvh");
72 usage(cmd_chunk_recover_usage);
77 if (check_argc_exact(argc, 1))
78 usage(cmd_chunk_recover_usage);
82 ret = check_mounted(file);
84 fprintf(stderr, "Could not check mount status: %s\n",
88 fprintf(stderr, "the device is busy\n");
92 ret = btrfs_recover_chunk_tree(file, verbose, yes);
94 fprintf(stdout, "Recover the chunk tree successfully.\n");
97 fprintf(stdout, "Abort to rebuild the on-disk chunk tree.\n");
99 fprintf(stdout, "Fail to recover the chunk tree.\n");
106 * 0 : All superblocks are valid, no need to recover
107 * 1 : Usage or syntax error
108 * 2 : Recover all bad superblocks successfully
109 * 3 : Fail to Recover bad supeblocks
110 * 4 : Abort to recover bad superblocks
112 int cmd_super_recover(int argc, char **argv)
120 int c = getopt(argc, argv, "vy");
131 usage(cmd_super_recover_usage);
134 argc = argc - optind;
135 if (check_argc_exact(argc, 1))
136 usage(cmd_super_recover_usage);
138 dname = argv[optind];
139 ret = check_mounted(dname);
141 fprintf(stderr, "Could not check mount status: %s\n",
145 fprintf(stderr, "the device is busy\n");
148 ret = btrfs_recover_superblocks(dname, verbose, yes);
152 const struct cmd_group rescue_cmd_group = {
153 rescue_cmd_group_usage, NULL, {
154 { "chunk-recover", cmd_chunk_recover, cmd_chunk_recover_usage, NULL, 0},
155 { "super-recover", cmd_super_recover, cmd_super_recover_usage, NULL, 0},
160 int cmd_rescue(int argc, char **argv)
162 return handle_command_group(&rescue_cmd_group, argc, argv);