HAMMER Utilities: Mirroring and pseudo-fs directives
[dragonfly.git] / sbin / hammer / cmd_show.c
blob7c44e717b495dac4d4db1d40dabcb2a48332e58c
1 /*
2 * Copyright (c) 2008 The DragonFly Project. All rights reserved.
3 *
4 * This code is derived from software contributed to The DragonFly Project
5 * by Matthew Dillon <dillon@backplane.com>
6 *
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions
9 * are met:
11 * 1. Redistributions of source code must retain the above copyright
12 * notice, this list of conditions and the following disclaimer.
13 * 2. Redistributions in binary form must reproduce the above copyright
14 * notice, this list of conditions and the following disclaimer in
15 * the documentation and/or other materials provided with the
16 * distribution.
17 * 3. Neither the name of The DragonFly Project nor the names of its
18 * contributors may be used to endorse or promote products derived
19 * from this software without specific, prior written permission.
21 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
22 * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
23 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
24 * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
25 * COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
26 * INCIDENTAL, SPECIAL, EXEMPLARY OR CONSEQUENTIAL DAMAGES (INCLUDING,
27 * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
28 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
29 * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
30 * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
31 * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
32 * SUCH DAMAGE.
34 * $DragonFly: src/sbin/hammer/cmd_show.c,v 1.14 2008/07/02 22:05:59 dillon Exp $
37 #include "hammer.h"
39 #define FLAG_TOOFARLEFT 0x0001
40 #define FLAG_TOOFARRIGHT 0x0002
41 #define FLAG_BADTYPE 0x0004
42 #define FLAG_BADCHILDPARENT 0x0008
44 static void print_btree_node(hammer_off_t node_offset, int depth, int spike,
45 hammer_base_elm_t left_bound,
46 hammer_base_elm_t right_bound);
47 static void print_record(hammer_btree_elm_t elm);
48 static void print_btree_elm(hammer_btree_elm_t elm, int i, u_int8_t type,
49 int flags, const char *label);
50 static int print_elm_flags(hammer_node_ondisk_t node, hammer_off_t node_offset,
51 hammer_btree_elm_t elm, u_int8_t btype,
52 hammer_base_elm_t left_bound,
53 hammer_base_elm_t right_bound);
54 static void print_bigblock_fill(hammer_off_t offset);
56 void
57 hammer_cmd_show(hammer_off_t node_offset, int depth,
58 hammer_base_elm_t left_bound, hammer_base_elm_t right_bound)
60 struct volume_info *volume;
62 if (node_offset == (hammer_off_t)-1) {
63 volume = get_volume(RootVolNo);
64 node_offset = volume->ondisk->vol0_btree_root;
65 if (VerboseOpt) {
66 printf("\trecords=%lld\n",
67 volume->ondisk->vol0_stat_records);
69 rel_volume(volume);
71 printf("show %016llx depth %d\n", node_offset, depth);
72 print_btree_node(node_offset, depth, 0, left_bound, right_bound);
73 print_btree_node(node_offset, depth, 1, left_bound, right_bound);
76 static void
77 print_btree_node(hammer_off_t node_offset, int depth, int spike,
78 hammer_base_elm_t left_bound, hammer_base_elm_t right_bound)
80 struct buffer_info *buffer = NULL;
81 hammer_node_ondisk_t node;
82 hammer_btree_elm_t elm;
83 int i;
84 int flags;
85 int maxcount;
86 char badc;
88 node = get_node(node_offset, &buffer);
90 if (crc32(&node->crc + 1, HAMMER_BTREE_CRCSIZE) == node->crc)
91 badc = ' ';
92 else
93 badc = 'B';
95 if (spike == 0) {
96 printf("%c NODE %016llx cnt=%d p=%016llx "
97 "type=%c depth=%d",
98 badc,
99 node_offset, node->count, node->parent,
100 (node->type ? node->type : '?'), depth);
101 printf(" mirror %016llx", node->mirror_tid);
102 if (VerboseOpt) {
103 printf(" fill=");
104 print_bigblock_fill(node_offset);
106 printf(" {\n");
108 maxcount = (node->type == HAMMER_BTREE_TYPE_INTERNAL) ?
109 HAMMER_BTREE_INT_ELMS : HAMMER_BTREE_LEAF_ELMS;
111 for (i = 0; i < node->count && i < maxcount; ++i) {
112 elm = &node->elms[i];
113 flags = print_elm_flags(node, node_offset,
114 elm, elm->base.btype,
115 left_bound, right_bound);
116 print_btree_elm(elm, i, node->type, flags, "ELM");
118 if (node->type == HAMMER_BTREE_TYPE_INTERNAL) {
119 elm = &node->elms[i];
120 flags = print_elm_flags(node, node_offset,
121 elm, 'I',
122 left_bound, right_bound);
123 print_btree_elm(elm, i, node->type, flags, "RBN");
125 printf(" }\n");
128 for (i = 0; i < node->count; ++i) {
129 elm = &node->elms[i];
131 switch(node->type) {
132 case HAMMER_BTREE_TYPE_INTERNAL:
133 if (elm->internal.subtree_offset) {
134 print_btree_node(elm->internal.subtree_offset,
135 depth + 1, spike,
136 &elm[0].base, &elm[1].base);
138 break;
139 default:
140 break;
143 rel_buffer(buffer);
146 static
147 void
148 print_btree_elm(hammer_btree_elm_t elm, int i, u_int8_t type,
149 int flags, const char *label)
151 char flagstr[8] = { 0, '-', '-', '-', '-', '-', '-', 0 };
153 flagstr[0] = flags ? 'B' : 'G';
154 if (flags & FLAG_TOOFARLEFT)
155 flagstr[2] = 'L';
156 if (flags & FLAG_TOOFARRIGHT)
157 flagstr[3] = 'R';
158 if (flags & FLAG_BADTYPE)
159 flagstr[4] = 'T';
160 if (flags & FLAG_BADCHILDPARENT)
161 flagstr[4] = 'C';
163 printf("%s\t%s %2d %c ",
164 flagstr, label, i,
165 (elm->base.btype ? elm->base.btype : '?'));
166 printf("obj=%016llx key=%016llx lo=%08x rt=%02x ot=%02x\n",
167 elm->base.obj_id,
168 elm->base.key,
169 elm->base.localization,
170 elm->base.rec_type,
171 elm->base.obj_type);
172 printf("\t %c tids %016llx:%016llx ",
173 (elm->base.delete_tid ? 'd' : ' '),
174 elm->base.create_tid,
175 elm->base.delete_tid);
177 switch(type) {
178 case HAMMER_BTREE_TYPE_INTERNAL:
179 printf("suboff=%016llx", elm->internal.subtree_offset);
180 if (VerboseOpt)
181 printf(" mirror %016llx", elm->internal.mirror_tid);
182 break;
183 case HAMMER_BTREE_TYPE_LEAF:
184 switch(elm->base.btype) {
185 case HAMMER_BTREE_TYPE_RECORD:
186 printf("\n\t ");
187 printf(" dataoff=%016llx/%d",
188 elm->leaf.data_offset, elm->leaf.data_len);
189 if (VerboseOpt) {
190 printf("\n\t fills=");
191 print_bigblock_fill(elm->leaf.data_offset);
193 if (VerboseOpt > 1)
194 print_record(elm);
195 break;
197 break;
198 default:
199 break;
201 printf("\n");
204 static
206 print_elm_flags(hammer_node_ondisk_t node, hammer_off_t node_offset,
207 hammer_btree_elm_t elm, u_int8_t btype,
208 hammer_base_elm_t left_bound, hammer_base_elm_t right_bound)
210 int flags = 0;
212 switch(node->type) {
213 case HAMMER_BTREE_TYPE_INTERNAL:
214 if (elm->internal.subtree_offset) {
215 struct buffer_info *buffer = NULL;
216 hammer_node_ondisk_t subnode;
218 subnode = get_node(elm->internal.subtree_offset,
219 &buffer);
220 if (subnode->parent != node_offset)
221 flags |= FLAG_BADCHILDPARENT;
222 rel_buffer(buffer);
225 switch(btype) {
226 case HAMMER_BTREE_TYPE_INTERNAL:
227 if (left_bound == NULL || right_bound == NULL)
228 break;
229 if (hammer_btree_cmp(&elm->base, left_bound) < 0)
230 flags |= FLAG_TOOFARLEFT;
231 if (hammer_btree_cmp(&elm->base, right_bound) > 0)
232 flags |= FLAG_TOOFARRIGHT;
233 break;
234 case HAMMER_BTREE_TYPE_LEAF:
235 if (left_bound == NULL || right_bound == NULL)
236 break;
237 if (hammer_btree_cmp(&elm->base, left_bound) < 0)
238 flags |= FLAG_TOOFARLEFT;
239 if (hammer_btree_cmp(&elm->base, right_bound) >= 0)
240 flags |= FLAG_TOOFARRIGHT;
241 break;
242 default:
243 flags |= FLAG_BADTYPE;
244 break;
246 break;
247 case HAMMER_BTREE_TYPE_LEAF:
248 switch(btype) {
249 case HAMMER_BTREE_TYPE_RECORD:
250 if (left_bound == NULL || right_bound == NULL)
251 break;
252 if (hammer_btree_cmp(&elm->base, left_bound) < 0)
253 flags |= FLAG_TOOFARLEFT;
254 if (hammer_btree_cmp(&elm->base, right_bound) >= 0)
255 flags |= FLAG_TOOFARRIGHT;
256 break;
257 default:
258 flags |= FLAG_BADTYPE;
259 break;
261 break;
262 default:
263 flags |= FLAG_BADTYPE;
264 break;
266 return(flags);
269 static
270 void
271 print_bigblock_fill(hammer_off_t offset)
273 struct hammer_blockmap_layer1 layer1;
274 struct hammer_blockmap_layer2 layer2;
275 int fill;
277 blockmap_lookup(offset, &layer1, &layer2);
278 fill = layer2.bytes_free * 100 / HAMMER_LARGEBLOCK_SIZE;
279 fill = 100 - fill;
281 printf("z%d:%lld=%d%%",
282 HAMMER_ZONE_DECODE(offset),
283 (offset & ~HAMMER_OFF_ZONE_MASK) / HAMMER_LARGEBLOCK_SIZE,
284 fill
288 static
289 void
290 print_record(hammer_btree_elm_t elm)
292 struct buffer_info *data_buffer;
293 hammer_off_t data_offset;
294 int32_t data_len;
295 hammer_data_ondisk_t data;
297 data_offset = elm->leaf.data_offset;
298 data_len = elm->leaf.data_len;
299 data_buffer = NULL;
301 if (data_offset)
302 data = get_buffer_data(data_offset, &data_buffer, 0);
303 else
304 data = NULL;
306 switch(elm->leaf.base.rec_type) {
307 case HAMMER_RECTYPE_INODE:
308 printf("\n%17s", "");
309 printf("size=%lld nlinks=%lld",
310 data->inode.size, data->inode.nlinks);
311 if (VerboseOpt > 2) {
312 printf(" mode=%05o uflags=%08x\n",
313 data->inode.mode,
314 data->inode.uflags);
315 printf("%17s", "");
316 printf("ctime=%016llx pobjid=%016llx obj_type=%d\n",
317 data->inode.ctime, data->inode.parent_obj_id,
318 data->inode.obj_type);
319 printf("%17s", "");
320 printf("mtime=%016llx", data->inode.mtime);
322 break;
323 case HAMMER_RECTYPE_DIRENTRY:
324 printf("\n%17s", "");
325 data_len -= HAMMER_ENTRY_NAME_OFF;
326 printf("dir-entry ino=%016llx lo=%08x name=\"%*.*s\"",
327 data->entry.obj_id,
328 data->entry.localization,
329 data_len, data_len, data->entry.name);
330 break;
331 case HAMMER_RECTYPE_FIX:
332 switch(elm->leaf.base.key) {
333 case HAMMER_FIXKEY_SYMLINK:
334 data_len -= HAMMER_SYMLINK_NAME_OFF;
335 printf("\n%17s", "");
336 printf("symlink=\"%*.*s\"", data_len, data_len,
337 data->symlink.name);
338 break;
339 default:
340 break;
342 break;
343 default:
344 break;
346 if (data_buffer)
347 rel_buffer(data_buffer);