Merge from vendor branch LIBARCHIVE:
[dragonfly.git] / sbin / hammer / hammer.c
1 /*
2  * Copyright (c) 2007 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:
10  * 
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.
20  * 
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.
33  * 
34  * $DragonFly: src/sbin/hammer/hammer.c,v 1.21 2008/06/14 01:44:11 dillon Exp $
35  */
36
37 #include "hammer.h"
38 #include <signal.h>
39 #include <math.h>
40
41 static void hammer_parsetime(u_int64_t *tidp, const char *timestr);
42 static void hammer_parsedevs(const char *blkdevs);
43 static void sigalrm(int signo);
44 static void usage(int exit_code);
45
46 int RecurseOpt;
47 int VerboseOpt;
48 int NoSyncOpt;
49 const char *CyclePath;
50 const char *LinkPath;
51
52 int
53 main(int ac, char **av)
54 {
55         struct timeval tv;
56         u_int64_t tid;
57         int ch;
58         int timeout = 0;
59         u_int32_t status;
60         char *blkdevs = NULL;
61
62         while ((ch = getopt(ac, av, "c:dhf:rs:t:v")) != -1) {
63                 switch(ch) {
64                 case 'c':
65                         CyclePath = optarg;
66                         break;
67                 case 'd':
68                         ++DebugOpt;
69                         break;
70                 case 'h':
71                         usage(0);
72                         /* not reached */
73                 case 'r':
74                         RecurseOpt = 1;
75                         break;
76                 case 'f':
77                         blkdevs = optarg;
78                         break;
79                 case 's':
80                         LinkPath = optarg;
81                         break;
82                 case 't':
83                         timeout = strtol(optarg, NULL, 0);
84                         break;
85                 case 'v':
86                         ++VerboseOpt;
87                         break;
88                 default:
89                         usage(1);
90                         /* not reached */
91                 }
92         }
93         ac -= optind;
94         av += optind;
95         if (ac < 1) {
96                 usage(1);
97                 /* not reached */
98         }
99
100         if (timeout > 0) {
101                 signal(SIGALRM, sigalrm);
102                 alarm(timeout);
103         }
104
105         if (strcmp(av[0], "now") == 0) {
106                 tid = (hammer_tid_t)time(NULL) * 1000000000LLU;
107                 printf("0x%08x\n", (int)(tid / 1000000000LL));
108                 exit(0);
109         }
110         if (strcmp(av[0], "now64") == 0) {
111                 gettimeofday(&tv, NULL);
112                 tid = (hammer_tid_t)tv.tv_sec * 1000000000LLU +
113                         tv.tv_usec * 1000LLU;
114                 printf("0x%016llx\n", tid);
115                 exit(0);
116         }
117         if (strcmp(av[0], "synctid") == 0) {
118                 hammer_cmd_synctid(av + 1, ac - 1);
119                 exit(0);
120         }
121         if (strcmp(av[0], "stamp") == 0) {
122                 if (av[1] == NULL)
123                         usage(1);
124                 hammer_parsetime(&tid, av[1]);
125                 printf("0x%08x\n", (int)(tid / 1000000000LL));
126                 exit(0);
127         }
128         if (strcmp(av[0], "stamp64") == 0) {
129                 if (av[1] == NULL)
130                         usage(1);
131                 hammer_parsetime(&tid, av[1]);
132                 printf("0x%016llx\n", tid);
133                 exit(0);
134         }
135         if (strcmp(av[0], "date") == 0) {
136                 time_t t;
137
138                 if (av[1] == NULL)
139                         usage(1);
140                 tid = strtoull(av[1], NULL, 16);
141                 if (tid >= 0x100000000LLU)
142                         tid /= 1000000000LLU;
143                 t = (time_t)tid;
144                 printf("%s", ctime(&t));
145                 exit(0);
146         }
147         if (strcmp(av[0], "namekey") == 0) {
148                 int64_t key;
149
150                 if (av[1] == NULL)
151                         usage(1);
152                 key = (int64_t)(crc32(av[1], strlen(av[1])) & 0x7FFFFFFF) << 32;
153                 if (key == 0)
154                         key |= 0x100000000LL;
155                 printf("0x%016llx\n", key);
156                 exit(0);
157         }
158         if (strcmp(av[0], "namekey32") == 0) {
159                 int32_t key;
160
161                 if (av[1] == NULL)
162                         usage(1);
163                 key = crc32(av[1], strlen(av[1])) & 0x7FFFFFFF;
164                 if (key == 0)
165                         ++key;
166                 printf("0x%08x\n", key);
167                 exit(0);
168         }
169         if (strcmp(av[0], "prune") == 0) {
170                 hammer_cmd_prune(av + 1, ac - 1);
171                 exit(0);
172         }
173         if (strcmp(av[0], "softprune") == 0) {
174                 hammer_cmd_softprune(av + 1, ac - 1);
175                 exit(0);
176         }
177
178         if (strncmp(av[0], "history", 7) == 0) {
179                 hammer_cmd_history(av[0] + 7, av + 1, ac - 1);
180                 exit(0);
181         }
182         if (strncmp(av[0], "reblock", 7) == 0) {
183                 if (strcmp(av[0], "reblock") == 0)
184                         hammer_cmd_reblock(av + 1, ac - 1, -1);
185                 else if (strcmp(av[0], "reblock-btree") == 0)
186                         hammer_cmd_reblock(av + 1, ac - 1, HAMMER_IOC_DO_BTREE);
187                 else if (strcmp(av[0], "reblock-inodes") == 0)
188                         hammer_cmd_reblock(av + 1, ac - 1, HAMMER_IOC_DO_INODES);
189                 else if (strcmp(av[0], "reblock-dirs") == 0)
190                         hammer_cmd_reblock(av + 1, ac - 1, HAMMER_IOC_DO_DIRS);
191                 else if (strcmp(av[0], "reblock-data") == 0)
192                         hammer_cmd_reblock(av + 1, ac - 1, HAMMER_IOC_DO_DATA);
193                 else
194                         usage(1);
195                 exit(0);
196         }
197
198         uuid_name_lookup(&Hammer_FSType, "DragonFly HAMMER", &status);
199         if (status != uuid_s_ok) {
200                 errx(1, "uuids file does not have the DragonFly "
201                         "HAMMER filesystem type");
202         }
203
204         if (strcmp(av[0], "show") == 0) {
205                 hammer_off_t node_offset = (hammer_off_t)-1;
206
207                 hammer_parsedevs(blkdevs);
208                 if (ac > 1)
209                         sscanf(av[1], "%llx", &node_offset);
210                 hammer_cmd_show(node_offset, 0, NULL, NULL);
211                 exit(0);
212         }
213         if (strcmp(av[0], "blockmap") == 0) {
214                 hammer_parsedevs(blkdevs);
215                 hammer_cmd_blockmap();
216                 exit(0);
217         }
218         usage(1);
219         /* not reached */
220         return(0);
221 }
222
223 /*
224  * Parse a timestamp for the mount point
225  *
226  * yyyymmddhhmmss
227  * -N[s/h/d/m/y]
228  */
229 static
230 void
231 hammer_parsetime(u_int64_t *tidp, const char *timestr)
232 {
233         struct timeval tv;
234         struct tm tm;
235         int32_t n;
236         char c;
237
238         gettimeofday(&tv, NULL);
239
240         if (*timestr == 0)
241                 usage(1);
242
243         if (isalpha(timestr[strlen(timestr)-1])) {
244                 if (sscanf(timestr, "%d%c", &n, &c) != 2)
245                         usage(1);
246                 switch(c) {
247                 case 'Y':
248                         n *= 365;
249                         goto days;
250                 case 'M':
251                         n *= 30;
252                         /* fall through */
253                 case 'D':
254                 days:
255                         n *= 24;
256                         /* fall through */
257                 case 'h':
258                         n *= 60;
259                         /* fall through */
260                 case 'm':
261                         n *= 60;
262                         /* fall through */
263                 case 's':
264                         tv.tv_sec -= n;
265                         break;
266                 default:
267                         usage(1);
268                 }
269         } else {
270                 double seconds = 0;
271
272                 localtime_r(&tv.tv_sec, &tm);
273                 seconds = (double)tm.tm_sec;
274                 tm.tm_year += 1900;
275                 tm.tm_mon += 1;
276                 n = sscanf(timestr, "%4d%2d%2d:%2d%2d%lf",
277                            &tm.tm_year, &tm.tm_mon, &tm.tm_mday,
278                            &tm.tm_hour, &tm.tm_min, &seconds);
279                 tm.tm_mon -= 1;
280                 tm.tm_year -= 1900;
281                 /* if [:hhmmss] is omitted, assume :000000.0 */
282                 if (n < 4)
283                         tm.tm_hour = tm.tm_min = tm.tm_sec = 0;
284                 else
285                         tm.tm_sec = (int)seconds;
286                 tv.tv_sec = mktime(&tm);
287                 tv.tv_usec = (int)((seconds - floor(seconds)) * 1000000.0);
288         }
289         *tidp = (u_int64_t)tv.tv_sec * 1000000000LLU + 
290                 tv.tv_usec * 1000LLU;
291 }
292
293 static
294 void
295 hammer_parsedevs(const char *blkdevs)
296 {
297         char *copy;
298         char *volname;
299
300         if (blkdevs == NULL) {
301                 errx(1, "A -f blkdevs specification is required "
302                         "for this command");
303         }
304
305         copy = strdup(blkdevs);
306         while ((volname = copy) != NULL) {
307                 if ((copy = strchr(copy, ':')) != NULL)
308                         *copy++ = 0;
309                 setup_volume(-1, volname, 0, O_RDONLY);
310         }
311 }
312
313 static
314 void
315 sigalrm(int signo __unused)
316 {
317         /* do nothing (interrupts HAMMER ioctl) */
318 }
319
320 static
321 void
322 usage(int exit_code)
323 {
324         fprintf(stderr, 
325                 "hammer -h\n"
326                 "hammer [-x] now[64]\n"
327                 "hammer [-t timeout] [-c cyclefile] ....\n"
328                 "hammer stamp[64] <time>\n"
329                 "hammer softprune <softlink-dir>\n"
330                 "hammer prune <filesystem> [using <configfile>]\n"
331                 "hammer prune <filesystem> from <modulo_time> to "
332                                 "<modulo_time> every <modulo_time>\n"
333                 "hammer prune <filesystem> from <modulo_time> everything\n"
334                 "hammer prune <filesystem> everything\n"
335                 "hammer reblock <filesystem> [compact%%] (default 90%%)\n"
336                 "hammer history[@offset[,len]] <file-1>...<file-N>\n"
337                 "hammer -f blkdevs [-r] show\n"
338                 "hammer -f blkdevs blockmap\n"
339         );
340         fprintf(stderr, "time: +n[s/m/h/D/M/Y]\n"
341                         "time: yyyymmdd[:hhmmss]\n"
342                         "modulo_time: n{s,m,h,d,M,y}\n");
343         exit(exit_code);
344 }
345