btrfs-progs: Remove unused parameter
[platform/upstream/btrfs-progs.git] / cmds-subvolume.c
index 56d46b1..45363a5 100644 (file)
 #include "utils.h"
 #include "help.h"
 
-static int is_subvolume_cleaned(int fd, u64 subvolid)
+static int wait_for_subvolume_cleaning(int fd, size_t count, uint64_t *ids,
+                                      int sleep_interval)
 {
-       int ret;
-       struct btrfs_ioctl_search_args args;
-       struct btrfs_ioctl_search_key *sk = &args.key;
-
-       sk->tree_id = BTRFS_ROOT_TREE_OBJECTID;
-       sk->min_objectid = subvolid;
-       sk->max_objectid = subvolid;
-       sk->min_type = BTRFS_ROOT_ITEM_KEY;
-       sk->max_type = BTRFS_ROOT_ITEM_KEY;
-       sk->min_offset = 0;
-       sk->max_offset = (u64)-1;
-       sk->min_transid = 0;
-       sk->max_transid = (u64)-1;
-       sk->nr_items = 1;
-
-       ret = ioctl(fd, BTRFS_IOC_TREE_SEARCH, &args);
-       if (ret < 0)
-               return -errno;
-
-       if (sk->nr_items == 0)
-               return 1;
-
-       return 0;
-}
-
-static int wait_for_subvolume_cleaning(int fd, int count, u64 *ids,
-               int sleep_interval)
-{
-       int ret;
-       int i;
+       size_t i;
+       enum btrfs_util_error err;
 
        while (1) {
                int clean = 1;
@@ -81,16 +54,14 @@ static int wait_for_subvolume_cleaning(int fd, int count, u64 *ids,
                for (i = 0; i < count; i++) {
                        if (!ids[i])
                                continue;
-                       ret = is_subvolume_cleaned(fd, ids[i]);
-                       if (ret < 0) {
-                               error(
-                           "cannot read status of dead subvolume %llu: %s",
-                                       (unsigned long long)ids[i], strerror(-ret));
-                               return ret;
-                       }
-                       if (ret) {
-                               printf("Subvolume id %llu is gone\n", ids[i]);
+                       err = btrfs_util_subvolume_info_fd(fd, ids[i], NULL);
+                       if (err == BTRFS_UTIL_ERROR_SUBVOLUME_NOT_FOUND) {
+                               printf("Subvolume id %" PRIu64 " is gone\n",
+                                      ids[i]);
                                ids[i] = 0;
+                       } else if (err) {
+                               error_btrfs_util(err);
+                               return -errno;
                        } else {
                                clean = 0;
                        }
@@ -367,7 +338,7 @@ again:
                        error("unable to get fsid for '%s': %s",
                                path, strerror(-res));
                        error(
-                       "delete suceeded but commit may not be done in the end");
+                       "delete succeeded but commit may not be done in the end");
                        ret = 1;
                        goto out;
                }
@@ -659,6 +630,7 @@ static int cmd_subvol_snapshot(int argc, char **argv)
        char    *dupdir = NULL;
        char    *newname;
        char    *dstdir;
+       enum btrfs_util_error err;
        struct btrfs_ioctl_vol_args_v2  args;
        struct btrfs_qgroup_inherit *inherit = NULL;
        DIR *dirstream1 = NULL, *dirstream2 = NULL;
@@ -706,13 +678,9 @@ static int cmd_subvol_snapshot(int argc, char **argv)
        dst = argv[optind + 1];
 
        retval = 1;     /* failure */
-       res = test_issubvolume(subvol);
-       if (res < 0) {
-               error("cannot access subvolume %s: %s", subvol, strerror(-res));
-               goto out;
-       }
-       if (!res) {
-               error("not a subvolume: %s", subvol);
+       err = btrfs_util_is_subvolume(subvol);
+       if (err) {
+               error_btrfs_util(err);
                goto out;
        }
 
@@ -915,13 +883,9 @@ static int cmd_subvol_find_new(int argc, char **argv)
        subvol = argv[optind];
        last_gen = arg_strtou64(argv[optind + 1]);
 
-       ret = test_issubvolume(subvol);
-       if (ret < 0) {
-               error("cannot access subvolume %s: %s", subvol, strerror(-ret));
-               return 1;
-       }
-       if (!ret) {
-               error("not a subvolume: %s", subvol);
+       err = btrfs_util_is_subvolume(subvol);
+       if (err) {
+               error_btrfs_util(err);
                return 1;
        }
 
@@ -1158,160 +1122,15 @@ static const char * const cmd_subvol_sync_usage[] = {
        NULL
 };
 
-#if 0
-/*
- * If we're looking for any dead subvolume, take a shortcut and look
- * for any ORPHAN_ITEMs in the tree root
- */
-static int fs_has_dead_subvolumes(int fd)
-{
-       int ret;
-       struct btrfs_ioctl_search_args args;
-       struct btrfs_ioctl_search_key *sk = &args.key;
-       struct btrfs_ioctl_search_header sh;
-       u64 min_subvolid = 0;
-
-again:
-       sk->tree_id = BTRFS_ROOT_TREE_OBJECTID;
-       sk->min_objectid = BTRFS_ORPHAN_OBJECTID;
-       sk->max_objectid = BTRFS_ORPHAN_OBJECTID;
-       sk->min_type = BTRFS_ORPHAN_ITEM_KEY;
-       sk->max_type = BTRFS_ORPHAN_ITEM_KEY;
-       sk->min_offset = min_subvolid;
-       sk->max_offset = (u64)-1;
-       sk->min_transid = 0;
-       sk->max_transid = (u64)-1;
-       sk->nr_items = 1;
-
-       ret = ioctl(fd, BTRFS_IOC_TREE_SEARCH, &args);
-       if (ret < 0)
-               return -errno;
-
-       if (!sk->nr_items)
-               return 0;
-
-       memcpy(&sh, args.buf, sizeof(sh));
-       min_subvolid = sh.offset;
-
-       /*
-        * Verify that the root item is really there and we haven't hit
-        * a stale orphan
-        */
-       sk->tree_id = BTRFS_ROOT_TREE_OBJECTID;
-       sk->min_objectid = min_subvolid;
-       sk->max_objectid = min_subvolid;
-       sk->min_type = BTRFS_ROOT_ITEM_KEY;
-       sk->max_type = BTRFS_ROOT_ITEM_KEY;
-       sk->min_offset = 0;
-       sk->max_offset = (u64)-1;
-       sk->min_transid = 0;
-       sk->max_transid = (u64)-1;
-       sk->nr_items = 1;
-
-       ret = ioctl(fd, BTRFS_IOC_TREE_SEARCH, &args);
-       if (ret < 0)
-               return -errno;
-
-       /*
-        * Stale orphan, try the next one
-        */
-       if (!sk->nr_items) {
-               min_subvolid++;
-               goto again;
-       }
-
-       return 1;
-}
-#endif
-
-#define SUBVOL_ID_BATCH                1024
-
-/*
- * Enumerate all dead subvolumes that exist in the filesystem.
- * Fill @ids and reallocate to bigger size if needed.
- */
-static int enumerate_dead_subvols(int fd, u64 **ids)
-{
-       int ret;
-       struct btrfs_ioctl_search_args args;
-       struct btrfs_ioctl_search_key *sk = &args.key;
-       int idx = 0;
-       int count = 0;
-
-       memset(&args, 0, sizeof(args));
-
-       sk->tree_id = BTRFS_ROOT_TREE_OBJECTID;
-       sk->min_objectid = BTRFS_ORPHAN_OBJECTID;
-       sk->max_objectid = BTRFS_ORPHAN_OBJECTID;
-       sk->min_type = BTRFS_ORPHAN_ITEM_KEY;
-       sk->max_type = BTRFS_ORPHAN_ITEM_KEY;
-       sk->min_offset = 0;
-       sk->max_offset = (u64)-1;
-       sk->min_transid = 0;
-       sk->max_transid = (u64)-1;
-       sk->nr_items = 4096;
-
-       *ids = NULL;
-       while (1) {
-               struct btrfs_ioctl_search_header *sh;
-               unsigned long off;
-               int i;
-
-               ret = ioctl(fd, BTRFS_IOC_TREE_SEARCH, &args);
-               if (ret < 0)
-                       return -errno;
-
-               if (!sk->nr_items)
-                       return idx;
-
-               off = 0;
-               for (i = 0; i < sk->nr_items; i++) {
-                       sh = (struct btrfs_ioctl_search_header*)(args.buf + off);
-                       off += sizeof(*sh);
-
-                       if (btrfs_search_header_type(sh)
-                           == BTRFS_ORPHAN_ITEM_KEY) {
-                               if (idx >= count) {
-                                       u64 *newids;
-
-                                       count += SUBVOL_ID_BATCH;
-                                       newids = (u64*)realloc(*ids,
-                                                       count * sizeof(u64));
-                                       if (!newids)
-                                               return -ENOMEM;
-                                       *ids = newids;
-                               }
-                               (*ids)[idx] = btrfs_search_header_offset(sh);
-                               idx++;
-                       }
-                       off += btrfs_search_header_len(sh);
-
-                       sk->min_objectid = btrfs_search_header_objectid(sh);
-                       sk->min_type = btrfs_search_header_type(sh);
-                       sk->min_offset = btrfs_search_header_offset(sh);
-               }
-               if (sk->min_offset < (u64)-1)
-                       sk->min_offset++;
-               else
-                       break;
-               if (sk->min_type != BTRFS_ORPHAN_ITEM_KEY)
-                       break;
-               if (sk->min_objectid != BTRFS_ORPHAN_OBJECTID)
-                       break;
-       }
-
-       return idx;
-}
-
 static int cmd_subvol_sync(int argc, char **argv)
 {
        int fd = -1;
-       int i;
        int ret = 1;
        DIR *dirstream = NULL;
-       u64 *ids = NULL;
-       int id_count;
+       uint64_t *ids = NULL;
+       size_t id_count, i;
        int sleep_interval = 1;
+       enum btrfs_util_error err;
 
        while (1) {
                int c = getopt(argc, argv, "s:");
@@ -1345,10 +1164,9 @@ static int cmd_subvol_sync(int argc, char **argv)
 
        id_count = argc - optind;
        if (!id_count) {
-               id_count = enumerate_dead_subvols(fd, &ids);
-               if (id_count < 0) {
-                       error("can't enumerate dead subvolumes: %s",
-                                       strerror(-id_count));
+               err = btrfs_util_deleted_subvolumes_fd(fd, &ids, &id_count);
+               if (err) {
+                       error_btrfs_util(err);
                        ret = 1;
                        goto out;
                }
@@ -1357,7 +1175,7 @@ static int cmd_subvol_sync(int argc, char **argv)
                        goto out;
                }
        } else {
-               ids = (u64*)malloc(id_count * sizeof(u64));
+               ids = malloc(id_count * sizeof(uint64_t));
                if (!ids) {
                        error("not enough memory");
                        ret = 1;
@@ -1371,13 +1189,13 @@ static int cmd_subvol_sync(int argc, char **argv)
                        arg = argv[optind + i];
                        errno = 0;
                        id = strtoull(arg, NULL, 10);
-                       if (errno < 0) {
+                       if (errno) {
                                error("unrecognized subvolume id %s", arg);
                                ret = 1;
                                goto out;
                        }
-                       if (id < BTRFS_FIRST_FREE_OBJECTID
-                                       || id > BTRFS_LAST_FREE_OBJECTID) {
+                       if (id < BTRFS_FIRST_FREE_OBJECTID ||
+                           id > BTRFS_LAST_FREE_OBJECTID) {
                                error("subvolume id %s out of range", arg);
                                ret = 1;
                                goto out;