btrfs-progs: alias btrfs device delete to btrfs device remove
[platform/upstream/btrfs-progs.git] / cmds-filesystem.c
index 0bf24ff..800aa4d 100644 (file)
@@ -14,7 +14,6 @@
  * Boston, MA 021110-1307, USA.
  */
 
-#define _XOPEN_SOURCE 500
 #include <stdio.h>
 #include <stdlib.h>
 #include <string.h>
@@ -34,9 +33,8 @@
 #include "ioctl.h"
 #include "utils.h"
 #include "volumes.h"
-#include "version.h"
 #include "commands.h"
-#include "cmds-fi-disk_usage.h"
+#include "cmds-fi-usage.h"
 #include "list_sort.h"
 #include "disk-io.h"
 
@@ -126,7 +124,8 @@ static const char * const cmd_filesystem_df_usage[] = {
        "btrfs filesystem df [options] <path>",
        "Show space usage information for a mount point",
        "-b|--raw           raw numbers in bytes",
-       "-h                 human friendly numbers, base 1024 (default)",
+       "-h|--human-readable",
+       "                   human friendly numbers, base 1024 (default)",
        "-H                 human friendly numbers, base 1000",
        "--iec              use 1024 as a base (KiB, MiB, GiB, TiB)",
        "--si               use 1000 as a base (kB, MB, GB, TB)",
@@ -209,18 +208,21 @@ static int cmd_filesystem_df(int argc, char **argv)
        unsigned unit_mode = UNITS_DEFAULT;
 
        while (1) {
-               int long_index;
+               int c;
                static const struct option long_options[] = {
                        { "raw", no_argument, NULL, 'b'},
                        { "kbytes", no_argument, NULL, 'k'},
                        { "mbytes", no_argument, NULL, 'm'},
                        { "gbytes", no_argument, NULL, 'g'},
                        { "tbytes", no_argument, NULL, 't'},
-                       { "si", no_argument, NULL, 256},
-                       { "iec", no_argument, NULL, 257},
+                       { "si", no_argument, NULL, GETOPT_VAL_SI},
+                       { "iec", no_argument, NULL, GETOPT_VAL_IEC},
+                       { "human-readable", no_argument, NULL,
+                               GETOPT_VAL_HUMAN_READABLE},
+                       { NULL, 0, NULL, 0 }
                };
-               int c = getopt_long(argc, argv, "bhHkmgt", long_options,
-                                       &long_index);
+
+               c = getopt_long(argc, argv, "bhHkmgt", long_options, NULL);
                if (c < 0)
                        break;
                switch (c) {
@@ -239,16 +241,17 @@ static int cmd_filesystem_df(int argc, char **argv)
                case 't':
                        units_set_base(&unit_mode, UNITS_TBYTES);
                        break;
+               case GETOPT_VAL_HUMAN_READABLE:
                case 'h':
                        unit_mode = UNITS_HUMAN_BINARY;
                        break;
                case 'H':
                        unit_mode = UNITS_HUMAN_DECIMAL;
                        break;
-               case 256:
+               case GETOPT_VAL_SI:
                        units_set_mode(&unit_mode, UNITS_DECIMAL);
                        break;
-               case 257:
+               case GETOPT_VAL_IEC:
                        units_set_mode(&unit_mode, UNITS_BINARY);
                        break;
                default:
@@ -372,7 +375,7 @@ static void splice_device_list(struct list_head *seed_devices,
 }
 
 static void print_devices(struct btrfs_fs_devices *fs_devices,
-                         u64 *devs_found)
+                         u64 *devs_found, unsigned unit_mode)
 {
        struct btrfs_device *device;
        struct btrfs_fs_devices *cur_fs;
@@ -390,14 +393,16 @@ static void print_devices(struct btrfs_fs_devices *fs_devices,
        list_for_each_entry(device, all_devices, dev_list) {
                printf("\tdevid %4llu size %s used %s path %s\n",
                       (unsigned long long)device->devid,
-                      pretty_size(device->total_bytes),
-                      pretty_size(device->bytes_used), device->name);
+                      pretty_size_mode(device->total_bytes, unit_mode),
+                      pretty_size_mode(device->bytes_used, unit_mode),
+                      device->name);
 
                (*devs_found)++;
        }
 }
 
-static void print_one_uuid(struct btrfs_fs_devices *fs_devices)
+static void print_one_uuid(struct btrfs_fs_devices *fs_devices,
+                          unsigned unit_mode)
 {
        char uuidbuf[BTRFS_UUID_UNPARSED_SIZE];
        struct btrfs_device *device;
@@ -418,9 +423,9 @@ static void print_one_uuid(struct btrfs_fs_devices *fs_devices)
        total = device->total_devs;
        printf(" uuid: %s\n\tTotal devices %llu FS bytes used %s\n", uuidbuf,
               (unsigned long long)total,
-              pretty_size(device->super_bytes_used));
+              pretty_size_mode(device->super_bytes_used, unit_mode));
 
-       print_devices(fs_devices, &devs_found);
+       print_devices(fs_devices, &devs_found, unit_mode);
 
        if (devs_found < total) {
                printf("\t*** Some devices missing\n");
@@ -442,7 +447,7 @@ static u64 calc_used_bytes(struct btrfs_ioctl_space_args *si)
 static int print_one_fs(struct btrfs_ioctl_fs_info_args *fs_info,
                struct btrfs_ioctl_dev_info_args *dev_info,
                struct btrfs_ioctl_space_args *space_info,
-               char *label, char *path)
+               char *label, char *path, unsigned unit_mode)
 {
        int i;
        int fd;
@@ -465,13 +470,13 @@ static int print_one_fs(struct btrfs_ioctl_fs_info_args *fs_info,
 
        printf(" uuid: %s\n\tTotal devices %llu FS bytes used %s\n", uuidbuf,
                        fs_info->num_devices,
-                       pretty_size(calc_used_bytes(space_info)));
+                       pretty_size_mode(calc_used_bytes(space_info),
+                                        unit_mode));
 
        for (i = 0; i < fs_info->num_devices; i++) {
                char *canonical_path;
 
                tmp_dev_info = (struct btrfs_ioctl_dev_info_args *)&dev_info[i];
-               canonical_path = canonicalize_path((char *)tmp_dev_info->path);
 
                /* Add check for missing devices even mounted */
                fd = open((char *)tmp_dev_info->path, O_RDONLY);
@@ -480,10 +485,11 @@ static int print_one_fs(struct btrfs_ioctl_fs_info_args *fs_info,
                        continue;
                }
                close(fd);
+               canonical_path = canonicalize_path((char *)tmp_dev_info->path);
                printf("\tdevid %4llu size %s used %s path %s\n",
                        tmp_dev_info->devid,
-                       pretty_size(tmp_dev_info->total_bytes),
-                       pretty_size(tmp_dev_info->bytes_used),
+                       pretty_size_mode(tmp_dev_info->total_bytes, unit_mode),
+                       pretty_size_mode(tmp_dev_info->bytes_used, unit_mode),
                        canonical_path);
 
                free(canonical_path);
@@ -495,39 +501,7 @@ static int print_one_fs(struct btrfs_ioctl_fs_info_args *fs_info,
        return 0;
 }
 
-/* This function checks if the given input parameter is
- * an uuid or a path
- * return -1: some error in the given input
- * return 0: unknow input
- * return 1: given input is uuid
- * return 2: given input is path
- */
-static int check_arg_type(char *input)
-{
-       uuid_t  out;
-       char path[PATH_MAX];
-
-       if (!input)
-               return -EINVAL;
-
-       if (realpath(input, path)) {
-               if (is_block_device(path) == 1)
-                       return BTRFS_ARG_BLKDEV;
-
-               if (is_mount_point(path) == 1)
-                       return BTRFS_ARG_MNTPOINT;
-
-               return BTRFS_ARG_UNKNOWN;
-       }
-
-       if (strlen(input) == (BTRFS_UUID_UNPARSED_SIZE - 1) &&
-               !uuid_parse(input, out))
-               return BTRFS_ARG_UUID;
-
-       return BTRFS_ARG_UNKNOWN;
-}
-
-static int btrfs_scan_kernel(void *search)
+static int btrfs_scan_kernel(void *search, unsigned unit_mode)
 {
        int ret = 0, fd;
        int found = 0;
@@ -548,8 +522,10 @@ static int btrfs_scan_kernel(void *search)
                        continue;
                ret = get_fs_info(mnt->mnt_dir, &fs_info_arg,
                                &dev_info_arg);
-               if (ret)
+               if (ret) {
+                       kfree(dev_info_arg);
                        goto out;
+               }
 
                if (get_label_mounted(mnt->mnt_dir, label)) {
                        kfree(dev_info_arg);
@@ -564,7 +540,8 @@ static int btrfs_scan_kernel(void *search)
                fd = open(mnt->mnt_dir, O_RDONLY);
                if ((fd != -1) && !get_df(fd, &space_info_arg)) {
                        print_one_fs(&fs_info_arg, dev_info_arg,
-                                       space_info_arg, label, mnt->mnt_dir);
+                                    space_info_arg, label, mnt->mnt_dir,
+                                    unit_mode);
                        kfree(space_info_arg);
                        memset(label, 0, sizeof(label));
                        found = 1;
@@ -713,14 +690,26 @@ static int find_and_copy_seed(struct btrfs_fs_devices *seed,
        return 1;
 }
 
-static int map_seed_devices(struct list_head *all_uuids,
-                           char *search, int *found)
+static int has_seed_devices(struct btrfs_fs_devices *fs_devices)
 {
-       struct btrfs_fs_devices *cur_fs, *cur_seed;
-       struct btrfs_fs_devices *fs_copy, *seed_copy;
-       struct btrfs_fs_devices *opened_fs;
        struct btrfs_device *device;
-       struct btrfs_fs_info *fs_info;
+       int dev_cnt_total, dev_cnt = 0;
+
+       device = list_first_entry(&fs_devices->devices, struct btrfs_device,
+                                 dev_list);
+
+       dev_cnt_total = device->total_devs;
+
+       list_for_each_entry(device, &fs_devices->devices, dev_list)
+               dev_cnt++;
+
+       return dev_cnt_total != dev_cnt;
+}
+
+static int search_umounted_fs_uuids(struct list_head *all_uuids,
+                                   char *search, int *found)
+{
+       struct btrfs_fs_devices *cur_fs, *fs_copy;
        struct list_head *fs_uuids;
        int ret = 0;
 
@@ -735,7 +724,8 @@ static int map_seed_devices(struct list_head *all_uuids,
                if (search) {
                        if (uuid_search(cur_fs, search) == 0)
                                continue;
-                       *found = 1;
+                       if (found)
+                               *found = 1;
                }
 
                /* skip all fs already shown as mounted fs */
@@ -757,11 +747,32 @@ static int map_seed_devices(struct list_head *all_uuids,
                list_add(&fs_copy->list, all_uuids);
        }
 
+out:
+       return ret;
+}
+
+static int map_seed_devices(struct list_head *all_uuids)
+{
+       struct btrfs_fs_devices *cur_fs, *cur_seed;
+       struct btrfs_fs_devices *seed_copy;
+       struct btrfs_fs_devices *opened_fs;
+       struct btrfs_device *device;
+       struct btrfs_fs_info *fs_info;
+       struct list_head *fs_uuids;
+       int ret = 0;
+
+       fs_uuids = btrfs_scanned_uuids();
+
        list_for_each_entry(cur_fs, all_uuids, list) {
                device = list_first_entry(&cur_fs->devices,
                                                struct btrfs_device, dev_list);
                if (!device)
                        continue;
+
+               /* skip fs without seeds */
+               if (!has_seed_devices(cur_fs))
+                       continue;
+
                /*
                 * open_ctree_* detects seed/sprout mapping
                 */
@@ -809,6 +820,14 @@ static const char * const cmd_show_usage[] = {
        "Show the structure of a filesystem",
        "-d|--all-devices   show only disks under /dev containing btrfs filesystem",
        "-m|--mounted       show only mounted btrfs",
+       "--raw              raw numbers in bytes",
+       "--human-readable   human friendly numbers, base 1024 (default)",
+       "--iec              use 1024 as a base (KiB, MiB, GiB, TiB)",
+       "--si               use 1000 as a base (kB, MB, GB, TB)",
+       "--kbytes           show sizes in KiB, or kB with --si",
+       "--mbytes           show sizes in MiB, or MB with --si",
+       "--gbytes           show sizes in GiB, or GB with --si",
+       "--tbytes           show sizes in TiB, or TB with --si",
        "If no argument is given, structure of all present filesystems is shown.",
        NULL
 };
@@ -822,21 +841,31 @@ static int cmd_show(int argc, char **argv)
        /* default, search both kernel and udev */
        int where = -1;
        int type = 0;
-       char mp[BTRFS_PATH_NAME_MAX + 1];
+       char mp[PATH_MAX];
        char path[PATH_MAX];
        __u8 fsid[BTRFS_FSID_SIZE];
        char uuid_buf[BTRFS_UUID_UNPARSED_SIZE];
+       unsigned unit_mode = UNITS_DEFAULT;
        int found = 0;
 
        while (1) {
-               int long_index;
-               static struct option long_options[] = {
+               int c;
+               static const struct option long_options[] = {
                        { "all-devices", no_argument, NULL, 'd'},
                        { "mounted", no_argument, NULL, 'm'},
-                       { NULL, no_argument, NULL, 0 },
+                       { "raw", no_argument, NULL, GETOPT_VAL_RAW},
+                       { "kbytes", no_argument, NULL, GETOPT_VAL_KBYTES},
+                       { "mbytes", no_argument, NULL, GETOPT_VAL_MBYTES},
+                       { "gbytes", no_argument, NULL, GETOPT_VAL_GBYTES},
+                       { "tbytes", no_argument, NULL, GETOPT_VAL_TBYTES},
+                       { "si", no_argument, NULL, GETOPT_VAL_SI},
+                       { "iec", no_argument, NULL, GETOPT_VAL_IEC},
+                       { "human-readable", no_argument, NULL,
+                               GETOPT_VAL_HUMAN_READABLE},
+                       { NULL, 0, NULL, 0 }
                };
-               int c = getopt_long(argc, argv, "dm", long_options,
-                                       &long_index);
+
+               c = getopt_long(argc, argv, "dm", long_options, NULL);
                if (c < 0)
                        break;
                switch (c) {
@@ -846,6 +875,30 @@ static int cmd_show(int argc, char **argv)
                case 'm':
                        where = BTRFS_SCAN_MOUNTED;
                        break;
+               case GETOPT_VAL_RAW:
+                       units_set_mode(&unit_mode, UNITS_RAW);
+                       break;
+               case GETOPT_VAL_KBYTES:
+                       units_set_base(&unit_mode, UNITS_KBYTES);
+                       break;
+               case GETOPT_VAL_MBYTES:
+                       units_set_base(&unit_mode, UNITS_MBYTES);
+                       break;
+               case GETOPT_VAL_GBYTES:
+                       units_set_base(&unit_mode, UNITS_GBYTES);
+                       break;
+               case GETOPT_VAL_TBYTES:
+                       units_set_base(&unit_mode, UNITS_TBYTES);
+                       break;
+               case GETOPT_VAL_SI:
+                       units_set_mode(&unit_mode, UNITS_DECIMAL);
+                       break;
+               case GETOPT_VAL_IEC:
+                       units_set_mode(&unit_mode, UNITS_BINARY);
+                       break;
+               case GETOPT_VAL_HUMAN_READABLE:
+                       units_set_mode(&unit_mode, UNITS_HUMAN_BINARY);
+                       break;
                default:
                        usage(cmd_show_usage);
                }
@@ -868,13 +921,8 @@ static int cmd_show(int argc, char **argv)
                 *     realpath do  /mnt/btrfs/  => /mnt/btrfs
                 *     which shall be recognized by btrfs_scan_kernel()
                 */
-               if (!realpath(search, path)) {
-                       fprintf(stderr, "ERROR: Could not show %s: %s\n",
-                                       search, strerror(errno));
-                       return 1;
-               }
-
-               search = path;
+               if (realpath(search, path))
+                       search = path;
 
                /*
                 * Needs special handling if input arg is block dev And if
@@ -906,7 +954,7 @@ static int cmd_show(int argc, char **argv)
                goto devs_only;
 
        /* show mounted btrfs */
-       ret = btrfs_scan_kernel(search);
+       ret = btrfs_scan_kernel(search, unit_mode);
        if (search && !ret) {
                /* since search is found we are done */
                goto out;
@@ -924,11 +972,18 @@ devs_only:
                return 1;
        }
 
+       ret = search_umounted_fs_uuids(&all_uuids, search, &found);
+       if (ret < 0) {
+               fprintf(stderr,
+                       "ERROR: %d while searching target device\n", ret);
+               return 1;
+       }
+
        /*
-        * scan_for_btrfs() don't build seed/sprout mapping,
-        * do mapping build for each scanned fs here
+        * The seed/sprout mapping are not detected yet,
+        * do mapping build for all umounted fs
         */
-       ret = map_seed_devices(&all_uuids, search, &found);
+       ret = map_seed_devices(&all_uuids);
        if (ret) {
                fprintf(stderr,
                        "ERROR: %d while mapping seed devices\n", ret);
@@ -936,7 +991,7 @@ devs_only:
        }
 
        list_for_each_entry(fs_devices, &all_uuids, list)
-               print_one_uuid(fs_devices);
+               print_one_uuid(fs_devices, unit_mode);
 
        if (search && !found)
                ret = 1;
@@ -947,7 +1002,7 @@ devs_only:
                free_fs_devices(fs_devices);
        }
 out:
-       printf("%s\n", BTRFS_BUILD_VERSION);
+       printf("%s\n", PACKAGE_STRING);
        free_seen_fsid();
        return ret;
 }
@@ -1010,7 +1065,7 @@ static const char * const cmd_defrag_usage[] = {
        "-f             flush data to disk immediately after defragmenting",
        "-s start       defragment only from byte onward",
        "-l len         defragment only up to len bytes",
-       "-t size        minimal size of file to be considered for defragmenting",
+       "-t size        target extent size hint",
        NULL
 };
 
@@ -1072,7 +1127,7 @@ static int cmd_defrag(int argc, char **argv)
        int flush = 0;
        u64 start = 0;
        u64 len = (u64)-1;
-       u32 thresh = 0;
+       u64 thresh = 0;
        int i;
        int recursive = 0;
        int ret = 0;
@@ -1115,6 +1170,11 @@ static int cmd_defrag(int argc, char **argv)
                        break;
                case 't':
                        thresh = parse_size(optarg);
+                       if (thresh > (u32)-1) {
+                               fprintf(stderr,
+                       "WARNING: target extent size %llu too big, trimmed to %u",
+                                       thresh, (u32)-1);
+                       }
                        defrag_global_fancy_ioctl = 1;
                        break;
                case 'r':
@@ -1131,7 +1191,7 @@ static int cmd_defrag(int argc, char **argv)
        memset(&defrag_global_range, 0, sizeof(range));
        defrag_global_range.start = start;
        defrag_global_range.len = len;
-       defrag_global_range.extent_thresh = thresh;
+       defrag_global_range.extent_thresh = (u32)thresh;
        if (compress_type) {
                defrag_global_range.flags |= BTRFS_DEFRAG_RANGE_COMPRESS;
                defrag_global_range.compress_type = compress_type;
@@ -1203,7 +1263,7 @@ static int cmd_defrag(int argc, char **argv)
                }
        }
        if (defrag_global_verbose)
-               printf("%s\n", BTRFS_BUILD_VERSION);
+               printf("%s\n", PACKAGE_STRING);
        if (defrag_global_errors)
                fprintf(stderr, "total %d failures\n", defrag_global_errors);
 
@@ -1225,6 +1285,7 @@ static int cmd_resize(int argc, char **argv)
        int     fd, res, len, e;
        char    *amount, *path;
        DIR     *dirstream = NULL;
+       struct stat st;
 
        if (check_argc_exact(argc, 3))
                usage(cmd_resize_usage);
@@ -1239,6 +1300,20 @@ static int cmd_resize(int argc, char **argv)
                return 1;
        }
 
+       res = stat(path, &st);
+       if (res < 0) {
+               fprintf(stderr, "ERROR: resize: cannot stat %s: %s\n",
+                               path, strerror(errno));
+               return 1;
+       }
+       if (!S_ISDIR(st.st_mode)) {
+               fprintf(stderr,
+                       "ERROR: resize works on mounted filesystems and accepts only\n"
+                       "directories as argument. Passing file containing a btrfs image\n"
+                       "would resize the underlying filesystem instead of the image.\n");
+               return 1;
+       }
+
        fd = open_file_or_dir(path, &dirstream);
        if (fd < 0) {
                fprintf(stderr, "ERROR: can't access '%s'\n", path);
@@ -1246,6 +1321,7 @@ static int cmd_resize(int argc, char **argv)
        }
 
        printf("Resize '%s' of '%s'\n", path, amount);
+       memset(&args, 0, sizeof(args));
        strncpy_null(args.name, amount);
        res = ioctl(fd, BTRFS_IOC_RESIZE, &args);
        e = errno;
@@ -1254,6 +1330,18 @@ static int cmd_resize(int argc, char **argv)
                fprintf(stderr, "ERROR: unable to resize '%s' - %s\n", 
                        path, strerror(e));
                return 1;
+       } else if (res > 0) {
+               const char *err_str = btrfs_err_str(res);
+
+               if (err_str) {
+                       fprintf(stderr, "ERROR: btrfs error resizing '%s' - %s\n",
+                               path, err_str);
+               } else {
+                       fprintf(stderr,
+                       "ERROR: btrfs error resizing '%s' - unknown btrfs_err_code %d\n",
+                               path, res);
+               }
+               return 1;
        }
        return 0;
 }
@@ -1285,13 +1373,16 @@ static int cmd_label(int argc, char **argv)
        }
 }
 
+static const char filesystem_cmd_group_info[] =
+"overall filesystem tasks and information";
+
 const struct cmd_group filesystem_cmd_group = {
-       filesystem_cmd_group_usage, NULL, {
+       filesystem_cmd_group_usage, filesystem_cmd_group_info, {
                { "df", cmd_filesystem_df, cmd_filesystem_df_usage, NULL, 0 },
                { "show", cmd_show, cmd_show_usage, NULL, 0 },
                { "sync", cmd_sync, cmd_sync_usage, NULL, 0 },
                { "defragment", cmd_defrag, cmd_defrag_usage, NULL, 0 },
-               { "balance", cmd_balance, NULL, &balance_cmd_group, 1 },
+               { "balance", cmd_balance, NULL, &balance_cmd_group, CMD_HIDDEN },
                { "resize", cmd_resize, cmd_resize_usage, NULL, 0 },
                { "label", cmd_label, cmd_label_usage, NULL, 0 },
                { "usage", cmd_filesystem_usage,