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>
28 #include "kerncompat.h"
34 #include "btrfs-list.h"
37 static const char * const subvolume_cmd_group_usage[] = {
38 "btrfs subvolume <command> <args>",
43 * test if path is a directory
44 * this function return
45 * 0-> path exists but it is not a directory
46 * 1-> path exists and it is a directory
47 * -1 -> path is unaccessible
49 static int test_isdir(char *path)
54 res = stat(path, &st);
58 return S_ISDIR(st.st_mode);
61 static const char * const cmd_subvol_create_usage[] = {
62 "btrfs subvolume create [<dest>/]<name>",
64 "Create a subvolume <name> in <dest>. If <dest> is not given",
65 "subvolume <name> will be created in the current directory.",
69 static int cmd_subvol_create(int argc, char **argv)
71 int res, fddst, len, e;
75 struct btrfs_qgroup_inherit *inherit = NULL;
79 int c = getopt(argc, argv, "c:i:r");
85 res = qgroup_inherit_add_copy(&inherit, optarg, 0);
90 res = qgroup_inherit_add_group(&inherit, optarg);
95 usage(cmd_subvol_create_usage);
99 if (check_argc_exact(argc - optind, 1))
100 usage(cmd_subvol_create_usage);
104 res = test_isdir(dst);
106 fprintf(stderr, "ERROR: '%s' exists\n", dst);
110 newname = strdup(dst);
111 newname = basename(newname);
112 dstdir = strdup(dst);
113 dstdir = dirname(dstdir);
115 if( !strcmp(newname,".") || !strcmp(newname,"..") ||
116 strchr(newname, '/') ){
117 fprintf(stderr, "ERROR: uncorrect subvolume name ('%s')\n",
122 len = strlen(newname);
123 if (len == 0 || len >= BTRFS_VOL_NAME_MAX) {
124 fprintf(stderr, "ERROR: subvolume name too long ('%s)\n",
129 fddst = open_file_or_dir(dstdir);
131 fprintf(stderr, "ERROR: can't access to '%s'\n", dstdir);
135 printf("Create subvolume '%s/%s'\n", dstdir, newname);
137 struct btrfs_ioctl_vol_args_v2 args;
139 memset(&args, 0, sizeof(args));
140 strncpy(args.name, newname, BTRFS_SUBVOL_NAME_MAX);
141 args.name[BTRFS_SUBVOL_NAME_MAX-1] = 0;
142 args.flags |= BTRFS_SUBVOL_QGROUP_INHERIT;
143 args.size = qgroup_inherit_size(inherit);
144 args.qgroup_inherit = inherit;
146 res = ioctl(fddst, BTRFS_IOC_SUBVOL_CREATE_V2, &args);
148 struct btrfs_ioctl_vol_args args;
150 memset(&args, 0, sizeof(args));
151 strncpy(args.name, newname, BTRFS_SUBVOL_NAME_MAX);
152 args.name[BTRFS_SUBVOL_NAME_MAX-1] = 0;
154 res = ioctl(fddst, BTRFS_IOC_SUBVOL_CREATE, &args);
162 fprintf( stderr, "ERROR: cannot create subvolume - %s\n",
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
178 int test_issubvolume(char *path)
183 res = stat(path, &st);
187 return (st.st_ino == 256) && S_ISDIR(st.st_mode);
190 static const char * const cmd_subvol_delete_usage[] = {
191 "btrfs subvolume delete <subvolume> [<subvolume>...]",
192 "Delete subvolume(s)",
196 static int cmd_subvol_delete(int argc, char **argv)
198 int res, fd, len, e, cnt = 1, ret = 0;
199 struct btrfs_ioctl_vol_args args;
200 char *dname, *vname, *cpath;
204 usage(cmd_subvol_delete_usage);
209 res = test_issubvolume(path);
211 fprintf(stderr, "ERROR: error accessing '%s'\n", path);
216 fprintf(stderr, "ERROR: '%s' is not a subvolume\n", path);
221 cpath = realpath(path, 0);
222 dname = strdup(cpath);
223 dname = dirname(dname);
224 vname = strdup(cpath);
225 vname = basename(vname);
228 if( !strcmp(vname,".") || !strcmp(vname,"..") ||
229 strchr(vname, '/') ){
230 fprintf(stderr, "ERROR: incorrect subvolume name ('%s')\n",
237 if (len == 0 || len >= BTRFS_VOL_NAME_MAX) {
238 fprintf(stderr, "ERROR: snapshot name too long ('%s)\n",
244 fd = open_file_or_dir(dname);
247 fprintf(stderr, "ERROR: can't access to '%s'\n", dname);
252 printf("Delete subvolume '%s/%s'\n", dname, vname);
253 strncpy(args.name, vname, BTRFS_PATH_NAME_MAX);
254 args.name[BTRFS_PATH_NAME_MAX-1] = 0;
255 res = ioctl(fd, BTRFS_IOC_SNAP_DESTROY, &args);
261 fprintf( stderr, "ERROR: cannot delete '%s/%s' - %s\n",
262 dname, vname, strerror(e));
275 static const char * const cmd_subvol_list_usage[] = {
276 "btrfs subvolume list [-aopurts] [-g [+|-]value] [-c [+|-]value] "
277 "[--sort=gen,ogen,rootid,path] <path>",
278 "List subvolumes (and snapshots)",
280 "-p print parent ID",
281 "-a print all the subvolumes in the filesystem and",
282 " distinguish absolute and relative path with respect",
283 " to the given <path>",
284 "-o print only subvolumes bellow specified path",
285 "-u print the uuid of subvolumes (and snapshots)",
286 "-t print the result as a table",
287 "-s list snapshots only in the filesystem",
288 "-r list readonly subvolumes (including snapshots)",
290 " filter the subvolumes by generation",
291 " (+value: >= value; -value: <= value; value: = value)",
293 " filter the subvolumes by ogeneration",
294 " (+value: >= value; -value: <= value; value: = value)",
295 "--sort=gen,ogen,rootid,path",
296 " list the subvolume in order of gen, ogen, rootid or path",
297 " you also can add '+' or '-' in front of each items.",
298 " (+:ascending, -:descending, ascending default)",
302 static int cmd_subvol_list(int argc, char **argv)
304 struct btrfs_list_filter_set *filter_set;
305 struct btrfs_list_comparer_set *comparer_set;
312 int is_tab_result = 0;
314 int is_only_in_path = 0;
315 struct option long_options[] = {
316 {"sort", 1, NULL, 'S'},
320 filter_set = btrfs_list_alloc_filter_set();
321 comparer_set = btrfs_list_alloc_comparer_set();
325 c = getopt_long(argc, argv,
326 "aopsurg:c:t", long_options, NULL);
332 btrfs_list_setup_print_column(BTRFS_LIST_PARENT);
344 btrfs_list_setup_filter(&filter_set,
345 BTRFS_LIST_FILTER_SNAPSHOT_ONLY,
347 btrfs_list_setup_print_column(BTRFS_LIST_OGENERATION);
348 btrfs_list_setup_print_column(BTRFS_LIST_OTIME);
351 btrfs_list_setup_print_column(BTRFS_LIST_UUID);
354 flags |= BTRFS_ROOT_SUBVOL_RDONLY;
357 btrfs_list_setup_print_column(BTRFS_LIST_GENERATION);
358 ret = btrfs_list_parse_filter_string(optarg,
360 BTRFS_LIST_FILTER_GEN);
362 usage(cmd_subvol_list_usage);
366 btrfs_list_setup_print_column(BTRFS_LIST_OGENERATION);
367 ret = btrfs_list_parse_filter_string(optarg,
369 BTRFS_LIST_FILTER_CGEN);
371 usage(cmd_subvol_list_usage);
374 ret = btrfs_list_parse_sort_string(optarg,
377 usage(cmd_subvol_list_usage);
381 usage(cmd_subvol_list_usage);
386 btrfs_list_setup_filter(&filter_set, BTRFS_LIST_FILTER_FLAGS,
389 if (check_argc_exact(argc - optind, 1))
390 usage(cmd_subvol_list_usage);
392 subvol = argv[optind];
394 ret = test_issubvolume(subvol);
396 fprintf(stderr, "ERROR: error accessing '%s'\n", subvol);
400 fprintf(stderr, "ERROR: '%s' is not a subvolume\n", subvol);
404 fd = open_file_or_dir(subvol);
406 fprintf(stderr, "ERROR: can't access '%s'\n", subvol);
410 top_id = btrfs_list_get_path_rootid(fd);
413 btrfs_list_setup_filter(&filter_set,
414 BTRFS_LIST_FILTER_FULL_PATH,
416 else if (is_only_in_path)
417 btrfs_list_setup_filter(&filter_set,
418 BTRFS_LIST_FILTER_TOPID_EQUAL,
421 ret = btrfs_list_subvols_print(fd, filter_set, comparer_set,
423 !is_list_all && !is_only_in_path);
429 static const char * const cmd_snapshot_usage[] = {
430 "btrfs subvolume snapshot [-r] <source> [<dest>/]<name>",
431 "Create a snapshot of the subvolume",
432 "Create a writable/readonly snapshot of the subvolume <source> with",
433 "the name <name> in the <dest> directory",
435 "-r create a readonly snapshot",
439 static int cmd_snapshot(int argc, char **argv)
442 int res, fd, fddst, len, e, readonly = 0;
445 struct btrfs_ioctl_vol_args_v2 args;
446 struct btrfs_qgroup_inherit *inherit = NULL;
449 memset(&args, 0, sizeof(args));
451 int c = getopt(argc, argv, "c:i:r");
457 res = qgroup_inherit_add_copy(&inherit, optarg, 0);
462 res = qgroup_inherit_add_group(&inherit, optarg);
470 res = qgroup_inherit_add_copy(&inherit, optarg, 1);
475 usage(cmd_snapshot_usage);
479 if (check_argc_exact(argc - optind, 2))
480 usage(cmd_snapshot_usage);
482 subvol = argv[optind];
483 dst = argv[optind + 1];
485 res = test_issubvolume(subvol);
487 fprintf(stderr, "ERROR: error accessing '%s'\n", subvol);
491 fprintf(stderr, "ERROR: '%s' is not a subvolume\n", subvol);
495 res = test_isdir(dst);
497 fprintf(stderr, "ERROR: '%s' exists and it is not a directory\n", dst);
502 newname = strdup(subvol);
503 newname = basename(newname);
506 newname = strdup(dst);
507 newname = basename(newname);
508 dstdir = strdup(dst);
509 dstdir = dirname(dstdir);
512 if( !strcmp(newname,".") || !strcmp(newname,"..") ||
513 strchr(newname, '/') ){
514 fprintf(stderr, "ERROR: incorrect snapshot name ('%s')\n",
519 len = strlen(newname);
520 if (len == 0 || len >= BTRFS_VOL_NAME_MAX) {
521 fprintf(stderr, "ERROR: snapshot name too long ('%s)\n",
526 fddst = open_file_or_dir(dstdir);
528 fprintf(stderr, "ERROR: can't access to '%s'\n", dstdir);
532 fd = open_file_or_dir(subvol);
535 fprintf(stderr, "ERROR: can't access to '%s'\n", dstdir);
540 args.flags |= BTRFS_SUBVOL_RDONLY;
541 printf("Create a readonly snapshot of '%s' in '%s/%s'\n",
542 subvol, dstdir, newname);
544 printf("Create a snapshot of '%s' in '%s/%s'\n",
545 subvol, dstdir, newname);
550 args.flags |= BTRFS_SUBVOL_QGROUP_INHERIT;
551 args.size = qgroup_inherit_size(inherit);
552 args.qgroup_inherit = inherit;
554 strncpy(args.name, newname, BTRFS_SUBVOL_NAME_MAX);
555 args.name[BTRFS_SUBVOL_NAME_MAX-1] = 0;
556 res = ioctl(fddst, BTRFS_IOC_SNAP_CREATE_V2, &args);
563 fprintf( stderr, "ERROR: cannot snapshot '%s' - %s\n",
564 subvol, strerror(e));
572 static const char * const cmd_subvol_get_default_usage[] = {
573 "btrfs subvolume get-default <path>",
574 "Get the default subvolume of a filesystem",
578 static int cmd_subvol_get_default(int argc, char **argv)
583 struct btrfs_list_filter_set *filter_set;
586 if (check_argc_exact(argc, 2))
587 usage(cmd_subvol_get_default_usage);
591 ret = test_issubvolume(subvol);
593 fprintf(stderr, "ERROR: error accessing '%s'\n", subvol);
597 fprintf(stderr, "ERROR: '%s' is not a subvolume\n", subvol);
601 fd = open_file_or_dir(subvol);
603 fprintf(stderr, "ERROR: can't access '%s'\n", subvol);
607 ret = btrfs_list_get_default_subvolume(fd, &default_id);
609 fprintf(stderr, "ERROR: can't perform the search - %s\n",
614 if (default_id == 0) {
615 fprintf(stderr, "ERROR: 'default' dir item not found\n");
619 /* no need to resolve roots if FS_TREE is default */
620 if (default_id == BTRFS_FS_TREE_OBJECTID) {
621 printf("ID 5 (FS_TREE)\n");
625 filter_set = btrfs_list_alloc_filter_set();
626 btrfs_list_setup_filter(&filter_set, BTRFS_LIST_FILTER_ROOTID,
629 ret = btrfs_list_subvols_print(fd, filter_set, NULL, 0, 1);
635 static const char * const cmd_subvol_set_default_usage[] = {
636 "btrfs subvolume set-default <subvolid> <path>",
637 "Set the default subvolume of a filesystem",
641 static int cmd_subvol_set_default(int argc, char **argv)
648 if (check_argc_exact(argc, 3))
649 usage(cmd_subvol_set_default_usage);
654 fd = open_file_or_dir(path);
656 fprintf(stderr, "ERROR: can't access to '%s'\n", path);
660 objectid = (unsigned long long)strtoll(subvolid, NULL, 0);
661 if (errno == ERANGE) {
662 fprintf(stderr, "ERROR: invalid tree id (%s)\n",subvolid);
665 ret = ioctl(fd, BTRFS_IOC_DEFAULT_SUBVOL, &objectid);
669 fprintf(stderr, "ERROR: unable to set a new default subvolume - %s\n",
676 static const char * const cmd_find_new_usage[] = {
677 "btrfs subvolume find-new <path> <lastgen>",
678 "List the recently modified files in a filesystem",
682 static int cmd_find_new(int argc, char **argv)
689 if (check_argc_exact(argc, 3))
690 usage(cmd_find_new_usage);
693 last_gen = atoll(argv[2]);
695 ret = test_issubvolume(subvol);
697 fprintf(stderr, "ERROR: error accessing '%s'\n", subvol);
701 fprintf(stderr, "ERROR: '%s' is not a subvolume\n", subvol);
705 fd = open_file_or_dir(subvol);
707 fprintf(stderr, "ERROR: can't access '%s'\n", subvol);
710 ret = btrfs_list_find_updated_files(fd, 0, last_gen);
716 const struct cmd_group subvolume_cmd_group = {
717 subvolume_cmd_group_usage, NULL, {
718 { "create", cmd_subvol_create, cmd_subvol_create_usage, NULL, 0 },
719 { "delete", cmd_subvol_delete, cmd_subvol_delete_usage, NULL, 0 },
720 { "list", cmd_subvol_list, cmd_subvol_list_usage, NULL, 0 },
721 { "snapshot", cmd_snapshot, cmd_snapshot_usage, NULL, 0 },
722 { "get-default", cmd_subvol_get_default,
723 cmd_subvol_get_default_usage, NULL, 0 },
724 { "set-default", cmd_subvol_set_default,
725 cmd_subvol_set_default_usage, NULL, 0 },
726 { "find-new", cmd_find_new, cmd_find_new_usage, NULL, 0 },
731 int cmd_subvolume(int argc, char **argv)
733 return handle_command_group(&subvolume_cmd_group, argc, argv);