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.
21 #include <sys/ioctl.h>
27 #include <uuid/uuid.h>
29 #include "kerncompat.h"
35 #include "btrfs-list.h"
38 static const char * const subvolume_cmd_group_usage[] = {
39 "btrfs subvolume <command> <args>",
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
50 static int test_isdir(char *path)
55 res = stat(path, &st);
59 return S_ISDIR(st.st_mode);
62 static const char * const cmd_subvol_create_usage[] = {
63 "btrfs subvolume create [<dest>/]<name>",
65 "Create a subvolume <name> in <dest>. If <dest> is not given",
66 "subvolume <name> will be created in the current directory.",
70 static int cmd_subvol_create(int argc, char **argv)
72 int res, fddst, len, e;
76 struct btrfs_qgroup_inherit *inherit = NULL;
80 int c = getopt(argc, argv, "c:i:r");
86 res = qgroup_inherit_add_copy(&inherit, optarg, 0);
91 res = qgroup_inherit_add_group(&inherit, optarg);
96 usage(cmd_subvol_create_usage);
100 if (check_argc_exact(argc - optind, 1))
101 usage(cmd_subvol_create_usage);
105 res = test_isdir(dst);
107 fprintf(stderr, "ERROR: '%s' exists\n", dst);
111 newname = strdup(dst);
112 newname = basename(newname);
113 dstdir = strdup(dst);
114 dstdir = dirname(dstdir);
116 if( !strcmp(newname,".") || !strcmp(newname,"..") ||
117 strchr(newname, '/') ){
118 fprintf(stderr, "ERROR: uncorrect subvolume name ('%s')\n",
123 len = strlen(newname);
124 if (len == 0 || len >= BTRFS_VOL_NAME_MAX) {
125 fprintf(stderr, "ERROR: subvolume name too long ('%s)\n",
130 fddst = open_file_or_dir(dstdir);
132 fprintf(stderr, "ERROR: can't access to '%s'\n", dstdir);
136 printf("Create subvolume '%s/%s'\n", dstdir, newname);
138 struct btrfs_ioctl_vol_args_v2 args;
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;
147 res = ioctl(fddst, BTRFS_IOC_SUBVOL_CREATE_V2, &args);
149 struct btrfs_ioctl_vol_args args;
151 memset(&args, 0, sizeof(args));
152 strncpy(args.name, newname, BTRFS_SUBVOL_NAME_MAX);
153 args.name[BTRFS_SUBVOL_NAME_MAX-1] = 0;
155 res = ioctl(fddst, BTRFS_IOC_SUBVOL_CREATE, &args);
163 fprintf( stderr, "ERROR: cannot create subvolume - %s\n",
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
179 int test_issubvolume(char *path)
184 res = stat(path, &st);
188 return (st.st_ino == 256) && S_ISDIR(st.st_mode);
191 static const char * const cmd_subvol_delete_usage[] = {
192 "btrfs subvolume delete <subvolume> [<subvolume>...]",
193 "Delete subvolume(s)",
197 static int cmd_subvol_delete(int argc, char **argv)
199 int res, fd, len, e, cnt = 1, ret = 0;
200 struct btrfs_ioctl_vol_args args;
201 char *dname, *vname, *cpath;
205 usage(cmd_subvol_delete_usage);
210 res = test_issubvolume(path);
212 fprintf(stderr, "ERROR: error accessing '%s'\n", path);
217 fprintf(stderr, "ERROR: '%s' is not a subvolume\n", path);
222 cpath = realpath(path, 0);
223 dname = strdup(cpath);
224 dname = dirname(dname);
225 vname = strdup(cpath);
226 vname = basename(vname);
229 if( !strcmp(vname,".") || !strcmp(vname,"..") ||
230 strchr(vname, '/') ){
231 fprintf(stderr, "ERROR: incorrect subvolume name ('%s')\n",
238 if (len == 0 || len >= BTRFS_VOL_NAME_MAX) {
239 fprintf(stderr, "ERROR: snapshot name too long ('%s)\n",
245 fd = open_file_or_dir(dname);
248 fprintf(stderr, "ERROR: can't access to '%s'\n", dname);
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);
262 fprintf( stderr, "ERROR: cannot delete '%s/%s' - %s\n",
263 dname, vname, strerror(e));
276 static const char * const cmd_subvol_list_usage[] = {
277 "btrfs subvolume list [-aopurts] [-g [+|-]value] [-c [+|-]value] "
278 "[--sort=gen,ogen,rootid,path] <path>",
279 "List subvolumes (and snapshots)",
281 "-p print parent ID",
282 "-a print all the subvolumes in the filesystem and",
283 " distinguish absolute and relative path with respect",
284 " to the given <path>",
285 "-o print only subvolumes bellow specified path",
286 "-u print the uuid of subvolumes (and snapshots)",
287 "-q print the parent uuid of the snapshots",
288 "-t print the result as a table",
289 "-s list snapshots only in the filesystem",
290 "-r list readonly subvolumes (including snapshots)",
292 " filter the subvolumes by generation",
293 " (+value: >= value; -value: <= value; value: = value)",
295 " filter the subvolumes by ogeneration",
296 " (+value: >= value; -value: <= value; value: = value)",
297 "--sort=gen,ogen,rootid,path",
298 " list the subvolume in order of gen, ogen, rootid or path",
299 " you also can add '+' or '-' in front of each items.",
300 " (+:ascending, -:descending, ascending default)",
304 static int cmd_subvol_list(int argc, char **argv)
306 struct btrfs_list_filter_set *filter_set;
307 struct btrfs_list_comparer_set *comparer_set;
311 int ret = -1, uerr = 0;
314 int is_tab_result = 0;
316 int is_only_in_path = 0;
317 struct option long_options[] = {
318 {"sort", 1, NULL, 'S'},
322 filter_set = btrfs_list_alloc_filter_set();
323 comparer_set = btrfs_list_alloc_comparer_set();
327 c = getopt_long(argc, argv,
328 "aopqsurg:c:t", long_options, NULL);
334 btrfs_list_setup_print_column(BTRFS_LIST_PARENT);
346 btrfs_list_setup_filter(&filter_set,
347 BTRFS_LIST_FILTER_SNAPSHOT_ONLY,
349 btrfs_list_setup_print_column(BTRFS_LIST_OGENERATION);
350 btrfs_list_setup_print_column(BTRFS_LIST_OTIME);
353 btrfs_list_setup_print_column(BTRFS_LIST_UUID);
356 btrfs_list_setup_print_column(BTRFS_LIST_PUUID);
359 flags |= BTRFS_ROOT_SUBVOL_RDONLY;
362 btrfs_list_setup_print_column(BTRFS_LIST_GENERATION);
363 ret = btrfs_list_parse_filter_string(optarg,
365 BTRFS_LIST_FILTER_GEN);
373 btrfs_list_setup_print_column(BTRFS_LIST_OGENERATION);
374 ret = btrfs_list_parse_filter_string(optarg,
376 BTRFS_LIST_FILTER_CGEN);
383 ret = btrfs_list_parse_sort_string(optarg,
398 btrfs_list_setup_filter(&filter_set, BTRFS_LIST_FILTER_FLAGS,
401 if (check_argc_exact(argc - optind, 1)) {
406 subvol = argv[optind];
408 ret = test_issubvolume(subvol);
410 fprintf(stderr, "ERROR: error accessing '%s'\n", subvol);
414 fprintf(stderr, "ERROR: '%s' is not a subvolume\n", subvol);
419 fd = open_file_or_dir(subvol);
422 fprintf(stderr, "ERROR: can't access '%s'\n", subvol);
426 top_id = btrfs_list_get_path_rootid(fd);
429 btrfs_list_setup_filter(&filter_set,
430 BTRFS_LIST_FILTER_FULL_PATH,
432 else if (is_only_in_path)
433 btrfs_list_setup_filter(&filter_set,
434 BTRFS_LIST_FILTER_TOPID_EQUAL,
437 /* by default we shall print the following columns*/
438 btrfs_list_setup_print_column(BTRFS_LIST_OBJECTID);
439 btrfs_list_setup_print_column(BTRFS_LIST_GENERATION);
440 btrfs_list_setup_print_column(BTRFS_LIST_TOP_LEVEL);
441 btrfs_list_setup_print_column(BTRFS_LIST_PATH);
444 ret = btrfs_list_subvols_print(fd, filter_set, comparer_set,
445 BTRFS_LIST_LAYOUT_TABLE,
446 !is_list_all && !is_only_in_path, NULL);
448 ret = btrfs_list_subvols_print(fd, filter_set, comparer_set,
449 BTRFS_LIST_LAYOUT_DEFAULT,
450 !is_list_all && !is_only_in_path, NULL);
454 btrfs_list_free_filter_set(filter_set);
456 btrfs_list_free_comparer_set(comparer_set);
458 usage(cmd_subvol_list_usage);
463 static const char * const cmd_snapshot_usage[] = {
464 "btrfs subvolume snapshot [-r] <source> [<dest>/]<name>",
465 "Create a snapshot of the subvolume",
466 "Create a writable/readonly snapshot of the subvolume <source> with",
467 "the name <name> in the <dest> directory",
469 "-r create a readonly snapshot",
473 static int cmd_snapshot(int argc, char **argv)
476 int res, fd, fddst, len, e, readonly = 0;
479 struct btrfs_ioctl_vol_args_v2 args;
480 struct btrfs_qgroup_inherit *inherit = NULL;
483 memset(&args, 0, sizeof(args));
485 int c = getopt(argc, argv, "c:i:r");
491 res = qgroup_inherit_add_copy(&inherit, optarg, 0);
496 res = qgroup_inherit_add_group(&inherit, optarg);
504 res = qgroup_inherit_add_copy(&inherit, optarg, 1);
509 usage(cmd_snapshot_usage);
513 if (check_argc_exact(argc - optind, 2))
514 usage(cmd_snapshot_usage);
516 subvol = argv[optind];
517 dst = argv[optind + 1];
519 res = test_issubvolume(subvol);
521 fprintf(stderr, "ERROR: error accessing '%s'\n", subvol);
525 fprintf(stderr, "ERROR: '%s' is not a subvolume\n", subvol);
529 res = test_isdir(dst);
531 fprintf(stderr, "ERROR: '%s' exists and it is not a directory\n", dst);
536 newname = strdup(subvol);
537 newname = basename(newname);
540 newname = strdup(dst);
541 newname = basename(newname);
542 dstdir = strdup(dst);
543 dstdir = dirname(dstdir);
546 if( !strcmp(newname,".") || !strcmp(newname,"..") ||
547 strchr(newname, '/') ){
548 fprintf(stderr, "ERROR: incorrect snapshot name ('%s')\n",
553 len = strlen(newname);
554 if (len == 0 || len >= BTRFS_VOL_NAME_MAX) {
555 fprintf(stderr, "ERROR: snapshot name too long ('%s)\n",
560 fddst = open_file_or_dir(dstdir);
562 fprintf(stderr, "ERROR: can't access to '%s'\n", dstdir);
566 fd = open_file_or_dir(subvol);
569 fprintf(stderr, "ERROR: can't access to '%s'\n", dstdir);
574 args.flags |= BTRFS_SUBVOL_RDONLY;
575 printf("Create a readonly snapshot of '%s' in '%s/%s'\n",
576 subvol, dstdir, newname);
578 printf("Create a snapshot of '%s' in '%s/%s'\n",
579 subvol, dstdir, newname);
584 args.flags |= BTRFS_SUBVOL_QGROUP_INHERIT;
585 args.size = qgroup_inherit_size(inherit);
586 args.qgroup_inherit = inherit;
588 strncpy(args.name, newname, BTRFS_SUBVOL_NAME_MAX);
589 args.name[BTRFS_SUBVOL_NAME_MAX-1] = 0;
590 res = ioctl(fddst, BTRFS_IOC_SNAP_CREATE_V2, &args);
597 fprintf( stderr, "ERROR: cannot snapshot '%s' - %s\n",
598 subvol, strerror(e));
606 static const char * const cmd_subvol_get_default_usage[] = {
607 "btrfs subvolume get-default <path>",
608 "Get the default subvolume of a filesystem",
612 static int cmd_subvol_get_default(int argc, char **argv)
617 struct btrfs_list_filter_set *filter_set;
620 if (check_argc_exact(argc, 2))
621 usage(cmd_subvol_get_default_usage);
625 ret = test_issubvolume(subvol);
627 fprintf(stderr, "ERROR: error accessing '%s'\n", subvol);
631 fprintf(stderr, "ERROR: '%s' is not a subvolume\n", subvol);
635 fd = open_file_or_dir(subvol);
637 fprintf(stderr, "ERROR: can't access '%s'\n", subvol);
641 ret = btrfs_list_get_default_subvolume(fd, &default_id);
643 fprintf(stderr, "ERROR: can't perform the search - %s\n",
648 if (default_id == 0) {
649 fprintf(stderr, "ERROR: 'default' dir item not found\n");
653 /* no need to resolve roots if FS_TREE is default */
654 if (default_id == BTRFS_FS_TREE_OBJECTID) {
655 printf("ID 5 (FS_TREE)\n");
659 filter_set = btrfs_list_alloc_filter_set();
660 btrfs_list_setup_filter(&filter_set, BTRFS_LIST_FILTER_ROOTID,
663 /* by default we shall print the following columns*/
664 btrfs_list_setup_print_column(BTRFS_LIST_OBJECTID);
665 btrfs_list_setup_print_column(BTRFS_LIST_GENERATION);
666 btrfs_list_setup_print_column(BTRFS_LIST_TOP_LEVEL);
667 btrfs_list_setup_print_column(BTRFS_LIST_PATH);
669 ret = btrfs_list_subvols_print(fd, filter_set, NULL,
670 BTRFS_LIST_LAYOUT_DEFAULT, 1, NULL);
673 btrfs_list_free_filter_set(filter_set);
679 static const char * const cmd_subvol_set_default_usage[] = {
680 "btrfs subvolume set-default <subvolid> <path>",
681 "Set the default subvolume of a filesystem",
685 static int cmd_subvol_set_default(int argc, char **argv)
692 if (check_argc_exact(argc, 3))
693 usage(cmd_subvol_set_default_usage);
698 fd = open_file_or_dir(path);
700 fprintf(stderr, "ERROR: can't access to '%s'\n", path);
704 objectid = (unsigned long long)strtoll(subvolid, NULL, 0);
705 if (errno == ERANGE) {
706 fprintf(stderr, "ERROR: invalid tree id (%s)\n",subvolid);
709 ret = ioctl(fd, BTRFS_IOC_DEFAULT_SUBVOL, &objectid);
713 fprintf(stderr, "ERROR: unable to set a new default subvolume - %s\n",
720 static const char * const cmd_find_new_usage[] = {
721 "btrfs subvolume find-new <path> <lastgen>",
722 "List the recently modified files in a filesystem",
726 static int cmd_find_new(int argc, char **argv)
733 if (check_argc_exact(argc, 3))
734 usage(cmd_find_new_usage);
737 last_gen = atoll(argv[2]);
739 ret = test_issubvolume(subvol);
741 fprintf(stderr, "ERROR: error accessing '%s'\n", subvol);
745 fprintf(stderr, "ERROR: '%s' is not a subvolume\n", subvol);
749 fd = open_file_or_dir(subvol);
751 fprintf(stderr, "ERROR: can't access '%s'\n", subvol);
754 ret = btrfs_list_find_updated_files(fd, 0, last_gen);
760 static const char * const cmd_subvol_show_usage[] = {
761 "btrfs subvolume show <subvol-path>",
762 "Show more information of the subvolume",
766 static int cmd_subvol_show(int argc, char **argv)
768 struct root_info get_ri;
769 struct btrfs_list_filter_set *filter_set;
772 char *fullpath = NULL, *svpath = NULL, *mnt = NULL;
773 char raw_prefix[] = "\t\t\t\t";
775 int fd = -1, mntfd = -1;
778 if (check_argc_exact(argc, 2))
779 usage(cmd_subvol_show_usage);
781 fullpath = realpath(argv[1], 0);
783 fprintf(stderr, "ERROR: finding real path for '%s', %s\n",
784 argv[1], strerror(errno));
788 ret = test_issubvolume(fullpath);
790 fprintf(stderr, "ERROR: error accessing '%s'\n", fullpath);
794 fprintf(stderr, "ERROR: '%s' is not a subvolume\n", fullpath);
799 ret = find_mount_root(fullpath, &mnt);
801 fprintf(stderr, "ERROR: find_mount_root failed on %s: "
802 "%s\n", fullpath, strerror(-ret));
806 svpath = get_subvol_name(mnt, fullpath);
808 fd = open_file_or_dir(fullpath);
810 fprintf(stderr, "ERROR: can't access '%s'\n", fullpath);
814 sv_id = btrfs_list_get_path_rootid(fd);
816 fprintf(stderr, "ERROR: can't get rootid for '%s'\n",
821 mntfd = open_file_or_dir(mnt);
823 fprintf(stderr, "ERROR: can't access '%s'\n", mnt);
827 mntid = btrfs_list_get_path_rootid(mntfd);
829 fprintf(stderr, "ERROR: can't get rootid for '%s'\n", mnt);
833 if (sv_id == BTRFS_FS_TREE_OBJECTID) {
834 printf("%s is btrfs root\n", fullpath);
838 memset(&get_ri, 0, sizeof(get_ri));
839 get_ri.root_id = sv_id;
841 if (btrfs_get_subvol(mntfd, &get_ri)) {
842 fprintf(stderr, "ERROR: can't find '%s'\n",
849 printf("%s\n", fullpath);
850 printf("\tName: \t\t\t%s\n", get_ri.name);
852 if (uuid_is_null(get_ri.uuid))
853 strcpy(uuidparse, "-");
855 uuid_unparse(get_ri.uuid, uuidparse);
856 printf("\tuuid: \t\t\t%s\n", uuidparse);
858 if (uuid_is_null(get_ri.puuid))
859 strcpy(uuidparse, "-");
861 uuid_unparse(get_ri.puuid, uuidparse);
862 printf("\tParent uuid: \t\t%s\n", uuidparse);
865 strftime(tstr, 256, "%Y-%m-%d %X",
866 localtime(&get_ri.otime));
869 printf("\tCreation time: \t\t%s\n", tstr);
871 printf("\tObject ID: \t\t%llu\n", get_ri.root_id);
872 printf("\tGeneration (Gen): \t%llu\n", get_ri.gen);
873 printf("\tGen at creation: \t%llu\n", get_ri.ogen);
874 printf("\tParent: \t\t%llu\n", get_ri.ref_tree);
875 printf("\tTop Level: \t\t%llu\n", get_ri.top_id);
877 /* print the snapshots of the given subvol if any*/
878 printf("\tSnapshot(s):\n");
879 filter_set = btrfs_list_alloc_filter_set();
880 btrfs_list_setup_filter(&filter_set, BTRFS_LIST_FILTER_BY_PARENT,
882 btrfs_list_setup_print_column(BTRFS_LIST_PATH);
883 btrfs_list_subvols_print(fd, filter_set, NULL, BTRFS_LIST_LAYOUT_RAW,
891 if (get_ri.full_path)
892 free(get_ri.full_path);
894 btrfs_list_free_filter_set(filter_set);
909 const struct cmd_group subvolume_cmd_group = {
910 subvolume_cmd_group_usage, NULL, {
911 { "create", cmd_subvol_create, cmd_subvol_create_usage, NULL, 0 },
912 { "delete", cmd_subvol_delete, cmd_subvol_delete_usage, NULL, 0 },
913 { "list", cmd_subvol_list, cmd_subvol_list_usage, NULL, 0 },
914 { "snapshot", cmd_snapshot, cmd_snapshot_usage, NULL, 0 },
915 { "get-default", cmd_subvol_get_default,
916 cmd_subvol_get_default_usage, NULL, 0 },
917 { "set-default", cmd_subvol_set_default,
918 cmd_subvol_set_default_usage, NULL, 0 },
919 { "find-new", cmd_find_new, cmd_find_new_usage, NULL, 0 },
920 { "show", cmd_subvol_show, cmd_subvol_show_usage, NULL, 0 },
925 int cmd_subvolume(int argc, char **argv)
927 return handle_command_group(&subvolume_cmd_group, argc, argv);