sbin/hammer: Don't hardcode 0 for root PFS
[dragonfly.git] / sbin / hammer / cmd_pfs.c
1 /*
2  * Copyright (c) 2008 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/cmd_pseudofs.c,v 1.12 2008/10/08 21:01:54 thomas Exp $
35  */
36
37 #include <libgen.h>
38
39 #include "hammer.h"
40
41 static int scanpfsid(struct hammer_ioc_pseudofs_rw *pfs, const char *path);
42 static void parse_pfsd_options(char **av, int ac, hammer_pseudofs_data_t pfsd);
43 static void init_pfsd(hammer_pseudofs_data_t pfsd, int is_slave);
44 static void pseudofs_usage(int code);
45 static int timetosecs(char *str);
46
47 void
48 clrpfs(struct hammer_ioc_pseudofs_rw *pfs, hammer_pseudofs_data_t pfsd,
49         int pfs_id)
50 {
51         bzero(pfs, sizeof(*pfs));
52
53         if (pfsd)
54                 pfs->ondisk = pfsd;
55         else
56                 pfs->ondisk = malloc(sizeof(*pfs->ondisk));
57         bzero(pfs->ondisk, sizeof(*pfs->ondisk));
58
59         pfs->pfs_id = pfs_id;
60         pfs->bytes = sizeof(*pfs->ondisk);
61         pfs->version = HAMMER_IOC_PSEUDOFS_VERSION;
62 }
63
64 /*
65  * If path is a symlink, return strdup'd path.
66  * If it's a directory via symlink, strip trailing /
67  * from strdup'd path and return the symlink.
68  */
69 static char*
70 getlink(const char *path)
71 {
72         int i;
73         char *linkpath;
74         struct stat st;
75
76         if (lstat(path, &st))
77                 return(NULL);
78         linkpath = strdup(path);
79
80         if (S_ISDIR(st.st_mode)) {
81                 i = strlen(linkpath) - 1;
82                 while (i > 0 && linkpath[i] == '/')
83                         linkpath[i--] = 0;
84                 lstat(linkpath, &st);
85         }
86         if (S_ISLNK(st.st_mode)) {
87                 return(linkpath);
88         }
89
90         free(linkpath);
91         return(NULL);
92 }
93
94 /*
95  * Calculate the PFS id given a path to a file/directory or
96  * a @@%llx:%d softlink.
97  */
98 int
99 getpfs(struct hammer_ioc_pseudofs_rw *pfs, const char *path)
100 {
101         int fd;
102
103         clrpfs(pfs, NULL, -1);
104
105         /*
106          * Extract the PFS id.
107          * dirname(path) is supposed to be a directory in root PFS.
108          */
109         if (scanpfsid(pfs, path) == 0) {
110                 path = dirname(path); /* strips trailing / first if any */
111         }
112
113         /*
114          * Open the path regardless of scanpfsid() result, since some
115          * commands can take a regular file/directory (e.g. pfs-status).
116          */
117         fd = open(path, O_RDONLY);
118         if (fd < 0)
119                 err(1, "Failed to open %s", path);
120
121         /*
122          * If pfs.pfs_id has been set to non -1, the file descriptor fd
123          * could be any fd of HAMMER inodes since HAMMERIOC_GET_PSEUDOFS
124          * doesn't depend on inode attributes if it's set to a valid id.
125          */
126         if (ioctl(fd, HAMMERIOC_GET_PSEUDOFS, pfs) < 0)
127                 err(1, "Cannot access %s", path);
128
129         return(fd);
130 }
131
132 /*
133  * Extract the PFS id from path.
134  */
135 static int
136 scanpfsid(struct hammer_ioc_pseudofs_rw *pfs, const char *path)
137 {
138         char *linkpath;
139         char buf[64];
140         uintmax_t dummy_tid;
141         struct stat st;
142
143         if (stat(path, &st)) {
144                 /* possibly slave PFS */
145         } else if (S_ISDIR(st.st_mode)) {
146                 /* possibly master or slave PFS */
147         } else {
148                 return(-1);  /* neither */
149         }
150
151         linkpath = getlink(path);
152         if (linkpath) {
153                 /*
154                  * Read the symlink assuming it's a link to PFS.
155                  */
156                 bzero(buf, sizeof(buf));
157                 if (readlink(linkpath, buf, sizeof(buf) - 1) < 0) {
158                         free(linkpath);
159                         return(-1);
160                 }
161                 free(linkpath);
162                 path = buf;
163         }
164
165         /*
166          * The symlink created by pfs-master|slave is just a symlink.
167          * One could happen to remove a symlink and relink PFS as
168          * # ln -s ./@@-1:00001 ./link
169          * which results PFS having something extra before @@.
170          * One could also directly use the PFS and results the same.
171          * Get rid of it before we extract the PFS id.
172          */
173         if (strchr(path, '/')) {
174                 path = basename(path); /* strips trailing / first if any */
175                 if (path == NULL)
176                         err(1, "basename");
177         }
178
179         /*
180          * Test and extract the PFS id from the link.
181          * "@@%jx:%d" covers both "@@-1:%05d" format for master PFS
182          * and "@@0x%016jx:%05d" format for slave PFS.
183          */
184         if (sscanf(path, "@@%jx:%d", &dummy_tid, &pfs->pfs_id) == 2) {
185                 assert(pfs->pfs_id > 0);
186                 return(0);
187         }
188
189         return(-1);
190 }
191
192 void
193 relpfs(int fd, struct hammer_ioc_pseudofs_rw *pfs)
194 {
195         if (fd >= 0)
196                 close(fd);
197         if (pfs->ondisk) {
198                 free(pfs->ondisk);
199                 pfs->ondisk = NULL;
200         }
201 }
202
203 static void
204 print_pfs_status(char *path)
205 {
206         struct hammer_ioc_pseudofs_rw pfs;
207         int fd;
208
209         fd = getpfs(&pfs, path);
210         printf("%s\t", path);
211         if (fd < 0 || ioctl(fd, HAMMERIOC_GET_PSEUDOFS, &pfs) < 0) {
212                 printf("Invalid PFS path %s\n", path);
213         } else {
214                 printf("PFS#%d {\n", pfs.pfs_id);
215                 dump_pfsd(pfs.ondisk, fd);
216                 printf("}\n");
217         }
218         if (fd >= 0)
219                 close(fd);
220         if (pfs.ondisk)
221                 free(pfs.ondisk);
222         relpfs(fd, &pfs);
223 }
224
225 void
226 hammer_cmd_pseudofs_status(char **av, int ac)
227 {
228         int i;
229
230         if (ac == 0) {
231                 char buf[2] = "."; /* can't be readonly string */
232                 print_pfs_status(buf);
233                 return;
234         }
235
236         for (i = 0; i < ac; ++i)
237                 print_pfs_status(av[i]);
238 }
239
240 void
241 hammer_cmd_pseudofs_create(char **av, int ac, int is_slave)
242 {
243         struct hammer_ioc_pseudofs_rw pfs;
244         struct hammer_pseudofs_data pfsd;
245         struct stat st;
246         const char *path;
247         char *dirpath;
248         char *linkpath;
249         int pfs_id;
250         int fd;
251
252         if (ac == 0)
253                 pseudofs_usage(1);
254         path = av[0];
255         if (lstat(path, &st) == 0) {
256                 errx(1, "Cannot create %s, file exists!", path);
257         } else if (path[strlen(path) - 1] == '/') {
258                 errx(1, "Invalid PFS path %s with trailing /", path);
259         }
260
261         /*
262          * Figure out the directory prefix, taking care of degenerate
263          * cases.
264          */
265         dirpath = dirname(path);
266         fd = open(dirpath, O_RDONLY);
267         if (fd < 0)
268                 err(1, "Cannot open directory %s", dirpath);
269
270         /*
271          * Avoid foot-shooting.  Don't let the user create a PFS
272          * softlink via a PFS.  PFS softlinks may only be accessed
273          * via the master filesystem.  Checking it here ensures
274          * other PFS commands access PFS under the master filesystem.
275          */
276         clrpfs(&pfs, &pfsd, -1);
277
278         ioctl(fd, HAMMERIOC_GET_PSEUDOFS, &pfs);
279         if (pfs.pfs_id != HAMMER_ROOT_PFSID) {
280                 fprintf(stderr,
281                         "You are attempting to access a PFS softlink "
282                         "from a PFS.  It may not represent the PFS\n"
283                         "on the main filesystem mount that you "
284                         "expect!  You may only access PFS softlinks\n"
285                         "via the main filesystem mount!\n");
286                 exit(1);
287         }
288
289         for (pfs_id = 0; pfs_id < HAMMER_MAX_PFS; ++pfs_id) {
290                 clrpfs(&pfs, &pfsd, pfs_id);
291                 if (ioctl(fd, HAMMERIOC_GET_PSEUDOFS, &pfs) < 0) {
292                         if (errno != ENOENT)
293                                 err(1, "Cannot create %s", path);
294                         break;
295                 }
296         }
297         if (pfs_id == HAMMER_MAX_PFS) {
298                 errx(1, "Cannot create %s, all PFSs in use", path);
299         } else if (pfs_id == HAMMER_ROOT_PFSID) {
300                 errx(1, "Fatal error: PFS#%d must exist", HAMMER_ROOT_PFSID);
301         }
302
303         /*
304          * Create the new PFS
305          */
306         printf("Creating PFS#%d\t", pfs_id);
307         clrpfs(&pfs, &pfsd, pfs_id);
308         init_pfsd(&pfsd, is_slave);
309
310         if (ioctl(fd, HAMMERIOC_SET_PSEUDOFS, &pfs) < 0) {
311                 printf("failed: %s\n", strerror(errno));
312         } else {
313                 /* special symlink, must be exactly 10 characters */
314                 asprintf(&linkpath, "@@PFS%05d", pfs_id);
315                 if (symlink(linkpath, path) < 0) {
316                         printf("failed: cannot create symlink: %s\n",
317                                 strerror(errno));
318                 } else {
319                         printf("succeeded!\n");
320                         hammer_cmd_pseudofs_update(av, ac);
321                 }
322         }
323         free(dirpath);
324         close(fd);
325 }
326
327 void
328 hammer_cmd_pseudofs_destroy(char **av, int ac)
329 {
330         struct hammer_ioc_pseudofs_rw pfs;
331         char *linkpath;
332         int fd;
333         int i;
334
335         if (ac == 0)
336                 pseudofs_usage(1);
337         fd = getpfs(&pfs, av[0]);
338
339         if (pfs.pfs_id == HAMMER_ROOT_PFSID)
340                 errx(1, "You cannot destroy PFS#%d", HAMMER_ROOT_PFSID);
341
342         printf("You have requested that PFS#%d (%s) be destroyed\n",
343                 pfs.pfs_id, pfs.ondisk->label);
344         printf("This will irrevocably destroy all data on this PFS!!!!!\n");
345         printf("Do you really want to do this? [y/n] ");
346         fflush(stdout);
347         if (getyn() == 0)
348                 errx(1, "No action taken on PFS#%d", pfs.pfs_id);
349
350         if (hammer_is_pfs_master(pfs.ondisk)) {
351                 printf("This PFS is currently setup as a MASTER!\n");
352                 printf("Are you absolutely sure you want to destroy it? [y/n] ");
353                 fflush(stdout);
354                 if (getyn() == 0)
355                         errx(1, "No action taken on PFS#%d", pfs.pfs_id);
356         }
357
358         printf("Destroying PFS#%d (%s)", pfs.pfs_id, pfs.ondisk->label);
359         if (DebugOpt) {
360                 printf("\n");
361         } else {
362                 printf(" in");
363                 for (i = 5; i; --i) {
364                         printf(" %d", i);
365                         fflush(stdout);
366                         sleep(1);
367                 }
368                 printf(".. starting destruction pass\n");
369         }
370
371         /*
372          * Remove the softlink on success.
373          */
374         if (ioctl(fd, HAMMERIOC_RMR_PSEUDOFS, &pfs) == 0) {
375                 printf("pfs-destroy of PFS#%d succeeded!\n", pfs.pfs_id);
376                 linkpath = getlink(av[0]);
377                 if (linkpath) {
378                         if (remove(linkpath) < 0) {
379                                 fprintf(stderr,
380                                         "Unable to remove softlink %s: %s\n",
381                                         linkpath, strerror(errno));
382                                         /* exit status 0 anyway */
383                         }
384                         free(linkpath);
385                 }
386         } else {
387                 printf("pfs-destroy of PFS#%d failed: %s\n",
388                         pfs.pfs_id, strerror(errno));
389         }
390         relpfs(fd, &pfs);
391 }
392
393 void
394 hammer_cmd_pseudofs_upgrade(char **av, int ac)
395 {
396         struct hammer_ioc_pseudofs_rw pfs;
397         int fd;
398
399         if (ac == 0)
400                 pseudofs_usage(1);
401         fd = getpfs(&pfs, av[0]);
402
403         if (pfs.pfs_id == HAMMER_ROOT_PFSID) {
404                 errx(1, "You cannot upgrade PFS#%d"
405                         " (It should already be a master)",
406                         HAMMER_ROOT_PFSID);
407         } else if (hammer_is_pfs_master(pfs.ondisk)) {
408                 errx(1, "It is already a master");
409         }
410
411         if (ioctl(fd, HAMMERIOC_UPG_PSEUDOFS, &pfs) == 0) {
412                 printf("pfs-upgrade of PFS#%d (%s) succeeded\n",
413                         pfs.pfs_id, pfs.ondisk->label);
414         } else {
415                 fprintf(stderr, "pfs-upgrade of PFS#%d (%s) failed: %s\n",
416                         pfs.pfs_id, pfs.ondisk->label, strerror(errno));
417         }
418         relpfs(fd, &pfs);
419 }
420
421 void
422 hammer_cmd_pseudofs_downgrade(char **av, int ac)
423 {
424         struct hammer_ioc_pseudofs_rw pfs;
425         int fd;
426
427         if (ac == 0)
428                 pseudofs_usage(1);
429         fd = getpfs(&pfs, av[0]);
430
431         if (pfs.pfs_id == HAMMER_ROOT_PFSID) {
432                 errx(1, "You cannot downgrade PFS#%d", HAMMER_ROOT_PFSID);
433         } else if (hammer_is_pfs_slave(pfs.ondisk)) {
434                 errx(1, "It is already a slave");
435         }
436
437         if (ioctl(fd, HAMMERIOC_DGD_PSEUDOFS, &pfs) == 0) {
438                 printf("pfs-downgrade of PFS#%d (%s) succeeded\n",
439                         pfs.pfs_id, pfs.ondisk->label);
440         } else {
441                 fprintf(stderr, "pfs-downgrade of PFS#%d (%s) failed: %s\n",
442                         pfs.pfs_id, pfs.ondisk->label, strerror(errno));
443         }
444         relpfs(fd, &pfs);
445 }
446
447 void
448 hammer_cmd_pseudofs_update(char **av, int ac)
449 {
450         struct hammer_ioc_pseudofs_rw pfs;
451         int fd;
452
453         if (ac == 0)
454                 pseudofs_usage(1);
455         fd = getpfs(&pfs, av[0]);
456
457         printf("%s\n", av[0]);
458         fflush(stdout);
459
460         if (ioctl(fd, HAMMERIOC_GET_PSEUDOFS, &pfs) == 0) {
461                 parse_pfsd_options(av + 1, ac - 1, pfs.ondisk);
462                 if (hammer_is_pfs_slave(pfs.ondisk) &&
463                     pfs.pfs_id == HAMMER_ROOT_PFSID) {
464                         errx(1, "The real mount point cannot be made a PFS "
465                                "slave, only PFS sub-directories can be made "
466                                "slaves");
467                 }
468                 pfs.bytes = sizeof(*pfs.ondisk);
469                 if (ioctl(fd, HAMMERIOC_SET_PSEUDOFS, &pfs) == 0) {
470                         if (ioctl(fd, HAMMERIOC_GET_PSEUDOFS, &pfs) == 0) {
471                                 dump_pfsd(pfs.ondisk, fd);
472                         } else {
473                                 err(1, "Unable to retrieve PFS configuration "
474                                         "after successful update");
475                         }
476                 } else {
477                         err(1, "Unable to adjust PFS configuration");
478                 }
479         }
480         relpfs(fd, &pfs);
481 }
482
483 static void
484 init_pfsd(hammer_pseudofs_data_t pfsd, int is_slave)
485 {
486         uint32_t status;
487
488         bzero(pfsd, sizeof(*pfsd));
489         pfsd->sync_beg_tid = 1;
490         pfsd->sync_end_tid = 1;
491         pfsd->sync_beg_ts = 0;
492         pfsd->sync_end_ts = 0;
493         uuid_create(&pfsd->shared_uuid, &status);
494         uuid_create(&pfsd->unique_uuid, &status);
495         if (is_slave)
496                 pfsd->mirror_flags |= HAMMER_PFSD_SLAVE;
497 }
498
499 void
500 dump_pfsd(hammer_pseudofs_data_t pfsd, int fd)
501 {
502         struct hammer_ioc_version       version;
503         uint32_t status;
504         char *str = NULL;
505
506         printf("    sync-beg-tid=0x%016jx\n", (uintmax_t)pfsd->sync_beg_tid);
507         printf("    sync-end-tid=0x%016jx\n", (uintmax_t)pfsd->sync_end_tid);
508         uuid_to_string(&pfsd->shared_uuid, &str, &status);
509         printf("    shared-uuid=%s\n", str);
510         free(str);
511         uuid_to_string(&pfsd->unique_uuid, &str, &status);
512         printf("    unique-uuid=%s\n", str);
513         free(str);
514         printf("    label=\"%s\"\n", pfsd->label);
515         if (pfsd->snapshots[0])
516                 printf("    snapshots=\"%s\"\n", pfsd->snapshots);
517         if (pfsd->prune_min < (60 * 60 * 24)) {
518                 printf("    prune-min=%02d:%02d:%02d\n",
519                         pfsd->prune_min / 60 / 60 % 24,
520                         pfsd->prune_min / 60 % 60,
521                         pfsd->prune_min % 60);
522         } else if (pfsd->prune_min % (60 * 60 * 24)) {
523                 printf("    prune-min=%dd/%02d:%02d:%02d\n",
524                         pfsd->prune_min / 60 / 60 / 24,
525                         pfsd->prune_min / 60 / 60 % 24,
526                         pfsd->prune_min / 60 % 60,
527                         pfsd->prune_min % 60);
528         } else {
529                 printf("    prune-min=%dd\n", pfsd->prune_min / 60 / 60 / 24);
530         }
531
532         if (hammer_is_pfs_slave(pfsd)) {
533                 printf("    operating as a SLAVE\n");
534         } else {
535                 printf("    operating as a MASTER\n");
536         }
537
538         /*
539          * Snapshots directory cannot be shown when there is no fd since
540          * hammer version can't be retrieved. mirror-dump passes -1 because
541          * its input came from mirror-read output thus no path is available
542          * to open(2).
543          */
544         if (fd >= 0 && pfsd->snapshots[0] == 0) {
545                 bzero(&version, sizeof(version));
546                 if (ioctl(fd, HAMMERIOC_GET_VERSION, &version) < 0)
547                         return;
548                 if (version.cur_version < 3) {
549                         if (hammer_is_pfs_slave(pfsd)) {
550                                 printf("    snapshots directory not set for "
551                                        "slave\n");
552                         } else {
553                                 printf("    snapshots directory for master "
554                                        "defaults to <pfs>/snapshots\n");
555                         }
556                 } else {
557                         printf("    snapshots directory defaults to "
558                                "/var/hammer/<pfs>\n");
559                 }
560         }
561 }
562
563 static void
564 parse_pfsd_options(char **av, int ac, hammer_pseudofs_data_t pfsd)
565 {
566         char *cmd;
567         char *ptr;
568         int len;
569         uint32_t status;
570
571         while (ac) {
572                 cmd = *av;
573                 if ((ptr = strchr(cmd, '=')) != NULL)
574                         *ptr++ = 0;
575
576                 /*
577                  * Basic assignment value test
578                  */
579                 if (ptr == NULL)
580                         errx(1, "option %s requires an assignment", cmd);
581
582                 status = uuid_s_ok;
583                 if (strcmp(cmd, "sync-beg-tid") == 0) {
584                         pfsd->sync_beg_tid = strtoull(ptr, NULL, 16);
585                 } else if (strcmp(cmd, "sync-end-tid") == 0) {
586                         pfsd->sync_end_tid = strtoull(ptr, NULL, 16);
587                 } else if (strcmp(cmd, "shared-uuid") == 0) {
588                         uuid_from_string(ptr, &pfsd->shared_uuid, &status);
589                 } else if (strcmp(cmd, "unique-uuid") == 0) {
590                         uuid_from_string(ptr, &pfsd->unique_uuid, &status);
591                 } else if (strcmp(cmd, "label") == 0) {
592                         len = strlen(ptr);
593                         if (ptr[0] == '"' && ptr[len-1] == '"') {
594                                 ptr[len-1] = 0;
595                                 ++ptr;
596                         } else if (ptr[0] == '"') {
597                                 errx(1, "option %s: malformed string", cmd);
598                         }
599                         snprintf(pfsd->label, sizeof(pfsd->label), "%s", ptr);
600                 } else if (strcmp(cmd, "snapshots") == 0) {
601                         len = strlen(ptr);
602                         if (ptr[0] != '/') {
603                                 fprintf(stderr,
604                                         "option %s: '%s' must be an "
605                                         "absolute path\n", cmd, ptr);
606                                 if (ptr[0] == 0) {
607                                         fprintf(stderr,
608                                                 "use 'snapshots-clear' "
609                                                 "to unset snapshots dir\n");
610                                 }
611                                 exit(1);
612                         }
613                         if (len >= (int)sizeof(pfsd->snapshots)) {
614                                 errx(1, "option %s: path too long, %d "
615                                         "character limit", cmd, len);
616                         }
617                         snprintf(pfsd->snapshots, sizeof(pfsd->snapshots),
618                                  "%s", ptr);
619                 } else if (strcmp(cmd, "snapshots-clear") == 0) {
620                         pfsd->snapshots[0] = 0;
621                 } else if (strcmp(cmd, "prune-min") == 0) {
622                         pfsd->prune_min = timetosecs(ptr);
623                         if (pfsd->prune_min < 0) {
624                                 errx(1, "option %s: illegal time spec, "
625                                         "use Nd or [Nd/]hh[:mm[:ss]]", ptr);
626                         }
627                 } else {
628                         errx(1, "invalid option: %s", cmd);
629                 }
630                 if (status != uuid_s_ok) {
631                         errx(1, "option %s: error parsing uuid %s", cmd, ptr);
632                 }
633                 --ac;
634                 ++av;
635         }
636 }
637
638 static
639 void
640 pseudofs_usage(int code)
641 {
642         fprintf(stderr,
643                 "hammer pfs-status <dirpath> ...\n"
644                 "hammer pfs-master <dirpath> [options]\n"
645                 "hammer pfs-slave <dirpath> [options]\n"
646                 "hammer pfs-update <dirpath> [options]\n"
647                 "hammer pfs-upgrade <dirpath>\n"
648                 "hammer pfs-downgrade <dirpath>\n"
649                 "hammer pfs-destroy <dirpath>\n"
650                 "\n"
651                 "options:\n"
652                 "    sync-beg-tid=0x16llx\n"
653                 "    sync-end-tid=0x16llx\n"
654                 "    shared-uuid=0x16llx\n"
655                 "    unique-uuid=0x16llx\n"
656                 "    label=\"string\"\n"
657                 "    snapshots=\"/path\"\n"
658                 "    snapshots-clear\n"
659                 "    prune-min=Nd\n"
660                 "    prune-min=[Nd/]hh[:mm[:ss]]\n"
661         );
662         exit(code);
663 }
664
665 /*
666  * Convert time in the form [Nd/]hh[:mm[:ss]] to seconds.
667  *
668  * Return -1 if a parse error occurs.
669  * Return 0x7FFFFFFF if the time exceeds the maximum allowed.
670  */
671 static
672 int
673 timetosecs(char *str)
674 {
675         int days = 0;
676         int hrs = 0;
677         int mins = 0;
678         int secs = 0;
679         int n;
680         long long v;
681         char *ptr;
682
683         n = strtol(str, &ptr, 10);
684         if (n < 0)
685                 return(-1);
686         if (*ptr == 'd') {
687                 days = n;
688                 ++ptr;
689                 if (*ptr == '/')
690                     n = strtol(ptr + 1, &ptr, 10);
691                 else
692                     n = 0;
693         }
694         if (n < 0)
695                 return(-1);
696         hrs = n;
697         if (*ptr == ':') {
698                 n = strtol(ptr + 1, &ptr, 10);
699                 if (n < 0)
700                         return(-1);
701                 mins = n;
702                 if (*ptr == ':') {
703                         n = strtol(ptr + 1, &ptr, 10);
704                         if (n < 0)
705                                 return(-1);
706                         secs = n;
707                 }
708         }
709         if (*ptr)
710                 return(-1);
711         v = days * 24 * 60 * 60 + hrs *  60 * 60 + mins * 60 + secs;
712         if (v > 0x7FFFFFFF)
713                 v = 0x7FFFFFFF;
714         return((int)v);
715 }