Fix man page headers to include the correct program name.
[btrfs-progs-unstable/devel.git] / debug-tree.c
blobe22d3f5be55ad565fbbcaefb762a31136214ed4c
1 /*
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.
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"
31 static int print_usage(void)
33 fprintf(stderr, "usage: debug-tree [ -e ] device\n");
34 fprintf(stderr, "%s\n", BTRFS_BUILD_VERSION);
35 exit(1);
38 static void print_extent_leaf(struct btrfs_root *root, struct extent_buffer *l)
40 int i;
41 struct btrfs_item *item;
42 struct btrfs_extent_ref *ref;
43 struct btrfs_key key;
44 static u64 last = 0;
45 static u64 last_len = 0;
46 u32 nr = btrfs_header_nritems(l);
47 u32 type;
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);
53 switch (type) {
54 case BTRFS_EXTENT_ITEM_KEY:
55 last_len = key.offset;
56 last = key.objectid;
57 break;
58 case BTRFS_EXTENT_REF_KEY:
59 ref = btrfs_item_ptr(l, i, struct btrfs_extent_ref);
60 printf("%llu %llu extent back ref root %llu gen %llu "
61 "owner %llu num_refs %lu\n",
62 (unsigned long long)last,
63 (unsigned long long)last_len,
64 (unsigned long long)btrfs_ref_root(l, ref),
65 (unsigned long long)btrfs_ref_generation(l, ref),
66 (unsigned long long)btrfs_ref_objectid(l, ref),
67 (unsigned long)btrfs_ref_num_refs(l, ref));
68 break;
70 fflush(stdout);
74 static void print_extents(struct btrfs_root *root, struct extent_buffer *eb)
76 int i;
77 u32 nr;
78 u32 size;
80 if (!eb)
81 return;
82 if (btrfs_is_leaf(eb)) {
83 print_extent_leaf(root, eb);
84 return;
86 size = btrfs_level_size(root, btrfs_header_level(eb) - 1);
87 nr = btrfs_header_nritems(eb);
88 for (i = 0; i < nr; i++) {
89 struct extent_buffer *next = read_tree_block(root,
90 btrfs_node_blockptr(eb, i),
91 size,
92 btrfs_node_ptr_generation(eb, i));
93 if (btrfs_is_leaf(next) &&
94 btrfs_header_level(eb) != 1)
95 BUG();
96 if (btrfs_header_level(next) !=
97 btrfs_header_level(eb) - 1)
98 BUG();
99 print_extents(root, next);
100 free_extent_buffer(next);
104 int main(int ac, char **av)
106 struct btrfs_root *root;
107 struct btrfs_path path;
108 struct btrfs_key key;
109 struct btrfs_root_item ri;
110 struct extent_buffer *leaf;
111 struct btrfs_disk_key disk_key;
112 struct btrfs_key found_key;
113 char uuidbuf[37];
114 int ret;
115 int slot;
116 int extent_only = 0;
117 struct btrfs_root *tree_root_scan;
119 radix_tree_init();
121 while(1) {
122 int c;
123 c = getopt(ac, av, "e");
124 if (c < 0)
125 break;
126 switch(c) {
127 case 'e':
128 extent_only = 1;
129 break;
130 default:
131 print_usage();
134 ac = ac - optind;
135 if (ac != 1)
136 print_usage();
138 root = open_ctree(av[optind], 0, 0);
139 if (!root) {
140 fprintf(stderr, "unable to open %s\n", av[optind]);
141 exit(1);
143 if (!extent_only) {
144 printf("root tree\n");
145 btrfs_print_tree(root->fs_info->tree_root,
146 root->fs_info->tree_root->node);
148 printf("chunk tree\n");
149 btrfs_print_tree(root->fs_info->chunk_root,
150 root->fs_info->chunk_root->node);
152 tree_root_scan = root->fs_info->tree_root;
154 btrfs_init_path(&path);
155 again:
156 key.offset = 0;
157 key.objectid = 0;
158 btrfs_set_key_type(&key, BTRFS_ROOT_ITEM_KEY);
159 ret = btrfs_search_slot(NULL, tree_root_scan, &key, &path, 0, 0);
160 BUG_ON(ret < 0);
161 while(1) {
162 leaf = path.nodes[0];
163 slot = path.slots[0];
164 if (slot >= btrfs_header_nritems(leaf)) {
165 ret = btrfs_next_leaf(tree_root_scan, &path);
166 if (ret != 0)
167 break;
168 leaf = path.nodes[0];
169 slot = path.slots[0];
171 btrfs_item_key(leaf, &disk_key, path.slots[0]);
172 btrfs_disk_key_to_cpu(&found_key, &disk_key);
173 if (btrfs_key_type(&found_key) == BTRFS_ROOT_ITEM_KEY) {
174 unsigned long offset;
175 struct extent_buffer *buf;
176 int skip = extent_only;
178 offset = btrfs_item_ptr_offset(leaf, slot);
179 read_extent_buffer(leaf, &ri, offset, sizeof(ri));
180 buf = read_tree_block(tree_root_scan,
181 btrfs_root_bytenr(&ri),
182 tree_root_scan->leafsize, 0);
183 switch(found_key.objectid) {
184 case BTRFS_ROOT_TREE_OBJECTID:
185 if (!skip)
186 printf("root");
187 break;
188 case BTRFS_EXTENT_TREE_OBJECTID:
189 skip = 0;
190 if (!extent_only)
191 printf("extent");
192 break;
193 case BTRFS_CHUNK_TREE_OBJECTID:
194 if (!skip) {
195 printf("chunk");
197 break;
198 case BTRFS_DEV_TREE_OBJECTID:
199 if (!skip) {
200 printf("device");
202 break;
203 case BTRFS_FS_TREE_OBJECTID:
204 if (!skip) {
205 printf("fs");
207 break;
208 case BTRFS_ROOT_TREE_DIR_OBJECTID:
209 if (!skip) {
210 printf("directory");
212 break;
213 case BTRFS_CSUM_TREE_OBJECTID:
214 if (!skip) {
215 printf("checksum");
217 break;
218 case BTRFS_ORPHAN_OBJECTID:
219 if (!skip) {
220 printf("orphan");
222 break;
223 case BTRFS_TREE_LOG_OBJECTID:
224 if (!skip) {
225 printf("log");
227 break;
228 case BTRFS_TREE_LOG_FIXUP_OBJECTID:
229 if (!skip) {
230 printf("log fixup");
232 break;
233 case BTRFS_TREE_RELOC_OBJECTID:
234 if (!skip) {
235 printf("reloc");
237 break;
238 case BTRFS_DATA_RELOC_TREE_OBJECTID:
239 if (!skip) {
240 printf("data reloc");
242 break;
243 case BTRFS_EXTENT_CSUM_OBJECTID:
244 if (!skip) {
245 printf("extent checksum");
247 case BTRFS_MULTIPLE_OBJECTIDS:
248 if (!skip) {
249 printf("multiple");
251 break;
252 default:
253 if (!skip) {
254 printf("file");
257 if (!skip && !extent_only) {
258 printf(" tree ");
259 btrfs_print_key(&disk_key);
260 printf(" \n");
261 btrfs_print_tree(tree_root_scan, buf);
262 } else if (extent_only && !skip) {
263 print_extents(tree_root_scan, buf);
266 path.slots[0]++;
268 btrfs_release_path(root, &path);
270 if (tree_root_scan == root->fs_info->tree_root &&
271 root->fs_info->log_root_tree) {
272 tree_root_scan = root->fs_info->log_root_tree;
273 goto again;
276 if (extent_only)
277 return 0;
279 printf("total bytes %llu\n",
280 (unsigned long long)btrfs_super_total_bytes(&root->fs_info->super_copy));
281 printf("bytes used %llu\n",
282 (unsigned long long)btrfs_super_bytes_used(&root->fs_info->super_copy));
283 uuidbuf[36] = '\0';
284 uuid_unparse(root->fs_info->super_copy.fsid, uuidbuf);
285 printf("uuid %s\n", uuidbuf);
286 printf("%s\n", BTRFS_BUILD_VERSION);
287 return 0;