btrfs-progs: pretty print key in extent_item
[btrfs-progs-unstable/devel.git] / btrfs-list.c
blobe5f0f969799dfd01d81b803f2b92b60120c27583
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 #define _GNU_SOURCE
20 #ifndef __CHECKER__
21 #include <sys/ioctl.h>
22 #include <sys/mount.h>
23 #include "ioctl.h"
24 #endif
25 #include <stdio.h>
26 #include <stdlib.h>
27 #include <sys/types.h>
28 #include <sys/stat.h>
29 #include <fcntl.h>
30 #include <unistd.h>
31 #include <dirent.h>
32 #include <libgen.h>
33 #include "ctree.h"
34 #include "transaction.h"
35 #include "utils.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.
45 struct root_lookup {
46 struct rb_root root;
50 * one of these for each root we find.
52 struct root_info {
53 struct rb_node rb_node;
54 struct rb_node sort_node;
56 /* this root's id */
57 u64 root_id;
59 /* equal the offset of the root's key */
60 u64 root_offset;
62 /* flags of the root */
63 u64 flags;
65 /* the id of the root that references this one */
66 u64 ref_tree;
68 /* the dir id we're in from ref_tree */
69 u64 dir_id;
71 u64 top_id;
73 /* generation when the root is created or last updated */
74 u64 gen;
76 /* creation generation of this root in sec*/
77 u64 ogen;
79 /* creation time of this root in sec*/
80 time_t otime;
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.
87 char *path;
89 /* the name of this root in the directory it lives in */
90 char *name;
92 char *full_path;
95 struct {
96 char *name;
97 char *column_name;
98 int need_print;
99 } btrfs_list_columns[] = {
101 .name = "ID",
102 .column_name = "ID",
103 .need_print = 1,
106 .name = "gen",
107 .column_name = "Gen",
108 .need_print = 1,
111 .name = "cgen",
112 .column_name = "CGen",
113 .need_print = 0,
116 .name = "parent",
117 .column_name = "Parent",
118 .need_print = 0,
121 .name = "top level",
122 .column_name = "Top Level",
123 .need_print = 1,
126 .name = "otime",
127 .column_name = "OTime",
128 .need_print = 0,
131 .name = "uuid",
132 .column_name = "UUID",
133 .need_print = 0,
136 .name = "path",
137 .column_name = "Path",
138 .need_print = 1,
141 .name = NULL,
142 .column_name = NULL,
143 .need_print = 0,
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)
152 int i;
154 BUG_ON(column < 0 || column > BTRFS_LIST_ALL);
156 if (column < BTRFS_LIST_ALL) {
157 btrfs_list_columns[column].need_print = 1;
158 return;
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,
172 int is_descending)
174 int ret;
176 if (entry1->root_id > entry2->root_id)
177 ret = 1;
178 else if (entry1->root_id < entry2->root_id)
179 ret = -1;
180 else
181 ret = 0;
183 return is_descending ? -ret : ret;
186 static int comp_entry_with_gen(struct root_info *entry1,
187 struct root_info *entry2,
188 int is_descending)
190 int ret;
192 if (entry1->gen > entry2->gen)
193 ret = 1;
194 else if (entry1->gen < entry2->gen)
195 ret = -1;
196 else
197 ret = 0;
199 return is_descending ? -ret : ret;
202 static int comp_entry_with_ogen(struct root_info *entry1,
203 struct root_info *entry2,
204 int is_descending)
206 int ret;
208 if (entry1->ogen > entry2->ogen)
209 ret = 1;
210 else if (entry1->ogen < entry2->ogen)
211 ret = -1;
212 else
213 ret = 0;
215 return is_descending ? -ret : ret;
218 static int comp_entry_with_path(struct root_info *entry1,
219 struct root_info *entry2,
220 int is_descending)
222 int ret;
224 if (strcmp(entry1->full_path, entry2->full_path) > 0)
225 ret = 1;
226 else if (strcmp(entry1->full_path, entry2->full_path) < 0)
227 ret = -1;
228 else
229 ret = 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)
251 int i;
253 for (i = 0; i < BTRFS_LIST_COMP_MAX; i++) {
254 if (strcmp(sort_name, all_sort_items[i]) == 0)
255 return i;
257 return -1;
260 struct btrfs_list_comparer_set *btrfs_list_alloc_comparer_set(void)
262 struct btrfs_list_comparer_set *set;
263 int size;
265 size = sizeof(struct btrfs_list_comparer_set) +
266 BTRFS_LIST_NCOMPS_INCREASE * sizeof(struct btrfs_list_comparer);
267 set = malloc(size);
268 if (!set) {
269 fprintf(stderr, "memory allocation failed\n");
270 exit(1);
273 memset(set, 0, size);
274 set->total = BTRFS_LIST_NCOMPS_INCREASE;
276 return set;
279 void btrfs_list_free_comparer_set(struct btrfs_list_comparer_set *comp_set)
281 free(comp_set);
284 int btrfs_list_setup_comparer(struct btrfs_list_comparer_set **comp_set,
285 enum btrfs_list_comp_enum comparer,
286 int is_descending)
288 struct btrfs_list_comparer_set *set = *comp_set;
289 int size;
291 BUG_ON(!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);
299 if (!set) {
300 fprintf(stderr, "memory allocation failed\n");
301 exit(1);
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;
308 *comp_set = set;
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;
315 set->ncomps++;
316 return 0;
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;
323 int i, ret = 0;
325 if (!set || !set->ncomps)
326 goto comp_rootid;
328 for (i = 0; i < set->ncomps; i++) {
329 if (!set->comps[i].comp_func)
330 break;
332 ret = set->comps[i].comp_func(entry1, entry2,
333 set->comps[i].is_descending);
334 if (ret)
335 return ret;
337 if (set->comps[i].comp_func == comp_entry_with_rootid)
338 rootid_compared = 1;
341 if (!rootid_compared) {
342 comp_rootid:
343 ret = comp_entry_with_rootid(entry1, entry2, 0);
346 return ret;
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;
356 int ret;
358 while (*p) {
359 parent = *p;
360 curr = rb_entry(parent, struct root_info, sort_node);
362 ret = sort_comp(ins, curr, comp_set);
363 if (ret < 0)
364 p = &(*p)->rb_left;
365 else if (ret > 0)
366 p = &(*p)->rb_right;
367 else
368 return -EEXIST;
371 rb_link_node(&ins->sort_node, parent, p);
372 rb_insert_color(&ins->sort_node, &sort_tree->root);
373 return 0;
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
379 * as the key
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;
387 int ret;
389 while(*p) {
390 parent = *p;
391 curr = rb_entry(parent, struct root_info, rb_node);
393 ret = comp_entry_with_rootid(ins, curr, 0);
394 if (ret < 0)
395 p = &(*p)->rb_left;
396 else if (ret > 0)
397 p = &(*p)->rb_right;
398 else
399 return -EEXIST;
402 rb_link_node(&ins->rb_node, parent, p);
403 rb_insert_color(&ins->rb_node, &root_tree->root);
404 return 0;
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,
412 u64 root_id)
414 struct rb_node *n = root_tree->root.rb_node;
415 struct root_info *entry;
416 struct root_info tmp;
417 int ret;
419 tmp.root_id = root_id;
421 while(n) {
422 entry = rb_entry(n, struct root_info, rb_node);
424 ret = comp_entry_with_rootid(&tmp, entry, 0);
425 if (ret < 0)
426 n = n->rb_left;
427 else if (ret > 0)
428 n = n->rb_right;
429 else
430 return entry;
432 return NULL;
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)
444 return -ENOENT;
445 if (name && name_len > 0) {
446 if (ri->name)
447 free(ri->name);
449 ri->name = malloc(name_len + 1);
450 if (!ri->name) {
451 fprintf(stderr, "memory allocation failed\n");
452 exit(1);
454 strncpy(ri->name, name, name_len);
455 ri->name[name_len] = 0;
457 if (ref_tree)
458 ri->ref_tree = ref_tree;
459 if (root_offset)
460 ri->root_offset = root_offset;
461 if (flags)
462 ri->flags = flags;
463 if (dir_id)
464 ri->dir_id = dir_id;
465 if (gen)
466 ri->gen = gen;
467 if (ogen)
468 ri->ogen = ogen;
469 if (!ri->ogen && root_offset)
470 ri->ogen = root_offset;
471 if (ot)
472 ri->otime = ot;
473 if (uuid)
474 memcpy(&ri->uuid, uuid, BTRFS_UUID_SIZE);
476 return 0;
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;
499 int ret;
501 ret = update_root(root_lookup, root_id, ref_tree, root_offset, flags,
502 dir_id, name, name_len, ogen, gen, ot, uuid);
503 if (!ret)
504 return 0;
506 ri = malloc(sizeof(*ri));
507 if (!ri) {
508 printf("memory allocation failed\n");
509 exit(1);
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);
516 if (!ri->name) {
517 fprintf(stderr, "memory allocation failed\n");
518 exit(1);
520 strncpy(ri->name, name, name_len);
521 ri->name[name_len] = 0;
523 if (ref_tree)
524 ri->ref_tree = ref_tree;
525 if (dir_id)
526 ri->dir_id = dir_id;
527 if (root_offset)
528 ri->root_offset = root_offset;
529 if (flags)
530 ri->flags = flags;
531 if (gen)
532 ri->gen = gen;
533 if (ogen)
534 ri->ogen = ogen;
535 if (!ri->ogen && root_offset)
536 ri->ogen = root_offset;
537 if (ot)
538 ri->otime = ot;
540 if (uuid)
541 memcpy(&ri->uuid, uuid, BTRFS_UUID_SIZE);
543 ret = root_tree_insert(root_lookup, ri);
544 if (ret) {
545 printf("failed to insert tree %llu\n", (unsigned long long)root_id);
546 exit(1);
548 return 0;
551 void __free_root_info(struct root_info *ri)
553 if (ri->name)
554 free(ri->name);
556 if (ri->path)
557 free(ri->path);
559 if (ri->full_path)
560 free(ri->full_path);
562 free(ri);
565 void __free_all_subvolumn(struct root_lookup *root_tree)
567 struct root_info *entry;
568 struct rb_node *n;
570 n = rb_first(&root_tree->root);
571 while (n) {
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,
588 u64 top_id)
590 char *full_path = NULL;
591 int len = 0;
592 struct root_info *found;
595 * we go backwards from the root_info object and add pathnames
596 * from parent directories as we go.
598 found = ri;
599 while (1) {
600 char *tmp;
601 u64 next;
602 int add_len = strlen(found->path);
604 /* room for / and for null */
605 tmp = malloc(add_len + 2 + len);
606 if (!tmp) {
607 perror("malloc failed");
608 exit(1);
610 if (full_path) {
611 memcpy(tmp + add_len + 1, full_path, len);
612 tmp[add_len] = '/';
613 memcpy(tmp, found->path, add_len);
614 tmp [add_len + len + 1] = '\0';
615 free(full_path);
616 full_path = tmp;
617 len += add_len + 1;
618 } else {
619 full_path = strdup(found->path);
620 len = add_len;
623 next = found->ref_tree;
625 if (next == top_id) {
626 ri->top_id = top_id;
627 break;
630 if (next == BTRFS_FS_TREE_OBJECTID) {
631 char p[] = "<FS_TREE>";
632 add_len = strlen(p);
633 len = strlen(full_path);
634 tmp = malloc(len + add_len + 2);
635 memcpy(tmp + add_len + 1, full_path, len);
636 tmp[add_len] = '/';
637 memcpy(tmp, p, add_len);
638 free(full_path);
639 full_path = tmp;
640 ri->top_id = next;
641 break;
645 * if the ref_tree wasn't in our tree of roots, we're
646 * at the top
648 found = root_tree_search(rl, next);
649 if (!found) {
650 ri->top_id = next;
651 break;
655 ri->full_path = full_path;
657 return 0;
661 * for a single root_info, ask the kernel to give us a path name
662 * inside it's ref_root for the dir_id where it lives.
664 * This fills in root_info->path with the path to the directory and and
665 * appends this root's name.
667 static int lookup_ino_path(int fd, struct root_info *ri)
669 struct btrfs_ioctl_ino_lookup_args args;
670 int ret, e;
672 if (ri->path)
673 return 0;
675 memset(&args, 0, sizeof(args));
676 args.treeid = ri->ref_tree;
677 args.objectid = ri->dir_id;
679 ret = ioctl(fd, BTRFS_IOC_INO_LOOKUP, &args);
680 e = errno;
681 if (ret) {
682 fprintf(stderr, "ERROR: Failed to lookup path for root %llu - %s\n",
683 (unsigned long long)ri->ref_tree,
684 strerror(e));
685 return ret;
688 if (args.name[0]) {
690 * we're in a subdirectory of ref_tree, the kernel ioctl
691 * puts a / in there for us
693 ri->path = malloc(strlen(ri->name) + strlen(args.name) + 1);
694 if (!ri->path) {
695 perror("malloc failed");
696 exit(1);
698 strcpy(ri->path, args.name);
699 strcat(ri->path, ri->name);
700 } else {
701 /* we're at the root of ref_tree */
702 ri->path = strdup(ri->name);
703 if (!ri->path) {
704 perror("strdup failed");
705 exit(1);
708 return 0;
711 /* finding the generation for a given path is a two step process.
712 * First we use the inode loookup routine to find out the root id
714 * Then we use the tree search ioctl to scan all the root items for a
715 * given root id and spit out the latest generation we can find
717 static u64 find_root_gen(int fd)
719 struct btrfs_ioctl_ino_lookup_args ino_args;
720 int ret;
721 struct btrfs_ioctl_search_args args;
722 struct btrfs_ioctl_search_key *sk = &args.key;
723 struct btrfs_ioctl_search_header *sh;
724 unsigned long off = 0;
725 u64 max_found = 0;
726 int i;
727 int e;
729 memset(&ino_args, 0, sizeof(ino_args));
730 ino_args.objectid = BTRFS_FIRST_FREE_OBJECTID;
732 /* this ioctl fills in ino_args->treeid */
733 ret = ioctl(fd, BTRFS_IOC_INO_LOOKUP, &ino_args);
734 e = errno;
735 if (ret) {
736 fprintf(stderr, "ERROR: Failed to lookup path for dirid %llu - %s\n",
737 (unsigned long long)BTRFS_FIRST_FREE_OBJECTID,
738 strerror(e));
739 return 0;
742 memset(&args, 0, sizeof(args));
744 sk->tree_id = 1;
747 * there may be more than one ROOT_ITEM key if there are
748 * snapshots pending deletion, we have to loop through
749 * them.
751 sk->min_objectid = ino_args.treeid;
752 sk->max_objectid = ino_args.treeid;
753 sk->max_type = BTRFS_ROOT_ITEM_KEY;
754 sk->min_type = BTRFS_ROOT_ITEM_KEY;
755 sk->max_offset = (u64)-1;
756 sk->max_transid = (u64)-1;
757 sk->nr_items = 4096;
759 while (1) {
760 ret = ioctl(fd, BTRFS_IOC_TREE_SEARCH, &args);
761 e = errno;
762 if (ret < 0) {
763 fprintf(stderr, "ERROR: can't perform the search - %s\n",
764 strerror(e));
765 return 0;
767 /* the ioctl returns the number of item it found in nr_items */
768 if (sk->nr_items == 0)
769 break;
771 off = 0;
772 for (i = 0; i < sk->nr_items; i++) {
773 struct btrfs_root_item *item;
774 sh = (struct btrfs_ioctl_search_header *)(args.buf +
775 off);
777 off += sizeof(*sh);
778 item = (struct btrfs_root_item *)(args.buf + off);
779 off += sh->len;
781 sk->min_objectid = sh->objectid;
782 sk->min_type = sh->type;
783 sk->min_offset = sh->offset;
785 if (sh->objectid > ino_args.treeid)
786 break;
788 if (sh->objectid == ino_args.treeid &&
789 sh->type == BTRFS_ROOT_ITEM_KEY) {
790 max_found = max(max_found,
791 btrfs_root_generation(item));
794 if (sk->min_offset < (u64)-1)
795 sk->min_offset++;
796 else
797 break;
799 if (sk->min_type != BTRFS_ROOT_ITEM_KEY)
800 break;
801 if (sk->min_objectid != BTRFS_ROOT_ITEM_KEY)
802 break;
804 return max_found;
807 /* pass in a directory id and this will return
808 * the full path of the parent directory inside its
809 * subvolume root.
811 * It may return NULL if it is in the root, or an ERR_PTR if things
812 * go badly.
814 static char *__ino_resolve(int fd, u64 dirid)
816 struct btrfs_ioctl_ino_lookup_args args;
817 int ret;
818 char *full;
819 int e;
821 memset(&args, 0, sizeof(args));
822 args.objectid = dirid;
824 ret = ioctl(fd, BTRFS_IOC_INO_LOOKUP, &args);
825 e = errno;
826 if (ret) {
827 fprintf(stderr, "ERROR: Failed to lookup path for dirid %llu - %s\n",
828 (unsigned long long)dirid, strerror(e) );
829 return ERR_PTR(ret);
832 if (args.name[0]) {
834 * we're in a subdirectory of ref_tree, the kernel ioctl
835 * puts a / in there for us
837 full = strdup(args.name);
838 if (!full) {
839 perror("malloc failed");
840 return ERR_PTR(-ENOMEM);
842 } else {
843 /* we're at the root of ref_tree */
844 full = NULL;
846 return full;
850 * simple string builder, returning a new string with both
851 * dirid and name
853 char *build_name(char *dirid, char *name)
855 char *full;
856 if (!dirid)
857 return strdup(name);
859 full = malloc(strlen(dirid) + strlen(name) + 1);
860 if (!full)
861 return NULL;
862 strcpy(full, dirid);
863 strcat(full, name);
864 return full;
868 * given an inode number, this returns the full path name inside the subvolume
869 * to that file/directory. cache_dirid and cache_name are used to
870 * cache the results so we can avoid tree searches if a later call goes
871 * to the same directory or file name
873 static char *ino_resolve(int fd, u64 ino, u64 *cache_dirid, char **cache_name)
876 u64 dirid;
877 char *dirname;
878 char *name;
879 char *full;
880 int ret;
881 struct btrfs_ioctl_search_args args;
882 struct btrfs_ioctl_search_key *sk = &args.key;
883 struct btrfs_ioctl_search_header *sh;
884 unsigned long off = 0;
885 int namelen;
886 int e;
888 memset(&args, 0, sizeof(args));
890 sk->tree_id = 0;
893 * step one, we search for the inode back ref. We just use the first
894 * one
896 sk->min_objectid = ino;
897 sk->max_objectid = ino;
898 sk->max_type = BTRFS_INODE_REF_KEY;
899 sk->max_offset = (u64)-1;
900 sk->min_type = BTRFS_INODE_REF_KEY;
901 sk->max_transid = (u64)-1;
902 sk->nr_items = 1;
904 ret = ioctl(fd, BTRFS_IOC_TREE_SEARCH, &args);
905 e = errno;
906 if (ret < 0) {
907 fprintf(stderr, "ERROR: can't perform the search - %s\n",
908 strerror(e));
909 return NULL;
911 /* the ioctl returns the number of item it found in nr_items */
912 if (sk->nr_items == 0)
913 return NULL;
915 off = 0;
916 sh = (struct btrfs_ioctl_search_header *)(args.buf + off);
918 if (sh->type == BTRFS_INODE_REF_KEY) {
919 struct btrfs_inode_ref *ref;
920 dirid = sh->offset;
922 ref = (struct btrfs_inode_ref *)(sh + 1);
923 namelen = btrfs_stack_inode_ref_name_len(ref);
925 name = (char *)(ref + 1);
926 name = strndup(name, namelen);
928 /* use our cached value */
929 if (dirid == *cache_dirid && *cache_name) {
930 dirname = *cache_name;
931 goto build;
933 } else {
934 return NULL;
937 * the inode backref gives us the file name and the parent directory id.
938 * From here we use __ino_resolve to get the path to the parent
940 dirname = __ino_resolve(fd, dirid);
941 build:
942 full = build_name(dirname, name);
943 if (*cache_name && dirname != *cache_name)
944 free(*cache_name);
946 *cache_name = dirname;
947 *cache_dirid = dirid;
948 free(name);
950 return full;
953 int btrfs_list_get_default_subvolume(int fd, u64 *default_id)
955 struct btrfs_ioctl_search_args args;
956 struct btrfs_ioctl_search_key *sk = &args.key;
957 struct btrfs_ioctl_search_header *sh;
958 u64 found = 0;
959 int ret;
961 memset(&args, 0, sizeof(args));
964 * search for a dir item with a name 'default' in the tree of
965 * tree roots, it should point us to a default root
967 sk->tree_id = 1;
969 /* don't worry about ancient format and request only one item */
970 sk->nr_items = 1;
972 sk->max_objectid = BTRFS_ROOT_TREE_DIR_OBJECTID;
973 sk->min_objectid = BTRFS_ROOT_TREE_DIR_OBJECTID;
974 sk->max_type = BTRFS_DIR_ITEM_KEY;
975 sk->min_type = BTRFS_DIR_ITEM_KEY;
976 sk->max_offset = (u64)-1;
977 sk->max_transid = (u64)-1;
979 ret = ioctl(fd, BTRFS_IOC_TREE_SEARCH, &args);
980 if (ret < 0)
981 return ret;
983 /* the ioctl returns the number of items it found in nr_items */
984 if (sk->nr_items == 0)
985 goto out;
987 sh = (struct btrfs_ioctl_search_header *)args.buf;
989 if (sh->type == BTRFS_DIR_ITEM_KEY) {
990 struct btrfs_dir_item *di;
991 int name_len;
992 char *name;
994 di = (struct btrfs_dir_item *)(sh + 1);
995 name_len = btrfs_stack_dir_name_len(di);
996 name = (char *)(di + 1);
998 if (!strncmp("default", name, name_len))
999 found = btrfs_disk_key_objectid(&di->location);
1002 out:
1003 *default_id = found;
1004 return 0;
1007 static int __list_subvol_search(int fd, struct root_lookup *root_lookup)
1009 int ret;
1010 struct btrfs_ioctl_search_args args;
1011 struct btrfs_ioctl_search_key *sk = &args.key;
1012 struct btrfs_ioctl_search_header *sh;
1013 struct btrfs_root_ref *ref;
1014 struct btrfs_root_item *ri;
1015 unsigned long off = 0;
1016 int name_len;
1017 char *name;
1018 u64 dir_id;
1019 u64 gen = 0;
1020 u64 ogen;
1021 u64 flags;
1022 int i;
1023 time_t t;
1024 u8 uuid[BTRFS_UUID_SIZE];
1026 root_lookup_init(root_lookup);
1027 memset(&args, 0, sizeof(args));
1029 /* search in the tree of tree roots */
1030 sk->tree_id = 1;
1033 * set the min and max to backref keys. The search will
1034 * only send back this type of key now.
1036 sk->max_type = BTRFS_ROOT_BACKREF_KEY;
1037 sk->min_type = BTRFS_ROOT_ITEM_KEY;
1039 sk->min_objectid = BTRFS_FIRST_FREE_OBJECTID;
1042 * set all the other params to the max, we'll take any objectid
1043 * and any trans
1045 sk->max_objectid = BTRFS_LAST_FREE_OBJECTID;
1046 sk->max_offset = (u64)-1;
1047 sk->max_transid = (u64)-1;
1049 /* just a big number, doesn't matter much */
1050 sk->nr_items = 4096;
1052 while(1) {
1053 ret = ioctl(fd, BTRFS_IOC_TREE_SEARCH, &args);
1054 if (ret < 0)
1055 return ret;
1056 /* the ioctl returns the number of item it found in nr_items */
1057 if (sk->nr_items == 0)
1058 break;
1060 off = 0;
1063 * for each item, pull the key out of the header and then
1064 * read the root_ref item it contains
1066 for (i = 0; i < sk->nr_items; i++) {
1067 sh = (struct btrfs_ioctl_search_header *)(args.buf +
1068 off);
1069 off += sizeof(*sh);
1070 if (sh->type == BTRFS_ROOT_BACKREF_KEY) {
1071 ref = (struct btrfs_root_ref *)(args.buf + off);
1072 name_len = btrfs_stack_root_ref_name_len(ref);
1073 name = (char *)(ref + 1);
1074 dir_id = btrfs_stack_root_ref_dirid(ref);
1076 add_root(root_lookup, sh->objectid, sh->offset,
1077 0, 0, dir_id, name, name_len, 0, 0, 0,
1078 NULL);
1079 } else if (sh->type == BTRFS_ROOT_ITEM_KEY) {
1080 ri = (struct btrfs_root_item *)(args.buf + off);
1081 gen = btrfs_root_generation(ri);
1082 flags = btrfs_root_flags(ri);
1083 if(sh->len >
1084 sizeof(struct btrfs_root_item_v0)) {
1085 t = ri->otime.sec;
1086 ogen = btrfs_root_otransid(ri);
1087 memcpy(uuid, ri->uuid, BTRFS_UUID_SIZE);
1088 } else {
1089 t = 0;
1090 ogen = 0;
1091 memset(uuid, 0, BTRFS_UUID_SIZE);
1094 add_root(root_lookup, sh->objectid, 0,
1095 sh->offset, flags, 0, NULL, 0, ogen,
1096 gen, t, uuid);
1099 off += sh->len;
1102 * record the mins in sk so we can make sure the
1103 * next search doesn't repeat this root
1105 sk->min_objectid = sh->objectid;
1106 sk->min_type = sh->type;
1107 sk->min_offset = sh->offset;
1109 sk->nr_items = 4096;
1110 sk->min_offset++;
1111 if (!sk->min_offset) /* overflow */
1112 sk->min_type++;
1113 else
1114 continue;
1116 if (sk->min_type > BTRFS_ROOT_BACKREF_KEY) {
1117 sk->min_type = BTRFS_ROOT_ITEM_KEY;
1118 sk->min_objectid++;
1119 } else
1120 continue;
1122 if (sk->min_objectid > sk->max_objectid)
1123 break;
1126 return 0;
1129 static int filter_by_rootid(struct root_info *ri, u64 data)
1131 return ri->root_id == data;
1134 static int filter_snapshot(struct root_info *ri, u64 data)
1136 return !!ri->root_offset;
1139 static int filter_flags(struct root_info *ri, u64 flags)
1141 return ri->flags & flags;
1144 static int filter_gen_more(struct root_info *ri, u64 data)
1146 return ri->gen >= data;
1149 static int filter_gen_less(struct root_info *ri, u64 data)
1151 return ri->gen <= data;
1154 static int filter_gen_equal(struct root_info *ri, u64 data)
1156 return ri->gen == data;
1159 static int filter_cgen_more(struct root_info *ri, u64 data)
1161 return ri->ogen >= data;
1164 static int filter_cgen_less(struct root_info *ri, u64 data)
1166 return ri->ogen <= data;
1169 static int filter_cgen_equal(struct root_info *ri, u64 data)
1171 return ri->ogen == data;
1174 static int filter_topid_equal(struct root_info *ri, u64 data)
1176 return ri->top_id == data;
1179 static btrfs_list_filter_func all_filter_funcs[] = {
1180 [BTRFS_LIST_FILTER_ROOTID] = filter_by_rootid,
1181 [BTRFS_LIST_FILTER_SNAPSHOT_ONLY] = filter_snapshot,
1182 [BTRFS_LIST_FILTER_FLAGS] = filter_flags,
1183 [BTRFS_LIST_FILTER_GEN_MORE] = filter_gen_more,
1184 [BTRFS_LIST_FILTER_GEN_LESS] = filter_gen_less,
1185 [BTRFS_LIST_FILTER_GEN_EQUAL] = filter_gen_equal,
1186 [BTRFS_LIST_FILTER_CGEN_MORE] = filter_cgen_more,
1187 [BTRFS_LIST_FILTER_CGEN_LESS] = filter_cgen_less,
1188 [BTRFS_LIST_FILTER_CGEN_EQUAL] = filter_cgen_equal,
1189 [BTRFS_LIST_FILTER_TOPID_EQUAL] = filter_topid_equal,
1192 struct btrfs_list_filter_set *btrfs_list_alloc_filter_set(void)
1194 struct btrfs_list_filter_set *set;
1195 int size;
1197 size = sizeof(struct btrfs_list_filter_set) +
1198 BTRFS_LIST_NFILTERS_INCREASE * sizeof(struct btrfs_list_filter);
1199 set = malloc(size);
1200 if (!set) {
1201 fprintf(stderr, "memory allocation failed\n");
1202 exit(1);
1205 memset(set, 0, size);
1206 set->total = BTRFS_LIST_NFILTERS_INCREASE;
1208 return set;
1211 void btrfs_list_free_filter_set(struct btrfs_list_filter_set *filter_set)
1213 free(filter_set);
1216 int btrfs_list_setup_filter(struct btrfs_list_filter_set **filter_set,
1217 enum btrfs_list_filter_enum filter, u64 data)
1219 struct btrfs_list_filter_set *set = *filter_set;
1220 int size;
1222 BUG_ON(!set);
1223 BUG_ON(filter >= BTRFS_LIST_FILTER_MAX);
1224 BUG_ON(set->nfilters > set->total);
1226 if (set->nfilters == set->total) {
1227 size = set->total + BTRFS_LIST_NFILTERS_INCREASE;
1228 size = sizeof(*set) + size * sizeof(struct btrfs_list_filter);
1229 set = realloc(set, size);
1230 if (!set) {
1231 fprintf(stderr, "memory allocation failed\n");
1232 exit(1);
1235 memset(&set->filters[set->total], 0,
1236 BTRFS_LIST_NFILTERS_INCREASE *
1237 sizeof(struct btrfs_list_filter));
1238 set->total += BTRFS_LIST_NFILTERS_INCREASE;
1239 *filter_set = set;
1242 BUG_ON(set->filters[set->nfilters].filter_func);
1244 set->filters[set->nfilters].filter_func = all_filter_funcs[filter];
1245 set->filters[set->nfilters].data = data;
1246 set->nfilters++;
1247 return 0;
1250 static int filter_root(struct root_info *ri,
1251 struct btrfs_list_filter_set *set)
1253 int i, ret;
1255 if (!set || !set->nfilters)
1256 return 1;
1258 for (i = 0; i < set->nfilters; i++) {
1259 if (!set->filters[i].filter_func)
1260 break;
1261 ret = set->filters[i].filter_func(ri, set->filters[i].data);
1262 if (!ret)
1263 return 0;
1265 return 1;
1268 static void __filter_and_sort_subvol(struct root_lookup *all_subvols,
1269 struct root_lookup *sort_tree,
1270 struct btrfs_list_filter_set *filter_set,
1271 struct btrfs_list_comparer_set *comp_set,
1272 int fd)
1274 struct rb_node *n;
1275 struct root_info *entry;
1276 int ret;
1277 u64 top_id = btrfs_list_get_path_rootid(fd);
1279 root_lookup_init(sort_tree);
1281 n = rb_last(&all_subvols->root);
1282 while (n) {
1283 entry = rb_entry(n, struct root_info, rb_node);
1285 resolve_root(all_subvols, entry, top_id);
1286 ret = filter_root(entry, filter_set);
1287 if (ret)
1288 sort_tree_insert(sort_tree, entry, comp_set);
1289 n = rb_prev(n);
1293 static int __list_subvol_fill_paths(int fd, struct root_lookup *root_lookup)
1295 struct rb_node *n;
1297 n = rb_first(&root_lookup->root);
1298 while (n) {
1299 struct root_info *entry;
1300 int ret;
1301 entry = rb_entry(n, struct root_info, rb_node);
1302 ret = lookup_ino_path(fd, entry);
1303 if(ret < 0)
1304 return ret;
1305 n = rb_next(n);
1308 return 0;
1311 static void print_subvolume_column(struct root_info *subv,
1312 enum btrfs_list_column_enum column)
1314 char tstr[256];
1315 char uuidparse[37];
1317 BUG_ON(column >= BTRFS_LIST_ALL || column < 0);
1319 switch (column) {
1320 case BTRFS_LIST_OBJECTID:
1321 printf("%llu", subv->root_id);
1322 break;
1323 case BTRFS_LIST_GENERATION:
1324 printf("%llu", subv->gen);
1325 break;
1326 case BTRFS_LIST_OGENERATION:
1327 printf("%llu", subv->ogen);
1328 break;
1329 case BTRFS_LIST_PARENT:
1330 printf("%llu", subv->ref_tree);
1331 break;
1332 case BTRFS_LIST_TOP_LEVEL:
1333 printf("%llu", subv->top_id);
1334 break;
1335 case BTRFS_LIST_OTIME:
1336 if (subv->otime)
1337 strftime(tstr, 256, "%Y-%m-%d %X",
1338 localtime(&subv->otime));
1339 else
1340 strcpy(tstr, "-");
1341 printf("%s", tstr);
1342 break;
1343 case BTRFS_LIST_UUID:
1344 if (uuid_is_null(subv->uuid))
1345 strcpy(uuidparse, "-");
1346 else
1347 uuid_unparse(subv->uuid, uuidparse);
1348 printf("%s", uuidparse);
1349 break;
1350 case BTRFS_LIST_PATH:
1351 BUG_ON(!subv->full_path);
1352 printf("%s", subv->full_path);
1353 break;
1354 default:
1355 break;
1359 static void print_single_volume_info_table(struct root_info *subv)
1361 int i;
1363 for (i = 0; i < BTRFS_LIST_ALL; i++) {
1364 if (!btrfs_list_columns[i].need_print)
1365 continue;
1367 print_subvolume_column(subv, i);
1369 if (i != BTRFS_LIST_PATH)
1370 printf("\t");
1372 if (i == BTRFS_LIST_TOP_LEVEL)
1373 printf("\t");
1375 printf("\n");
1378 static void print_single_volume_info_default(struct root_info *subv)
1380 int i;
1382 for (i = 0; i < BTRFS_LIST_ALL; i++) {
1383 if (!btrfs_list_columns[i].need_print)
1384 continue;
1386 printf("%s ", btrfs_list_columns[i].name);
1387 print_subvolume_column(subv, i);
1389 if (i != BTRFS_LIST_PATH)
1390 printf(" ");
1392 printf("\n");
1395 static void print_all_volume_info_tab_head()
1397 int i;
1398 int len;
1399 char barrier[20];
1401 for (i = 0; i < BTRFS_LIST_ALL; i++) {
1402 if (btrfs_list_columns[i].need_print)
1403 printf("%s\t", btrfs_list_columns[i].name);
1405 if (i == BTRFS_LIST_ALL-1)
1406 printf("\n");
1409 for (i = 0; i < BTRFS_LIST_ALL; i++) {
1410 memset(barrier, 0, sizeof(barrier));
1412 if (btrfs_list_columns[i].need_print) {
1413 len = strlen(btrfs_list_columns[i].name);
1414 while (len--)
1415 strcat(barrier, "-");
1417 printf("%s\t", barrier);
1419 if (i == BTRFS_LIST_ALL-1)
1420 printf("\n");
1424 static void print_all_volume_info(struct root_lookup *sorted_tree,
1425 int is_tab_result)
1427 struct rb_node *n;
1428 struct root_info *entry;
1430 if (is_tab_result)
1431 print_all_volume_info_tab_head();
1433 n = rb_first(&sorted_tree->root);
1434 while (n) {
1435 entry = rb_entry(n, struct root_info, sort_node);
1436 if (is_tab_result)
1437 print_single_volume_info_table(entry);
1438 else
1439 print_single_volume_info_default(entry);
1440 n = rb_next(n);
1444 int btrfs_list_subvols(int fd, struct btrfs_list_filter_set *filter_set,
1445 struct btrfs_list_comparer_set *comp_set,
1446 int is_tab_result)
1448 struct root_lookup root_lookup;
1449 struct root_lookup root_sort;
1450 int ret;
1452 ret = __list_subvol_search(fd, &root_lookup);
1453 if (ret) {
1454 fprintf(stderr, "ERROR: can't perform the search - %s\n",
1455 strerror(errno));
1456 return ret;
1460 * now we have an rbtree full of root_info objects, but we need to fill
1461 * in their path names within the subvol that is referencing each one.
1463 ret = __list_subvol_fill_paths(fd, &root_lookup);
1464 if (ret < 0)
1465 return ret;
1467 __filter_and_sort_subvol(&root_lookup, &root_sort, filter_set,
1468 comp_set, fd);
1470 print_all_volume_info(&root_sort, is_tab_result);
1471 __free_all_subvolumn(&root_lookup);
1472 return ret;
1475 static int print_one_extent(int fd, struct btrfs_ioctl_search_header *sh,
1476 struct btrfs_file_extent_item *item,
1477 u64 found_gen, u64 *cache_dirid,
1478 char **cache_dir_name, u64 *cache_ino,
1479 char **cache_full_name)
1481 u64 len = 0;
1482 u64 disk_start = 0;
1483 u64 disk_offset = 0;
1484 u8 type;
1485 int compressed = 0;
1486 int flags = 0;
1487 char *name = NULL;
1489 if (sh->objectid == *cache_ino) {
1490 name = *cache_full_name;
1491 } else if (*cache_full_name) {
1492 free(*cache_full_name);
1493 *cache_full_name = NULL;
1495 if (!name) {
1496 name = ino_resolve(fd, sh->objectid, cache_dirid,
1497 cache_dir_name);
1498 *cache_full_name = name;
1499 *cache_ino = sh->objectid;
1501 if (!name)
1502 return -EIO;
1504 type = btrfs_stack_file_extent_type(item);
1505 compressed = btrfs_stack_file_extent_compression(item);
1507 if (type == BTRFS_FILE_EXTENT_REG ||
1508 type == BTRFS_FILE_EXTENT_PREALLOC) {
1509 disk_start = btrfs_stack_file_extent_disk_bytenr(item);
1510 disk_offset = btrfs_stack_file_extent_offset(item);
1511 len = btrfs_stack_file_extent_num_bytes(item);
1512 } else if (type == BTRFS_FILE_EXTENT_INLINE) {
1513 disk_start = 0;
1514 disk_offset = 0;
1515 len = btrfs_stack_file_extent_ram_bytes(item);
1516 } else {
1517 printf("unhandled extent type %d for inode %llu "
1518 "file offset %llu gen %llu\n",
1519 type,
1520 (unsigned long long)sh->objectid,
1521 (unsigned long long)sh->offset,
1522 (unsigned long long)found_gen);
1524 return -EIO;
1526 printf("inode %llu file offset %llu len %llu disk start %llu "
1527 "offset %llu gen %llu flags ",
1528 (unsigned long long)sh->objectid,
1529 (unsigned long long)sh->offset,
1530 (unsigned long long)len,
1531 (unsigned long long)disk_start,
1532 (unsigned long long)disk_offset,
1533 (unsigned long long)found_gen);
1535 if (compressed) {
1536 printf("COMPRESS");
1537 flags++;
1539 if (type == BTRFS_FILE_EXTENT_PREALLOC) {
1540 printf("%sPREALLOC", flags ? "|" : "");
1541 flags++;
1543 if (type == BTRFS_FILE_EXTENT_INLINE) {
1544 printf("%sINLINE", flags ? "|" : "");
1545 flags++;
1547 if (!flags)
1548 printf("NONE");
1550 printf(" %s\n", name);
1551 return 0;
1554 int btrfs_list_find_updated_files(int fd, u64 root_id, u64 oldest_gen)
1556 int ret;
1557 struct btrfs_ioctl_search_args args;
1558 struct btrfs_ioctl_search_key *sk = &args.key;
1559 struct btrfs_ioctl_search_header *sh;
1560 struct btrfs_file_extent_item *item;
1561 unsigned long off = 0;
1562 u64 found_gen;
1563 u64 max_found = 0;
1564 int i;
1565 int e;
1566 u64 cache_dirid = 0;
1567 u64 cache_ino = 0;
1568 char *cache_dir_name = NULL;
1569 char *cache_full_name = NULL;
1570 struct btrfs_file_extent_item backup;
1572 memset(&backup, 0, sizeof(backup));
1573 memset(&args, 0, sizeof(args));
1575 sk->tree_id = root_id;
1578 * set all the other params to the max, we'll take any objectid
1579 * and any trans
1581 sk->max_objectid = (u64)-1;
1582 sk->max_offset = (u64)-1;
1583 sk->max_transid = (u64)-1;
1584 sk->max_type = BTRFS_EXTENT_DATA_KEY;
1585 sk->min_transid = oldest_gen;
1586 /* just a big number, doesn't matter much */
1587 sk->nr_items = 4096;
1589 max_found = find_root_gen(fd);
1590 while(1) {
1591 ret = ioctl(fd, BTRFS_IOC_TREE_SEARCH, &args);
1592 e = errno;
1593 if (ret < 0) {
1594 fprintf(stderr, "ERROR: can't perform the search- %s\n",
1595 strerror(e));
1596 return ret;
1598 /* the ioctl returns the number of item it found in nr_items */
1599 if (sk->nr_items == 0)
1600 break;
1602 off = 0;
1605 * for each item, pull the key out of the header and then
1606 * read the root_ref item it contains
1608 for (i = 0; i < sk->nr_items; i++) {
1609 sh = (struct btrfs_ioctl_search_header *)(args.buf +
1610 off);
1611 off += sizeof(*sh);
1614 * just in case the item was too big, pass something other
1615 * than garbage
1617 if (sh->len == 0)
1618 item = &backup;
1619 else
1620 item = (struct btrfs_file_extent_item *)(args.buf +
1621 off);
1622 found_gen = btrfs_stack_file_extent_generation(item);
1623 if (sh->type == BTRFS_EXTENT_DATA_KEY &&
1624 found_gen >= oldest_gen) {
1625 print_one_extent(fd, sh, item, found_gen,
1626 &cache_dirid, &cache_dir_name,
1627 &cache_ino, &cache_full_name);
1629 off += sh->len;
1632 * record the mins in sk so we can make sure the
1633 * next search doesn't repeat this root
1635 sk->min_objectid = sh->objectid;
1636 sk->min_offset = sh->offset;
1637 sk->min_type = sh->type;
1639 sk->nr_items = 4096;
1640 if (sk->min_offset < (u64)-1)
1641 sk->min_offset++;
1642 else if (sk->min_objectid < (u64)-1) {
1643 sk->min_objectid++;
1644 sk->min_offset = 0;
1645 sk->min_type = 0;
1646 } else
1647 break;
1649 free(cache_dir_name);
1650 free(cache_full_name);
1651 printf("transid marker was %llu\n", (unsigned long long)max_found);
1652 return ret;
1655 char *btrfs_list_path_for_root(int fd, u64 root)
1657 struct root_lookup root_lookup;
1658 struct rb_node *n;
1659 char *ret_path = NULL;
1660 int ret;
1661 u64 top_id = btrfs_list_get_path_rootid(fd);
1663 ret = __list_subvol_search(fd, &root_lookup);
1664 if (ret < 0)
1665 return ERR_PTR(ret);
1667 ret = __list_subvol_fill_paths(fd, &root_lookup);
1668 if (ret < 0)
1669 return ERR_PTR(ret);
1671 n = rb_last(&root_lookup.root);
1672 while (n) {
1673 struct root_info *entry;
1675 entry = rb_entry(n, struct root_info, rb_node);
1676 resolve_root(&root_lookup, entry, top_id);
1677 if (entry->root_id == root) {
1678 ret_path = entry->full_path;
1679 entry->full_path = NULL;
1682 n = rb_prev(n);
1684 __free_all_subvolumn(&root_lookup);
1686 return ret_path;
1689 int btrfs_list_parse_sort_string(char *optarg,
1690 struct btrfs_list_comparer_set **comps)
1692 int order;
1693 int flag;
1694 char *p;
1695 char **ptr_argv;
1696 int what_to_sort;
1698 while ((p = strtok(optarg, ",")) != NULL) {
1699 flag = 0;
1700 ptr_argv = all_sort_items;
1702 while (*ptr_argv) {
1703 if (strcmp(*ptr_argv, p) == 0) {
1704 flag = 1;
1705 break;
1706 } else {
1707 p++;
1708 if (strcmp(*ptr_argv, p) == 0) {
1709 flag = 1;
1710 p--;
1711 break;
1713 p--;
1715 ptr_argv++;
1718 if (flag == 0)
1719 return -1;
1721 else {
1722 if (*p == '+') {
1723 order = 0;
1724 p++;
1725 } else if (*p == '-') {
1726 order = 1;
1727 p++;
1728 } else
1729 order = 0;
1731 what_to_sort = btrfs_list_get_sort_item(p);
1732 btrfs_list_setup_comparer(comps, what_to_sort, order);
1734 optarg = NULL;
1737 return 0;
1741 * This function is used to parse the argument of filter condition.
1743 * type is the filter object.
1745 int btrfs_list_parse_filter_string(char *optarg,
1746 struct btrfs_list_filter_set **filters,
1747 enum btrfs_list_filter_enum type)
1750 u64 arg;
1751 char *ptr_parse_end = NULL;
1752 char *ptr_optarg_end = optarg + strlen(optarg);
1754 switch (*(optarg++)) {
1755 case '+':
1756 arg = (u64)strtol(optarg, &ptr_parse_end, 10);
1757 type += 2;
1758 if (ptr_parse_end != ptr_optarg_end)
1759 return -1;
1761 btrfs_list_setup_filter(filters, type, arg);
1762 break;
1763 case '-':
1764 arg = (u64)strtoll(optarg, &ptr_parse_end, 10);
1765 type += 1;
1766 if (ptr_parse_end != ptr_optarg_end)
1767 return -1;
1769 btrfs_list_setup_filter(filters, type, arg);
1770 break;
1771 default:
1772 optarg--;
1773 arg = (u64)strtoll(optarg, &ptr_parse_end, 10);
1775 if (ptr_parse_end != ptr_optarg_end)
1776 return -1;
1777 btrfs_list_setup_filter(filters, type, arg);
1778 break;
1781 return 0;
1784 u64 btrfs_list_get_path_rootid(int fd)
1786 int ret;
1787 struct btrfs_ioctl_ino_lookup_args args;
1789 memset(&args, 0, sizeof(args));
1790 args.objectid = BTRFS_FIRST_FREE_OBJECTID;
1792 ret = ioctl(fd, BTRFS_IOC_INO_LOOKUP, &args);
1793 if (ret < 0) {
1794 fprintf(stderr,
1795 "ERROR: can't perform the search -%s\n",
1796 strerror(errno));
1797 return ret;
1799 return args.treeid;