@@ -1522,7 +1522,8 @@ next:
}
}
-static int btrfs_list_subvols(int fd, struct root_lookup *root_lookup)
+static int btrfs_list_subvols(int fd, struct root_lookup *root_lookup,
+ const char *path)
{
int ret;
@@ -1543,7 +1544,7 @@ static int btrfs_list_subvols(int fd, struct root_lookup *root_lookup)
int btrfs_list_subvols_print(int fd, struct btrfs_list_filter_set *filter_set,
struct btrfs_list_comparer_set *comp_set,
enum btrfs_list_layout layout, int full_path,
- const char *raw_prefix)
+ const char *raw_prefix, const char *path)
{
struct root_lookup root_lookup;
struct root_lookup root_sort;
@@ -1555,7 +1556,7 @@ int btrfs_list_subvols_print(int fd, struct btrfs_list_filter_set *filter_set,
if (ret)
return ret;
- ret = btrfs_list_subvols(fd, &root_lookup);
+ ret = btrfs_list_subvols(fd, &root_lookup, path);
if (ret) {
rb_free_nodes(&root_lookup.root, free_root_info);
return ret;
@@ -1576,7 +1577,8 @@ static char *strdup_or_null(const char *s)
return strdup(s);
}
-int btrfs_get_toplevel_subvol(int fd, struct root_info *the_ri)
+int btrfs_get_toplevel_subvol(int fd, struct root_info *the_ri,
+ const char *path)
{
int ret;
struct root_lookup rl;
@@ -1588,7 +1590,7 @@ int btrfs_get_toplevel_subvol(int fd, struct root_info *the_ri)
if (ret)
return ret;
- ret = btrfs_list_subvols(fd, &rl);
+ ret = btrfs_list_subvols(fd, &rl, path);
if (ret) {
rb_free_nodes(&rl.root, free_root_info);
return ret;
@@ -1611,7 +1613,7 @@ int btrfs_get_toplevel_subvol(int fd, struct root_info *the_ri)
return ret;
}
-int btrfs_get_subvol(int fd, struct root_info *the_ri)
+int btrfs_get_subvol(int fd, struct root_info *the_ri, const char *path)
{
int ret, rr;
struct root_lookup rl;
@@ -1623,7 +1625,7 @@ int btrfs_get_subvol(int fd, struct root_info *the_ri)
if (ret)
return ret;
- ret = btrfs_list_subvols(fd, &rl);
+ ret = btrfs_list_subvols(fd, &rl, path);
if (ret) {
rb_free_nodes(&rl.root, free_root_info);
return ret;
@@ -169,13 +169,14 @@ struct btrfs_list_comparer_set *btrfs_list_alloc_comparer_set(void);
int btrfs_list_subvols_print(int fd, struct btrfs_list_filter_set *filter_set,
struct btrfs_list_comparer_set *comp_set,
enum btrfs_list_layout layot, int full_path,
- const char *raw_prefix);
+ const char *raw_prefix, const char *path);
int btrfs_list_find_updated_files(int fd, u64 root_id, u64 oldest_gen);
int btrfs_list_get_default_subvolume(int fd, u64 *default_id);
char *btrfs_list_path_for_root(int fd, u64 root);
int btrfs_list_get_path_rootid(int fd, u64 *treeid);
-int btrfs_get_subvol(int fd, struct root_info *the_ri);
-int btrfs_get_toplevel_subvol(int fd, struct root_info *the_ri);
+int btrfs_get_subvol(int fd, struct root_info *the_ri, const char *path);
+int btrfs_get_toplevel_subvol(int fd, struct root_info *the_ri,
+ const char *path);
int check_perm_for_tree_search(int fd);
#endif
@@ -620,7 +620,7 @@ static int cmd_subvol_list(int argc, char **argv)
btrfs_list_setup_print_column(BTRFS_LIST_PATH);
ret = btrfs_list_subvols_print(fd, filter_set, comparer_set,
- layout, !is_list_all && !is_only_in_path, NULL);
+ layout, !is_list_all && !is_only_in_path, NULL, subvol);
out:
close_file_or_dir(fd, dirstream);
@@ -844,7 +844,7 @@ static int cmd_subvol_get_default(int argc, char **argv)
btrfs_list_setup_print_column(BTRFS_LIST_PATH);
ret = btrfs_list_subvols_print(fd, filter_set, NULL,
- BTRFS_LIST_LAYOUT_DEFAULT, 1, NULL);
+ BTRFS_LIST_LAYOUT_DEFAULT, 1, NULL, subvol);
if (filter_set)
free(filter_set);
@@ -1110,7 +1110,7 @@ static int cmd_subvol_show(int argc, char **argv)
goto out;
}
btrfs_list_subvols_print(fd, filter_set, NULL, BTRFS_LIST_LAYOUT_RAW,
- 1, raw_prefix);
+ 1, raw_prefix, fullpath);
out:
/* clean up */
@@ -2542,9 +2542,9 @@ int get_subvol_info(const char *fullpath, struct root_info *get_ri)
get_ri->root_id = sv_id;
if (sv_id == BTRFS_FS_TREE_OBJECTID)
- ret = btrfs_get_toplevel_subvol(mntfd, get_ri);
+ ret = btrfs_get_toplevel_subvol(mntfd, get_ri, mnt);
else
- ret = btrfs_get_subvol(mntfd, get_ri);
+ ret = btrfs_get_subvol(mntfd, get_ri, mnt);
if (ret)
error("can't find '%s': %d", svpath, ret);
@@ -2570,9 +2570,9 @@ int get_subvol_info_by_rootid(const char *mnt, struct root_info *get_ri, u64 r_i
get_ri->root_id = r_id;
if (r_id == BTRFS_FS_TREE_OBJECTID)
- ret = btrfs_get_toplevel_subvol(fd, get_ri);
+ ret = btrfs_get_toplevel_subvol(fd, get_ri, mnt);
else
- ret = btrfs_get_subvol(fd, get_ri);
+ ret = btrfs_get_subvol(fd, get_ri, mnt);
if (ret)
error("can't find rootid '%llu' on '%s': %d", r_id, mnt, ret);
@@ -2595,7 +2595,7 @@ int get_subvol_info_by_uuid(const char *mnt, struct root_info *get_ri, u8 *uuid_
memset(get_ri, 0, sizeof(*get_ri));
uuid_copy(get_ri->uuid, uuid_arg);
- ret = btrfs_get_subvol(fd, get_ri);
+ ret = btrfs_get_subvol(fd, get_ri, mnt);
if (ret) {
char uuid_parsed[BTRFS_UUID_UNPARSED_SIZE];
uuid_unparse(uuid_arg, uuid_parsed);
This is a preparetion work to allow normal user to call "subvolume list/show". Signed-off-by: Tomohiro Misono <misono.tomohiro@jp.fujitsu.com> --- btrfs-list.c | 16 +++++++++------- btrfs-list.h | 7 ++++--- cmds-subvolume.c | 6 +++--- utils.c | 10 +++++----- 4 files changed, 21 insertions(+), 18 deletions(-)