25039563bd37e3f7b14bbf4ce06932cba193fa64
[dragonfly.git] / sbin / hammer / cmd_pseudofs.c
blob25039563bd37e3f7b14bbf4ce06932cba193fa64
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:
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.
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.
34 * $DragonFly: src/sbin/hammer/cmd_pseudofs.c,v 1.6.2.3 2008/09/09 23:41:13 dillon Exp $
37 #include "hammer.h"
39 static void parse_pfsd_options(char **av, int ac, hammer_pseudofs_data_t pfsd);
40 static void init_pfsd(hammer_pseudofs_data_t pfsd, int is_slave);
41 static void dump_pfsd(hammer_pseudofs_data_t pfsd);
42 static void pseudofs_usage(int code);
43 static int getyn(void);
46 * Calculate the pfs_id given a path to a directory or a @@PFS or @@%llx:%d
47 * softlink.
49 int
50 getpfs(struct hammer_ioc_pseudofs_rw *pfs, const char *path)
52 hammer_tid_t dummy_tid;
53 struct stat st;
54 char *dirpath;
55 char buf[64];
56 int fd;
57 int n;
59 bzero(pfs, sizeof(*pfs));
60 pfs->ondisk = malloc(sizeof(*pfs->ondisk));
61 bzero(pfs->ondisk, sizeof(*pfs->ondisk));
62 pfs->bytes = sizeof(*pfs->ondisk);
65 * Calculate the directory containing the softlink
67 dirpath = strdup(path);
68 if (strrchr(dirpath, '/')) {
69 *strrchr(dirpath, '/') = 0;
70 if (strlen(dirpath) == 0) {
71 free(dirpath);
72 dirpath = strdup("/");
74 } else {
75 free(dirpath);
76 dirpath = strdup(".");
79 if (lstat(path, &st) == 0 && S_ISLNK(st.st_mode)) {
81 * Avoid foot-shooting. Don't let the user access a PFS
82 * softlink via a PFS. PFS softlinks may only be accessed
83 * via the master filesystem.
85 fd = open(dirpath, O_RDONLY);
86 if (fd < 0)
87 goto done;
88 pfs->pfs_id = -1;
89 ioctl(fd, HAMMERIOC_GET_PSEUDOFS, pfs);
90 if (pfs->pfs_id != 0) {
91 fprintf(stderr,
92 "You are attempting to access a PFS softlink "
93 "from a PFS. It may not represent the PFS\n"
94 "on the main filesystem mount that you "
95 "expect! You may only access PFS softlinks\n"
96 "via the main filesystem mount!\n");
97 exit(1);
99 close(fd);
102 * Extract the PFS from the link. HAMMER will automatically
103 * convert @@PFS%05d links so if actually see one in that
104 * form the target PFS may not exist or may be corrupt. But
105 * we can extract the PFS id anyway.
107 n = readlink(path, buf, sizeof(buf) - 1);
108 if (n < 0)
109 n = 0;
110 buf[n] = 0;
111 if (sscanf(buf, "@@PFS%d", &pfs->pfs_id) == 1) {
112 fd = open(dirpath, O_RDONLY);
113 goto done;
115 if (sscanf(buf, "@@%llx:%d", &dummy_tid, &pfs->pfs_id) == 2) {
116 fd = open(dirpath, O_RDONLY);
117 goto done;
122 * Try to open the path and request the pfs_id that way.
124 fd = open(path, O_RDONLY);
125 if (fd >= 0) {
126 pfs->pfs_id = -1;
127 ioctl(fd, HAMMERIOC_GET_PSEUDOFS, pfs);
128 if (pfs->pfs_id == -1) {
129 close(fd);
130 fd = -1;
135 * Cleanup
137 done:
138 if (fd < 0) {
139 fprintf(stderr, "Cannot access PFS %s: %s\n",
140 path, strerror(errno));
141 exit(1);
143 if (ioctl(fd, HAMMERIOC_GET_PSEUDOFS, pfs) < 0) {
144 fprintf(stderr, "Cannot access PFS %s: %s\n",
145 path, strerror(errno));
146 exit(1);
148 free(dirpath);
149 return(fd);
152 void
153 relpfs(int fd, struct hammer_ioc_pseudofs_rw *pfs)
155 close(fd);
156 if (pfs->ondisk) {
157 free(pfs->ondisk);
158 pfs->ondisk = NULL;
162 void
163 hammer_cmd_pseudofs_status(char **av, int ac)
165 struct hammer_ioc_pseudofs_rw pfs;
166 int i;
167 int fd;
169 if (ac == 0)
170 pseudofs_usage(1);
172 for (i = 0; i < ac; ++i) {
173 printf("%s\t", av[i]);
174 fd = getpfs(&pfs, av[i]);
175 if (fd < 0 || ioctl(fd, HAMMERIOC_GET_PSEUDOFS, &pfs) < 0) {
176 printf("Not a HAMMER root\n");
177 } else {
178 printf("PFS #%d {\n", pfs.pfs_id);
179 dump_pfsd(pfs.ondisk);
180 printf("}\n");
182 if (fd >= 0)
183 close(fd);
184 if (pfs.ondisk)
185 free(pfs.ondisk);
189 void
190 hammer_cmd_pseudofs_create(char **av, int ac, int is_slave)
192 struct hammer_ioc_pseudofs_rw pfs;
193 struct hammer_pseudofs_data pfsd;
194 struct stat st;
195 const char *path;
196 char *dirpath;
197 char *linkpath;
198 int pfs_id;
199 int fd;
200 int error;
202 if (ac == 0)
203 pseudofs_usage(1);
204 path = av[0];
205 if (lstat(path, &st) == 0) {
206 fprintf(stderr, "cannot create %s, file exists!\n", path);
207 exit(1);
210 dirpath = strdup(path);
211 if (strrchr(dirpath, '/') != NULL) {
212 *strrchr(dirpath, '/') = 0;
213 } else {
214 free(dirpath);
215 dirpath = strdup(".");
217 fd = open(dirpath, O_RDONLY);
218 if (fd < 0) {
219 fprintf(stderr, "Cannot open directory %s\n", dirpath);
220 exit(1);
223 error = 0;
224 for (pfs_id = 0; pfs_id < HAMMER_MAX_PFS; ++pfs_id) {
225 bzero(&pfs, sizeof(pfs));
226 bzero(&pfsd, sizeof(pfsd));
227 pfs.pfs_id = pfs_id;
228 pfs.ondisk = &pfsd;
229 pfs.bytes = sizeof(pfsd);
230 pfs.version = HAMMER_IOC_PSEUDOFS_VERSION;
231 if (ioctl(fd, HAMMERIOC_GET_PSEUDOFS, &pfs) < 0) {
232 error = errno;
233 break;
236 if (pfs_id == HAMMER_MAX_PFS) {
237 fprintf(stderr, "Cannot create %s, all PFSs in use\n", path);
238 exit(1);
240 if (error != ENOENT) {
241 fprintf(stderr, "Cannot create %s, got %s during scan\n",
242 path, strerror(error));
243 exit(1);
247 * Create the new PFS
249 printf("Creating PFS #%d\t", pfs_id);
250 bzero(&pfsd, sizeof(pfsd));
251 init_pfsd(&pfsd, is_slave);
252 pfs.pfs_id = pfs_id;
253 pfs.ondisk = &pfsd;
254 pfs.bytes = sizeof(pfsd);
255 pfs.version = HAMMER_IOC_PSEUDOFS_VERSION;
257 if (ioctl(fd, HAMMERIOC_SET_PSEUDOFS, &pfs) < 0) {
258 printf("failed: %s\n", strerror(errno));
259 } else {
260 /* special symlink, must be exactly 10 characters */
261 asprintf(&linkpath, "@@PFS%05d", pfs_id);
262 if (symlink(linkpath, path) < 0) {
263 printf("failed: cannot create symlink: %s\n",
264 strerror(errno));
265 } else {
266 printf("succeeded!\n");
267 hammer_cmd_pseudofs_update(av, ac);
270 close(fd);
273 void
274 hammer_cmd_pseudofs_destroy(char **av, int ac)
276 struct hammer_ioc_pseudofs_rw pfs;
277 struct stat st;
278 int fd;
279 int i;
281 if (ac == 0)
282 pseudofs_usage(1);
283 bzero(&pfs, sizeof(pfs));
284 fd = getpfs(&pfs, av[0]);
286 if (pfs.pfs_id == 0) {
287 fprintf(stderr, "You cannot destroy PFS#0\n");
288 exit(1);
290 printf("You have requested that PFS#%d (%s) be destroyed\n",
291 pfs.pfs_id, pfs.ondisk->label);
292 printf("This will irrevocably destroy all data on this PFS!!!!!\n");
293 printf("Do you really want to do this? ");
294 fflush(stdout);
295 if (getyn() == 0) {
296 fprintf(stderr, "No action taken on PFS#%d\n", pfs.pfs_id);
297 exit(1);
300 if ((pfs.ondisk->mirror_flags & HAMMER_PFSD_SLAVE) == 0) {
301 printf("This PFS is currently setup as a MASTER!\n");
302 printf("Are you absolutely sure you want to destroy it? ");
303 fflush(stdout);
304 if (getyn() == 0) {
305 fprintf(stderr, "No action taken on PFS#%d\n",
306 pfs.pfs_id);
307 exit(1);
311 printf("Destroying PFS #%d (%s) in ", pfs.pfs_id, pfs.ondisk->label);
312 for (i = 5; i; --i) {
313 printf(" %d", i);
314 fflush(stdout);
315 sleep(1);
317 printf(".. starting destruction pass\n");
318 fflush(stdout);
321 * Set the sync_beg_tid and sync_end_tid's to 1, once we start the
322 * RMR the PFS is basically destroyed even if someone ^C's it.
324 pfs.ondisk->mirror_flags |= HAMMER_PFSD_SLAVE;
325 pfs.ondisk->reserved01 = -1;
326 pfs.ondisk->sync_beg_tid = 1;
327 pfs.ondisk->sync_end_tid = 1;
329 if (ioctl(fd, HAMMERIOC_SET_PSEUDOFS, &pfs) < 0) {
330 fprintf(stderr, "Unable to update the PFS configuration: %s\n",
331 strerror(errno));
332 exit(1);
336 * Ok, do it. Remove the softlink on success.
338 if (ioctl(fd, HAMMERIOC_RMR_PSEUDOFS, &pfs) == 0) {
339 printf("pfs-destroy of PFS#%d succeeded!\n", pfs.pfs_id);
340 if (lstat(av[0], &st) == 0 && S_ISLNK(st.st_mode)) {
341 if (remove(av[0]) < 0) {
342 fprintf(stderr, "Unable to remove softlink: %s "
343 "(but the PFS has been destroyed)\n",
344 av[0]);
345 /* exit status 0 anyway */
348 } else {
349 printf("pfs-destroy of PFS#%d failed: %s\n",
350 pfs.pfs_id, strerror(errno));
354 void
355 hammer_cmd_pseudofs_upgrade(char **av, int ac)
357 struct hammer_ioc_pseudofs_rw pfs;
358 int fd;
360 if (ac == 0)
361 pseudofs_usage(1);
362 bzero(&pfs, sizeof(pfs));
363 fd = getpfs(&pfs, av[0]);
365 if (pfs.pfs_id == 0) {
366 fprintf(stderr, "You cannot upgrade PFS#0"
367 " (It should already be a master)\n");
368 exit(1);
370 if (ioctl(fd, HAMMERIOC_UPG_PSEUDOFS, &pfs) == 0) {
371 printf("pfs-upgrade of PFS#%d (%s) succeeded\n",
372 pfs.pfs_id, pfs.ondisk->label);
373 } else {
374 fprintf(stderr, "pfs-upgrade of PFS#%d (%s) failed: %s\n",
375 pfs.pfs_id, pfs.ondisk->label, strerror(errno));
379 void
380 hammer_cmd_pseudofs_downgrade(char **av, int ac)
382 struct hammer_ioc_pseudofs_rw pfs;
383 int fd;
385 if (ac == 0)
386 pseudofs_usage(1);
387 bzero(&pfs, sizeof(pfs));
388 fd = getpfs(&pfs, av[0]);
390 if (pfs.pfs_id == 0) {
391 fprintf(stderr, "You cannot downgrade PFS#0\n");
392 exit(1);
395 if (ioctl(fd, HAMMERIOC_DGD_PSEUDOFS, &pfs) == 0) {
396 printf("pfs-downgrade of PFS#%d (%s) succeeded\n",
397 pfs.pfs_id, pfs.ondisk->label);
398 } else {
399 fprintf(stderr, "pfs-upgrade of PFS#%d (%s) failed: %s\n",
400 pfs.pfs_id, pfs.ondisk->label, strerror(errno));
404 void
405 hammer_cmd_pseudofs_update(char **av, int ac)
407 struct hammer_ioc_pseudofs_rw pfs;
408 int fd;
410 if (ac == 0)
411 pseudofs_usage(1);
412 bzero(&pfs, sizeof(pfs));
413 fd = getpfs(&pfs, av[0]);
415 printf("%s\n", av[0]);
416 fflush(stdout);
418 if (ioctl(fd, HAMMERIOC_GET_PSEUDOFS, &pfs) == 0) {
419 parse_pfsd_options(av + 1, ac - 1, pfs.ondisk);
420 if ((pfs.ondisk->mirror_flags & HAMMER_PFSD_SLAVE) &&
421 pfs.pfs_id == 0) {
422 printf("The real mount point cannot be made a PFS "
423 "slave, only PFS sub-directories can be made "
424 "slaves\n");
425 exit(1);
427 pfs.bytes = sizeof(*pfs.ondisk);
428 if (ioctl(fd, HAMMERIOC_SET_PSEUDOFS, &pfs) == 0) {
429 if (ioctl(fd, HAMMERIOC_GET_PSEUDOFS, &pfs) == 0) {
430 dump_pfsd(pfs.ondisk);
431 } else {
432 printf("Unable to retrieve pfs configuration "
433 "after successful update: %s\n",
434 strerror(errno));
435 exit(1);
437 } else {
438 printf("Unable to adjust pfs configuration: %s\n",
439 strerror(errno));
440 exit(1);
445 static void
446 init_pfsd(hammer_pseudofs_data_t pfsd, int is_slave)
448 uint32_t status;
450 pfsd->sync_beg_tid = 1;
451 pfsd->sync_end_tid = 1;
452 pfsd->sync_beg_ts = 0;
453 pfsd->sync_end_ts = 0;
454 uuid_create(&pfsd->shared_uuid, &status);
455 uuid_create(&pfsd->unique_uuid, &status);
456 if (is_slave)
457 pfsd->mirror_flags |= HAMMER_PFSD_SLAVE;
460 static
461 void
462 dump_pfsd(hammer_pseudofs_data_t pfsd)
464 u_int32_t status;
465 char *str = NULL;
467 printf(" sync-beg-tid=0x%016llx\n", pfsd->sync_beg_tid);
468 printf(" sync-end-tid=0x%016llx\n", pfsd->sync_end_tid);
469 uuid_to_string(&pfsd->shared_uuid, &str, &status);
470 printf(" shared-uuid=%s\n", str);
471 uuid_to_string(&pfsd->unique_uuid, &str, &status);
472 printf(" unique-uuid=%s\n", str);
473 if (pfsd->mirror_flags & HAMMER_PFSD_SLAVE) {
474 printf(" slave\n");
476 printf(" label=\"%s\"\n", pfsd->label);
477 if (pfsd->mirror_flags & HAMMER_PFSD_SLAVE)
478 printf(" operating as a SLAVE\n");
479 else
480 printf(" operating as a MASTER\n");
483 static void
484 parse_pfsd_options(char **av, int ac, hammer_pseudofs_data_t pfsd)
486 char *cmd;
487 char *ptr;
488 int len;
489 uint32_t status;
491 while (ac) {
492 cmd = *av;
493 if ((ptr = strchr(cmd, '=')) != NULL)
494 *ptr++ = 0;
497 * Basic assignment value test
499 if (ptr == NULL) {
500 fprintf(stderr,
501 "option %s requires an assignment\n",
502 cmd);
503 exit(1);
506 status = uuid_s_ok;
507 if (strcmp(cmd, "sync-beg-tid") == 0) {
508 pfsd->sync_beg_tid = strtoull(ptr, NULL, 16);
509 } else if (strcmp(cmd, "sync-end-tid") == 0) {
510 pfsd->sync_end_tid = strtoull(ptr, NULL, 16);
511 } else if (strcmp(cmd, "shared-uuid") == 0) {
512 uuid_from_string(ptr, &pfsd->shared_uuid, &status);
513 } else if (strcmp(cmd, "unique-uuid") == 0) {
514 uuid_from_string(ptr, &pfsd->unique_uuid, &status);
515 } else if (strcmp(cmd, "label") == 0) {
516 len = strlen(ptr);
517 if (ptr[0] == '"' && ptr[len-1] == '"') {
518 ptr[len-1] = 0;
519 ++ptr;
520 } else if (ptr[0] == '"') {
521 fprintf(stderr,
522 "option %s: malformed string\n",
523 cmd);
524 exit(1);
526 snprintf(pfsd->label, sizeof(pfsd->label), "%s", ptr);
527 } else {
528 fprintf(stderr, "invalid option: %s\n", cmd);
529 exit(1);
531 if (status != uuid_s_ok) {
532 fprintf(stderr, "option %s: error parsing uuid %s\n",
533 cmd, ptr);
534 exit(1);
536 --ac;
537 ++av;
541 static
542 void
543 pseudofs_usage(int code)
545 fprintf(stderr,
546 "hammer pfs-status <dirpath> ...\n"
547 "hammer pfs-master <dirpath> [options]\n"
548 "hammer pfs-slave <dirpath> [options]\n"
549 "hammer pfs-update <dirpath> [options]\n"
550 "hammer pfs-upgrade <dirpath>\n"
551 "hammer pfs-downgrade <dirpath>\n"
552 "hammer pfs-destroy <dirpath>\n"
553 "\n"
554 "options:\n"
555 " sync-beg-tid=0x16llx\n"
556 " sync-end-tid=0x16llx\n"
557 " shared-uuid=0x16llx\n"
558 " unique-uuid=0x16llx\n"
559 " label=\"string\"\n"
561 exit(code);
564 static
566 getyn(void)
568 char buf[256];
569 int len;
571 if (fgets(buf, sizeof(buf), stdin) == NULL)
572 return(0);
573 len = strlen(buf);
574 while (len && (buf[len-1] == '\n' || buf[len-1] == '\r'))
575 --len;
576 buf[len] = 0;
577 if (strcmp(buf, "y") == 0 ||
578 strcmp(buf, "yes") == 0 ||
579 strcmp(buf, "Y") == 0 ||
580 strcmp(buf, "YES") == 0) {
581 return(1);
583 return(0);