1 /*- 2 * Copyright (c) 1980, 1991, 1993, 1994 3 * The Regents of the University of California. All rights reserved. 4 * 5 * Redistribution and use in source and binary forms, with or without 6 * modification, are permitted provided that the following conditions 7 * are met: 8 * 1. Redistributions of source code must retain the above copyright 9 * notice, this list of conditions and the following disclaimer. 10 * 2. Redistributions in binary form must reproduce the above copyright 11 * notice, this list of conditions and the following disclaimer in the 12 * documentation and/or other materials provided with the distribution. 13 * 4. Neither the name of the University nor the names of its contributors 14 * may be used to endorse or promote products derived from this software 15 * without specific prior written permission. 16 * 17 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND 18 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 19 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 20 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE 21 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 22 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 23 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 24 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 25 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 26 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 27 * SUCH DAMAGE. 28 */ 29 30 #ifndef lint 31 static const char copyright[] = 32 "@(#) Copyright (c) 1980, 1991, 1993, 1994\n\ 33 The Regents of the University of California. All rights reserved.\n"; 34 #endif /* not lint */ 35 36 #ifndef lint 37 #if 0 38 static char sccsid[] = "@(#)main.c 8.6 (Berkeley) 5/1/95"; 39 #endif 40 static const char rcsid[] = 41 "$FreeBSD$"; 42 #endif /* not lint */ 43 44 #include <sys/param.h> 45 #include <sys/stat.h> 46 #include <sys/time.h> 47 #include <sys/mount.h> 48 #include <sys/disklabel.h> 49 50 #include <ufs/ufs/dinode.h> 51 #include <ufs/ufs/ufsmount.h> 52 #include <ufs/ffs/fs.h> 53 54 #include <protocols/dumprestore.h> 55 56 #include <ctype.h> 57 #include <err.h> 58 #include <errno.h> 59 #include <fcntl.h> 60 #include <fstab.h> 61 #include <limits.h> 62 #include <signal.h> 63 #include <stdint.h> 64 #include <stdio.h> 65 #include <stdlib.h> 66 #include <string.h> 67 #include <timeconv.h> 68 #include <unistd.h> 69 70 #include "dump.h" 71 #include "pathnames.h" 72 73 int notify = 0; /* notify operator flag */ 74 int snapdump = 0; /* dumping live filesystem, so use snapshot */ 75 int blockswritten = 0; /* number of blocks written on current tape */ 76 int tapeno = 0; /* current tape number */ 77 int density = 0; /* density in bytes/0.1" " <- this is for hilit19 */ 78 int ntrec = NTREC; /* # tape blocks in each tape record */ 79 int cartridge = 0; /* Assume non-cartridge tape */ 80 int cachesize = 0; /* block cache size (in bytes), defaults to 0 */ 81 long dev_bsize = 1; /* recalculated below */ 82 long blocksperfile; /* output blocks per file */ 83 char *host = NULL; /* remote host (if any) */ 84 85 /* 86 * Possible superblock locations ordered from most to least likely. 87 */ 88 static int sblock_try[] = SBLOCKSEARCH; 89 90 static char *getmntpt(char *, int *); 91 static long numarg(const char *, long, long); 92 static void obsolete(int *, char **[]); 93 static void usage(void) __dead2; 94 95 int 96 main(int argc, char *argv[]) 97 { 98 struct stat sb; 99 ino_t ino; 100 int dirty; 101 union dinode *dp; 102 struct fstab *dt; 103 char *map, *mntpt; 104 int ch, mode, mntflags; 105 int i, anydirskipped, bflag = 0, Tflag = 0, honorlevel = 1; 106 int just_estimate = 0; 107 ino_t maxino; 108 char *tmsg; 109 110 spcl.c_date = _time_to_time64(time(NULL)); 111 112 tsize = 0; /* Default later, based on 'c' option for cart tapes */ 113 dumpdates = _PATH_DUMPDATES; 114 popenout = NULL; 115 tape = NULL; 116 temp = _PATH_DTMP; 117 if (TP_BSIZE / DEV_BSIZE == 0 || TP_BSIZE % DEV_BSIZE != 0) 118 quit("TP_BSIZE must be a multiple of DEV_BSIZE\n"); 119 level = '0'; 120 121 if (argc < 2) 122 usage(); 123 124 obsolete(&argc, &argv); 125 while ((ch = getopt(argc, argv, 126 "0123456789aB:b:C:cD:d:f:h:LnP:Ss:T:uWw")) != -1) 127 switch (ch) { 128 /* dump level */ 129 case '0': case '1': case '2': case '3': case '4': 130 case '5': case '6': case '7': case '8': case '9': 131 level = ch; 132 break; 133 134 case 'a': /* `auto-size', Write to EOM. */ 135 unlimited = 1; 136 break; 137 138 case 'B': /* blocks per output file */ 139 blocksperfile = numarg("number of blocks per file", 140 1L, 0L); 141 break; 142 143 case 'b': /* blocks per tape write */ 144 ntrec = numarg("number of blocks per write", 145 1L, 1000L); 146 break; 147 148 case 'C': 149 cachesize = numarg("cachesize", 0, 0) * 1024 * 1024; 150 break; 151 152 case 'c': /* Tape is cart. not 9-track */ 153 cartridge = 1; 154 break; 155 156 case 'D': 157 dumpdates = optarg; 158 break; 159 160 case 'd': /* density, in bits per inch */ 161 density = numarg("density", 10L, 327670L) / 10; 162 if (density >= 625 && !bflag) 163 ntrec = HIGHDENSITYTREC; 164 break; 165 166 case 'f': /* output file */ 167 if (popenout != NULL) 168 errx(X_STARTUP, "You cannot use the P and f " 169 "flags together.\n"); 170 tape = optarg; 171 break; 172 173 case 'h': 174 honorlevel = numarg("honor level", 0L, 10L); 175 break; 176 177 case 'L': 178 snapdump = 1; 179 break; 180 181 case 'n': /* notify operators */ 182 notify = 1; 183 break; 184 185 case 'P': 186 if (tape != NULL) 187 errx(X_STARTUP, "You cannot use the P and f " 188 "flags together.\n"); 189 popenout = optarg; 190 break; 191 192 case 'S': /* exit after estimating # of tapes */ 193 just_estimate = 1; 194 break; 195 196 case 's': /* tape size, feet */ 197 tsize = numarg("tape size", 1L, 0L) * 12 * 10; 198 break; 199 200 case 'T': /* time of last dump */ 201 spcl.c_ddate = unctime(optarg); 202 if (spcl.c_ddate < 0) { 203 (void)fprintf(stderr, "bad time \"%s\"\n", 204 optarg); 205 exit(X_STARTUP); 206 } 207 Tflag = 1; 208 lastlevel = '?'; 209 break; 210 211 case 'u': /* update /etc/dumpdates */ 212 uflag = 1; 213 break; 214 215 case 'W': /* what to do */ 216 case 'w': 217 lastdump(ch); 218 exit(X_FINOK); /* do nothing else */ 219 220 default: 221 usage(); 222 } 223 argc -= optind; 224 argv += optind; 225 226 if (argc < 1) { 227 (void)fprintf(stderr, "Must specify disk or file system\n"); 228 exit(X_STARTUP); 229 } 230 disk = *argv++; 231 argc--; 232 if (argc >= 1) { 233 (void)fprintf(stderr, "Unknown arguments to dump:"); 234 while (argc--) 235 (void)fprintf(stderr, " %s", *argv++); 236 (void)fprintf(stderr, "\n"); 237 exit(X_STARTUP); 238 } 239 if (Tflag && uflag) { 240 (void)fprintf(stderr, 241 "You cannot use the T and u flags together.\n"); 242 exit(X_STARTUP); 243 } 244 if (popenout) { 245 tape = "child pipeline process"; 246 } else if (tape == NULL && (tape = getenv("TAPE")) == NULL) 247 tape = _PATH_DEFTAPE; 248 if (strcmp(tape, "-") == 0) { 249 pipeout++; 250 tape = "standard output"; 251 } 252 253 if (blocksperfile) 254 blocksperfile = blocksperfile / ntrec * ntrec; /* round down */ 255 else if (!unlimited) { 256 /* 257 * Determine how to default tape size and density 258 * 259 * density tape size 260 * 9-track 1600 bpi (160 bytes/.1") 2300 ft. 261 * 9-track 6250 bpi (625 bytes/.1") 2300 ft. 262 * cartridge 8000 bpi (100 bytes/.1") 1700 ft. 263 * (450*4 - slop) 264 * hilit19 hits again: " 265 */ 266 if (density == 0) 267 density = cartridge ? 100 : 160; 268 if (tsize == 0) 269 tsize = cartridge ? 1700L*120L : 2300L*120L; 270 } 271 272 if (strchr(tape, ':')) { 273 host = tape; 274 tape = strchr(host, ':'); 275 *tape++ = '\0'; 276 #ifdef RDUMP 277 if (index(tape, '\n')) { 278 (void)fprintf(stderr, "invalid characters in tape\n"); 279 exit(X_STARTUP); 280 } 281 if (rmthost(host) == 0) 282 exit(X_STARTUP); 283 #else 284 (void)fprintf(stderr, "remote dump not enabled\n"); 285 exit(X_STARTUP); 286 #endif 287 } 288 (void)setuid(getuid()); /* rmthost() is the only reason to be setuid */ 289 290 if (signal(SIGHUP, SIG_IGN) != SIG_IGN) 291 signal(SIGHUP, sig); 292 if (signal(SIGTRAP, SIG_IGN) != SIG_IGN) 293 signal(SIGTRAP, sig); 294 if (signal(SIGFPE, SIG_IGN) != SIG_IGN) 295 signal(SIGFPE, sig); 296 if (signal(SIGBUS, SIG_IGN) != SIG_IGN) 297 signal(SIGBUS, sig); 298 if (signal(SIGSEGV, SIG_IGN) != SIG_IGN) 299 signal(SIGSEGV, sig); 300 if (signal(SIGTERM, SIG_IGN) != SIG_IGN) 301 signal(SIGTERM, sig); 302 if (signal(SIGINT, interrupt) == SIG_IGN) 303 signal(SIGINT, SIG_IGN); 304 305 dump_getfstab(); /* /etc/fstab snarfed */ 306 /* 307 * disk can be either the full special file name, 308 * the suffix of the special file name, 309 * the special name missing the leading '/', 310 * the file system name with or without the leading '/'. 311 */ 312 dt = fstabsearch(disk); 313 if (dt != NULL) { 314 disk = rawname(dt->fs_spec); 315 (void)strncpy(spcl.c_dev, dt->fs_spec, NAMELEN); 316 (void)strncpy(spcl.c_filesys, dt->fs_file, NAMELEN); 317 } else { 318 (void)strncpy(spcl.c_dev, disk, NAMELEN); 319 (void)strncpy(spcl.c_filesys, "an unlisted file system", 320 NAMELEN); 321 } 322 spcl.c_dev[NAMELEN-1]='\0'; 323 spcl.c_filesys[NAMELEN-1]='\0'; 324 325 if ((mntpt = getmntpt(disk, &mntflags)) != 0) { 326 if (mntflags & MNT_RDONLY) { 327 if (snapdump != 0) { 328 msg("WARNING: %s\n", 329 "-L ignored for read-only filesystem."); 330 snapdump = 0; 331 } 332 } else if (snapdump == 0) { 333 msg("WARNING: %s\n", 334 "should use -L when dumping live read-write " 335 "filesystems!"); 336 } else { 337 char snapname[BUFSIZ], snapcmd[BUFSIZ]; 338 339 snprintf(snapname, sizeof snapname, "%s/.snap", mntpt); 340 if ((stat(snapname, &sb) < 0) || !S_ISDIR(sb.st_mode)) { 341 msg("WARNING: %s %s\n", 342 "-L requested but snapshot location", 343 snapname); 344 msg(" %s: %s\n", 345 "is not a directory", 346 "dump downgraded, -L ignored"); 347 snapdump = 0; 348 } else { 349 snprintf(snapname, sizeof snapname, 350 "%s/.snap/dump_snapshot", mntpt); 351 snprintf(snapcmd, sizeof snapcmd, "%s %s %s", 352 _PATH_MKSNAP_FFS, mntpt, snapname); 353 unlink(snapname); 354 if (system(snapcmd) != 0) 355 errx(X_STARTUP, "Cannot create %s: %s\n", 356 snapname, strerror(errno)); 357 if ((diskfd = open(snapname, O_RDONLY)) < 0) { 358 unlink(snapname); 359 errx(X_STARTUP, "Cannot open %s: %s\n", 360 snapname, strerror(errno)); 361 } 362 unlink(snapname); 363 if (fstat(diskfd, &sb) != 0) 364 err(X_STARTUP, "%s: stat", snapname); 365 spcl.c_date = _time_to_time64(sb.st_mtime); 366 } 367 } 368 } else if (snapdump != 0) { 369 msg("WARNING: Cannot use -L on an unmounted filesystem.\n"); 370 snapdump = 0; 371 } 372 if (snapdump == 0) { 373 if ((diskfd = open(disk, O_RDONLY)) < 0) 374 err(X_STARTUP, "Cannot open %s", disk); 375 if (fstat(diskfd, &sb) != 0) 376 err(X_STARTUP, "%s: stat", disk); 377 if (S_ISDIR(sb.st_mode)) 378 errx(X_STARTUP, "%s: unknown file system", disk); 379 } 380 381 (void)strcpy(spcl.c_label, "none"); 382 (void)gethostname(spcl.c_host, NAMELEN); 383 spcl.c_level = level - '0'; 384 spcl.c_type = TS_TAPE; 385 386 if (spcl.c_date == 0) { 387 tmsg = "the epoch\n"; 388 } else { 389 time_t t = _time64_to_time(spcl.c_date); 390 tmsg = ctime(&t); 391 } 392 msg("Date of this level %c dump: %s", level, tmsg); 393 394 if (!Tflag) 395 getdumptime(); /* /etc/dumpdates snarfed */ 396 if (spcl.c_ddate == 0) { 397 tmsg = "the epoch\n"; 398 } else { 399 time_t t = _time64_to_time(spcl.c_ddate); 400 tmsg = ctime(&t); 401 } 402 msg("Date of last level %c dump: %s", lastlevel, tmsg); 403 404 msg("Dumping %s%s ", snapdump ? "snapshot of ": "", disk); 405 if (dt != NULL) 406 msgtail("(%s) ", dt->fs_file); 407 if (host) 408 msgtail("to %s on host %s\n", tape, host); 409 else 410 msgtail("to %s\n", tape); 411 412 sync(); 413 sblock = (struct fs *)sblock_buf; 414 for (i = 0; sblock_try[i] != -1; i++) { 415 sblock->fs_fsize = SBLOCKSIZE; /* needed in bread */ 416 bread(sblock_try[i] >> dev_bshift, (char *) sblock, SBLOCKSIZE); 417 if ((sblock->fs_magic == FS_UFS1_MAGIC || 418 (sblock->fs_magic == FS_UFS2_MAGIC && 419 sblock->fs_sblockloc == sblock_try[i])) && 420 sblock->fs_bsize <= MAXBSIZE && 421 sblock->fs_bsize >= sizeof(struct fs)) 422 break; 423 } 424 if (sblock_try[i] == -1) 425 quit("Cannot find file system superblock\n"); 426 dev_bsize = sblock->fs_fsize / fsbtodb(sblock, 1); 427 dev_bshift = ffs(dev_bsize) - 1; 428 if (dev_bsize != (1 << dev_bshift)) 429 quit("dev_bsize (%ld) is not a power of 2", dev_bsize); 430 tp_bshift = ffs(TP_BSIZE) - 1; 431 if (TP_BSIZE != (1 << tp_bshift)) 432 quit("TP_BSIZE (%d) is not a power of 2", TP_BSIZE); 433 maxino = sblock->fs_ipg * sblock->fs_ncg; 434 mapsize = roundup(howmany(maxino, CHAR_BIT), TP_BSIZE); 435 usedinomap = (char *)calloc((unsigned) mapsize, sizeof(char)); 436 dumpdirmap = (char *)calloc((unsigned) mapsize, sizeof(char)); 437 dumpinomap = (char *)calloc((unsigned) mapsize, sizeof(char)); 438 tapesize = 3 * (howmany(mapsize * sizeof(char), TP_BSIZE) + 1); 439 440 nonodump = spcl.c_level < honorlevel; 441 442 passno = 1; 443 setproctitle("%s: pass 1: regular files", disk); 444 msg("mapping (Pass I) [regular files]\n"); 445 anydirskipped = mapfiles(maxino, &tapesize); 446 447 passno = 2; 448 setproctitle("%s: pass 2: directories", disk); 449 msg("mapping (Pass II) [directories]\n"); 450 while (anydirskipped) { 451 anydirskipped = mapdirs(maxino, &tapesize); 452 } 453 454 if (pipeout || unlimited) { 455 tapesize += 10; /* 10 trailer blocks */ 456 msg("estimated %ld tape blocks.\n", tapesize); 457 } else { 458 double fetapes; 459 460 if (blocksperfile) 461 fetapes = (double) tapesize / blocksperfile; 462 else if (cartridge) { 463 /* Estimate number of tapes, assuming streaming stops at 464 the end of each block written, and not in mid-block. 465 Assume no erroneous blocks; this can be compensated 466 for with an artificially low tape size. */ 467 fetapes = 468 ( (double) tapesize /* blocks */ 469 * TP_BSIZE /* bytes/block */ 470 * (1.0/density) /* 0.1" / byte " */ 471 + 472 (double) tapesize /* blocks */ 473 * (1.0/ntrec) /* streaming-stops per block */ 474 * 15.48 /* 0.1" / streaming-stop " */ 475 ) * (1.0 / tsize ); /* tape / 0.1" " */ 476 } else { 477 /* Estimate number of tapes, for old fashioned 9-track 478 tape */ 479 int tenthsperirg = (density == 625) ? 3 : 7; 480 fetapes = 481 ( (double) tapesize /* blocks */ 482 * TP_BSIZE /* bytes / block */ 483 * (1.0/density) /* 0.1" / byte " */ 484 + 485 (double) tapesize /* blocks */ 486 * (1.0/ntrec) /* IRG's / block */ 487 * tenthsperirg /* 0.1" / IRG " */ 488 ) * (1.0 / tsize ); /* tape / 0.1" " */ 489 } 490 etapes = fetapes; /* truncating assignment */ 491 etapes++; 492 /* count the dumped inodes map on each additional tape */ 493 tapesize += (etapes - 1) * 494 (howmany(mapsize * sizeof(char), TP_BSIZE) + 1); 495 tapesize += etapes + 10; /* headers + 10 trailer blks */ 496 msg("estimated %ld tape blocks on %3.2f tape(s).\n", 497 tapesize, fetapes); 498 } 499 500 /* 501 * If the user only wants an estimate of the number of 502 * tapes, exit now. 503 */ 504 if (just_estimate) 505 exit(0); 506 507 /* 508 * Allocate tape buffer. 509 */ 510 if (!alloctape()) 511 quit( 512 "can't allocate tape buffers - try a smaller blocking factor.\n"); 513 514 startnewtape(1); 515 (void)time((time_t *)&(tstart_writing)); 516 dumpmap(usedinomap, TS_CLRI, maxino - 1); 517 518 passno = 3; 519 setproctitle("%s: pass 3: directories", disk); 520 msg("dumping (Pass III) [directories]\n"); 521 dirty = 0; /* XXX just to get gcc to shut up */ 522 for (map = dumpdirmap, ino = 1; ino < maxino; ino++) { 523 if (((ino - 1) % CHAR_BIT) == 0) /* map is offset by 1 */ 524 dirty = *map++; 525 else 526 dirty >>= 1; 527 if ((dirty & 1) == 0) 528 continue; 529 /* 530 * Skip directory inodes deleted and maybe reallocated 531 */ 532 dp = getino(ino, &mode); 533 if (mode != IFDIR) 534 continue; 535 (void)dumpino(dp, ino); 536 } 537 538 passno = 4; 539 setproctitle("%s: pass 4: regular files", disk); 540 msg("dumping (Pass IV) [regular files]\n"); 541 for (map = dumpinomap, ino = 1; ino < maxino; ino++) { 542 if (((ino - 1) % CHAR_BIT) == 0) /* map is offset by 1 */ 543 dirty = *map++; 544 else 545 dirty >>= 1; 546 if ((dirty & 1) == 0) 547 continue; 548 /* 549 * Skip inodes deleted and reallocated as directories. 550 */ 551 dp = getino(ino, &mode); 552 if (mode == IFDIR) 553 continue; 554 (void)dumpino(dp, ino); 555 } 556 557 (void)time((time_t *)&(tend_writing)); 558 spcl.c_type = TS_END; 559 for (i = 0; i < ntrec; i++) 560 writeheader(maxino - 1); 561 if (pipeout) 562 msg("DUMP: %jd tape blocks\n", (intmax_t)spcl.c_tapea); 563 else 564 msg("DUMP: %jd tape blocks on %d volume%s\n", 565 (intmax_t)spcl.c_tapea, spcl.c_volume, 566 (spcl.c_volume == 1) ? "" : "s"); 567 568 /* report dump performance, avoid division through zero */ 569 if (tend_writing - tstart_writing == 0) 570 msg("finished in less than a second\n"); 571 else 572 msg("finished in %jd seconds, throughput %jd KBytes/sec\n", 573 (intmax_t)tend_writing - tstart_writing, 574 (intmax_t)(spcl.c_tapea / 575 (tend_writing - tstart_writing))); 576 577 putdumptime(); 578 trewind(); 579 broadcast("DUMP IS DONE!\a\a\n"); 580 msg("DUMP IS DONE\n"); 581 Exit(X_FINOK); 582 /* NOTREACHED */ 583 } 584 585 static void 586 usage(void) 587 { 588 fprintf(stderr, 589 "usage: dump [-0123456789acLnSu] [-B records] [-b blocksize] [-C cachesize]\n" 590 " [-D dumpdates] [-d density] [-f file | -P pipecommand] [-h level]\n" 591 " [-s feet] [-T date] filesystem\n" 592 " dump -W | -w\n"); 593 exit(X_STARTUP); 594 } 595 596 /* 597 * Check to see if a disk is currently mounted. 598 */ 599 static char * 600 getmntpt(char *name, int *mntflagsp) 601 { 602 long mntsize, i; 603 struct statfs *mntbuf; 604 605 mntsize = getmntinfo(&mntbuf, MNT_NOWAIT); 606 for (i = 0; i < mntsize; i++) { 607 if (!strcmp(mntbuf[i].f_mntfromname, name)) { 608 *mntflagsp = mntbuf[i].f_flags; 609 return (mntbuf[i].f_mntonname); 610 } 611 } 612 return (0); 613 } 614 615 /* 616 * Pick up a numeric argument. It must be nonnegative and in the given 617 * range (except that a vmax of 0 means unlimited). 618 */ 619 static long 620 numarg(const char *meaning, long vmin, long vmax) 621 { 622 char *p; 623 long val; 624 625 val = strtol(optarg, &p, 10); 626 if (*p) 627 errx(1, "illegal %s -- %s", meaning, optarg); 628 if (val < vmin || (vmax && val > vmax)) 629 errx(1, "%s must be between %ld and %ld", meaning, vmin, vmax); 630 return (val); 631 } 632 633 void 634 sig(int signo) 635 { 636 switch(signo) { 637 case SIGALRM: 638 case SIGBUS: 639 case SIGFPE: 640 case SIGHUP: 641 case SIGTERM: 642 case SIGTRAP: 643 if (pipeout) 644 quit("Signal on pipe: cannot recover\n"); 645 msg("Rewriting attempted as response to unknown signal.\n"); 646 (void)fflush(stderr); 647 (void)fflush(stdout); 648 close_rewind(); 649 exit(X_REWRITE); 650 /* NOTREACHED */ 651 case SIGSEGV: 652 msg("SIGSEGV: ABORTING!\n"); 653 (void)signal(SIGSEGV, SIG_DFL); 654 (void)kill(0, SIGSEGV); 655 /* NOTREACHED */ 656 } 657 } 658 659 char * 660 rawname(char *cp) 661 { 662 struct stat sb; 663 664 /* 665 * Ensure that the device passed in is a raw device. 666 */ 667 if (stat(cp, &sb) == 0 && (sb.st_mode & S_IFMT) == S_IFCHR) 668 return (cp); 669 670 /* 671 * Since there's only one device type now, we can't construct any 672 * better name, so we have to return NULL. 673 */ 674 return (NULL); 675 } 676 677 /* 678 * obsolete -- 679 * Change set of key letters and ordered arguments into something 680 * getopt(3) will like. 681 */ 682 static void 683 obsolete(int *argcp, char **argvp[]) 684 { 685 int argc, flags; 686 char *ap, **argv, *flagsp, **nargv, *p; 687 688 /* Setup. */ 689 argv = *argvp; 690 argc = *argcp; 691 692 /* Return if no arguments or first argument has leading dash. */ 693 ap = argv[1]; 694 if (argc == 1 || *ap == '-') 695 return; 696 697 /* Allocate space for new arguments. */ 698 if ((*argvp = nargv = malloc((argc + 1) * sizeof(char *))) == NULL || 699 (p = flagsp = malloc(strlen(ap) + 2)) == NULL) 700 err(1, NULL); 701 702 *nargv++ = *argv; 703 argv += 2; 704 705 for (flags = 0; *ap; ++ap) { 706 switch (*ap) { 707 case 'B': 708 case 'b': 709 case 'd': 710 case 'f': 711 case 'D': 712 case 'C': 713 case 'h': 714 case 's': 715 case 'T': 716 if (*argv == NULL) { 717 warnx("option requires an argument -- %c", *ap); 718 usage(); 719 } 720 if ((nargv[0] = malloc(strlen(*argv) + 2 + 1)) == NULL) 721 err(1, NULL); 722 nargv[0][0] = '-'; 723 nargv[0][1] = *ap; 724 (void)strcpy(&nargv[0][2], *argv); 725 ++argv; 726 ++nargv; 727 break; 728 default: 729 if (!flags) { 730 *p++ = '-'; 731 flags = 1; 732 } 733 *p++ = *ap; 734 break; 735 } 736 } 737 738 /* Terminate flags. */ 739 if (flags) { 740 *p = '\0'; 741 *nargv++ = flagsp; 742 } 743 744 /* Copy remaining arguments. */ 745 while ((*nargv++ = *argv++)); 746 747 /* Update argument count. */ 748 *argcp = nargv - *argvp - 1; 749 } 750