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.
17 #define _XOPEN_SOURCE 500
22 #include <sys/ioctl.h>
24 #include <uuid/uuid.h>
29 #include <linux/limits.h>
32 #include "kerncompat.h"
39 #include "list_sort.h"
44 * for btrfs fi show, we maintain a hash of fsids we've already printed.
45 * This way we don't print dups if a given FS is mounted more than once.
47 #define SEEN_FSID_HASH_SIZE 256
50 u8 fsid[BTRFS_FSID_SIZE];
51 struct seen_fsid *next;
54 static struct seen_fsid *seen_fsid_hash[SEEN_FSID_HASH_SIZE] = {NULL,};
56 static int add_seen_fsid(u8 *fsid)
59 int slot = hash % SEEN_FSID_HASH_SIZE;
60 struct seen_fsid *seen = seen_fsid_hash[slot];
61 struct seen_fsid *alloc;
67 if (memcmp(seen->fsid, fsid, BTRFS_FSID_SIZE) == 0)
78 alloc = malloc(sizeof(*alloc));
83 memcpy(alloc->fsid, fsid, BTRFS_FSID_SIZE);
88 seen_fsid_hash[slot] = alloc;
93 static void free_seen_fsid(void)
96 struct seen_fsid *seen;
97 struct seen_fsid *next;
99 for (slot = 0; slot < SEEN_FSID_HASH_SIZE; slot++) {
100 seen = seen_fsid_hash[slot];
106 seen_fsid_hash[slot] = NULL;
110 static const char * const filesystem_cmd_group_usage[] = {
111 "btrfs filesystem [<group>] <command> [<args>]",
115 static const char * const cmd_df_usage[] = {
116 "btrfs filesystem df [options] <path>",
117 "Show space usage information for a mount point",
118 "-b|--raw raw numbers in bytes",
119 "-h human friendly numbers, base 1024 (default)",
120 "-H human friendly numbers, base 1000",
121 "--iec use 1024 as a base (KiB, MiB, GiB, TiB)",
122 "--si use 1000 as a base (kB, mB, gB, tB)",
123 "-k|--kbytes show sizes in KiB, or kB with --si",
124 "-m|--mbytes show sizes in MiB, or mB with --si",
125 "-g|--gbytes show sizes in GiB, or gB with --si",
126 "-t|--tbytes show sizes in TiB, or tB with --si",
130 static char *group_type_str(u64 flag)
132 u64 mask = BTRFS_BLOCK_GROUP_TYPE_MASK |
133 BTRFS_SPACE_INFO_GLOBAL_RSV;
135 switch (flag & mask) {
136 case BTRFS_BLOCK_GROUP_DATA:
138 case BTRFS_BLOCK_GROUP_SYSTEM:
140 case BTRFS_BLOCK_GROUP_METADATA:
142 case BTRFS_BLOCK_GROUP_DATA|BTRFS_BLOCK_GROUP_METADATA:
143 return "Data+Metadata";
144 case BTRFS_SPACE_INFO_GLOBAL_RSV:
145 return "GlobalReserve";
151 static char *group_profile_str(u64 flag)
153 switch (flag & BTRFS_BLOCK_GROUP_PROFILE_MASK) {
156 case BTRFS_BLOCK_GROUP_RAID0:
158 case BTRFS_BLOCK_GROUP_RAID1:
160 case BTRFS_BLOCK_GROUP_RAID5:
162 case BTRFS_BLOCK_GROUP_RAID6:
164 case BTRFS_BLOCK_GROUP_DUP:
166 case BTRFS_BLOCK_GROUP_RAID10:
173 static int get_df(int fd, struct btrfs_ioctl_space_args **sargs_ret)
177 struct btrfs_ioctl_space_args *sargs;
179 sargs = malloc(sizeof(struct btrfs_ioctl_space_args));
183 sargs->space_slots = 0;
184 sargs->total_spaces = 0;
186 ret = ioctl(fd, BTRFS_IOC_SPACE_INFO, sargs);
189 fprintf(stderr, "ERROR: couldn't get space info - %s\n",
194 /* This really should never happen */
195 if (!sargs->total_spaces) {
199 count = sargs->total_spaces;
202 sargs = malloc(sizeof(struct btrfs_ioctl_space_args) +
203 (count * sizeof(struct btrfs_ioctl_space_info)));
207 sargs->space_slots = count;
208 sargs->total_spaces = 0;
209 ret = ioctl(fd, BTRFS_IOC_SPACE_INFO, sargs);
212 fprintf(stderr, "ERROR: get space info count %llu - %s\n",
221 static void print_df(struct btrfs_ioctl_space_args *sargs, unsigned unit_mode)
224 struct btrfs_ioctl_space_info *sp = sargs->spaces;
226 for (i = 0; i < sargs->total_spaces; i++, sp++) {
227 printf("%s, %s: total=%s, used=%s\n",
228 group_type_str(sp->flags),
229 group_profile_str(sp->flags),
230 pretty_size_mode(sp->total_bytes, unit_mode),
231 pretty_size_mode(sp->used_bytes, unit_mode));
235 static int cmd_df(int argc, char **argv)
237 struct btrfs_ioctl_space_args *sargs = NULL;
241 DIR *dirstream = NULL;
242 unsigned unit_mode = UNITS_DEFAULT;
246 static const struct option long_options[] = {
247 { "raw", no_argument, NULL, 'b'},
248 { "kbytes", no_argument, NULL, 'k'},
249 { "mbytes", no_argument, NULL, 'm'},
250 { "gbytes", no_argument, NULL, 'g'},
251 { "tbytes", no_argument, NULL, 't'},
252 { "si", no_argument, NULL, 256},
253 { "iec", no_argument, NULL, 257},
255 int c = getopt_long(argc, argv, "bhHkmgt", long_options,
261 unit_mode = UNITS_RAW;
264 units_set_base(&unit_mode, UNITS_KBYTES);
267 units_set_base(&unit_mode, UNITS_MBYTES);
270 units_set_base(&unit_mode, UNITS_GBYTES);
273 units_set_base(&unit_mode, UNITS_TBYTES);
276 unit_mode = UNITS_HUMAN_BINARY;
279 unit_mode = UNITS_HUMAN_DECIMAL;
282 units_set_mode(&unit_mode, UNITS_DECIMAL);
285 units_set_mode(&unit_mode, UNITS_BINARY);
292 if (check_argc_exact(argc, optind + 1))
297 fd = open_file_or_dir(path, &dirstream);
299 fprintf(stderr, "ERROR: can't access '%s'\n", path);
302 ret = get_df(fd, &sargs);
305 print_df(sargs, unit_mode);
308 fprintf(stderr, "ERROR: get_df failed %s\n", strerror(-ret));
311 close_file_or_dir(fd, dirstream);
315 static int match_search_item_kernel(__u8 *fsid, char *mnt, char *label,
318 char uuidbuf[BTRFS_UUID_UNPARSED_SIZE];
319 int search_len = strlen(search);
321 search_len = min(search_len, BTRFS_UUID_UNPARSED_SIZE);
322 uuid_unparse(fsid, uuidbuf);
323 if (!strncmp(uuidbuf, search, search_len))
326 if (strlen(label) && strcmp(label, search) == 0)
329 if (strcmp(mnt, search) == 0)
335 static int uuid_search(struct btrfs_fs_devices *fs_devices, char *search)
337 char uuidbuf[BTRFS_UUID_UNPARSED_SIZE];
338 struct list_head *cur;
339 struct btrfs_device *device;
340 int search_len = strlen(search);
342 search_len = min(search_len, BTRFS_UUID_UNPARSED_SIZE);
343 uuid_unparse(fs_devices->fsid, uuidbuf);
344 if (!strncmp(uuidbuf, search, search_len))
347 list_for_each(cur, &fs_devices->devices) {
348 device = list_entry(cur, struct btrfs_device, dev_list);
349 if ((device->label && strcmp(device->label, search) == 0) ||
350 strcmp(device->name, search) == 0)
357 * Sort devices by devid, ascending
359 static int cmp_device_id(void *priv, struct list_head *a,
362 const struct btrfs_device *da = list_entry(a, struct btrfs_device,
364 const struct btrfs_device *db = list_entry(b, struct btrfs_device,
367 return da->devid < db->devid ? -1 :
368 da->devid > db->devid ? 1 : 0;
371 static void splice_device_list(struct list_head *seed_devices,
372 struct list_head *all_devices)
374 struct btrfs_device *in_all, *next_all;
375 struct btrfs_device *in_seed, *next_seed;
377 list_for_each_entry_safe(in_all, next_all, all_devices, dev_list) {
378 list_for_each_entry_safe(in_seed, next_seed, seed_devices,
380 if (in_all->devid == in_seed->devid) {
382 * When do dev replace in a sprout fs
383 * to a dev in its seed fs, the replacing
384 * dev will reside in the sprout fs and
385 * the replaced dev will still exist
387 * So pick the latest one when showing
390 if (in_all->generation
391 < in_seed->generation) {
392 list_del(&in_all->dev_list);
394 } else if (in_all->generation
395 > in_seed->generation) {
396 list_del(&in_seed->dev_list);
404 list_splice(seed_devices, all_devices);
407 static void print_devices(struct btrfs_fs_devices *fs_devices,
410 struct btrfs_device *device;
411 struct btrfs_fs_devices *cur_fs;
412 struct list_head *all_devices;
414 all_devices = &fs_devices->devices;
415 cur_fs = fs_devices->seed;
416 /* add all devices of seed fs to the fs to be printed */
418 splice_device_list(&cur_fs->devices, all_devices);
419 cur_fs = cur_fs->seed;
422 list_sort(NULL, all_devices, cmp_device_id);
423 list_for_each_entry(device, all_devices, dev_list) {
424 printf("\tdevid %4llu size %s used %s path %s\n",
425 (unsigned long long)device->devid,
426 pretty_size(device->total_bytes),
427 pretty_size(device->bytes_used), device->name);
433 static void print_one_uuid(struct btrfs_fs_devices *fs_devices)
435 char uuidbuf[BTRFS_UUID_UNPARSED_SIZE];
436 struct btrfs_device *device;
440 if (add_seen_fsid(fs_devices->fsid))
443 uuid_unparse(fs_devices->fsid, uuidbuf);
444 device = list_entry(fs_devices->devices.next, struct btrfs_device,
446 if (device->label && device->label[0])
447 printf("Label: '%s' ", device->label);
449 printf("Label: none ");
451 total = device->total_devs;
452 printf(" uuid: %s\n\tTotal devices %llu FS bytes used %s\n", uuidbuf,
453 (unsigned long long)total,
454 pretty_size(device->super_bytes_used));
456 print_devices(fs_devices, &devs_found);
458 if (devs_found < total) {
459 printf("\t*** Some devices missing\n");
464 /* adds up all the used spaces as reported by the space info ioctl
466 static u64 calc_used_bytes(struct btrfs_ioctl_space_args *si)
470 for (i = 0; i < si->total_spaces; i++)
471 ret += si->spaces[i].used_bytes;
475 static int print_one_fs(struct btrfs_ioctl_fs_info_args *fs_info,
476 struct btrfs_ioctl_dev_info_args *dev_info,
477 struct btrfs_ioctl_space_args *space_info,
478 char *label, char *path)
483 char uuidbuf[BTRFS_UUID_UNPARSED_SIZE];
484 struct btrfs_ioctl_dev_info_args *tmp_dev_info;
487 ret = add_seen_fsid(fs_info->fsid);
493 uuid_unparse(fs_info->fsid, uuidbuf);
494 if (label && strlen(label))
495 printf("Label: '%s' ", label);
497 printf("Label: none ");
499 printf(" uuid: %s\n\tTotal devices %llu FS bytes used %s\n", uuidbuf,
500 fs_info->num_devices,
501 pretty_size(calc_used_bytes(space_info)));
503 for (i = 0; i < fs_info->num_devices; i++) {
504 tmp_dev_info = (struct btrfs_ioctl_dev_info_args *)&dev_info[i];
506 /* Add check for missing devices even mounted */
507 fd = open((char *)tmp_dev_info->path, O_RDONLY);
513 printf("\tdevid %4llu size %s used %s path %s\n",
515 pretty_size(tmp_dev_info->total_bytes),
516 pretty_size(tmp_dev_info->bytes_used),
521 printf("\t*** Some devices missing\n");
526 /* This function checks if the given input parameter is
528 * return -1: some error in the given input
529 * return 0: unknow input
530 * return 1: given input is uuid
531 * return 2: given input is path
533 static int check_arg_type(char *input)
541 if (realpath(input, path)) {
542 if (is_block_device(path) == 1)
543 return BTRFS_ARG_BLKDEV;
545 if (is_mount_point(path) == 1)
546 return BTRFS_ARG_MNTPOINT;
548 return BTRFS_ARG_UNKNOWN;
551 if (strlen(input) == (BTRFS_UUID_UNPARSED_SIZE - 1) &&
552 !uuid_parse(input, out))
553 return BTRFS_ARG_UUID;
555 return BTRFS_ARG_UNKNOWN;
558 static int btrfs_scan_kernel(void *search)
564 struct btrfs_ioctl_fs_info_args fs_info_arg;
565 struct btrfs_ioctl_dev_info_args *dev_info_arg = NULL;
566 struct btrfs_ioctl_space_args *space_info_arg = NULL;
567 char label[BTRFS_LABEL_SIZE];
569 f = setmntent("/proc/self/mounts", "r");
573 memset(label, 0, sizeof(label));
574 while ((mnt = getmntent(f)) != NULL) {
575 if (strcmp(mnt->mnt_type, "btrfs"))
577 ret = get_fs_info(mnt->mnt_dir, &fs_info_arg,
582 if (get_label_mounted(mnt->mnt_dir, label)) {
586 if (search && !match_search_item_kernel(fs_info_arg.fsid,
587 mnt->mnt_dir, label, search)) {
592 fd = open(mnt->mnt_dir, O_RDONLY);
593 if ((fd != -1) && !get_df(fd, &space_info_arg)) {
594 print_one_fs(&fs_info_arg, dev_info_arg,
595 space_info_arg, label, mnt->mnt_dir);
596 kfree(space_info_arg);
597 memset(label, 0, sizeof(label));
610 static int dev_to_fsid(char *dev, __u8 *fsid)
612 struct btrfs_super_block *disk_super;
621 fd = open(dev, O_RDONLY);
628 disk_super = (struct btrfs_super_block *)buf;
629 ret = btrfs_read_dev_super(fd, disk_super,
630 BTRFS_SUPER_INFO_OFFSET, 0);
634 memcpy(fsid, disk_super->fsid, BTRFS_FSID_SIZE);
643 static void free_fs_devices(struct btrfs_fs_devices *fs_devices)
645 struct btrfs_fs_devices *cur_seed, *next_seed;
646 struct btrfs_device *device;
648 while (!list_empty(&fs_devices->devices)) {
649 device = list_entry(fs_devices->devices.next,
650 struct btrfs_device, dev_list);
651 list_del(&device->dev_list);
658 /* free seed fs chain */
659 cur_seed = fs_devices->seed;
660 fs_devices->seed = NULL;
662 next_seed = cur_seed->seed;
665 cur_seed = next_seed;
668 list_del(&fs_devices->list);
672 static int copy_device(struct btrfs_device *dst,
673 struct btrfs_device *src)
675 dst->devid = src->devid;
676 memcpy(dst->uuid, src->uuid, BTRFS_UUID_SIZE);
677 if (src->name == NULL)
680 dst->name = strdup(src->name);
684 if (src->label == NULL)
687 dst->label = strdup(src->label);
693 dst->total_devs = src->total_devs;
694 dst->super_bytes_used = src->super_bytes_used;
695 dst->total_bytes = src->total_bytes;
696 dst->bytes_used = src->bytes_used;
697 dst->generation = src->generation;
702 static int copy_fs_devices(struct btrfs_fs_devices *dst,
703 struct btrfs_fs_devices *src)
705 struct btrfs_device *cur_dev, *dev_copy;
708 memcpy(dst->fsid, src->fsid, BTRFS_FSID_SIZE);
709 INIT_LIST_HEAD(&dst->devices);
712 list_for_each_entry(cur_dev, &src->devices, dev_list) {
713 dev_copy = malloc(sizeof(*dev_copy));
719 ret = copy_device(dev_copy, cur_dev);
725 list_add(&dev_copy->dev_list, &dst->devices);
726 dev_copy->fs_devices = dst;
732 static int find_and_copy_seed(struct btrfs_fs_devices *seed,
733 struct btrfs_fs_devices *copy,
734 struct list_head *fs_uuids) {
735 struct btrfs_fs_devices *cur_fs;
737 list_for_each_entry(cur_fs, fs_uuids, list)
738 if (!memcmp(seed->fsid, cur_fs->fsid, BTRFS_FSID_SIZE))
739 return copy_fs_devices(copy, cur_fs);
744 static int map_seed_devices(struct list_head *all_uuids,
745 char *search, int *found)
747 struct btrfs_fs_devices *cur_fs, *cur_seed;
748 struct btrfs_fs_devices *fs_copy, *seed_copy;
749 struct btrfs_fs_devices *opened_fs;
750 struct btrfs_device *device;
751 struct btrfs_fs_info *fs_info;
752 struct list_head *fs_uuids;
755 fs_uuids = btrfs_scanned_uuids();
758 * The fs_uuids list is global, and open_ctree_* will
759 * modify it, make a private copy here
761 list_for_each_entry(cur_fs, fs_uuids, list) {
762 /* don't bother handle all fs, if search target specified */
764 if (uuid_search(cur_fs, search) == 0)
769 fs_copy = malloc(sizeof(*fs_copy));
775 ret = copy_fs_devices(fs_copy, cur_fs);
781 list_add(&fs_copy->list, all_uuids);
784 list_for_each_entry(cur_fs, all_uuids, list) {
785 device = list_first_entry(&cur_fs->devices,
786 struct btrfs_device, dev_list);
790 * open_ctree_* detects seed/sprout mapping
792 fs_info = open_ctree_fs_info(device->name, 0, 0,
798 * copy the seed chain under the opened fs
800 opened_fs = fs_info->fs_devices;
802 while (opened_fs->seed) {
803 seed_copy = malloc(sizeof(*seed_copy));
808 ret = find_and_copy_seed(opened_fs->seed, seed_copy,
815 cur_seed->seed = seed_copy;
817 opened_fs = opened_fs->seed;
818 cur_seed = cur_seed->seed;
821 close_ctree(fs_info->chunk_root);
827 close_ctree(fs_info->chunk_root);
831 static const char * const cmd_show_usage[] = {
832 "btrfs filesystem show [options] [<path>|<uuid>|<device>|label]",
833 "Show the structure of a filesystem",
834 "-d|--all-devices show only disks under /dev containing btrfs filesystem",
835 "-m|--mounted show only mounted btrfs",
836 "If no argument is given, structure of all present filesystems is shown.",
840 static int cmd_show(int argc, char **argv)
842 LIST_HEAD(all_uuids);
843 struct btrfs_fs_devices *fs_devices;
846 /* default, search both kernel and udev */
849 char mp[BTRFS_PATH_NAME_MAX + 1];
851 __u8 fsid[BTRFS_FSID_SIZE];
852 char uuid_buf[BTRFS_UUID_UNPARSED_SIZE];
857 static struct option long_options[] = {
858 { "all-devices", no_argument, NULL, 'd'},
859 { "mounted", no_argument, NULL, 'm'},
860 { NULL, no_argument, NULL, 0 },
862 int c = getopt_long(argc, argv, "dm", long_options,
868 where = BTRFS_SCAN_LBLKID;
871 where = BTRFS_SCAN_MOUNTED;
874 usage(cmd_show_usage);
878 if (check_argc_max(argc, optind + 1))
879 usage(cmd_show_usage);
882 search = argv[optind];
883 if (strlen(search) == 0)
884 usage(cmd_show_usage);
885 type = check_arg_type(search);
887 * needs spl handling if input arg is block dev
888 * And if input arg is mount-point just print it
891 if (type == BTRFS_ARG_BLKDEV) {
892 if (where == BTRFS_SCAN_LBLKID) {
893 /* we need to do this because
894 * legacy BTRFS_SCAN_DEV
895 * provides /dev/dm-x paths
897 if (realpath(search, path))
900 ret = get_btrfs_mount(search,
903 /* given block dev is mounted*/
905 type = BTRFS_ARG_MNTPOINT;
907 ret = dev_to_fsid(search, fsid);
910 "ERROR: No btrfs on %s\n",
914 uuid_unparse(fsid, uuid_buf);
916 type = BTRFS_ARG_UUID;
923 if (where == BTRFS_SCAN_LBLKID)
926 /* show mounted btrfs */
927 ret = btrfs_scan_kernel(search);
928 if (search && !ret) {
929 /* since search is found we are done */
933 /* shows mounted only */
934 if (where == BTRFS_SCAN_MOUNTED)
938 ret = btrfs_scan_lblkid(!BTRFS_UPDATE_KERNEL);
941 fprintf(stderr, "ERROR: %d while scanning\n", ret);
946 * scan_for_btrfs() don't build seed/sprout mapping,
947 * do mapping build for each scanned fs here
949 ret = map_seed_devices(&all_uuids, search, &found);
952 "ERROR: %d while mapping seed devices\n", ret);
956 list_for_each_entry(fs_devices, &all_uuids, list)
957 print_one_uuid(fs_devices);
959 if (search && !found)
962 while (!list_empty(&all_uuids)) {
963 fs_devices = list_entry(all_uuids.next,
964 struct btrfs_fs_devices, list);
965 free_fs_devices(fs_devices);
968 printf("%s\n", BTRFS_BUILD_VERSION);
973 static const char * const cmd_sync_usage[] = {
974 "btrfs filesystem sync <path>",
975 "Force a sync on a filesystem",
979 static int cmd_sync(int argc, char **argv)
983 DIR *dirstream = NULL;
985 if (check_argc_exact(argc, 2))
986 usage(cmd_sync_usage);
990 fd = open_file_or_dir(path, &dirstream);
992 fprintf(stderr, "ERROR: can't access '%s'\n", path);
996 printf("FSSync '%s'\n", path);
997 res = ioctl(fd, BTRFS_IOC_SYNC);
999 close_file_or_dir(fd, dirstream);
1001 fprintf(stderr, "ERROR: unable to fs-syncing '%s' - %s\n",
1009 static int parse_compress_type(char *s)
1011 if (strcmp(optarg, "zlib") == 0)
1012 return BTRFS_COMPRESS_ZLIB;
1013 else if (strcmp(optarg, "lzo") == 0)
1014 return BTRFS_COMPRESS_LZO;
1016 fprintf(stderr, "Unknown compress type %s\n", s);
1021 static const char * const cmd_defrag_usage[] = {
1022 "btrfs filesystem defragment [options] <file>|<dir> [<file>|<dir>...]",
1023 "Defragment a file or a directory",
1026 "-r defragment files recursively",
1027 "-c[zlib,lzo] compress the file while defragmenting",
1028 "-f flush data to disk immediately after defragmenting",
1029 "-s start defragment only from byte onward",
1030 "-l len defragment only up to len bytes",
1031 "-t size minimal size of file to be considered for defragmenting",
1035 static int do_defrag(int fd, int fancy_ioctl,
1036 struct btrfs_ioctl_defrag_range_args *range)
1041 ret = ioctl(fd, BTRFS_IOC_DEFRAG, NULL);
1043 ret = ioctl(fd, BTRFS_IOC_DEFRAG_RANGE, range);
1048 static int defrag_global_fancy_ioctl;
1049 static struct btrfs_ioctl_defrag_range_args defrag_global_range;
1050 static int defrag_global_verbose;
1051 static int defrag_global_errors;
1052 static int defrag_callback(const char *fpath, const struct stat *sb,
1053 int typeflag, struct FTW *ftwbuf)
1059 if ((typeflag == FTW_F) && S_ISREG(sb->st_mode)) {
1060 if (defrag_global_verbose)
1061 printf("%s\n", fpath);
1062 fd = open(fpath, O_RDWR);
1066 ret = do_defrag(fd, defrag_global_fancy_ioctl, &defrag_global_range);
1069 if (ret && e == ENOTTY && defrag_global_fancy_ioctl) {
1070 fprintf(stderr, "ERROR: defrag range ioctl not "
1071 "supported in this kernel, please try "
1072 "without any options.\n");
1073 defrag_global_errors++;
1082 fprintf(stderr, "ERROR: defrag failed on %s - %s\n", fpath, strerror(e));
1083 defrag_global_errors++;
1087 static int cmd_defrag(int argc, char **argv)
1097 struct btrfs_ioctl_defrag_range_args range;
1099 int compress_type = BTRFS_COMPRESS_NONE;
1102 defrag_global_errors = 0;
1103 defrag_global_verbose = 0;
1104 defrag_global_errors = 0;
1105 defrag_global_fancy_ioctl = 0;
1108 int c = getopt(argc, argv, "vrc::fs:l:t:");
1114 compress_type = BTRFS_COMPRESS_ZLIB;
1116 compress_type = parse_compress_type(optarg);
1117 defrag_global_fancy_ioctl = 1;
1121 defrag_global_fancy_ioctl = 1;
1124 defrag_global_verbose = 1;
1127 start = parse_size(optarg);
1128 defrag_global_fancy_ioctl = 1;
1131 len = parse_size(optarg);
1132 defrag_global_fancy_ioctl = 1;
1135 thresh = parse_size(optarg);
1136 defrag_global_fancy_ioctl = 1;
1142 usage(cmd_defrag_usage);
1146 if (check_argc_min(argc - optind, 1))
1147 usage(cmd_defrag_usage);
1149 memset(&defrag_global_range, 0, sizeof(range));
1150 defrag_global_range.start = start;
1151 defrag_global_range.len = len;
1152 defrag_global_range.extent_thresh = thresh;
1153 if (compress_type) {
1154 defrag_global_range.flags |= BTRFS_DEFRAG_RANGE_COMPRESS;
1155 defrag_global_range.compress_type = compress_type;
1158 defrag_global_range.flags |= BTRFS_DEFRAG_RANGE_START_IO;
1160 for (i = optind; i < argc; i++) {
1164 fd = open_file_or_dir(argv[i], &dirstream);
1166 fprintf(stderr, "ERROR: failed to open %s - %s\n", argv[i],
1168 defrag_global_errors++;
1169 close_file_or_dir(fd, dirstream);
1172 if (fstat(fd, &st)) {
1173 fprintf(stderr, "ERROR: failed to stat %s - %s\n",
1174 argv[i], strerror(errno));
1175 defrag_global_errors++;
1176 close_file_or_dir(fd, dirstream);
1179 if (!(S_ISDIR(st.st_mode) || S_ISREG(st.st_mode))) {
1181 "ERROR: %s is not a directory or a regular file\n",
1183 defrag_global_errors++;
1184 close_file_or_dir(fd, dirstream);
1188 if (S_ISDIR(st.st_mode)) {
1189 ret = nftw(argv[i], defrag_callback, 10,
1190 FTW_MOUNT | FTW_PHYS);
1193 /* errors are handled in the callback */
1196 if (defrag_global_verbose)
1197 printf("%s\n", argv[i]);
1198 ret = do_defrag(fd, defrag_global_fancy_ioctl,
1199 &defrag_global_range);
1203 if (defrag_global_verbose)
1204 printf("%s\n", argv[i]);
1205 ret = do_defrag(fd, defrag_global_fancy_ioctl,
1206 &defrag_global_range);
1209 close_file_or_dir(fd, dirstream);
1210 if (ret && e == ENOTTY && defrag_global_fancy_ioctl) {
1211 fprintf(stderr, "ERROR: defrag range ioctl not "
1212 "supported in this kernel, please try "
1213 "without any options.\n");
1214 defrag_global_errors++;
1218 fprintf(stderr, "ERROR: defrag failed on %s - %s\n",
1219 argv[i], strerror(e));
1220 defrag_global_errors++;
1223 if (defrag_global_verbose)
1224 printf("%s\n", BTRFS_BUILD_VERSION);
1225 if (defrag_global_errors)
1226 fprintf(stderr, "total %d failures\n", defrag_global_errors);
1228 return !!defrag_global_errors;
1231 static const char * const cmd_resize_usage[] = {
1232 "btrfs filesystem resize [devid:][+/-]<newsize>[kKmMgGtTpPeE]|[devid:]max <path>",
1233 "Resize a filesystem",
1234 "If 'max' is passed, the filesystem will occupy all available space",
1235 "on the device 'devid'.",
1236 "[kK] means KiB, which denotes 1KiB = 1024B, 1MiB = 1024KiB, etc.",
1240 static int cmd_resize(int argc, char **argv)
1242 struct btrfs_ioctl_vol_args args;
1243 int fd, res, len, e;
1244 char *amount, *path;
1245 DIR *dirstream = NULL;
1247 if (check_argc_exact(argc, 3))
1248 usage(cmd_resize_usage);
1253 len = strlen(amount);
1254 if (len == 0 || len >= BTRFS_VOL_NAME_MAX) {
1255 fprintf(stderr, "ERROR: size value too long ('%s)\n",
1260 fd = open_file_or_dir(path, &dirstream);
1262 fprintf(stderr, "ERROR: can't access '%s'\n", path);
1266 printf("Resize '%s' of '%s'\n", path, amount);
1267 strncpy_null(args.name, amount);
1268 res = ioctl(fd, BTRFS_IOC_RESIZE, &args);
1270 close_file_or_dir(fd, dirstream);
1272 fprintf(stderr, "ERROR: unable to resize '%s' - %s\n",
1279 static const char * const cmd_label_usage[] = {
1280 "btrfs filesystem label [<device>|<mount_point>] [<newlabel>]",
1281 "Get or change the label of a filesystem",
1282 "With one argument, get the label of filesystem on <device>.",
1283 "If <newlabel> is passed, set the filesystem label to <newlabel>.",
1287 static int cmd_label(int argc, char **argv)
1289 if (check_argc_min(argc, 2) || check_argc_max(argc, 3))
1290 usage(cmd_label_usage);
1293 return set_label(argv[1], argv[2]);
1295 char label[BTRFS_LABEL_SIZE];
1298 ret = get_label(argv[1], label);
1300 fprintf(stdout, "%s\n", label);
1306 const struct cmd_group filesystem_cmd_group = {
1307 filesystem_cmd_group_usage, NULL, {
1308 { "df", cmd_df, cmd_df_usage, NULL, 0 },
1309 { "show", cmd_show, cmd_show_usage, NULL, 0 },
1310 { "sync", cmd_sync, cmd_sync_usage, NULL, 0 },
1311 { "defragment", cmd_defrag, cmd_defrag_usage, NULL, 0 },
1312 { "balance", cmd_balance, NULL, &balance_cmd_group, 1 },
1313 { "resize", cmd_resize, cmd_resize_usage, NULL, 0 },
1314 { "label", cmd_label, cmd_label_usage, NULL, 0 },
1319 int cmd_filesystem(int argc, char **argv)
1321 return handle_command_group(&filesystem_cmd_group, argc, argv);