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>
23 #include <uuid/uuid.h>
28 #include <linux/limits.h>
31 #include "kerncompat.h"
37 #include "cmds-fi-usage.h"
38 #include "list_sort.h"
43 * for btrfs fi show, we maintain a hash of fsids we've already printed.
44 * This way we don't print dups if a given FS is mounted more than once.
46 #define SEEN_FSID_HASH_SIZE 256
49 u8 fsid[BTRFS_FSID_SIZE];
50 struct seen_fsid *next;
53 static struct seen_fsid *seen_fsid_hash[SEEN_FSID_HASH_SIZE] = {NULL,};
55 static int is_seen_fsid(u8 *fsid)
58 int slot = hash % SEEN_FSID_HASH_SIZE;
59 struct seen_fsid *seen = seen_fsid_hash[slot];
64 static int add_seen_fsid(u8 *fsid)
67 int slot = hash % SEEN_FSID_HASH_SIZE;
68 struct seen_fsid *seen = seen_fsid_hash[slot];
69 struct seen_fsid *alloc;
75 if (memcmp(seen->fsid, fsid, BTRFS_FSID_SIZE) == 0)
86 alloc = malloc(sizeof(*alloc));
91 memcpy(alloc->fsid, fsid, BTRFS_FSID_SIZE);
96 seen_fsid_hash[slot] = alloc;
101 static void free_seen_fsid(void)
104 struct seen_fsid *seen;
105 struct seen_fsid *next;
107 for (slot = 0; slot < SEEN_FSID_HASH_SIZE; slot++) {
108 seen = seen_fsid_hash[slot];
114 seen_fsid_hash[slot] = NULL;
118 static const char * const filesystem_cmd_group_usage[] = {
119 "btrfs filesystem [<group>] <command> [<args>]",
123 static const char * const cmd_filesystem_df_usage[] = {
124 "btrfs filesystem df [options] <path>",
125 "Show space usage information for a mount point",
126 "-b|--raw raw numbers in bytes",
127 "-h|--human-readable",
128 " human friendly numbers, base 1024 (default)",
129 "-H human friendly numbers, base 1000",
130 "--iec use 1024 as a base (KiB, MiB, GiB, TiB)",
131 "--si use 1000 as a base (kB, MB, GB, TB)",
132 "-k|--kbytes show sizes in KiB, or kB with --si",
133 "-m|--mbytes show sizes in MiB, or MB with --si",
134 "-g|--gbytes show sizes in GiB, or GB with --si",
135 "-t|--tbytes show sizes in TiB, or TB with --si",
139 static int get_df(int fd, struct btrfs_ioctl_space_args **sargs_ret)
143 struct btrfs_ioctl_space_args *sargs;
145 sargs = malloc(sizeof(struct btrfs_ioctl_space_args));
149 sargs->space_slots = 0;
150 sargs->total_spaces = 0;
152 ret = ioctl(fd, BTRFS_IOC_SPACE_INFO, sargs);
155 fprintf(stderr, "ERROR: couldn't get space info - %s\n",
160 /* This really should never happen */
161 if (!sargs->total_spaces) {
165 count = sargs->total_spaces;
168 sargs = malloc(sizeof(struct btrfs_ioctl_space_args) +
169 (count * sizeof(struct btrfs_ioctl_space_info)));
173 sargs->space_slots = count;
174 sargs->total_spaces = 0;
175 ret = ioctl(fd, BTRFS_IOC_SPACE_INFO, sargs);
178 fprintf(stderr, "ERROR: get space info count %llu - %s\n",
187 static void print_df(struct btrfs_ioctl_space_args *sargs, unsigned unit_mode)
190 struct btrfs_ioctl_space_info *sp = sargs->spaces;
192 for (i = 0; i < sargs->total_spaces; i++, sp++) {
193 printf("%s, %s: total=%s, used=%s\n",
194 btrfs_group_type_str(sp->flags),
195 btrfs_group_profile_str(sp->flags),
196 pretty_size_mode(sp->total_bytes, unit_mode),
197 pretty_size_mode(sp->used_bytes, unit_mode));
201 static int cmd_filesystem_df(int argc, char **argv)
203 struct btrfs_ioctl_space_args *sargs = NULL;
207 DIR *dirstream = NULL;
208 unsigned unit_mode = UNITS_DEFAULT;
212 static const struct option long_options[] = {
213 { "raw", no_argument, NULL, 'b'},
214 { "kbytes", no_argument, NULL, 'k'},
215 { "mbytes", no_argument, NULL, 'm'},
216 { "gbytes", no_argument, NULL, 'g'},
217 { "tbytes", no_argument, NULL, 't'},
218 { "si", no_argument, NULL, GETOPT_VAL_SI},
219 { "iec", no_argument, NULL, GETOPT_VAL_IEC},
220 { "human-readable", no_argument, NULL,
221 GETOPT_VAL_HUMAN_READABLE},
225 c = getopt_long(argc, argv, "bhHkmgt", long_options, NULL);
230 unit_mode = UNITS_RAW;
233 units_set_base(&unit_mode, UNITS_KBYTES);
236 units_set_base(&unit_mode, UNITS_MBYTES);
239 units_set_base(&unit_mode, UNITS_GBYTES);
242 units_set_base(&unit_mode, UNITS_TBYTES);
244 case GETOPT_VAL_HUMAN_READABLE:
246 unit_mode = UNITS_HUMAN_BINARY;
249 unit_mode = UNITS_HUMAN_DECIMAL;
252 units_set_mode(&unit_mode, UNITS_DECIMAL);
255 units_set_mode(&unit_mode, UNITS_BINARY);
258 usage(cmd_filesystem_df_usage);
262 if (check_argc_exact(argc, optind + 1))
263 usage(cmd_filesystem_df_usage);
267 fd = open_file_or_dir(path, &dirstream);
269 fprintf(stderr, "ERROR: can't access '%s'\n", path);
272 ret = get_df(fd, &sargs);
275 print_df(sargs, unit_mode);
278 fprintf(stderr, "ERROR: get_df failed %s\n", strerror(-ret));
281 close_file_or_dir(fd, dirstream);
285 static int match_search_item_kernel(__u8 *fsid, char *mnt, char *label,
288 char uuidbuf[BTRFS_UUID_UNPARSED_SIZE];
289 int search_len = strlen(search);
291 search_len = min(search_len, BTRFS_UUID_UNPARSED_SIZE);
292 uuid_unparse(fsid, uuidbuf);
293 if (!strncmp(uuidbuf, search, search_len))
296 if (strlen(label) && strcmp(label, search) == 0)
299 if (strcmp(mnt, search) == 0)
305 static int uuid_search(struct btrfs_fs_devices *fs_devices, char *search)
307 char uuidbuf[BTRFS_UUID_UNPARSED_SIZE];
308 struct list_head *cur;
309 struct btrfs_device *device;
310 int search_len = strlen(search);
312 search_len = min(search_len, BTRFS_UUID_UNPARSED_SIZE);
313 uuid_unparse(fs_devices->fsid, uuidbuf);
314 if (!strncmp(uuidbuf, search, search_len))
317 list_for_each(cur, &fs_devices->devices) {
318 device = list_entry(cur, struct btrfs_device, dev_list);
319 if ((device->label && strcmp(device->label, search) == 0) ||
320 strcmp(device->name, search) == 0)
327 * Sort devices by devid, ascending
329 static int cmp_device_id(void *priv, struct list_head *a,
332 const struct btrfs_device *da = list_entry(a, struct btrfs_device,
334 const struct btrfs_device *db = list_entry(b, struct btrfs_device,
337 return da->devid < db->devid ? -1 :
338 da->devid > db->devid ? 1 : 0;
341 static void splice_device_list(struct list_head *seed_devices,
342 struct list_head *all_devices)
344 struct btrfs_device *in_all, *next_all;
345 struct btrfs_device *in_seed, *next_seed;
347 list_for_each_entry_safe(in_all, next_all, all_devices, dev_list) {
348 list_for_each_entry_safe(in_seed, next_seed, seed_devices,
350 if (in_all->devid == in_seed->devid) {
352 * When do dev replace in a sprout fs
353 * to a dev in its seed fs, the replacing
354 * dev will reside in the sprout fs and
355 * the replaced dev will still exist
357 * So pick the latest one when showing
360 if (in_all->generation
361 < in_seed->generation) {
362 list_del(&in_all->dev_list);
364 } else if (in_all->generation
365 > in_seed->generation) {
366 list_del(&in_seed->dev_list);
374 list_splice(seed_devices, all_devices);
377 static void print_devices(struct btrfs_fs_devices *fs_devices,
380 struct btrfs_device *device;
381 struct btrfs_fs_devices *cur_fs;
382 struct list_head *all_devices;
384 all_devices = &fs_devices->devices;
385 cur_fs = fs_devices->seed;
386 /* add all devices of seed fs to the fs to be printed */
388 splice_device_list(&cur_fs->devices, all_devices);
389 cur_fs = cur_fs->seed;
392 list_sort(NULL, all_devices, cmp_device_id);
393 list_for_each_entry(device, all_devices, dev_list) {
394 printf("\tdevid %4llu size %s used %s path %s\n",
395 (unsigned long long)device->devid,
396 pretty_size(device->total_bytes),
397 pretty_size(device->bytes_used), device->name);
403 static void print_one_uuid(struct btrfs_fs_devices *fs_devices)
405 char uuidbuf[BTRFS_UUID_UNPARSED_SIZE];
406 struct btrfs_device *device;
410 if (add_seen_fsid(fs_devices->fsid))
413 uuid_unparse(fs_devices->fsid, uuidbuf);
414 device = list_entry(fs_devices->devices.next, struct btrfs_device,
416 if (device->label && device->label[0])
417 printf("Label: '%s' ", device->label);
419 printf("Label: none ");
421 total = device->total_devs;
422 printf(" uuid: %s\n\tTotal devices %llu FS bytes used %s\n", uuidbuf,
423 (unsigned long long)total,
424 pretty_size(device->super_bytes_used));
426 print_devices(fs_devices, &devs_found);
428 if (devs_found < total) {
429 printf("\t*** Some devices missing\n");
434 /* adds up all the used spaces as reported by the space info ioctl
436 static u64 calc_used_bytes(struct btrfs_ioctl_space_args *si)
440 for (i = 0; i < si->total_spaces; i++)
441 ret += si->spaces[i].used_bytes;
445 static int print_one_fs(struct btrfs_ioctl_fs_info_args *fs_info,
446 struct btrfs_ioctl_dev_info_args *dev_info,
447 struct btrfs_ioctl_space_args *space_info,
448 char *label, char *path)
453 char uuidbuf[BTRFS_UUID_UNPARSED_SIZE];
454 struct btrfs_ioctl_dev_info_args *tmp_dev_info;
457 ret = add_seen_fsid(fs_info->fsid);
463 uuid_unparse(fs_info->fsid, uuidbuf);
464 if (label && strlen(label))
465 printf("Label: '%s' ", label);
467 printf("Label: none ");
469 printf(" uuid: %s\n\tTotal devices %llu FS bytes used %s\n", uuidbuf,
470 fs_info->num_devices,
471 pretty_size(calc_used_bytes(space_info)));
473 for (i = 0; i < fs_info->num_devices; i++) {
474 char *canonical_path;
476 tmp_dev_info = (struct btrfs_ioctl_dev_info_args *)&dev_info[i];
478 /* Add check for missing devices even mounted */
479 fd = open((char *)tmp_dev_info->path, O_RDONLY);
485 canonical_path = canonicalize_path((char *)tmp_dev_info->path);
486 printf("\tdevid %4llu size %s used %s path %s\n",
488 pretty_size(tmp_dev_info->total_bytes),
489 pretty_size(tmp_dev_info->bytes_used),
492 free(canonical_path);
496 printf("\t*** Some devices missing\n");
501 static int btrfs_scan_kernel(void *search)
507 struct btrfs_ioctl_fs_info_args fs_info_arg;
508 struct btrfs_ioctl_dev_info_args *dev_info_arg = NULL;
509 struct btrfs_ioctl_space_args *space_info_arg = NULL;
510 char label[BTRFS_LABEL_SIZE];
512 f = setmntent("/proc/self/mounts", "r");
516 memset(label, 0, sizeof(label));
517 while ((mnt = getmntent(f)) != NULL) {
518 if (strcmp(mnt->mnt_type, "btrfs"))
520 ret = get_fs_info(mnt->mnt_dir, &fs_info_arg,
527 if (get_label_mounted(mnt->mnt_dir, label)) {
531 if (search && !match_search_item_kernel(fs_info_arg.fsid,
532 mnt->mnt_dir, label, search)) {
537 fd = open(mnt->mnt_dir, O_RDONLY);
538 if ((fd != -1) && !get_df(fd, &space_info_arg)) {
539 print_one_fs(&fs_info_arg, dev_info_arg,
540 space_info_arg, label, mnt->mnt_dir);
541 kfree(space_info_arg);
542 memset(label, 0, sizeof(label));
555 static int dev_to_fsid(char *dev, __u8 *fsid)
557 struct btrfs_super_block *disk_super;
566 fd = open(dev, O_RDONLY);
573 disk_super = (struct btrfs_super_block *)buf;
574 ret = btrfs_read_dev_super(fd, disk_super,
575 BTRFS_SUPER_INFO_OFFSET, 0);
579 memcpy(fsid, disk_super->fsid, BTRFS_FSID_SIZE);
588 static void free_fs_devices(struct btrfs_fs_devices *fs_devices)
590 struct btrfs_fs_devices *cur_seed, *next_seed;
591 struct btrfs_device *device;
593 while (!list_empty(&fs_devices->devices)) {
594 device = list_entry(fs_devices->devices.next,
595 struct btrfs_device, dev_list);
596 list_del(&device->dev_list);
603 /* free seed fs chain */
604 cur_seed = fs_devices->seed;
605 fs_devices->seed = NULL;
607 next_seed = cur_seed->seed;
610 cur_seed = next_seed;
613 list_del(&fs_devices->list);
617 static int copy_device(struct btrfs_device *dst,
618 struct btrfs_device *src)
620 dst->devid = src->devid;
621 memcpy(dst->uuid, src->uuid, BTRFS_UUID_SIZE);
622 if (src->name == NULL)
625 dst->name = strdup(src->name);
629 if (src->label == NULL)
632 dst->label = strdup(src->label);
638 dst->total_devs = src->total_devs;
639 dst->super_bytes_used = src->super_bytes_used;
640 dst->total_bytes = src->total_bytes;
641 dst->bytes_used = src->bytes_used;
642 dst->generation = src->generation;
647 static int copy_fs_devices(struct btrfs_fs_devices *dst,
648 struct btrfs_fs_devices *src)
650 struct btrfs_device *cur_dev, *dev_copy;
653 memcpy(dst->fsid, src->fsid, BTRFS_FSID_SIZE);
654 INIT_LIST_HEAD(&dst->devices);
657 list_for_each_entry(cur_dev, &src->devices, dev_list) {
658 dev_copy = malloc(sizeof(*dev_copy));
664 ret = copy_device(dev_copy, cur_dev);
670 list_add(&dev_copy->dev_list, &dst->devices);
671 dev_copy->fs_devices = dst;
677 static int find_and_copy_seed(struct btrfs_fs_devices *seed,
678 struct btrfs_fs_devices *copy,
679 struct list_head *fs_uuids) {
680 struct btrfs_fs_devices *cur_fs;
682 list_for_each_entry(cur_fs, fs_uuids, list)
683 if (!memcmp(seed->fsid, cur_fs->fsid, BTRFS_FSID_SIZE))
684 return copy_fs_devices(copy, cur_fs);
689 static int has_seed_devices(struct btrfs_fs_devices *fs_devices)
691 struct btrfs_device *device;
692 int dev_cnt_total, dev_cnt = 0;
694 device = list_first_entry(&fs_devices->devices, struct btrfs_device,
697 dev_cnt_total = device->total_devs;
699 list_for_each_entry(device, &fs_devices->devices, dev_list)
702 return dev_cnt_total != dev_cnt;
705 static int search_umounted_fs_uuids(struct list_head *all_uuids,
706 char *search, int *found)
708 struct btrfs_fs_devices *cur_fs, *fs_copy;
709 struct list_head *fs_uuids;
712 fs_uuids = btrfs_scanned_uuids();
715 * The fs_uuids list is global, and open_ctree_* will
716 * modify it, make a private copy here
718 list_for_each_entry(cur_fs, fs_uuids, list) {
719 /* don't bother handle all fs, if search target specified */
721 if (uuid_search(cur_fs, search) == 0)
727 /* skip all fs already shown as mounted fs */
728 if (is_seen_fsid(cur_fs->fsid))
731 fs_copy = malloc(sizeof(*fs_copy));
737 ret = copy_fs_devices(fs_copy, cur_fs);
743 list_add(&fs_copy->list, all_uuids);
750 static int map_seed_devices(struct list_head *all_uuids)
752 struct btrfs_fs_devices *cur_fs, *cur_seed;
753 struct btrfs_fs_devices *seed_copy;
754 struct btrfs_fs_devices *opened_fs;
755 struct btrfs_device *device;
756 struct btrfs_fs_info *fs_info;
757 struct list_head *fs_uuids;
760 fs_uuids = btrfs_scanned_uuids();
762 list_for_each_entry(cur_fs, all_uuids, list) {
763 device = list_first_entry(&cur_fs->devices,
764 struct btrfs_device, dev_list);
768 /* skip fs without seeds */
769 if (!has_seed_devices(cur_fs))
773 * open_ctree_* detects seed/sprout mapping
775 fs_info = open_ctree_fs_info(device->name, 0, 0,
781 * copy the seed chain under the opened fs
783 opened_fs = fs_info->fs_devices;
785 while (opened_fs->seed) {
786 seed_copy = malloc(sizeof(*seed_copy));
791 ret = find_and_copy_seed(opened_fs->seed, seed_copy,
798 cur_seed->seed = seed_copy;
800 opened_fs = opened_fs->seed;
801 cur_seed = cur_seed->seed;
804 close_ctree(fs_info->chunk_root);
810 close_ctree(fs_info->chunk_root);
814 static const char * const cmd_show_usage[] = {
815 "btrfs filesystem show [options] [<path>|<uuid>|<device>|label]",
816 "Show the structure of a filesystem",
817 "-d|--all-devices show only disks under /dev containing btrfs filesystem",
818 "-m|--mounted show only mounted btrfs",
819 "If no argument is given, structure of all present filesystems is shown.",
823 static int cmd_show(int argc, char **argv)
825 LIST_HEAD(all_uuids);
826 struct btrfs_fs_devices *fs_devices;
829 /* default, search both kernel and udev */
832 char mp[BTRFS_PATH_NAME_MAX + 1];
834 __u8 fsid[BTRFS_FSID_SIZE];
835 char uuid_buf[BTRFS_UUID_UNPARSED_SIZE];
840 static const struct option long_options[] = {
841 { "all-devices", no_argument, NULL, 'd'},
842 { "mounted", no_argument, NULL, 'm'},
846 c = getopt_long(argc, argv, "dm", long_options, NULL);
851 where = BTRFS_SCAN_LBLKID;
854 where = BTRFS_SCAN_MOUNTED;
857 usage(cmd_show_usage);
861 if (check_argc_max(argc, optind + 1))
862 usage(cmd_show_usage);
865 search = argv[optind];
866 if (strlen(search) == 0)
867 usage(cmd_show_usage);
868 type = check_arg_type(search);
871 * For search is a device:
872 * realpath do /dev/mapper/XX => /dev/dm-X
873 * which is required by BTRFS_SCAN_DEV
874 * For search is a mountpoint:
875 * realpath do /mnt/btrfs/ => /mnt/btrfs
876 * which shall be recognized by btrfs_scan_kernel()
878 if (realpath(search, path))
882 * Needs special handling if input arg is block dev And if
883 * input arg is mount-point just print it right away
885 if (type == BTRFS_ARG_BLKDEV && where != BTRFS_SCAN_LBLKID) {
886 ret = get_btrfs_mount(search, mp, sizeof(mp));
888 /* given block dev is mounted */
890 type = BTRFS_ARG_MNTPOINT;
892 ret = dev_to_fsid(search, fsid);
895 "ERROR: No btrfs on %s\n",
899 uuid_unparse(fsid, uuid_buf);
901 type = BTRFS_ARG_UUID;
907 if (where == BTRFS_SCAN_LBLKID)
910 /* show mounted btrfs */
911 ret = btrfs_scan_kernel(search);
912 if (search && !ret) {
913 /* since search is found we are done */
917 /* shows mounted only */
918 if (where == BTRFS_SCAN_MOUNTED)
922 ret = btrfs_scan_lblkid();
925 fprintf(stderr, "ERROR: %d while scanning\n", ret);
929 ret = search_umounted_fs_uuids(&all_uuids, search, &found);
932 "ERROR: %d while searching target device\n", ret);
937 * The seed/sprout mapping are not detected yet,
938 * do mapping build for all umounted fs
940 ret = map_seed_devices(&all_uuids);
943 "ERROR: %d while mapping seed devices\n", ret);
947 list_for_each_entry(fs_devices, &all_uuids, list)
948 print_one_uuid(fs_devices);
950 if (search && !found)
953 while (!list_empty(&all_uuids)) {
954 fs_devices = list_entry(all_uuids.next,
955 struct btrfs_fs_devices, list);
956 free_fs_devices(fs_devices);
959 printf("%s\n", PACKAGE_STRING);
964 static const char * const cmd_sync_usage[] = {
965 "btrfs filesystem sync <path>",
966 "Force a sync on a filesystem",
970 static int cmd_sync(int argc, char **argv)
974 DIR *dirstream = NULL;
976 if (check_argc_exact(argc, 2))
977 usage(cmd_sync_usage);
981 fd = open_file_or_dir(path, &dirstream);
983 fprintf(stderr, "ERROR: can't access '%s'\n", path);
987 printf("FSSync '%s'\n", path);
988 res = ioctl(fd, BTRFS_IOC_SYNC);
990 close_file_or_dir(fd, dirstream);
992 fprintf(stderr, "ERROR: unable to fs-syncing '%s' - %s\n",
1000 static int parse_compress_type(char *s)
1002 if (strcmp(optarg, "zlib") == 0)
1003 return BTRFS_COMPRESS_ZLIB;
1004 else if (strcmp(optarg, "lzo") == 0)
1005 return BTRFS_COMPRESS_LZO;
1007 fprintf(stderr, "Unknown compress type %s\n", s);
1012 static const char * const cmd_defrag_usage[] = {
1013 "btrfs filesystem defragment [options] <file>|<dir> [<file>|<dir>...]",
1014 "Defragment a file or a directory",
1017 "-r defragment files recursively",
1018 "-c[zlib,lzo] compress the file while defragmenting",
1019 "-f flush data to disk immediately after defragmenting",
1020 "-s start defragment only from byte onward",
1021 "-l len defragment only up to len bytes",
1022 "-t size minimal size of file to be considered for defragmenting",
1026 static int do_defrag(int fd, int fancy_ioctl,
1027 struct btrfs_ioctl_defrag_range_args *range)
1032 ret = ioctl(fd, BTRFS_IOC_DEFRAG, NULL);
1034 ret = ioctl(fd, BTRFS_IOC_DEFRAG_RANGE, range);
1039 static int defrag_global_fancy_ioctl;
1040 static struct btrfs_ioctl_defrag_range_args defrag_global_range;
1041 static int defrag_global_verbose;
1042 static int defrag_global_errors;
1043 static int defrag_callback(const char *fpath, const struct stat *sb,
1044 int typeflag, struct FTW *ftwbuf)
1050 if ((typeflag == FTW_F) && S_ISREG(sb->st_mode)) {
1051 if (defrag_global_verbose)
1052 printf("%s\n", fpath);
1053 fd = open(fpath, O_RDWR);
1057 ret = do_defrag(fd, defrag_global_fancy_ioctl, &defrag_global_range);
1060 if (ret && e == ENOTTY && defrag_global_fancy_ioctl) {
1061 fprintf(stderr, "ERROR: defrag range ioctl not "
1062 "supported in this kernel, please try "
1063 "without any options.\n");
1064 defrag_global_errors++;
1073 fprintf(stderr, "ERROR: defrag failed on %s - %s\n", fpath, strerror(e));
1074 defrag_global_errors++;
1078 static int cmd_defrag(int argc, char **argv)
1088 struct btrfs_ioctl_defrag_range_args range;
1090 int compress_type = BTRFS_COMPRESS_NONE;
1093 defrag_global_errors = 0;
1094 defrag_global_verbose = 0;
1095 defrag_global_errors = 0;
1096 defrag_global_fancy_ioctl = 0;
1099 int c = getopt(argc, argv, "vrc::fs:l:t:");
1105 compress_type = BTRFS_COMPRESS_ZLIB;
1107 compress_type = parse_compress_type(optarg);
1108 defrag_global_fancy_ioctl = 1;
1112 defrag_global_fancy_ioctl = 1;
1115 defrag_global_verbose = 1;
1118 start = parse_size(optarg);
1119 defrag_global_fancy_ioctl = 1;
1122 len = parse_size(optarg);
1123 defrag_global_fancy_ioctl = 1;
1126 thresh = parse_size(optarg);
1127 defrag_global_fancy_ioctl = 1;
1133 usage(cmd_defrag_usage);
1137 if (check_argc_min(argc - optind, 1))
1138 usage(cmd_defrag_usage);
1140 memset(&defrag_global_range, 0, sizeof(range));
1141 defrag_global_range.start = start;
1142 defrag_global_range.len = len;
1143 defrag_global_range.extent_thresh = thresh;
1144 if (compress_type) {
1145 defrag_global_range.flags |= BTRFS_DEFRAG_RANGE_COMPRESS;
1146 defrag_global_range.compress_type = compress_type;
1149 defrag_global_range.flags |= BTRFS_DEFRAG_RANGE_START_IO;
1151 for (i = optind; i < argc; i++) {
1155 fd = open_file_or_dir(argv[i], &dirstream);
1157 fprintf(stderr, "ERROR: failed to open %s - %s\n", argv[i],
1159 defrag_global_errors++;
1160 close_file_or_dir(fd, dirstream);
1163 if (fstat(fd, &st)) {
1164 fprintf(stderr, "ERROR: failed to stat %s - %s\n",
1165 argv[i], strerror(errno));
1166 defrag_global_errors++;
1167 close_file_or_dir(fd, dirstream);
1170 if (!(S_ISDIR(st.st_mode) || S_ISREG(st.st_mode))) {
1172 "ERROR: %s is not a directory or a regular file\n",
1174 defrag_global_errors++;
1175 close_file_or_dir(fd, dirstream);
1179 if (S_ISDIR(st.st_mode)) {
1180 ret = nftw(argv[i], defrag_callback, 10,
1181 FTW_MOUNT | FTW_PHYS);
1184 /* errors are handled in the callback */
1187 if (defrag_global_verbose)
1188 printf("%s\n", argv[i]);
1189 ret = do_defrag(fd, defrag_global_fancy_ioctl,
1190 &defrag_global_range);
1194 if (defrag_global_verbose)
1195 printf("%s\n", argv[i]);
1196 ret = do_defrag(fd, defrag_global_fancy_ioctl,
1197 &defrag_global_range);
1200 close_file_or_dir(fd, dirstream);
1201 if (ret && e == ENOTTY && defrag_global_fancy_ioctl) {
1202 fprintf(stderr, "ERROR: defrag range ioctl not "
1203 "supported in this kernel, please try "
1204 "without any options.\n");
1205 defrag_global_errors++;
1209 fprintf(stderr, "ERROR: defrag failed on %s - %s\n",
1210 argv[i], strerror(e));
1211 defrag_global_errors++;
1214 if (defrag_global_verbose)
1215 printf("%s\n", PACKAGE_STRING);
1216 if (defrag_global_errors)
1217 fprintf(stderr, "total %d failures\n", defrag_global_errors);
1219 return !!defrag_global_errors;
1222 static const char * const cmd_resize_usage[] = {
1223 "btrfs filesystem resize [devid:][+/-]<newsize>[kKmMgGtTpPeE]|[devid:]max <path>",
1224 "Resize a filesystem",
1225 "If 'max' is passed, the filesystem will occupy all available space",
1226 "on the device 'devid'.",
1227 "[kK] means KiB, which denotes 1KiB = 1024B, 1MiB = 1024KiB, etc.",
1231 static int cmd_resize(int argc, char **argv)
1233 struct btrfs_ioctl_vol_args args;
1234 int fd, res, len, e;
1235 char *amount, *path;
1236 DIR *dirstream = NULL;
1239 if (check_argc_exact(argc, 3))
1240 usage(cmd_resize_usage);
1245 len = strlen(amount);
1246 if (len == 0 || len >= BTRFS_VOL_NAME_MAX) {
1247 fprintf(stderr, "ERROR: size value too long ('%s)\n",
1252 res = stat(path, &st);
1254 fprintf(stderr, "ERROR: resize: cannot stat %s: %s\n",
1255 path, strerror(errno));
1258 if (!S_ISDIR(st.st_mode)) {
1260 "ERROR: resize works on mounted filesystems and accepts only\n"
1261 "directories as argument. Passing file containing a btrfs image\n"
1262 "would resize the underlying filesystem instead of the image.\n");
1266 fd = open_file_or_dir(path, &dirstream);
1268 fprintf(stderr, "ERROR: can't access '%s'\n", path);
1272 printf("Resize '%s' of '%s'\n", path, amount);
1273 strncpy_null(args.name, amount);
1274 res = ioctl(fd, BTRFS_IOC_RESIZE, &args);
1276 close_file_or_dir(fd, dirstream);
1278 fprintf(stderr, "ERROR: unable to resize '%s' - %s\n",
1285 static const char * const cmd_label_usage[] = {
1286 "btrfs filesystem label [<device>|<mount_point>] [<newlabel>]",
1287 "Get or change the label of a filesystem",
1288 "With one argument, get the label of filesystem on <device>.",
1289 "If <newlabel> is passed, set the filesystem label to <newlabel>.",
1293 static int cmd_label(int argc, char **argv)
1295 if (check_argc_min(argc, 2) || check_argc_max(argc, 3))
1296 usage(cmd_label_usage);
1299 return set_label(argv[1], argv[2]);
1301 char label[BTRFS_LABEL_SIZE];
1304 ret = get_label(argv[1], label);
1306 fprintf(stdout, "%s\n", label);
1312 const struct cmd_group filesystem_cmd_group = {
1313 filesystem_cmd_group_usage, NULL, {
1314 { "df", cmd_filesystem_df, cmd_filesystem_df_usage, NULL, 0 },
1315 { "show", cmd_show, cmd_show_usage, NULL, 0 },
1316 { "sync", cmd_sync, cmd_sync_usage, NULL, 0 },
1317 { "defragment", cmd_defrag, cmd_defrag_usage, NULL, 0 },
1318 { "balance", cmd_balance, NULL, &balance_cmd_group, 1 },
1319 { "resize", cmd_resize, cmd_resize_usage, NULL, 0 },
1320 { "label", cmd_label, cmd_label_usage, NULL, 0 },
1321 { "usage", cmd_filesystem_usage,
1322 cmd_filesystem_usage_usage, NULL, 0 },
1328 int cmd_filesystem(int argc, char **argv)
1330 return handle_command_group(&filesystem_cmd_group, argc, argv);