btrfs-progs: mkfs: fix regression preventing --rootdir to create file
[btrfs-progs-unstable/devel.git] / btrfs-list.c
blobb6d7658522207aee33c34c195b3d32364001be21
1 /*
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.
19 #include <sys/ioctl.h>
20 #include <sys/mount.h>
21 #include <stdio.h>
22 #include <stdlib.h>
23 #include <sys/types.h>
24 #include <sys/stat.h>
25 #include <fcntl.h>
26 #include <unistd.h>
27 #include <dirent.h>
28 #include <libgen.h>
29 #include "ctree.h"
30 #include "transaction.h"
31 #include "utils.h"
32 #include "ioctl.h"
33 #include <uuid/uuid.h>
34 #include "btrfs-list.h"
35 #include "rbtree-utils.h"
37 #define BTRFS_LIST_NFILTERS_INCREASE (2 * BTRFS_LIST_FILTER_MAX)
38 #define BTRFS_LIST_NCOMPS_INCREASE (2 * BTRFS_LIST_COMP_MAX)
40 /* we store all the roots we find in an rbtree so that we can
41 * search for them later.
43 struct root_lookup {
44 struct rb_root root;
47 static struct {
48 char *name;
49 char *column_name;
50 int need_print;
51 } btrfs_list_columns[] = {
53 .name = "ID",
54 .column_name = "ID",
55 .need_print = 0,
58 .name = "gen",
59 .column_name = "Gen",
60 .need_print = 0,
63 .name = "cgen",
64 .column_name = "CGen",
65 .need_print = 0,
68 .name = "parent",
69 .column_name = "Parent",
70 .need_print = 0,
73 .name = "top level",
74 .column_name = "Top Level",
75 .need_print = 0,
78 .name = "otime",
79 .column_name = "OTime",
80 .need_print = 0,
83 .name = "parent_uuid",
84 .column_name = "Parent UUID",
85 .need_print = 0,
88 .name = "received_uuid",
89 .column_name = "Received UUID",
90 .need_print = 0,
93 .name = "uuid",
94 .column_name = "UUID",
95 .need_print = 0,
98 .name = "path",
99 .column_name = "Path",
100 .need_print = 0,
103 .name = NULL,
104 .column_name = NULL,
105 .need_print = 0,
109 static btrfs_list_filter_func all_filter_funcs[];
110 static btrfs_list_comp_func all_comp_funcs[];
112 void btrfs_list_setup_print_column(enum btrfs_list_column_enum column)
114 int i;
116 ASSERT(0 <= column && column <= BTRFS_LIST_ALL);
118 if (column < BTRFS_LIST_ALL) {
119 btrfs_list_columns[column].need_print = 1;
120 return;
123 for (i = 0; i < BTRFS_LIST_ALL; i++)
124 btrfs_list_columns[i].need_print = 1;
127 static int comp_entry_with_rootid(struct root_info *entry1,
128 struct root_info *entry2,
129 int is_descending)
131 int ret;
133 if (entry1->root_id > entry2->root_id)
134 ret = 1;
135 else if (entry1->root_id < entry2->root_id)
136 ret = -1;
137 else
138 ret = 0;
140 return is_descending ? -ret : ret;
143 static int comp_entry_with_gen(struct root_info *entry1,
144 struct root_info *entry2,
145 int is_descending)
147 int ret;
149 if (entry1->gen > entry2->gen)
150 ret = 1;
151 else if (entry1->gen < entry2->gen)
152 ret = -1;
153 else
154 ret = 0;
156 return is_descending ? -ret : ret;
159 static int comp_entry_with_ogen(struct root_info *entry1,
160 struct root_info *entry2,
161 int is_descending)
163 int ret;
165 if (entry1->ogen > entry2->ogen)
166 ret = 1;
167 else if (entry1->ogen < entry2->ogen)
168 ret = -1;
169 else
170 ret = 0;
172 return is_descending ? -ret : ret;
175 static int comp_entry_with_path(struct root_info *entry1,
176 struct root_info *entry2,
177 int is_descending)
179 int ret;
181 if (strcmp(entry1->full_path, entry2->full_path) > 0)
182 ret = 1;
183 else if (strcmp(entry1->full_path, entry2->full_path) < 0)
184 ret = -1;
185 else
186 ret = 0;
188 return is_descending ? -ret : ret;
191 static btrfs_list_comp_func all_comp_funcs[] = {
192 [BTRFS_LIST_COMP_ROOTID] = comp_entry_with_rootid,
193 [BTRFS_LIST_COMP_OGEN] = comp_entry_with_ogen,
194 [BTRFS_LIST_COMP_GEN] = comp_entry_with_gen,
195 [BTRFS_LIST_COMP_PATH] = comp_entry_with_path,
198 static char *all_sort_items[] = {
199 [BTRFS_LIST_COMP_ROOTID] = "rootid",
200 [BTRFS_LIST_COMP_OGEN] = "ogen",
201 [BTRFS_LIST_COMP_GEN] = "gen",
202 [BTRFS_LIST_COMP_PATH] = "path",
203 [BTRFS_LIST_COMP_MAX] = NULL,
206 static int btrfs_list_get_sort_item(char *sort_name)
208 int i;
210 for (i = 0; i < BTRFS_LIST_COMP_MAX; i++) {
211 if (strcmp(sort_name, all_sort_items[i]) == 0)
212 return i;
214 return -1;
217 struct btrfs_list_comparer_set *btrfs_list_alloc_comparer_set(void)
219 struct btrfs_list_comparer_set *set;
220 int size;
222 size = sizeof(struct btrfs_list_comparer_set) +
223 BTRFS_LIST_NCOMPS_INCREASE * sizeof(struct btrfs_list_comparer);
224 set = calloc(1, size);
225 if (!set) {
226 fprintf(stderr, "memory allocation failed\n");
227 exit(1);
230 set->total = BTRFS_LIST_NCOMPS_INCREASE;
232 return set;
235 static int btrfs_list_setup_comparer(struct btrfs_list_comparer_set **comp_set,
236 enum btrfs_list_comp_enum comparer, int is_descending)
238 struct btrfs_list_comparer_set *set = *comp_set;
239 int size;
241 ASSERT(set != NULL);
242 ASSERT(comparer < BTRFS_LIST_COMP_MAX);
243 ASSERT(set->ncomps <= set->total);
245 if (set->ncomps == set->total) {
246 void *tmp;
248 size = set->total + BTRFS_LIST_NCOMPS_INCREASE;
249 size = sizeof(*set) + size * sizeof(struct btrfs_list_comparer);
250 tmp = set;
251 set = realloc(set, size);
252 if (!set) {
253 fprintf(stderr, "memory allocation failed\n");
254 free(tmp);
255 exit(1);
258 memset(&set->comps[set->total], 0,
259 BTRFS_LIST_NCOMPS_INCREASE *
260 sizeof(struct btrfs_list_comparer));
261 set->total += BTRFS_LIST_NCOMPS_INCREASE;
262 *comp_set = set;
265 ASSERT(set->comps[set->ncomps].comp_func == NULL);
267 set->comps[set->ncomps].comp_func = all_comp_funcs[comparer];
268 set->comps[set->ncomps].is_descending = is_descending;
269 set->ncomps++;
270 return 0;
273 static int sort_comp(struct root_info *entry1, struct root_info *entry2,
274 struct btrfs_list_comparer_set *set)
276 int rootid_compared = 0;
277 int i, ret = 0;
279 if (!set || !set->ncomps)
280 return comp_entry_with_rootid(entry1, entry2, 0);
282 for (i = 0; i < set->ncomps; i++) {
283 if (!set->comps[i].comp_func)
284 break;
286 ret = set->comps[i].comp_func(entry1, entry2,
287 set->comps[i].is_descending);
288 if (ret)
289 return ret;
291 if (set->comps[i].comp_func == comp_entry_with_rootid)
292 rootid_compared = 1;
295 if (!rootid_compared)
296 ret = comp_entry_with_rootid(entry1, entry2, 0);
298 return ret;
301 static int sort_tree_insert(struct root_lookup *sort_tree,
302 struct root_info *ins,
303 struct btrfs_list_comparer_set *comp_set)
305 struct rb_node **p = &sort_tree->root.rb_node;
306 struct rb_node *parent = NULL;
307 struct root_info *curr;
308 int ret;
310 while (*p) {
311 parent = *p;
312 curr = rb_entry(parent, struct root_info, sort_node);
314 ret = sort_comp(ins, curr, comp_set);
315 if (ret < 0)
316 p = &(*p)->rb_left;
317 else if (ret > 0)
318 p = &(*p)->rb_right;
319 else
320 return -EEXIST;
323 rb_link_node(&ins->sort_node, parent, p);
324 rb_insert_color(&ins->sort_node, &sort_tree->root);
325 return 0;
329 * insert a new root into the tree. returns the existing root entry
330 * if one is already there. Both root_id and ref_tree are used
331 * as the key
333 static int root_tree_insert(struct root_lookup *root_tree,
334 struct root_info *ins)
336 struct rb_node **p = &root_tree->root.rb_node;
337 struct rb_node * parent = NULL;
338 struct root_info *curr;
339 int ret;
341 while(*p) {
342 parent = *p;
343 curr = rb_entry(parent, struct root_info, rb_node);
345 ret = comp_entry_with_rootid(ins, curr, 0);
346 if (ret < 0)
347 p = &(*p)->rb_left;
348 else if (ret > 0)
349 p = &(*p)->rb_right;
350 else
351 return -EEXIST;
354 rb_link_node(&ins->rb_node, parent, p);
355 rb_insert_color(&ins->rb_node, &root_tree->root);
356 return 0;
360 * find a given root id in the tree. We return the smallest one,
361 * rb_next can be used to move forward looking for more if required
363 static struct root_info *root_tree_search(struct root_lookup *root_tree,
364 u64 root_id)
366 struct rb_node *n = root_tree->root.rb_node;
367 struct root_info *entry;
368 struct root_info tmp;
369 int ret;
371 tmp.root_id = root_id;
373 while(n) {
374 entry = rb_entry(n, struct root_info, rb_node);
376 ret = comp_entry_with_rootid(&tmp, entry, 0);
377 if (ret < 0)
378 n = n->rb_left;
379 else if (ret > 0)
380 n = n->rb_right;
381 else
382 return entry;
384 return NULL;
387 static int update_root(struct root_lookup *root_lookup,
388 u64 root_id, u64 ref_tree, u64 root_offset, u64 flags,
389 u64 dir_id, char *name, int name_len, u64 ogen, u64 gen,
390 time_t otime, u8 *uuid, u8 *puuid, u8 *ruuid)
392 struct root_info *ri;
394 ri = root_tree_search(root_lookup, root_id);
395 if (!ri || ri->root_id != root_id)
396 return -ENOENT;
397 if (name && name_len > 0) {
398 free(ri->name);
400 ri->name = malloc(name_len + 1);
401 if (!ri->name) {
402 fprintf(stderr, "memory allocation failed\n");
403 exit(1);
405 strncpy(ri->name, name, name_len);
406 ri->name[name_len] = 0;
408 if (ref_tree)
409 ri->ref_tree = ref_tree;
410 if (root_offset)
411 ri->root_offset = root_offset;
412 if (flags)
413 ri->flags = flags;
414 if (dir_id)
415 ri->dir_id = dir_id;
416 if (gen)
417 ri->gen = gen;
418 if (ogen)
419 ri->ogen = ogen;
420 if (!ri->ogen && root_offset)
421 ri->ogen = root_offset;
422 if (otime)
423 ri->otime = otime;
424 if (uuid)
425 memcpy(&ri->uuid, uuid, BTRFS_UUID_SIZE);
426 if (puuid)
427 memcpy(&ri->puuid, puuid, BTRFS_UUID_SIZE);
428 if (ruuid)
429 memcpy(&ri->ruuid, ruuid, BTRFS_UUID_SIZE);
431 return 0;
435 * add_root - update the existed root, or allocate a new root and insert it
436 * into the lookup tree.
437 * root_id: object id of the root
438 * ref_tree: object id of the referring root.
439 * root_offset: offset value of the root'key
440 * dir_id: inode id of the directory in ref_tree where this root can be found.
441 * name: the name of root_id in that directory
442 * name_len: the length of name
443 * ogen: the original generation of the root
444 * gen: the current generation of the root
445 * otime: the original time (creation time) of the root
446 * uuid: uuid of the root
447 * puuid: uuid of the root parent if any
448 * ruuid: uuid of the received subvol, if any
450 static int add_root(struct root_lookup *root_lookup,
451 u64 root_id, u64 ref_tree, u64 root_offset, u64 flags,
452 u64 dir_id, char *name, int name_len, u64 ogen, u64 gen,
453 time_t otime, u8 *uuid, u8 *puuid, u8 *ruuid)
455 struct root_info *ri;
456 int ret;
458 ret = update_root(root_lookup, root_id, ref_tree, root_offset, flags,
459 dir_id, name, name_len, ogen, gen, otime,
460 uuid, puuid, ruuid);
461 if (!ret)
462 return 0;
464 ri = calloc(1, sizeof(*ri));
465 if (!ri) {
466 printf("memory allocation failed\n");
467 exit(1);
469 ri->root_id = root_id;
471 if (name && name_len > 0) {
472 ri->name = malloc(name_len + 1);
473 if (!ri->name) {
474 fprintf(stderr, "memory allocation failed\n");
475 exit(1);
477 strncpy(ri->name, name, name_len);
478 ri->name[name_len] = 0;
480 if (ref_tree)
481 ri->ref_tree = ref_tree;
482 if (dir_id)
483 ri->dir_id = dir_id;
484 if (root_offset)
485 ri->root_offset = root_offset;
486 if (flags)
487 ri->flags = flags;
488 if (gen)
489 ri->gen = gen;
490 if (ogen)
491 ri->ogen = ogen;
492 if (!ri->ogen && root_offset)
493 ri->ogen = root_offset;
494 if (otime)
495 ri->otime = otime;
497 if (uuid)
498 memcpy(&ri->uuid, uuid, BTRFS_UUID_SIZE);
500 if (puuid)
501 memcpy(&ri->puuid, puuid, BTRFS_UUID_SIZE);
503 if (ruuid)
504 memcpy(&ri->ruuid, ruuid, BTRFS_UUID_SIZE);
506 ret = root_tree_insert(root_lookup, ri);
507 if (ret < 0) {
508 error("failed to insert subvolume %llu to tree: %s",
509 (unsigned long long)root_id, strerror(-ret));
510 exit(1);
512 return 0;
516 * Simplified add_root for back references, omits the uuid and original info
517 * parameters, root offset and flags.
519 static int add_root_backref(struct root_lookup *root_lookup, u64 root_id,
520 u64 ref_tree, u64 dir_id, char *name, int name_len)
522 return add_root(root_lookup, root_id, ref_tree, 0, 0, dir_id, name,
523 name_len, 0, 0, 0, NULL, NULL, NULL);
527 static void free_root_info(struct rb_node *node)
529 struct root_info *ri;
531 ri = rb_entry(node, struct root_info, rb_node);
532 free(ri->name);
533 free(ri->path);
534 free(ri->full_path);
535 free(ri);
539 * for a given root_info, search through the root_lookup tree to construct
540 * the full path name to it.
542 * This can't be called until all the root_info->path fields are filled
543 * in by lookup_ino_path
545 static int resolve_root(struct root_lookup *rl, struct root_info *ri,
546 u64 top_id)
548 char *full_path = NULL;
549 int len = 0;
550 struct root_info *found;
553 * we go backwards from the root_info object and add pathnames
554 * from parent directories as we go.
556 found = ri;
557 while (1) {
558 char *tmp;
559 u64 next;
560 int add_len;
563 * ref_tree = 0 indicates the subvolume
564 * has been deleted.
566 if (!found->ref_tree) {
567 free(full_path);
568 return -ENOENT;
571 add_len = strlen(found->path);
573 if (full_path) {
574 /* room for / and for null */
575 tmp = malloc(add_len + 2 + len);
576 if (!tmp) {
577 perror("malloc failed");
578 exit(1);
580 memcpy(tmp + add_len + 1, full_path, len);
581 tmp[add_len] = '/';
582 memcpy(tmp, found->path, add_len);
583 tmp [add_len + len + 1] = '\0';
584 free(full_path);
585 full_path = tmp;
586 len += add_len + 1;
587 } else {
588 full_path = strdup(found->path);
589 len = add_len;
591 if (!ri->top_id)
592 ri->top_id = found->ref_tree;
594 next = found->ref_tree;
595 if (next == top_id)
596 break;
598 * if the ref_tree = BTRFS_FS_TREE_OBJECTID,
599 * we are at the top
601 if (next == BTRFS_FS_TREE_OBJECTID)
602 break;
604 * if the ref_tree wasn't in our tree of roots, the
605 * subvolume was deleted.
607 found = root_tree_search(rl, next);
608 if (!found) {
609 free(full_path);
610 return -ENOENT;
614 ri->full_path = full_path;
616 return 0;
620 * for a single root_info, ask the kernel to give us a path name
621 * inside it's ref_root for the dir_id where it lives.
623 * This fills in root_info->path with the path to the directory and and
624 * appends this root's name.
626 static int lookup_ino_path(int fd, struct root_info *ri)
628 struct btrfs_ioctl_ino_lookup_args args;
629 int ret;
631 if (ri->path)
632 return 0;
634 if (!ri->ref_tree)
635 return -ENOENT;
637 memset(&args, 0, sizeof(args));
638 args.treeid = ri->ref_tree;
639 args.objectid = ri->dir_id;
641 ret = ioctl(fd, BTRFS_IOC_INO_LOOKUP, &args);
642 if (ret < 0) {
643 if (errno == ENOENT) {
644 ri->ref_tree = 0;
645 return -ENOENT;
647 error("failed to lookup path for root %llu: %s",
648 (unsigned long long)ri->ref_tree, strerror(errno));
649 return ret;
652 if (args.name[0]) {
654 * we're in a subdirectory of ref_tree, the kernel ioctl
655 * puts a / in there for us
657 ri->path = malloc(strlen(ri->name) + strlen(args.name) + 1);
658 if (!ri->path) {
659 perror("malloc failed");
660 exit(1);
662 strcpy(ri->path, args.name);
663 strcat(ri->path, ri->name);
664 } else {
665 /* we're at the root of ref_tree */
666 ri->path = strdup(ri->name);
667 if (!ri->path) {
668 perror("strdup failed");
669 exit(1);
672 return 0;
675 /* finding the generation for a given path is a two step process.
676 * First we use the inode lookup routine to find out the root id
678 * Then we use the tree search ioctl to scan all the root items for a
679 * given root id and spit out the latest generation we can find
681 static u64 find_root_gen(int fd)
683 struct btrfs_ioctl_ino_lookup_args ino_args;
684 int ret;
685 struct btrfs_ioctl_search_args args;
686 struct btrfs_ioctl_search_key *sk = &args.key;
687 struct btrfs_ioctl_search_header sh;
688 unsigned long off = 0;
689 u64 max_found = 0;
690 int i;
692 memset(&ino_args, 0, sizeof(ino_args));
693 ino_args.objectid = BTRFS_FIRST_FREE_OBJECTID;
695 /* this ioctl fills in ino_args->treeid */
696 ret = ioctl(fd, BTRFS_IOC_INO_LOOKUP, &ino_args);
697 if (ret < 0) {
698 error("failed to lookup path for dirid %llu: %s",
699 (unsigned long long)BTRFS_FIRST_FREE_OBJECTID,
700 strerror(errno));
701 return 0;
704 memset(&args, 0, sizeof(args));
706 sk->tree_id = BTRFS_ROOT_TREE_OBJECTID;
709 * there may be more than one ROOT_ITEM key if there are
710 * snapshots pending deletion, we have to loop through
711 * them.
713 sk->min_objectid = ino_args.treeid;
714 sk->max_objectid = ino_args.treeid;
715 sk->max_type = BTRFS_ROOT_ITEM_KEY;
716 sk->min_type = BTRFS_ROOT_ITEM_KEY;
717 sk->max_offset = (u64)-1;
718 sk->max_transid = (u64)-1;
719 sk->nr_items = 4096;
721 while (1) {
722 ret = ioctl(fd, BTRFS_IOC_TREE_SEARCH, &args);
723 if (ret < 0) {
724 error("can't perform the search: %s", strerror(errno));
725 return 0;
727 /* the ioctl returns the number of item it found in nr_items */
728 if (sk->nr_items == 0)
729 break;
731 off = 0;
732 for (i = 0; i < sk->nr_items; i++) {
733 struct btrfs_root_item *item;
735 memcpy(&sh, args.buf + off, sizeof(sh));
736 off += sizeof(sh);
737 item = (struct btrfs_root_item *)(args.buf + off);
738 off += sh.len;
740 sk->min_objectid = sh.objectid;
741 sk->min_type = sh.type;
742 sk->min_offset = sh.offset;
744 if (sh.objectid > ino_args.treeid)
745 break;
747 if (sh.objectid == ino_args.treeid &&
748 sh.type == BTRFS_ROOT_ITEM_KEY) {
749 max_found = max(max_found,
750 btrfs_root_generation(item));
753 if (sk->min_offset < (u64)-1)
754 sk->min_offset++;
755 else
756 break;
758 if (sk->min_type != BTRFS_ROOT_ITEM_KEY)
759 break;
760 if (sk->min_objectid != ino_args.treeid)
761 break;
763 return max_found;
766 /* pass in a directory id and this will return
767 * the full path of the parent directory inside its
768 * subvolume root.
770 * It may return NULL if it is in the root, or an ERR_PTR if things
771 * go badly.
773 static char *__ino_resolve(int fd, u64 dirid)
775 struct btrfs_ioctl_ino_lookup_args args;
776 int ret;
777 char *full;
779 memset(&args, 0, sizeof(args));
780 args.objectid = dirid;
782 ret = ioctl(fd, BTRFS_IOC_INO_LOOKUP, &args);
783 if (ret < 0) {
784 error("failed to lookup path for dirid %llu: %s",
785 (unsigned long long)dirid, strerror(errno));
786 return ERR_PTR(ret);
789 if (args.name[0]) {
791 * we're in a subdirectory of ref_tree, the kernel ioctl
792 * puts a / in there for us
794 full = strdup(args.name);
795 if (!full) {
796 perror("malloc failed");
797 return ERR_PTR(-ENOMEM);
799 } else {
800 /* we're at the root of ref_tree */
801 full = NULL;
803 return full;
807 * simple string builder, returning a new string with both
808 * dirid and name
810 static char *build_name(const char *dirid, const char *name)
812 char *full;
814 if (!dirid)
815 return strdup(name);
817 full = malloc(strlen(dirid) + strlen(name) + 1);
818 if (!full)
819 return NULL;
820 strcpy(full, dirid);
821 strcat(full, name);
822 return full;
826 * given an inode number, this returns the full path name inside the subvolume
827 * to that file/directory. cache_dirid and cache_name are used to
828 * cache the results so we can avoid tree searches if a later call goes
829 * to the same directory or file name
831 static char *ino_resolve(int fd, u64 ino, u64 *cache_dirid, char **cache_name)
834 u64 dirid;
835 char *dirname;
836 char *name;
837 char *full;
838 int ret;
839 struct btrfs_ioctl_search_args args;
840 struct btrfs_ioctl_search_key *sk = &args.key;
841 struct btrfs_ioctl_search_header *sh;
842 unsigned long off = 0;
843 int namelen;
845 memset(&args, 0, sizeof(args));
847 sk->tree_id = 0;
850 * step one, we search for the inode back ref. We just use the first
851 * one
853 sk->min_objectid = ino;
854 sk->max_objectid = ino;
855 sk->max_type = BTRFS_INODE_REF_KEY;
856 sk->max_offset = (u64)-1;
857 sk->min_type = BTRFS_INODE_REF_KEY;
858 sk->max_transid = (u64)-1;
859 sk->nr_items = 1;
861 ret = ioctl(fd, BTRFS_IOC_TREE_SEARCH, &args);
862 if (ret < 0) {
863 error("can't perform the search: %s", strerror(errno));
864 return NULL;
866 /* the ioctl returns the number of item it found in nr_items */
867 if (sk->nr_items == 0)
868 return NULL;
870 off = 0;
871 sh = (struct btrfs_ioctl_search_header *)(args.buf + off);
873 if (btrfs_search_header_type(sh) == BTRFS_INODE_REF_KEY) {
874 struct btrfs_inode_ref *ref;
875 dirid = btrfs_search_header_offset(sh);
877 ref = (struct btrfs_inode_ref *)(sh + 1);
878 namelen = btrfs_stack_inode_ref_name_len(ref);
880 name = (char *)(ref + 1);
881 name = strndup(name, namelen);
883 /* use our cached value */
884 if (dirid == *cache_dirid && *cache_name) {
885 dirname = *cache_name;
886 goto build;
888 } else {
889 return NULL;
892 * the inode backref gives us the file name and the parent directory id.
893 * From here we use __ino_resolve to get the path to the parent
895 dirname = __ino_resolve(fd, dirid);
896 build:
897 full = build_name(dirname, name);
898 if (*cache_name && dirname != *cache_name)
899 free(*cache_name);
901 *cache_name = dirname;
902 *cache_dirid = dirid;
903 free(name);
905 return full;
908 int btrfs_list_get_default_subvolume(int fd, u64 *default_id)
910 struct btrfs_ioctl_search_args args;
911 struct btrfs_ioctl_search_key *sk = &args.key;
912 struct btrfs_ioctl_search_header *sh;
913 u64 found = 0;
914 int ret;
916 memset(&args, 0, sizeof(args));
919 * search for a dir item with a name 'default' in the tree of
920 * tree roots, it should point us to a default root
922 sk->tree_id = BTRFS_ROOT_TREE_OBJECTID;
924 /* don't worry about ancient format and request only one item */
925 sk->nr_items = 1;
927 sk->max_objectid = BTRFS_ROOT_TREE_DIR_OBJECTID;
928 sk->min_objectid = BTRFS_ROOT_TREE_DIR_OBJECTID;
929 sk->max_type = BTRFS_DIR_ITEM_KEY;
930 sk->min_type = BTRFS_DIR_ITEM_KEY;
931 sk->max_offset = (u64)-1;
932 sk->max_transid = (u64)-1;
934 ret = ioctl(fd, BTRFS_IOC_TREE_SEARCH, &args);
935 if (ret < 0)
936 return ret;
938 /* the ioctl returns the number of items it found in nr_items */
939 if (sk->nr_items == 0)
940 goto out;
942 sh = (struct btrfs_ioctl_search_header *)args.buf;
944 if (btrfs_search_header_type(sh) == BTRFS_DIR_ITEM_KEY) {
945 struct btrfs_dir_item *di;
946 int name_len;
947 char *name;
949 di = (struct btrfs_dir_item *)(sh + 1);
950 name_len = btrfs_stack_dir_name_len(di);
951 name = (char *)(di + 1);
953 if (!strncmp("default", name, name_len))
954 found = btrfs_disk_key_objectid(&di->location);
957 out:
958 *default_id = found;
959 return 0;
962 static int list_subvol_search(int fd, struct root_lookup *root_lookup)
964 int ret;
965 struct btrfs_ioctl_search_args args;
966 struct btrfs_ioctl_search_key *sk = &args.key;
967 struct btrfs_ioctl_search_header sh;
968 struct btrfs_root_ref *ref;
969 struct btrfs_root_item *ri;
970 unsigned long off;
971 int name_len;
972 char *name;
973 u64 dir_id;
974 u64 gen = 0;
975 u64 ogen;
976 u64 flags;
977 int i;
979 root_lookup->root.rb_node = NULL;
980 memset(&args, 0, sizeof(args));
982 sk->tree_id = BTRFS_ROOT_TREE_OBJECTID;
983 /* Search both live and deleted subvolumes */
984 sk->min_type = BTRFS_ROOT_ITEM_KEY;
985 sk->max_type = BTRFS_ROOT_BACKREF_KEY;
986 sk->min_objectid = BTRFS_FS_TREE_OBJECTID;
987 sk->max_objectid = BTRFS_LAST_FREE_OBJECTID;
988 sk->max_offset = (u64)-1;
989 sk->max_transid = (u64)-1;
991 while(1) {
992 sk->nr_items = 4096;
993 ret = ioctl(fd, BTRFS_IOC_TREE_SEARCH, &args);
994 if (ret < 0)
995 return ret;
996 if (sk->nr_items == 0)
997 break;
999 off = 0;
1002 * for each item, pull the key out of the header and then
1003 * read the root_ref item it contains
1005 for (i = 0; i < sk->nr_items; i++) {
1006 memcpy(&sh, args.buf + off, sizeof(sh));
1007 off += sizeof(sh);
1008 if (sh.type == BTRFS_ROOT_BACKREF_KEY) {
1009 ref = (struct btrfs_root_ref *)(args.buf + off);
1010 name_len = btrfs_stack_root_ref_name_len(ref);
1011 name = (char *)(ref + 1);
1012 dir_id = btrfs_stack_root_ref_dirid(ref);
1014 add_root_backref(root_lookup, sh.objectid,
1015 sh.offset, dir_id, name,
1016 name_len);
1017 } else if (sh.type == BTRFS_ROOT_ITEM_KEY &&
1018 (sh.objectid >= BTRFS_FIRST_FREE_OBJECTID ||
1019 sh.objectid == BTRFS_FS_TREE_OBJECTID)) {
1020 time_t otime;
1021 u8 uuid[BTRFS_UUID_SIZE];
1022 u8 puuid[BTRFS_UUID_SIZE];
1023 u8 ruuid[BTRFS_UUID_SIZE];
1025 ri = (struct btrfs_root_item *)(args.buf + off);
1026 gen = btrfs_root_generation(ri);
1027 flags = btrfs_root_flags(ri);
1028 if(sh.len >
1029 sizeof(struct btrfs_root_item_v0)) {
1030 otime = btrfs_stack_timespec_sec(&ri->otime);
1031 ogen = btrfs_root_otransid(ri);
1032 memcpy(uuid, ri->uuid, BTRFS_UUID_SIZE);
1033 memcpy(puuid, ri->parent_uuid, BTRFS_UUID_SIZE);
1034 memcpy(ruuid, ri->received_uuid, BTRFS_UUID_SIZE);
1035 } else {
1036 otime = 0;
1037 ogen = 0;
1038 memset(uuid, 0, BTRFS_UUID_SIZE);
1039 memset(puuid, 0, BTRFS_UUID_SIZE);
1040 memset(ruuid, 0, BTRFS_UUID_SIZE);
1043 add_root(root_lookup, sh.objectid, 0,
1044 sh.offset, flags, 0, NULL, 0, ogen,
1045 gen, otime, uuid, puuid, ruuid);
1048 off += sh.len;
1050 sk->min_objectid = sh.objectid;
1051 sk->min_type = sh.type;
1052 sk->min_offset = sh.offset;
1054 sk->min_offset++;
1055 if (!sk->min_offset)
1056 sk->min_type++;
1057 else
1058 continue;
1060 if (sk->min_type > BTRFS_ROOT_BACKREF_KEY) {
1061 sk->min_type = BTRFS_ROOT_ITEM_KEY;
1062 sk->min_objectid++;
1063 } else
1064 continue;
1066 if (sk->min_objectid > sk->max_objectid)
1067 break;
1070 return 0;
1073 static int filter_by_rootid(struct root_info *ri, u64 data)
1075 return ri->root_id == data;
1078 static int filter_snapshot(struct root_info *ri, u64 data)
1080 return !!ri->root_offset;
1083 static int filter_flags(struct root_info *ri, u64 flags)
1085 return ri->flags & flags;
1088 static int filter_gen_more(struct root_info *ri, u64 data)
1090 return ri->gen >= data;
1093 static int filter_gen_less(struct root_info *ri, u64 data)
1095 return ri->gen <= data;
1098 static int filter_gen_equal(struct root_info *ri, u64 data)
1100 return ri->gen == data;
1103 static int filter_cgen_more(struct root_info *ri, u64 data)
1105 return ri->ogen >= data;
1108 static int filter_cgen_less(struct root_info *ri, u64 data)
1110 return ri->ogen <= data;
1113 static int filter_cgen_equal(struct root_info *ri, u64 data)
1115 return ri->ogen == data;
1118 static int filter_topid_equal(struct root_info *ri, u64 data)
1120 return ri->top_id == data;
1123 static int filter_full_path(struct root_info *ri, u64 data)
1125 if (ri->full_path && ri->top_id != data) {
1126 char *tmp;
1127 char p[] = "<FS_TREE>";
1128 int add_len = strlen(p);
1129 int len = strlen(ri->full_path);
1131 tmp = malloc(len + add_len + 2);
1132 if (!tmp) {
1133 fprintf(stderr, "memory allocation failed\n");
1134 exit(1);
1136 memcpy(tmp + add_len + 1, ri->full_path, len);
1137 tmp[len + add_len + 1] = '\0';
1138 tmp[add_len] = '/';
1139 memcpy(tmp, p, add_len);
1140 free(ri->full_path);
1141 ri->full_path = tmp;
1143 return 1;
1146 static int filter_by_parent(struct root_info *ri, u64 data)
1148 return !uuid_compare(ri->puuid, (u8 *)(unsigned long)data);
1151 static int filter_deleted(struct root_info *ri, u64 data)
1153 return ri->deleted;
1156 static btrfs_list_filter_func all_filter_funcs[] = {
1157 [BTRFS_LIST_FILTER_ROOTID] = filter_by_rootid,
1158 [BTRFS_LIST_FILTER_SNAPSHOT_ONLY] = filter_snapshot,
1159 [BTRFS_LIST_FILTER_FLAGS] = filter_flags,
1160 [BTRFS_LIST_FILTER_GEN_MORE] = filter_gen_more,
1161 [BTRFS_LIST_FILTER_GEN_LESS] = filter_gen_less,
1162 [BTRFS_LIST_FILTER_GEN_EQUAL] = filter_gen_equal,
1163 [BTRFS_LIST_FILTER_CGEN_MORE] = filter_cgen_more,
1164 [BTRFS_LIST_FILTER_CGEN_LESS] = filter_cgen_less,
1165 [BTRFS_LIST_FILTER_CGEN_EQUAL] = filter_cgen_equal,
1166 [BTRFS_LIST_FILTER_TOPID_EQUAL] = filter_topid_equal,
1167 [BTRFS_LIST_FILTER_FULL_PATH] = filter_full_path,
1168 [BTRFS_LIST_FILTER_BY_PARENT] = filter_by_parent,
1169 [BTRFS_LIST_FILTER_DELETED] = filter_deleted,
1172 struct btrfs_list_filter_set *btrfs_list_alloc_filter_set(void)
1174 struct btrfs_list_filter_set *set;
1175 int size;
1177 size = sizeof(struct btrfs_list_filter_set) +
1178 BTRFS_LIST_NFILTERS_INCREASE * sizeof(struct btrfs_list_filter);
1179 set = calloc(1, size);
1180 if (!set) {
1181 fprintf(stderr, "memory allocation failed\n");
1182 exit(1);
1185 set->total = BTRFS_LIST_NFILTERS_INCREASE;
1187 return set;
1191 * Setup list filters. Exit if there's not enough memory, as we can't continue
1192 * without the structures set up properly.
1194 void btrfs_list_setup_filter(struct btrfs_list_filter_set **filter_set,
1195 enum btrfs_list_filter_enum filter, u64 data)
1197 struct btrfs_list_filter_set *set = *filter_set;
1198 int size;
1200 ASSERT(set != NULL);
1201 ASSERT(filter < BTRFS_LIST_FILTER_MAX);
1202 ASSERT(set->nfilters <= set->total);
1204 if (set->nfilters == set->total) {
1205 void *tmp;
1207 size = set->total + BTRFS_LIST_NFILTERS_INCREASE;
1208 size = sizeof(*set) + size * sizeof(struct btrfs_list_filter);
1209 tmp = set;
1210 set = realloc(set, size);
1211 if (!set) {
1212 fprintf(stderr, "memory allocation failed\n");
1213 free(tmp);
1214 exit(1);
1217 memset(&set->filters[set->total], 0,
1218 BTRFS_LIST_NFILTERS_INCREASE *
1219 sizeof(struct btrfs_list_filter));
1220 set->total += BTRFS_LIST_NFILTERS_INCREASE;
1221 *filter_set = set;
1224 ASSERT(set->filters[set->nfilters].filter_func == NULL);
1226 if (filter == BTRFS_LIST_FILTER_DELETED)
1227 set->only_deleted = 1;
1229 set->filters[set->nfilters].filter_func = all_filter_funcs[filter];
1230 set->filters[set->nfilters].data = data;
1231 set->nfilters++;
1234 static int filter_root(struct root_info *ri,
1235 struct btrfs_list_filter_set *set)
1237 int i, ret;
1239 if (!set)
1240 return 1;
1242 if (set->only_deleted && !ri->deleted)
1243 return 0;
1245 if (!set->only_deleted && ri->deleted)
1246 return 0;
1248 for (i = 0; i < set->nfilters; i++) {
1249 if (!set->filters[i].filter_func)
1250 break;
1251 ret = set->filters[i].filter_func(ri, set->filters[i].data);
1252 if (!ret)
1253 return 0;
1255 return 1;
1258 static void filter_and_sort_subvol(struct root_lookup *all_subvols,
1259 struct root_lookup *sort_tree,
1260 struct btrfs_list_filter_set *filter_set,
1261 struct btrfs_list_comparer_set *comp_set,
1262 u64 top_id)
1264 struct rb_node *n;
1265 struct root_info *entry;
1266 int ret;
1268 sort_tree->root.rb_node = NULL;
1270 n = rb_last(&all_subvols->root);
1271 while (n) {
1272 entry = rb_entry(n, struct root_info, rb_node);
1274 ret = resolve_root(all_subvols, entry, top_id);
1275 if (ret == -ENOENT) {
1276 if (entry->root_id != BTRFS_FS_TREE_OBJECTID) {
1277 entry->full_path = strdup("DELETED");
1278 entry->deleted = 1;
1279 } else {
1281 * The full path is not supposed to be printed,
1282 * but we don't want to print an empty string,
1283 * in case it appears somewhere.
1285 entry->full_path = strdup("TOPLEVEL");
1286 entry->deleted = 0;
1289 ret = filter_root(entry, filter_set);
1290 if (ret)
1291 sort_tree_insert(sort_tree, entry, comp_set);
1292 n = rb_prev(n);
1296 static int list_subvol_fill_paths(int fd, struct root_lookup *root_lookup)
1298 struct rb_node *n;
1300 n = rb_first(&root_lookup->root);
1301 while (n) {
1302 struct root_info *entry;
1303 int ret;
1304 entry = rb_entry(n, struct root_info, rb_node);
1305 ret = lookup_ino_path(fd, entry);
1306 if (ret && ret != -ENOENT)
1307 return ret;
1308 n = rb_next(n);
1311 return 0;
1314 static void print_subvolume_column(struct root_info *subv,
1315 enum btrfs_list_column_enum column)
1317 char tstr[256];
1318 char uuidparse[BTRFS_UUID_UNPARSED_SIZE];
1320 ASSERT(0 <= column && column < BTRFS_LIST_ALL);
1322 switch (column) {
1323 case BTRFS_LIST_OBJECTID:
1324 printf("%llu", subv->root_id);
1325 break;
1326 case BTRFS_LIST_GENERATION:
1327 printf("%llu", subv->gen);
1328 break;
1329 case BTRFS_LIST_OGENERATION:
1330 printf("%llu", subv->ogen);
1331 break;
1332 case BTRFS_LIST_PARENT:
1333 printf("%llu", subv->ref_tree);
1334 break;
1335 case BTRFS_LIST_TOP_LEVEL:
1336 printf("%llu", subv->top_id);
1337 break;
1338 case BTRFS_LIST_OTIME:
1339 if (subv->otime) {
1340 struct tm tm;
1342 localtime_r(&subv->otime, &tm);
1343 strftime(tstr, 256, "%Y-%m-%d %X", &tm);
1344 } else
1345 strcpy(tstr, "-");
1346 printf("%s", tstr);
1347 break;
1348 case BTRFS_LIST_UUID:
1349 if (uuid_is_null(subv->uuid))
1350 strcpy(uuidparse, "-");
1351 else
1352 uuid_unparse(subv->uuid, uuidparse);
1353 printf("%-36s", uuidparse);
1354 break;
1355 case BTRFS_LIST_PUUID:
1356 if (uuid_is_null(subv->puuid))
1357 strcpy(uuidparse, "-");
1358 else
1359 uuid_unparse(subv->puuid, uuidparse);
1360 printf("%-36s", uuidparse);
1361 break;
1362 case BTRFS_LIST_RUUID:
1363 if (uuid_is_null(subv->ruuid))
1364 strcpy(uuidparse, "-");
1365 else
1366 uuid_unparse(subv->ruuid, uuidparse);
1367 printf("%-36s", uuidparse);
1368 break;
1369 case BTRFS_LIST_PATH:
1370 BUG_ON(!subv->full_path);
1371 printf("%s", subv->full_path);
1372 break;
1373 default:
1374 break;
1378 static void print_one_subvol_info_raw(struct root_info *subv,
1379 const char *raw_prefix)
1381 int i;
1383 for (i = 0; i < BTRFS_LIST_ALL; i++) {
1384 if (!btrfs_list_columns[i].need_print)
1385 continue;
1387 if (raw_prefix)
1388 printf("%s",raw_prefix);
1390 print_subvolume_column(subv, i);
1392 printf("\n");
1395 static void print_one_subvol_info_table(struct root_info *subv)
1397 int i;
1399 for (i = 0; i < BTRFS_LIST_ALL; i++) {
1400 if (!btrfs_list_columns[i].need_print)
1401 continue;
1403 print_subvolume_column(subv, i);
1405 if (i != BTRFS_LIST_PATH)
1406 printf("\t");
1408 if (i == BTRFS_LIST_TOP_LEVEL)
1409 printf("\t");
1411 printf("\n");
1414 static void print_one_subvol_info_default(struct root_info *subv)
1416 int i;
1418 for (i = 0; i < BTRFS_LIST_ALL; i++) {
1419 if (!btrfs_list_columns[i].need_print)
1420 continue;
1422 printf("%s ", btrfs_list_columns[i].name);
1423 print_subvolume_column(subv, i);
1425 if (i != BTRFS_LIST_PATH)
1426 printf(" ");
1428 printf("\n");
1431 static void print_all_subvol_info_tab_head(void)
1433 int i;
1434 int len;
1435 char barrier[20];
1437 for (i = 0; i < BTRFS_LIST_ALL; i++) {
1438 if (btrfs_list_columns[i].need_print)
1439 printf("%s\t", btrfs_list_columns[i].name);
1441 if (i == BTRFS_LIST_ALL-1)
1442 printf("\n");
1445 for (i = 0; i < BTRFS_LIST_ALL; i++) {
1446 memset(barrier, 0, sizeof(barrier));
1448 if (btrfs_list_columns[i].need_print) {
1449 len = strlen(btrfs_list_columns[i].name);
1450 while (len--)
1451 strcat(barrier, "-");
1453 printf("%s\t", barrier);
1455 if (i == BTRFS_LIST_ALL-1)
1456 printf("\n");
1460 static void print_all_subvol_info(struct root_lookup *sorted_tree,
1461 enum btrfs_list_layout layout, const char *raw_prefix)
1463 struct rb_node *n;
1464 struct root_info *entry;
1466 if (layout == BTRFS_LIST_LAYOUT_TABLE)
1467 print_all_subvol_info_tab_head();
1469 n = rb_first(&sorted_tree->root);
1470 while (n) {
1471 entry = rb_entry(n, struct root_info, sort_node);
1473 /* The toplevel subvolume is not listed by default */
1474 if (entry->root_id == BTRFS_FS_TREE_OBJECTID)
1475 goto next;
1477 switch (layout) {
1478 case BTRFS_LIST_LAYOUT_DEFAULT:
1479 print_one_subvol_info_default(entry);
1480 break;
1481 case BTRFS_LIST_LAYOUT_TABLE:
1482 print_one_subvol_info_table(entry);
1483 break;
1484 case BTRFS_LIST_LAYOUT_RAW:
1485 print_one_subvol_info_raw(entry, raw_prefix);
1486 break;
1488 next:
1489 n = rb_next(n);
1493 static int btrfs_list_subvols(int fd, struct root_lookup *root_lookup)
1495 int ret;
1497 ret = list_subvol_search(fd, root_lookup);
1498 if (ret) {
1499 error("can't perform the search: %s", strerror(errno));
1500 return ret;
1504 * now we have an rbtree full of root_info objects, but we need to fill
1505 * in their path names within the subvol that is referencing each one.
1507 ret = list_subvol_fill_paths(fd, root_lookup);
1508 return ret;
1511 int btrfs_list_subvols_print(int fd, struct btrfs_list_filter_set *filter_set,
1512 struct btrfs_list_comparer_set *comp_set,
1513 enum btrfs_list_layout layout, int full_path,
1514 const char *raw_prefix)
1516 struct root_lookup root_lookup;
1517 struct root_lookup root_sort;
1518 int ret = 0;
1519 u64 top_id = 0;
1521 if (full_path)
1522 ret = btrfs_list_get_path_rootid(fd, &top_id);
1523 if (ret)
1524 return ret;
1526 ret = btrfs_list_subvols(fd, &root_lookup);
1527 if (ret)
1528 return ret;
1529 filter_and_sort_subvol(&root_lookup, &root_sort, filter_set,
1530 comp_set, top_id);
1532 print_all_subvol_info(&root_sort, layout, raw_prefix);
1533 rb_free_nodes(&root_lookup.root, free_root_info);
1535 return 0;
1538 static char *strdup_or_null(const char *s)
1540 if (!s)
1541 return NULL;
1542 return strdup(s);
1545 int btrfs_get_toplevel_subvol(int fd, struct root_info *the_ri)
1547 int ret;
1548 struct root_lookup rl;
1549 struct rb_node *rbn;
1550 struct root_info *ri;
1551 u64 root_id;
1553 ret = btrfs_list_get_path_rootid(fd, &root_id);
1554 if (ret)
1555 return ret;
1557 ret = btrfs_list_subvols(fd, &rl);
1558 if (ret)
1559 return ret;
1561 rbn = rb_first(&rl.root);
1562 ri = rb_entry(rbn, struct root_info, rb_node);
1564 if (ri->root_id != BTRFS_FS_TREE_OBJECTID)
1565 return -ENOENT;
1567 memcpy(the_ri, ri, offsetof(struct root_info, path));
1568 the_ri->path = strdup_or_null("/");
1569 the_ri->name = strdup_or_null("<FS_TREE>");
1570 the_ri->full_path = strdup_or_null("/");
1571 rb_free_nodes(&rl.root, free_root_info);
1573 return ret;
1576 int btrfs_get_subvol(int fd, struct root_info *the_ri)
1578 int ret, rr;
1579 struct root_lookup rl;
1580 struct rb_node *rbn;
1581 struct root_info *ri;
1582 u64 root_id;
1584 ret = btrfs_list_get_path_rootid(fd, &root_id);
1585 if (ret)
1586 return ret;
1588 ret = btrfs_list_subvols(fd, &rl);
1589 if (ret)
1590 return ret;
1592 rbn = rb_first(&rl.root);
1593 while(rbn) {
1594 ri = rb_entry(rbn, struct root_info, rb_node);
1595 rr = resolve_root(&rl, ri, root_id);
1596 if (rr == -ENOENT) {
1597 ret = -ENOENT;
1598 rbn = rb_next(rbn);
1599 continue;
1602 if (!comp_entry_with_rootid(the_ri, ri, 0) ||
1603 !uuid_compare(the_ri->uuid, ri->uuid)) {
1604 memcpy(the_ri, ri, offsetof(struct root_info, path));
1605 the_ri->path = strdup_or_null(ri->path);
1606 the_ri->name = strdup_or_null(ri->name);
1607 the_ri->full_path = strdup_or_null(ri->full_path);
1608 ret = 0;
1609 break;
1611 rbn = rb_next(rbn);
1613 rb_free_nodes(&rl.root, free_root_info);
1614 return ret;
1617 static int print_one_extent(int fd, struct btrfs_ioctl_search_header *sh,
1618 struct btrfs_file_extent_item *item,
1619 u64 found_gen, u64 *cache_dirid,
1620 char **cache_dir_name, u64 *cache_ino,
1621 char **cache_full_name)
1623 u64 len = 0;
1624 u64 disk_start = 0;
1625 u64 disk_offset = 0;
1626 u8 type;
1627 int compressed = 0;
1628 int flags = 0;
1629 char *name = NULL;
1631 if (btrfs_search_header_objectid(sh) == *cache_ino) {
1632 name = *cache_full_name;
1633 } else if (*cache_full_name) {
1634 free(*cache_full_name);
1635 *cache_full_name = NULL;
1637 if (!name) {
1638 name = ino_resolve(fd, btrfs_search_header_objectid(sh),
1639 cache_dirid,
1640 cache_dir_name);
1641 *cache_full_name = name;
1642 *cache_ino = btrfs_search_header_objectid(sh);
1644 if (!name)
1645 return -EIO;
1647 type = btrfs_stack_file_extent_type(item);
1648 compressed = btrfs_stack_file_extent_compression(item);
1650 if (type == BTRFS_FILE_EXTENT_REG ||
1651 type == BTRFS_FILE_EXTENT_PREALLOC) {
1652 disk_start = btrfs_stack_file_extent_disk_bytenr(item);
1653 disk_offset = btrfs_stack_file_extent_offset(item);
1654 len = btrfs_stack_file_extent_num_bytes(item);
1655 } else if (type == BTRFS_FILE_EXTENT_INLINE) {
1656 disk_start = 0;
1657 disk_offset = 0;
1658 len = btrfs_stack_file_extent_ram_bytes(item);
1659 } else {
1660 error(
1661 "unhandled extent type %d for inode %llu file offset %llu gen %llu",
1662 type,
1663 (unsigned long long)btrfs_search_header_objectid(sh),
1664 (unsigned long long)btrfs_search_header_offset(sh),
1665 (unsigned long long)found_gen);
1667 return -EIO;
1669 printf("inode %llu file offset %llu len %llu disk start %llu "
1670 "offset %llu gen %llu flags ",
1671 (unsigned long long)btrfs_search_header_objectid(sh),
1672 (unsigned long long)btrfs_search_header_offset(sh),
1673 (unsigned long long)len,
1674 (unsigned long long)disk_start,
1675 (unsigned long long)disk_offset,
1676 (unsigned long long)found_gen);
1678 if (compressed) {
1679 printf("COMPRESS");
1680 flags++;
1682 if (type == BTRFS_FILE_EXTENT_PREALLOC) {
1683 printf("%sPREALLOC", flags ? "|" : "");
1684 flags++;
1686 if (type == BTRFS_FILE_EXTENT_INLINE) {
1687 printf("%sINLINE", flags ? "|" : "");
1688 flags++;
1690 if (!flags)
1691 printf("NONE");
1693 printf(" %s\n", name);
1694 return 0;
1697 int btrfs_list_find_updated_files(int fd, u64 root_id, u64 oldest_gen)
1699 int ret;
1700 struct btrfs_ioctl_search_args args;
1701 struct btrfs_ioctl_search_key *sk = &args.key;
1702 struct btrfs_ioctl_search_header sh;
1703 struct btrfs_file_extent_item *item;
1704 unsigned long off = 0;
1705 u64 found_gen;
1706 u64 max_found = 0;
1707 int i;
1708 u64 cache_dirid = 0;
1709 u64 cache_ino = 0;
1710 char *cache_dir_name = NULL;
1711 char *cache_full_name = NULL;
1712 struct btrfs_file_extent_item backup;
1714 memset(&backup, 0, sizeof(backup));
1715 memset(&args, 0, sizeof(args));
1717 sk->tree_id = root_id;
1720 * set all the other params to the max, we'll take any objectid
1721 * and any trans
1723 sk->max_objectid = (u64)-1;
1724 sk->max_offset = (u64)-1;
1725 sk->max_transid = (u64)-1;
1726 sk->max_type = BTRFS_EXTENT_DATA_KEY;
1727 sk->min_transid = oldest_gen;
1728 /* just a big number, doesn't matter much */
1729 sk->nr_items = 4096;
1731 max_found = find_root_gen(fd);
1732 while(1) {
1733 ret = ioctl(fd, BTRFS_IOC_TREE_SEARCH, &args);
1734 if (ret < 0) {
1735 error("can't perform the search: %s", strerror(errno));
1736 break;
1738 /* the ioctl returns the number of item it found in nr_items */
1739 if (sk->nr_items == 0)
1740 break;
1742 off = 0;
1745 * for each item, pull the key out of the header and then
1746 * read the root_ref item it contains
1748 for (i = 0; i < sk->nr_items; i++) {
1749 memcpy(&sh, args.buf + off, sizeof(sh));
1750 off += sizeof(sh);
1753 * just in case the item was too big, pass something other
1754 * than garbage
1756 if (sh.len == 0)
1757 item = &backup;
1758 else
1759 item = (struct btrfs_file_extent_item *)(args.buf +
1760 off);
1761 found_gen = btrfs_stack_file_extent_generation(item);
1762 if (sh.type == BTRFS_EXTENT_DATA_KEY &&
1763 found_gen >= oldest_gen) {
1764 print_one_extent(fd, &sh, item, found_gen,
1765 &cache_dirid, &cache_dir_name,
1766 &cache_ino, &cache_full_name);
1768 off += sh.len;
1771 * record the mins in sk so we can make sure the
1772 * next search doesn't repeat this root
1774 sk->min_objectid = sh.objectid;
1775 sk->min_offset = sh.offset;
1776 sk->min_type = sh.type;
1778 sk->nr_items = 4096;
1779 if (sk->min_offset < (u64)-1)
1780 sk->min_offset++;
1781 else if (sk->min_objectid < (u64)-1) {
1782 sk->min_objectid++;
1783 sk->min_offset = 0;
1784 sk->min_type = 0;
1785 } else
1786 break;
1788 free(cache_dir_name);
1789 free(cache_full_name);
1790 printf("transid marker was %llu\n", (unsigned long long)max_found);
1791 return ret;
1794 char *btrfs_list_path_for_root(int fd, u64 root)
1796 struct root_lookup root_lookup;
1797 struct rb_node *n;
1798 char *ret_path = NULL;
1799 int ret;
1800 u64 top_id;
1802 ret = btrfs_list_get_path_rootid(fd, &top_id);
1803 if (ret)
1804 return ERR_PTR(ret);
1806 ret = list_subvol_search(fd, &root_lookup);
1807 if (ret < 0)
1808 return ERR_PTR(ret);
1810 ret = list_subvol_fill_paths(fd, &root_lookup);
1811 if (ret < 0)
1812 return ERR_PTR(ret);
1814 n = rb_last(&root_lookup.root);
1815 while (n) {
1816 struct root_info *entry;
1818 entry = rb_entry(n, struct root_info, rb_node);
1819 ret = resolve_root(&root_lookup, entry, top_id);
1820 if (ret == -ENOENT && entry->root_id == root) {
1821 ret_path = NULL;
1822 break;
1824 if (entry->root_id == root) {
1825 ret_path = entry->full_path;
1826 entry->full_path = NULL;
1829 n = rb_prev(n);
1831 rb_free_nodes(&root_lookup.root, free_root_info);
1833 return ret_path;
1836 int btrfs_list_parse_sort_string(char *opt_arg,
1837 struct btrfs_list_comparer_set **comps)
1839 int order;
1840 int flag;
1841 char *p;
1842 char **ptr_argv;
1843 int what_to_sort;
1845 while ((p = strtok(opt_arg, ",")) != NULL) {
1846 flag = 0;
1847 ptr_argv = all_sort_items;
1849 while (*ptr_argv) {
1850 if (strcmp(*ptr_argv, p) == 0) {
1851 flag = 1;
1852 break;
1853 } else {
1854 p++;
1855 if (strcmp(*ptr_argv, p) == 0) {
1856 flag = 1;
1857 p--;
1858 break;
1860 p--;
1862 ptr_argv++;
1865 if (flag == 0)
1866 return -1;
1868 else {
1869 if (*p == '+') {
1870 order = 0;
1871 p++;
1872 } else if (*p == '-') {
1873 order = 1;
1874 p++;
1875 } else
1876 order = 0;
1878 what_to_sort = btrfs_list_get_sort_item(p);
1879 btrfs_list_setup_comparer(comps, what_to_sort, order);
1881 opt_arg = NULL;
1884 return 0;
1888 * This function is used to parse the argument of filter condition.
1890 * type is the filter object.
1892 int btrfs_list_parse_filter_string(char *opt_arg,
1893 struct btrfs_list_filter_set **filters,
1894 enum btrfs_list_filter_enum type)
1897 u64 arg;
1899 switch (*(opt_arg++)) {
1900 case '+':
1901 arg = arg_strtou64(opt_arg);
1902 type += 2;
1904 btrfs_list_setup_filter(filters, type, arg);
1905 break;
1906 case '-':
1907 arg = arg_strtou64(opt_arg);
1908 type += 1;
1910 btrfs_list_setup_filter(filters, type, arg);
1911 break;
1912 default:
1913 opt_arg--;
1914 arg = arg_strtou64(opt_arg);
1916 btrfs_list_setup_filter(filters, type, arg);
1917 break;
1920 return 0;
1923 int btrfs_list_get_path_rootid(int fd, u64 *treeid)
1925 int ret;
1927 ret = lookup_path_rootid(fd, treeid);
1928 if (ret < 0)
1929 error("cannot resolve rootid for path: %s",
1930 strerror(errno));
1932 return ret;