2 * Copyright (C) 2010 Oracle. All rights reserved.
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public
6 * License v2 as published by the Free Software Foundation.
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11 * General Public License for more details.
13 * You should have received a copy of the GNU General Public
14 * License along with this program; if not, write to the
15 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
16 * Boston, MA 021110-1307, USA.
21 #include <sys/ioctl.h>
22 #include <sys/mount.h>
27 #include <sys/types.h>
34 #include "transaction.h"
36 #include <uuid/uuid.h>
37 #include "btrfs-list.h"
39 #define BTRFS_LIST_NFILTERS_INCREASE (2 * BTRFS_LIST_FILTER_MAX)
40 #define BTRFS_LIST_NCOMPS_INCREASE (2 * BTRFS_LIST_COMP_MAX)
42 /* we store all the roots we find in an rbtree so that we can
43 * search for them later.
50 * one of these for each root we find.
53 struct rb_node rb_node;
54 struct rb_node sort_node;
59 /* equal the offset of the root's key */
62 /* flags of the root */
65 /* the id of the root that references this one */
68 /* the dir id we're in from ref_tree */
73 /* generation when the root is created or last updated */
76 /* creation generation of this root in sec*/
79 /* creation time of this root in sec*/
82 u8 uuid[BTRFS_UUID_SIZE];
84 /* path from the subvol we live in to this root, including the
85 * root's name. This is null until we do the extra lookup ioctl.
89 /* the name of this root in the directory it lives in */
99 } btrfs_list_columns[] = {
107 .column_name = "Gen",
112 .column_name = "CGen",
117 .column_name = "Parent",
122 .column_name = "Top Level",
127 .column_name = "OTime",
132 .column_name = "UUID",
137 .column_name = "Path",
147 static btrfs_list_filter_func all_filter_funcs[];
148 static btrfs_list_comp_func all_comp_funcs[];
150 void btrfs_list_setup_print_column(enum btrfs_list_column_enum column)
154 BUG_ON(column < 0 || column > BTRFS_LIST_ALL);
156 if (column < BTRFS_LIST_ALL) {
157 btrfs_list_columns[column].need_print = 1;
161 for (i = 0; i < BTRFS_LIST_ALL; i++)
162 btrfs_list_columns[i].need_print = 1;
165 static void root_lookup_init(struct root_lookup *tree)
167 tree->root.rb_node = NULL;
170 static int comp_entry_with_rootid(struct root_info *entry1,
171 struct root_info *entry2,
176 if (entry1->root_id > entry2->root_id)
178 else if (entry1->root_id < entry2->root_id)
183 return is_descending ? -ret : ret;
186 static int comp_entry_with_gen(struct root_info *entry1,
187 struct root_info *entry2,
192 if (entry1->gen > entry2->gen)
194 else if (entry1->gen < entry2->gen)
199 return is_descending ? -ret : ret;
202 static int comp_entry_with_ogen(struct root_info *entry1,
203 struct root_info *entry2,
208 if (entry1->ogen > entry2->ogen)
210 else if (entry1->ogen < entry2->ogen)
215 return is_descending ? -ret : ret;
218 static int comp_entry_with_path(struct root_info *entry1,
219 struct root_info *entry2,
224 if (strcmp(entry1->full_path, entry2->full_path) > 0)
226 else if (strcmp(entry1->full_path, entry2->full_path) < 0)
231 return is_descending ? -ret : ret;
234 static btrfs_list_comp_func all_comp_funcs[] = {
235 [BTRFS_LIST_COMP_ROOTID] = comp_entry_with_rootid,
236 [BTRFS_LIST_COMP_OGEN] = comp_entry_with_ogen,
237 [BTRFS_LIST_COMP_GEN] = comp_entry_with_gen,
238 [BTRFS_LIST_COMP_PATH] = comp_entry_with_path,
241 static char *all_sort_items[] = {
242 [BTRFS_LIST_COMP_ROOTID] = "rootid",
243 [BTRFS_LIST_COMP_OGEN] = "ogen",
244 [BTRFS_LIST_COMP_GEN] = "gen",
245 [BTRFS_LIST_COMP_PATH] = "path",
246 [BTRFS_LIST_COMP_MAX] = NULL,
249 static int btrfs_list_get_sort_item(char *sort_name)
253 for (i = 0; i < BTRFS_LIST_COMP_MAX; i++) {
254 if (strcmp(sort_name, all_sort_items[i]) == 0)
260 struct btrfs_list_comparer_set *btrfs_list_alloc_comparer_set(void)
262 struct btrfs_list_comparer_set *set;
265 size = sizeof(struct btrfs_list_comparer_set) +
266 BTRFS_LIST_NCOMPS_INCREASE * sizeof(struct btrfs_list_comparer);
269 fprintf(stderr, "memory allocation failed\n");
273 memset(set, 0, size);
274 set->total = BTRFS_LIST_NCOMPS_INCREASE;
279 void btrfs_list_free_comparer_set(struct btrfs_list_comparer_set *comp_set)
284 int btrfs_list_setup_comparer(struct btrfs_list_comparer_set **comp_set,
285 enum btrfs_list_comp_enum comparer,
288 struct btrfs_list_comparer_set *set = *comp_set;
292 BUG_ON(comparer >= BTRFS_LIST_COMP_MAX);
293 BUG_ON(set->ncomps > set->total);
295 if (set->ncomps == set->total) {
296 size = set->total + BTRFS_LIST_NCOMPS_INCREASE;
297 size = sizeof(*set) + size * sizeof(struct btrfs_list_comparer);
298 set = realloc(set, size);
300 fprintf(stderr, "memory allocation failed\n");
304 memset(&set->comps[set->total], 0,
305 BTRFS_LIST_NCOMPS_INCREASE *
306 sizeof(struct btrfs_list_comparer));
307 set->total += BTRFS_LIST_NCOMPS_INCREASE;
311 BUG_ON(set->comps[set->ncomps].comp_func);
313 set->comps[set->ncomps].comp_func = all_comp_funcs[comparer];
314 set->comps[set->ncomps].is_descending = is_descending;
319 static int sort_comp(struct root_info *entry1, struct root_info *entry2,
320 struct btrfs_list_comparer_set *set)
322 int rootid_compared = 0;
325 if (!set || !set->ncomps)
328 for (i = 0; i < set->ncomps; i++) {
329 if (!set->comps[i].comp_func)
332 ret = set->comps[i].comp_func(entry1, entry2,
333 set->comps[i].is_descending);
337 if (set->comps[i].comp_func == comp_entry_with_rootid)
341 if (!rootid_compared) {
343 ret = comp_entry_with_rootid(entry1, entry2, 0);
349 static int sort_tree_insert(struct root_lookup *sort_tree,
350 struct root_info *ins,
351 struct btrfs_list_comparer_set *comp_set)
353 struct rb_node **p = &sort_tree->root.rb_node;
354 struct rb_node *parent = NULL;
355 struct root_info *curr;
360 curr = rb_entry(parent, struct root_info, sort_node);
362 ret = sort_comp(ins, curr, comp_set);
371 rb_link_node(&ins->sort_node, parent, p);
372 rb_insert_color(&ins->sort_node, &sort_tree->root);
377 * insert a new root into the tree. returns the existing root entry
378 * if one is already there. Both root_id and ref_tree are used
381 static int root_tree_insert(struct root_lookup *root_tree,
382 struct root_info *ins)
384 struct rb_node **p = &root_tree->root.rb_node;
385 struct rb_node * parent = NULL;
386 struct root_info *curr;
391 curr = rb_entry(parent, struct root_info, rb_node);
393 ret = comp_entry_with_rootid(ins, curr, 0);
402 rb_link_node(&ins->rb_node, parent, p);
403 rb_insert_color(&ins->rb_node, &root_tree->root);
408 * find a given root id in the tree. We return the smallest one,
409 * rb_next can be used to move forward looking for more if required
411 static struct root_info *root_tree_search(struct root_lookup *root_tree,
414 struct rb_node *n = root_tree->root.rb_node;
415 struct root_info *entry;
416 struct root_info tmp;
419 tmp.root_id = root_id;
422 entry = rb_entry(n, struct root_info, rb_node);
424 ret = comp_entry_with_rootid(&tmp, entry, 0);
435 static int update_root(struct root_lookup *root_lookup,
436 u64 root_id, u64 ref_tree, u64 root_offset, u64 flags,
437 u64 dir_id, char *name, int name_len, u64 ogen, u64 gen,
438 time_t ot, void *uuid)
440 struct root_info *ri;
442 ri = root_tree_search(root_lookup, root_id);
443 if (!ri || ri->root_id != root_id)
445 if (name && name_len > 0) {
449 ri->name = malloc(name_len + 1);
451 fprintf(stderr, "memory allocation failed\n");
454 strncpy(ri->name, name, name_len);
455 ri->name[name_len] = 0;
458 ri->ref_tree = ref_tree;
460 ri->root_offset = root_offset;
469 if (!ri->ogen && root_offset)
470 ri->ogen = root_offset;
474 memcpy(&ri->uuid, uuid, BTRFS_UUID_SIZE);
480 * add_root - update the existed root, or allocate a new root and insert it
481 * into the lookup tree.
482 * root_id: object id of the root
483 * ref_tree: object id of the referring root.
484 * root_offset: offset value of the root'key
485 * dir_id: inode id of the directory in ref_tree where this root can be found.
486 * name: the name of root_id in that directory
487 * name_len: the length of name
488 * ogen: the original generation of the root
489 * gen: the current generation of the root
490 * ot: the original time(create time) of the root
491 * uuid: uuid of the root
493 static int add_root(struct root_lookup *root_lookup,
494 u64 root_id, u64 ref_tree, u64 root_offset, u64 flags,
495 u64 dir_id, char *name, int name_len, u64 ogen, u64 gen,
496 time_t ot, void *uuid)
498 struct root_info *ri;
501 ret = update_root(root_lookup, root_id, ref_tree, root_offset, flags,
502 dir_id, name, name_len, ogen, gen, ot, uuid);
506 ri = malloc(sizeof(*ri));
508 printf("memory allocation failed\n");
511 memset(ri, 0, sizeof(*ri));
512 ri->root_id = root_id;
514 if (name && name_len > 0) {
515 ri->name = malloc(name_len + 1);
517 fprintf(stderr, "memory allocation failed\n");
520 strncpy(ri->name, name, name_len);
521 ri->name[name_len] = 0;
524 ri->ref_tree = ref_tree;
528 ri->root_offset = root_offset;
535 if (!ri->ogen && root_offset)
536 ri->ogen = root_offset;
541 memcpy(&ri->uuid, uuid, BTRFS_UUID_SIZE);
543 ret = root_tree_insert(root_lookup, ri);
545 printf("failed to insert tree %llu\n", (unsigned long long)root_id);
551 void __free_root_info(struct root_info *ri)
565 void __free_all_subvolumn(struct root_lookup *root_tree)
567 struct root_info *entry;
570 n = rb_first(&root_tree->root);
572 entry = rb_entry(n, struct root_info, rb_node);
573 rb_erase(n, &root_tree->root);
574 __free_root_info(entry);
576 n = rb_first(&root_tree->root);
581 * for a given root_info, search through the root_lookup tree to construct
582 * the full path name to it.
584 * This can't be called until all the root_info->path fields are filled
585 * in by lookup_ino_path
587 static int resolve_root(struct root_lookup *rl, struct root_info *ri,
590 char *full_path = NULL;
592 struct root_info *found;
595 * we go backwards from the root_info object and add pathnames
596 * from parent directories as we go.
602 int add_len = strlen(found->path);
604 /* room for / and for null */
605 tmp = malloc(add_len + 2 + len);
607 perror("malloc failed");
611 memcpy(tmp + add_len + 1, full_path, len);
613 memcpy(tmp, found->path, add_len);
614 tmp [add_len + len + 1] = '\0';
619 full_path = strdup(found->path);
623 next = found->ref_tree;
625 if (next == top_id) {
630 if (next == BTRFS_FS_TREE_OBJECTID) {
636 * if the ref_tree wasn't in our tree of roots, we're
639 found = root_tree_search(rl, next);
646 ri->full_path = full_path;
652 * for a single root_info, ask the kernel to give us a path name
653 * inside it's ref_root for the dir_id where it lives.
655 * This fills in root_info->path with the path to the directory and and
656 * appends this root's name.
658 static int lookup_ino_path(int fd, struct root_info *ri)
660 struct btrfs_ioctl_ino_lookup_args args;
666 memset(&args, 0, sizeof(args));
667 args.treeid = ri->ref_tree;
668 args.objectid = ri->dir_id;
670 ret = ioctl(fd, BTRFS_IOC_INO_LOOKUP, &args);
673 fprintf(stderr, "ERROR: Failed to lookup path for root %llu - %s\n",
674 (unsigned long long)ri->ref_tree,
681 * we're in a subdirectory of ref_tree, the kernel ioctl
682 * puts a / in there for us
684 ri->path = malloc(strlen(ri->name) + strlen(args.name) + 1);
686 perror("malloc failed");
689 strcpy(ri->path, args.name);
690 strcat(ri->path, ri->name);
692 /* we're at the root of ref_tree */
693 ri->path = strdup(ri->name);
695 perror("strdup failed");
702 /* finding the generation for a given path is a two step process.
703 * First we use the inode loookup routine to find out the root id
705 * Then we use the tree search ioctl to scan all the root items for a
706 * given root id and spit out the latest generation we can find
708 static u64 find_root_gen(int fd)
710 struct btrfs_ioctl_ino_lookup_args ino_args;
712 struct btrfs_ioctl_search_args args;
713 struct btrfs_ioctl_search_key *sk = &args.key;
714 struct btrfs_ioctl_search_header sh;
715 unsigned long off = 0;
720 memset(&ino_args, 0, sizeof(ino_args));
721 ino_args.objectid = BTRFS_FIRST_FREE_OBJECTID;
723 /* this ioctl fills in ino_args->treeid */
724 ret = ioctl(fd, BTRFS_IOC_INO_LOOKUP, &ino_args);
727 fprintf(stderr, "ERROR: Failed to lookup path for dirid %llu - %s\n",
728 (unsigned long long)BTRFS_FIRST_FREE_OBJECTID,
733 memset(&args, 0, sizeof(args));
738 * there may be more than one ROOT_ITEM key if there are
739 * snapshots pending deletion, we have to loop through
742 sk->min_objectid = ino_args.treeid;
743 sk->max_objectid = ino_args.treeid;
744 sk->max_type = BTRFS_ROOT_ITEM_KEY;
745 sk->min_type = BTRFS_ROOT_ITEM_KEY;
746 sk->max_offset = (u64)-1;
747 sk->max_transid = (u64)-1;
751 ret = ioctl(fd, BTRFS_IOC_TREE_SEARCH, &args);
754 fprintf(stderr, "ERROR: can't perform the search - %s\n",
758 /* the ioctl returns the number of item it found in nr_items */
759 if (sk->nr_items == 0)
763 for (i = 0; i < sk->nr_items; i++) {
764 struct btrfs_root_item *item;
766 memcpy(&sh, args.buf + off, sizeof(sh));
768 item = (struct btrfs_root_item *)(args.buf + off);
771 sk->min_objectid = sh.objectid;
772 sk->min_type = sh.type;
773 sk->min_offset = sh.offset;
775 if (sh.objectid > ino_args.treeid)
778 if (sh.objectid == ino_args.treeid &&
779 sh.type == BTRFS_ROOT_ITEM_KEY) {
780 max_found = max(max_found,
781 btrfs_root_generation(item));
784 if (sk->min_offset < (u64)-1)
789 if (sk->min_type != BTRFS_ROOT_ITEM_KEY)
791 if (sk->min_objectid != BTRFS_ROOT_ITEM_KEY)
797 /* pass in a directory id and this will return
798 * the full path of the parent directory inside its
801 * It may return NULL if it is in the root, or an ERR_PTR if things
804 static char *__ino_resolve(int fd, u64 dirid)
806 struct btrfs_ioctl_ino_lookup_args args;
811 memset(&args, 0, sizeof(args));
812 args.objectid = dirid;
814 ret = ioctl(fd, BTRFS_IOC_INO_LOOKUP, &args);
817 fprintf(stderr, "ERROR: Failed to lookup path for dirid %llu - %s\n",
818 (unsigned long long)dirid, strerror(e) );
824 * we're in a subdirectory of ref_tree, the kernel ioctl
825 * puts a / in there for us
827 full = strdup(args.name);
829 perror("malloc failed");
830 return ERR_PTR(-ENOMEM);
833 /* we're at the root of ref_tree */
840 * simple string builder, returning a new string with both
843 char *build_name(char *dirid, char *name)
849 full = malloc(strlen(dirid) + strlen(name) + 1);
858 * given an inode number, this returns the full path name inside the subvolume
859 * to that file/directory. cache_dirid and cache_name are used to
860 * cache the results so we can avoid tree searches if a later call goes
861 * to the same directory or file name
863 static char *ino_resolve(int fd, u64 ino, u64 *cache_dirid, char **cache_name)
871 struct btrfs_ioctl_search_args args;
872 struct btrfs_ioctl_search_key *sk = &args.key;
873 struct btrfs_ioctl_search_header *sh;
874 unsigned long off = 0;
878 memset(&args, 0, sizeof(args));
883 * step one, we search for the inode back ref. We just use the first
886 sk->min_objectid = ino;
887 sk->max_objectid = ino;
888 sk->max_type = BTRFS_INODE_REF_KEY;
889 sk->max_offset = (u64)-1;
890 sk->min_type = BTRFS_INODE_REF_KEY;
891 sk->max_transid = (u64)-1;
894 ret = ioctl(fd, BTRFS_IOC_TREE_SEARCH, &args);
897 fprintf(stderr, "ERROR: can't perform the search - %s\n",
901 /* the ioctl returns the number of item it found in nr_items */
902 if (sk->nr_items == 0)
906 sh = (struct btrfs_ioctl_search_header *)(args.buf + off);
908 if (sh->type == BTRFS_INODE_REF_KEY) {
909 struct btrfs_inode_ref *ref;
912 ref = (struct btrfs_inode_ref *)(sh + 1);
913 namelen = btrfs_stack_inode_ref_name_len(ref);
915 name = (char *)(ref + 1);
916 name = strndup(name, namelen);
918 /* use our cached value */
919 if (dirid == *cache_dirid && *cache_name) {
920 dirname = *cache_name;
927 * the inode backref gives us the file name and the parent directory id.
928 * From here we use __ino_resolve to get the path to the parent
930 dirname = __ino_resolve(fd, dirid);
932 full = build_name(dirname, name);
933 if (*cache_name && dirname != *cache_name)
936 *cache_name = dirname;
937 *cache_dirid = dirid;
943 int btrfs_list_get_default_subvolume(int fd, u64 *default_id)
945 struct btrfs_ioctl_search_args args;
946 struct btrfs_ioctl_search_key *sk = &args.key;
947 struct btrfs_ioctl_search_header *sh;
951 memset(&args, 0, sizeof(args));
954 * search for a dir item with a name 'default' in the tree of
955 * tree roots, it should point us to a default root
959 /* don't worry about ancient format and request only one item */
962 sk->max_objectid = BTRFS_ROOT_TREE_DIR_OBJECTID;
963 sk->min_objectid = BTRFS_ROOT_TREE_DIR_OBJECTID;
964 sk->max_type = BTRFS_DIR_ITEM_KEY;
965 sk->min_type = BTRFS_DIR_ITEM_KEY;
966 sk->max_offset = (u64)-1;
967 sk->max_transid = (u64)-1;
969 ret = ioctl(fd, BTRFS_IOC_TREE_SEARCH, &args);
973 /* the ioctl returns the number of items it found in nr_items */
974 if (sk->nr_items == 0)
977 sh = (struct btrfs_ioctl_search_header *)args.buf;
979 if (sh->type == BTRFS_DIR_ITEM_KEY) {
980 struct btrfs_dir_item *di;
984 di = (struct btrfs_dir_item *)(sh + 1);
985 name_len = btrfs_stack_dir_name_len(di);
986 name = (char *)(di + 1);
988 if (!strncmp("default", name, name_len))
989 found = btrfs_disk_key_objectid(&di->location);
997 static int __list_subvol_search(int fd, struct root_lookup *root_lookup)
1000 struct btrfs_ioctl_search_args args;
1001 struct btrfs_ioctl_search_key *sk = &args.key;
1002 struct btrfs_ioctl_search_header sh;
1003 struct btrfs_root_ref *ref;
1004 struct btrfs_root_item *ri;
1005 unsigned long off = 0;
1014 u8 uuid[BTRFS_UUID_SIZE];
1016 root_lookup_init(root_lookup);
1017 memset(&args, 0, sizeof(args));
1019 /* search in the tree of tree roots */
1023 * set the min and max to backref keys. The search will
1024 * only send back this type of key now.
1026 sk->max_type = BTRFS_ROOT_BACKREF_KEY;
1027 sk->min_type = BTRFS_ROOT_ITEM_KEY;
1029 sk->min_objectid = BTRFS_FIRST_FREE_OBJECTID;
1032 * set all the other params to the max, we'll take any objectid
1035 sk->max_objectid = BTRFS_LAST_FREE_OBJECTID;
1036 sk->max_offset = (u64)-1;
1037 sk->max_transid = (u64)-1;
1039 /* just a big number, doesn't matter much */
1040 sk->nr_items = 4096;
1043 ret = ioctl(fd, BTRFS_IOC_TREE_SEARCH, &args);
1046 /* the ioctl returns the number of item it found in nr_items */
1047 if (sk->nr_items == 0)
1053 * for each item, pull the key out of the header and then
1054 * read the root_ref item it contains
1056 for (i = 0; i < sk->nr_items; i++) {
1057 memcpy(&sh, args.buf + off, sizeof(sh));
1059 if (sh.type == BTRFS_ROOT_BACKREF_KEY) {
1060 ref = (struct btrfs_root_ref *)(args.buf + off);
1061 name_len = btrfs_stack_root_ref_name_len(ref);
1062 name = (char *)(ref + 1);
1063 dir_id = btrfs_stack_root_ref_dirid(ref);
1065 add_root(root_lookup, sh.objectid, sh.offset,
1066 0, 0, dir_id, name, name_len, 0, 0, 0,
1068 } else if (sh.type == BTRFS_ROOT_ITEM_KEY) {
1069 ri = (struct btrfs_root_item *)(args.buf + off);
1070 gen = btrfs_root_generation(ri);
1071 flags = btrfs_root_flags(ri);
1073 sizeof(struct btrfs_root_item_v0)) {
1075 ogen = btrfs_root_otransid(ri);
1076 memcpy(uuid, ri->uuid, BTRFS_UUID_SIZE);
1080 memset(uuid, 0, BTRFS_UUID_SIZE);
1083 add_root(root_lookup, sh.objectid, 0,
1084 sh.offset, flags, 0, NULL, 0, ogen,
1091 * record the mins in sk so we can make sure the
1092 * next search doesn't repeat this root
1094 sk->min_objectid = sh.objectid;
1095 sk->min_type = sh.type;
1096 sk->min_offset = sh.offset;
1098 sk->nr_items = 4096;
1100 if (!sk->min_offset) /* overflow */
1105 if (sk->min_type > BTRFS_ROOT_BACKREF_KEY) {
1106 sk->min_type = BTRFS_ROOT_ITEM_KEY;
1111 if (sk->min_objectid > sk->max_objectid)
1118 static int filter_by_rootid(struct root_info *ri, u64 data)
1120 return ri->root_id == data;
1123 static int filter_snapshot(struct root_info *ri, u64 data)
1125 return !!ri->root_offset;
1128 static int filter_flags(struct root_info *ri, u64 flags)
1130 return ri->flags & flags;
1133 static int filter_gen_more(struct root_info *ri, u64 data)
1135 return ri->gen >= data;
1138 static int filter_gen_less(struct root_info *ri, u64 data)
1140 return ri->gen <= data;
1143 static int filter_gen_equal(struct root_info *ri, u64 data)
1145 return ri->gen == data;
1148 static int filter_cgen_more(struct root_info *ri, u64 data)
1150 return ri->ogen >= data;
1153 static int filter_cgen_less(struct root_info *ri, u64 data)
1155 return ri->ogen <= data;
1158 static int filter_cgen_equal(struct root_info *ri, u64 data)
1160 return ri->ogen == data;
1163 static int filter_topid_equal(struct root_info *ri, u64 data)
1165 return ri->top_id == data;
1168 static int filter_full_path(struct root_info *ri, u64 data)
1170 if (ri->full_path && ri->top_id != data) {
1172 char p[] = "<FS_TREE>";
1173 int add_len = strlen(p);
1174 int len = strlen(ri->full_path);
1176 tmp = malloc(len + add_len + 2);
1178 fprintf(stderr, "memory allocation failed\n");
1181 memcpy(tmp + add_len + 1, ri->full_path, len);
1182 tmp[len + add_len + 1] = '\0';
1184 memcpy(tmp, p, add_len);
1185 free(ri->full_path);
1186 ri->full_path = tmp;
1191 static btrfs_list_filter_func all_filter_funcs[] = {
1192 [BTRFS_LIST_FILTER_ROOTID] = filter_by_rootid,
1193 [BTRFS_LIST_FILTER_SNAPSHOT_ONLY] = filter_snapshot,
1194 [BTRFS_LIST_FILTER_FLAGS] = filter_flags,
1195 [BTRFS_LIST_FILTER_GEN_MORE] = filter_gen_more,
1196 [BTRFS_LIST_FILTER_GEN_LESS] = filter_gen_less,
1197 [BTRFS_LIST_FILTER_GEN_EQUAL] = filter_gen_equal,
1198 [BTRFS_LIST_FILTER_CGEN_MORE] = filter_cgen_more,
1199 [BTRFS_LIST_FILTER_CGEN_LESS] = filter_cgen_less,
1200 [BTRFS_LIST_FILTER_CGEN_EQUAL] = filter_cgen_equal,
1201 [BTRFS_LIST_FILTER_TOPID_EQUAL] = filter_topid_equal,
1202 [BTRFS_LIST_FILTER_FULL_PATH] = filter_full_path,
1205 struct btrfs_list_filter_set *btrfs_list_alloc_filter_set(void)
1207 struct btrfs_list_filter_set *set;
1210 size = sizeof(struct btrfs_list_filter_set) +
1211 BTRFS_LIST_NFILTERS_INCREASE * sizeof(struct btrfs_list_filter);
1214 fprintf(stderr, "memory allocation failed\n");
1218 memset(set, 0, size);
1219 set->total = BTRFS_LIST_NFILTERS_INCREASE;
1224 void btrfs_list_free_filter_set(struct btrfs_list_filter_set *filter_set)
1229 int btrfs_list_setup_filter(struct btrfs_list_filter_set **filter_set,
1230 enum btrfs_list_filter_enum filter, u64 data)
1232 struct btrfs_list_filter_set *set = *filter_set;
1236 BUG_ON(filter >= BTRFS_LIST_FILTER_MAX);
1237 BUG_ON(set->nfilters > set->total);
1239 if (set->nfilters == set->total) {
1240 size = set->total + BTRFS_LIST_NFILTERS_INCREASE;
1241 size = sizeof(*set) + size * sizeof(struct btrfs_list_filter);
1242 set = realloc(set, size);
1244 fprintf(stderr, "memory allocation failed\n");
1248 memset(&set->filters[set->total], 0,
1249 BTRFS_LIST_NFILTERS_INCREASE *
1250 sizeof(struct btrfs_list_filter));
1251 set->total += BTRFS_LIST_NFILTERS_INCREASE;
1255 BUG_ON(set->filters[set->nfilters].filter_func);
1257 set->filters[set->nfilters].filter_func = all_filter_funcs[filter];
1258 set->filters[set->nfilters].data = data;
1263 static int filter_root(struct root_info *ri,
1264 struct btrfs_list_filter_set *set)
1268 if (!set || !set->nfilters)
1271 for (i = 0; i < set->nfilters; i++) {
1272 if (!set->filters[i].filter_func)
1274 ret = set->filters[i].filter_func(ri, set->filters[i].data);
1281 static void __filter_and_sort_subvol(struct root_lookup *all_subvols,
1282 struct root_lookup *sort_tree,
1283 struct btrfs_list_filter_set *filter_set,
1284 struct btrfs_list_comparer_set *comp_set,
1288 struct root_info *entry;
1290 u64 top_id = btrfs_list_get_path_rootid(fd);
1292 root_lookup_init(sort_tree);
1294 n = rb_last(&all_subvols->root);
1296 entry = rb_entry(n, struct root_info, rb_node);
1298 resolve_root(all_subvols, entry, top_id);
1299 ret = filter_root(entry, filter_set);
1301 sort_tree_insert(sort_tree, entry, comp_set);
1306 static int __list_subvol_fill_paths(int fd, struct root_lookup *root_lookup)
1310 n = rb_first(&root_lookup->root);
1312 struct root_info *entry;
1314 entry = rb_entry(n, struct root_info, rb_node);
1315 ret = lookup_ino_path(fd, entry);
1324 static void print_subvolume_column(struct root_info *subv,
1325 enum btrfs_list_column_enum column)
1330 BUG_ON(column >= BTRFS_LIST_ALL || column < 0);
1333 case BTRFS_LIST_OBJECTID:
1334 printf("%llu", subv->root_id);
1336 case BTRFS_LIST_GENERATION:
1337 printf("%llu", subv->gen);
1339 case BTRFS_LIST_OGENERATION:
1340 printf("%llu", subv->ogen);
1342 case BTRFS_LIST_PARENT:
1343 printf("%llu", subv->ref_tree);
1345 case BTRFS_LIST_TOP_LEVEL:
1346 printf("%llu", subv->top_id);
1348 case BTRFS_LIST_OTIME:
1350 strftime(tstr, 256, "%Y-%m-%d %X",
1351 localtime(&subv->otime));
1356 case BTRFS_LIST_UUID:
1357 if (uuid_is_null(subv->uuid))
1358 strcpy(uuidparse, "-");
1360 uuid_unparse(subv->uuid, uuidparse);
1361 printf("%s", uuidparse);
1363 case BTRFS_LIST_PATH:
1364 BUG_ON(!subv->full_path);
1365 printf("%s", subv->full_path);
1372 static void print_single_volume_info_table(struct root_info *subv)
1376 for (i = 0; i < BTRFS_LIST_ALL; i++) {
1377 if (!btrfs_list_columns[i].need_print)
1380 print_subvolume_column(subv, i);
1382 if (i != BTRFS_LIST_PATH)
1385 if (i == BTRFS_LIST_TOP_LEVEL)
1391 static void print_single_volume_info_default(struct root_info *subv)
1395 for (i = 0; i < BTRFS_LIST_ALL; i++) {
1396 if (!btrfs_list_columns[i].need_print)
1399 printf("%s ", btrfs_list_columns[i].name);
1400 print_subvolume_column(subv, i);
1402 if (i != BTRFS_LIST_PATH)
1408 static void print_all_volume_info_tab_head()
1414 for (i = 0; i < BTRFS_LIST_ALL; i++) {
1415 if (btrfs_list_columns[i].need_print)
1416 printf("%s\t", btrfs_list_columns[i].name);
1418 if (i == BTRFS_LIST_ALL-1)
1422 for (i = 0; i < BTRFS_LIST_ALL; i++) {
1423 memset(barrier, 0, sizeof(barrier));
1425 if (btrfs_list_columns[i].need_print) {
1426 len = strlen(btrfs_list_columns[i].name);
1428 strcat(barrier, "-");
1430 printf("%s\t", barrier);
1432 if (i == BTRFS_LIST_ALL-1)
1437 static void print_all_volume_info(struct root_lookup *sorted_tree,
1441 struct root_info *entry;
1444 print_all_volume_info_tab_head();
1446 n = rb_first(&sorted_tree->root);
1448 entry = rb_entry(n, struct root_info, sort_node);
1450 print_single_volume_info_table(entry);
1452 print_single_volume_info_default(entry);
1457 int btrfs_list_subvols(int fd, struct btrfs_list_filter_set *filter_set,
1458 struct btrfs_list_comparer_set *comp_set,
1461 struct root_lookup root_lookup;
1462 struct root_lookup root_sort;
1465 ret = __list_subvol_search(fd, &root_lookup);
1467 fprintf(stderr, "ERROR: can't perform the search - %s\n",
1473 * now we have an rbtree full of root_info objects, but we need to fill
1474 * in their path names within the subvol that is referencing each one.
1476 ret = __list_subvol_fill_paths(fd, &root_lookup);
1480 __filter_and_sort_subvol(&root_lookup, &root_sort, filter_set,
1483 print_all_volume_info(&root_sort, is_tab_result);
1484 __free_all_subvolumn(&root_lookup);
1488 static int print_one_extent(int fd, struct btrfs_ioctl_search_header *sh,
1489 struct btrfs_file_extent_item *item,
1490 u64 found_gen, u64 *cache_dirid,
1491 char **cache_dir_name, u64 *cache_ino,
1492 char **cache_full_name)
1496 u64 disk_offset = 0;
1502 if (sh->objectid == *cache_ino) {
1503 name = *cache_full_name;
1504 } else if (*cache_full_name) {
1505 free(*cache_full_name);
1506 *cache_full_name = NULL;
1509 name = ino_resolve(fd, sh->objectid, cache_dirid,
1511 *cache_full_name = name;
1512 *cache_ino = sh->objectid;
1517 type = btrfs_stack_file_extent_type(item);
1518 compressed = btrfs_stack_file_extent_compression(item);
1520 if (type == BTRFS_FILE_EXTENT_REG ||
1521 type == BTRFS_FILE_EXTENT_PREALLOC) {
1522 disk_start = btrfs_stack_file_extent_disk_bytenr(item);
1523 disk_offset = btrfs_stack_file_extent_offset(item);
1524 len = btrfs_stack_file_extent_num_bytes(item);
1525 } else if (type == BTRFS_FILE_EXTENT_INLINE) {
1528 len = btrfs_stack_file_extent_ram_bytes(item);
1530 printf("unhandled extent type %d for inode %llu "
1531 "file offset %llu gen %llu\n",
1533 (unsigned long long)sh->objectid,
1534 (unsigned long long)sh->offset,
1535 (unsigned long long)found_gen);
1539 printf("inode %llu file offset %llu len %llu disk start %llu "
1540 "offset %llu gen %llu flags ",
1541 (unsigned long long)sh->objectid,
1542 (unsigned long long)sh->offset,
1543 (unsigned long long)len,
1544 (unsigned long long)disk_start,
1545 (unsigned long long)disk_offset,
1546 (unsigned long long)found_gen);
1552 if (type == BTRFS_FILE_EXTENT_PREALLOC) {
1553 printf("%sPREALLOC", flags ? "|" : "");
1556 if (type == BTRFS_FILE_EXTENT_INLINE) {
1557 printf("%sINLINE", flags ? "|" : "");
1563 printf(" %s\n", name);
1567 int btrfs_list_find_updated_files(int fd, u64 root_id, u64 oldest_gen)
1570 struct btrfs_ioctl_search_args args;
1571 struct btrfs_ioctl_search_key *sk = &args.key;
1572 struct btrfs_ioctl_search_header sh;
1573 struct btrfs_file_extent_item *item;
1574 unsigned long off = 0;
1579 u64 cache_dirid = 0;
1581 char *cache_dir_name = NULL;
1582 char *cache_full_name = NULL;
1583 struct btrfs_file_extent_item backup;
1585 memset(&backup, 0, sizeof(backup));
1586 memset(&args, 0, sizeof(args));
1588 sk->tree_id = root_id;
1591 * set all the other params to the max, we'll take any objectid
1594 sk->max_objectid = (u64)-1;
1595 sk->max_offset = (u64)-1;
1596 sk->max_transid = (u64)-1;
1597 sk->max_type = BTRFS_EXTENT_DATA_KEY;
1598 sk->min_transid = oldest_gen;
1599 /* just a big number, doesn't matter much */
1600 sk->nr_items = 4096;
1602 max_found = find_root_gen(fd);
1604 ret = ioctl(fd, BTRFS_IOC_TREE_SEARCH, &args);
1607 fprintf(stderr, "ERROR: can't perform the search- %s\n",
1611 /* the ioctl returns the number of item it found in nr_items */
1612 if (sk->nr_items == 0)
1618 * for each item, pull the key out of the header and then
1619 * read the root_ref item it contains
1621 for (i = 0; i < sk->nr_items; i++) {
1622 memcpy(&sh, args.buf + off, sizeof(sh));
1626 * just in case the item was too big, pass something other
1632 item = (struct btrfs_file_extent_item *)(args.buf +
1634 found_gen = btrfs_stack_file_extent_generation(item);
1635 if (sh.type == BTRFS_EXTENT_DATA_KEY &&
1636 found_gen >= oldest_gen) {
1637 print_one_extent(fd, &sh, item, found_gen,
1638 &cache_dirid, &cache_dir_name,
1639 &cache_ino, &cache_full_name);
1644 * record the mins in sk so we can make sure the
1645 * next search doesn't repeat this root
1647 sk->min_objectid = sh.objectid;
1648 sk->min_offset = sh.offset;
1649 sk->min_type = sh.type;
1651 sk->nr_items = 4096;
1652 if (sk->min_offset < (u64)-1)
1654 else if (sk->min_objectid < (u64)-1) {
1661 free(cache_dir_name);
1662 free(cache_full_name);
1663 printf("transid marker was %llu\n", (unsigned long long)max_found);
1667 char *btrfs_list_path_for_root(int fd, u64 root)
1669 struct root_lookup root_lookup;
1671 char *ret_path = NULL;
1673 u64 top_id = btrfs_list_get_path_rootid(fd);
1675 ret = __list_subvol_search(fd, &root_lookup);
1677 return ERR_PTR(ret);
1679 ret = __list_subvol_fill_paths(fd, &root_lookup);
1681 return ERR_PTR(ret);
1683 n = rb_last(&root_lookup.root);
1685 struct root_info *entry;
1687 entry = rb_entry(n, struct root_info, rb_node);
1688 resolve_root(&root_lookup, entry, top_id);
1689 if (entry->root_id == root) {
1690 ret_path = entry->full_path;
1691 entry->full_path = NULL;
1696 __free_all_subvolumn(&root_lookup);
1701 int btrfs_list_parse_sort_string(char *optarg,
1702 struct btrfs_list_comparer_set **comps)
1710 while ((p = strtok(optarg, ",")) != NULL) {
1712 ptr_argv = all_sort_items;
1715 if (strcmp(*ptr_argv, p) == 0) {
1720 if (strcmp(*ptr_argv, p) == 0) {
1737 } else if (*p == '-') {
1743 what_to_sort = btrfs_list_get_sort_item(p);
1744 btrfs_list_setup_comparer(comps, what_to_sort, order);
1753 * This function is used to parse the argument of filter condition.
1755 * type is the filter object.
1757 int btrfs_list_parse_filter_string(char *optarg,
1758 struct btrfs_list_filter_set **filters,
1759 enum btrfs_list_filter_enum type)
1763 char *ptr_parse_end = NULL;
1764 char *ptr_optarg_end = optarg + strlen(optarg);
1766 switch (*(optarg++)) {
1768 arg = (u64)strtol(optarg, &ptr_parse_end, 10);
1770 if (ptr_parse_end != ptr_optarg_end)
1773 btrfs_list_setup_filter(filters, type, arg);
1776 arg = (u64)strtoll(optarg, &ptr_parse_end, 10);
1778 if (ptr_parse_end != ptr_optarg_end)
1781 btrfs_list_setup_filter(filters, type, arg);
1785 arg = (u64)strtoll(optarg, &ptr_parse_end, 10);
1787 if (ptr_parse_end != ptr_optarg_end)
1789 btrfs_list_setup_filter(filters, type, arg);
1796 u64 btrfs_list_get_path_rootid(int fd)
1799 struct btrfs_ioctl_ino_lookup_args args;
1801 memset(&args, 0, sizeof(args));
1802 args.objectid = BTRFS_FIRST_FREE_OBJECTID;
1804 ret = ioctl(fd, BTRFS_IOC_INO_LOOKUP, &args);
1807 "ERROR: can't perform the search -%s\n",