btrfs-progs: Unify the messy error message formats
[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         set_argv0(av);
178         ac = ac - optind;
179         if (check_argc_exact(ac, 1))
180                 print_usage();
181
182         info = open_ctree_fs_info(av[optind], 0, 0, OPEN_CTREE_PARTIAL);
183         if (!info) {
184                 fprintf(stderr, "unable to open %s\n", av[optind]);
185                 exit(1);
186         }
187
188         root = info->fs_root;
189         if (!root) {
190                 fprintf(stderr, "unable to open %s\n", av[optind]);
191                 exit(1);
192         }
193
194         if (block_only) {
195                 leaf = read_tree_block(root,
196                                       block_only,
197                                       root->leafsize, 0);
198
199                 if (leaf && btrfs_header_level(leaf) != 0) {
200                         free_extent_buffer(leaf);
201                         leaf = NULL;
202                 }
203
204                 if (!leaf) {
205                         leaf = read_tree_block(root,
206                                               block_only,
207                                               root->nodesize, 0);
208                 }
209                 if (!leaf) {
210                         fprintf(stderr, "failed to read %llu\n",
211                                 (unsigned long long)block_only);
212                         goto close_root;
213                 }
214                 btrfs_print_tree(root, leaf, 0);
215                 goto close_root;
216         }
217
218         if (!(extent_only || uuid_tree_only || tree_id)) {
219                 if (roots_only) {
220                         printf("root tree: %llu level %d\n",
221                              (unsigned long long)info->tree_root->node->start,
222                              btrfs_header_level(info->tree_root->node));
223                         printf("chunk tree: %llu level %d\n",
224                              (unsigned long long)info->chunk_root->node->start,
225                              btrfs_header_level(info->chunk_root->node));
226                 } else {
227                         if (info->tree_root->node) {
228                                 printf("root tree\n");
229                                 btrfs_print_tree(info->tree_root,
230                                                  info->tree_root->node, 1);
231                         }
232
233                         if (info->chunk_root->node) {
234                                 printf("chunk tree\n");
235                                 btrfs_print_tree(info->chunk_root,
236                                                  info->chunk_root->node, 1);
237                         }
238                 }
239         }
240         tree_root_scan = info->tree_root;
241
242         btrfs_init_path(&path);
243 again:
244         if (!extent_buffer_uptodate(tree_root_scan->node))
245                 goto no_node;
246
247         key.offset = 0;
248         key.objectid = 0;
249         btrfs_set_key_type(&key, BTRFS_ROOT_ITEM_KEY);
250         ret = btrfs_search_slot(NULL, tree_root_scan, &key, &path, 0, 0);
251         BUG_ON(ret < 0);
252         while(1) {
253                 leaf = path.nodes[0];
254                 slot = path.slots[0];
255                 if (slot >= btrfs_header_nritems(leaf)) {
256                         ret = btrfs_next_leaf(tree_root_scan, &path);
257                         if (ret != 0)
258                                 break;
259                         leaf = path.nodes[0];
260                         slot = path.slots[0];
261                 }
262                 btrfs_item_key(leaf, &disk_key, path.slots[0]);
263                 btrfs_disk_key_to_cpu(&found_key, &disk_key);
264                 if (btrfs_key_type(&found_key) == BTRFS_ROOT_ITEM_KEY) {
265                         unsigned long offset;
266                         struct extent_buffer *buf;
267                         int skip = extent_only | device_only | uuid_tree_only;
268
269                         offset = btrfs_item_ptr_offset(leaf, slot);
270                         read_extent_buffer(leaf, &ri, offset, sizeof(ri));
271                         buf = read_tree_block(tree_root_scan,
272                                               btrfs_root_bytenr(&ri),
273                                               btrfs_level_size(tree_root_scan,
274                                                         btrfs_root_level(&ri)),
275                                               0);
276                         if (!extent_buffer_uptodate(buf))
277                                 goto next;
278                         if (tree_id && found_key.objectid != tree_id)
279                                 goto next;
280
281                         switch(found_key.objectid) {
282                         case BTRFS_ROOT_TREE_OBJECTID:
283                                 if (!skip)
284                                         printf("root");
285                                 break;
286                         case BTRFS_EXTENT_TREE_OBJECTID:
287                                 if (!device_only && !uuid_tree_only)
288                                         skip = 0;
289                                 if (!skip)
290                                         printf("extent");
291                                 break;
292                         case BTRFS_CHUNK_TREE_OBJECTID:
293                                 if (!skip) {
294                                         printf("chunk");
295                                 }
296                                 break;
297                         case BTRFS_DEV_TREE_OBJECTID:
298                                 if (!uuid_tree_only)
299                                         skip = 0;
300                                 if (!skip)
301                                         printf("device");
302                                 break;
303                         case BTRFS_FS_TREE_OBJECTID:
304                                 if (!skip) {
305                                         printf("fs");
306                                 }
307                                 break;
308                         case BTRFS_ROOT_TREE_DIR_OBJECTID:
309                                 skip = 0;
310                                 printf("directory");
311                                 break;
312                         case BTRFS_CSUM_TREE_OBJECTID:
313                                 if (!skip) {
314                                         printf("checksum");
315                                 }
316                                 break;
317                         case BTRFS_ORPHAN_OBJECTID:
318                                 if (!skip) {
319                                         printf("orphan");
320                                 }
321                                 break;
322                         case BTRFS_TREE_LOG_OBJECTID:
323                                 if (!skip) {
324                                         printf("log");
325                                 }
326                                 break;
327                         case BTRFS_TREE_LOG_FIXUP_OBJECTID:
328                                 if (!skip) {
329                                         printf("log fixup");
330                                 }
331                                 break;
332                         case BTRFS_TREE_RELOC_OBJECTID:
333                                 if (!skip) {
334                                         printf("reloc");
335                                 }
336                                 break;
337                         case BTRFS_DATA_RELOC_TREE_OBJECTID:
338                                 if (!skip) {
339                                         printf("data reloc");
340                                 }
341                                 break;
342                         case BTRFS_EXTENT_CSUM_OBJECTID:
343                                 if (!skip) {
344                                         printf("extent checksum");
345                                 }
346                                 break;
347                         case BTRFS_QUOTA_TREE_OBJECTID:
348                                 if (!skip) {
349                                         printf("quota");
350                                 }
351                                 break;
352                         case BTRFS_UUID_TREE_OBJECTID:
353                                 if (!extent_only && !device_only)
354                                         skip = 0;
355                                 if (!skip)
356                                         printf("uuid");
357                                 break;
358                         case BTRFS_MULTIPLE_OBJECTIDS:
359                                 if (!skip) {
360                                         printf("multiple");
361                                 }
362                                 break;
363                         default:
364                                 if (!skip) {
365                                         printf("file");
366                                 }
367                         }
368                         if (extent_only && !skip) {
369                                 print_extents(tree_root_scan, buf);
370                         } else if (!skip) {
371                                 printf(" tree ");
372                                 btrfs_print_key(&disk_key);
373                                 if (roots_only) {
374                                         printf(" %llu level %d\n",
375                                                (unsigned long long)buf->start,
376                                                btrfs_header_level(buf));
377                                 } else {
378                                         printf(" \n");
379                                         btrfs_print_tree(tree_root_scan, buf, 1);
380                                 }
381                         }
382                         free_extent_buffer(buf);
383                 }
384 next:
385                 path.slots[0]++;
386         }
387 no_node:
388         btrfs_release_path(&path);
389
390         if (tree_root_scan == info->tree_root &&
391             info->log_root_tree) {
392                 tree_root_scan = info->log_root_tree;
393                 goto again;
394         }
395
396         if (extent_only || device_only || uuid_tree_only)
397                 goto close_root;
398
399         if (root_backups)
400                 print_old_roots(info->super_copy);
401
402         printf("total bytes %llu\n",
403                (unsigned long long)btrfs_super_total_bytes(info->super_copy));
404         printf("bytes used %llu\n",
405                (unsigned long long)btrfs_super_bytes_used(info->super_copy));
406         uuidbuf[BTRFS_UUID_UNPARSED_SIZE - 1] = '\0';
407         uuid_unparse(info->super_copy->fsid, uuidbuf);
408         printf("uuid %s\n", uuidbuf);
409         printf("%s\n", BTRFS_BUILD_VERSION);
410 close_root:
411         return close_ctree(root);
412 }