btrfs-progs: cmd rescue: switch to common error message wrapper
[platform/upstream/btrfs-progs.git] / cmds-rescue.c
1 /*
2  * Copyright (C) 2013 SUSE.  All rights reserved.
3  *
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.
7  *
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.
12  *
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.
17  */
18
19 #include "kerncompat.h"
20
21 #include <getopt.h>
22 #include "ctree.h"
23 #include "transaction.h"
24 #include "disk-io.h"
25 #include "commands.h"
26 #include "utils.h"
27
28 static const char * const rescue_cmd_group_usage[] = {
29         "btrfs rescue <command> [options] <path>",
30         NULL
31 };
32
33 int btrfs_recover_chunk_tree(char *path, int verbose, int yes);
34 int btrfs_recover_superblocks(char *path, int verbose, int yes);
35
36 static const char * const cmd_rescue_chunk_recover_usage[] = {
37         "btrfs rescue chunk-recover [options] <device>",
38         "Recover the chunk tree by scanning the devices one by one.",
39         "",
40         "-y     Assume an answer of `yes' to all questions",
41         "-v     Verbose mode",
42         "-h     Help",
43         NULL
44 };
45
46 static const char * const cmd_rescue_super_recover_usage[] = {
47         "btrfs rescue super-recover [options] <device>",
48         "Recover bad superblocks from good copies",
49         "",
50         "-y     Assume an answer of `yes' to all questions",
51         "-v     Verbose mode",
52         NULL
53 };
54
55 static int cmd_rescue_chunk_recover(int argc, char *argv[])
56 {
57         int ret = 0;
58         char *file;
59         int yes = 0;
60         int verbose = 0;
61
62         while (1) {
63                 int c = getopt(argc, argv, "yvh");
64                 if (c < 0)
65                         break;
66                 switch (c) {
67                 case 'y':
68                         yes = 1;
69                         break;
70                 case 'v':
71                         verbose = 1;
72                         break;
73                 case 'h':
74                 default:
75                         usage(cmd_rescue_chunk_recover_usage);
76                 }
77         }
78
79         argc = argc - optind;
80         if (check_argc_exact(argc, 1))
81                 usage(cmd_rescue_chunk_recover_usage);
82
83         file = argv[optind];
84
85         ret = check_mounted(file);
86         if (ret < 0) {
87                 error("could not check mount status: %s", strerror(-ret));
88                 return 1;
89         } else if (ret) {
90                 error("the device is busy");
91                 return 1;
92         }
93
94         ret = btrfs_recover_chunk_tree(file, verbose, yes);
95         if (!ret) {
96                 fprintf(stdout, "Chunk tree recovered successfully\n");
97         } else if (ret > 0) {
98                 ret = 0;
99                 fprintf(stdout, "Chunk tree recovery aborted\n");
100         } else {
101                 fprintf(stdout, "Chunk tree recovery failed\n");
102         }
103         return ret;
104 }
105
106 /*
107  * return codes:
108  *   0 : All superblocks are valid, no need to recover
109  *   1 : Usage or syntax error
110  *   2 : Recover all bad superblocks successfully
111  *   3 : Fail to Recover bad supeblocks
112  *   4 : Abort to recover bad superblocks
113  */
114 static int cmd_rescue_super_recover(int argc, char **argv)
115 {
116         int ret;
117         int verbose = 0;
118         int yes = 0;
119         char *dname;
120
121         while (1) {
122                 int c = getopt(argc, argv, "vy");
123                 if (c < 0)
124                         break;
125                 switch (c) {
126                 case 'v':
127                         verbose = 1;
128                         break;
129                 case 'y':
130                         yes = 1;
131                         break;
132                 default:
133                         usage(cmd_rescue_super_recover_usage);
134                 }
135         }
136         argc = argc - optind;
137         if (check_argc_exact(argc, 1))
138                 usage(cmd_rescue_super_recover_usage);
139
140         dname = argv[optind];
141         ret = check_mounted(dname);
142         if (ret < 0) {
143                 error("could not check mount status: %s", strerror(-ret));
144                 return 1;
145         } else if (ret) {
146                 error("the device is busy");
147                 return 1;
148         }
149         ret = btrfs_recover_superblocks(dname, verbose, yes);
150         return ret;
151 }
152
153 static const char * const cmd_rescue_zero_log_usage[] = {
154         "btrfs rescue zero-log <device>",
155         "Clear the tree log. Usable if it's corrupted and prevents mount.",
156         "",
157         NULL
158 };
159
160 static int cmd_rescue_zero_log(int argc, char **argv)
161 {
162         struct btrfs_root *root;
163         struct btrfs_trans_handle *trans;
164         struct btrfs_super_block *sb;
165         char *devname;
166         int ret;
167
168         if (check_argc_exact(argc, 2))
169                 usage(cmd_rescue_zero_log_usage);
170
171         devname = argv[optind];
172         ret = check_mounted(devname);
173         if (ret < 0) {
174                 error("could not check mount status: %s", strerror(-ret));
175                 goto out;
176         } else if (ret) {
177                 error("%s is currently mounted", devname);
178                 ret = -EBUSY;
179         }
180
181         root = open_ctree(devname, 0, OPEN_CTREE_WRITES | OPEN_CTREE_PARTIAL);
182         if (!root) {
183                 error("could not open ctree");
184                 return 1;
185         }
186
187         sb = root->fs_info->super_copy;
188         printf("Clearing log on %s, previous log_root %llu, level %u\n",
189                         devname,
190                         (unsigned long long)btrfs_super_log_root(sb),
191                         (unsigned)btrfs_super_log_root_level(sb));
192         trans = btrfs_start_transaction(root, 1);
193         btrfs_set_super_log_root(sb, 0);
194         btrfs_set_super_log_root_level(sb, 0);
195         btrfs_commit_transaction(trans, root);
196         close_ctree(root);
197
198 out:
199         return !!ret;
200 }
201
202 static const char rescue_cmd_group_info[] =
203 "toolbox for specific rescue operations";
204
205 const struct cmd_group rescue_cmd_group = {
206         rescue_cmd_group_usage, rescue_cmd_group_info, {
207                 { "chunk-recover", cmd_rescue_chunk_recover,
208                         cmd_rescue_chunk_recover_usage, NULL, 0},
209                 { "super-recover", cmd_rescue_super_recover,
210                         cmd_rescue_super_recover_usage, NULL, 0},
211                 { "zero-log", cmd_rescue_zero_log, cmd_rescue_zero_log_usage, NULL, 0},
212                 NULL_CMD_STRUCT
213         }
214 };
215
216 int cmd_rescue(int argc, char **argv)
217 {
218         return handle_command_group(&rescue_cmd_group, argc, argv);
219 }