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
10 * Copyright (c) 1980, 1991, 1993, 1994
11 * The Regents of the University of California. All rights reserved.
13 * Redistribution and use in source and binary forms, with or without
14 * modification, are permitted provided that the following conditions
16 * 1. Redistributions of source code must retain the above copyright
17 * notice, this list of conditions and the following disclaimer.
18 * 2. Redistributions in binary form must reproduce the above copyright
19 * notice, this list of conditions and the following disclaimer in the
20 * documentation and/or other materials provided with the distribution.
21 * 3. All advertising materials mentioning features or use of this software
22 * must display the following acknowledgement:
23 * This product includes software developed by the University of
24 * California, Berkeley and its contributors.
25 * 4. Neither the name of the University nor the names of its contributors
26 * may be used to endorse or promote products derived from this software
27 * without specific prior written permission.
29 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
30 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
31 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
32 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
33 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
34 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
35 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
36 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
37 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
38 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
43 static const char copyright[] =
44 "@(#) Copyright (c) 1980, 1991, 1993, 1994\n\
45 The Regents of the University of California. All rights reserved.\n";
50 static char sccsid[] = "@(#)main.c 8.6 (Berkeley) 5/1/95";
52 static const char rcsid[] =
53 "$Id: main.c,v 1.3 1999/10/11 12:59:18 stelian Exp $";
56 #include <sys/param.h>
59 #include <linux/ext2_fs.h>
61 #include <bsdcompat.h>
64 #include <sys/vnode.h>
66 #include <ufs/inode.h>
69 #include <ufs/ufs/dinode.h>
70 #include <ufs/ffs/fs.h>
74 #include <protocols/dumprestore.h>
77 #include <compaterr.h>
87 #include <ext2fs/ext2fs.h>
91 #include "pathnames.h"
94 #define SBOFF (SBLOCK * DEV_BSIZE)
97 int notify = 0; /* notify operator flag */
98 int blockswritten = 0; /* number of blocks written on current tape */
99 int tapeno = 0; /* current tape number */
100 int density = 0; /* density in bytes/0.1" " <- this is for hilit19 */
101 int ntrec = NTREC; /* # tape blocks in each tape record */
102 int cartridge = 0; /* Assume non-cartridge tape */
103 int dokerberos = 0; /* Use Kerberos authentication */
104 long dev_bsize = 1; /* recalculated below */
105 long blocksperfile; /* output blocks per file */
106 char *host = NULL; /* remote host (if any) */
112 int maxbsize = 64*1024; /* XXX MAXBSIZE from sys/param.h */
113 static long numarg __P((const char *, long, long));
114 static void obsolete __P((int *, char **[]));
115 static void usage __P((void));
118 main(int argc, char *argv[])
122 register struct dinode *dp;
123 register struct fstab *dt;
126 int i, anydirskipped, bflag = 0, Tflag = 0, honorlevel = 1;
130 char directory[NAME_MAX];
131 char pathname[NAME_MAX];
134 char labelstr[LBLSIZE];
138 (void)time4(&spcl.c_date);
140 (void)time((time_t *)&spcl.c_date);
144 __progname = argv[0];
146 initialize_ext2_error_table();
149 tsize = 0; /* Default later, based on 'c' option for cart tapes */
150 if ((tape = getenv("TAPE")) == NULL)
151 tape = _PATH_DEFTAPE;
152 dumpdates = _PATH_DUMPDATES;
154 strcpy(labelstr, "none"); /* XXX safe strcpy. */
155 if (TP_BSIZE / DEV_BSIZE == 0 || TP_BSIZE % DEV_BSIZE != 0)
156 quit("TP_BSIZE must be a multiple of DEV_BSIZE\n");
162 obsolete(&argc, &argv);
164 #define optstring "0123456789aB:b:cd:f:h:kL:ns:T:uWw"
166 #define optstring "0123456789aB:b:cd:f:h:L:ns:T:uWw"
168 while ((ch = getopt(argc, argv, optstring)) != -1)
172 case '0': case '1': case '2': case '3': case '4':
173 case '5': case '6': case '7': case '8': case '9':
177 case 'a': /* `auto-size', Write to EOM. */
181 case 'B': /* blocks per output file */
182 blocksperfile = numarg("number of blocks per file",
186 case 'b': /* blocks per tape write */
187 ntrec = numarg("number of blocks per write",
189 if (ntrec > maxbsize/1024) {
190 msg("Please choose a blocksize <= %dKB\n",
197 case 'c': /* Tape is cart. not 9-track */
201 case 'd': /* density, in bits per inch */
202 density = numarg("density", 10L, 327670L) / 10;
203 if (density >= 625 && !bflag)
204 ntrec = HIGHDENSITYTREC;
207 case 'f': /* output file */
212 honorlevel = numarg("honor level", 0L, 10L);
223 * Note that although there are LBLSIZE characters,
224 * the last must be '\0', so the limit on strlen()
225 * is really LBLSIZE-1.
227 strncpy(labelstr, optarg, LBLSIZE);
228 labelstr[LBLSIZE-1] = '\0';
229 if (strlen(optarg) > LBLSIZE-1) {
231 "WARNING Label `%s' is larger than limit of %d characters.\n",
233 msg("WARNING: Using truncated label `%s'.\n",
238 case 'n': /* notify operators */
242 case 's': /* tape size, feet */
243 tsize = numarg("tape size", 1L, 0L) * 12 * 10;
246 case 'T': /* time of last dump */
247 spcl.c_ddate = unctime(optarg);
248 if (spcl.c_ddate < 0) {
249 (void)fprintf(stderr, "bad time \"%s\"\n",
257 case 'u': /* update dumpdates */
261 case 'W': /* what to do */
264 exit(X_FINOK); /* do nothing else */
273 (void)fprintf(stderr, "Must specify disk or filesystem\n");
279 (void)fprintf(stderr, "Unknown arguments to dump:");
281 (void)fprintf(stderr, " %s", *argv++);
282 (void)fprintf(stderr, "\n");
285 if (Tflag && uflag) {
286 (void)fprintf(stderr,
287 "You cannot use the T and u flags together.\n");
290 if (strcmp(tape, "-") == 0) {
292 tape = "standard output";
296 blocksperfile = blocksperfile / ntrec * ntrec; /* round down */
297 else if (!unlimited) {
299 * Determine how to default tape size and density
302 * 9-track 1600 bpi (160 bytes/.1") 2300 ft.
303 * 9-track 6250 bpi (625 bytes/.1") 2300 ft.
304 * cartridge 8000 bpi (100 bytes/.1") 1700 ft.
306 * hilit19 hits again: "
309 density = cartridge ? 100 : 160;
311 tsize = cartridge ? 1700L*120L : 2300L*120L;
314 if (strchr(tape, ':')) {
316 tape = strchr(host, ':');
319 if (index(tape, '\n')) {
320 (void)fprintf(stderr, "invalid characters in tape\n");
323 if (rmthost(host) == 0)
326 (void)fprintf(stderr, "remote dump not enabled\n");
330 (void)setuid(getuid()); /* rmthost() is the only reason to be setuid */
332 if (signal(SIGHUP, SIG_IGN) != SIG_IGN)
334 if (signal(SIGTRAP, SIG_IGN) != SIG_IGN)
335 signal(SIGTRAP, sig);
336 if (signal(SIGFPE, SIG_IGN) != SIG_IGN)
338 if (signal(SIGBUS, SIG_IGN) != SIG_IGN)
340 if (signal(SIGSEGV, SIG_IGN) != SIG_IGN)
341 signal(SIGSEGV, sig);
342 if (signal(SIGTERM, SIG_IGN) != SIG_IGN)
343 signal(SIGTERM, sig);
344 if (signal(SIGINT, interrupt) == SIG_IGN)
345 signal(SIGINT, SIG_IGN);
347 set_operators(); /* /etc/group snarfed */
348 getfstab(); /* /etc/fstab snarfed */
350 * disk can be either the full special file name,
351 * the suffix of the special file name,
352 * the special name missing the leading '/',
353 * the file system name with or without the leading '/'.
355 if ((dt = fstabsearch(disk)) != NULL) {
356 disk = rawname(dt->fs_spec);
357 (void)strncpy(spcl.c_dev, dt->fs_spec, NAMELEN);
358 (void)strncpy(spcl.c_filesys, dt->fs_file, NAMELEN);
362 * The argument was not found in the fstab
363 * assume that this is a subtree and search for it
366 if (realpath(disk, pathname) == NULL)
368 strcpy(pathname, disk);
369 dt = fstabsearchdir(pathname, directory);
371 char name[MAXPATHLEN];
372 (void)sprintf(name, "%s (dir %s)",
373 dt->fs_spec, directory);
374 (void)strncpy(spcl.c_dev, name, NAMELEN);
375 (void)strncpy(spcl.c_filesys, dt->fs_file, NAMELEN);
376 disk = rawname(dt->fs_spec);
378 (void)strncpy(spcl.c_dev, disk, NAMELEN);
379 (void)strncpy(spcl.c_filesys, "an unlisted file system",
385 (void)strncpy(spcl.c_dev, disk, NAMELEN);
386 (void)strncpy(spcl.c_filesys, "an unlisted file system",
390 spcl.c_dev[NAMELEN-1]='\0';
391 spcl.c_filesys[NAMELEN-1]='\0';
392 (void)strncpy(spcl.c_label, labelstr, sizeof(spcl.c_label) - 1);
393 (void)gethostname(spcl.c_host, NAMELEN);
394 spcl.c_level = level - '0';
395 spcl.c_type = TS_TAPE;
397 getdumptime(); /* dumpdates snarfed */
399 msg("Date of this level %c dump: %s", level,
401 spcl.c_date == 0 ? "the epoch\n" : ctime4(&spcl.c_date));
403 spcl.c_date == 0 ? "the epoch\n" : ctime(&spcl.c_date));
405 msg("Date of last level %c dump: %s", lastlevel,
407 spcl.c_ddate == 0 ? "the epoch\n" : ctime4(&spcl.c_ddate));
409 spcl.c_ddate == 0 ? "the epoch\n" : ctime(&spcl.c_ddate));
411 msg("Dumping %s ", disk);
413 msgtail("(%s) ", dt->fs_file);
415 msgtail("to %s on host %s\n", tape, host);
417 msgtail("to %s\n", tape);
418 msg("Label: %s\n", labelstr);
421 retval = ext2fs_open(disk, 0, 0, 0, unix_io_manager, &fs);
423 com_err(disk, retval, "while opening filesystem");
424 if (retval == EXT2_ET_REV_TOO_HIGH)
425 printf ("Get a newer version of dump!\n");
428 if (fs->super->s_rev_level > DUMP_CURRENT_REV) {
429 com_err(disk, retval, "while opening filesystem");
430 printf ("Get a newer version of dump!\n");
433 if ((diskfd = open(disk, O_RDONLY)) < 0) {
434 msg("Cannot open %s\n", disk);
438 dev_bsize = DEV_BSIZE;
439 dev_bshift = ffs(dev_bsize) - 1;
440 if (dev_bsize != (1 << dev_bshift))
441 quit("dev_bsize (%d) is not a power of 2", dev_bsize);
442 tp_bshift = ffs(TP_BSIZE) - 1;
443 if (TP_BSIZE != (1 << tp_bshift))
444 quit("TP_BSIZE (%d) is not a power of 2", TP_BSIZE);
445 maxino = fs->super->s_inodes_count;
447 spcl.c_flags |= DR_NEWINODEFMT;
449 #else /* __linux __*/
450 if ((diskfd = open(disk, O_RDONLY)) < 0) {
451 msg("Cannot open %s\n", disk);
455 sblock = (struct fs *)sblock_buf;
456 bread(SBOFF, (char *) sblock, SBSIZE);
457 if (sblock->fs_magic != FS_MAGIC)
458 quit("bad sblock magic number\n");
459 dev_bsize = sblock->fs_fsize / fsbtodb(sblock, 1);
460 dev_bshift = ffs(dev_bsize) - 1;
461 if (dev_bsize != (1 << dev_bshift))
462 quit("dev_bsize (%d) is not a power of 2", dev_bsize);
463 tp_bshift = ffs(TP_BSIZE) - 1;
464 if (TP_BSIZE != (1 << tp_bshift))
465 quit("TP_BSIZE (%d) is not a power of 2", TP_BSIZE);
467 if (sblock->fs_inodefmt >= FS_44INODEFMT)
468 spcl.c_flags |= DR_NEWINODEFMT;
470 maxino = sblock->fs_ipg * sblock->fs_ncg;
471 #endif /* __linux__ */
472 mapsize = roundup(howmany(maxino, NBBY), TP_BSIZE);
473 usedinomap = (char *)calloc((unsigned) mapsize, sizeof(char));
474 dumpdirmap = (char *)calloc((unsigned) mapsize, sizeof(char));
475 dumpinomap = (char *)calloc((unsigned) mapsize, sizeof(char));
476 tapesize = 3 * (howmany(mapsize * sizeof(char), TP_BSIZE) + 1);
478 nonodump = spcl.c_level < honorlevel;
481 (void)signal(SIGINFO, statussig);
484 msg("mapping (Pass I) [regular files]\n");
486 if (directory[0] == 0)
487 anydirskipped = mapfiles(maxino, &tapesize);
489 anydirskipped = mapfilesfromdir(maxino, &tapesize, directory);
491 anydirskipped = mapfiles(maxino, &tapesize);
494 msg("mapping (Pass II) [directories]\n");
495 while (anydirskipped) {
496 anydirskipped = mapdirs(maxino, &tapesize);
499 if (pipeout || unlimited) {
500 tapesize += 10; /* 10 trailer blocks */
501 msg("estimated %ld tape blocks.\n", tapesize);
506 fetapes = (double) tapesize / blocksperfile;
507 else if (cartridge) {
508 /* Estimate number of tapes, assuming streaming stops at
509 the end of each block written, and not in mid-block.
510 Assume no erroneous blocks; this can be compensated
511 for with an artificially low tape size. */
513 ( (double) tapesize /* blocks */
514 * TP_BSIZE /* bytes/block */
515 * (1.0/density) /* 0.1" / byte " */
517 (double) tapesize /* blocks */
518 * (1.0/ntrec) /* streaming-stops per block */
519 * 15.48 /* 0.1" / streaming-stop " */
520 ) * (1.0 / tsize ); /* tape / 0.1" " */
522 /* Estimate number of tapes, for old fashioned 9-track
524 int tenthsperirg = (density == 625) ? 3 : 7;
526 ( (double) tapesize /* blocks */
527 * TP_BSIZE /* bytes / block */
528 * (1.0/density) /* 0.1" / byte " */
530 (double) tapesize /* blocks */
531 * (1.0/ntrec) /* IRG's / block */
532 * tenthsperirg /* 0.1" / IRG " */
533 ) * (1.0 / tsize ); /* tape / 0.1" " */
535 etapes = fetapes; /* truncating assignment */
537 /* count the dumped inodes map on each additional tape */
538 tapesize += (etapes - 1) *
539 (howmany(mapsize * sizeof(char), TP_BSIZE) + 1);
540 tapesize += etapes + 10; /* headers + 10 trailer blks */
541 msg("estimated %ld tape blocks on %3.2f tape(s).\n",
546 * Allocate tape buffer.
550 "can't allocate tape buffers - try a smaller blocking factor.\n");
553 (void)time((time_t *)&(tstart_writing));
554 dumpmap(usedinomap, TS_CLRI, maxino - 1);
556 msg("dumping (Pass III) [directories]\n");
557 dirty = 0; /* XXX just to get gcc to shut up */
558 for (map = dumpdirmap, ino = 1; ino < maxino; ino++) {
559 if (((ino - 1) % NBBY) == 0) /* map is offset by 1 */
563 if ((dirty & 1) == 0)
566 * Skip directory inodes deleted and maybe reallocated
569 if ((dp->di_mode & IFMT) != IFDIR)
572 (void)dumpdirino(dp, ino);
574 (void)dumpino(dp, ino);
578 msg("dumping (Pass IV) [regular files]\n");
579 for (map = dumpinomap, ino = 1; ino < maxino; ino++) {
582 if (((ino - 1) % NBBY) == 0) /* map is offset by 1 */
586 if ((dirty & 1) == 0)
589 * Skip inodes deleted and reallocated as directories.
592 mode = dp->di_mode & IFMT;
595 (void)dumpino(dp, ino);
598 (void)time((time_t *)&(tend_writing));
599 spcl.c_type = TS_END;
600 for (i = 0; i < ntrec; i++)
601 writeheader(maxino - 1);
603 msg("DUMP: %ld tape blocks\n", spcl.c_tapea);
605 msg("DUMP: %ld tape blocks on %d volumes(s)\n",
606 spcl.c_tapea, spcl.c_volume);
608 /* report dump performance, avoid division through zero */
609 if (tend_writing - tstart_writing == 0)
610 msg("finished in less than a second\n");
612 msg("finished in %d seconds, throughput %d KBytes/sec\n",
613 tend_writing - tstart_writing,
614 spcl.c_tapea / (tend_writing - tstart_writing));
619 msg("DUMP: Date of this level %c dump: %s", level,
620 spcl.c_date == 0 ? "the epoch\n" : ctime4(&spcl.c_date));
622 msg("DUMP: Date of this level %c dump: %s", level,
623 spcl.c_date == 0 ? "the epoch\n" : ctime(&spcl.c_date));
625 msg("DUMP: Date this dump completed: %s", ctime(&tnow));
627 msg("DUMP: Average transfer rate: %ld KB/s\n", xferrate / tapeno);
630 broadcast("DUMP IS DONE!\7\7\n");
631 msg("DUMP IS DONE\n");
634 return 0; /* gcc - shut up */
641 "usage: %s [-0123456789ac"
645 "nu] [-B records] [-b blocksize] [-d density] [-f file]\n"
646 " [-h level] [-s feet] [-T date] filesystem\n"
647 " %s [-W | -w]\n", __progname, __progname);
652 * Pick up a numeric argument. It must be nonnegative and in the given
653 * range (except that a vmax of 0 means unlimited).
656 numarg(const char *meaning, long vmin, long vmax)
661 val = strtol(optarg, &p, 10);
663 errx(X_STARTUP, "illegal %s -- %s", meaning, optarg);
664 if (val < vmin || (vmax && val > vmax))
665 errx(X_STARTUP, "%s must be between %ld and %ld", meaning, vmin, vmax);
680 quit("Signal on pipe: cannot recover\n");
681 msg("Rewriting attempted as response to unknown signal.\n");
682 (void)fflush(stderr);
683 (void)fflush(stdout);
688 msg("SIGSEGV: ABORTING!\n");
689 (void)signal(SIGSEGV, SIG_DFL);
690 (void)kill(0, SIGSEGV);
700 #else /* __linux__ */
701 static char rawbuf[MAXPATHLEN];
702 char *dp = strrchr(cp, '/');
707 (void)strncpy(rawbuf, cp, MAXPATHLEN - 1);
708 rawbuf[MAXPATHLEN-1] = '\0';
710 (void)strncat(rawbuf, "/r", MAXPATHLEN - 1 - strlen(rawbuf));
711 (void)strncat(rawbuf, dp + 1, MAXPATHLEN - 1 - strlen(rawbuf));
713 #endif /* __linux__ */
718 * Change set of key letters and ordered arguments into something
719 * getopt(3) will like.
722 obsolete(int *argcp, char **argvp[])
725 char *ap, **argv, *flagsp=NULL, **nargv, *p=NULL;
731 /* Return if no arguments or first argument has leading dash. */
733 if (argc == 1 || *ap == '-')
736 /* Allocate space for new arguments. */
737 if ((*argvp = nargv = malloc((argc + 1) * sizeof(char *))) == NULL ||
738 (p = flagsp = malloc(strlen(ap) + 2)) == NULL)
739 err(X_STARTUP, "malloc new args");
744 for (flags = 0; *ap; ++ap) {
754 warnx("option requires an argument -- %c", *ap);
757 if ((nargv[0] = malloc(strlen(*argv) + 2 + 1)) == NULL)
758 err(X_STARTUP, "malloc arg");
761 (void)strcpy(&nargv[0][2], *argv);
775 /* Terminate flags. */
781 /* Copy remaining arguments. */
782 while ((*nargv++ = *argv++));
784 /* Update argument count. */
785 *argcp = nargv - *argvp - 1;