btrfs-progs: alias btrfs device delete to btrfs device remove
[platform/upstream/btrfs-progs.git] / utils.c
diff --git a/utils.c b/utils.c
index 868b15e..b458e6b 100644 (file)
--- a/utils.c
+++ b/utils.c
  * Boston, MA 021110-1307, USA.
  */
 
-#define _XOPEN_SOURCE 700
-#define __USE_XOPEN2K8
-#define __XOPEN2K8 /* due to an error in dirent.h, to get dirfd() */
-#define _GNU_SOURCE    /* O_NOATIME */
 #include <stdio.h>
 #include <stdlib.h>
 #include <string.h>
@@ -58,6 +54,11 @@ static int btrfs_scan_done = 0;
 
 static char argv0_buf[ARGV0_BUF_SIZE] = "btrfs";
 
+const char *get_argv0_buf(void)
+{
+       return argv0_buf;
+}
+
 void fixup_argv0(char **argv, const char *token)
 {
        int len = strlen(argv0_buf);
@@ -173,9 +174,12 @@ int test_uuid_unique(char *fs_uuid)
        return unique;
 }
 
+/*
+ * @fs_uuid - if NULL, generates a UUID, returns back the new filesystem UUID
+ */
 int make_btrfs(int fd, const char *device, const char *label, char *fs_uuid,
               u64 blocks[7], u64 num_bytes, u32 nodesize,
-              u32 leafsize, u32 sectorsize, u32 stripesize, u64 features)
+              u32 sectorsize, u32 stripesize, u64 features)
 {
        struct btrfs_super_block super;
        struct extent_buffer *buf = NULL;
@@ -205,7 +209,7 @@ int make_btrfs(int fd, const char *device, const char *label, char *fs_uuid,
        memset(&super, 0, sizeof(super));
 
        num_bytes = (num_bytes / sectorsize) * sectorsize;
-       if (fs_uuid) {
+       if (fs_uuid && *fs_uuid) {
                if (uuid_parse(fs_uuid, super.fsid) != 0) {
                        fprintf(stderr, "could not parse UUID: %s\n", fs_uuid);
                        ret = -EINVAL;
@@ -218,6 +222,8 @@ int make_btrfs(int fd, const char *device, const char *label, char *fs_uuid,
                }
        } else {
                uuid_generate(super.fsid);
+               if (fs_uuid)
+                       uuid_unparse(super.fsid, fs_uuid);
        }
        uuid_generate(super.dev_item.uuid);
        uuid_generate(chunk_tree_uuid);
@@ -229,9 +235,9 @@ int make_btrfs(int fd, const char *device, const char *label, char *fs_uuid,
        btrfs_set_super_root(&super, blocks[1]);
        btrfs_set_super_chunk_root(&super, blocks[3]);
        btrfs_set_super_total_bytes(&super, num_bytes);
-       btrfs_set_super_bytes_used(&super, 6 * leafsize);
+       btrfs_set_super_bytes_used(&super, 6 * nodesize);
        btrfs_set_super_sectorsize(&super, sectorsize);
-       btrfs_set_super_leafsize(&super, leafsize);
+       btrfs_set_super_leafsize(&super, nodesize);
        btrfs_set_super_nodesize(&super, nodesize);
        btrfs_set_super_stripesize(&super, stripesize);
        btrfs_set_super_csum_type(&super, BTRFS_CSUM_TYPE_CRC32);
@@ -241,11 +247,11 @@ int make_btrfs(int fd, const char *device, const char *label, char *fs_uuid,
        if (label)
                strncpy(super.label, label, BTRFS_LABEL_SIZE - 1);
 
-       buf = malloc(sizeof(*buf) + max(sectorsize, leafsize));
+       buf = malloc(sizeof(*buf) + max(sectorsize, nodesize));
 
        /* create the tree of root objects */
-       memset(buf->data, 0, leafsize);
-       buf->len = leafsize;
+       memset(buf->data, 0, nodesize);
+       buf->len = nodesize;
        btrfs_set_header_bytenr(buf, blocks[1]);
        btrfs_set_header_nritems(buf, 4);
        btrfs_set_header_generation(buf, 1);
@@ -264,10 +270,10 @@ int make_btrfs(int fd, const char *device, const char *label, char *fs_uuid,
        btrfs_set_stack_inode_generation(inode_item, 1);
        btrfs_set_stack_inode_size(inode_item, 3);
        btrfs_set_stack_inode_nlink(inode_item, 1);
-       btrfs_set_stack_inode_nbytes(inode_item, leafsize);
+       btrfs_set_stack_inode_nbytes(inode_item, nodesize);
        btrfs_set_stack_inode_mode(inode_item, S_IFDIR | 0755);
        btrfs_set_root_refs(&root_item, 1);
-       btrfs_set_root_used(&root_item, leafsize);
+       btrfs_set_root_used(&root_item, nodesize);
        btrfs_set_root_generation(&root_item, 1);
 
        memset(&disk_key, 0, sizeof(disk_key));
@@ -275,7 +281,7 @@ int make_btrfs(int fd, const char *device, const char *label, char *fs_uuid,
        btrfs_set_disk_key_offset(&disk_key, 0);
        nritems = 0;
 
-       itemoff = __BTRFS_LEAF_DATA_SIZE(leafsize) - sizeof(root_item);
+       itemoff = __BTRFS_LEAF_DATA_SIZE(nodesize) - sizeof(root_item);
        btrfs_set_root_bytenr(&root_item, blocks[2]);
        btrfs_set_disk_key_objectid(&disk_key, BTRFS_EXTENT_TREE_OBJECTID);
        btrfs_set_item_key(buf, &disk_key, nritems);
@@ -324,17 +330,17 @@ int make_btrfs(int fd, const char *device, const char *label, char *fs_uuid,
 
 
        csum_tree_block_size(buf, BTRFS_CRC32_SIZE, 0);
-       ret = pwrite(fd, buf->data, leafsize, blocks[1]);
-       if (ret != leafsize) {
+       ret = pwrite(fd, buf->data, nodesize, blocks[1]);
+       if (ret != nodesize) {
                ret = (ret < 0 ? -errno : -EIO);
                goto out;
        }
 
        /* create the items for the extent tree */
-       memset(buf->data+sizeof(struct btrfs_header), 0,
-               leafsize-sizeof(struct btrfs_header));
+       memset(buf->data + sizeof(struct btrfs_header), 0,
+               nodesize - sizeof(struct btrfs_header));
        nritems = 0;
-       itemoff = __BTRFS_LEAF_DATA_SIZE(leafsize);
+       itemoff = __BTRFS_LEAF_DATA_SIZE(nodesize);
        for (i = 1; i < 7; i++) {
                item_size = sizeof(struct btrfs_extent_item);
                if (!skinny_metadata)
@@ -353,7 +359,7 @@ int make_btrfs(int fd, const char *device, const char *label, char *fs_uuid,
                } else {
                        btrfs_set_disk_key_type(&disk_key,
                                                BTRFS_EXTENT_ITEM_KEY);
-                       btrfs_set_disk_key_offset(&disk_key, leafsize);
+                       btrfs_set_disk_key_offset(&disk_key, nodesize);
                }
                btrfs_set_item_key(buf, &disk_key, nritems);
                btrfs_set_item_offset(buf, btrfs_item_nr(nritems),
@@ -383,18 +389,18 @@ int make_btrfs(int fd, const char *device, const char *label, char *fs_uuid,
        btrfs_set_header_owner(buf, BTRFS_EXTENT_TREE_OBJECTID);
        btrfs_set_header_nritems(buf, nritems);
        csum_tree_block_size(buf, BTRFS_CRC32_SIZE, 0);
-       ret = pwrite(fd, buf->data, leafsize, blocks[2]);
-       if (ret != leafsize) {
+       ret = pwrite(fd, buf->data, nodesize, blocks[2]);
+       if (ret != nodesize) {
                ret = (ret < 0 ? -errno : -EIO);
                goto out;
        }
 
        /* create the chunk tree */
-       memset(buf->data+sizeof(struct btrfs_header), 0,
-               leafsize-sizeof(struct btrfs_header));
+       memset(buf->data + sizeof(struct btrfs_header), 0,
+               nodesize - sizeof(struct btrfs_header));
        nritems = 0;
        item_size = sizeof(*dev_item);
-       itemoff = __BTRFS_LEAF_DATA_SIZE(leafsize) - item_size;
+       itemoff = __BTRFS_LEAF_DATA_SIZE(nodesize) - item_size;
 
        /* first device 1 (there is no device 0) */
        btrfs_set_disk_key_objectid(&disk_key, BTRFS_DEV_ITEMS_OBJECTID);
@@ -470,17 +476,17 @@ int make_btrfs(int fd, const char *device, const char *label, char *fs_uuid,
        btrfs_set_header_owner(buf, BTRFS_CHUNK_TREE_OBJECTID);
        btrfs_set_header_nritems(buf, nritems);
        csum_tree_block_size(buf, BTRFS_CRC32_SIZE, 0);
-       ret = pwrite(fd, buf->data, leafsize, blocks[3]);
-       if (ret != leafsize) {
+       ret = pwrite(fd, buf->data, nodesize, blocks[3]);
+       if (ret != nodesize) {
                ret = (ret < 0 ? -errno : -EIO);
                goto out;
        }
 
        /* create the device tree */
-       memset(buf->data+sizeof(struct btrfs_header), 0,
-               leafsize-sizeof(struct btrfs_header));
+       memset(buf->data + sizeof(struct btrfs_header), 0,
+               nodesize - sizeof(struct btrfs_header));
        nritems = 0;
-       itemoff = __BTRFS_LEAF_DATA_SIZE(leafsize) -
+       itemoff = __BTRFS_LEAF_DATA_SIZE(nodesize) -
                sizeof(struct btrfs_dev_extent);
 
        btrfs_set_disk_key_objectid(&disk_key, 1);
@@ -509,33 +515,33 @@ int make_btrfs(int fd, const char *device, const char *label, char *fs_uuid,
        btrfs_set_header_owner(buf, BTRFS_DEV_TREE_OBJECTID);
        btrfs_set_header_nritems(buf, nritems);
        csum_tree_block_size(buf, BTRFS_CRC32_SIZE, 0);
-       ret = pwrite(fd, buf->data, leafsize, blocks[4]);
-       if (ret != leafsize) {
+       ret = pwrite(fd, buf->data, nodesize, blocks[4]);
+       if (ret != nodesize) {
                ret = (ret < 0 ? -errno : -EIO);
                goto out;
        }
 
        /* create the FS root */
-       memset(buf->data+sizeof(struct btrfs_header), 0,
-               leafsize-sizeof(struct btrfs_header));
+       memset(buf->data + sizeof(struct btrfs_header), 0,
+               nodesize - sizeof(struct btrfs_header));
        btrfs_set_header_bytenr(buf, blocks[5]);
        btrfs_set_header_owner(buf, BTRFS_FS_TREE_OBJECTID);
        btrfs_set_header_nritems(buf, 0);
        csum_tree_block_size(buf, BTRFS_CRC32_SIZE, 0);
-       ret = pwrite(fd, buf->data, leafsize, blocks[5]);
-       if (ret != leafsize) {
+       ret = pwrite(fd, buf->data, nodesize, blocks[5]);
+       if (ret != nodesize) {
                ret = (ret < 0 ? -errno : -EIO);
                goto out;
        }
        /* finally create the csum root */
-       memset(buf->data+sizeof(struct btrfs_header), 0,
-               leafsize-sizeof(struct btrfs_header));
+       memset(buf->data + sizeof(struct btrfs_header), 0,
+               nodesize - sizeof(struct btrfs_header));
        btrfs_set_header_bytenr(buf, blocks[6]);
        btrfs_set_header_owner(buf, BTRFS_CSUM_TREE_OBJECTID);
        btrfs_set_header_nritems(buf, 0);
        csum_tree_block_size(buf, BTRFS_CRC32_SIZE, 0);
-       ret = pwrite(fd, buf->data, leafsize, blocks[6]);
-       if (ret != leafsize) {
+       ret = pwrite(fd, buf->data, nodesize, blocks[6]);
+       if (ret != nodesize) {
                ret = (ret < 0 ? -errno : -EIO);
                goto out;
        }
@@ -559,6 +565,111 @@ out:
        return ret;
 }
 
+static const struct btrfs_fs_feature {
+       const char *name;
+       u64 flag;
+       const char *desc;
+} mkfs_features[] = {
+       { "mixed-bg", BTRFS_FEATURE_INCOMPAT_MIXED_GROUPS,
+               "mixed data and metadata block groups" },
+       { "extref", BTRFS_FEATURE_INCOMPAT_EXTENDED_IREF,
+               "increased hardlink limit per file to 65536" },
+       { "raid56", BTRFS_FEATURE_INCOMPAT_RAID56,
+               "raid56 extended format" },
+       { "skinny-metadata", BTRFS_FEATURE_INCOMPAT_SKINNY_METADATA,
+               "reduced-size metadata extent refs" },
+       { "no-holes", BTRFS_FEATURE_INCOMPAT_NO_HOLES,
+               "no explicit hole extents for files" },
+       /* Keep this one last */
+       { "list-all", BTRFS_FEATURE_LIST_ALL, NULL }
+};
+
+static int parse_one_fs_feature(const char *name, u64 *flags)
+{
+       int i;
+       int found = 0;
+
+       for (i = 0; i < ARRAY_SIZE(mkfs_features); i++) {
+               if (name[0] == '^' &&
+                       !strcmp(mkfs_features[i].name, name + 1)) {
+                       *flags &= ~ mkfs_features[i].flag;
+                       found = 1;
+               } else if (!strcmp(mkfs_features[i].name, name)) {
+                       *flags |= mkfs_features[i].flag;
+                       found = 1;
+               }
+       }
+
+       return !found;
+}
+
+void btrfs_parse_features_to_string(char *buf, u64 flags)
+{
+       int i;
+
+       buf[0] = 0;
+
+       for (i = 0; i < ARRAY_SIZE(mkfs_features); i++) {
+               if (flags & mkfs_features[i].flag) {
+                       if (*buf)
+                               strcat(buf, ", ");
+                       strcat(buf, mkfs_features[i].name);
+               }
+       }
+}
+
+void btrfs_process_fs_features(u64 flags)
+{
+       int i;
+
+       for (i = 0; i < ARRAY_SIZE(mkfs_features); i++) {
+               if (flags & mkfs_features[i].flag) {
+                       printf("Turning ON incompat feature '%s': %s\n",
+                               mkfs_features[i].name,
+                               mkfs_features[i].desc);
+               }
+       }
+}
+
+void btrfs_list_all_fs_features(u64 mask_disallowed)
+{
+       int i;
+
+       fprintf(stderr, "Filesystem features available:\n");
+       for (i = 0; i < ARRAY_SIZE(mkfs_features) - 1; i++) {
+               char *is_default = "";
+
+               if (mkfs_features[i].flag & mask_disallowed)
+                       continue;
+               if (mkfs_features[i].flag & BTRFS_MKFS_DEFAULT_FEATURES)
+                       is_default = ", default";
+               fprintf(stderr, "%-20s- %s (0x%llx%s)\n",
+                               mkfs_features[i].name,
+                               mkfs_features[i].desc,
+                               mkfs_features[i].flag,
+                               is_default);
+       }
+}
+
+/*
+ * Return NULL if all features were parsed fine, otherwise return the name of
+ * the first unparsed.
+ */
+char* btrfs_parse_fs_features(char *namelist, u64 *flags)
+{
+       char *this_char;
+       char *save_ptr = NULL; /* Satisfy static checkers */
+
+       for (this_char = strtok_r(namelist, ",", &save_ptr);
+            this_char != NULL;
+            this_char = strtok_r(NULL, ",", &save_ptr)) {
+               if (parse_one_fs_feature(this_char, flags))
+                       return this_char;
+       }
+
+       return NULL;
+}
+
 u64 btrfs_device_size(int fd, struct stat *st)
 {
        u64 size;
@@ -649,6 +760,7 @@ int btrfs_add_to_fsid(struct btrfs_trans_handle *trans,
        device->bytes_used = 0;
        device->total_ios = 0;
        device->dev_root = root->fs_info->dev_root;
+       device->name = strdup(path);
 
        ret = btrfs_add_device(trans, root, device);
        BUG_ON(ret);
@@ -661,9 +773,6 @@ int btrfs_add_to_fsid(struct btrfs_trans_handle *trans,
 
        memcpy(disk_super, super, sizeof(*disk_super));
 
-       printf("adding device %s id %llu\n", path,
-              (unsigned long long)device->devid);
-
        btrfs_set_super_bytenr(disk_super, BTRFS_SUPER_INFO_OFFSET);
        btrfs_set_stack_device_id(dev_item, device->devid);
        btrfs_set_stack_device_type(dev_item, device->type);
@@ -750,7 +859,7 @@ int btrfs_prepare_device(int fd, char *file, int zero_end, u64 *block_count_ret,
                 * optimization.
                 */
                if (discard_range(fd, 0, 0) == 0) {
-                       fprintf(stderr, "Performing full device TRIM (%s) ...\n",
+                       printf("Performing full device TRIM (%s) ...\n",
                                pretty_size(block_count));
                        discard_blocks(fd, 0, block_count);
                }
@@ -787,7 +896,7 @@ int btrfs_make_root_dir(struct btrfs_trans_handle *trans,
        btrfs_set_stack_inode_generation(&inode_item, trans->transid);
        btrfs_set_stack_inode_size(&inode_item, 0);
        btrfs_set_stack_inode_nlink(&inode_item, 1);
-       btrfs_set_stack_inode_nbytes(&inode_item, root->leafsize);
+       btrfs_set_stack_inode_nbytes(&inode_item, root->nodesize);
        btrfs_set_stack_inode_mode(&inode_item, S_IFDIR | 0755);
        btrfs_set_stack_timespec_sec(&inode_item.atime, now);
        btrfs_set_stack_timespec_nsec(&inode_item.atime, 0);
@@ -951,7 +1060,7 @@ out:
  */
 int open_path_or_dev_mnt(const char *path, DIR **dirstream)
 {
-       char mp[BTRFS_PATH_NAME_MAX + 1];
+       char mp[PATH_MAX];
        int fdmnt;
 
        if (is_block_device(path)) {
@@ -1300,8 +1409,8 @@ int btrfs_register_one_device(const char *fname)
                        strerror(errno));
                return -errno;
        }
-       strncpy(args.name, fname, BTRFS_PATH_NAME_MAX);
-       args.name[BTRFS_PATH_NAME_MAX-1] = 0;
+       memset(&args, 0, sizeof(args));
+       strncpy_null(args.name, fname);
        ret = ioctl(fd, BTRFS_IOC_SCAN_DEV, &args);
        e = errno;
        if (ret < 0) {
@@ -1370,6 +1479,24 @@ out:
        return ret;
 }
 
+/*
+ * Note: this function uses a static per-thread buffer. Do not call this
+ * function more than 10 times within one argument list!
+ */
+const char *pretty_size_mode(u64 size, unsigned mode)
+{
+       static __thread int ps_index = 0;
+       static __thread char ps_array[10][32];
+       char *ret;
+
+       ret = ps_array[ps_index];
+       ps_index++;
+       ps_index %= 10;
+       (void)pretty_size_snprintf(size, ret, 32, mode);
+
+       return ret;
+}
+
 static const char* unit_suffix_binary[] =
        { "B", "KiB", "MiB", "GiB", "TiB", "PiB", "EiB"};
 static const char* unit_suffix_decimal[] =
@@ -1623,92 +1750,23 @@ int set_label(const char *btrfs_dev, const char *label)
        return ret;
 }
 
-int btrfs_scan_block_devices(int run_ioctl)
+/*
+ * Unsafe subvolume check.
+ *
+ * This only checks ino == BTRFS_FIRST_FREE_OBJECTID, even it is not in a
+ * btrfs mount point.
+ * Must use together with other reliable method like btrfs ioctl.
+ */
+static int __is_subvol(const char *path)
 {
-
        struct stat st;
        int ret;
-       int fd;
-       struct btrfs_fs_devices *tmp_devices;
-       u64 num_devices;
-       FILE *proc_partitions;
-       int i;
-       char buf[1024];
-       char fullpath[110];
-       int scans = 0;
-       int special;
-
-scan_again:
-       proc_partitions = fopen("/proc/partitions","r");
-       if (!proc_partitions) {
-               fprintf(stderr, "Unable to open '/proc/partitions' for scanning\n");
-               return -ENOENT;
-       }
-       /* skip the header */
-       for (i = 0; i < 2; i++)
-               if (!fgets(buf, 1023, proc_partitions)) {
-                       fprintf(stderr,
-                               "Unable to read '/proc/partitions' for scanning\n");
-                       fclose(proc_partitions);
-                       return -ENOENT;
-               }
-
-       strcpy(fullpath,"/dev/");
-       while(fgets(buf, 1023, proc_partitions)) {
-               ret = sscanf(buf," %*d %*d %*d %99s", fullpath + 5);
-               if (ret != 1) {
-                       fprintf(stderr,
-                               "failed to scan device name from /proc/partitions\n");
-                       break;
-               }
-
-               /*
-                * multipath and MD devices may register as a btrfs filesystem
-                * both through the original block device and through
-                * the special (/dev/mapper or /dev/mdX) entry.
-                * This scans the special entries last
-                */
-               special = strncmp(fullpath, "/dev/dm-", strlen("/dev/dm-")) == 0;
-               if (!special)
-                       special = strncmp(fullpath, "/dev/md", strlen("/dev/md")) == 0;
-
-               if (scans == 0 && special)
-                       continue;
-               if (scans > 0 && !special)
-                       continue;
-
-               ret = lstat(fullpath, &st);
-               if (ret < 0) {
-                       fprintf(stderr, "failed to stat %s\n", fullpath);
-                       continue;
-               }
-               if (!S_ISBLK(st.st_mode)) {
-                       continue;
-               }
 
-               fd = open(fullpath, O_RDONLY);
-               if (fd < 0) {
-                       if (errno != ENOMEDIUM)
-                               fprintf(stderr, "failed to open %s: %s\n",
-                                       fullpath, strerror(errno));
-                       continue;
-               }
-               ret = btrfs_scan_one_device(fd, fullpath, &tmp_devices,
-                                           &num_devices,
-                                           BTRFS_SUPER_INFO_OFFSET, 0);
-               if (ret == 0 && run_ioctl > 0) {
-                       btrfs_register_one_device(fullpath);
-               }
-               close(fd);
-       }
-
-       fclose(proc_partitions);
+       ret = lstat(path, &st);
+       if (ret < 0)
+               return ret;
 
-       if (scans == 0) {
-               scans++;
-               goto scan_again;
-       }
-       return 0;
+       return st.st_ino == BTRFS_FIRST_FREE_OBJECTID;
 }
 
 /*
@@ -1799,6 +1857,55 @@ u64 parse_size(char *s)
        return ret;
 }
 
+u64 parse_qgroupid(const char *p)
+{
+       char *s = strchr(p, '/');
+       const char *ptr_src_end = p + strlen(p);
+       char *ptr_parse_end = NULL;
+       u64 level;
+       u64 id;
+       int fd;
+       int ret = 0;
+
+       if (p[0] == '/')
+               goto path;
+
+       /* Numeric format like '0/257' is the primary case */
+       if (!s) {
+               id = strtoull(p, &ptr_parse_end, 10);
+               if (ptr_parse_end != ptr_src_end)
+                       goto path;
+               return id;
+       }
+       level = strtoull(p, &ptr_parse_end, 10);
+       if (ptr_parse_end != s)
+               goto path;
+
+       id = strtoull(s + 1, &ptr_parse_end, 10);
+       if (ptr_parse_end != ptr_src_end)
+               goto  path;
+
+       return (level << BTRFS_QGROUP_LEVEL_SHIFT) | id;
+
+path:
+       /* Path format like subv at 'my_subvol' is the fallback case */
+       ret = __is_subvol(p);
+       if (ret < 0 || !ret)
+               goto err;
+       fd = open(p, O_RDONLY);
+       if (fd < 0)
+               goto err;
+       ret = lookup_ino_rootid(fd, &id);
+       close(fd);
+       if (ret < 0)
+               goto err;
+       return id;
+
+err:
+       fprintf(stderr, "ERROR: invalid qgroupid or subvolume path: %s\n", p);
+       exit(-1);
+}
+
 int open_file_or_dir3(const char *fname, DIR **dirstream, int open_flags)
 {
        int ret;
@@ -1826,8 +1933,10 @@ int open_file_or_dir3(const char *fname, DIR **dirstream, int open_flags)
        }
        if (fd < 0) {
                fd = -1;
-               if (*dirstream)
+               if (*dirstream) {
                        closedir(*dirstream);
+                       *dirstream = NULL;
+               }
        }
        return fd;
 }
@@ -1943,9 +2052,11 @@ int get_fs_info(char *path, struct btrfs_ioctl_fs_info_args *fi_args,
        int ret = 0;
        int ndevs = 0;
        int i = 0;
+       int replacing = 0;
        struct btrfs_fs_devices *fs_devices_mnt = NULL;
        struct btrfs_ioctl_dev_info_args *di_args;
-       char mp[BTRFS_PATH_NAME_MAX + 1];
+       struct btrfs_ioctl_dev_info_args tmp;
+       char mp[PATH_MAX];
        DIR *dirstream = NULL;
 
        memset(fi_args, 0, sizeof(*fi_args));
@@ -2012,6 +2123,19 @@ int get_fs_info(char *path, struct btrfs_ioctl_fs_info_args *fi_args,
                ret = search_chunk_tree_for_fs_info(fd, fi_args);
                if (ret)
                        goto out;
+
+               /*
+                * search_chunk_tree_for_fs_info() will lacks the devid 0
+                * so manual probe for it here.
+                */
+               ret = get_device_info(fd, 0, &tmp);
+               if (!ret) {
+                       fi_args->num_devices++;
+                       ndevs++;
+                       replacing = 1;
+                       if (i == 0)
+                               i++;
+               }
        }
 
        if (!fi_args->num_devices)
@@ -2023,6 +2147,8 @@ int get_fs_info(char *path, struct btrfs_ioctl_fs_info_args *fi_args,
                goto out;
        }
 
+       if (replacing)
+               memcpy(di_args, &tmp, sizeof(tmp));
        for (; i <= fi_args->max_id; ++i) {
                ret = get_device_info(fd, i, &di_args[ndevs]);
                if (ret == -ENODEV)
@@ -2221,9 +2347,8 @@ static int group_profile_devs_min(u64 flag)
 }
 
 int test_num_disk_vs_raid(u64 metadata_profile, u64 data_profile,
-       u64 dev_cnt, int mixed, char *estr)
+       u64 dev_cnt, int mixed)
 {
-       size_t sz = 100;
        u64 allowed = 0;
 
        switch (dev_cnt) {
@@ -2242,21 +2367,21 @@ int test_num_disk_vs_raid(u64 metadata_profile, u64 data_profile,
 
        if (dev_cnt > 1 &&
            ((metadata_profile | data_profile) & BTRFS_BLOCK_GROUP_DUP)) {
-               snprintf(estr, sz,
-                       "DUP is not allowed when FS has multiple devices\n");
+               fprintf(stderr,
+                   "ERROR: DUP is not allowed when FS has multiple devices\n");
                return 1;
        }
        if (metadata_profile & ~allowed) {
-               snprintf(estr, sz,
-                       "unable to create FS with metadata profile %s "
+               fprintf(stderr,
+                       "ERROR: unable to create FS with metadata profile %s "
                        "(have %llu devices but %d devices are required)\n",
                        btrfs_group_profile_str(metadata_profile), dev_cnt,
                        group_profile_devs_min(metadata_profile));
                return 1;
        }
        if (data_profile & ~allowed) {
-               snprintf(estr, sz,
-                       "unable to create FS with data profile %s "
+               fprintf(stderr,
+                       "ERROR: unable to create FS with data profile %s "
                        "(have %llu devices but %d devices are required)\n",
                        btrfs_group_profile_str(data_profile), dev_cnt,
                        group_profile_devs_min(data_profile));
@@ -2264,65 +2389,83 @@ int test_num_disk_vs_raid(u64 metadata_profile, u64 data_profile,
        }
 
        if (!mixed && (data_profile & BTRFS_BLOCK_GROUP_DUP)) {
-               snprintf(estr, sz,
-                       "dup for data is allowed only in mixed mode");
+               fprintf(stderr,
+                       "ERROR: DUP for data is allowed only in mixed mode");
                return 1;
        }
        return 0;
 }
 
-/* Check if disk is suitable for btrfs
+int group_profile_max_safe_loss(u64 flags)
+{
+       switch (flags & BTRFS_BLOCK_GROUP_PROFILE_MASK) {
+       case 0: /* single */
+       case BTRFS_BLOCK_GROUP_DUP:
+       case BTRFS_BLOCK_GROUP_RAID0:
+               return 0;
+       case BTRFS_BLOCK_GROUP_RAID1:
+       case BTRFS_BLOCK_GROUP_RAID5:
+       case BTRFS_BLOCK_GROUP_RAID10:
+               return 1;
+       case BTRFS_BLOCK_GROUP_RAID6:
+               return 2;
+       default:
+               return -1;
+       }
+}
+
+/*
+ * Check if a device is suitable for btrfs
  * returns:
- *  1: something is wrong, estr provides the error
+ *  1: something is wrong, an error is printed
  *  0: all is fine
  */
-int test_dev_for_mkfs(char *file, int force_overwrite, char *estr)
+int test_dev_for_mkfs(char *file, int force_overwrite)
 {
        int ret, fd;
-       size_t sz = 100;
        struct stat st;
 
        ret = is_swap_device(file);
        if (ret < 0) {
-               snprintf(estr, sz, "error checking %s status: %s\n", file,
+               fprintf(stderr, "ERROR: checking status of %s: %s\n", file,
                        strerror(-ret));
                return 1;
        }
        if (ret == 1) {
-               snprintf(estr, sz, "%s is a swap device\n", file);
+               fprintf(stderr, "ERROR: %s is a swap device\n", file);
                return 1;
        }
        if (!force_overwrite) {
                if (check_overwrite(file)) {
-                       snprintf(estr, sz, "Use the -f option to force overwrite.\n");
+                       fprintf(stderr, "Use the -f option to force overwrite.\n");
                        return 1;
                }
        }
        ret = check_mounted(file);
        if (ret < 0) {
-               snprintf(estr, sz, "error checking %s mount status\n",
-                       file);
+               fprintf(stderr, "ERROR: checking mount status of %s: %s\n",
+                       file, strerror(-ret));
                return 1;
        }
        if (ret == 1) {
-               snprintf(estr, sz, "%s is mounted\n", file);
+               fprintf(stderr, "ERROR: %s is mounted\n", file);
                return 1;
        }
        /* check if the device is busy */
        fd = open(file, O_RDWR|O_EXCL);
        if (fd < 0) {
-               snprintf(estr, sz, "unable to open %s: %s\n", file,
+               fprintf(stderr, "ERROR: unable to open %s: %s\n", file,
                        strerror(errno));
                return 1;
        }
        if (fstat(fd, &st)) {
-               snprintf(estr, sz, "unable to stat %s: %s\n", file,
+               fprintf(stderr, "ERROR: unable to stat %s: %s\n", file,
                        strerror(errno));
                close(fd);
                return 1;
        }
        if (!S_ISBLK(st.st_mode)) {
-               fprintf(stderr, "'%s' is not a block device\n", file);
+               fprintf(stderr, "ERROR: %s is not a block device\n", file);
                close(fd);
                return 1;
        }
@@ -2513,7 +2656,7 @@ int find_mount_root(const char *path, char **mount_root)
        return ret;
 }
 
-int test_minimum_size(const char *file, u32 leafsize)
+int test_minimum_size(const char *file, u32 nodesize)
 {
        int fd;
        struct stat statbuf;
@@ -2525,7 +2668,7 @@ int test_minimum_size(const char *file, u32 leafsize)
                close(fd);
                return -errno;
        }
-       if (btrfs_device_size(fd, &statbuf) < btrfs_min_dev_size(leafsize)) {
+       if (btrfs_device_size(fd, &statbuf) < btrfs_min_dev_size(nodesize)) {
                close(fd);
                return 1;
        }
@@ -2707,3 +2850,43 @@ int btrfs_tree_search2_ioctl_supported(int fd)
 
        return v2_supported;
 }
+
+int btrfs_check_nodesize(u32 nodesize, u32 sectorsize)
+{
+       if (nodesize < sectorsize) {
+               fprintf(stderr,
+                       "ERROR: Illegal nodesize %u (smaller than %u)\n",
+                       nodesize, sectorsize);
+               return -1;
+       } else if (nodesize > BTRFS_MAX_METADATA_BLOCKSIZE) {
+               fprintf(stderr,
+                       "ERROR: Illegal nodesize %u (larger than %u)\n",
+                       nodesize, BTRFS_MAX_METADATA_BLOCKSIZE);
+               return -1;
+       } else if (nodesize & (sectorsize - 1)) {
+               fprintf(stderr,
+                       "ERROR: Illegal nodesize %u (not aligned to %u)\n",
+                       nodesize, sectorsize);
+               return -1;
+       }
+       return 0;
+}
+
+/*
+ * Copy a path argument from SRC to DEST and check the SRC length if it's at
+ * most PATH_MAX and fits into DEST. DESTLEN is supposed to be exact size of
+ * the buffer.
+ * The destination buffer is zero terminated.
+ * Return < 0 for error, 0 otherwise.
+ */
+int arg_copy_path(char *dest, const char *src, int destlen)
+{
+       size_t len = strlen(src);
+
+       if (len >= PATH_MAX || len >= destlen)
+               return -ENAMETOOLONG;
+
+       __strncpy__null(dest, src, destlen);
+
+       return 0;
+}