Add the "btrfs filesystem label" command
[platform/upstream/btrfs-progs.git] / btrfs.c
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.
5  *
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.
10  *
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.
15  */
16
17 #define _GNU_SOURCE
18 #include <stdio.h>
19 #include <stdlib.h>
20 #include <string.h>
21
22 #include "kerncompat.h"
23 #include "btrfs_cmds.h"
24 #include "version.h"
25
26 typedef int (*CommandFunction)(int argc, char **argv);
27
28 struct Command {
29         CommandFunction func;   /* function which implements the command */
30         int     nargs;          /* if == 999, any number of arguments
31                                    if >= 0, number of arguments,
32                                    if < 0, _minimum_ number of arguments */
33         char    *verb;          /* verb */
34         char    *help;          /* help lines; form the 2nd onward they are
35                                    indented */
36
37         /* the following fields are run-time filled by the program */
38         char    **cmds;         /* array of subcommands */
39         int     ncmds;          /* number of subcommand */
40 };
41
42 static struct Command commands[] = {
43
44         /*
45                 avoid short commands different for the case only
46         */
47         { do_clone, 2,
48           "subvolume snapshot", "<source> [<dest>/]<name>\n"
49                 "Create a writable snapshot of the subvolume <source> with\n"
50                 "the name <name> in the <dest> directory."
51         },
52         { do_delete_subvolume, 1,
53           "subvolume delete", "<subvolume>\n"
54                 "Delete the subvolume <subvolume>."
55         },
56         { do_create_subvol, 1,
57           "subvolume create", "[<dest>/]<name>\n"
58                 "Create a subvolume in <dest> (or the current directory if\n"
59                 "not passed)."
60         },
61         { do_subvol_list, 1, "subvolume list", "<path>\n"
62                 "List the snapshot/subvolume of a filesystem."
63         },
64         { do_set_default_subvol, 2,
65           "subvolume set-default", "<id> <path>\n"
66                 "Set the subvolume of the filesystem <path> which will be mounted\n"
67                 "as default."
68         },
69         { do_find_newer, 2, "subvolume find-new", "<path> <last_gen>\n"
70                 "List the recently modified files in a filesystem."
71         },
72         { do_defrag, -1,
73           "filesystem defragment", "[-vf] [-c[zlib,lzo]] [-s start] [-l len] [-t size] <file>|<dir> [<file>|<dir>...]\n"
74                 "Defragment a file or a directory."
75         },
76         { do_fssync, 1,
77           "filesystem sync", "<path>\n"
78                 "Force a sync on the filesystem <path>."
79         },
80         { do_resize, 2,
81           "filesystem resize", "[+/-]<newsize>[gkm]|max <filesystem>\n"
82                 "Resize the file system. If 'max' is passed, the filesystem\n"
83                 "will occupe all available space on the device."
84         },
85         { do_show_filesystem, 999,
86           "filesystem show", "[<device>|<uuid>|<label>]\n"
87                 "Show the info of a btrfs filesystem. If no argument\n"
88                 "is passed, info of all the btrfs filesystem are shown."
89         },
90         { do_df_filesystem, 1,
91           "filesystem df", "<path>\n"
92                 "Show space usage information for a mount point."
93         },
94         { do_balance, 1,
95           "filesystem balance", "<path>\n"
96                 "Balance the chunks across the device."
97         },
98         { do_scan, 999, 
99           "device scan", "[<device>...]\n"
100                 "Scan all device for or the passed device for a btrfs\n"
101                 "filesystem."
102         },
103         { do_add_volume, -2,
104           "device add", "<device> [<device>...] <path>\n"
105                 "Add a device to a filesystem."
106         },
107         { do_remove_volume, -2,
108           "device delete", "<device> [<device>...] <path>\n"
109                 "Remove a device from a filesystem."
110         },
111         { 0, 0 , 0 }
112 };
113
114 static char *get_prgname(char *programname)
115 {
116         char    *np;
117         np = strrchr(programname,'/');
118         if(!np)
119                 np = programname;
120         else
121                 np++;
122
123         return np;
124 }
125
126 static void print_help(char *programname, struct Command *cmd)
127 {
128         char    *pc;
129
130         printf("\t%s %s ", programname, cmd->verb );
131
132         for(pc = cmd->help; *pc; pc++){
133                 putchar(*pc);
134                 if(*pc == '\n')
135                         printf("\t\t");
136         }
137         putchar('\n');
138 }
139
140 static void help(char *np)
141 {
142         struct Command *cp;
143
144         printf("Usage:\n");
145         for( cp = commands; cp->verb; cp++ )
146                 print_help(np, cp);
147
148         printf("\n\t%s help|--help|-h\n\t\tShow the help.\n",np);
149         printf("\n%s\n", BTRFS_BUILD_VERSION);
150 }
151
152 static int split_command(char *cmd, char ***commands)
153 {
154         int     c, l;
155         char    *p, *s;
156
157         for( *commands = 0, l = c = 0, p = s = cmd ; ; p++, l++ ){
158                 if ( *p && *p != ' ' )
159                         continue;
160
161                 /* c + 2 so that we have room for the null */
162                 (*commands) = realloc( (*commands), sizeof(char *)*(c + 2));
163                 (*commands)[c] = strndup(s, l);
164                 c++;
165                 l = 0;
166                 s = p+1;
167                 if( !*p ) break;
168         }
169
170         (*commands)[c] = 0;
171         return c;
172 }
173
174 /*
175         This function checks if the passed command is ambiguous
176 */
177 static int check_ambiguity(struct Command *cmd, char **argv){
178         int             i;
179         struct Command  *cp;
180         /* check for ambiguity */
181         for( i = 0 ; i < cmd->ncmds ; i++ ){
182                 int match;
183                 for( match = 0, cp = commands; cp->verb; cp++ ){
184                         int     j, skip;
185                         char    *s1, *s2;
186
187                         if( cp->ncmds < i )
188                                 continue;
189
190                         for( skip = 0, j = 0 ; j < i ; j++ )
191                                 if( strcmp(cmd->cmds[j], cp->cmds[j])){
192                                         skip=1;
193                                         break;
194                                 }
195                         if(skip)
196                                 continue;
197
198                         if( !strcmp(cmd->cmds[i], cp->cmds[i]))
199                                 continue;
200                         for(s2 = cp->cmds[i], s1 = argv[i+1];
201                                 *s1 == *s2 && *s1; s1++, s2++ ) ;
202                         if( !*s1 )
203                                 match++;
204                 }
205                 if(match){
206                         int j;
207                         fprintf(stderr, "ERROR: in command '");
208                         for( j = 0 ; j <= i ; j++ )
209                                 fprintf(stderr, "%s%s",j?" ":"", argv[j+1]);
210                         fprintf(stderr, "', '%s' is ambiguous\n",argv[j]);
211                         return -2;
212                 }
213         }
214         return 0;
215 }
216
217 /*
218  * This function, compacts the program name and the command in the first
219  * element of the '*av' array
220  */
221 static int prepare_args(int *ac, char ***av, char *prgname, struct Command *cmd ){
222
223         char    **ret;
224         int     i;
225         char    *newname;
226
227         ret = (char **)malloc(sizeof(char*)*(*ac+1));
228         newname = (char*)malloc(strlen(prgname)+strlen(cmd->verb)+2);
229         if( !ret || !newname ){
230                 free(ret);
231                 free(newname);
232                 return -1;
233         }
234
235         ret[0] = newname;
236         for(i=0; i < *ac ; i++ )
237                 ret[i+1] = (*av)[i];
238
239         strcpy(newname, prgname);
240         strcat(newname, " ");
241         strcat(newname, cmd->verb);
242
243         (*ac)++;
244         *av = ret;
245
246         return 0;
247
248 }
249
250
251
252 /*
253
254         This function perform the following jobs:
255         - show the help if '--help' or 'help' or '-h' are passed
256         - verify that a command is not ambiguous, otherwise show which
257           part of the command is ambiguous
258         - if after a (even partial) command there is '--help' show the help
259           for all the matching commands
260         - if the command doesn't' match show an error
261         - finally, if a command match, they return which command is matched and
262           the arguments
263
264         The function return 0 in case of help is requested; <0 in case
265         of uncorrect command; >0 in case of matching commands
266         argc, argv are the arg-counter and arg-vector (input)
267         *nargs_ is the number of the arguments after the command (output)
268         **cmd_  is the invoked command (output)
269         ***args_ are the arguments after the command
270
271 */
272 static int parse_args(int argc, char **argv,
273                       CommandFunction *func_,
274                       int *nargs_, char **cmd_, char ***args_ )
275 {
276         struct Command  *cp;
277         struct Command  *matchcmd=0;
278         char            *prgname = get_prgname(argv[0]);
279         int             i=0, helprequested=0;
280
281         if( argc < 2 || !strcmp(argv[1], "help") ||
282                 !strcmp(argv[1], "-h") || !strcmp(argv[1], "--help")){
283                 help(prgname);
284                 return 0;
285         }
286
287         for( cp = commands; cp->verb; cp++ )
288                 if( !cp->ncmds)
289                         cp->ncmds = split_command(cp->verb, &(cp->cmds));
290
291         for( cp = commands; cp->verb; cp++ ){
292                 int     match;
293
294                 if( argc-1 < cp->ncmds )
295                         continue;
296                 for( match = 1, i = 0 ; i < cp->ncmds ; i++ ){
297                         char    *s1, *s2;
298                         s1 = cp->cmds[i];
299                         s2 = argv[i+1];
300
301                         for(s2 = cp->cmds[i], s1 = argv[i+1];
302                                 *s1 == *s2 && *s1;
303                                 s1++, s2++ ) ;
304                         if( *s1 ){
305                                 match=0;
306                                 break;
307                         }
308                 }
309
310                 /* If you understand why this code works ...
311                         you are a genious !! */
312                 if(argc>i+1 && !strcmp(argv[i+1],"--help")){
313                         if(!helprequested)
314                                 printf("Usage:\n");
315                         print_help(prgname, cp);
316                         helprequested=1;
317                         continue;
318                 }
319
320                 if(!match)
321                         continue;
322
323                 matchcmd = cp;
324                 *nargs_  = argc-matchcmd->ncmds-1;
325                 *cmd_ = matchcmd->verb;
326                 *args_ = argv+matchcmd->ncmds+1;
327                 *func_ = cp->func;
328
329                 break;
330         }
331
332         if(helprequested){
333                 printf("\n%s\n", BTRFS_BUILD_VERSION);
334                 return 0;
335         }
336
337         if(!matchcmd){
338                 fprintf( stderr, "ERROR: unknown command '%s'\n",argv[1]);
339                 help(prgname);
340                 return -1;
341         }
342
343         if(check_ambiguity(matchcmd, argv))
344                 return -2;
345
346         /* check the number of argument */
347         if (matchcmd->nargs < 0 && matchcmd->nargs < -*nargs_ ){
348                 fprintf(stderr, "ERROR: '%s' requires minimum %d arg(s)\n",
349                         matchcmd->verb, -matchcmd->nargs);
350                         return -2;
351         }
352         if(matchcmd->nargs >= 0 && matchcmd->nargs != *nargs_ && matchcmd->nargs != 999){
353                 fprintf(stderr, "ERROR: '%s' requires %d arg(s)\n",
354                         matchcmd->verb, matchcmd->nargs);
355                         return -2;
356         }
357         
358         if (prepare_args( nargs_, args_, prgname, matchcmd )){
359                 fprintf(stderr, "ERROR: not enough memory\\n");
360                 return -20;
361         }
362
363
364         return 1;
365 }
366 int main(int ac, char **av )
367 {
368
369         char            *cmd=0, **args=0;
370         int             nargs=0, r;
371         CommandFunction func=0;
372
373         r = parse_args(ac, av, &func, &nargs, &cmd, &args);
374         if( r <= 0 ){
375                 /* error or no command to parse*/
376                 exit(-r);
377         }
378
379         exit(func(nargs, args));
380
381 }
382