sbin/hammer: Allow any volume to be stripped by strip command
[dragonfly.git] / sbin / hammer / hammer.c
blob59ead005624b49a3b7c3f6a143397a69f3419bf0
1 /*
2 * Copyright (c) 2007 The DragonFly Project. All rights reserved.
4 * This code is derived from software contributed to The DragonFly Project
5 * by Matthew Dillon <dillon@backplane.com>
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.
35 #include "hammer.h"
37 static void hammer_parsedevs(const char *blkdevs, int oflags);
38 static void __hammer_parsedevs(const char *blkdevs, int oflags,
39 int verify_volume, int verify_count);
40 static void sigalrm(int signo);
41 static void sigintr(int signo);
42 static void usage(int exit_code);
44 int RecurseOpt;
45 int VerboseOpt;
46 int QuietOpt;
47 int NoSyncOpt;
48 int TwoWayPipeOpt;
49 int TimeoutOpt;
50 int DelayOpt = 5;
51 char *SshPort;
52 int ForceYesOpt;
53 int CompressOpt;
54 int ForceOpt;
55 int RunningIoctl;
56 int DidInterrupt;
57 int BulkOpt;
58 int AllPFS;
59 uint64_t BandwidthOpt;
60 uint64_t SplitupOpt = 4ULL * 1024ULL * 1024ULL * 1024ULL;
61 uint64_t MemoryLimit = 1024LLU * 1024 * 1024;
62 const char *SplitupOptStr;
63 const char *CyclePath;
65 int
66 main(int ac, char **av)
68 char *blkdevs = NULL;
69 char *ptr;
70 char *restrictcmd = NULL;
71 uint32_t status;
72 int ch;
74 while ((ch = getopt(ac, av,
75 "b:c:de:hf:i:m:p:qrt:v2yABC:FR:S:T:X")) != -1) {
76 switch(ch) {
77 case '2':
78 TwoWayPipeOpt = 1;
79 break;
80 case 'y':
81 ForceYesOpt = 1;
82 break;
83 case 'b':
84 BandwidthOpt = strtoull(optarg, &ptr, 0);
85 switch(*ptr) {
86 case 'g':
87 case 'G':
88 BandwidthOpt *= 1024;
89 /* fall through */
90 case 'm':
91 case 'M':
92 BandwidthOpt *= 1024;
93 /* fall through */
94 case 'k':
95 case 'K':
96 BandwidthOpt *= 1024;
97 break;
98 case '\0':
99 /* bytes per second if no suffix */
100 break;
101 default:
102 usage(1);
103 /* not reached */
105 break;
106 case 'S':
107 SplitupOptStr = strdup(optarg);
108 SplitupOpt = strtoull(optarg, &ptr, 0);
109 switch(*ptr) {
110 case 'g':
111 case 'G':
112 SplitupOpt *= 1024;
113 /* fall through */
114 case 'm':
115 case 'M':
116 SplitupOpt *= 1024;
117 /* fall through */
118 case 'k':
119 case 'K':
120 SplitupOpt *= 1024;
121 break;
122 case '\0':
123 /* bytes per second if no suffix */
124 break;
125 default:
126 usage(1);
127 /* not reached */
129 break;
130 case 'c':
131 CyclePath = optarg;
132 break;
133 case 'd':
134 ++DebugOpt;
135 break;
136 case 'e':
137 ScoreBoardFile = optarg;
138 break;
139 case 'h':
140 usage(0);
141 /* not reached */
142 case 'i':
143 DelayOpt = strtol(optarg, NULL, 0);
144 break;
145 case 'm':
146 MemoryLimit = strtouq(optarg, &ptr, 0);
147 switch(*ptr) {
148 case 't':
149 case 'T':
150 MemoryLimit *= 1024;
151 /* fall through */
152 case 'g':
153 case 'G':
154 MemoryLimit *= 1024;
155 /* fall through */
156 case 'm':
157 case 'M':
158 MemoryLimit *= 1024;
159 /* fall through */
160 case 'k':
161 case 'K':
162 MemoryLimit *= 1024;
163 /* fall through */
164 default:
165 break;
168 /* minimum limit */
169 if (MemoryLimit < 1024 * 1024)
170 MemoryLimit = 1024 * 1024;
171 break;
172 case 'p':
173 SshPort = optarg;
174 break;
175 case 'r':
176 RecurseOpt = 1;
177 break;
178 case 'f':
179 blkdevs = optarg;
180 break;
181 case 't':
182 TimeoutOpt = strtol(optarg, NULL, 0);
183 break;
184 case 'v':
185 if (QuietOpt > 0)
186 --QuietOpt;
187 else
188 ++VerboseOpt;
189 break;
190 case 'q':
191 if (VerboseOpt > 0)
192 --VerboseOpt;
193 else
194 ++QuietOpt;
195 break;
196 case 'A':
197 AllPFS = 1;
198 break;
199 case 'B':
200 BulkOpt = 1;
201 break;
202 case 'C':
203 if (hammer_parse_cache_size(optarg) == -1) {
204 usage(1);
205 /* not reached */
207 break;
208 case 'F':
209 ForceOpt = 1;
210 break;
211 case 'R':
212 if (restrictcmd == NULL)
213 restrictcmd = optarg;
214 break;
215 case 'T':
216 if (RestrictTarget == NULL)
217 RestrictTarget = optarg;
218 break;
219 case 'X':
220 CompressOpt = 1;
221 break;
222 default:
223 usage(1);
224 /* not reached */
227 ac -= optind;
228 av += optind;
229 if (ac < 1) {
230 usage(1);
231 /* not reached */
234 signal(SIGALRM, sigalrm);
235 signal(SIGINT, sigintr);
238 * Check command restriction (used by hammer ssh-remote). Several
239 * commands may be iterated with a comma.
241 if (restrictcmd) {
242 char *elm, *dup;
244 dup = ptr = strdup(restrictcmd);
245 while ((elm = strsep(&ptr, ",")) != NULL) {
246 if (strcmp(av[0], elm) == 0)
247 break;
249 if (elm == NULL) {
250 errx(1, "hammer-remote: request does not match "
251 "restricted command");
252 /* not reached */
254 free(dup);
258 * Lookup the filesystem type
260 uuid_name_lookup(&Hammer_FSType, HAMMER_FSTYPE_STRING, &status);
261 if (status != uuid_s_ok) {
262 errx(1, "uuids file does not have the DragonFly "
263 "HAMMER filesystem type");
264 /* not reached */
268 * Parse commands
270 if (strcmp(av[0], "synctid") == 0) {
271 hammer_cmd_synctid(av + 1, ac - 1);
272 exit(0);
274 if (strcmp(av[0], "namekey2") == 0) {
275 int64_t key;
276 int32_t crcx;
277 int len;
278 const char *aname = av[1];
280 if (aname == NULL) {
281 usage(1);
282 /* not reached */
284 len = strlen(aname);
285 key = (uint32_t)crc32(aname, len) & 0xFFFFFFFEU;
287 switch(len) {
288 default:
289 crcx = crc32(aname + 3, len - 5);
290 crcx = crcx ^ (crcx >> 6) ^ (crcx >> 12);
291 key |= (int64_t)(crcx & 0x3F) << 42;
292 /* fall through */
293 case 5:
294 case 4:
295 /* fall through */
296 case 3:
297 key |= ((int64_t)(aname[2] & 0x1F) << 48);
298 /* fall through */
299 case 2:
300 key |= ((int64_t)(aname[1] & 0x1F) << 53) |
301 ((int64_t)(aname[len-2] & 0x1F) << 37);
302 /* fall through */
303 case 1:
304 key |= ((int64_t)(aname[0] & 0x1F) << 58) |
305 ((int64_t)(aname[len-1] & 0x1F) << 32);
306 /* fall through */
307 case 0:
308 break;
310 if (key == 0)
311 key |= 0x100000000LL;
312 printf("0x%016jx\n", (uintmax_t)key);
313 exit(0);
315 if (strcmp(av[0], "namekey1") == 0) {
316 int64_t key;
318 if (av[1] == NULL) {
319 usage(1);
320 /* not reached */
322 key = (int64_t)(crc32(av[1], strlen(av[1])) & 0x7FFFFFFF) << 32;
323 if (key == 0)
324 key |= 0x100000000LL;
325 printf("0x%016jx\n", (uintmax_t)key);
326 exit(0);
328 if (strcmp(av[0], "namekey32") == 0) {
329 int32_t key;
331 if (av[1] == NULL) {
332 usage(1);
333 /* not reached */
335 key = crc32(av[1], strlen(av[1])) & 0x7FFFFFFF;
336 if (key == 0)
337 ++key;
338 printf("0x%08x\n", key);
339 exit(0);
341 if (strcmp(av[0], "pfs-status") == 0) {
342 hammer_cmd_pseudofs_status(av + 1, ac - 1);
343 exit(0);
345 if (strcmp(av[0], "pfs-master") == 0) {
346 hammer_cmd_pseudofs_create(av + 1, ac - 1, 0);
347 exit(0);
349 if (strcmp(av[0], "pfs-slave") == 0) {
350 hammer_cmd_pseudofs_create(av + 1, ac - 1, 1);
351 exit(0);
353 if (strcmp(av[0], "pfs-update") == 0) {
354 hammer_cmd_pseudofs_update(av + 1, ac - 1);
355 exit(0);
357 if (strcmp(av[0], "pfs-upgrade") == 0) {
358 hammer_cmd_pseudofs_upgrade(av + 1, ac - 1);
359 exit(0);
361 if (strcmp(av[0], "pfs-downgrade") == 0) {
362 hammer_cmd_pseudofs_downgrade(av + 1, ac - 1);
363 exit(0);
365 if (strcmp(av[0], "pfs-destroy") == 0) {
366 hammer_cmd_pseudofs_destroy(av + 1, ac - 1);
367 exit(0);
369 if (strcmp(av[0], "prune") == 0) {
370 hammer_cmd_softprune(av + 1, ac - 1, 0);
371 exit(0);
373 if (strcmp(av[0], "prune-everything") == 0) {
374 hammer_cmd_softprune(av + 1, ac - 1, 1);
375 exit(0);
377 if (strcmp(av[0], "config") == 0) {
378 hammer_cmd_config(av + 1, ac - 1);
379 exit(0);
381 if (strcmp(av[0], "viconfig") == 0) {
382 hammer_cmd_viconfig(av + 1, ac - 1);
383 exit(0);
385 if (strcmp(av[0], "cleanup") == 0) {
386 hammer_cmd_cleanup(av + 1, ac - 1);
387 exit(0);
389 if (strcmp(av[0], "abort-cleanup") == 0) {
390 hammer_cmd_abort_cleanup(av + 1, ac - 1);
391 exit(0);
393 if (strcmp(av[0], "info") == 0) {
394 hammer_cmd_info(av + 1, ac - 1);
395 exit(0);
397 if (strcmp(av[0], "ssh-remote") == 0) {
398 if (ac != 3) {
399 usage(1);
400 /* not reached */
402 hammer_cmd_sshremote(av[1], av[2]);
403 exit(0);
405 if (strcmp(av[0], "snap") == 0) {
406 hammer_cmd_snap(av + 1, ac - 1, 0, 1);
407 exit(0);
409 if (strcmp(av[0], "snaplo") == 0) {
410 hammer_cmd_snap(av + 1, ac - 1, 0, 0);
411 exit(0);
413 if (strcmp(av[0], "snapq") == 0) {
414 hammer_cmd_snap(av + 1, ac - 1, 1, 0);
415 exit(0);
417 if (strcmp(av[0], "snapls") == 0) {
418 hammer_cmd_snapls(av + 1, ac - 1);
419 exit(0);
421 if (strcmp(av[0], "snaprm") == 0) {
422 hammer_cmd_snaprm(av + 1, ac - 1);
423 exit(0);
425 if (strcmp(av[0], "snapshot") == 0) {
426 hammer_cmd_snapshot(av + 1, ac - 1);
427 exit(0);
429 if (strcmp(av[0], "bstats") == 0) {
430 hammer_cmd_bstats(av + 1, ac - 1);
431 exit(0);
433 if (strcmp(av[0], "iostats") == 0) {
434 hammer_cmd_iostats(av + 1, ac - 1);
435 exit(0);
437 if (strcmp(av[0], "stats") == 0) {
438 hammer_cmd_stats(av + 1, ac - 1);
439 exit(0);
442 if (strncmp(av[0], "history", 7) == 0) {
443 hammer_cmd_history(av[0] + 7, av + 1, ac - 1);
444 exit(0);
446 if (strcmp(av[0], "rebalance") == 0) {
447 signal(SIGINT, sigalrm);
448 hammer_cmd_rebalance(av + 1, ac - 1);
449 exit(0);
451 if (strncmp(av[0], "reblock", 7) == 0) {
452 signal(SIGINT, sigalrm);
453 if (strcmp(av[0], "reblock") == 0)
454 hammer_cmd_reblock(av + 1, ac - 1, HAMMER_IOC_DO_FLAGS);
455 else if (strcmp(av[0], "reblock-btree") == 0)
456 hammer_cmd_reblock(av + 1, ac - 1, HAMMER_IOC_DO_BTREE);
457 else if (strcmp(av[0], "reblock-inodes") == 0)
458 hammer_cmd_reblock(av + 1, ac - 1, HAMMER_IOC_DO_INODES);
459 else if (strcmp(av[0], "reblock-dirs") == 0)
460 hammer_cmd_reblock(av + 1, ac - 1, HAMMER_IOC_DO_DIRS);
461 else if (strcmp(av[0], "reblock-data") == 0)
462 hammer_cmd_reblock(av + 1, ac - 1, HAMMER_IOC_DO_DATA);
463 else {
464 usage(1);
465 /* not reached */
467 exit(0);
469 if (strncmp(av[0], "mirror", 6) == 0) {
470 if (strcmp(av[0], "mirror-read") == 0)
471 hammer_cmd_mirror_read(av + 1, ac - 1, 0);
472 else if (strcmp(av[0], "mirror-read-stream") == 0)
473 hammer_cmd_mirror_read(av + 1, ac - 1, 1);
474 else if (strcmp(av[0], "mirror-write") == 0)
475 hammer_cmd_mirror_write(av + 1, ac - 1);
476 else if (strcmp(av[0], "mirror-copy") == 0)
477 hammer_cmd_mirror_copy(av + 1, ac - 1, 0);
478 else if (strcmp(av[0], "mirror-stream") == 0)
479 hammer_cmd_mirror_copy(av + 1, ac - 1, 1);
480 else if (strcmp(av[0], "mirror-dump") == 0)
481 hammer_cmd_mirror_dump(av + 1, ac - 1);
482 else {
483 usage(1);
484 /* not reached */
486 exit(0);
488 if (strcmp(av[0], "dedup-simulate") == 0) {
489 hammer_cmd_dedup_simulate(av + 1, ac - 1);
490 exit(0);
492 if (strcmp(av[0], "dedup") == 0) {
493 hammer_cmd_dedup(av + 1, ac - 1);
494 exit(0);
496 if (strcmp(av[0], "version") == 0) {
497 hammer_cmd_get_version(av + 1, ac - 1);
498 exit(0);
500 if (strcmp(av[0], "version-upgrade") == 0) {
501 hammer_cmd_set_version(av + 1, ac - 1);
502 exit(0);
504 if (strcmp(av[0], "volume-add") == 0) {
505 hammer_cmd_volume_add(av + 1, ac - 1);
506 exit(0);
508 if (strcmp(av[0], "volume-del") == 0) {
509 hammer_cmd_volume_del(av + 1, ac - 1);
510 exit(0);
512 if (strcmp(av[0], "volume-list") == 0) {
513 hammer_cmd_volume_list(av + 1, ac - 1);
514 exit(0);
516 if (strcmp(av[0], "volume-blkdevs") == 0) {
517 hammer_cmd_volume_blkdevs(av + 1, ac - 1);
518 exit(0);
521 if (strcmp(av[0], "show") == 0) {
522 const char *arg = NULL;
523 char *p, *dup;
524 int filter = -1;
525 int obfuscate = 0;
526 int indent = 0;
528 hammer_parsedevs(blkdevs, O_RDONLY);
529 if (ac > 3) {
530 errx(1, "Too many options specified");
531 /* not reached */
533 if (ac > 1)
534 arg = av[1];
535 if (ac > 2) {
536 dup = ptr = strdup(av[2]);
537 while ((p = strsep(&ptr, ",")) != NULL) {
538 if (strcmp(p, "filter") == 0)
539 filter = 1;
540 else if (strcmp(p, "nofilter") == 0)
541 filter = 0;
542 else if (strcmp(p, "obfuscate") == 0)
543 obfuscate = 1;
544 else if (strcmp(p, "indent") == 0)
545 indent = 1;
547 free(dup);
549 hammer_cmd_show(arg, filter, obfuscate, indent);
550 exit(0);
552 if (strcmp(av[0], "show-undo") == 0) {
553 hammer_parsedevs(blkdevs, O_RDONLY);
554 hammer_cmd_show_undo();
555 exit(0);
557 if (strcmp(av[0], "recover") == 0) {
558 __hammer_parsedevs(blkdevs, O_RDONLY, 0, 1);
559 hammer_cmd_recover(av + 1, ac - 1);
560 exit(0);
562 if (strcmp(av[0], "blockmap") == 0) {
563 hammer_parsedevs(blkdevs, O_RDONLY);
564 hammer_cmd_blockmap();
565 exit(0);
567 if (strcmp(av[0], "checkmap") == 0) {
568 hammer_parsedevs(blkdevs, O_RDONLY);
569 hammer_cmd_checkmap();
570 exit(0);
572 if (strcmp(av[0], "strip") == 0) {
573 __hammer_parsedevs(blkdevs, O_RDWR, 0, 0);
574 hammer_cmd_strip();
575 exit(0);
578 usage(1);
579 /* not reached */
580 return(0);
584 * Parse the device specification.
586 * Multi-volume hammer devices are colon-separated. Each element
587 * may be further expanded via /etc/devtab. One may also specify
588 * a single element which is expanded into multiple elements via
589 * /etc/devtab.
591 static
592 void
593 __hammer_parsedevs(const char *blkdevs, int oflags, int verify_volume,
594 int verify_count)
596 volume_info_t volume = NULL;
597 char *copy;
598 char *volname;
599 int vol_count = 0;
601 if (blkdevs == NULL) {
602 errx(1, "A -f blkdevs specification is required "
603 "for this command");
604 /* not reached */
607 copy = strdup(blkdevs);
608 while ((volname = copy) != NULL) {
609 if ((copy = strchr(copy, ':')) != NULL)
610 *copy++ = 0;
611 volname = getdevpath(volname, 0);
612 if (strchr(volname, ':')) {
613 __hammer_parsedevs(volname, oflags, verify_volume,
614 verify_count);
615 } else {
616 volume = load_volume(volname, oflags, verify_volume);
617 assert(volume);
618 ++vol_count;
620 free(volname);
622 free(copy);
624 assert(volume);
625 if (verify_count) {
626 if (vol_count != volume->ondisk->vol_count) {
627 errx(1, "Volume header says %d volumes, but %d specified.",
628 volume->ondisk->vol_count, vol_count);
629 /* not reached */
631 if (get_root_volume() == NULL) {
632 errx(1, "No root volume found");
633 /* not reached */
638 static __inline
639 void
640 hammer_parsedevs(const char *blkdevs, int oflags)
642 __hammer_parsedevs(blkdevs, oflags, 1, 1);
645 static
646 void
647 sigalrm(int signo __unused)
649 /* do nothing (interrupts HAMMER ioctl) */
652 static
653 void
654 sigintr(int signo __unused)
656 if (RunningIoctl == 0)
657 _exit(1);
658 DidInterrupt = 1;
659 /* do nothing (interrupts HAMMER ioctl) */
662 static
663 void
664 usage(int exit_code)
666 fprintf(stderr,
667 "hammer -h\n"
668 "hammer [-2ABFqrvXy] [-b bandwidth] [-C cachesize[:readahead]] \n"
669 " [-R restrictcmd] [-T restrictpath] [-c cyclefile]\n"
670 " [-e scoreboardfile] [-f blkdevs] [-i delay] [-p ssh-port]\n"
671 " [-S splitsize] [-t seconds] [-m memlimit] command [argument ...]\n"
672 "hammer synctid <filesystem> [quick]\n"
673 "hammer bstats [interval]\n"
674 "hammer iostats [interval]\n"
675 "hammer stats [interval]\n"
676 "hammer history[@offset[,len]] <file> ...\n"
677 "hammer namekey1 <path>\n"
678 "hammer namekey2 <path>\n"
679 "hammer namekey32 <path>\n"
680 "hammer cleanup [<filesystem> ...]\n"
681 "hammer abort-cleanup\n"
682 "hammer info [<dirpath> ...]\n"
683 "hammer snapshot [<filesystem>] <snapshot-dir>\n"
684 "hammer snapshot <filesystem> <snapshot-dir> [<note>]\n"
685 "hammer prune <softlink-dir>\n"
686 "hammer prune-everything <filesystem>\n"
687 "hammer rebalance <filesystem> [saturation_percentage]\n"
688 "hammer reblock[-btree|-inodes|-dirs|-data] "
689 "<filesystem> [fill_percentage]\n"
690 "hammer pfs-status <dirpath> ...\n"
691 "hammer pfs-master <dirpath> [options]\n"
692 "hammer pfs-slave <dirpath> [options]\n"
693 "hammer pfs-update <dirpath> [options]\n"
694 "hammer pfs-upgrade <dirpath>\n"
695 "hammer pfs-downgrade <dirpath>\n"
696 "hammer pfs-destroy <dirpath>\n"
697 "hammer mirror-read <filesystem> [begin-tid]\n"
698 "hammer mirror-read-stream <filesystem> [begin-tid]\n"
699 "hammer mirror-write <filesystem>\n"
700 "hammer mirror-dump [header]\n"
701 "hammer mirror-copy [[user@]host:]<filesystem>"
702 " [[user@]host:]<filesystem>\n"
703 "hammer mirror-stream [[user@]host:]<filesystem>"
704 " [[user@]host:]<filesystem>\n"
705 "hammer ssh-remote command filesystem\n"
706 "hammer version <filesystem>\n"
707 "hammer version-upgrade <filesystem> <version> [force]\n"
708 "hammer volume-add <device> <filesystem>\n"
709 "hammer volume-del <device> <filesystem>\n"
710 "hammer volume-list <filesystem>\n"
711 "hammer volume-blkdevs <filesystem>\n"
714 fprintf(stderr, "\nHAMMER utility version 3+ commands:\n");
716 fprintf(stderr,
717 "hammer config [<filesystem> [<configfile>]]\n"
718 "hammer viconfig [<filesystem>]\n"
719 "hammer snap <path> [<note>]\n"
720 "hammer snaplo <path> [<note>]\n"
721 "hammer snapq <dir> [<note>]\n"
722 "hammer snaprm <path> ...\n"
723 "hammer snaprm <transid> ...\n"
724 "hammer snaprm <filesystem> <transid> ...\n"
725 "hammer snapls [<path> ...]\n"
728 fprintf(stderr, "\nHAMMER utility version 4+ commands:\n");
730 fprintf(stderr,
731 "hammer -f blkdevs blockmap\n"
732 "hammer -f blkdevs checkmap\n"
733 "hammer -f blkdevs [-qqq] show [lo:objid]\n"
734 "hammer -f blkdevs show-undo\n"
735 "hammer -f blkdevs recover <target_dir> [full|quick]\n"
736 "hammer -f blkdevs strip\n"
739 fprintf(stderr, "\nHAMMER utility version 5+ commands:\n");
741 fprintf(stderr,
742 "hammer dedup-simulate <filesystem>\n"
743 "hammer dedup <filesystem>\n"
746 exit(exit_code);