btrfs-progs: add option g to show generation
[platform/upstream/btrfs-progs.git] / cmds-subvolume.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 #include <stdio.h>
18 #include <stdlib.h>
19 #include <string.h>
20 #include <unistd.h>
21 #include <sys/ioctl.h>
22 #include <errno.h>
23 #include <sys/stat.h>
24 #include <libgen.h>
25 #include <limits.h>
26 #include <getopt.h>
27 #include <uuid/uuid.h>
28
29 #include "kerncompat.h"
30 #include "ioctl.h"
31 #include "qgroup.h"
32
33 #include "ctree.h"
34 #include "commands.h"
35 #include "btrfs-list.h"
36 #include "utils.h"
37
38 static const char * const subvolume_cmd_group_usage[] = {
39         "btrfs subvolume <command> <args>",
40         NULL
41 };
42
43 /*
44  * test if path is a directory
45  * this function return
46  * 0-> path exists but it is not a directory
47  * 1-> path exists and it is  a directory
48  * -1 -> path is unaccessible
49  */
50 static int test_isdir(char *path)
51 {
52         struct stat     st;
53         int             res;
54
55         res = stat(path, &st);
56         if(res < 0 )
57                 return -1;
58
59         return S_ISDIR(st.st_mode);
60 }
61
62 static const char * const cmd_subvol_create_usage[] = {
63         "btrfs subvolume create [<dest>/]<name>",
64         "Create a subvolume",
65         "Create a subvolume <name> in <dest>.  If <dest> is not given",
66         "subvolume <name> will be created in the current directory.",
67         NULL
68 };
69
70 static int cmd_subvol_create(int argc, char **argv)
71 {
72         int     res, fddst, len, e;
73         char    *newname;
74         char    *dstdir;
75         char    *dst;
76         struct btrfs_qgroup_inherit *inherit = NULL;
77
78         optind = 1;
79         while (1) {
80                 int c = getopt(argc, argv, "c:i:r");
81                 if (c < 0)
82                         break;
83
84                 switch (c) {
85                 case 'c':
86                         res = qgroup_inherit_add_copy(&inherit, optarg, 0);
87                         if (res)
88                                 return res;
89                         break;
90                 case 'i':
91                         res = qgroup_inherit_add_group(&inherit, optarg);
92                         if (res)
93                                 return res;
94                         break;
95                 default:
96                         usage(cmd_subvol_create_usage);
97                 }
98         }
99
100         if (check_argc_exact(argc - optind, 1))
101                 usage(cmd_subvol_create_usage);
102
103         dst = argv[optind];
104
105         res = test_isdir(dst);
106         if(res >= 0 ){
107                 fprintf(stderr, "ERROR: '%s' exists\n", dst);
108                 return 12;
109         }
110
111         newname = strdup(dst);
112         newname = basename(newname);
113         dstdir = strdup(dst);
114         dstdir = dirname(dstdir);
115
116         if( !strcmp(newname,".") || !strcmp(newname,"..") ||
117              strchr(newname, '/') ){
118                 fprintf(stderr, "ERROR: uncorrect subvolume name ('%s')\n",
119                         newname);
120                 return 14;
121         }
122
123         len = strlen(newname);
124         if (len == 0 || len >= BTRFS_VOL_NAME_MAX) {
125                 fprintf(stderr, "ERROR: subvolume name too long ('%s)\n",
126                         newname);
127                 return 14;
128         }
129
130         fddst = open_file_or_dir(dstdir);
131         if (fddst < 0) {
132                 fprintf(stderr, "ERROR: can't access to '%s'\n", dstdir);
133                 return 12;
134         }
135
136         printf("Create subvolume '%s/%s'\n", dstdir, newname);
137         if (inherit) {
138                 struct btrfs_ioctl_vol_args_v2  args;
139
140                 memset(&args, 0, sizeof(args));
141                 strncpy(args.name, newname, BTRFS_SUBVOL_NAME_MAX);
142                 args.name[BTRFS_SUBVOL_NAME_MAX-1] = 0;
143                 args.flags |= BTRFS_SUBVOL_QGROUP_INHERIT;
144                 args.size = qgroup_inherit_size(inherit);
145                 args.qgroup_inherit = inherit;
146
147                 res = ioctl(fddst, BTRFS_IOC_SUBVOL_CREATE_V2, &args);
148         } else {
149                 struct btrfs_ioctl_vol_args     args;
150
151                 memset(&args, 0, sizeof(args));
152                 strncpy(args.name, newname, BTRFS_SUBVOL_NAME_MAX);
153                 args.name[BTRFS_SUBVOL_NAME_MAX-1] = 0;
154
155                 res = ioctl(fddst, BTRFS_IOC_SUBVOL_CREATE, &args);
156         }
157
158         e = errno;
159
160         close(fddst);
161
162         if(res < 0 ){
163                 fprintf( stderr, "ERROR: cannot create subvolume - %s\n",
164                         strerror(e));
165                 return 11;
166         }
167         free(inherit);
168
169         return 0;
170 }
171
172 /*
173  * test if path is a subvolume:
174  * this function return
175  * 0-> path exists but it is not a subvolume
176  * 1-> path exists and it is  a subvolume
177  * -1 -> path is unaccessible
178  */
179 int test_issubvolume(char *path)
180 {
181         struct stat     st;
182         int             res;
183
184         res = stat(path, &st);
185         if(res < 0 )
186                 return -1;
187
188         return (st.st_ino == 256) && S_ISDIR(st.st_mode);
189 }
190
191 static const char * const cmd_subvol_delete_usage[] = {
192         "btrfs subvolume delete <subvolume> [<subvolume>...]",
193         "Delete subvolume(s)",
194         NULL
195 };
196
197 static int cmd_subvol_delete(int argc, char **argv)
198 {
199         int     res, fd, len, e, cnt = 1, ret = 0;
200         struct btrfs_ioctl_vol_args     args;
201         char    *dname, *vname, *cpath;
202         char    *path;
203
204         if (argc < 2)
205                 usage(cmd_subvol_delete_usage);
206
207 again:
208         path = argv[cnt];
209
210         res = test_issubvolume(path);
211         if(res<0){
212                 fprintf(stderr, "ERROR: error accessing '%s'\n", path);
213                 ret = 12;
214                 goto out;
215         }
216         if(!res){
217                 fprintf(stderr, "ERROR: '%s' is not a subvolume\n", path);
218                 ret = 13;
219                 goto out;
220         }
221
222         cpath = realpath(path, 0);
223         dname = strdup(cpath);
224         dname = dirname(dname);
225         vname = strdup(cpath);
226         vname = basename(vname);
227         free(cpath);
228
229         if( !strcmp(vname,".") || !strcmp(vname,"..") ||
230              strchr(vname, '/') ){
231                 fprintf(stderr, "ERROR: incorrect subvolume name ('%s')\n",
232                         vname);
233                 ret = 14;
234                 goto out;
235         }
236
237         len = strlen(vname);
238         if (len == 0 || len >= BTRFS_VOL_NAME_MAX) {
239                 fprintf(stderr, "ERROR: snapshot name too long ('%s)\n",
240                         vname);
241                 ret = 14;
242                 goto out;
243         }
244
245         fd = open_file_or_dir(dname);
246         if (fd < 0) {
247                 close(fd);
248                 fprintf(stderr, "ERROR: can't access to '%s'\n", dname);
249                 ret = 12;
250                 goto out;
251         }
252
253         printf("Delete subvolume '%s/%s'\n", dname, vname);
254         strncpy(args.name, vname, BTRFS_PATH_NAME_MAX);
255         args.name[BTRFS_PATH_NAME_MAX-1] = 0;
256         res = ioctl(fd, BTRFS_IOC_SNAP_DESTROY, &args);
257         e = errno;
258
259         close(fd);
260
261         if(res < 0 ){
262                 fprintf( stderr, "ERROR: cannot delete '%s/%s' - %s\n",
263                         dname, vname, strerror(e));
264                 ret = 11;
265                 goto out;
266         }
267
268 out:
269         cnt++;
270         if (cnt < argc)
271                 goto again;
272
273         return ret;
274 }
275
276 /*
277  * Naming of options:
278  * - uppercase for filters and sort options
279  * - lowercase for enabling specific items in the output
280  */
281 static const char * const cmd_subvol_list_usage[] = {
282         "btrfs subvolume list [-agopurts] [-G [+|-]value] [-C [+|-]value] "
283         "[--sort=gen,ogen,rootid,path] <path>",
284         "List subvolumes (and snapshots)",
285         "",
286         "-p           print parent ID",
287         "-a           print all the subvolumes in the filesystem and",
288         "             distinguish absolute and relative path with respect",
289         "             to the given <path>",
290         "-g           print the generation of the subvolume",
291         "-o           print only subvolumes bellow specified path",
292         "-u           print the uuid of subvolumes (and snapshots)",
293         "-q           print the parent uuid of the snapshots",
294         "-t           print the result as a table",
295         "-s           list snapshots only in the filesystem",
296         "-r           list readonly subvolumes (including snapshots)",
297         "-G [+|-]value",
298         "             filter the subvolumes by generation",
299         "             (+value: >= value; -value: <= value; value: = value)",
300         "-C [+|-]value",
301         "             filter the subvolumes by ogeneration",
302         "             (+value: >= value; -value: <= value; value: = value)",
303         "--sort=gen,ogen,rootid,path",
304         "             list the subvolume in order of gen, ogen, rootid or path",
305         "             you also can add '+' or '-' in front of each items.",
306         "             (+:ascending, -:descending, ascending default)",
307         NULL,
308 };
309
310 static int cmd_subvol_list(int argc, char **argv)
311 {
312         struct btrfs_list_filter_set *filter_set;
313         struct btrfs_list_comparer_set *comparer_set;
314         u64 flags = 0;
315         int fd = -1;
316         u64 top_id;
317         int ret = -1, uerr = 0;
318         int c;
319         char *subvol;
320         int is_tab_result = 0;
321         int is_list_all = 0;
322         int is_only_in_path = 0;
323         struct option long_options[] = {
324                 {"sort", 1, NULL, 'S'},
325                 {0, 0, 0, 0}
326         };
327
328         filter_set = btrfs_list_alloc_filter_set();
329         comparer_set = btrfs_list_alloc_comparer_set();
330
331         optind = 1;
332         while(1) {
333                 c = getopt_long(argc, argv,
334                                     "agopqsurG:C:t", long_options, NULL);
335                 if (c < 0)
336                         break;
337
338                 switch(c) {
339                 case 'p':
340                         btrfs_list_setup_print_column(BTRFS_LIST_PARENT);
341                         break;
342                 case 'a':
343                         is_list_all = 1;
344                         break;
345                 case 'g':
346                         btrfs_list_setup_print_column(BTRFS_LIST_GENERATION);
347                         break;
348                 case 'o':
349                         is_only_in_path = 1;
350                         break;
351                 case 't':
352                         is_tab_result = 1;
353                         break;
354                 case 's':
355                         btrfs_list_setup_filter(&filter_set,
356                                                 BTRFS_LIST_FILTER_SNAPSHOT_ONLY,
357                                                 0);
358                         btrfs_list_setup_print_column(BTRFS_LIST_OGENERATION);
359                         btrfs_list_setup_print_column(BTRFS_LIST_OTIME);
360
361                 case 'u':
362                         btrfs_list_setup_print_column(BTRFS_LIST_UUID);
363                         break;
364                 case 'q':
365                         btrfs_list_setup_print_column(BTRFS_LIST_PUUID);
366                         break;
367                 case 'r':
368                         flags |= BTRFS_ROOT_SUBVOL_RDONLY;
369                         break;
370                 case 'G':
371                         btrfs_list_setup_print_column(BTRFS_LIST_GENERATION);
372                         ret = btrfs_list_parse_filter_string(optarg,
373                                                         &filter_set,
374                                                         BTRFS_LIST_FILTER_GEN);
375                         if (ret) {
376                                 uerr = 1;
377                                 goto out;
378                         }
379                         break;
380
381                 case 'C':
382                         btrfs_list_setup_print_column(BTRFS_LIST_OGENERATION);
383                         ret = btrfs_list_parse_filter_string(optarg,
384                                                         &filter_set,
385                                                         BTRFS_LIST_FILTER_CGEN);
386                         if (ret) {
387                                 uerr = 1;
388                                 goto out;
389                         }
390                         break;
391                 case 'S':
392                         ret = btrfs_list_parse_sort_string(optarg,
393                                                            &comparer_set);
394                         if (ret) {
395                                 uerr = 1;
396                                 goto out;
397                         }
398                         break;
399
400                 default:
401                         uerr = 1;
402                         goto out;
403                 }
404         }
405
406         if (flags)
407                 btrfs_list_setup_filter(&filter_set, BTRFS_LIST_FILTER_FLAGS,
408                                         flags);
409
410         if (check_argc_exact(argc - optind, 1)) {
411                 uerr = 1;
412                 goto out;
413         }
414
415         subvol = argv[optind];
416
417         ret = test_issubvolume(subvol);
418         if (ret < 0) {
419                 fprintf(stderr, "ERROR: error accessing '%s'\n", subvol);
420                 goto out;
421         }
422         if (!ret) {
423                 fprintf(stderr, "ERROR: '%s' is not a subvolume\n", subvol);
424                 ret = -1;
425                 goto out;
426         }
427
428         fd = open_file_or_dir(subvol);
429         if (fd < 0) {
430                 ret = -1;
431                 fprintf(stderr, "ERROR: can't access '%s'\n", subvol);
432                 goto out;
433         }
434
435         top_id = btrfs_list_get_path_rootid(fd);
436
437         if (is_list_all)
438                 btrfs_list_setup_filter(&filter_set,
439                                         BTRFS_LIST_FILTER_FULL_PATH,
440                                         top_id);
441         else if (is_only_in_path)
442                 btrfs_list_setup_filter(&filter_set,
443                                         BTRFS_LIST_FILTER_TOPID_EQUAL,
444                                         top_id);
445
446         /* by default we shall print the following columns*/
447         btrfs_list_setup_print_column(BTRFS_LIST_OBJECTID);
448         btrfs_list_setup_print_column(BTRFS_LIST_GENERATION);
449         btrfs_list_setup_print_column(BTRFS_LIST_TOP_LEVEL);
450         btrfs_list_setup_print_column(BTRFS_LIST_PATH);
451
452         if (is_tab_result)
453                 ret = btrfs_list_subvols_print(fd, filter_set, comparer_set,
454                                 BTRFS_LIST_LAYOUT_TABLE,
455                                 !is_list_all && !is_only_in_path, NULL);
456         else
457                 ret = btrfs_list_subvols_print(fd, filter_set, comparer_set,
458                                 BTRFS_LIST_LAYOUT_DEFAULT,
459                                 !is_list_all && !is_only_in_path, NULL);
460
461 out:
462         if (filter_set)
463                 btrfs_list_free_filter_set(filter_set);
464         if (comparer_set)
465                 btrfs_list_free_comparer_set(comparer_set);
466         if (uerr)
467                 usage(cmd_subvol_list_usage);
468
469         return ret;
470 }
471
472 static const char * const cmd_snapshot_usage[] = {
473         "btrfs subvolume snapshot [-r] <source> [<dest>/]<name>",
474         "Create a snapshot of the subvolume",
475         "Create a writable/readonly snapshot of the subvolume <source> with",
476         "the name <name> in the <dest> directory",
477         "",
478         "-r     create a readonly snapshot",
479         NULL
480 };
481
482 static int cmd_snapshot(int argc, char **argv)
483 {
484         char    *subvol, *dst;
485         int     res, fd, fddst, len, e, readonly = 0;
486         char    *newname;
487         char    *dstdir;
488         struct btrfs_ioctl_vol_args_v2  args;
489         struct btrfs_qgroup_inherit *inherit = NULL;
490
491         optind = 1;
492         memset(&args, 0, sizeof(args));
493         while (1) {
494                 int c = getopt(argc, argv, "c:i:r");
495                 if (c < 0)
496                         break;
497
498                 switch (c) {
499                 case 'c':
500                         res = qgroup_inherit_add_copy(&inherit, optarg, 0);
501                         if (res)
502                                 return res;
503                         break;
504                 case 'i':
505                         res = qgroup_inherit_add_group(&inherit, optarg);
506                         if (res)
507                                 return res;
508                         break;
509                 case 'r':
510                         readonly = 1;
511                         break;
512                 case 'x':
513                         res = qgroup_inherit_add_copy(&inherit, optarg, 1);
514                         if (res)
515                                 return res;
516                         break;
517                 default:
518                         usage(cmd_snapshot_usage);
519                 }
520         }
521
522         if (check_argc_exact(argc - optind, 2))
523                 usage(cmd_snapshot_usage);
524
525         subvol = argv[optind];
526         dst = argv[optind + 1];
527
528         res = test_issubvolume(subvol);
529         if(res<0){
530                 fprintf(stderr, "ERROR: error accessing '%s'\n", subvol);
531                 return 12;
532         }
533         if(!res){
534                 fprintf(stderr, "ERROR: '%s' is not a subvolume\n", subvol);
535                 return 13;
536         }
537
538         res = test_isdir(dst);
539         if(res == 0 ){
540                 fprintf(stderr, "ERROR: '%s' exists and it is not a directory\n", dst);
541                 return 12;
542         }
543
544         if(res>0){
545                 newname = strdup(subvol);
546                 newname = basename(newname);
547                 dstdir = dst;
548         }else{
549                 newname = strdup(dst);
550                 newname = basename(newname);
551                 dstdir = strdup(dst);
552                 dstdir = dirname(dstdir);
553         }
554
555         if( !strcmp(newname,".") || !strcmp(newname,"..") ||
556              strchr(newname, '/') ){
557                 fprintf(stderr, "ERROR: incorrect snapshot name ('%s')\n",
558                         newname);
559                 return 14;
560         }
561
562         len = strlen(newname);
563         if (len == 0 || len >= BTRFS_VOL_NAME_MAX) {
564                 fprintf(stderr, "ERROR: snapshot name too long ('%s)\n",
565                         newname);
566                 return 14;
567         }
568
569         fddst = open_file_or_dir(dstdir);
570         if (fddst < 0) {
571                 fprintf(stderr, "ERROR: can't access to '%s'\n", dstdir);
572                 return 12;
573         }
574
575         fd = open_file_or_dir(subvol);
576         if (fd < 0) {
577                 close(fddst);
578                 fprintf(stderr, "ERROR: can't access to '%s'\n", dstdir);
579                 return 12;
580         }
581
582         if (readonly) {
583                 args.flags |= BTRFS_SUBVOL_RDONLY;
584                 printf("Create a readonly snapshot of '%s' in '%s/%s'\n",
585                        subvol, dstdir, newname);
586         } else {
587                 printf("Create a snapshot of '%s' in '%s/%s'\n",
588                        subvol, dstdir, newname);
589         }
590
591         args.fd = fd;
592         if (inherit) {
593                 args.flags |= BTRFS_SUBVOL_QGROUP_INHERIT;
594                 args.size = qgroup_inherit_size(inherit);
595                 args.qgroup_inherit = inherit;
596         }
597         strncpy(args.name, newname, BTRFS_SUBVOL_NAME_MAX);
598         args.name[BTRFS_SUBVOL_NAME_MAX-1] = 0;
599         res = ioctl(fddst, BTRFS_IOC_SNAP_CREATE_V2, &args);
600         e = errno;
601
602         close(fd);
603         close(fddst);
604
605         if(res < 0 ){
606                 fprintf( stderr, "ERROR: cannot snapshot '%s' - %s\n",
607                         subvol, strerror(e));
608                 return 11;
609         }
610         free(inherit);
611
612         return 0;
613 }
614
615 static const char * const cmd_subvol_get_default_usage[] = {
616         "btrfs subvolume get-default <path>",
617         "Get the default subvolume of a filesystem",
618         NULL
619 };
620
621 static int cmd_subvol_get_default(int argc, char **argv)
622 {
623         int fd;
624         int ret;
625         char *subvol;
626         struct btrfs_list_filter_set *filter_set;
627         u64 default_id;
628
629         if (check_argc_exact(argc, 2))
630                 usage(cmd_subvol_get_default_usage);
631
632         subvol = argv[1];
633
634         ret = test_issubvolume(subvol);
635         if (ret < 0) {
636                 fprintf(stderr, "ERROR: error accessing '%s'\n", subvol);
637                 return 12;
638         }
639         if (!ret) {
640                 fprintf(stderr, "ERROR: '%s' is not a subvolume\n", subvol);
641                 return 13;
642         }
643
644         fd = open_file_or_dir(subvol);
645         if (fd < 0) {
646                 fprintf(stderr, "ERROR: can't access '%s'\n", subvol);
647                 return 12;
648         }
649
650         ret = btrfs_list_get_default_subvolume(fd, &default_id);
651         if (ret) {
652                 fprintf(stderr, "ERROR: can't perform the search - %s\n",
653                         strerror(errno));
654                 return ret;
655         }
656
657         if (default_id == 0) {
658                 fprintf(stderr, "ERROR: 'default' dir item not found\n");
659                 return ret;
660         }
661
662         /* no need to resolve roots if FS_TREE is default */
663         if (default_id == BTRFS_FS_TREE_OBJECTID) {
664                 printf("ID 5 (FS_TREE)\n");
665                 return ret;
666         }
667
668         filter_set = btrfs_list_alloc_filter_set();
669         btrfs_list_setup_filter(&filter_set, BTRFS_LIST_FILTER_ROOTID,
670                                 default_id);
671
672         /* by default we shall print the following columns*/
673         btrfs_list_setup_print_column(BTRFS_LIST_OBJECTID);
674         btrfs_list_setup_print_column(BTRFS_LIST_GENERATION);
675         btrfs_list_setup_print_column(BTRFS_LIST_TOP_LEVEL);
676         btrfs_list_setup_print_column(BTRFS_LIST_PATH);
677
678         ret = btrfs_list_subvols_print(fd, filter_set, NULL,
679                 BTRFS_LIST_LAYOUT_DEFAULT, 1, NULL);
680
681         if (filter_set)
682                 btrfs_list_free_filter_set(filter_set);
683         if (ret)
684                 return 19;
685         return 0;
686 }
687
688 static const char * const cmd_subvol_set_default_usage[] = {
689         "btrfs subvolume set-default <subvolid> <path>",
690         "Set the default subvolume of a filesystem",
691         NULL
692 };
693
694 static int cmd_subvol_set_default(int argc, char **argv)
695 {
696         int     ret=0, fd, e;
697         u64     objectid;
698         char    *path;
699         char    *subvolid;
700
701         if (check_argc_exact(argc, 3))
702                 usage(cmd_subvol_set_default_usage);
703
704         subvolid = argv[1];
705         path = argv[2];
706
707         fd = open_file_or_dir(path);
708         if (fd < 0) {
709                 fprintf(stderr, "ERROR: can't access to '%s'\n", path);
710                 return 12;
711         }
712
713         objectid = (unsigned long long)strtoll(subvolid, NULL, 0);
714         if (errno == ERANGE) {
715                 fprintf(stderr, "ERROR: invalid tree id (%s)\n",subvolid);
716                 return 30;
717         }
718         ret = ioctl(fd, BTRFS_IOC_DEFAULT_SUBVOL, &objectid);
719         e = errno;
720         close(fd);
721         if( ret < 0 ){
722                 fprintf(stderr, "ERROR: unable to set a new default subvolume - %s\n",
723                         strerror(e));
724                 return 30;
725         }
726         return 0;
727 }
728
729 static const char * const cmd_find_new_usage[] = {
730         "btrfs subvolume find-new <path> <lastgen>",
731         "List the recently modified files in a filesystem",
732         NULL
733 };
734
735 static int cmd_find_new(int argc, char **argv)
736 {
737         int fd;
738         int ret;
739         char *subvol;
740         u64 last_gen;
741
742         if (check_argc_exact(argc, 3))
743                 usage(cmd_find_new_usage);
744
745         subvol = argv[1];
746         last_gen = atoll(argv[2]);
747
748         ret = test_issubvolume(subvol);
749         if (ret < 0) {
750                 fprintf(stderr, "ERROR: error accessing '%s'\n", subvol);
751                 return 12;
752         }
753         if (!ret) {
754                 fprintf(stderr, "ERROR: '%s' is not a subvolume\n", subvol);
755                 return 13;
756         }
757
758         fd = open_file_or_dir(subvol);
759         if (fd < 0) {
760                 fprintf(stderr, "ERROR: can't access '%s'\n", subvol);
761                 return 12;
762         }
763         ret = btrfs_list_find_updated_files(fd, 0, last_gen);
764         if (ret)
765                 return 19;
766         return 0;
767 }
768
769 static const char * const cmd_subvol_show_usage[] = {
770         "btrfs subvolume show <subvol-path>",
771         "Show more information of the subvolume",
772         NULL
773 };
774
775 static int cmd_subvol_show(int argc, char **argv)
776 {
777         struct root_info get_ri;
778         struct btrfs_list_filter_set *filter_set;
779         char tstr[256];
780         char uuidparse[37];
781         char *fullpath = NULL, *svpath = NULL, *mnt = NULL;
782         char raw_prefix[] = "\t\t\t\t";
783         u64 sv_id, mntid;
784         int fd = -1, mntfd = -1;
785         int ret = -1;
786
787         if (check_argc_exact(argc, 2))
788                 usage(cmd_subvol_show_usage);
789
790         fullpath = realpath(argv[1], 0);
791         if (!fullpath) {
792                 fprintf(stderr, "ERROR: finding real path for '%s', %s\n",
793                         argv[1], strerror(errno));
794                 goto out;
795         }
796
797         ret = test_issubvolume(fullpath);
798         if (ret < 0) {
799                 fprintf(stderr, "ERROR: error accessing '%s'\n", fullpath);
800                 goto out;
801         }
802         if (!ret) {
803                 fprintf(stderr, "ERROR: '%s' is not a subvolume\n", fullpath);
804                 ret = -1;
805                 goto out;
806         }
807
808         ret = find_mount_root(fullpath, &mnt);
809         if (ret < 0) {
810                 fprintf(stderr, "ERROR: find_mount_root failed on %s: "
811                                 "%s\n", fullpath, strerror(-ret));
812                 goto out;
813         }
814         ret = -1;
815         svpath = get_subvol_name(mnt, fullpath);
816
817         fd = open_file_or_dir(fullpath);
818         if (fd < 0) {
819                 fprintf(stderr, "ERROR: can't access '%s'\n", fullpath);
820                 goto out;
821         }
822
823         sv_id = btrfs_list_get_path_rootid(fd);
824         if (sv_id < 0) {
825                 fprintf(stderr, "ERROR: can't get rootid for '%s'\n",
826                         fullpath);
827                 goto out;
828         }
829
830         mntfd = open_file_or_dir(mnt);
831         if (mntfd < 0) {
832                 fprintf(stderr, "ERROR: can't access '%s'\n", mnt);
833                 goto out;
834         }
835
836         mntid = btrfs_list_get_path_rootid(mntfd);
837         if (mntid < 0) {
838                 fprintf(stderr, "ERROR: can't get rootid for '%s'\n", mnt);
839                 goto out;
840         }
841
842         if (sv_id == BTRFS_FS_TREE_OBJECTID) {
843                 printf("%s is btrfs root\n", fullpath);
844                 goto out;
845         }
846
847         memset(&get_ri, 0, sizeof(get_ri));
848         get_ri.root_id = sv_id;
849
850         if (btrfs_get_subvol(mntfd, &get_ri)) {
851                 fprintf(stderr, "ERROR: can't find '%s'\n",
852                         svpath);
853                 goto out;
854         }
855
856         ret = 0;
857         /* print the info */
858         printf("%s\n", fullpath);
859         printf("\tName: \t\t\t%s\n", get_ri.name);
860
861         if (uuid_is_null(get_ri.uuid))
862                 strcpy(uuidparse, "-");
863         else
864                 uuid_unparse(get_ri.uuid, uuidparse);
865         printf("\tuuid: \t\t\t%s\n", uuidparse);
866
867         if (uuid_is_null(get_ri.puuid))
868                 strcpy(uuidparse, "-");
869         else
870                 uuid_unparse(get_ri.puuid, uuidparse);
871         printf("\tParent uuid: \t\t%s\n", uuidparse);
872
873         if (get_ri.otime)
874                 strftime(tstr, 256, "%Y-%m-%d %X",
875                          localtime(&get_ri.otime));
876         else
877                 strcpy(tstr, "-");
878         printf("\tCreation time: \t\t%s\n", tstr);
879
880         printf("\tObject ID: \t\t%llu\n", get_ri.root_id);
881         printf("\tGeneration (Gen): \t%llu\n", get_ri.gen);
882         printf("\tGen at creation: \t%llu\n", get_ri.ogen);
883         printf("\tParent: \t\t%llu\n", get_ri.ref_tree);
884         printf("\tTop Level: \t\t%llu\n", get_ri.top_id);
885
886         if (get_ri.flags & BTRFS_ROOT_SUBVOL_RDONLY)
887                 printf("\tFlags: \t\t\treadonly\n");
888         else
889                 printf("\tFlags: \t\t\t-\n");
890
891         /* print the snapshots of the given subvol if any*/
892         printf("\tSnapshot(s):\n");
893         filter_set = btrfs_list_alloc_filter_set();
894         btrfs_list_setup_filter(&filter_set, BTRFS_LIST_FILTER_BY_PARENT,
895                                 (u64)get_ri.uuid);
896         btrfs_list_setup_print_column(BTRFS_LIST_PATH);
897         btrfs_list_subvols_print(fd, filter_set, NULL, BTRFS_LIST_LAYOUT_RAW,
898                         1, raw_prefix);
899
900         /* clean up */
901         if (get_ri.path)
902                 free(get_ri.path);
903         if (get_ri.name)
904                 free(get_ri.name);
905         if (get_ri.full_path)
906                 free(get_ri.full_path);
907         if (filter_set)
908                 btrfs_list_free_filter_set(filter_set);
909
910 out:
911         if (mntfd >= 0)
912                 close(mntfd);
913         if (fd >= 0)
914                 close(fd);
915         if (mnt)
916                 free(mnt);
917         if (fullpath)
918                 free(fullpath);
919
920         return ret;
921 }
922
923 const struct cmd_group subvolume_cmd_group = {
924         subvolume_cmd_group_usage, NULL, {
925                 { "create", cmd_subvol_create, cmd_subvol_create_usage, NULL, 0 },
926                 { "delete", cmd_subvol_delete, cmd_subvol_delete_usage, NULL, 0 },
927                 { "list", cmd_subvol_list, cmd_subvol_list_usage, NULL, 0 },
928                 { "snapshot", cmd_snapshot, cmd_snapshot_usage, NULL, 0 },
929                 { "get-default", cmd_subvol_get_default,
930                         cmd_subvol_get_default_usage, NULL, 0 },
931                 { "set-default", cmd_subvol_set_default,
932                         cmd_subvol_set_default_usage, NULL, 0 },
933                 { "find-new", cmd_find_new, cmd_find_new_usage, NULL, 0 },
934                 { "show", cmd_subvol_show, cmd_subvol_show_usage, NULL, 0 },
935                 { 0, 0, 0, 0, 0 }
936         }
937 };
938
939 int cmd_subvolume(int argc, char **argv)
940 {
941         return handle_command_group(&subvolume_cmd_group, argc, argv);
942 }