Btrfs-progs: debug-tree, add option to dump a single tree
[platform/upstream/btrfs-progs.git] / btrfs-debug-tree.c
1 /*
2  * Copyright (C) 2007 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 #include <stdio.h>
20 #include <stdlib.h>
21 #include <unistd.h>
22 #include <uuid/uuid.h>
23 #include "kerncompat.h"
24 #include "radix-tree.h"
25 #include "ctree.h"
26 #include "disk-io.h"
27 #include "print-tree.h"
28 #include "transaction.h"
29 #include "version.h"
30 #include "utils.h"
31
32 static int print_usage(void)
33 {
34         fprintf(stderr, "usage: btrfs-debug-tree [-e] [-d] [-r] [-R] [-u]\n");
35         fprintf(stderr, "                        [-b block_num ] device\n");
36         fprintf(stderr, "\t-e : print detailed extents info\n");
37         fprintf(stderr, "\t-d : print info of btrfs device and root tree dirs"
38                     " only\n");
39         fprintf(stderr, "\t-r : print info of roots only\n");
40         fprintf(stderr, "\t-R : print info of roots and root backups\n");
41         fprintf(stderr, "\t-u : print info of uuid tree only\n");
42         fprintf(stderr, "\t-b block_num : print info of the specified block"
43                     " only\n");
44         fprintf(stderr,
45                 "\t-t tree_id : print only the tree with the given id\n");
46         fprintf(stderr, "%s\n", BTRFS_BUILD_VERSION);
47         exit(1);
48 }
49
50 static void print_extents(struct btrfs_root *root, struct extent_buffer *eb)
51 {
52         int i;
53         u32 nr;
54         u32 size;
55
56         if (!eb)
57                 return;
58
59         if (btrfs_is_leaf(eb)) {
60                 btrfs_print_leaf(root, eb);
61                 return;
62         }
63
64         size = btrfs_level_size(root, btrfs_header_level(eb) - 1);
65         nr = btrfs_header_nritems(eb);
66         for (i = 0; i < nr; i++) {
67                 struct extent_buffer *next = read_tree_block(root,
68                                              btrfs_node_blockptr(eb, i),
69                                              size,
70                                              btrfs_node_ptr_generation(eb, i));
71                 if (btrfs_is_leaf(next) &&
72                     btrfs_header_level(eb) != 1)
73                         BUG();
74                 if (btrfs_header_level(next) !=
75                         btrfs_header_level(eb) - 1)
76                         BUG();
77                 print_extents(root, next);
78                 free_extent_buffer(next);
79         }
80 }
81
82 static void print_old_roots(struct btrfs_super_block *super)
83 {
84         struct btrfs_root_backup *backup;
85         int i;
86
87         for (i = 0; i < BTRFS_NUM_BACKUP_ROOTS; i++) {
88                 backup = super->super_roots + i;
89                 printf("btrfs root backup slot %d\n", i);
90                 printf("\ttree root gen %llu block %llu\n",
91                        (unsigned long long)btrfs_backup_tree_root_gen(backup),
92                        (unsigned long long)btrfs_backup_tree_root(backup));
93
94                 printf("\t\textent root gen %llu block %llu\n",
95                        (unsigned long long)btrfs_backup_extent_root_gen(backup),
96                        (unsigned long long)btrfs_backup_extent_root(backup));
97
98                 printf("\t\tchunk root gen %llu block %llu\n",
99                        (unsigned long long)btrfs_backup_chunk_root_gen(backup),
100                        (unsigned long long)btrfs_backup_chunk_root(backup));
101
102                 printf("\t\tdevice root gen %llu block %llu\n",
103                        (unsigned long long)btrfs_backup_dev_root_gen(backup),
104                        (unsigned long long)btrfs_backup_dev_root(backup));
105
106                 printf("\t\tcsum root gen %llu block %llu\n",
107                        (unsigned long long)btrfs_backup_csum_root_gen(backup),
108                        (unsigned long long)btrfs_backup_csum_root(backup));
109
110                 printf("\t\tfs root gen %llu block %llu\n",
111                        (unsigned long long)btrfs_backup_fs_root_gen(backup),
112                        (unsigned long long)btrfs_backup_fs_root(backup));
113
114                 printf("\t\t%llu used %llu total %llu devices\n",
115                        (unsigned long long)btrfs_backup_bytes_used(backup),
116                        (unsigned long long)btrfs_backup_total_bytes(backup),
117                        (unsigned long long)btrfs_backup_num_devices(backup));
118         }
119 }
120
121 int main(int ac, char **av)
122 {
123         struct btrfs_root *root;
124         struct btrfs_fs_info *info;
125         struct btrfs_path path;
126         struct btrfs_key key;
127         struct btrfs_root_item ri;
128         struct extent_buffer *leaf;
129         struct btrfs_disk_key disk_key;
130         struct btrfs_key found_key;
131         char uuidbuf[BTRFS_UUID_UNPARSED_SIZE];
132         int ret;
133         int slot;
134         int extent_only = 0;
135         int device_only = 0;
136         int uuid_tree_only = 0;
137         int roots_only = 0;
138         int root_backups = 0;
139         u64 block_only = 0;
140         struct btrfs_root *tree_root_scan;
141         u64 tree_id = 0;
142
143         radix_tree_init();
144
145         while(1) {
146                 int c;
147                 c = getopt(ac, av, "deb:rRut:");
148                 if (c < 0)
149                         break;
150                 switch(c) {
151                         case 'e':
152                                 extent_only = 1;
153                                 break;
154                         case 'd':
155                                 device_only = 1;
156                                 break;
157                         case 'r':
158                                 roots_only = 1;
159                                 break;
160                         case 'u':
161                                 uuid_tree_only = 1;
162                                 break;
163                         case 'R':
164                                 roots_only = 1;
165                                 root_backups = 1;
166                                 break;
167                         case 'b':
168                                 block_only = arg_strtou64(optarg);
169                                 break;
170                         case 't':
171                                 tree_id = arg_strtou64(optarg);
172                                 break;
173                         default:
174                                 print_usage();
175                 }
176         }
177         ac = ac - optind;
178         if (ac != 1)
179                 print_usage();
180
181         info = open_ctree_fs_info(av[optind], 0, 0, OPEN_CTREE_PARTIAL);
182         if (!info) {
183                 fprintf(stderr, "unable to open %s\n", av[optind]);
184                 exit(1);
185         }
186
187         root = info->fs_root;
188         if (!root) {
189                 fprintf(stderr, "unable to open %s\n", av[optind]);
190                 exit(1);
191         }
192
193         if (block_only) {
194                 leaf = read_tree_block(root,
195                                       block_only,
196                                       root->leafsize, 0);
197
198                 if (leaf && btrfs_header_level(leaf) != 0) {
199                         free_extent_buffer(leaf);
200                         leaf = NULL;
201                 }
202
203                 if (!leaf) {
204                         leaf = read_tree_block(root,
205                                               block_only,
206                                               root->nodesize, 0);
207                 }
208                 if (!leaf) {
209                         fprintf(stderr, "failed to read %llu\n",
210                                 (unsigned long long)block_only);
211                         goto close_root;
212                 }
213                 btrfs_print_tree(root, leaf, 0);
214                 goto close_root;
215         }
216
217         if (!(extent_only || uuid_tree_only || tree_id)) {
218                 if (roots_only) {
219                         printf("root tree: %llu level %d\n",
220                              (unsigned long long)info->tree_root->node->start,
221                              btrfs_header_level(info->tree_root->node));
222                         printf("chunk tree: %llu level %d\n",
223                              (unsigned long long)info->chunk_root->node->start,
224                              btrfs_header_level(info->chunk_root->node));
225                 } else {
226                         if (info->tree_root->node) {
227                                 printf("root tree\n");
228                                 btrfs_print_tree(info->tree_root,
229                                                  info->tree_root->node, 1);
230                         }
231
232                         if (info->chunk_root->node) {
233                                 printf("chunk tree\n");
234                                 btrfs_print_tree(info->chunk_root,
235                                                  info->chunk_root->node, 1);
236                         }
237                 }
238         }
239         tree_root_scan = info->tree_root;
240
241         btrfs_init_path(&path);
242 again:
243         if (!extent_buffer_uptodate(tree_root_scan->node))
244                 goto no_node;
245
246         key.offset = 0;
247         key.objectid = 0;
248         btrfs_set_key_type(&key, BTRFS_ROOT_ITEM_KEY);
249         ret = btrfs_search_slot(NULL, tree_root_scan, &key, &path, 0, 0);
250         BUG_ON(ret < 0);
251         while(1) {
252                 leaf = path.nodes[0];
253                 slot = path.slots[0];
254                 if (slot >= btrfs_header_nritems(leaf)) {
255                         ret = btrfs_next_leaf(tree_root_scan, &path);
256                         if (ret != 0)
257                                 break;
258                         leaf = path.nodes[0];
259                         slot = path.slots[0];
260                 }
261                 btrfs_item_key(leaf, &disk_key, path.slots[0]);
262                 btrfs_disk_key_to_cpu(&found_key, &disk_key);
263                 if (btrfs_key_type(&found_key) == BTRFS_ROOT_ITEM_KEY) {
264                         unsigned long offset;
265                         struct extent_buffer *buf;
266                         int skip = extent_only | device_only | uuid_tree_only;
267
268                         offset = btrfs_item_ptr_offset(leaf, slot);
269                         read_extent_buffer(leaf, &ri, offset, sizeof(ri));
270                         buf = read_tree_block(tree_root_scan,
271                                               btrfs_root_bytenr(&ri),
272                                               btrfs_level_size(tree_root_scan,
273                                                         btrfs_root_level(&ri)),
274                                               0);
275                         if (!extent_buffer_uptodate(buf))
276                                 goto next;
277                         if (tree_id && found_key.objectid != tree_id)
278                                 goto next;
279
280                         switch(found_key.objectid) {
281                         case BTRFS_ROOT_TREE_OBJECTID:
282                                 if (!skip)
283                                         printf("root");
284                                 break;
285                         case BTRFS_EXTENT_TREE_OBJECTID:
286                                 if (!device_only && !uuid_tree_only)
287                                         skip = 0;
288                                 if (!skip)
289                                         printf("extent");
290                                 break;
291                         case BTRFS_CHUNK_TREE_OBJECTID:
292                                 if (!skip) {
293                                         printf("chunk");
294                                 }
295                                 break;
296                         case BTRFS_DEV_TREE_OBJECTID:
297                                 if (!uuid_tree_only)
298                                         skip = 0;
299                                 if (!skip)
300                                         printf("device");
301                                 break;
302                         case BTRFS_FS_TREE_OBJECTID:
303                                 if (!skip) {
304                                         printf("fs");
305                                 }
306                                 break;
307                         case BTRFS_ROOT_TREE_DIR_OBJECTID:
308                                 skip = 0;
309                                 printf("directory");
310                                 break;
311                         case BTRFS_CSUM_TREE_OBJECTID:
312                                 if (!skip) {
313                                         printf("checksum");
314                                 }
315                                 break;
316                         case BTRFS_ORPHAN_OBJECTID:
317                                 if (!skip) {
318                                         printf("orphan");
319                                 }
320                                 break;
321                         case BTRFS_TREE_LOG_OBJECTID:
322                                 if (!skip) {
323                                         printf("log");
324                                 }
325                                 break;
326                         case BTRFS_TREE_LOG_FIXUP_OBJECTID:
327                                 if (!skip) {
328                                         printf("log fixup");
329                                 }
330                                 break;
331                         case BTRFS_TREE_RELOC_OBJECTID:
332                                 if (!skip) {
333                                         printf("reloc");
334                                 }
335                                 break;
336                         case BTRFS_DATA_RELOC_TREE_OBJECTID:
337                                 if (!skip) {
338                                         printf("data reloc");
339                                 }
340                                 break;
341                         case BTRFS_EXTENT_CSUM_OBJECTID:
342                                 if (!skip) {
343                                         printf("extent checksum");
344                                 }
345                                 break;
346                         case BTRFS_QUOTA_TREE_OBJECTID:
347                                 if (!skip) {
348                                         printf("quota");
349                                 }
350                                 break;
351                         case BTRFS_UUID_TREE_OBJECTID:
352                                 if (!extent_only && !device_only)
353                                         skip = 0;
354                                 if (!skip)
355                                         printf("uuid");
356                                 break;
357                         case BTRFS_MULTIPLE_OBJECTIDS:
358                                 if (!skip) {
359                                         printf("multiple");
360                                 }
361                                 break;
362                         default:
363                                 if (!skip) {
364                                         printf("file");
365                                 }
366                         }
367                         if (extent_only && !skip) {
368                                 print_extents(tree_root_scan, buf);
369                         } else if (!skip) {
370                                 printf(" tree ");
371                                 btrfs_print_key(&disk_key);
372                                 if (roots_only) {
373                                         printf(" %llu level %d\n",
374                                                (unsigned long long)buf->start,
375                                                btrfs_header_level(buf));
376                                 } else {
377                                         printf(" \n");
378                                         btrfs_print_tree(tree_root_scan, buf, 1);
379                                 }
380                         }
381                         free_extent_buffer(buf);
382                 }
383 next:
384                 path.slots[0]++;
385         }
386 no_node:
387         btrfs_release_path(&path);
388
389         if (tree_root_scan == info->tree_root &&
390             info->log_root_tree) {
391                 tree_root_scan = info->log_root_tree;
392                 goto again;
393         }
394
395         if (extent_only || device_only || uuid_tree_only)
396                 goto close_root;
397
398         if (root_backups)
399                 print_old_roots(info->super_copy);
400
401         printf("total bytes %llu\n",
402                (unsigned long long)btrfs_super_total_bytes(info->super_copy));
403         printf("bytes used %llu\n",
404                (unsigned long long)btrfs_super_bytes_used(info->super_copy));
405         uuidbuf[BTRFS_UUID_UNPARSED_SIZE - 1] = '\0';
406         uuid_unparse(info->super_copy->fsid, uuidbuf);
407         printf("uuid %s\n", uuidbuf);
408         printf("%s\n", BTRFS_BUILD_VERSION);
409 close_root:
410         return close_ctree(root);
411 }