2 * Copyright (c) 2008 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/cmd_pseudofs.c,v 1.12 2008/10/08 21:01:54 thomas Exp $
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
);
48 clrpfs(struct hammer_ioc_pseudofs_rw
*pfs
, hammer_pseudofs_data_t pfsd
,
51 bzero(pfs
, sizeof(*pfs
));
56 pfs
->ondisk
= malloc(sizeof(*pfs
->ondisk
));
57 bzero(pfs
->ondisk
, sizeof(*pfs
->ondisk
));
60 pfs
->bytes
= sizeof(*pfs
->ondisk
);
61 pfs
->version
= HAMMER_IOC_PSEUDOFS_VERSION
;
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.
70 getlink(const char *path
)
78 linkpath
= strdup(path
);
80 if (S_ISDIR(st
.st_mode
)) {
81 i
= strlen(linkpath
) - 1;
82 while (i
> 0 && linkpath
[i
] == '/')
86 if (S_ISLNK(st
.st_mode
)) {
95 * Calculate the PFS id given a path to a file/directory or
96 * a @@%llx:%d softlink.
99 getpfs(struct hammer_ioc_pseudofs_rw
*pfs
, const char *path
)
103 clrpfs(pfs
, NULL
, -1);
106 * Extract the PFS id.
107 * dirname(path) is supposed to be a directory in PFS#0.
109 if (scanpfsid(pfs
, path
) == 0) {
110 path
= dirname(path
); /* strips trailing / first if any */
114 * Open the path regardless of scanpfsid() result, since some
115 * commands can take a regular file/directory (e.g. pfs-status).
117 fd
= open(path
, O_RDONLY
);
119 fprintf(stderr
, "Failed to open %s\n", path
);
124 * If pfs.pfs_id has been set to non -1, the file descriptor fd
125 * could be any fd of HAMMER inodes since HAMMERIOC_GET_PSEUDOFS
126 * doesn't depend on inode attributes if it's set to a valid id.
128 if (ioctl(fd
, HAMMERIOC_GET_PSEUDOFS
, pfs
) < 0) {
129 fprintf(stderr
, "Cannot access %s: %s\n",
130 path
, strerror(errno
));
137 * Extract the PFS id from path.
140 scanpfsid(struct hammer_ioc_pseudofs_rw
*pfs
, const char *path
)
147 if (stat(path
, &st
)) {
148 /* possibly slave PFS */
149 } else if (S_ISDIR(st
.st_mode
)) {
150 /* possibly master or slave PFS */
152 return(-1); /* neither */
155 linkpath
= getlink(path
);
158 * Read the symlink assuming it's a link to PFS.
160 bzero(buf
, sizeof(buf
));
161 if (readlink(linkpath
, buf
, sizeof(buf
) - 1) < 0) {
170 * The symlink created by pfs-master|slave is just a symlink.
171 * One could happen to remove a symlink and relink PFS as
172 * # ln -s ./@@-1:00001 ./link
173 * which results PFS having something extra before @@.
174 * One could also directly use the PFS and results the same.
175 * Get rid of it before we extract the PFS id.
177 if (strchr(path
, '/')) {
178 path
= basename(path
); /* strips trailing / first if any */
184 * Test and extract the PFS id from the link.
185 * "@@%jx:%d" convers both "@@-1:%05d" format for master PFS
186 * and "@@0x%016jx:%05d" format for slave PFS.
188 if (sscanf(path
, "@@%jx:%d", &dummy_tid
, &pfs
->pfs_id
) == 2) {
189 assert(pfs
->pfs_id
> 0);
197 relpfs(int fd
, struct hammer_ioc_pseudofs_rw
*pfs
)
208 print_pfs_status(char *path
)
210 struct hammer_ioc_pseudofs_rw pfs
;
213 fd
= getpfs(&pfs
, path
);
214 printf("%s\t", path
);
215 if (fd
< 0 || ioctl(fd
, HAMMERIOC_GET_PSEUDOFS
, &pfs
) < 0) {
216 printf("Invalid PFS path %s\n", path
);
218 printf("PFS#%d {\n", pfs
.pfs_id
);
219 dump_pfsd(pfs
.ondisk
, fd
);
230 hammer_cmd_pseudofs_status(char **av
, int ac
)
235 char buf
[2] = "."; /* can't be readonly string */
236 print_pfs_status(buf
);
240 for (i
= 0; i
< ac
; ++i
)
241 print_pfs_status(av
[i
]);
245 hammer_cmd_pseudofs_create(char **av
, int ac
, int is_slave
)
247 struct hammer_ioc_pseudofs_rw pfs
;
248 struct hammer_pseudofs_data pfsd
;
260 if (lstat(path
, &st
) == 0) {
261 fprintf(stderr
, "Cannot create %s, file exists!\n", path
);
263 } else if (path
[strlen(path
) - 1] == '/') {
264 fprintf(stderr
, "Invalid PFS path %s with trailing /\n", path
);
269 * Figure out the directory prefix, taking care of degenerate
272 dirpath
= dirname(path
);
273 fd
= open(dirpath
, O_RDONLY
);
275 fprintf(stderr
, "Cannot open directory %s\n", dirpath
);
280 * Avoid foot-shooting. Don't let the user create a PFS
281 * softlink via a PFS. PFS softlinks may only be accessed
282 * via the master filesystem. Checking it here ensures
283 * other PFS commands access PFS under the master filesystem.
285 clrpfs(&pfs
, &pfsd
, -1);
287 ioctl(fd
, HAMMERIOC_GET_PSEUDOFS
, &pfs
);
288 if (pfs
.pfs_id
!= HAMMER_ROOT_PFSID
) {
290 "You are attempting to access a PFS softlink "
291 "from a PFS. It may not represent the PFS\n"
292 "on the main filesystem mount that you "
293 "expect! You may only access PFS softlinks\n"
294 "via the main filesystem mount!\n");
299 for (pfs_id
= 0; pfs_id
< HAMMER_MAX_PFS
; ++pfs_id
) {
300 clrpfs(&pfs
, &pfsd
, pfs_id
);
301 if (ioctl(fd
, HAMMERIOC_GET_PSEUDOFS
, &pfs
) < 0) {
306 if (pfs_id
== HAMMER_MAX_PFS
) {
307 fprintf(stderr
, "Cannot create %s, all PFSs in use\n", path
);
309 } else if (pfs_id
== HAMMER_ROOT_PFSID
) {
310 fprintf(stderr
, "Fatal error: PFS#%d must exist\n",
315 if (error
!= ENOENT
) {
316 fprintf(stderr
, "Cannot create %s, got %s during scan\n",
317 path
, strerror(error
));
324 printf("Creating PFS#%d\t", pfs_id
);
325 clrpfs(&pfs
, &pfsd
, pfs_id
);
326 init_pfsd(&pfsd
, is_slave
);
328 if (ioctl(fd
, HAMMERIOC_SET_PSEUDOFS
, &pfs
) < 0) {
329 printf("failed: %s\n", strerror(errno
));
331 /* special symlink, must be exactly 10 characters */
332 asprintf(&linkpath
, "@@PFS%05d", pfs_id
);
333 if (symlink(linkpath
, path
) < 0) {
334 printf("failed: cannot create symlink: %s\n",
337 printf("succeeded!\n");
338 hammer_cmd_pseudofs_update(av
, ac
);
346 hammer_cmd_pseudofs_destroy(char **av
, int ac
)
348 struct hammer_ioc_pseudofs_rw pfs
;
355 fd
= getpfs(&pfs
, av
[0]);
357 if (pfs
.pfs_id
== HAMMER_ROOT_PFSID
) {
358 fprintf(stderr
, "You cannot destroy PFS#0\n");
361 printf("You have requested that PFS#%d (%s) be destroyed\n",
362 pfs
.pfs_id
, pfs
.ondisk
->label
);
363 printf("This will irrevocably destroy all data on this PFS!!!!!\n");
364 printf("Do you really want to do this? [y/n] ");
367 fprintf(stderr
, "No action taken on PFS#%d\n", pfs
.pfs_id
);
371 if (hammer_is_pfs_master(pfs
.ondisk
)) {
372 printf("This PFS is currently setup as a MASTER!\n");
373 printf("Are you absolutely sure you want to destroy it? [y/n] ");
376 fprintf(stderr
, "No action taken on PFS#%d\n",
382 printf("Destroying PFS#%d (%s)", pfs
.pfs_id
, pfs
.ondisk
->label
);
387 for (i
= 5; i
; --i
) {
392 printf(".. starting destruction pass\n");
396 * Remove the softlink on success.
398 if (ioctl(fd
, HAMMERIOC_RMR_PSEUDOFS
, &pfs
) == 0) {
399 printf("pfs-destroy of PFS#%d succeeded!\n", pfs
.pfs_id
);
400 linkpath
= getlink(av
[0]);
402 if (remove(linkpath
) < 0) {
404 "Unable to remove softlink %s: %s\n",
405 linkpath
, strerror(errno
));
406 /* exit status 0 anyway */
411 printf("pfs-destroy of PFS#%d failed: %s\n",
412 pfs
.pfs_id
, strerror(errno
));
418 hammer_cmd_pseudofs_upgrade(char **av
, int ac
)
420 struct hammer_ioc_pseudofs_rw pfs
;
425 fd
= getpfs(&pfs
, av
[0]);
427 if (pfs
.pfs_id
== HAMMER_ROOT_PFSID
) {
428 fprintf(stderr
, "You cannot upgrade PFS#0"
429 " (It should already be a master)\n");
431 } else if (hammer_is_pfs_master(pfs
.ondisk
)) {
432 printf("It is already a master\n");
436 if (ioctl(fd
, HAMMERIOC_UPG_PSEUDOFS
, &pfs
) == 0) {
437 printf("pfs-upgrade of PFS#%d (%s) succeeded\n",
438 pfs
.pfs_id
, pfs
.ondisk
->label
);
440 fprintf(stderr
, "pfs-upgrade of PFS#%d (%s) failed: %s\n",
441 pfs
.pfs_id
, pfs
.ondisk
->label
, strerror(errno
));
447 hammer_cmd_pseudofs_downgrade(char **av
, int ac
)
449 struct hammer_ioc_pseudofs_rw pfs
;
454 fd
= getpfs(&pfs
, av
[0]);
456 if (pfs
.pfs_id
== HAMMER_ROOT_PFSID
) {
457 fprintf(stderr
, "You cannot downgrade PFS#0\n");
459 } else if (hammer_is_pfs_slave(pfs
.ondisk
)) {
460 printf("It is already a slave\n");
464 if (ioctl(fd
, HAMMERIOC_DGD_PSEUDOFS
, &pfs
) == 0) {
465 printf("pfs-downgrade of PFS#%d (%s) succeeded\n",
466 pfs
.pfs_id
, pfs
.ondisk
->label
);
468 fprintf(stderr
, "pfs-downgrade of PFS#%d (%s) failed: %s\n",
469 pfs
.pfs_id
, pfs
.ondisk
->label
, strerror(errno
));
475 hammer_cmd_pseudofs_update(char **av
, int ac
)
477 struct hammer_ioc_pseudofs_rw pfs
;
482 fd
= getpfs(&pfs
, av
[0]);
484 printf("%s\n", av
[0]);
487 if (ioctl(fd
, HAMMERIOC_GET_PSEUDOFS
, &pfs
) == 0) {
488 parse_pfsd_options(av
+ 1, ac
- 1, pfs
.ondisk
);
489 if (hammer_is_pfs_slave(pfs
.ondisk
) &&
490 pfs
.pfs_id
== HAMMER_ROOT_PFSID
) {
491 printf("The real mount point cannot be made a PFS "
492 "slave, only PFS sub-directories can be made "
496 pfs
.bytes
= sizeof(*pfs
.ondisk
);
497 if (ioctl(fd
, HAMMERIOC_SET_PSEUDOFS
, &pfs
) == 0) {
498 if (ioctl(fd
, HAMMERIOC_GET_PSEUDOFS
, &pfs
) == 0) {
499 dump_pfsd(pfs
.ondisk
, fd
);
501 printf("Unable to retrieve PFS configuration "
502 "after successful update: %s\n",
507 printf("Unable to adjust PFS configuration: %s\n",
516 init_pfsd(hammer_pseudofs_data_t pfsd
, int is_slave
)
520 bzero(pfsd
, sizeof(*pfsd
));
521 pfsd
->sync_beg_tid
= 1;
522 pfsd
->sync_end_tid
= 1;
523 pfsd
->sync_beg_ts
= 0;
524 pfsd
->sync_end_ts
= 0;
525 uuid_create(&pfsd
->shared_uuid
, &status
);
526 uuid_create(&pfsd
->unique_uuid
, &status
);
528 pfsd
->mirror_flags
|= HAMMER_PFSD_SLAVE
;
532 dump_pfsd(hammer_pseudofs_data_t pfsd
, int fd
)
534 struct hammer_ioc_version version
;
538 printf(" sync-beg-tid=0x%016jx\n", (uintmax_t)pfsd
->sync_beg_tid
);
539 printf(" sync-end-tid=0x%016jx\n", (uintmax_t)pfsd
->sync_end_tid
);
540 uuid_to_string(&pfsd
->shared_uuid
, &str
, &status
);
541 printf(" shared-uuid=%s\n", str
);
543 uuid_to_string(&pfsd
->unique_uuid
, &str
, &status
);
544 printf(" unique-uuid=%s\n", str
);
546 printf(" label=\"%s\"\n", pfsd
->label
);
547 if (pfsd
->snapshots
[0])
548 printf(" snapshots=\"%s\"\n", pfsd
->snapshots
);
549 if (pfsd
->prune_min
< (60 * 60 * 24)) {
550 printf(" prune-min=%02d:%02d:%02d\n",
551 pfsd
->prune_min
/ 60 / 60 % 24,
552 pfsd
->prune_min
/ 60 % 60,
553 pfsd
->prune_min
% 60);
554 } else if (pfsd
->prune_min
% (60 * 60 * 24)) {
555 printf(" prune-min=%dd/%02d:%02d:%02d\n",
556 pfsd
->prune_min
/ 60 / 60 / 24,
557 pfsd
->prune_min
/ 60 / 60 % 24,
558 pfsd
->prune_min
/ 60 % 60,
559 pfsd
->prune_min
% 60);
561 printf(" prune-min=%dd\n", pfsd
->prune_min
/ 60 / 60 / 24);
564 if (hammer_is_pfs_slave(pfsd
)) {
565 printf(" operating as a SLAVE\n");
567 printf(" operating as a MASTER\n");
571 * Snapshots directory cannot be shown when there is no fd since
572 * hammer version can't be retrieved. mirror-dump passes -1 because
573 * its input came from mirror-read output thus no path is available
576 if (fd
>= 0 && pfsd
->snapshots
[0] == 0) {
577 bzero(&version
, sizeof(version
));
578 if (ioctl(fd
, HAMMERIOC_GET_VERSION
, &version
) < 0)
580 if (version
.cur_version
< 3) {
581 if (hammer_is_pfs_slave(pfsd
)) {
582 printf(" snapshots directory not set for "
585 printf(" snapshots directory for master "
586 "defaults to <pfs>/snapshots\n");
589 printf(" snapshots directory defaults to "
590 "/var/hammer/<pfs>\n");
596 parse_pfsd_options(char **av
, int ac
, hammer_pseudofs_data_t pfsd
)
605 if ((ptr
= strchr(cmd
, '=')) != NULL
)
609 * Basic assignment value test
613 "option %s requires an assignment\n",
619 if (strcmp(cmd
, "sync-beg-tid") == 0) {
620 pfsd
->sync_beg_tid
= strtoull(ptr
, NULL
, 16);
621 } else if (strcmp(cmd
, "sync-end-tid") == 0) {
622 pfsd
->sync_end_tid
= strtoull(ptr
, NULL
, 16);
623 } else if (strcmp(cmd
, "shared-uuid") == 0) {
624 uuid_from_string(ptr
, &pfsd
->shared_uuid
, &status
);
625 } else if (strcmp(cmd
, "unique-uuid") == 0) {
626 uuid_from_string(ptr
, &pfsd
->unique_uuid
, &status
);
627 } else if (strcmp(cmd
, "label") == 0) {
629 if (ptr
[0] == '"' && ptr
[len
-1] == '"') {
632 } else if (ptr
[0] == '"') {
634 "option %s: malformed string\n",
638 snprintf(pfsd
->label
, sizeof(pfsd
->label
), "%s", ptr
);
639 } else if (strcmp(cmd
, "snapshots") == 0) {
643 "option %s: '%s' must be an "
644 "absolute path\n", cmd
, ptr
);
647 "use 'snapshots-clear' "
648 "to unset snapshots dir\n");
652 if (len
>= (int)sizeof(pfsd
->snapshots
)) {
654 "option %s: path too long, %d "
655 "character limit\n", cmd
, len
);
658 snprintf(pfsd
->snapshots
, sizeof(pfsd
->snapshots
),
660 } else if (strcmp(cmd
, "snapshots-clear") == 0) {
661 pfsd
->snapshots
[0] = 0;
662 } else if (strcmp(cmd
, "prune-min") == 0) {
663 pfsd
->prune_min
= timetosecs(ptr
);
664 if (pfsd
->prune_min
< 0) {
666 "option %s: illegal time spec, "
667 "use Nd or [Nd/]hh[:mm[:ss]]\n", ptr
);
671 fprintf(stderr
, "invalid option: %s\n", cmd
);
674 if (status
!= uuid_s_ok
) {
675 fprintf(stderr
, "option %s: error parsing uuid %s\n",
686 pseudofs_usage(int code
)
689 "hammer pfs-status <dirpath> ...\n"
690 "hammer pfs-master <dirpath> [options]\n"
691 "hammer pfs-slave <dirpath> [options]\n"
692 "hammer pfs-update <dirpath> [options]\n"
693 "hammer pfs-upgrade <dirpath>\n"
694 "hammer pfs-downgrade <dirpath>\n"
695 "hammer pfs-destroy <dirpath>\n"
698 " sync-beg-tid=0x16llx\n"
699 " sync-end-tid=0x16llx\n"
700 " shared-uuid=0x16llx\n"
701 " unique-uuid=0x16llx\n"
702 " label=\"string\"\n"
703 " snapshots=\"/path\"\n"
706 " prune-min=[Nd/]hh[:mm[:ss]]\n"
712 * Convert time in the form [Nd/]hh[:mm[:ss]] to seconds.
714 * Return -1 if a parse error occurs.
715 * Return 0x7FFFFFFF if the time exceeds the maximum allowed.
719 timetosecs(char *str
)
729 n
= strtol(str
, &ptr
, 10);
736 n
= strtol(ptr
+ 1, &ptr
, 10);
744 n
= strtol(ptr
+ 1, &ptr
, 10);
749 n
= strtol(ptr
+ 1, &ptr
, 10);
757 v
= days
* 24 * 60 * 60 + hrs
* 60 * 60 + mins
* 60 + secs
;