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
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
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
34 * $DragonFly: src/sbin/hammer/hammer.c,v 1.44 2008/11/13 02:04:27 dillon Exp $
41 static void hammer_parsedevs(const char *blkdevs
);
42 static void sigalrm(int signo
);
43 static void usage(int exit_code
);
52 u_int64_t BandwidthOpt
;
53 const char *CyclePath
;
57 main(int ac
, char **av
)
64 while ((ch
= getopt(ac
, av
, "b:c:dhf:i:qrs:t:v2")) != -1) {
70 BandwidthOpt
= strtoull(optarg
, &ptr
, 0);
98 DelayOpt
= strtol(optarg
, NULL
, 0);
110 TimeoutOpt
= strtol(optarg
, NULL
, 0);
136 signal(SIGALRM
, sigalrm
);
138 if (strcmp(av
[0], "synctid") == 0) {
139 hammer_cmd_synctid(av
+ 1, ac
- 1);
142 if (strcmp(av
[0], "namekey2") == 0) {
146 const char *aname
= av
[1];
151 key
= (u_int32_t
)crc32(aname
, len
) & 0xFFFFFFFEU
;
155 crcx
= crc32(aname
+ 3, len
- 5);
156 crcx
= crcx
^ (crcx
>> 6) ^ (crcx
>> 12);
157 key
|= (int64_t)(crcx
& 0x3F) << 42;
163 key
|= ((int64_t)(aname
[2] & 0x1F) << 48);
166 key
|= ((int64_t)(aname
[1] & 0x1F) << 53) |
167 ((int64_t)(aname
[len
-2] & 0x1F) << 37);
170 key
|= ((int64_t)(aname
[0] & 0x1F) << 58) |
171 ((int64_t)(aname
[len
-1] & 0x1F) << 32);
177 key
|= 0x100000000LL
;
178 printf("0x%016llx\n", key
);
181 if (strcmp(av
[0], "namekey1") == 0) {
186 key
= (int64_t)(crc32(av
[1], strlen(av
[1])) & 0x7FFFFFFF) << 32;
188 key
|= 0x100000000LL
;
189 printf("0x%016llx\n", key
);
192 if (strcmp(av
[0], "namekey32") == 0) {
197 key
= crc32(av
[1], strlen(av
[1])) & 0x7FFFFFFF;
200 printf("0x%08x\n", key
);
203 if (strcmp(av
[0], "pfs-status") == 0) {
204 hammer_cmd_pseudofs_status(av
+ 1, ac
- 1);
207 if (strcmp(av
[0], "pfs-master") == 0) {
208 hammer_cmd_pseudofs_create(av
+ 1, ac
- 1, 0);
211 if (strcmp(av
[0], "pfs-slave") == 0) {
212 hammer_cmd_pseudofs_create(av
+ 1, ac
- 1, 1);
215 if (strcmp(av
[0], "pfs-update") == 0) {
216 hammer_cmd_pseudofs_update(av
+ 1, ac
- 1);
219 if (strcmp(av
[0], "pfs-upgrade") == 0) {
220 hammer_cmd_pseudofs_upgrade(av
+ 1, ac
- 1);
223 if (strcmp(av
[0], "pfs-downgrade") == 0) {
224 hammer_cmd_pseudofs_downgrade(av
+ 1, ac
- 1);
227 if (strcmp(av
[0], "pfs-destroy") == 0) {
228 hammer_cmd_pseudofs_destroy(av
+ 1, ac
- 1);
231 if (strcmp(av
[0], "status") == 0) {
232 hammer_cmd_status(av
+ 1, ac
- 1);
235 if (strcmp(av
[0], "prune") == 0) {
236 hammer_cmd_softprune(av
+ 1, ac
- 1, 0);
239 if (strcmp(av
[0], "cleanup") == 0) {
240 hammer_cmd_cleanup(av
+ 1, ac
- 1);
243 if (strcmp(av
[0], "prune-everything") == 0) {
244 hammer_cmd_softprune(av
+ 1, ac
- 1, 1);
247 if (strcmp(av
[0], "snapshot") == 0) {
248 hammer_cmd_snapshot(av
+ 1, ac
- 1);
251 if (strcmp(av
[0], "bstats") == 0) {
252 hammer_cmd_bstats(av
+ 1, ac
- 1);
255 if (strcmp(av
[0], "iostats") == 0) {
256 hammer_cmd_iostats(av
+ 1, ac
- 1);
260 if (strncmp(av
[0], "history", 7) == 0) {
261 hammer_cmd_history(av
[0] + 7, av
+ 1, ac
- 1);
264 if (strncmp(av
[0], "reblock", 7) == 0) {
265 signal(SIGINT
, sigalrm
);
266 if (strcmp(av
[0], "reblock") == 0)
267 hammer_cmd_reblock(av
+ 1, ac
- 1, -1);
268 else if (strcmp(av
[0], "reblock-btree") == 0)
269 hammer_cmd_reblock(av
+ 1, ac
- 1, HAMMER_IOC_DO_BTREE
);
270 else if (strcmp(av
[0], "reblock-inodes") == 0)
271 hammer_cmd_reblock(av
+ 1, ac
- 1, HAMMER_IOC_DO_INODES
);
272 else if (strcmp(av
[0], "reblock-dirs") == 0)
273 hammer_cmd_reblock(av
+ 1, ac
- 1, HAMMER_IOC_DO_DIRS
);
274 else if (strcmp(av
[0], "reblock-data") == 0)
275 hammer_cmd_reblock(av
+ 1, ac
- 1, HAMMER_IOC_DO_DATA
);
280 if (strncmp(av
[0], "mirror", 6) == 0) {
281 if (strcmp(av
[0], "mirror-read") == 0)
282 hammer_cmd_mirror_read(av
+ 1, ac
- 1, 0);
283 else if (strcmp(av
[0], "mirror-read-stream") == 0)
284 hammer_cmd_mirror_read(av
+ 1, ac
- 1, 1);
285 else if (strcmp(av
[0], "mirror-write") == 0)
286 hammer_cmd_mirror_write(av
+ 1, ac
- 1);
287 else if (strcmp(av
[0], "mirror-copy") == 0)
288 hammer_cmd_mirror_copy(av
+ 1, ac
- 1, 0);
289 else if (strcmp(av
[0], "mirror-stream") == 0)
290 hammer_cmd_mirror_copy(av
+ 1, ac
- 1, 1);
291 else if (strcmp(av
[0], "mirror-dump") == 0)
292 hammer_cmd_mirror_dump();
297 if (strcmp(av
[0], "version") == 0) {
298 hammer_cmd_get_version(av
+ 1, ac
- 1);
301 if (strcmp(av
[0], "version-upgrade") == 0) {
302 hammer_cmd_set_version(av
+ 1, ac
- 1);
306 uuid_name_lookup(&Hammer_FSType
, "DragonFly HAMMER", &status
);
307 if (status
!= uuid_s_ok
) {
308 errx(1, "uuids file does not have the DragonFly "
309 "HAMMER filesystem type");
312 if (strcmp(av
[0], "show") == 0) {
313 hammer_off_t node_offset
= (hammer_off_t
)-1;
315 hammer_parsedevs(blkdevs
);
317 sscanf(av
[1], "%llx", &node_offset
);
318 hammer_cmd_show(node_offset
, 0, NULL
, NULL
);
321 if (strcmp(av
[0], "blockmap") == 0) {
322 hammer_parsedevs(blkdevs
);
323 hammer_cmd_blockmap();
333 hammer_parsedevs(const char *blkdevs
)
338 if (blkdevs
== NULL
) {
339 errx(1, "A -f blkdev[:blkdev]* specification is required "
343 copy
= strdup(blkdevs
);
344 while ((volname
= copy
) != NULL
) {
345 if ((copy
= strchr(copy
, ':')) != NULL
)
347 setup_volume(-1, volname
, 0, O_RDONLY
);
353 sigalrm(int signo __unused
)
355 /* do nothing (interrupts HAMMER ioctl) */
364 "hammer [-2qrv] [-b bandwidth] [-c cyclefile] [-f blkdev[:blkdev]*]\n"
365 " [-i delay ] [-t seconds] command [argument ...]\n"
366 "hammer synctid <filesystem> [quick]\n"
367 "hammer bstats [interval]\n"
368 "hammer iostats [interval]\n"
369 "hammer history[@offset[,len]] <file> ...\n"
370 "hammer -f blkdev[:blkdev]* [-r] show [offset]\n"
372 "hammer -f blkdev[:blkdev]* blockmap\n"
374 "hammer namekey1 <path>\n"
375 "hammer namekey2 <path>\n"
376 "hammer cleanup [<filesystem> ...]\n"
377 "hammer snapshot [<filesystem>] <snapshot-dir>\n"
378 "hammer prune <softlink-dir>\n"
379 "hammer prune-everything <filesystem>\n"
380 "hammer reblock[-btree/inodes/dirs/data] "
381 "<filesystem> [fill_percentage]\n"
382 "hammer pfs-status <dirpath> ...\n"
383 "hammer pfs-master <dirpath> [options]\n"
384 "hammer pfs-slave <dirpath> [options]\n"
385 "hammer pfs-update <dirpath> [options]\n"
386 "hammer pfs-upgrade <dirpath>\n"
387 "hammer pfs-downgrade <dirpath>\n"
388 "hammer pfs-destroy <dirpath>\n"
389 "hammer mirror-read <filesystem> [begin-tid]\n"
390 "hammer mirror-read-stream <filesystem> [begin-tid]\n"
391 "hammer mirror-write <filesystem>\n"
392 "hammer mirror-dump\n"
393 "hammer mirror-copy [[user@]host:]<filesystem>"
394 " [[user@]host:]<filesystem>\n"
395 "hammer mirror-stream [[user@]host:]<filesystem>"
396 " [[user@]host:]<filesystem>\n"
397 "hammer version <filesystem>\n"
398 "hammer version-upgrade <filesystem> version# [force]\n"