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