2 * Copyright (C) 2007 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.
22 #include <uuid/uuid.h>
25 #include "kerncompat.h"
26 #include "radix-tree.h"
29 #include "print-tree.h"
30 #include "transaction.h"
36 static void print_extents(struct btrfs_root
*root
, struct extent_buffer
*eb
)
38 struct extent_buffer
*next
;
45 if (btrfs_is_leaf(eb
)) {
46 btrfs_print_leaf(root
, eb
);
50 nr
= btrfs_header_nritems(eb
);
51 for (i
= 0; i
< nr
; i
++) {
52 next
= read_tree_block(root
->fs_info
,
53 btrfs_node_blockptr(eb
, i
),
54 btrfs_node_ptr_generation(eb
, i
));
55 if (!extent_buffer_uptodate(next
))
57 if (btrfs_is_leaf(next
) && btrfs_header_level(eb
) != 1) {
59 "eb corrupted: item %d eb level %d next level %d, skipping the rest",
60 i
, btrfs_header_level(next
),
61 btrfs_header_level(eb
));
64 if (btrfs_header_level(next
) != btrfs_header_level(eb
) - 1) {
66 "eb corrupted: item %d eb level %d next level %d, skipping the rest",
67 i
, btrfs_header_level(next
),
68 btrfs_header_level(eb
));
71 print_extents(root
, next
);
72 free_extent_buffer(next
);
78 free_extent_buffer(next
);
81 static void print_old_roots(struct btrfs_super_block
*super
)
83 struct btrfs_root_backup
*backup
;
86 for (i
= 0; i
< BTRFS_NUM_BACKUP_ROOTS
; i
++) {
87 backup
= super
->super_roots
+ i
;
88 printf("btrfs root backup slot %d\n", i
);
89 printf("\ttree root gen %llu block %llu\n",
90 (unsigned long long)btrfs_backup_tree_root_gen(backup
),
91 (unsigned long long)btrfs_backup_tree_root(backup
));
93 printf("\t\textent root gen %llu block %llu\n",
94 (unsigned long long)btrfs_backup_extent_root_gen(backup
),
95 (unsigned long long)btrfs_backup_extent_root(backup
));
97 printf("\t\tchunk root gen %llu block %llu\n",
98 (unsigned long long)btrfs_backup_chunk_root_gen(backup
),
99 (unsigned long long)btrfs_backup_chunk_root(backup
));
101 printf("\t\tdevice root gen %llu block %llu\n",
102 (unsigned long long)btrfs_backup_dev_root_gen(backup
),
103 (unsigned long long)btrfs_backup_dev_root(backup
));
105 printf("\t\tcsum root gen %llu block %llu\n",
106 (unsigned long long)btrfs_backup_csum_root_gen(backup
),
107 (unsigned long long)btrfs_backup_csum_root(backup
));
109 printf("\t\tfs root gen %llu block %llu\n",
110 (unsigned long long)btrfs_backup_fs_root_gen(backup
),
111 (unsigned long long)btrfs_backup_fs_root(backup
));
113 printf("\t\t%llu used %llu total %llu devices\n",
114 (unsigned long long)btrfs_backup_bytes_used(backup
),
115 (unsigned long long)btrfs_backup_total_bytes(backup
),
116 (unsigned long long)btrfs_backup_num_devices(backup
));
121 * Convert a tree name from various forms to the numerical id if possible
123 * - case does not matter
124 * - same as the key name, BTRFS_ROOT_TREE_OBJECTID
125 * - dtto shortened, BTRFS_ROOT_TREE
126 * - dtto without prefix, ROOT_TREE
127 * - common name, ROOT, CHUNK, EXTENT, ...
128 * - dtto alias, DEVICE for DEV, CHECKSUM for CSUM
130 * Returns 0 if the tree id was not recognized.
132 static u64
treeid_from_string(const char *str
, const char **end
)
137 static struct treename
{
141 { "ROOT", BTRFS_ROOT_TREE_OBJECTID
},
142 { "EXTENT", BTRFS_EXTENT_TREE_OBJECTID
},
143 { "CHUNK", BTRFS_CHUNK_TREE_OBJECTID
},
144 { "DEVICE", BTRFS_DEV_TREE_OBJECTID
},
145 { "DEV", BTRFS_DEV_TREE_OBJECTID
},
146 { "FS", BTRFS_FS_TREE_OBJECTID
},
147 { "CSUM", BTRFS_CSUM_TREE_OBJECTID
},
148 { "CHECKSUM", BTRFS_CSUM_TREE_OBJECTID
},
149 { "QUOTA", BTRFS_QUOTA_TREE_OBJECTID
},
150 { "UUID", BTRFS_UUID_TREE_OBJECTID
},
151 { "FREE_SPACE", BTRFS_FREE_SPACE_TREE_OBJECTID
},
152 { "TREE_LOG_FIXUP", BTRFS_TREE_LOG_FIXUP_OBJECTID
},
153 { "TREE_LOG", BTRFS_TREE_LOG_OBJECTID
},
154 { "TREE_RELOC", BTRFS_TREE_RELOC_OBJECTID
},
155 { "DATA_RELOC", BTRFS_DATA_RELOC_TREE_OBJECTID
}
158 if (strncasecmp("BTRFS_", str
, strlen("BTRFS_")) == 0)
159 str
+= strlen("BTRFS_");
161 for (i
= 0; i
< ARRAY_SIZE(tn
); i
++) {
162 int len
= strlen(tn
[i
].name
);
164 if (strncasecmp(tn
[i
].name
, str
, len
) == 0) {
175 if (strncasecmp("_TREE", str
, strlen("_TREE")) == 0)
176 str
+= strlen("_TREE");
178 if (strncasecmp("_OBJECTID", str
, strlen("_OBJECTID")) == 0)
179 str
+= strlen("_OBJECTID");
186 const char * const cmd_inspect_dump_tree_usage
[] = {
187 "btrfs inspect-internal dump-tree [options] device",
188 "Dump tree structures from a given device",
189 "Dump tree structures from a given device in textual form, expand keys to human",
190 "readable equivalents where possible.",
191 "Note: contains file names, consider that if you're asked to send the dump",
194 "-e|--extents print only extent info: extent and device trees",
195 "-d|--device print only device info: tree root, chunk and device trees",
196 "-r|--roots print only short root node info",
197 "-R|--backups same as --roots plus print backup root info",
198 "-u|--uuid print only the uuid tree",
199 "-b|--block <block_num> print info from the specified block only",
200 "-t|--tree <tree_id> print only tree with the given id (string or number)",
201 "--follow use with -b, to show all children tree blocks of <block_num>",
205 int cmd_inspect_dump_tree(int argc
, char **argv
)
207 struct btrfs_root
*root
;
208 struct btrfs_fs_info
*info
;
209 struct btrfs_path path
;
210 struct btrfs_key key
;
211 struct btrfs_root_item ri
;
212 struct extent_buffer
*leaf
;
213 struct btrfs_disk_key disk_key
;
214 struct btrfs_key found_key
;
215 char uuidbuf
[BTRFS_UUID_UNPARSED_SIZE
];
220 int uuid_tree_only
= 0;
222 int root_backups
= 0;
223 unsigned open_ctree_flags
= OPEN_CTREE_FS_PARTIAL
;
225 struct btrfs_root
*tree_root_scan
;
231 enum { GETOPT_VAL_FOLLOW
= 256 };
232 static const struct option long_options
[] = {
233 { "extents", no_argument
, NULL
, 'e'},
234 { "device", no_argument
, NULL
, 'd'},
235 { "roots", no_argument
, NULL
, 'r'},
236 { "backups", no_argument
, NULL
, 'R'},
237 { "uuid", no_argument
, NULL
, 'u'},
238 { "block", required_argument
, NULL
, 'b'},
239 { "tree", required_argument
, NULL
, 't'},
240 { "follow", no_argument
, NULL
, GETOPT_VAL_FOLLOW
},
244 c
= getopt_long(argc
, argv
, "deb:rRut:", long_options
, NULL
);
266 * If only showing one block, no need to fill roots
267 * other than chunk root
269 open_ctree_flags
|= __OPEN_CTREE_RETURN_CHUNK_ROOT
;
270 block_only
= arg_strtou64(optarg
);
273 const char *end
= NULL
;
275 if (string_is_numerical(optarg
))
276 tree_id
= arg_strtou64(optarg
);
278 tree_id
= treeid_from_string(optarg
, &end
);
281 error("unrecognized tree id: %s",
287 error("unexpected tree id suffix of '%s': %s",
293 case GETOPT_VAL_FOLLOW
:
297 usage(cmd_inspect_dump_tree_usage
);
301 if (check_argc_exact(argc
- optind
, 1))
302 usage(cmd_inspect_dump_tree_usage
);
304 ret
= check_arg_type(argv
[optind
]);
305 if (ret
!= BTRFS_ARG_BLKDEV
&& ret
!= BTRFS_ARG_REG
) {
306 error("not a block device or regular file: %s", argv
[optind
]);
310 printf("%s\n", PACKAGE_STRING
);
312 info
= open_ctree_fs_info(argv
[optind
], 0, 0, 0, open_ctree_flags
);
314 error("unable to open %s", argv
[optind
]);
319 root
= info
->chunk_root
;
320 leaf
= read_tree_block(info
, block_only
, 0);
321 if (extent_buffer_uptodate(leaf
) &&
322 btrfs_header_level(leaf
) != 0) {
323 free_extent_buffer(leaf
);
328 leaf
= read_tree_block(info
, block_only
, 0);
329 if (!extent_buffer_uptodate(leaf
)) {
330 error("failed to read %llu",
331 (unsigned long long)block_only
);
334 btrfs_print_tree(root
, leaf
, follow
);
335 free_extent_buffer(leaf
);
339 root
= info
->fs_root
;
341 error("unable to open %s", argv
[optind
]);
345 if (!(extent_only
|| uuid_tree_only
|| tree_id
)) {
347 printf("root tree: %llu level %d\n",
348 (unsigned long long)info
->tree_root
->node
->start
,
349 btrfs_header_level(info
->tree_root
->node
));
350 printf("chunk tree: %llu level %d\n",
351 (unsigned long long)info
->chunk_root
->node
->start
,
352 btrfs_header_level(info
->chunk_root
->node
));
353 if (info
->log_root_tree
)
354 printf("log root tree: %llu level %d\n",
355 info
->log_root_tree
->node
->start
,
357 info
->log_root_tree
->node
));
359 if (info
->tree_root
->node
) {
360 printf("root tree\n");
361 btrfs_print_tree(info
->tree_root
,
362 info
->tree_root
->node
, 1);
365 if (info
->chunk_root
->node
) {
366 printf("chunk tree\n");
367 btrfs_print_tree(info
->chunk_root
,
368 info
->chunk_root
->node
, 1);
371 if (info
->log_root_tree
) {
372 printf("log root tree\n");
373 btrfs_print_tree(info
->log_root_tree
,
374 info
->log_root_tree
->node
, 1);
378 tree_root_scan
= info
->tree_root
;
380 btrfs_init_path(&path
);
382 if (!extent_buffer_uptodate(tree_root_scan
->node
))
386 * Tree's that are not pointed by the tree of tree roots
388 if (tree_id
&& tree_id
== BTRFS_ROOT_TREE_OBJECTID
) {
389 if (!info
->tree_root
->node
) {
390 error("cannot print root tree, invalid pointer");
393 printf("root tree\n");
394 btrfs_print_tree(info
->tree_root
, info
->tree_root
->node
, 1);
398 if (tree_id
&& tree_id
== BTRFS_CHUNK_TREE_OBJECTID
) {
399 if (!info
->chunk_root
->node
) {
400 error("cannot print chunk tree, invalid pointer");
403 printf("chunk tree\n");
404 btrfs_print_tree(info
->chunk_root
, info
->chunk_root
->node
, 1);
408 if (tree_id
&& tree_id
== BTRFS_TREE_LOG_OBJECTID
) {
409 if (!info
->log_root_tree
) {
410 error("cannot print log root tree, invalid pointer");
413 printf("log root tree\n");
414 btrfs_print_tree(info
->log_root_tree
, info
->log_root_tree
->node
,
421 key
.type
= BTRFS_ROOT_ITEM_KEY
;
422 ret
= btrfs_search_slot(NULL
, tree_root_scan
, &key
, &path
, 0, 0);
424 error("cannot read ROOT_ITEM from tree %llu: %s",
425 (unsigned long long)tree_root_scan
->root_key
.objectid
,
430 leaf
= path
.nodes
[0];
431 slot
= path
.slots
[0];
432 if (slot
>= btrfs_header_nritems(leaf
)) {
433 ret
= btrfs_next_leaf(tree_root_scan
, &path
);
436 leaf
= path
.nodes
[0];
437 slot
= path
.slots
[0];
439 btrfs_item_key(leaf
, &disk_key
, path
.slots
[0]);
440 btrfs_disk_key_to_cpu(&found_key
, &disk_key
);
441 if (found_key
.type
== BTRFS_ROOT_ITEM_KEY
) {
442 unsigned long offset
;
443 struct extent_buffer
*buf
;
444 int skip
= extent_only
| device_only
| uuid_tree_only
;
446 offset
= btrfs_item_ptr_offset(leaf
, slot
);
447 read_extent_buffer(leaf
, &ri
, offset
, sizeof(ri
));
448 buf
= read_tree_block(info
, btrfs_root_bytenr(&ri
), 0);
449 if (!extent_buffer_uptodate(buf
))
451 if (tree_id
&& found_key
.objectid
!= tree_id
) {
452 free_extent_buffer(buf
);
456 switch (found_key
.objectid
) {
457 case BTRFS_ROOT_TREE_OBJECTID
:
461 case BTRFS_EXTENT_TREE_OBJECTID
:
462 if (!device_only
&& !uuid_tree_only
)
467 case BTRFS_CHUNK_TREE_OBJECTID
:
472 case BTRFS_DEV_TREE_OBJECTID
:
478 case BTRFS_FS_TREE_OBJECTID
:
483 case BTRFS_ROOT_TREE_DIR_OBJECTID
:
487 case BTRFS_CSUM_TREE_OBJECTID
:
492 case BTRFS_ORPHAN_OBJECTID
:
497 case BTRFS_TREE_LOG_OBJECTID
:
502 case BTRFS_TREE_LOG_FIXUP_OBJECTID
:
507 case BTRFS_TREE_RELOC_OBJECTID
:
512 case BTRFS_DATA_RELOC_TREE_OBJECTID
:
514 printf("data reloc");
517 case BTRFS_EXTENT_CSUM_OBJECTID
:
519 printf("extent checksum");
522 case BTRFS_QUOTA_TREE_OBJECTID
:
527 case BTRFS_UUID_TREE_OBJECTID
:
528 if (!extent_only
&& !device_only
)
533 case BTRFS_FREE_SPACE_TREE_OBJECTID
:
535 printf("free space");
537 case BTRFS_MULTIPLE_OBJECTIDS
:
547 if (extent_only
&& !skip
) {
549 btrfs_print_key(&disk_key
);
551 print_extents(tree_root_scan
, buf
);
554 btrfs_print_key(&disk_key
);
556 printf(" %llu level %d\n",
557 (unsigned long long)buf
->start
,
558 btrfs_header_level(buf
));
561 btrfs_print_tree(tree_root_scan
, buf
, 1);
564 free_extent_buffer(buf
);
570 btrfs_release_path(&path
);
572 if (tree_root_scan
== info
->tree_root
&& info
->log_root_tree
) {
573 tree_root_scan
= info
->log_root_tree
;
577 if (extent_only
|| device_only
|| uuid_tree_only
)
581 print_old_roots(info
->super_copy
);
583 printf("total bytes %llu\n",
584 (unsigned long long)btrfs_super_total_bytes(info
->super_copy
));
585 printf("bytes used %llu\n",
586 (unsigned long long)btrfs_super_bytes_used(info
->super_copy
));
587 uuidbuf
[BTRFS_UUID_UNPARSED_SIZE
- 1] = '\0';
588 uuid_unparse(info
->super_copy
->fsid
, uuidbuf
);
589 printf("uuid %s\n", uuidbuf
);
591 ret
= close_ctree(root
);