f804dfc6dd1866b60d225d436c2a5c696eebb3d7
[platform/upstream/btrfs-progs.git] / btrfs-list.c
1 /*
2  * Copyright (C) 2010 Oracle.  All rights reserved.
3  *
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.
7  *
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.
12  *
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.
17  */
18
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 "kerncompat.h"
34 #include "ctree.h"
35 #include "transaction.h"
36 #include "utils.h"
37 #include "version.h"
38
39 /* we store all the roots we find in an rbtree so that we can
40  * search for them later.
41  */
42 struct root_lookup {
43         struct rb_root root;
44 };
45
46 /*
47  * one of these for each root we find.
48  */
49 struct root_info {
50         struct rb_node rb_node;
51
52         /* this root's id */
53         u64 root_id;
54
55         /* the id of the root that references this one */
56         u64 ref_tree;
57
58         /* the dir id we're in from ref_tree */
59         u64 dir_id;
60
61         /* path from the subvol we live in to this root, including the
62          * root's name.  This is null until we do the extra lookup ioctl.
63          */
64         char *path;
65
66         /* the name of this root in the directory it lives in */
67         char name[];
68 };
69
70 static void root_lookup_init(struct root_lookup *tree)
71 {
72         tree->root.rb_node = NULL;
73 }
74
75 static int comp_entry(struct root_info *entry, u64 root_id, u64 ref_tree)
76 {
77         if (entry->root_id > root_id)
78                 return 1;
79         if (entry->root_id < root_id)
80                 return -1;
81         if (entry->ref_tree > ref_tree)
82                 return 1;
83         if (entry->ref_tree < ref_tree)
84                 return -1;
85         return 0;
86 }
87
88 /*
89  * insert a new root into the tree.  returns the existing root entry
90  * if one is already there.  Both root_id and ref_tree are used
91  * as the key
92  */
93 static struct rb_node *tree_insert(struct rb_root *root, u64 root_id,
94                                    u64 ref_tree, struct rb_node *node)
95 {
96         struct rb_node ** p = &root->rb_node;
97         struct rb_node * parent = NULL;
98         struct root_info *entry;
99         int comp;
100
101         while(*p) {
102                 parent = *p;
103                 entry = rb_entry(parent, struct root_info, rb_node);
104
105                 comp = comp_entry(entry, root_id, ref_tree);
106
107                 if (comp < 0)
108                         p = &(*p)->rb_left;
109                 else if (comp > 0)
110                         p = &(*p)->rb_right;
111                 else
112                         return parent;
113         }
114
115         entry = rb_entry(parent, struct root_info, rb_node);
116         rb_link_node(node, parent, p);
117         rb_insert_color(node, root);
118         return NULL;
119 }
120
121 /*
122  * find a given root id in the tree.  We return the smallest one,
123  * rb_next can be used to move forward looking for more if required
124  */
125 static struct root_info *tree_search(struct rb_root *root, u64 root_id)
126 {
127         struct rb_node * n = root->rb_node;
128         struct root_info *entry;
129
130         while(n) {
131                 entry = rb_entry(n, struct root_info, rb_node);
132
133                 if (entry->root_id < root_id)
134                         n = n->rb_left;
135                 else if (entry->root_id > root_id)
136                         n = n->rb_right;
137                 else {
138                         struct root_info *prev;
139                         struct rb_node *prev_n;
140                         while (1) {
141                                 prev_n = rb_prev(n);
142                                 if (!prev_n)
143                                         break;
144                                 prev = rb_entry(prev_n, struct root_info,
145                                                       rb_node);
146                                 if (prev->root_id != root_id)
147                                         break;
148                                 entry = prev;
149                                 n = prev_n;
150                         }
151                         return entry;
152                 }
153         }
154         return NULL;
155 }
156
157 /*
158  * this allocates a new root in the lookup tree.
159  *
160  * root_id should be the object id of the root
161  *
162  * ref_tree is the objectid of the referring root.
163  *
164  * dir_id is the directory in ref_tree where this root_id can be found.
165  *
166  * name is the name of root_id in that directory
167  *
168  * name_len is the length of name
169  */
170 static int add_root(struct root_lookup *root_lookup,
171                     u64 root_id, u64 ref_tree, u64 dir_id, char *name,
172                     int name_len)
173 {
174         struct root_info *ri;
175         struct rb_node *ret;
176         ri = malloc(sizeof(*ri) + name_len + 1);
177         if (!ri) {
178                 printf("memory allocation failed\n");
179                 exit(1);
180         }
181         memset(ri, 0, sizeof(*ri) + name_len + 1);
182         ri->path = NULL;
183         ri->dir_id = dir_id;
184         ri->root_id = root_id;
185         ri->ref_tree = ref_tree;
186         strncpy(ri->name, name, name_len);
187
188         ret = tree_insert(&root_lookup->root, root_id, ref_tree, &ri->rb_node);
189         if (ret) {
190                 printf("failed to insert tree %llu\n", (unsigned long long)root_id);
191                 exit(1);
192         }
193         return 0;
194 }
195
196 /*
197  * for a given root_info, search through the root_lookup tree to construct
198  * the full path name to it.
199  *
200  * This can't be called until all the root_info->path fields are filled
201  * in by lookup_ino_path
202  */
203 static int resolve_root(struct root_lookup *rl, struct root_info *ri)
204 {
205         u64 top_id;
206         char *full_path = NULL;
207         int len = 0;
208         struct root_info *found;
209
210         /*
211          * we go backwards from the root_info object and add pathnames
212          * from parent directories as we go.
213          */
214         found = ri;
215         while (1) {
216                 char *tmp;
217                 u64 next;
218                 int add_len = strlen(found->path);
219
220                 /* room for / and for null */
221                 tmp = malloc(add_len + 2 + len);
222                 if (full_path) {
223                         memcpy(tmp + add_len + 1, full_path, len);
224                         tmp[add_len] = '/';
225                         memcpy(tmp, found->path, add_len);
226                         tmp [add_len + len + 1] = '\0';
227                         free(full_path);
228                         full_path = tmp;
229                         len += add_len + 1;
230                 } else {
231                         full_path = strdup(found->path);
232                         len = add_len;
233                 }
234
235                 next = found->ref_tree;
236                 /* if the ref_tree refers to ourselves, we're at the top */
237                 if (next == found->root_id) {
238                         top_id = next;
239                         break;
240                 }
241
242                 /*
243                  * if the ref_tree wasn't in our tree of roots, we're
244                  * at the top
245                  */
246                 found = tree_search(&rl->root, next);
247                 if (!found) {
248                         top_id = next;
249                         break;
250                 }
251         }
252         printf("ID %llu top level %llu path %s\n",
253                (unsigned long long)ri->root_id, (unsigned long long)top_id,
254                full_path);
255         free(full_path);
256         return 0;
257 }
258
259 /*
260  * for a single root_info, ask the kernel to give us a path name
261  * inside it's ref_root for the dir_id where it lives.
262  *
263  * This fills in root_info->path with the path to the directory and and
264  * appends this root's name.
265  */
266 static int lookup_ino_path(int fd, struct root_info *ri)
267 {
268         struct btrfs_ioctl_ino_lookup_args args;
269         int ret, e;
270
271         if (ri->path)
272                 return 0;
273
274         memset(&args, 0, sizeof(args));
275         args.treeid = ri->ref_tree;
276         args.objectid = ri->dir_id;
277
278         ret = ioctl(fd, BTRFS_IOC_INO_LOOKUP, &args);
279         e = errno;
280         if (ret) {
281                 fprintf(stderr, "ERROR: Failed to lookup path for root %llu - %s\n",
282                         (unsigned long long)ri->ref_tree,
283                         strerror(e));
284                 return ret;
285         }
286
287         if (args.name[0]) {
288                 /*
289                  * we're in a subdirectory of ref_tree, the kernel ioctl
290                  * puts a / in there for us
291                  */
292                 ri->path = malloc(strlen(ri->name) + strlen(args.name) + 1);
293                 if (!ri->path) {
294                         perror("malloc failed");
295                         exit(1);
296                 }
297                 strcpy(ri->path, args.name);
298                 strcat(ri->path, ri->name);
299         } else {
300                 /* we're at the root of ref_tree */
301                 ri->path = strdup(ri->name);
302                 if (!ri->path) {
303                         perror("strdup failed");
304                         exit(1);
305                 }
306         }
307         return 0;
308 }
309
310 /* finding the generation for a given path is a two step process.
311  * First we use the inode loookup routine to find out the root id
312  *
313  * Then we use the tree search ioctl to scan all the root items for a
314  * given root id and spit out the latest generation we can find
315  */
316 static u64 find_root_gen(int fd)
317 {
318         struct btrfs_ioctl_ino_lookup_args ino_args;
319         int ret;
320         struct btrfs_ioctl_search_args args;
321         struct btrfs_ioctl_search_key *sk = &args.key;
322         struct btrfs_ioctl_search_header *sh;
323         unsigned long off = 0;
324         u64 max_found = 0;
325         int i;
326         int e;
327
328         memset(&ino_args, 0, sizeof(ino_args));
329         ino_args.objectid = BTRFS_FIRST_FREE_OBJECTID;
330
331         /* this ioctl fills in ino_args->treeid */
332         ret = ioctl(fd, BTRFS_IOC_INO_LOOKUP, &ino_args);
333         e = errno;
334         if (ret) {
335                 fprintf(stderr, "ERROR: Failed to lookup path for dirid %llu - %s\n",
336                         (unsigned long long)BTRFS_FIRST_FREE_OBJECTID,
337                         strerror(e));
338                 return 0;
339         }
340
341         memset(&args, 0, sizeof(args));
342
343         sk->tree_id = 1;
344
345         /*
346          * there may be more than one ROOT_ITEM key if there are
347          * snapshots pending deletion, we have to loop through
348          * them.
349          */
350         sk->min_objectid = ino_args.treeid;
351         sk->max_objectid = ino_args.treeid;
352         sk->max_type = BTRFS_ROOT_ITEM_KEY;
353         sk->min_type = BTRFS_ROOT_ITEM_KEY;
354         sk->max_offset = (u64)-1;
355         sk->max_transid = (u64)-1;
356         sk->nr_items = 4096;
357
358         while (1) {
359                 ret = ioctl(fd, BTRFS_IOC_TREE_SEARCH, &args);
360                 e = errno;
361                 if (ret < 0) {
362                         fprintf(stderr, "ERROR: can't perform the search - %s\n",
363                                 strerror(e));
364                         return 0;
365                 }
366                 /* the ioctl returns the number of item it found in nr_items */
367                 if (sk->nr_items == 0)
368                         break;
369
370                 off = 0;
371                 for (i = 0; i < sk->nr_items; i++) {
372                         struct btrfs_root_item *item;
373                         sh = (struct btrfs_ioctl_search_header *)(args.buf +
374                                                                   off);
375
376                         off += sizeof(*sh);
377                         item = (struct btrfs_root_item *)(args.buf + off);
378                         off += sh->len;
379
380                         sk->min_objectid = sh->objectid;
381                         sk->min_type = sh->type;
382                         sk->min_offset = sh->offset;
383
384                         if (sh->objectid > ino_args.treeid)
385                                 break;
386
387                         if (sh->objectid == ino_args.treeid &&
388                             sh->type == BTRFS_ROOT_ITEM_KEY) {
389                                 max_found = max(max_found,
390                                                 btrfs_root_generation(item));
391                         }
392                 }
393                 if (sk->min_offset < (u64)-1)
394                         sk->min_offset++;
395                 else
396                         break;
397
398                 if (sk->min_type != BTRFS_ROOT_ITEM_KEY)
399                         break;
400                 if (sk->min_objectid != BTRFS_ROOT_ITEM_KEY)
401                         break;
402         }
403         return max_found;
404 }
405
406 /* pass in a directory id and this will return
407  * the full path of the parent directory inside its
408  * subvolume root.
409  *
410  * It may return NULL if it is in the root, or an ERR_PTR if things
411  * go badly.
412  */
413 static char *__ino_resolve(int fd, u64 dirid)
414 {
415         struct btrfs_ioctl_ino_lookup_args args;
416         int ret;
417         char *full;
418         int e;
419
420         memset(&args, 0, sizeof(args));
421         args.objectid = dirid;
422
423         ret = ioctl(fd, BTRFS_IOC_INO_LOOKUP, &args);
424         e = errno;
425         if (ret) {
426                 fprintf(stderr, "ERROR: Failed to lookup path for dirid %llu - %s\n",
427                         (unsigned long long)dirid, strerror(e) );
428                 return ERR_PTR(ret);
429         }
430
431         if (args.name[0]) {
432                 /*
433                  * we're in a subdirectory of ref_tree, the kernel ioctl
434                  * puts a / in there for us
435                  */
436                 full = strdup(args.name);
437                 if (!full) {
438                         perror("malloc failed");
439                         return ERR_PTR(-ENOMEM);
440                 }
441         } else {
442                 /* we're at the root of ref_tree */
443                 full = NULL;
444         }
445         return full;
446 }
447
448 /*
449  * simple string builder, returning a new string with both
450  * dirid and name
451  */
452 char *build_name(char *dirid, char *name)
453 {
454         char *full;
455         if (!dirid)
456                 return strdup(name);
457
458         full = malloc(strlen(dirid) + strlen(name) + 1);
459         if (!full)
460                 return NULL;
461         strcpy(full, dirid);
462         strcat(full, name);
463         return full;
464 }
465
466 /*
467  * given an inode number, this returns the full path name inside the subvolume
468  * to that file/directory.  cache_dirid and cache_name are used to
469  * cache the results so we can avoid tree searches if a later call goes
470  * to the same directory or file name
471  */
472 static char *ino_resolve(int fd, u64 ino, u64 *cache_dirid, char **cache_name)
473
474 {
475         u64 dirid;
476         char *dirname;
477         char *name;
478         char *full;
479         int ret;
480         struct btrfs_ioctl_search_args args;
481         struct btrfs_ioctl_search_key *sk = &args.key;
482         struct btrfs_ioctl_search_header *sh;
483         unsigned long off = 0;
484         int namelen;
485         int e;
486
487         memset(&args, 0, sizeof(args));
488
489         sk->tree_id = 0;
490
491         /*
492          * step one, we search for the inode back ref.  We just use the first
493          * one
494          */
495         sk->min_objectid = ino;
496         sk->max_objectid = ino;
497         sk->max_type = BTRFS_INODE_REF_KEY;
498         sk->max_offset = (u64)-1;
499         sk->min_type = BTRFS_INODE_REF_KEY;
500         sk->max_transid = (u64)-1;
501         sk->nr_items = 1;
502
503         ret = ioctl(fd, BTRFS_IOC_TREE_SEARCH, &args);
504         e = errno;
505         if (ret < 0) {
506                 fprintf(stderr, "ERROR: can't perform the search - %s\n",
507                         strerror(e));
508                 return NULL;
509         }
510         /* the ioctl returns the number of item it found in nr_items */
511         if (sk->nr_items == 0)
512                 return NULL;
513
514         off = 0;
515         sh = (struct btrfs_ioctl_search_header *)(args.buf + off);
516
517         if (sh->type == BTRFS_INODE_REF_KEY) {
518                 struct btrfs_inode_ref *ref;
519                 dirid = sh->offset;
520
521                 ref = (struct btrfs_inode_ref *)(sh + 1);
522                 namelen = btrfs_stack_inode_ref_name_len(ref);
523
524                 name = (char *)(ref + 1);
525                 name = strndup(name, namelen);
526
527                 /* use our cached value */
528                 if (dirid == *cache_dirid && *cache_name) {
529                         dirname = *cache_name;
530                         goto build;
531                 }
532         } else {
533                 return NULL;
534         }
535         /*
536          * the inode backref gives us the file name and the parent directory id.
537          * From here we use __ino_resolve to get the path to the parent
538          */
539         dirname = __ino_resolve(fd, dirid);
540 build:
541         full = build_name(dirname, name);
542         if (*cache_name && dirname != *cache_name)
543                 free(*cache_name);
544
545         *cache_name = dirname;
546         *cache_dirid = dirid;
547         free(name);
548
549         return full;
550 }
551
552 int list_subvols(int fd)
553 {
554         struct root_lookup root_lookup;
555         struct rb_node *n;
556         int ret;
557         struct btrfs_ioctl_search_args args;
558         struct btrfs_ioctl_search_key *sk = &args.key;
559         struct btrfs_ioctl_search_header *sh;
560         struct btrfs_root_ref *ref;
561         unsigned long off = 0;
562         int name_len;
563         char *name;
564         u64 dir_id;
565         int i;
566         int e;
567
568         root_lookup_init(&root_lookup);
569
570         memset(&args, 0, sizeof(args));
571
572         /* search in the tree of tree roots */
573         sk->tree_id = 1;
574
575         /*
576          * set the min and max to backref keys.  The search will
577          * only send back this type of key now.
578          */
579         sk->max_type = BTRFS_ROOT_BACKREF_KEY;
580         sk->min_type = BTRFS_ROOT_BACKREF_KEY;
581
582         /*
583          * set all the other params to the max, we'll take any objectid
584          * and any trans
585          */
586         sk->max_objectid = (u64)-1;
587         sk->max_offset = (u64)-1;
588         sk->max_transid = (u64)-1;
589
590         /* just a big number, doesn't matter much */
591         sk->nr_items = 4096;
592
593         while(1) {
594                 ret = ioctl(fd, BTRFS_IOC_TREE_SEARCH, &args);
595                 e = errno;
596                 if (ret < 0) {
597                         fprintf(stderr, "ERROR: can't perform the search - %s\n",
598                                 strerror(e));
599                         return ret;
600                 }
601                 /* the ioctl returns the number of item it found in nr_items */
602                 if (sk->nr_items == 0)
603                         break;
604
605                 off = 0;
606
607                 /*
608                  * for each item, pull the key out of the header and then
609                  * read the root_ref item it contains
610                  */
611                 for (i = 0; i < sk->nr_items; i++) {
612                         sh = (struct btrfs_ioctl_search_header *)(args.buf +
613                                                                   off);
614                         off += sizeof(*sh);
615                         if (sh->type == BTRFS_ROOT_BACKREF_KEY) {
616                                 ref = (struct btrfs_root_ref *)(args.buf + off);
617                                 name_len = btrfs_stack_root_ref_name_len(ref);
618                                 name = (char *)(ref + 1);
619                                 dir_id = btrfs_stack_root_ref_dirid(ref);
620
621                                 add_root(&root_lookup, sh->objectid, sh->offset,
622                                          dir_id, name, name_len);
623                         }
624
625                         off += sh->len;
626
627                         /*
628                          * record the mins in sk so we can make sure the
629                          * next search doesn't repeat this root
630                          */
631                         sk->min_objectid = sh->objectid;
632                         sk->min_type = sh->type;
633                         sk->min_offset = sh->offset;
634                 }
635                 sk->nr_items = 4096;
636                 /* this iteration is done, step forward one root for the next
637                  * ioctl
638                  */
639                 if (sk->min_objectid < (u64)-1) {
640                         sk->min_objectid++;
641                         sk->min_type = BTRFS_ROOT_BACKREF_KEY;
642                         sk->min_offset = 0;
643                 } else
644                         break;
645         }
646         /*
647          * now we have an rbtree full of root_info objects, but we need to fill
648          * in their path names within the subvol that is referencing each one.
649          */
650         n = rb_first(&root_lookup.root);
651         while (n) {
652                 struct root_info *entry;
653                 int ret;
654                 entry = rb_entry(n, struct root_info, rb_node);
655                 ret = lookup_ino_path(fd, entry);
656                 if(ret < 0)
657                         return ret;
658                 n = rb_next(n);
659         }
660
661         /* now that we have all the subvol-relative paths filled in,
662          * we have to string the subvols together so that we can get
663          * a path all the way back to the FS root
664          */
665         n = rb_last(&root_lookup.root);
666         while (n) {
667                 struct root_info *entry;
668                 entry = rb_entry(n, struct root_info, rb_node);
669                 resolve_root(&root_lookup, entry);
670                 n = rb_prev(n);
671         }
672
673         return ret;
674 }
675
676 static int print_one_extent(int fd, struct btrfs_ioctl_search_header *sh,
677                             struct btrfs_file_extent_item *item,
678                             u64 found_gen, u64 *cache_dirid,
679                             char **cache_dir_name, u64 *cache_ino,
680                             char **cache_full_name)
681 {
682         u64 len = 0;
683         u64 disk_start = 0;
684         u64 disk_offset = 0;
685         u8 type;
686         int compressed = 0;
687         int flags = 0;
688         char *name = NULL;
689
690         if (sh->objectid == *cache_ino) {
691                 name = *cache_full_name;
692         } else if (*cache_full_name) {
693                 free(*cache_full_name);
694                 *cache_full_name = NULL;
695         }
696         if (!name) {
697                 name = ino_resolve(fd, sh->objectid, cache_dirid,
698                                    cache_dir_name);
699                 *cache_full_name = name;
700                 *cache_ino = sh->objectid;
701         }
702         if (!name)
703                 return -EIO;
704
705         type = btrfs_stack_file_extent_type(item);
706         compressed = btrfs_stack_file_extent_compression(item);
707
708         if (type == BTRFS_FILE_EXTENT_REG ||
709             type == BTRFS_FILE_EXTENT_PREALLOC) {
710                 disk_start = btrfs_stack_file_extent_disk_bytenr(item);
711                 disk_offset = btrfs_stack_file_extent_offset(item);
712                 len = btrfs_stack_file_extent_num_bytes(item);
713         } else if (type == BTRFS_FILE_EXTENT_INLINE) {
714                 disk_start = 0;
715                 disk_offset = 0;
716                 len = btrfs_stack_file_extent_ram_bytes(item);
717         } else {
718                 printf("unhandled extent type %d for inode %llu "
719                        "file offset %llu gen %llu\n",
720                         type,
721                         (unsigned long long)sh->objectid,
722                         (unsigned long long)sh->offset,
723                         (unsigned long long)found_gen);
724
725                 return -EIO;
726         }
727         printf("inode %llu file offset %llu len %llu disk start %llu "
728                "offset %llu gen %llu flags ",
729                (unsigned long long)sh->objectid,
730                (unsigned long long)sh->offset,
731                (unsigned long long)len,
732                (unsigned long long)disk_start,
733                (unsigned long long)disk_offset,
734                (unsigned long long)found_gen);
735
736         if (compressed) {
737                 printf("COMPRESS");
738                 flags++;
739         }
740         if (type == BTRFS_FILE_EXTENT_PREALLOC) {
741                 printf("%sPREALLOC", flags ? "|" : "");
742                 flags++;
743         }
744         if (type == BTRFS_FILE_EXTENT_INLINE) {
745                 printf("%sINLINE", flags ? "|" : "");
746                 flags++;
747         }
748         if (!flags)
749                 printf("NONE");
750
751         printf(" %s\n", name);
752         return 0;
753 }
754
755 int find_updated_files(int fd, u64 root_id, u64 oldest_gen)
756 {
757         int ret;
758         struct btrfs_ioctl_search_args args;
759         struct btrfs_ioctl_search_key *sk = &args.key;
760         struct btrfs_ioctl_search_header *sh;
761         struct btrfs_file_extent_item *item;
762         unsigned long off = 0;
763         u64 found_gen;
764         u64 max_found = 0;
765         int i;
766         int e;
767         u64 cache_dirid = 0;
768         u64 cache_ino = 0;
769         char *cache_dir_name = NULL;
770         char *cache_full_name = NULL;
771         struct btrfs_file_extent_item backup;
772
773         memset(&backup, 0, sizeof(backup));
774         memset(&args, 0, sizeof(args));
775
776         sk->tree_id = root_id;
777
778         /*
779          * set all the other params to the max, we'll take any objectid
780          * and any trans
781          */
782         sk->max_objectid = (u64)-1;
783         sk->max_offset = (u64)-1;
784         sk->max_transid = (u64)-1;
785         sk->max_type = BTRFS_EXTENT_DATA_KEY;
786         sk->min_transid = oldest_gen;
787         /* just a big number, doesn't matter much */
788         sk->nr_items = 4096;
789
790         max_found = find_root_gen(fd);
791         while(1) {
792                 ret = ioctl(fd, BTRFS_IOC_TREE_SEARCH, &args);
793                 e = errno;
794                 if (ret < 0) {
795                         fprintf(stderr, "ERROR: can't perform the search- %s\n",
796                                 strerror(e));
797                         return ret;
798                 }
799                 /* the ioctl returns the number of item it found in nr_items */
800                 if (sk->nr_items == 0)
801                         break;
802
803                 off = 0;
804
805                 /*
806                  * for each item, pull the key out of the header and then
807                  * read the root_ref item it contains
808                  */
809                 for (i = 0; i < sk->nr_items; i++) {
810                         sh = (struct btrfs_ioctl_search_header *)(args.buf +
811                                                                   off);
812                         off += sizeof(*sh);
813
814                         /*
815                          * just in case the item was too big, pass something other
816                          * than garbage
817                          */
818                         if (sh->len == 0)
819                                 item = &backup;
820                         else
821                                 item = (struct btrfs_file_extent_item *)(args.buf +
822                                                                  off);
823                         found_gen = btrfs_stack_file_extent_generation(item);
824                         if (sh->type == BTRFS_EXTENT_DATA_KEY &&
825                             found_gen >= oldest_gen) {
826                                 print_one_extent(fd, sh, item, found_gen,
827                                                  &cache_dirid, &cache_dir_name,
828                                                  &cache_ino, &cache_full_name);
829                         }
830                         off += sh->len;
831
832                         /*
833                          * record the mins in sk so we can make sure the
834                          * next search doesn't repeat this root
835                          */
836                         sk->min_objectid = sh->objectid;
837                         sk->min_offset = sh->offset;
838                         sk->min_type = sh->type;
839                 }
840                 sk->nr_items = 4096;
841                 if (sk->min_offset < (u64)-1)
842                         sk->min_offset++;
843                 else if (sk->min_objectid < (u64)-1) {
844                         sk->min_objectid++;
845                         sk->min_offset = 0;
846                         sk->min_type = 0;
847                 } else
848                         break;
849         }
850         free(cache_dir_name);
851         free(cache_full_name);
852         printf("transid marker was %llu\n", (unsigned long long)max_found);
853         return ret;
854 }