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>
23 #include "kerncompat.h"
24 #include "radix-tree.h"
27 #include "print-tree.h"
28 #include "transaction.h"
31 static int print_usage(void)
33 fprintf(stderr
, "usage: debug-tree [ -e ] device\n");
34 fprintf(stderr
, "%s\n", BTRFS_BUILD_VERSION
);
38 static void print_extent_leaf(struct btrfs_root
*root
, struct extent_buffer
*l
)
41 struct btrfs_item
*item
;
42 // struct btrfs_extent_ref *ref;
45 static u64 last_len
= 0;
46 u32 nr
= btrfs_header_nritems(l
);
49 for (i
= 0 ; i
< nr
; i
++) {
50 item
= btrfs_item_nr(l
, i
);
51 btrfs_item_key_to_cpu(l
, &key
, i
);
52 type
= btrfs_key_type(&key
);
54 case BTRFS_EXTENT_ITEM_KEY
:
55 last_len
= key
.offset
;
59 case BTRFS_EXTENT_REF_KEY
:
60 ref
= btrfs_item_ptr(l
, i
, struct btrfs_extent_ref
);
61 printf("%llu %llu extent back ref root %llu gen %llu "
62 "owner %llu num_refs %lu\n",
63 (unsigned long long)last
,
64 (unsigned long long)last_len
,
65 (unsigned long long)btrfs_ref_root(l
, ref
),
66 (unsigned long long)btrfs_ref_generation(l
, ref
),
67 (unsigned long long)btrfs_ref_objectid(l
, ref
),
68 (unsigned long)btrfs_ref_num_refs(l
, ref
));
76 static void print_extents(struct btrfs_root
*root
, struct extent_buffer
*eb
)
84 if (btrfs_is_leaf(eb
)) {
85 print_extent_leaf(root
, eb
);
88 size
= btrfs_level_size(root
, btrfs_header_level(eb
) - 1);
89 nr
= btrfs_header_nritems(eb
);
90 for (i
= 0; i
< nr
; i
++) {
91 struct extent_buffer
*next
= read_tree_block(root
,
92 btrfs_node_blockptr(eb
, i
),
94 btrfs_node_ptr_generation(eb
, i
));
95 if (btrfs_is_leaf(next
) &&
96 btrfs_header_level(eb
) != 1)
98 if (btrfs_header_level(next
) !=
99 btrfs_header_level(eb
) - 1)
101 print_extents(root
, next
);
102 free_extent_buffer(next
);
106 int main(int ac
, char **av
)
108 struct btrfs_root
*root
;
109 struct btrfs_path path
;
110 struct btrfs_key key
;
111 struct btrfs_root_item ri
;
112 struct extent_buffer
*leaf
;
113 struct btrfs_disk_key disk_key
;
114 struct btrfs_key found_key
;
119 struct btrfs_root
*tree_root_scan
;
125 c
= getopt(ac
, av
, "e");
140 root
= open_ctree(av
[optind
], 0, 0);
142 fprintf(stderr
, "unable to open %s\n", av
[optind
]);
146 printf("root tree\n");
147 btrfs_print_tree(root
->fs_info
->tree_root
,
148 root
->fs_info
->tree_root
->node
);
150 printf("chunk tree\n");
151 btrfs_print_tree(root
->fs_info
->chunk_root
,
152 root
->fs_info
->chunk_root
->node
);
154 tree_root_scan
= root
->fs_info
->tree_root
;
156 btrfs_init_path(&path
);
160 btrfs_set_key_type(&key
, BTRFS_ROOT_ITEM_KEY
);
161 ret
= btrfs_search_slot(NULL
, tree_root_scan
, &key
, &path
, 0, 0);
164 leaf
= path
.nodes
[0];
165 slot
= path
.slots
[0];
166 if (slot
>= btrfs_header_nritems(leaf
)) {
167 ret
= btrfs_next_leaf(tree_root_scan
, &path
);
170 leaf
= path
.nodes
[0];
171 slot
= path
.slots
[0];
173 btrfs_item_key(leaf
, &disk_key
, path
.slots
[0]);
174 btrfs_disk_key_to_cpu(&found_key
, &disk_key
);
175 if (btrfs_key_type(&found_key
) == BTRFS_ROOT_ITEM_KEY
) {
176 unsigned long offset
;
177 struct extent_buffer
*buf
;
178 int skip
= extent_only
;
180 offset
= btrfs_item_ptr_offset(leaf
, slot
);
181 read_extent_buffer(leaf
, &ri
, offset
, sizeof(ri
));
182 buf
= read_tree_block(tree_root_scan
,
183 btrfs_root_bytenr(&ri
),
184 tree_root_scan
->leafsize
, 0);
185 switch(found_key
.objectid
) {
186 case BTRFS_ROOT_TREE_OBJECTID
:
190 case BTRFS_EXTENT_TREE_OBJECTID
:
195 case BTRFS_CHUNK_TREE_OBJECTID
:
200 case BTRFS_DEV_TREE_OBJECTID
:
205 case BTRFS_FS_TREE_OBJECTID
:
210 case BTRFS_ROOT_TREE_DIR_OBJECTID
:
215 case BTRFS_CSUM_TREE_OBJECTID
:
220 case BTRFS_ORPHAN_OBJECTID
:
225 case BTRFS_TREE_LOG_OBJECTID
:
230 case BTRFS_TREE_LOG_FIXUP_OBJECTID
:
235 case BTRFS_TREE_RELOC_OBJECTID
:
240 case BTRFS_DATA_RELOC_TREE_OBJECTID
:
242 printf("data reloc");
245 case BTRFS_EXTENT_CSUM_OBJECTID
:
247 printf("extent checksum");
249 case BTRFS_MULTIPLE_OBJECTIDS
:
259 if (!skip
&& !extent_only
) {
261 btrfs_print_key(&disk_key
);
263 btrfs_print_tree(tree_root_scan
, buf
);
264 } else if (extent_only
&& !skip
) {
265 print_extents(tree_root_scan
, buf
);
270 btrfs_release_path(root
, &path
);
272 if (tree_root_scan
== root
->fs_info
->tree_root
&&
273 root
->fs_info
->log_root_tree
) {
274 tree_root_scan
= root
->fs_info
->log_root_tree
;
281 printf("total bytes %llu\n",
282 (unsigned long long)btrfs_super_total_bytes(&root
->fs_info
->super_copy
));
283 printf("bytes used %llu\n",
284 (unsigned long long)btrfs_super_bytes_used(&root
->fs_info
->super_copy
));
286 uuid_unparse(root
->fs_info
->super_copy
.fsid
, uuidbuf
);
287 printf("uuid %s\n", uuidbuf
);
288 printf("%s\n", BTRFS_BUILD_VERSION
);