HAMMER Utilities: Add the 'hammer softprune' command.
[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.20 2008/05/31 18:45:04 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-data") == 0)
190                         hammer_cmd_reblock(av + 1, ac - 1, HAMMER_IOC_DO_DATA);
191                 else
192                         usage(1);
193                 exit(0);
194         }
195
196         uuid_name_lookup(&Hammer_FSType, "DragonFly HAMMER", &status);
197         if (status != uuid_s_ok) {
198                 errx(1, "uuids file does not have the DragonFly "
199                         "HAMMER filesystem type");
200         }
201
202         if (strcmp(av[0], "show") == 0) {
203                 hammer_off_t node_offset = (hammer_off_t)-1;
204
205                 hammer_parsedevs(blkdevs);
206                 if (ac > 1)
207                         sscanf(av[1], "%llx", &node_offset);
208                 hammer_cmd_show(node_offset, 0, NULL, NULL);
209                 exit(0);
210         }
211         if (strcmp(av[0], "blockmap") == 0) {
212                 hammer_parsedevs(blkdevs);
213                 hammer_cmd_blockmap();
214                 exit(0);
215         }
216         usage(1);
217         /* not reached */
218         return(0);
219 }
220
221 /*
222  * Parse a timestamp for the mount point
223  *
224  * yyyymmddhhmmss
225  * -N[s/h/d/m/y]
226  */
227 static
228 void
229 hammer_parsetime(u_int64_t *tidp, const char *timestr)
230 {
231         struct timeval tv;
232         struct tm tm;
233         int32_t n;
234         char c;
235
236         gettimeofday(&tv, NULL);
237
238         if (*timestr == 0)
239                 usage(1);
240
241         if (isalpha(timestr[strlen(timestr)-1])) {
242                 if (sscanf(timestr, "%d%c", &n, &c) != 2)
243                         usage(1);
244                 switch(c) {
245                 case 'Y':
246                         n *= 365;
247                         goto days;
248                 case 'M':
249                         n *= 30;
250                         /* fall through */
251                 case 'D':
252                 days:
253                         n *= 24;
254                         /* fall through */
255                 case 'h':
256                         n *= 60;
257                         /* fall through */
258                 case 'm':
259                         n *= 60;
260                         /* fall through */
261                 case 's':
262                         tv.tv_sec -= n;
263                         break;
264                 default:
265                         usage(1);
266                 }
267         } else {
268                 double seconds = 0;
269
270                 localtime_r(&tv.tv_sec, &tm);
271                 seconds = (double)tm.tm_sec;
272                 tm.tm_year += 1900;
273                 tm.tm_mon += 1;
274                 n = sscanf(timestr, "%4d%2d%2d:%2d%2d%lf",
275                            &tm.tm_year, &tm.tm_mon, &tm.tm_mday,
276                            &tm.tm_hour, &tm.tm_min, &seconds);
277                 tm.tm_mon -= 1;
278                 tm.tm_year -= 1900;
279                 /* if [:hhmmss] is omitted, assume :000000.0 */
280                 if (n < 4)
281                         tm.tm_hour = tm.tm_min = tm.tm_sec = 0;
282                 else
283                         tm.tm_sec = (int)seconds;
284                 tv.tv_sec = mktime(&tm);
285                 tv.tv_usec = (int)((seconds - floor(seconds)) * 1000000.0);
286         }
287         *tidp = (u_int64_t)tv.tv_sec * 1000000000LLU + 
288                 tv.tv_usec * 1000LLU;
289 }
290
291 static
292 void
293 hammer_parsedevs(const char *blkdevs)
294 {
295         char *copy;
296         char *volname;
297
298         if (blkdevs == NULL) {
299                 errx(1, "A -f blkdevs specification is required "
300                         "for this command");
301         }
302
303         copy = strdup(blkdevs);
304         while ((volname = copy) != NULL) {
305                 if ((copy = strchr(copy, ':')) != NULL)
306                         *copy++ = 0;
307                 setup_volume(-1, volname, 0, O_RDONLY);
308         }
309 }
310
311 static
312 void
313 sigalrm(int signo __unused)
314 {
315         /* do nothing (interrupts HAMMER ioctl) */
316 }
317
318 static
319 void
320 usage(int exit_code)
321 {
322         fprintf(stderr, 
323                 "hammer -h\n"
324                 "hammer [-x] now[64]\n"
325                 "hammer [-t timeout] [-c cyclefile] ....\n"
326                 "hammer stamp[64] <time>\n"
327                 "hammer softprune <softlink-dir>\n"
328                 "hammer prune <filesystem> [using <configfile>]\n"
329                 "hammer prune <filesystem> from <modulo_time> to "
330                                 "<modulo_time> every <modulo_time>\n"
331                 "hammer prune <filesystem> from <modulo_time> everything\n"
332                 "hammer prune <filesystem> everything\n"
333                 "hammer reblock <filesystem> [compact%%] (default 90%%)\n"
334                 "hammer history[@offset[,len]] <file-1>...<file-N>\n"
335                 "hammer -f blkdevs [-r] show\n"
336                 "hammer -f blkdevs blockmap\n"
337         );
338         fprintf(stderr, "time: +n[s/m/h/D/M/Y]\n"
339                         "time: yyyymmdd[:hhmmss]\n"
340                         "modulo_time: n{s,m,h,d,M,y}\n");
341         exit(exit_code);
342 }
343