btrfs-progs: add getopt stubs where needed
[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 int cmd_rescue_chunk_recover(int argc, char *argv[])
47 {
48         int ret = 0;
49         char *file;
50         int yes = 0;
51         int verbose = 0;
52
53         while (1) {
54                 int c = getopt(argc, argv, "yvh");
55                 if (c < 0)
56                         break;
57                 switch (c) {
58                 case 'y':
59                         yes = 1;
60                         break;
61                 case 'v':
62                         verbose = 1;
63                         break;
64                 case 'h':
65                 default:
66                         usage(cmd_rescue_chunk_recover_usage);
67                 }
68         }
69
70         argc = argc - optind;
71         if (check_argc_exact(argc, 1))
72                 usage(cmd_rescue_chunk_recover_usage);
73
74         file = argv[optind];
75
76         ret = check_mounted(file);
77         if (ret < 0) {
78                 error("could not check mount status: %s", strerror(-ret));
79                 return 1;
80         } else if (ret) {
81                 error("the device is busy");
82                 return 1;
83         }
84
85         ret = btrfs_recover_chunk_tree(file, verbose, yes);
86         if (!ret) {
87                 fprintf(stdout, "Chunk tree recovered successfully\n");
88         } else if (ret > 0) {
89                 ret = 0;
90                 fprintf(stdout, "Chunk tree recovery aborted\n");
91         } else {
92                 fprintf(stdout, "Chunk tree recovery failed\n");
93         }
94         return ret;
95 }
96
97 static const char * const cmd_rescue_super_recover_usage[] = {
98         "btrfs rescue super-recover [options] <device>",
99         "Recover bad superblocks from good copies",
100         "",
101         "-y     Assume an answer of `yes' to all questions",
102         "-v     Verbose mode",
103         NULL
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         clean_args_no_options(argc, argv, cmd_rescue_zero_log_usage);
169
170         if (check_argc_exact(argc, 2))
171                 usage(cmd_rescue_zero_log_usage);
172
173         devname = argv[optind];
174         ret = check_mounted(devname);
175         if (ret < 0) {
176                 error("could not check mount status: %s", strerror(-ret));
177                 goto out;
178         } else if (ret) {
179                 error("%s is currently mounted", devname);
180                 ret = -EBUSY;
181         }
182
183         root = open_ctree(devname, 0, OPEN_CTREE_WRITES | OPEN_CTREE_PARTIAL);
184         if (!root) {
185                 error("could not open ctree");
186                 return 1;
187         }
188
189         sb = root->fs_info->super_copy;
190         printf("Clearing log on %s, previous log_root %llu, level %u\n",
191                         devname,
192                         (unsigned long long)btrfs_super_log_root(sb),
193                         (unsigned)btrfs_super_log_root_level(sb));
194         trans = btrfs_start_transaction(root, 1);
195         btrfs_set_super_log_root(sb, 0);
196         btrfs_set_super_log_root_level(sb, 0);
197         btrfs_commit_transaction(trans, root);
198         close_ctree(root);
199
200 out:
201         return !!ret;
202 }
203
204 static const char rescue_cmd_group_info[] =
205 "toolbox for specific rescue operations";
206
207 const struct cmd_group rescue_cmd_group = {
208         rescue_cmd_group_usage, rescue_cmd_group_info, {
209                 { "chunk-recover", cmd_rescue_chunk_recover,
210                         cmd_rescue_chunk_recover_usage, NULL, 0},
211                 { "super-recover", cmd_rescue_super_recover,
212                         cmd_rescue_super_recover_usage, NULL, 0},
213                 { "zero-log", cmd_rescue_zero_log, cmd_rescue_zero_log_usage, NULL, 0},
214                 NULL_CMD_STRUCT
215         }
216 };
217
218 int cmd_rescue(int argc, char **argv)
219 {
220         return handle_command_group(&rescue_cmd_group, argc, argv);
221 }