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.
22 #include "kerncompat.h"
23 #include "btrfs_cmds.h"
27 #define ADVANCED_HELP 1
29 typedef int (*CommandFunction
)(int argc
, char **argv
);
32 CommandFunction func
; /* function which implements the command */
33 int nargs
; /* if == 999, any number of arguments
34 if >= 0, number of arguments,
35 if < 0, _minimum_ number of arguments */
36 char *verb
; /* verb */
37 char *help
; /* help lines; from the 2nd line onward they
38 are automatically indented */
39 char *adv_help
; /* advanced help message; from the 2nd line
40 onward they are automatically indented */
42 /* the following fields are run-time filled by the program */
43 char **cmds
; /* array of subcommands */
44 int ncmds
; /* number of subcommand */
47 static struct Command commands
[] = {
50 avoid short commands different for the case only
53 "subvolume snapshot", "[-r] <source> [<dest>/]<name>\n"
54 "Create a writable/readonly snapshot of the subvolume <source> with\n"
55 "the name <name> in the <dest> directory.",
58 { do_delete_subvolume
, 1,
59 "subvolume delete", "<subvolume>\n"
60 "Delete the subvolume <subvolume>.",
63 { do_create_subvol
, 1,
64 "subvolume create", "[<dest>/]<name>\n"
65 "Create a subvolume in <dest> (or the current directory if\n"
69 { do_subvol_list
, 1, "subvolume list", "<path>\n"
70 "List the snapshot/subvolume of a filesystem.",
73 { do_set_default_subvol
, 2,
74 "subvolume set-default", "<id> <path>\n"
75 "Set the subvolume of the filesystem <path> which will be mounted\n"
79 { do_find_newer
, 2, "subvolume find-new", "<path> <last_gen>\n"
80 "List the recently modified files in a filesystem.",
84 "filesystem defragment", "[-vf] [-c[zlib,lzo]] [-s start] [-l len] [-t size] <file>|<dir> [<file>|<dir>...]\n"
85 "Defragment a file or a directory.",
86 "[-vcf] [-s start] [-l len] [-t size] <file>|<dir> [<file>|<dir>...]\n"
87 "Defragment file data or directory metadata.\n"
89 "-c compress the file while defragmenting\n"
90 "-f flush data to disk immediately after defragmenting\n"
91 "-s start defragment only from byte onward\n"
92 "-l len defragment only up to len bytes\n"
93 "-t size minimal size of file to be considered for defragmenting\n"
96 "filesystem sync", "<path>\n"
97 "Force a sync on the filesystem <path>.",
101 "filesystem resize", "[+/-]<newsize>[gkm]|max <filesystem>\n"
102 "Resize the file system. If 'max' is passed, the filesystem\n"
103 "will occupe all available space on the device.",
106 { do_show_filesystem
, 999,
107 "filesystem show", "[<device>|<uuid>|<label>]\n"
108 "Show the info of a btrfs filesystem. If no argument\n"
109 "is passed, info of all the btrfs filesystem are shown.",
112 { do_df_filesystem
, 1,
113 "filesystem df", "<path>\n"
114 "Show space usage information for a mount point.",
118 "filesystem balance", "<path>\n"
119 "Balance the chunks across the device.",
122 { do_change_label
, -1,
123 "filesystem label", "<device> [<newlabel>]\n"
124 "With one argument, get the label of filesystem on <device>.\n"
125 "If <newlabel> is passed, set the filesystem label to <newlabel>.\n"
126 "The filesystem must be unmounted.\n"
129 "device scan", "[<device>...]\n"
130 "Scan all device for or the passed device for a btrfs\n"
135 "device add", "<device> [<device>...] <path>\n"
136 "Add a device to a filesystem.",
139 { do_remove_volume
, -2,
140 "device delete", "<device> [<device>...] <path>\n"
141 "Remove a device from a filesystem.",
147 static char *get_prgname(char *programname
)
150 np
= strrchr(programname
,'/');
159 static void print_help(char *programname
, struct Command
*cmd
, int helptype
)
163 printf("\t%s %s ", programname
, cmd
->verb
);
165 if (helptype
== ADVANCED_HELP
&& cmd
->adv_help
)
166 for(pc
= cmd
->adv_help
; *pc
; pc
++){
172 for(pc
= cmd
->help
; *pc
; pc
++){
181 static void help(char *np
)
186 for( cp
= commands
; cp
->verb
; cp
++ )
187 print_help(np
, cp
, BASIC_HELP
);
189 printf("\n\t%s help|--help|-h\n\t\tShow the help.\n",np
);
190 printf("\n\t%s <cmd> --help\n\t\tShow detailed help for a command or\n\t\t"
191 "subset of commands.\n",np
);
192 printf("\n%s\n", BTRFS_BUILD_VERSION
);
195 static int split_command(char *cmd
, char ***commands
)
200 for( *commands
= 0, l
= c
= 0, p
= s
= cmd
; ; p
++, l
++ ){
201 if ( *p
&& *p
!= ' ' )
204 /* c + 2 so that we have room for the null */
205 (*commands
) = realloc( (*commands
), sizeof(char *)*(c
+ 2));
206 (*commands
)[c
] = strndup(s
, l
);
218 This function checks if the passed command is ambiguous
220 static int check_ambiguity(struct Command
*cmd
, char **argv
){
223 /* check for ambiguity */
224 for( i
= 0 ; i
< cmd
->ncmds
; i
++ ){
226 for( match
= 0, cp
= commands
; cp
->verb
; cp
++ ){
233 for( skip
= 0, j
= 0 ; j
< i
; j
++ )
234 if( strcmp(cmd
->cmds
[j
], cp
->cmds
[j
])){
241 if( !strcmp(cmd
->cmds
[i
], cp
->cmds
[i
]))
243 for(s2
= cp
->cmds
[i
], s1
= argv
[i
+1];
244 *s1
== *s2
&& *s1
; s1
++, s2
++ ) ;
250 fprintf(stderr
, "ERROR: in command '");
251 for( j
= 0 ; j
<= i
; j
++ )
252 fprintf(stderr
, "%s%s",j
?" ":"", argv
[j
+1]);
253 fprintf(stderr
, "', '%s' is ambiguous\n",argv
[j
]);
261 * This function, compacts the program name and the command in the first
262 * element of the '*av' array
264 static int prepare_args(int *ac
, char ***av
, char *prgname
, struct Command
*cmd
){
270 ret
= (char **)malloc(sizeof(char*)*(*ac
+1));
271 newname
= (char*)malloc(strlen(prgname
)+strlen(cmd
->verb
)+2);
272 if( !ret
|| !newname
){
279 for(i
=0; i
< *ac
; i
++ )
282 strcpy(newname
, prgname
);
283 strcat(newname
, " ");
284 strcat(newname
, cmd
->verb
);
296 This function performs the following jobs:
297 - show the help if '--help' or 'help' or '-h' are passed
298 - verify that a command is not ambiguous, otherwise show which
299 part of the command is ambiguous
300 - if after a (even partial) command there is '--help' show detailed help
301 for all the matching commands
302 - if the command doesn't match show an error
303 - finally, if a command matches, they return which command matched and
306 The function return 0 in case of help is requested; <0 in case
307 of uncorrect command; >0 in case of matching commands
308 argc, argv are the arg-counter and arg-vector (input)
309 *nargs_ is the number of the arguments after the command (output)
310 **cmd_ is the invoked command (output)
311 ***args_ are the arguments after the command
314 static int parse_args(int argc
, char **argv
,
315 CommandFunction
*func_
,
316 int *nargs_
, char **cmd_
, char ***args_
)
319 struct Command
*matchcmd
=0;
320 char *prgname
= get_prgname(argv
[0]);
321 int i
=0, helprequested
=0;
323 if( argc
< 2 || !strcmp(argv
[1], "help") ||
324 !strcmp(argv
[1], "-h") || !strcmp(argv
[1], "--help")){
329 for( cp
= commands
; cp
->verb
; cp
++ )
331 cp
->ncmds
= split_command(cp
->verb
, &(cp
->cmds
));
333 for( cp
= commands
; cp
->verb
; cp
++ ){
336 if( argc
-1 < cp
->ncmds
)
338 for( match
= 1, i
= 0 ; i
< cp
->ncmds
; i
++ ){
343 for(s2
= cp
->cmds
[i
], s1
= argv
[i
+1];
352 /* If you understand why this code works ...
353 you are a genious !! */
354 if(argc
>i
+1 && !strcmp(argv
[i
+1],"--help")){
357 print_help(prgname
, cp
, ADVANCED_HELP
);
366 *nargs_
= argc
-matchcmd
->ncmds
-1;
367 *cmd_
= matchcmd
->verb
;
368 *args_
= argv
+matchcmd
->ncmds
+1;
375 printf("\n%s\n", BTRFS_BUILD_VERSION
);
380 fprintf( stderr
, "ERROR: unknown command '%s'\n",argv
[1]);
385 if(check_ambiguity(matchcmd
, argv
))
388 /* check the number of argument */
389 if (matchcmd
->nargs
< 0 && matchcmd
->nargs
< -*nargs_
){
390 fprintf(stderr
, "ERROR: '%s' requires minimum %d arg(s)\n",
391 matchcmd
->verb
, -matchcmd
->nargs
);
394 if(matchcmd
->nargs
>= 0 && matchcmd
->nargs
!= *nargs_
&& matchcmd
->nargs
!= 999){
395 fprintf(stderr
, "ERROR: '%s' requires %d arg(s)\n",
396 matchcmd
->verb
, matchcmd
->nargs
);
400 if (prepare_args( nargs_
, args_
, prgname
, matchcmd
)){
401 fprintf(stderr
, "ERROR: not enough memory\\n");
408 int main(int ac
, char **av
)
411 char *cmd
=0, **args
=0;
413 CommandFunction func
=0;
415 r
= parse_args(ac
, av
, &func
, &nargs
, &cmd
, &args
);
417 /* error or no command to parse*/
421 exit(func(nargs
, args
));