Btrfs progs v4.10.2
[btrfs-progs-unstable/devel.git] / btrfs.c
blob9214ae6ef3161803d22522edb6d9654b6a722cd9
1 /*
2 * This program is free software; you can redistribute it and/or
3 * modify it under the terms of the GNU General Public
4 * License v2 as published by the Free Software Foundation.
6 * This program is distributed in the hope that it will be useful,
7 * but WITHOUT ANY WARRANTY; without even the implied warranty of
8 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
9 * General Public License for more details.
11 * You should have received a copy of the GNU General Public
12 * License along with this program; if not, write to the
13 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
14 * Boston, MA 021110-1307, USA.
17 #include <stdio.h>
18 #include <stdlib.h>
19 #include <string.h>
21 #include "volumes.h"
22 #include "crc32c.h"
23 #include "commands.h"
24 #include "utils.h"
25 #include "help.h"
27 static const char * const btrfs_cmd_group_usage[] = {
28 "btrfs [--help] [--version] <group> [<group>...] <command> [<args>]",
29 NULL
32 static const char btrfs_cmd_group_info[] =
33 "Use --help as an argument for information on a specific group or command.";
35 static inline const char *skip_prefix(const char *str, const char *prefix)
37 size_t len = strlen(prefix);
38 return strncmp(str, prefix, len) ? NULL : str + len;
41 static int parse_one_token(const char *arg, const struct cmd_group *grp,
42 const struct cmd_struct **cmd_ret)
44 const struct cmd_struct *cmd = grp->commands;
45 const struct cmd_struct *abbrev_cmd = NULL, *ambiguous_cmd = NULL;
47 for (; cmd->token; cmd++) {
48 const char *rest;
50 rest = skip_prefix(arg, cmd->token);
51 if (!rest) {
52 if (!prefixcmp(cmd->token, arg)) {
53 if (abbrev_cmd) {
55 * If this is abbreviated, it is
56 * ambiguous. So when there is no
57 * exact match later, we need to
58 * error out.
60 ambiguous_cmd = abbrev_cmd;
62 abbrev_cmd = cmd;
64 continue;
66 if (*rest)
67 continue;
69 *cmd_ret = cmd;
70 return 0;
73 if (ambiguous_cmd)
74 return -2;
76 if (abbrev_cmd) {
77 *cmd_ret = abbrev_cmd;
78 return 0;
81 return -1;
84 static const struct cmd_struct *
85 parse_command_token(const char *arg, const struct cmd_group *grp)
87 const struct cmd_struct *cmd = NULL;
89 switch(parse_one_token(arg, grp, &cmd)) {
90 case -1:
91 help_unknown_token(arg, grp);
92 case -2:
93 help_ambiguous_token(arg, grp);
96 return cmd;
99 static void handle_help_options_next_level(const struct cmd_struct *cmd,
100 int argc, char **argv)
102 if (argc < 2)
103 return;
105 if (!strcmp(argv[1], "--help")) {
106 if (cmd->next) {
107 argc--;
108 argv++;
109 help_command_group(cmd->next, argc, argv);
110 } else {
111 usage_command(cmd, 1, 0);
114 exit(0);
118 int handle_command_group(const struct cmd_group *grp, int argc,
119 char **argv)
122 const struct cmd_struct *cmd;
124 argc--;
125 argv++;
126 if (argc < 1) {
127 usage_command_group(grp, 0, 0);
128 exit(1);
131 cmd = parse_command_token(argv[0], grp);
133 handle_help_options_next_level(cmd, argc, argv);
135 fixup_argv0(argv, cmd->token);
136 return cmd->fn(argc, argv);
139 static const struct cmd_group btrfs_cmd_group;
141 static const char * const cmd_help_usage[] = {
142 "btrfs help [--full]",
143 "Display help information",
145 "--full display detailed help on every command",
146 NULL
149 static int cmd_help(int argc, char **argv)
151 help_command_group(&btrfs_cmd_group, argc, argv);
152 return 0;
155 static const char * const cmd_version_usage[] = {
156 "btrfs version",
157 "Display btrfs-progs version",
158 NULL
161 static int cmd_version(int argc, char **argv)
163 printf("%s\n", PACKAGE_STRING);
164 return 0;
167 static void check_options(int argc, char **argv)
169 const char *arg;
171 if (argc == 0)
172 return;
174 arg = argv[0];
176 if (arg[0] != '-' ||
177 !strcmp(arg, "--help") ||
178 !strcmp(arg, "--version"))
179 return;
181 fprintf(stderr, "Unknown option: %s\n", arg);
182 fprintf(stderr, "usage: %s\n",
183 btrfs_cmd_group.usagestr[0]);
184 exit(129);
187 static const struct cmd_group btrfs_cmd_group = {
188 btrfs_cmd_group_usage, btrfs_cmd_group_info, {
189 { "subvolume", cmd_subvolume, NULL, &subvolume_cmd_group, 0 },
190 { "filesystem", cmd_filesystem, NULL, &filesystem_cmd_group, 0 },
191 { "balance", cmd_balance, NULL, &balance_cmd_group, 0 },
192 { "device", cmd_device, NULL, &device_cmd_group, 0 },
193 { "scrub", cmd_scrub, NULL, &scrub_cmd_group, 0 },
194 { "check", cmd_check, cmd_check_usage, NULL, 0 },
195 { "rescue", cmd_rescue, NULL, &rescue_cmd_group, 0 },
196 { "restore", cmd_restore, cmd_restore_usage, NULL, 0 },
197 { "inspect-internal", cmd_inspect, NULL, &inspect_cmd_group, 0 },
198 { "property", cmd_property, NULL, &property_cmd_group, 0 },
199 { "send", cmd_send, cmd_send_usage, NULL, 0 },
200 { "receive", cmd_receive, cmd_receive_usage, NULL, 0 },
201 { "quota", cmd_quota, NULL, &quota_cmd_group, 0 },
202 { "qgroup", cmd_qgroup, NULL, &qgroup_cmd_group, 0 },
203 { "replace", cmd_replace, NULL, &replace_cmd_group, 0 },
204 { "help", cmd_help, cmd_help_usage, NULL, 0 },
205 { "version", cmd_version, cmd_version_usage, NULL, 0 },
206 NULL_CMD_STRUCT
210 int main(int argc, char **argv)
212 const struct cmd_struct *cmd;
213 const char *bname;
214 int ret;
216 btrfs_config_init();
218 if ((bname = strrchr(argv[0], '/')) != NULL)
219 bname++;
220 else
221 bname = argv[0];
223 if (!strcmp(bname, "btrfsck")) {
224 argv[0] = "check";
225 } else {
226 argc--;
227 argv++;
228 check_options(argc, argv);
229 if (argc > 0) {
230 if (!prefixcmp(argv[0], "--"))
231 argv[0] += 2;
232 } else {
233 usage_command_group_short(&btrfs_cmd_group);
234 exit(1);
238 cmd = parse_command_token(argv[0], &btrfs_cmd_group);
240 handle_help_options_next_level(cmd, argc, argv);
242 crc32c_optimization_init();
244 fixup_argv0(argv, cmd->token);
246 ret = cmd->fn(argc, argv);
248 btrfs_close_all_devices();
250 exit(ret);