sbin/hammer2: Refactor show_bref()
[dragonfly.git] / sbin / hammer2 / cmd_debug.c
1 /*
2  * Copyright (c) 2011-2012 The DragonFly Project.  All rights reserved.
3  *
4  * This code is derived from software contributed to The DragonFly Project
5  * by Matthew Dillon <dillon@dragonflybsd.org>
6  * by Venkatesh Srinivas <vsrinivas@dragonflybsd.org>
7  *
8  * Redistribution and use in source and binary forms, with or without
9  * modification, are permitted provided that the following conditions
10  * are met:
11  *
12  * 1. Redistributions of source code must retain the above copyright
13  *    notice, this list of conditions and the following disclaimer.
14  * 2. Redistributions in binary form must reproduce the above copyright
15  *    notice, this list of conditions and the following disclaimer in
16  *    the documentation and/or other materials provided with the
17  *    distribution.
18  * 3. Neither the name of The DragonFly Project nor the names of its
19  *    contributors may be used to endorse or promote products derived
20  *    from this software without specific, prior written permission.
21  *
22  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
23  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
24  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
25  * FOR A PARTICULAR PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE
26  * COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
27  * INCIDENTAL, SPECIAL, EXEMPLARY OR CONSEQUENTIAL DAMAGES (INCLUDING,
28  * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
29  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
30  * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
31  * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
32  * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
33  * SUCH DAMAGE.
34  */
35
36 #include "hammer2.h"
37
38 static int show_tab = 2;
39
40 static void shell_msghandler(dmsg_msg_t *msg, int unmanaged);
41 static void shell_ttymsg(dmsg_iocom_t *iocom);
42 static void CountFreeBlocks(hammer2_bmap_data_t *bmap,
43                 hammer2_off_t *accum16, hammer2_off_t *accum64);
44
45 /************************************************************************
46  *                                  SHELL                               *
47  ************************************************************************/
48
49 int
50 cmd_shell(const char *hostname)
51 {
52         dmsg_master_service_info_t *info;
53         pthread_t thread;
54         int fd;
55
56         fd = dmsg_connect(hostname);
57         if (fd < 0)
58                 return 1;
59
60         info = malloc(sizeof(*info));
61         bzero(info, sizeof(*info));
62         info->fd = fd;
63         info->detachme = 0;
64         info->usrmsg_callback = shell_msghandler;
65         info->altmsg_callback = shell_ttymsg;
66         info->label = strdup("debug");
67         pthread_create(&thread, NULL, dmsg_master_service, info);
68         pthread_join(thread, NULL);
69
70         return 0;
71 }
72
73 #if 0
74 int
75 cmd_shell(const char *hostname)
76 {
77         struct dmsg_iocom iocom;
78         dmsg_msg_t *msg;
79         int fd;
80
81         /*
82          * Connect to the target
83          */
84         fd = dmsg_connect(hostname);
85         if (fd < 0)
86                 return 1;
87
88         /*
89          * Initialize the session and transmit an empty DMSG_DBG_SHELL
90          * to cause the remote end to generate a prompt.
91          */
92         dmsg_iocom_init(&iocom, fd, 0,
93                         NULL,
94                         shell_rcvmsg,
95                         hammer2_shell_parse,
96                         shell_ttymsg);
97         fcntl(0, F_SETFL, O_NONBLOCK);
98         printf("debug: connected\n");
99
100         msg = dmsg_msg_alloc(&iocom.state0, 0, DMSG_DBG_SHELL, NULL, NULL);
101         dmsg_msg_write(msg);
102         dmsg_iocom_core(&iocom);
103         fprintf(stderr, "debug: disconnected\n");
104         close(fd);
105         return 0;
106 }
107 #endif
108
109 /*
110  * Debug session front-end
111  *
112  * Callback from dmsg_iocom_core() when messages might be present
113  * on the socket.
114  */
115 static
116 void
117 shell_msghandler(dmsg_msg_t *msg, int unmanaged)
118 {
119         dmsg_msg_t *nmsg;
120
121         switch(msg->tcmd) {
122 #if 0
123         case DMSG_LNK_ERROR:
124         case DMSG_LNK_ERROR | DMSGF_REPLY:
125                 /*
126                  * One-way non-transactional LNK_ERROR messages typically
127                  * indicate a connection failure.  Error code 0 is used by
128                  * the debug shell to indicate no more results from last cmd.
129                  */
130                 if (msg->any.head.error) {
131                         fprintf(stderr, "Stream failure: %s\n",
132                                 dmsg_msg_str(msg));
133                 } else {
134                         write(1, "debug> ", 7);
135                 }
136                 break;
137         case DMSG_LNK_ERROR | DMSGF_DELETE:
138                 /* ignore termination of LNK_CONN */
139                 break;
140 #endif
141         case DMSG_DBG_SHELL:
142                 /*
143                  * We send the commands, not accept them.
144                  * (one-way message, not transactional)
145                  */
146                 if (unmanaged)
147                         dmsg_msg_reply(msg, DMSG_ERR_NOSUPP);
148                 break;
149         case DMSG_DBG_SHELL | DMSGF_REPLY:
150                 /*
151                  * A reply from the remote is data we copy to stdout.
152                  * (one-way message, not transactional)
153                  */
154                 if (msg->aux_size) {
155                         msg->aux_data[msg->aux_size - 1] = 0;
156                         write(1, msg->aux_data, strlen(msg->aux_data));
157                 }
158                 break;
159 #if 1
160         case DMSG_LNK_CONN | DMSGF_CREATE:
161                 fprintf(stderr, "Debug Shell received LNK_CONN\n");
162                 nmsg = dmsg_msg_alloc(&msg->state->iocom->state0, 0,
163                                       DMSG_DBG_SHELL,
164                                       NULL, NULL);
165                 dmsg_msg_write(nmsg);
166                 dmsg_msg_reply(msg, DMSG_ERR_NOSUPP);
167                 break;
168         case DMSG_LNK_CONN | DMSGF_DELETE:
169                 break;
170 #endif
171         default:
172                 /*
173                  * Ignore any unknown messages, Terminate any unknown
174                  * transactions with an error.
175                  */
176                 fprintf(stderr, "Unknown message: %s\n", dmsg_msg_str(msg));
177                 if (unmanaged) {
178                         if (msg->any.head.cmd & DMSGF_CREATE)
179                                 dmsg_msg_reply(msg, DMSG_ERR_NOSUPP);
180                         if (msg->any.head.cmd & DMSGF_DELETE)
181                                 dmsg_msg_reply(msg, DMSG_ERR_NOSUPP);
182                 }
183                 break;
184         }
185 }
186
187 /*
188  * Debug session front-end
189  */
190 static
191 void
192 shell_ttymsg(dmsg_iocom_t *iocom)
193 {
194         dmsg_state_t *pstate;
195         dmsg_msg_t *msg;
196         char buf[256];
197         char *cmd;
198         size_t len;
199
200         if (fgets(buf, sizeof(buf), stdin) != NULL) {
201                 if (buf[0] == '@') {
202                         pstate = dmsg_findspan(strtok(buf + 1, " \t\n"));
203                         cmd = strtok(NULL, "\n");
204                 } else {
205                         pstate = &iocom->state0;
206                         cmd = strtok(buf, "\n");
207                 }
208                 if (cmd && pstate) {
209                         len = strlen(cmd) + 1;
210                         msg = dmsg_msg_alloc(pstate, len, DMSG_DBG_SHELL,
211                                              NULL, NULL);
212                         bcopy(cmd, msg->aux_data, len);
213                         dmsg_msg_write(msg);
214                 } else if (cmd) {
215                         fprintf(stderr, "@msgid not found\n");
216                 } else {
217                         /*
218                          * This should cause the remote end to generate
219                          * a debug> prompt (and thus shows that there is
220                          * connectivity).
221                          */
222                         msg = dmsg_msg_alloc(pstate, 0, DMSG_DBG_SHELL,
223                                              NULL, NULL);
224                         dmsg_msg_write(msg);
225                 }
226         } else if (feof(stdin)) {
227                 /*
228                  * Set EOF flag without setting any error code for normal
229                  * EOF.
230                  */
231                 iocom->flags |= DMSG_IOCOMF_EOF;
232         } else {
233                 clearerr(stdin);
234         }
235 }
236
237 /*
238  * Debug session back-end (on remote side)
239  */
240 static void shell_span(dmsg_msg_t *msg, char *cmdbuf);
241 static void shell_ping(dmsg_msg_t *msg, char *cmdbuf);
242
243 void
244 hammer2_shell_parse(dmsg_msg_t *msg, int unmanaged)
245 {
246         dmsg_iocom_t *iocom = msg->state->iocom;
247         char *cmdbuf;
248         char *cmdp;
249         uint32_t cmd;
250
251         /*
252          * Filter on debug shell commands and ping responses only
253          */
254         cmd = msg->any.head.cmd;
255         if ((cmd & DMSGF_CMDSWMASK) == (DMSG_LNK_PING | DMSGF_REPLY)) {
256                 dmsg_printf(iocom, "ping reply\n");
257                 return;
258         }
259
260         if ((cmd & DMSGF_PROTOS) != DMSG_PROTO_DBG) {
261                 if (unmanaged)
262                         dmsg_msg_reply(msg, DMSG_ERR_NOSUPP);
263                 return;
264         }
265         if ((cmd & DMSGF_CMDSWMASK) != DMSG_DBG_SHELL) {
266                 if (unmanaged)
267                         dmsg_msg_reply(msg, DMSG_ERR_NOSUPP);
268                 return;
269         }
270
271         /*
272          * Debug shell command
273          */
274         cmdbuf = msg->aux_data;
275         cmdp = strsep(&cmdbuf, " \t");
276
277         if (cmdp == NULL || *cmdp == 0) {
278                 ;
279         } else if (strcmp(cmdp, "ping") == 0) {
280                 shell_ping(msg, cmdbuf);
281         } else if (strcmp(cmdp, "span") == 0) {
282                 shell_span(msg, cmdbuf);
283         } else if (strcmp(cmdp, "tree") == 0) {
284                 dmsg_shell_tree(iocom, cmdbuf); /* dump spanning tree */
285         } else if (strcmp(cmdp, "help") == 0 || strcmp(cmdp, "?") == 0) {
286                 dmsg_printf(iocom, "help            Command help\n");
287                 dmsg_printf(iocom, "span <host>     Span to target host\n");
288                 dmsg_printf(iocom, "tree            Dump spanning tree\n");
289                 dmsg_printf(iocom, "@span <cmd>     Issue via circuit\n");
290         } else {
291                 dmsg_printf(iocom, "Unrecognized command: %s\n", cmdp);
292         }
293         dmsg_printf(iocom, "debug> ");
294 }
295
296 static void
297 shell_ping(dmsg_msg_t *msg, char *cmdbuf __unused)
298 {
299         dmsg_iocom_t *iocom = msg->state->iocom;
300         dmsg_msg_t *m2;
301
302         dmsg_printf(iocom, "sending ping\n");
303         m2 = dmsg_msg_alloc(msg->state, 0, DMSG_LNK_PING, NULL, NULL);
304         dmsg_msg_write(m2);
305 }
306
307 static void
308 shell_span(dmsg_msg_t *msg, char *cmdbuf)
309 {
310         dmsg_iocom_t *iocom = msg->state->iocom;
311         dmsg_master_service_info_t *info;
312         const char *hostname = strsep(&cmdbuf, " \t");
313         pthread_t thread;
314         int fd;
315
316         /*
317          * Connect to the target
318          */
319         if (hostname == NULL) {
320                 fd = -1;
321         } else {
322                 fd = dmsg_connect(hostname);
323         }
324
325         /*
326          * Start master service
327          */
328         if (fd < 0) {
329                 dmsg_printf(iocom, "Connection to %s failed\n", hostname);
330         } else {
331                 dmsg_printf(iocom, "Connected to %s\n", hostname);
332
333                 info = malloc(sizeof(*info));
334                 bzero(info, sizeof(*info));
335                 info->fd = fd;
336                 info->detachme = 1;
337                 info->usrmsg_callback = hammer2_shell_parse;
338                 info->label = strdup("client");
339
340                 pthread_create(&thread, NULL, dmsg_master_service, info);
341                 /*pthread_join(thread, &res);*/
342         }
343 }
344
345 /************************************************************************
346  *                              DEBUGSPAN                               *
347  ************************************************************************
348  *
349  * Connect to the target manually (not via the cluster list embedded in
350  * a hammer2 filesystem) and initiate the SPAN protocol.
351  */
352 int
353 cmd_debugspan(const char *hostname)
354 {
355         pthread_t thread;
356         int fd;
357         void *res;
358
359         /*
360          * Connect to the target
361          */
362         fd = dmsg_connect(hostname);
363         if (fd < 0)
364                 return 1;
365
366         printf("debugspan: connected to %s, starting CONN/SPAN\n", hostname);
367         pthread_create(&thread, NULL,
368                        dmsg_master_service, (void *)(intptr_t)fd);
369         pthread_join(thread, &res);
370         return(0);
371 }
372
373 /************************************************************************
374  *                                  SHOW                                *
375  ************************************************************************/
376
377 static void show_bref(hammer2_volume_data_t *voldata, int fd, int tab,
378                         int bi, hammer2_blockref_t *bref,
379                         int dofreemap, int norecurse);
380 static void tabprintf(int tab, const char *ctl, ...);
381
382 static int64_t TotalFreeAccum16;
383 static int64_t TotalFreeAccum64;
384
385 int
386 cmd_show(const char *devpath, int dofreemap)
387 {
388         hammer2_blockref_t broot;
389         hammer2_blockref_t best;
390         hammer2_media_data_t media;
391         int fd;
392         int i;
393         int best_i;
394         char *env;
395
396         TotalFreeAccum16 = 0;   /* includes TotalFreeAccum64 */
397         TotalFreeAccum64 = 0;
398
399         env = getenv("HAMMER2_SHOW_TAB");
400         if (env != NULL) {
401                 show_tab = (int)strtol(env, NULL, 0);
402                 if (errno || show_tab < 0 || show_tab > 8)
403                         show_tab = 2;
404         }
405
406         fd = open(devpath, O_RDONLY);
407         if (fd < 0) {
408                 perror("open");
409                 return 1;
410         }
411
412         /*
413          * Show the tree using the best volume header.
414          * -vvv will show the tree for all four volume headers.
415          */
416         best_i = -1;
417         bzero(&best, sizeof(best));
418         for (i = 0; i < HAMMER2_NUM_VOLHDRS; ++i) {
419                 bzero(&broot, sizeof(broot));
420                 broot.type = dofreemap ?
421                     HAMMER2_BREF_TYPE_FREEMAP : HAMMER2_BREF_TYPE_VOLUME;
422                 broot.data_off = (i * HAMMER2_ZONE_BYTES64) | HAMMER2_PBUFRADIX;
423                 lseek(fd, broot.data_off & ~HAMMER2_OFF_MASK_RADIX, 0);
424                 if (read(fd, &media, HAMMER2_PBUFSIZE) ==
425                     (ssize_t)HAMMER2_PBUFSIZE) {
426                         broot.mirror_tid = media.voldata.mirror_tid;
427                         if (best_i < 0 || best.mirror_tid < broot.mirror_tid) {
428                                 best_i = i;
429                                 best = broot;
430                         }
431                         if (VerboseOpt >= 3)
432                                 show_bref(&media.voldata, fd, 0, i, &broot,
433                                     dofreemap, 0);
434                 }
435         }
436         if (VerboseOpt < 3)
437                 show_bref(&media.voldata, fd, 0, best_i, &best, dofreemap, 0);
438         close(fd);
439
440         if (dofreemap && VerboseOpt < 3) {
441                 printf("Total free storage: %6.3fGB (%6.3fGB in 64KB chunks)\n",
442                        (double)TotalFreeAccum16 / (1024.0 * 1024.0 * 1024.0),
443                        (double)TotalFreeAccum64 / (1024.0 * 1024.0 * 1024.0));
444         }
445
446         return 0;
447 }
448
449 static void
450 show_bref(hammer2_volume_data_t *voldata, int fd, int tab,
451           int bi, hammer2_blockref_t *bref, int dofreemap, int norecurse)
452 {
453         hammer2_media_data_t media;
454         hammer2_blockref_t *bscan;
455         int bcount;
456         int i;
457         int namelen;
458         int obrace = 1;
459         int failed;
460         size_t bytes;
461         const char *type_str;
462         char *str = NULL;
463         uint32_t cv;
464         uint64_t cv64;
465
466         bytes = (bref->data_off & HAMMER2_OFF_MASK_RADIX);
467         if (bytes)
468                 bytes = (size_t)1 << bytes;
469         if (bytes) {
470                 hammer2_off_t io_off;
471                 hammer2_off_t io_base;
472                 size_t io_bytes;
473                 size_t boff;
474
475                 io_off = bref->data_off & ~HAMMER2_OFF_MASK_RADIX;
476                 io_base = io_off & ~(hammer2_off_t)(HAMMER2_MINIOSIZE - 1);
477                 boff = io_off - io_base;
478
479                 io_bytes = HAMMER2_MINIOSIZE;
480                 while (io_bytes + boff < bytes)
481                         io_bytes <<= 1;
482
483                 if (io_bytes > sizeof(media)) {
484                         printf("(bad block size %zd)\n", bytes);
485                         return;
486                 }
487                 if (bref->type != HAMMER2_BREF_TYPE_DATA || VerboseOpt >= 1) {
488                         lseek(fd, io_base, 0);
489                         if (read(fd, &media, io_bytes) != (ssize_t)io_bytes) {
490                                 printf("(media read failed)\n");
491                                 return;
492                         }
493                         if (boff)
494                                 bcopy((char *)&media + boff, &media, bytes);
495                 }
496         }
497
498         bscan = NULL;
499         bcount = 0;
500         namelen = 0;
501         failed = 0;
502
503         switch(bref->type) {
504         case HAMMER2_BREF_TYPE_EMPTY:
505                 type_str = "empty";
506                 break;
507         case HAMMER2_BREF_TYPE_DIRENT:
508                 type_str = "dirent";
509                 break;
510         case HAMMER2_BREF_TYPE_INODE:
511                 type_str = "inode";
512                 break;
513         case HAMMER2_BREF_TYPE_INDIRECT:
514                 type_str = "indblk";
515                 break;
516         case HAMMER2_BREF_TYPE_DATA:
517                 type_str = "data";
518                 break;
519         case HAMMER2_BREF_TYPE_VOLUME:
520                 type_str = "volume";
521                 break;
522         case HAMMER2_BREF_TYPE_FREEMAP:
523                 type_str = "freemap";
524                 break;
525         case HAMMER2_BREF_TYPE_FREEMAP_NODE:
526                 type_str = "fmapnode";
527                 break;
528         case HAMMER2_BREF_TYPE_FREEMAP_LEAF:
529                 type_str = "fbitmap";
530                 break;
531         default:
532                 type_str = "unknown";
533                 break;
534         }
535
536         switch(bref->type) {
537         case HAMMER2_BREF_TYPE_INODE:
538                 if (!(media.ipdata.meta.op_flags & HAMMER2_OPFLAG_DIRECTDATA)) {
539                         bscan = &media.ipdata.u.blockset.blockref[0];
540                         bcount = HAMMER2_SET_COUNT;
541                 }
542                 break;
543         case HAMMER2_BREF_TYPE_INDIRECT:
544                 bscan = &media.npdata[0];
545                 bcount = bytes / sizeof(hammer2_blockref_t);
546                 break;
547         case HAMMER2_BREF_TYPE_VOLUME:
548                 bscan = &media.voldata.sroot_blockset.blockref[0];
549                 bcount = HAMMER2_SET_COUNT;
550                 break;
551         case HAMMER2_BREF_TYPE_FREEMAP:
552                 bscan = &media.voldata.freemap_blockset.blockref[0];
553                 bcount = HAMMER2_SET_COUNT;
554                 break;
555         case HAMMER2_BREF_TYPE_FREEMAP_NODE:
556                 bscan = &media.npdata[0];
557                 bcount = bytes / sizeof(hammer2_blockref_t);
558                 break;
559         }
560
561         tabprintf(tab,
562                   "%s.%-3d %016jx %016jx/%-2d "
563                   "mir=%016jx mod=%016jx leafcnt=%d ",
564                   type_str, bi, (intmax_t)bref->data_off,
565                   (intmax_t)bref->key, (intmax_t)bref->keybits,
566                   (intmax_t)bref->mirror_tid, (intmax_t)bref->modify_tid,
567                   bref->leaf_count);
568         tab += show_tab;
569         if (bref->flags)
570                 printf("flags=%02x ", bref->flags);
571         if (bref->type == HAMMER2_BREF_TYPE_FREEMAP_NODE ||
572             bref->type == HAMMER2_BREF_TYPE_FREEMAP_LEAF) {
573                 printf("bigmask=%08x avail=%ld ",
574                         bref->check.freemap.bigmask, bref->check.freemap.avail);
575         }
576
577         /*
578          * Check data integrity in verbose mode, otherwise we are just doing
579          * a quick meta-data scan.  Meta-data integrity is always checked.
580          * (Also see the check above that ensures the media data is loaded,
581          * otherwise there's no data to check!).
582          *
583          * WARNING! bref->check state may be used for other things when
584          *          bref has no data (bytes == 0).
585          */
586         if (bytes &&
587             (bref->type != HAMMER2_BREF_TYPE_DATA || VerboseOpt >= 1)) {
588                 switch(HAMMER2_DEC_CHECK(bref->methods)) {
589                 case HAMMER2_CHECK_NONE:
590                         printf("(meth %02x) ", bref->methods);
591                         break;
592                 case HAMMER2_CHECK_DISABLED:
593                         printf("(meth %02x) ", bref->methods);
594                         break;
595                 case HAMMER2_CHECK_ISCSI32:
596                         cv = hammer2_icrc32(&media, bytes);
597                         if (bref->check.iscsi32.value != cv) {
598                                 printf("(icrc %02x:%08x/%08x failed) ",
599                                        bref->methods,
600                                        bref->check.iscsi32.value,
601                                        cv);
602                                 failed = 1;
603                         } else {
604                                 printf("(meth %02x, iscsi32=%08x) ",
605                                        bref->methods, cv);
606                         }
607                         break;
608                 case HAMMER2_CHECK_XXHASH64:
609                         cv64 = XXH64(&media, bytes, XXH_HAMMER2_SEED);
610                         if (bref->check.xxhash64.value != cv64) {
611                                 printf("(xxhash64 %02x:%016jx/%016jx failed) ",
612                                        bref->methods,
613                                        bref->check.xxhash64.value,
614                                        cv64);
615                                 failed = 1;
616                         } else {
617                                 printf("(meth %02x, xxh=%016jx) ",
618                                        bref->methods, cv64);
619                         }
620                         break;
621                 case HAMMER2_CHECK_SHA192:
622                         printf("(meth %02x) ", bref->methods);
623                         break;
624                 case HAMMER2_CHECK_FREEMAP:
625                         cv = hammer2_icrc32(&media, bytes);
626                         if (bref->check.freemap.icrc32 != cv) {
627                                 printf("(fcrc %02x:%08x/%08x failed) ",
628                                         bref->methods,
629                                         bref->check.freemap.icrc32,
630                                         cv);
631                                 failed = 1;
632                         } else {
633                                 printf("(meth %02x, fcrc=%08x) ",
634                                         bref->methods, cv);
635                         }
636                         break;
637                 }
638         }
639
640         if (QuietOpt > 0) {
641                 obrace = 0;
642                 printf("\n");
643                 goto skip_data;
644         }
645
646         switch(bref->type) {
647         case HAMMER2_BREF_TYPE_EMPTY:
648                 obrace = 0;
649                 break;
650         case HAMMER2_BREF_TYPE_DIRENT:
651                 printf("{\n");
652                 if (bref->embed.dirent.namlen <= sizeof(bref->check.buf)) {
653                         tabprintf(tab, "filename \"%*.*s\"\n",
654                                 bref->embed.dirent.namlen,
655                                 bref->embed.dirent.namlen,
656                                 bref->check.buf);
657                 } else {
658                         tabprintf(tab, "filename \"%*.*s\"\n",
659                                 bref->embed.dirent.namlen,
660                                 bref->embed.dirent.namlen,
661                                 media.buf);
662                 }
663                 tabprintf(tab, "inum 0x%016jx\n",
664                           (uintmax_t)bref->embed.dirent.inum);
665                 tabprintf(tab, "type     %s\n",
666                           hammer2_iptype_to_str(bref->embed.dirent.type));
667                 break;
668         case HAMMER2_BREF_TYPE_INODE:
669                 printf("{\n");
670                 namelen = media.ipdata.meta.name_len;
671                 if (namelen > HAMMER2_INODE_MAXNAME)
672                         namelen = 0;
673                 tabprintf(tab, "filename \"%*.*s\"\n",
674                           namelen, namelen, media.ipdata.filename);
675                 tabprintf(tab, "version  %d\n", media.ipdata.meta.version);
676                 tabprintf(tab, "pfs_st   %d\n", media.ipdata.meta.pfs_subtype);
677                 tabprintf(tab, "uflags   0x%08x\n",
678                           media.ipdata.meta.uflags);
679                 if (media.ipdata.meta.rmajor || media.ipdata.meta.rminor) {
680                         tabprintf(tab, "rmajor   %d\n",
681                                   media.ipdata.meta.rmajor);
682                         tabprintf(tab, "rminor   %d\n",
683                                   media.ipdata.meta.rminor);
684                 }
685                 tabprintf(tab, "ctime    %s\n",
686                           hammer2_time64_to_str(media.ipdata.meta.ctime, &str));
687                 tabprintf(tab, "mtime    %s\n",
688                           hammer2_time64_to_str(media.ipdata.meta.mtime, &str));
689                 tabprintf(tab, "atime    %s\n",
690                           hammer2_time64_to_str(media.ipdata.meta.atime, &str));
691                 tabprintf(tab, "btime    %s\n",
692                           hammer2_time64_to_str(media.ipdata.meta.btime, &str));
693                 tabprintf(tab, "uid      %s\n",
694                           hammer2_uuid_to_str(&media.ipdata.meta.uid, &str));
695                 tabprintf(tab, "gid      %s\n",
696                           hammer2_uuid_to_str(&media.ipdata.meta.gid, &str));
697                 tabprintf(tab, "type     %s\n",
698                           hammer2_iptype_to_str(media.ipdata.meta.type));
699                 tabprintf(tab, "opflgs   0x%02x\n",
700                           media.ipdata.meta.op_flags);
701                 tabprintf(tab, "capflgs  0x%04x\n",
702                           media.ipdata.meta.cap_flags);
703                 tabprintf(tab, "mode     %-7o\n",
704                           media.ipdata.meta.mode);
705                 tabprintf(tab, "inum     0x%016jx\n",
706                           media.ipdata.meta.inum);
707                 tabprintf(tab, "size     %ju ",
708                           (uintmax_t)media.ipdata.meta.size);
709                 if (media.ipdata.meta.op_flags & HAMMER2_OPFLAG_DIRECTDATA &&
710                     media.ipdata.meta.size <= HAMMER2_EMBEDDED_BYTES)
711                         printf("(embedded data)\n");
712                 else
713                         printf("\n");
714                 tabprintf(tab, "nlinks   %ju\n",
715                           (uintmax_t)media.ipdata.meta.nlinks);
716                 tabprintf(tab, "iparent  0x%016jx\n",
717                           (uintmax_t)media.ipdata.meta.iparent);
718                 tabprintf(tab, "name_key 0x%016jx\n",
719                           (uintmax_t)media.ipdata.meta.name_key);
720                 tabprintf(tab, "name_len %u\n",
721                           media.ipdata.meta.name_len);
722                 tabprintf(tab, "ncopies  %u\n",
723                           media.ipdata.meta.ncopies);
724                 tabprintf(tab, "compalg  %u\n",
725                           media.ipdata.meta.comp_algo);
726                 tabprintf(tab, "target_t %u\n",
727                           media.ipdata.meta.target_type);
728                 tabprintf(tab, "checkalg %u\n",
729                           media.ipdata.meta.check_algo);
730                 if ((media.ipdata.meta.op_flags & HAMMER2_OPFLAG_PFSROOT) ||
731                     media.ipdata.meta.pfs_type == HAMMER2_PFSTYPE_SUPROOT) {
732                         tabprintf(tab, "pfs_nmas %u\n",
733                                   media.ipdata.meta.pfs_nmasters);
734                         tabprintf(tab, "pfs_type %u (%s)\n",
735                                   media.ipdata.meta.pfs_type,
736                                   hammer2_pfstype_to_str(media.ipdata.meta.pfs_type));
737                         tabprintf(tab, "pfs_inum 0x%016jx\n",
738                                   (uintmax_t)media.ipdata.meta.pfs_inum);
739                         tabprintf(tab, "pfs_clid %s\n",
740                                   hammer2_uuid_to_str(&media.ipdata.meta.pfs_clid,
741                                                       &str));
742                         tabprintf(tab, "pfs_fsid %s\n",
743                                   hammer2_uuid_to_str(&media.ipdata.meta.pfs_fsid,
744                                                       &str));
745                         tabprintf(tab, "pfs_lsnap_tid 0x%016jx\n",
746                                   (uintmax_t)media.ipdata.meta.pfs_lsnap_tid);
747                 }
748                 tabprintf(tab, "data_quota  %ju\n",
749                           (uintmax_t)media.ipdata.meta.data_quota);
750                 tabprintf(tab, "data_count  %ju\n",
751                           (uintmax_t)bref->embed.stats.data_count);
752                 tabprintf(tab, "inode_quota %ju\n",
753                           (uintmax_t)media.ipdata.meta.inode_quota);
754                 tabprintf(tab, "inode_count %ju\n",
755                           (uintmax_t)bref->embed.stats.inode_count);
756                 break;
757         case HAMMER2_BREF_TYPE_INDIRECT:
758                 printf("{\n");
759                 tabprintf(tab, "count %d\n", bcount);
760                 break;
761         case HAMMER2_BREF_TYPE_DATA:
762                 printf("\n");
763                 obrace = 0;
764                 break;
765         case HAMMER2_BREF_TYPE_VOLUME:
766                 printf("mirror_tid=%016jx freemap_tid=%016jx ",
767                         media.voldata.mirror_tid,
768                         media.voldata.freemap_tid);
769                 printf("{\n");
770                 break;
771         case HAMMER2_BREF_TYPE_FREEMAP:
772                 printf("mirror_tid=%016jx freemap_tid=%016jx ",
773                         media.voldata.mirror_tid,
774                         media.voldata.freemap_tid);
775                 printf("{\n");
776                 break;
777         case HAMMER2_BREF_TYPE_FREEMAP_LEAF:
778                 printf("{\n");
779                 for (i = 0; i < HAMMER2_FREEMAP_COUNT; ++i) {
780                         hammer2_off_t data_off = bref->key +
781                                 i * 256 * HAMMER2_FREEMAP_BLOCK_SIZE;
782 #if HAMMER2_BMAP_ELEMENTS != 8
783 #error "cmd_debug.c: HAMMER2_BMAP_ELEMENTS expected to be 8"
784 #endif
785                         tabprintf(tab + 4, "%016jx %04d.%04x (avail=%7d) "
786                                   "%016jx %016jx %016jx %016jx "
787                                   "%016jx %016jx %016jx %016jx\n",
788                                   data_off, i, media.bmdata[i].class,
789                                   media.bmdata[i].avail,
790                                   media.bmdata[i].bitmapq[0],
791                                   media.bmdata[i].bitmapq[1],
792                                   media.bmdata[i].bitmapq[2],
793                                   media.bmdata[i].bitmapq[3],
794                                   media.bmdata[i].bitmapq[4],
795                                   media.bmdata[i].bitmapq[5],
796                                   media.bmdata[i].bitmapq[6],
797                                   media.bmdata[i].bitmapq[7]);
798                         if (data_off >= voldata->aux_end &&
799                             data_off < voldata->volu_size) {
800                                 CountFreeBlocks(&media.bmdata[i],
801                                                 &TotalFreeAccum16,
802                                                 &TotalFreeAccum64);
803                         }
804                 }
805                 tabprintf(tab, "}\n");
806                 break;
807         case HAMMER2_BREF_TYPE_FREEMAP_NODE:
808                 printf("{\n");
809                 tabprintf(tab, "count %d\n", bcount);
810                 break;
811         default:
812                 printf("\n");
813                 obrace = 0;
814                 break;
815         }
816         if (str)
817                 free(str);
818
819 skip_data:
820         /*
821          * Recurse if norecurse == 0.  If the CRC failed, pass norecurse = 1.
822          * That is, if an indirect or inode fails we still try to list its
823          * direct children to help with debugging, but go no further than
824          * that because they are probably garbage.
825          */
826         for (i = 0; norecurse == 0 && i < bcount; ++i) {
827                 if (bscan[i].type != HAMMER2_BREF_TYPE_EMPTY) {
828                         show_bref(voldata, fd, tab, i, &bscan[i], dofreemap,
829                                   failed);
830                 }
831         }
832         tab -= show_tab;
833         if (obrace) {
834                 if (bref->type == HAMMER2_BREF_TYPE_INODE)
835                         tabprintf(tab, "} (%s.%d, \"%*.*s\")\n",
836                                   type_str, bi, namelen, namelen,
837                                   media.ipdata.filename);
838                 else
839                         tabprintf(tab, "} (%s.%d)\n", type_str,bi);
840         }
841 }
842
843 static
844 void
845 CountFreeBlocks(hammer2_bmap_data_t *bmap,
846                 hammer2_off_t *accum16, hammer2_off_t *accum64)
847 {
848         int i;
849         int j;
850
851         for (i = 0; i < 8; ++i) {
852                 uint64_t bm = bmap->bitmapq[i];
853                 uint64_t mask;
854
855                 mask = 0x03;
856                 for (j = 0; j < 64; j += 2) {
857                         if ((bm & mask) == 0)
858                                 *accum16 += 16384;
859                 }
860                 mask = 0xFF;
861                 for (j = 0; j < 64; j += 8) {
862                         if ((bm & mask) == 0)
863                                 *accum64 += 65536;
864                 }
865         }
866 }
867
868 int
869 cmd_hash(int ac, const char **av)
870 {
871         int i;
872
873         for (i = 0; i < ac; ++i) {
874                 printf("%016jx %s\n", dirhash(av[i], strlen(av[i])), av[i]);
875         }
876         return(0);
877 }
878
879 int
880 cmd_dhash(int ac, const char **av)
881 {
882         char buf[1024];         /* 1K extended directory record */
883         uint64_t hash;
884         int i;
885
886         for (i = 0; i < ac; ++i) {
887                 bzero(buf, sizeof(buf));
888                 snprintf(buf, sizeof(buf), "%s", av[i]);
889                 hash = XXH64(buf, sizeof(buf), XXH_HAMMER2_SEED);
890                 printf("%016jx %s\n", hash, av[i]);
891         }
892         return(0);
893 }
894
895 int
896 cmd_dumpchain(const char *path, u_int flags)
897 {
898         int dummy = (int)flags;
899         int fd;
900
901         fd = open(path, O_RDONLY);
902         if (fd >= 0) {
903                 ioctl(fd, HAMMER2IOC_DEBUG_DUMP, &dummy);
904                 close(fd);
905         } else {
906                 fprintf(stderr, "unable to open %s\n", path);
907         }
908         return 0;
909 }
910
911
912 static
913 void
914 tabprintf(int tab, const char *ctl, ...)
915 {
916         va_list va;
917
918         printf("%*.*s", tab, tab, "");
919         va_start(va, ctl);
920         vprintf(ctl, va);
921         va_end(va);
922 }