]> git.wh0rd.org - dump.git/blob - dump/main.c
Dumping a mountpoint caused the mountpoint to be dumped instead of the mounted disk.
[dump.git] / dump / main.c
1 /*
2 * Ported to Linux's Second Extended File System as part of the
3 * dump and restore backup suit
4 * Remy Card <card@Linux.EU.Org>, 1994-1997
5 * Stelian Pop <pop@cybercable.fr>, 1999-2000
6 */
7
8 /*-
9 * Copyright (c) 1980, 1991, 1993, 1994
10 * The Regents of the University of California. All rights reserved.
11 *
12 * Redistribution and use in source and binary forms, with or without
13 * modification, are permitted provided that the following conditions
14 * are met:
15 * 1. Redistributions of source code must retain the above copyright
16 * notice, this list of conditions and the following disclaimer.
17 * 2. Redistributions in binary form must reproduce the above copyright
18 * notice, this list of conditions and the following disclaimer in the
19 * documentation and/or other materials provided with the distribution.
20 * 3. All advertising materials mentioning features or use of this software
21 * must display the following acknowledgement:
22 * This product includes software developed by the University of
23 * California, Berkeley and its contributors.
24 * 4. Neither the name of the University nor the names of its contributors
25 * may be used to endorse or promote products derived from this software
26 * without specific prior written permission.
27 *
28 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
29 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
30 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
31 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
32 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
33 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
34 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
35 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
36 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
37 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
38 * SUCH DAMAGE.
39 */
40
41 #ifndef lint
42 static const char rcsid[] =
43 "$Id: main.c,v 1.14 2000/01/26 11:38:08 stelian Exp $";
44 #endif /* not lint */
45
46 #include <sys/param.h>
47 #include <sys/time.h>
48 #ifdef __linux__
49 #include <linux/ext2_fs.h>
50 #include <sys/stat.h>
51 #include <bsdcompat.h>
52 #else
53 #ifdef sunos
54 #include <sys/vnode.h>
55
56 #include <ufs/inode.h>
57 #include <ufs/fs.h>
58 #else
59 #include <ufs/ufs/dinode.h>
60 #include <ufs/ffs/fs.h>
61 #endif
62 #endif
63
64 #include <protocols/dumprestore.h>
65
66 #include <ctype.h>
67 #include <compaterr.h>
68 #include <fcntl.h>
69 #include <fstab.h>
70 #include <signal.h>
71 #include <stdio.h>
72 #include <stdlib.h>
73 #include <string.h>
74 #include <unistd.h>
75
76 #ifdef __linux__
77 #include <ext2fs/ext2fs.h>
78 #endif
79
80 #include "dump.h"
81 #include "pathnames.h"
82
83 #ifndef SBOFF
84 #define SBOFF (SBLOCK * DEV_BSIZE)
85 #endif
86
87 int notify = 0; /* notify operator flag */
88 int blockswritten = 0; /* number of blocks written on current tape */
89 int tapeno = 0; /* current tape number */
90 int density = 0; /* density in bytes/0.1" " <- this is for hilit19 */
91 int ntrec = NTREC; /* # tape blocks in each tape record */
92 int cartridge = 0; /* Assume non-cartridge tape */
93 int dokerberos = 0; /* Use Kerberos authentication */
94 long dev_bsize = 1; /* recalculated below */
95 long blocksperfile; /* output blocks per file */
96 char *host = NULL; /* remote host (if any) */
97 int sizest = 0; /* return size estimate only */
98
99 #ifdef __linux__
100 char *__progname;
101 #endif
102
103 int maxbsize = 64*1024; /* XXX MAXBSIZE from sys/param.h */
104 static long numarg __P((const char *, long, long));
105 static void obsolete __P((int *, char **[]));
106 static void usage __P((void));
107
108 int
109 main(int argc, char *argv[])
110 {
111 register ino_t ino;
112 register int dirty;
113 register struct dinode *dp;
114 register struct fstab *dt;
115 register char *map;
116 register int ch;
117 int i, anydirskipped, bflag = 0, Tflag = 0, honorlevel = 1;
118 ino_t maxino;
119 #ifdef __linux__
120 errcode_t retval;
121 char directory[NAME_MAX];
122 char pathname[NAME_MAX];
123 #endif
124 time_t tnow;
125 char labelstr[LBLSIZE];
126
127 spcl.c_date = 0;
128 #ifdef __linux__
129 (void)time4(&spcl.c_date);
130 #else
131 (void)time((time_t *)&spcl.c_date);
132 #endif
133
134 #ifdef __linux__
135 __progname = argv[0];
136 directory[0] = 0;
137 initialize_ext2_error_table();
138 #endif
139
140 tsize = 0; /* Default later, based on 'c' option for cart tapes */
141 if ((tapeprefix = getenv("TAPE")) == NULL)
142 tapeprefix = _PATH_DEFTAPE;
143 dumpdates = _PATH_DUMPDATES;
144 temp = _PATH_DTMP;
145 strcpy(labelstr, "none"); /* XXX safe strcpy. */
146 if (TP_BSIZE / DEV_BSIZE == 0 || TP_BSIZE % DEV_BSIZE != 0)
147 quit("TP_BSIZE must be a multiple of DEV_BSIZE\n");
148 level = '0';
149
150 if (argc < 2)
151 usage();
152
153 obsolete(&argc, &argv);
154 #ifdef KERBEROS
155 #define optstring "0123456789aB:b:cd:f:h:kL:Mns:ST:uWw"
156 #else
157 #define optstring "0123456789aB:b:cd:f:h:L:Mns:ST:uWw"
158 #endif
159 while ((ch = getopt(argc, argv, optstring)) != -1)
160 #undef optstring
161 switch (ch) {
162 /* dump level */
163 case '0': case '1': case '2': case '3': case '4':
164 case '5': case '6': case '7': case '8': case '9':
165 level = ch;
166 break;
167
168 case 'a': /* `auto-size', Write to EOM. */
169 unlimited = 1;
170 break;
171
172 case 'B': /* blocks per output file */
173 blocksperfile = numarg("number of blocks per file",
174 1L, 0L);
175 break;
176
177 case 'b': /* blocks per tape write */
178 ntrec = numarg("number of blocks per write",
179 1L, 1000L);
180 if (ntrec > maxbsize/1024) {
181 msg("Please choose a blocksize <= %dKB\n",
182 maxbsize/1024);
183 exit(X_STARTUP);
184 }
185 bflag = 1;
186 break;
187
188 case 'c': /* Tape is cart. not 9-track */
189 cartridge = 1;
190 break;
191
192 case 'd': /* density, in bits per inch */
193 density = numarg("density", 10L, 327670L) / 10;
194 if (density >= 625 && !bflag)
195 ntrec = HIGHDENSITYTREC;
196 break;
197
198 case 'f': /* output file */
199 tapeprefix = optarg;
200 break;
201
202 case 'h':
203 honorlevel = numarg("honor level", 0L, 10L);
204 break;
205
206 #ifdef KERBEROS
207 case 'k':
208 dokerberos = 1;
209 break;
210 #endif
211
212 case 'L':
213 /*
214 * Note that although there are LBLSIZE characters,
215 * the last must be '\0', so the limit on strlen()
216 * is really LBLSIZE-1.
217 */
218 strncpy(labelstr, optarg, LBLSIZE);
219 labelstr[LBLSIZE-1] = '\0';
220 if (strlen(optarg) > LBLSIZE-1) {
221 msg(
222 "WARNING Label `%s' is larger than limit of %d characters.\n",
223 optarg, LBLSIZE-1);
224 msg("WARNING: Using truncated label `%s'.\n",
225 labelstr);
226 }
227 break;
228
229 case 'M': /* multi-volume flag */
230 Mflag = 1;
231 break;
232
233 case 'n': /* notify operators */
234 notify = 1;
235 break;
236
237 case 's': /* tape size, feet */
238 tsize = numarg("tape size", 1L, 0L) * 12 * 10;
239 break;
240
241 case 'S':
242 sizest = 1; /* return size estimate only */
243 break;
244
245 case 'T': /* time of last dump */
246 spcl.c_ddate = unctime(optarg);
247 if (spcl.c_ddate < 0) {
248 (void)fprintf(stderr, "bad time \"%s\"\n",
249 optarg);
250 exit(X_STARTUP);
251 }
252 Tflag = 1;
253 lastlevel = '?';
254 break;
255
256 case 'u': /* update dumpdates */
257 uflag = 1;
258 break;
259
260 case 'W': /* what to do */
261 case 'w':
262 lastdump(ch);
263 exit(X_FINOK); /* do nothing else */
264
265 default:
266 usage();
267 }
268 argc -= optind;
269 argv += optind;
270
271 if (argc < 1) {
272 (void)fprintf(stderr, "Must specify disk or filesystem\n");
273 exit(X_STARTUP);
274 }
275 disk = *argv++;
276 argc--;
277 if (argc >= 1) {
278 (void)fprintf(stderr, "Unknown arguments to dump:");
279 while (argc--)
280 (void)fprintf(stderr, " %s", *argv++);
281 (void)fprintf(stderr, "\n");
282 exit(X_STARTUP);
283 }
284 if (Tflag && uflag) {
285 (void)fprintf(stderr,
286 "You cannot use the T and u flags together.\n");
287 exit(X_STARTUP);
288 }
289 if (strcmp(tapeprefix, "-") == 0) {
290 pipeout++;
291 tapeprefix = "standard output";
292 }
293
294 if (blocksperfile)
295 blocksperfile = blocksperfile / ntrec * ntrec; /* round down */
296 else if (!unlimited) {
297 /*
298 * Determine how to default tape size and density
299 *
300 * density tape size
301 * 9-track 1600 bpi (160 bytes/.1") 2300 ft.
302 * 9-track 6250 bpi (625 bytes/.1") 2300 ft.
303 * cartridge 8000 bpi (100 bytes/.1") 1700 ft.
304 * (450*4 - slop)
305 * hilit19 hits again: "
306 */
307 if (density == 0)
308 density = cartridge ? 100 : 160;
309 if (tsize == 0)
310 tsize = cartridge ? 1700L*120L : 2300L*120L;
311 }
312
313 if (strchr(tapeprefix, ':')) {
314 host = tapeprefix;
315 tapeprefix = strchr(host, ':');
316 *tapeprefix++ = '\0';
317 #ifdef RDUMP
318 if (index(tapeprefix, '\n')) {
319 (void)fprintf(stderr, "invalid characters in tape\n");
320 exit(X_STARTUP);
321 }
322 if (rmthost(host) == 0)
323 exit(X_STARTUP);
324 #else
325 (void)fprintf(stderr, "remote dump not enabled\n");
326 exit(X_STARTUP);
327 #endif
328 }
329 (void)setuid(getuid()); /* rmthost() is the only reason to be setuid */
330
331 if (signal(SIGHUP, SIG_IGN) != SIG_IGN)
332 signal(SIGHUP, sig);
333 if (signal(SIGTRAP, SIG_IGN) != SIG_IGN)
334 signal(SIGTRAP, sig);
335 if (signal(SIGFPE, SIG_IGN) != SIG_IGN)
336 signal(SIGFPE, sig);
337 if (signal(SIGBUS, SIG_IGN) != SIG_IGN)
338 signal(SIGBUS, sig);
339 if (signal(SIGSEGV, SIG_IGN) != SIG_IGN)
340 signal(SIGSEGV, sig);
341 if (signal(SIGTERM, SIG_IGN) != SIG_IGN)
342 signal(SIGTERM, sig);
343 if (signal(SIGINT, interrupt) == SIG_IGN)
344 signal(SIGINT, SIG_IGN);
345 set_operators(); /* /etc/group snarfed */
346 getfstab(); /* /etc/fstab snarfed */
347 /*
348 * disk may end in / and this can confuse
349 * fstabsearch.
350 */
351 if (strlen(disk) > 1 && disk[strlen(disk) - 1] == '/')
352 disk[strlen(disk) - 1] = '\0';
353 /*
354 * disk can be either the full special file name,
355 * the suffix of the special file name,
356 * the special name missing the leading '/',
357 * the file system name with or without the leading '/'.
358 */
359 if ((dt = fstabsearch(disk)) != NULL) {
360 disk = rawname(dt->fs_spec);
361 (void)strncpy(spcl.c_dev, dt->fs_spec, NAMELEN);
362 (void)strncpy(spcl.c_filesys, dt->fs_file, NAMELEN);
363 #ifdef __linux__
364 } else {
365 /*
366 * The argument was not found in the fstab
367 * assume that this is a subtree and search for it
368 */
369 #ifdef HAVE_REALPATH
370 if (realpath(disk, pathname) == NULL)
371 #endif
372 strcpy(pathname, disk);
373 dt = fstabsearchdir(pathname, directory);
374 if (dt != NULL) {
375 char name[MAXPATHLEN];
376 (void)strncpy(spcl.c_dev, dt->fs_spec, NAMELEN);
377 (void)sprintf(name, "%s (dir %s)",
378 dt->fs_file, directory);
379 (void)strncpy(spcl.c_filesys, name, NAMELEN);
380 disk = rawname(dt->fs_spec);
381 } else {
382 (void)strncpy(spcl.c_dev, disk, NAMELEN);
383 (void)strncpy(spcl.c_filesys, "an unlisted file system",
384 NAMELEN);
385 }
386 }
387 #else
388 } else {
389 (void)strncpy(spcl.c_dev, disk, NAMELEN);
390 (void)strncpy(spcl.c_filesys, "an unlisted file system",
391 NAMELEN);
392 }
393 #endif
394 spcl.c_dev[NAMELEN-1]='\0';
395 spcl.c_filesys[NAMELEN-1]='\0';
396 (void)strncpy(spcl.c_label, labelstr, sizeof(spcl.c_label) - 1);
397 (void)gethostname(spcl.c_host, NAMELEN);
398 spcl.c_level = level - '0';
399 spcl.c_type = TS_TAPE;
400 if (!Tflag)
401 getdumptime(uflag); /* dumpdates snarfed */
402
403 if (spcl.c_ddate == 0 && spcl.c_level) {
404 msg("WARNING: There is no inferior level dump on this filesystem\n");
405 msg("WARNING: Assuming a level 0 dump by default\n");
406 level = '0';
407 spcl.c_level = 0;
408 }
409
410 if (Mflag)
411 snprintf(tape, NAME_MAX, "%s%03d", tapeprefix, tapeno + 1);
412 else
413 strncpy(tape, tapeprefix, NAME_MAX);
414 tape[NAME_MAX - 1] = '\0';
415
416 if (!sizest) {
417
418 msg("Date of this level %c dump: %s", level,
419 #ifdef __linux__
420 spcl.c_date == 0 ? "the epoch\n" : ctime4(&spcl.c_date));
421 #else
422 spcl.c_date == 0 ? "the epoch\n" : ctime(&spcl.c_date));
423 #endif
424 msg("Date of last level %c dump: %s", lastlevel,
425 #ifdef __linux__
426 spcl.c_ddate == 0 ? "the epoch\n" : ctime4(&spcl.c_ddate));
427 #else
428 spcl.c_ddate == 0 ? "the epoch\n" : ctime(&spcl.c_ddate));
429 #endif
430 msg("Dumping %s (%s) ", disk, spcl.c_filesys);
431 if (host)
432 msgtail("to %s on host %s\n", tape, host);
433 else
434 msgtail("to %s\n", tape);
435 msg("Label: %s\n", labelstr);
436
437 } /* end of size estimate */
438
439 #ifdef __linux__
440 retval = dump_fs_open(disk, &fs);
441 if (retval) {
442 com_err(disk, retval, "while opening filesystem");
443 if (retval == EXT2_ET_REV_TOO_HIGH)
444 printf ("Get a newer version of dump!\n");
445 exit(X_STARTUP);
446 }
447 if (fs->super->s_rev_level > DUMP_CURRENT_REV) {
448 com_err(disk, retval, "while opening filesystem");
449 printf ("Get a newer version of dump!\n");
450 exit(X_STARTUP);
451 }
452 if ((diskfd = open(disk, O_RDONLY)) < 0) {
453 msg("Cannot open %s\n", disk);
454 exit(X_STARTUP);
455 }
456 sync();
457 dev_bsize = DEV_BSIZE;
458 dev_bshift = ffs(dev_bsize) - 1;
459 if (dev_bsize != (1 << dev_bshift))
460 quit("dev_bsize (%d) is not a power of 2", dev_bsize);
461 tp_bshift = ffs(TP_BSIZE) - 1;
462 if (TP_BSIZE != (1 << tp_bshift))
463 quit("TP_BSIZE (%d) is not a power of 2", TP_BSIZE);
464 maxino = fs->super->s_inodes_count;
465 #if 0
466 spcl.c_flags |= DR_NEWINODEFMT;
467 #endif
468 #else /* __linux __*/
469 if ((diskfd = open(disk, O_RDONLY)) < 0) {
470 msg("Cannot open %s\n", disk);
471 exit(X_STARTUP);
472 }
473 sync();
474 sblock = (struct fs *)sblock_buf;
475 bread(SBOFF, (char *) sblock, SBSIZE);
476 if (sblock->fs_magic != FS_MAGIC)
477 quit("bad sblock magic number\n");
478 dev_bsize = sblock->fs_fsize / fsbtodb(sblock, 1);
479 dev_bshift = ffs(dev_bsize) - 1;
480 if (dev_bsize != (1 << dev_bshift))
481 quit("dev_bsize (%d) is not a power of 2", dev_bsize);
482 tp_bshift = ffs(TP_BSIZE) - 1;
483 if (TP_BSIZE != (1 << tp_bshift))
484 quit("TP_BSIZE (%d) is not a power of 2", TP_BSIZE);
485 #ifdef FS_44INODEFMT
486 if (sblock->fs_inodefmt >= FS_44INODEFMT)
487 spcl.c_flags |= DR_NEWINODEFMT;
488 #endif
489 maxino = sblock->fs_ipg * sblock->fs_ncg;
490 #endif /* __linux__ */
491 mapsize = roundup(howmany(maxino, NBBY), TP_BSIZE);
492 usedinomap = (char *)calloc((unsigned) mapsize, sizeof(char));
493 dumpdirmap = (char *)calloc((unsigned) mapsize, sizeof(char));
494 dumpinomap = (char *)calloc((unsigned) mapsize, sizeof(char));
495 tapesize = 3 * (howmany(mapsize * sizeof(char), TP_BSIZE) + 1);
496
497 nonodump = spcl.c_level < honorlevel;
498
499 #if defined(SIGINFO)
500 (void)signal(SIGINFO, statussig);
501 #endif
502
503 if (!sizest)
504 msg("mapping (Pass I) [regular files]\n");
505 #ifdef __linux__
506 if (directory[0] == 0)
507 anydirskipped = mapfiles(maxino, &tapesize);
508 else
509 anydirskipped = mapfilesfromdir(maxino, &tapesize, directory);
510 #else
511 anydirskipped = mapfiles(maxino, &tapesize);
512 #endif
513
514 if (!sizest)
515 msg("mapping (Pass II) [directories]\n");
516 while (anydirskipped) {
517 anydirskipped = mapdirs(maxino, &tapesize);
518 }
519
520 if (sizest) {
521 printf("%.0f\n", ((double)tapesize + 10) * TP_BSIZE);
522 exit(X_FINOK);
523 } /* stop here for size estimate */
524
525 if (pipeout || unlimited) {
526 tapesize += 10; /* 10 trailer blocks */
527 msg("estimated %ld tape blocks.\n", tapesize);
528 } else {
529 double fetapes;
530
531 if (blocksperfile)
532 fetapes = (double) tapesize / blocksperfile;
533 else if (cartridge) {
534 /* Estimate number of tapes, assuming streaming stops at
535 the end of each block written, and not in mid-block.
536 Assume no erroneous blocks; this can be compensated
537 for with an artificially low tape size. */
538 fetapes =
539 ( (double) tapesize /* blocks */
540 * TP_BSIZE /* bytes/block */
541 * (1.0/density) /* 0.1" / byte " */
542 +
543 (double) tapesize /* blocks */
544 * (1.0/ntrec) /* streaming-stops per block */
545 * 15.48 /* 0.1" / streaming-stop " */
546 ) * (1.0 / tsize ); /* tape / 0.1" " */
547 } else {
548 /* Estimate number of tapes, for old fashioned 9-track
549 tape */
550 int tenthsperirg = (density == 625) ? 3 : 7;
551 fetapes =
552 ( (double) tapesize /* blocks */
553 * TP_BSIZE /* bytes / block */
554 * (1.0/density) /* 0.1" / byte " */
555 +
556 (double) tapesize /* blocks */
557 * (1.0/ntrec) /* IRG's / block */
558 * tenthsperirg /* 0.1" / IRG " */
559 ) * (1.0 / tsize ); /* tape / 0.1" " */
560 }
561 etapes = fetapes; /* truncating assignment */
562 etapes++;
563 /* count the dumped inodes map on each additional tape */
564 tapesize += (etapes - 1) *
565 (howmany(mapsize * sizeof(char), TP_BSIZE) + 1);
566 tapesize += etapes + 10; /* headers + 10 trailer blks */
567 msg("estimated %ld tape blocks on %3.2f tape(s).\n",
568 tapesize, fetapes);
569 }
570
571 /*
572 * Allocate tape buffer.
573 */
574 if (!alloctape())
575 quit(
576 "can't allocate tape buffers - try a smaller blocking factor.\n");
577
578 startnewtape(1);
579 #ifdef __linux__
580 (void)time4(&(tstart_writing));
581 #else
582 (void)time((time_t *)&(tstart_writing));
583 #endif
584 dumpmap(usedinomap, TS_CLRI, maxino - 1);
585
586 msg("dumping (Pass III) [directories]\n");
587 dirty = 0; /* XXX just to get gcc to shut up */
588 for (map = dumpdirmap, ino = 1; ino < maxino; ino++) {
589 if (((ino - 1) % NBBY) == 0) /* map is offset by 1 */
590 dirty = *map++;
591 else
592 dirty >>= 1;
593 if ((dirty & 1) == 0)
594 continue;
595 /*
596 * Skip directory inodes deleted and maybe reallocated
597 */
598 dp = getino(ino);
599 if ((dp->di_mode & IFMT) != IFDIR)
600 continue;
601 #ifdef __linux__
602 /*
603 * Skip directory inodes deleted and not yes reallocated...
604 */
605 if (dp->di_nlink == 0 || dp->di_dtime != 0)
606 continue;
607 (void)dumpdirino(dp, ino);
608 #else
609 (void)dumpino(dp, ino);
610 #endif
611 }
612
613 msg("dumping (Pass IV) [regular files]\n");
614 for (map = dumpinomap, ino = 1; ino < maxino; ino++) {
615 if (((ino - 1) % NBBY) == 0) /* map is offset by 1 */
616 dirty = *map++;
617 else
618 dirty >>= 1;
619 if ((dirty & 1) == 0)
620 continue;
621 /*
622 * Skip inodes deleted and reallocated as directories.
623 */
624 dp = getino(ino);
625 if ((dp->di_mode & IFMT) == IFDIR)
626 continue;
627 #ifdef __linux__
628 /*
629 * No need to check here for deleted and not yes reallocated inodes
630 * since this is done in dumpino().
631 */
632 #endif
633 (void)dumpino(dp, ino);
634 }
635
636 #ifdef __linux__
637 (void)time4(&(tend_writing));
638 #else
639 (void)time((time_t *)&(tend_writing));
640 #endif
641 spcl.c_type = TS_END;
642 for (i = 0; i < ntrec; i++)
643 writeheader(maxino - 1);
644 if (pipeout)
645 msg("DUMP: %ld tape blocks\n", spcl.c_tapea);
646 else
647 msg("DUMP: %ld tape blocks on %d volumes(s)\n",
648 spcl.c_tapea, spcl.c_volume);
649
650 /* report dump performance, avoid division through zero */
651 if (tend_writing - tstart_writing == 0)
652 msg("finished in less than a second\n");
653 else
654 msg("finished in %d seconds, throughput %d KBytes/sec\n",
655 tend_writing - tstart_writing,
656 spcl.c_tapea / (tend_writing - tstart_writing));
657
658 tnow = do_stats();
659 putdumptime();
660 #ifdef __linux__
661 msg("DUMP: Date of this level %c dump: %s", level,
662 spcl.c_date == 0 ? "the epoch\n" : ctime4(&spcl.c_date));
663 #else
664 msg("DUMP: Date of this level %c dump: %s", level,
665 spcl.c_date == 0 ? "the epoch\n" : ctime(&spcl.c_date));
666 #endif
667 msg("DUMP: Date this dump completed: %s", ctime(&tnow));
668
669 msg("DUMP: Average transfer rate: %ld KB/s\n", xferrate / tapeno);
670
671 trewind();
672 broadcast("DUMP IS DONE!\7\7\n");
673 msg("DUMP IS DONE\n");
674 Exit(X_FINOK);
675 /* NOTREACHED */
676 return 0; /* gcc - shut up */
677 }
678
679 static void
680 usage(void)
681 {
682 char white[MAXPATHLEN];
683 int i;
684
685 strncpy(white, __progname, MAXPATHLEN-1);
686 white[MAXPATHLEN-1] = '\0';
687 for (i=0; i<MAXPATHLEN; ++i)
688 if (white[i] != '\0') white[i] = ' ';
689
690 fprintf(stderr,
691 "%s %s\n", __progname, _DUMP_VERSION);
692 fprintf(stderr,
693 "usage:\t%s [-0123456789ac"
694 #ifdef KERBEROS
695 "k"
696 #endif
697 "MnSu] [-B records] [-b blocksize] [-d density]\n"
698 "\t%s [-f file] [-h level] [-s feet] [-T date] filesystem\n"
699 "\t%s [-W | -w]\n", __progname, white, __progname);
700 exit(X_STARTUP);
701 }
702
703 /*
704 * Pick up a numeric argument. It must be nonnegative and in the given
705 * range (except that a vmax of 0 means unlimited).
706 */
707 static long
708 numarg(const char *meaning, long vmin, long vmax)
709 {
710 char *p;
711 long val;
712
713 val = strtol(optarg, &p, 10);
714 if (*p)
715 errx(X_STARTUP, "illegal %s -- %s", meaning, optarg);
716 if (val < vmin || (vmax && val > vmax))
717 errx(X_STARTUP, "%s must be between %ld and %ld", meaning, vmin, vmax);
718 return (val);
719 }
720
721 void
722 sig(int signo)
723 {
724 switch(signo) {
725 case SIGALRM:
726 case SIGBUS:
727 case SIGFPE:
728 case SIGHUP:
729 case SIGTERM:
730 case SIGTRAP:
731 if (pipeout)
732 quit("Signal on pipe: cannot recover\n");
733 msg("Rewriting attempted as response to unknown signal.\n");
734 (void)fflush(stderr);
735 (void)fflush(stdout);
736 close_rewind();
737 exit(X_REWRITE);
738 /* NOTREACHED */
739 case SIGSEGV:
740 msg("SIGSEGV: ABORTING!\n");
741 (void)signal(SIGSEGV, SIG_DFL);
742 (void)kill(0, SIGSEGV);
743 /* NOTREACHED */
744 }
745 }
746
747 char *
748 rawname(char *cp)
749 {
750 #ifdef __linux__
751 return cp;
752 #else /* __linux__ */
753 static char rawbuf[MAXPATHLEN];
754 char *dp = strrchr(cp, '/');
755
756 if (dp == NULL)
757 return (NULL);
758 *dp = '\0';
759 (void)strncpy(rawbuf, cp, MAXPATHLEN - 1);
760 rawbuf[MAXPATHLEN-1] = '\0';
761 *dp = '/';
762 (void)strncat(rawbuf, "/r", MAXPATHLEN - 1 - strlen(rawbuf));
763 (void)strncat(rawbuf, dp + 1, MAXPATHLEN - 1 - strlen(rawbuf));
764 return (rawbuf);
765 #endif /* __linux__ */
766 }
767
768 /*
769 * obsolete --
770 * Change set of key letters and ordered arguments into something
771 * getopt(3) will like.
772 */
773 static void
774 obsolete(int *argcp, char **argvp[])
775 {
776 int argc, flags;
777 char *ap, **argv, *flagsp=NULL, **nargv, *p=NULL;
778
779 /* Setup. */
780 argv = *argvp;
781 argc = *argcp;
782
783 /* Return if no arguments or first argument has leading dash. */
784 ap = argv[1];
785 if (argc == 1 || *ap == '-')
786 return;
787
788 /* Allocate space for new arguments. */
789 if ((*argvp = nargv = malloc((argc + 1) * sizeof(char *))) == NULL ||
790 (p = flagsp = malloc(strlen(ap) + 2)) == NULL)
791 err(X_STARTUP, "malloc new args");
792
793 *nargv++ = *argv;
794 argv += 2;
795
796 for (flags = 0; *ap; ++ap) {
797 switch (*ap) {
798 case 'B':
799 case 'b':
800 case 'd':
801 case 'f':
802 case 'h':
803 case 's':
804 case 'T':
805 if (*argv == NULL) {
806 warnx("option requires an argument -- %c", *ap);
807 usage();
808 }
809 if ((nargv[0] = malloc(strlen(*argv) + 2 + 1)) == NULL)
810 err(X_STARTUP, "malloc arg");
811 nargv[0][0] = '-';
812 nargv[0][1] = *ap;
813 (void)strcpy(&nargv[0][2], *argv);
814 ++argv;
815 ++nargv;
816 break;
817 default:
818 if (!flags) {
819 *p++ = '-';
820 flags = 1;
821 }
822 *p++ = *ap;
823 break;
824 }
825 }
826
827 /* Terminate flags. */
828 if (flags) {
829 *p = '\0';
830 *nargv++ = flagsp;
831 }
832
833 /* Copy remaining arguments. */
834 while ((*nargv++ = *argv++));
835
836 /* Update argument count. */
837 *argcp = nargv - *argvp - 1;
838 }