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"
30 static int print_usage(void)
32 fprintf(stderr, "usage: debug-tree [ -e ] device\n");
36 static void print_extent_leaf(struct btrfs_root *root, struct extent_buffer *l)
39 struct btrfs_item *item;
40 struct btrfs_extent_ref *ref;
43 static u64 last_len = 0;
44 u32 nr = btrfs_header_nritems(l);
47 for (i = 0 ; i < nr ; i++) {
48 item = btrfs_item_nr(l, i);
49 btrfs_item_key_to_cpu(l, &key, i);
50 type = btrfs_key_type(&key);
52 case BTRFS_EXTENT_ITEM_KEY:
53 last_len = key.offset;
56 case BTRFS_EXTENT_REF_KEY:
57 ref = btrfs_item_ptr(l, i, struct btrfs_extent_ref);
58 printf("%llu %llu extent back ref root %llu gen %llu "
59 "owner %llu offset %llu\n",
60 (unsigned long long)last,
61 (unsigned long long)last_len,
62 (unsigned long long)btrfs_ref_root(l, ref),
63 (unsigned long long)btrfs_ref_generation(l, ref),
64 (unsigned long long)btrfs_ref_objectid(l, ref),
65 (unsigned long long)btrfs_ref_offset(l, ref));
72 static void print_extents(struct btrfs_root *root, struct extent_buffer *eb)
80 if (btrfs_is_leaf(eb)) {
81 print_extent_leaf(root, eb);
84 size = btrfs_level_size(root, btrfs_header_level(eb) - 1);
85 nr = btrfs_header_nritems(eb);
86 for (i = 0; i < nr; i++) {
87 struct extent_buffer *next = read_tree_block(root,
88 btrfs_node_blockptr(eb, i),
90 if (btrfs_is_leaf(next) &&
91 btrfs_header_level(eb) != 1)
93 if (btrfs_header_level(next) !=
94 btrfs_header_level(eb) - 1)
96 print_extents(root, next);
97 free_extent_buffer(next);
101 int main(int ac, char **av)
103 struct btrfs_root *root;
104 struct btrfs_path path;
105 struct btrfs_key key;
106 struct btrfs_root_item ri;
107 struct extent_buffer *leaf;
108 struct btrfs_key found_key;
118 c = getopt(ac, av, "e");
133 root = open_ctree(av[optind], 0);
135 fprintf(stderr, "unable to open %s\n", av[optind]);
139 printf("root tree\n");
140 btrfs_print_tree(root->fs_info->tree_root,
141 root->fs_info->tree_root->node);
143 printf("chunk tree\n");
144 btrfs_print_tree(root->fs_info->chunk_root,
145 root->fs_info->chunk_root->node);
147 btrfs_init_path(&path);
150 btrfs_set_key_type(&key, BTRFS_ROOT_ITEM_KEY);
151 ret = btrfs_search_slot(NULL, root->fs_info->tree_root,
155 leaf = path.nodes[0];
156 slot = path.slots[0];
157 if (slot >= btrfs_header_nritems(leaf)) {
158 ret = btrfs_next_leaf(root, &path);
161 leaf = path.nodes[0];
162 slot = path.slots[0];
164 btrfs_item_key_to_cpu(leaf, &found_key, path.slots[0]);
165 if (btrfs_key_type(&found_key) == BTRFS_ROOT_ITEM_KEY) {
166 unsigned long offset;
167 struct extent_buffer *buf;
168 int skip = extent_only;
170 offset = btrfs_item_ptr_offset(leaf, slot);
171 read_extent_buffer(leaf, &ri, offset, sizeof(ri));
172 buf = read_tree_block(root->fs_info->tree_root,
173 btrfs_root_bytenr(&ri),
175 switch(found_key.objectid) {
176 case BTRFS_ROOT_TREE_OBJECTID:
180 case BTRFS_DEV_TREE_OBJECTID:
182 printf("device extent tree ");
185 case BTRFS_EXTENT_TREE_OBJECTID:
188 printf("extent tree ");
191 if (!skip && !extent_only) {
192 printf("tree %llu %u %llu\n",
193 (unsigned long long)found_key.objectid,
195 (unsigned long long)found_key.offset);
196 btrfs_print_tree(root, buf);
197 } else if (extent_only && !skip) {
198 print_extents(root, buf);
203 btrfs_release_path(root, &path);
207 printf("total bytes %llu\n",
208 (unsigned long long)btrfs_super_total_bytes(&root->fs_info->super_copy));
209 printf("bytes used %llu\n",
210 (unsigned long long)btrfs_super_bytes_used(&root->fs_info->super_copy));
212 uuid_unparse(root->fs_info->super_copy.fsid, uuidbuf);
213 printf("uuid %s\n", uuidbuf);