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@noos.fr>, 1999-2000
6 * Stelian Pop <pop@noos.fr> - AlcĂ´ve <www.alcove.fr>, 2000
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 rcsid[] =
44 "$Id: main.c,v 1.60 2001/09/06 09:00:32 stelian Exp $";
48 #include <compatlfs.h>
50 #include <compaterr.h>
59 #include <sys/param.h>
64 #ifdef HAVE_EXT2FS_EXT2_FS_H
65 #include <ext2fs/ext2_fs.h>
67 #include <linux/ext2_fs.h>
69 #include <ext2fs/ext2fs.h>
71 #include <bsdcompat.h>
73 #include <sys/vnode.h>
75 #include <ufs/inode.h>
78 #include <ufs/ufs/dinode.h>
79 #include <ufs/ffs/fs.h>
82 #include <protocols/dumprestore.h>
85 #include "pathnames.h"
89 #define SBOFF (SBLOCK * DEV_BSIZE)
93 * Dump maps used to describe what is to be dumped.
95 int mapsize; /* size of the state maps */
96 char *usedinomap; /* map of allocated inodes */
97 char *dumpdirmap; /* map of directories to be dumped */
98 char *dumpinomap; /* map of files to be dumped */
100 const char *disk; /* name of the disk file */
101 char tape[MAXPATHLEN];/* name of the tape file */
102 char *tapeprefix; /* prefix of the tape file */
103 char *dumpdates; /* name of the file containing dump date information*/
104 char lastlevel; /* dump level of previous dump */
105 char level; /* dump level of this dump */
106 int bzipflag; /* compression is done using bzlib */
107 int uflag; /* update flag */
108 int Mflag; /* multi-volume flag */
109 int qflag; /* quit on errors flag */
110 char *eot_script; /* end of volume script fiag */
111 int diskfd; /* disk file descriptor */
112 int tapefd; /* tape file descriptor */
113 int pipeout; /* true => output to standard output */
114 int fifoout; /* true => output to fifo */
115 dump_ino_t curino; /* current inumber; used globally */
116 int newtape; /* new tape flag */
117 int density; /* density in 0.1" units */
118 long tapesize; /* estimated tape size, blocks */
119 long tsize; /* tape size in 0.1" units */
120 long asize; /* number of 0.1" units written on current tape */
121 int etapes; /* estimated number of tapes */
122 int nonodump; /* if set, do not honor UF_NODUMP user flags */
123 int unlimited; /* if set, write to end of medium */
124 int compressed; /* if set, dump is to be compressed */
125 long long bytes_written;/* total bytes written to tape */
126 long uncomprblks; /* uncompressed blocks written to tape */
127 int notify; /* notify operator flag */
128 int blockswritten; /* number of blocks written on current tape */
129 int tapeno; /* current tape number */
130 time_t tstart_writing; /* when started writing the first tape block */
131 time_t tend_writing; /* after writing the last tape block */
135 struct fs *sblock; /* the file system super block */
136 char sblock_buf[MAXBSIZE];
138 long xferrate; /* averaged transfer rate of all volumes */
139 long dev_bsize; /* block size of underlying disk device */
140 int dev_bshift; /* log2(dev_bsize) */
141 int tp_bshift; /* log2(TP_BSIZE) */
147 int32_t gThisDumpDate;
150 struct dumptime *dthead; /* head of the list version */
151 int nddates; /* number of records (might be zero) */
152 int ddates_in; /* we have read the increment file */
153 struct dumpdates **ddatev; /* the arrayfied version */
155 int notify = 0; /* notify operator flag */
156 int blockswritten = 0; /* number of blocks written on current tape */
157 int tapeno = 0; /* current tape number */
158 int density = 0; /* density in bytes/0.1" " <- this is for hilit19 */
159 int ntrec = NTREC; /* # tape blocks in each tape record */
160 int cartridge = 0; /* Assume non-cartridge tape */
162 int tapepos = 0; /* assume no QFA tapeposition needed by user */
164 int dokerberos = 0; /* Use Kerberos authentication */
165 long dev_bsize = 1; /* recalculated below */
166 long blocksperfile; /* output blocks per file */
167 char *host = NULL; /* remote host (if any) */
168 int sizest = 0; /* return size estimate only */
169 int compressed = 0; /* use zlib to compress the output, compress level 1-9 */
170 long long bytes_written = 0; /* total bytes written */
171 long uncomprblks = 0;/* uncompressed blocks written */
177 int maxbsize = 64*1024; /* XXX MAXBSIZE from sys/param.h */
178 static long numarg __P((const char *, long, long));
179 static void obsolete __P((int *, char **[]));
180 static void usage __P((void));
181 static void do_exclude_from_file __P((char *));
182 static void do_exclude_ino_str __P((char *));
183 static void incompat_flags __P((int, char, char));
185 static dump_ino_t iexclude_list[IEXCLUDE_MAXNUM];/* the inode exclude list */
186 static int iexclude_num = 0; /* number of elements in the list */
189 main(int argc, char *argv[])
191 register dump_ino_t ino;
193 register struct dinode *dp;
194 register struct fstab *dt;
197 int i, anydirskipped;
198 int aflag = 0, bflag = 0, Tflag = 0, honorlevel = 1;
204 char directory[MAXPATHLEN];
205 char pathname[MAXPATHLEN];
210 spcl.c_label[0] = '\0';
211 spcl.c_date = time(NULL);
214 __progname = argv[0];
216 initialize_ext2_error_table();
219 tsize = 0; /* Default later, based on 'c' option for cart tapes */
222 if ((tapeprefix = getenv("TAPE")) == NULL)
223 tapeprefix = _PATH_DEFTAPE;
224 dumpdates = _PATH_DUMPDATES;
225 if (TP_BSIZE / DEV_BSIZE == 0 || TP_BSIZE % DEV_BSIZE != 0)
226 quit("TP_BSIZE must be a multiple of DEV_BSIZE\n");
232 obsolete(&argc, &argv);
238 while ((ch = getopt(argc, argv,
239 "0123456789aB:b:cd:e:E:f:F:h:"
258 case '0': case '1': case '2': case '3': case '4':
259 case '5': case '6': case '7': case '8': case '9':
263 case 'a': /* `auto-size', Write to EOM. */
268 case 'B': /* blocks per output file */
270 blocksperfile = numarg("number of blocks per file",
274 case 'b': /* blocks per tape write */
275 ntrec = numarg("number of blocks per write",
277 if (ntrec > maxbsize/1024) {
278 msg("Please choose a blocksize <= %dkB\n",
280 msg("The ENTIRE dump is aborted.\n");
286 case 'c': /* Tape is cart. not 9-track */
291 case 'd': /* density, in bits per inch */
293 density = numarg("density", 10L, 327670L) / 10;
294 if (density >= 625 && !bflag)
295 ntrec = HIGHDENSITYTREC;
299 case 'e': /* exclude an inode */
301 char *p = optarg, *q;
302 while ((q = strchr(p, ','))) {
304 do_exclude_ino_str(p);
307 do_exclude_ino_str(p);
311 case 'E': /* exclude inodes read from file */
312 do_exclude_from_file(optarg);
315 case 'f': /* output file */
319 case 'F': /* end of tape script */
324 honorlevel = numarg("honor level", 0L, 10L);
332 compressed = numarg("compress level", 1L, 9L);
334 #endif /* HAVE_BZLIB */
344 * Note that although there are LBLSIZE characters,
345 * the last must be '\0', so the limit on strlen()
346 * is really LBLSIZE-1.
348 strncpy(spcl.c_label, optarg, LBLSIZE);
349 spcl.c_label[LBLSIZE-1] = '\0';
350 if (strlen(optarg) > LBLSIZE-1) {
352 "WARNING Label `%s' is larger than limit of %d characters.\n",
354 msg("WARNING: Using truncated label `%s'.\n",
359 case 'M': /* multi-volume flag */
363 case 'n': /* notify operators */
372 case 'Q': /* create tapeposfile */
373 gTapeposfile = optarg;
378 case 's': /* tape size, feet */
380 tsize = numarg("tape size", 1L, 0L) * 12 * 10;
384 sizest = 1; /* return size estimate only */
387 case 'T': /* time of last dump */
388 spcl.c_ddate = unctime(optarg);
389 if (spcl.c_ddate < 0) {
390 msg("bad time \"%s\"\n", optarg);
391 msg("The ENTIRE dump is aborted.\n");
398 case 'u': /* update dumpdates */
402 case 'W': /* what to do */
405 exit(X_FINOK); /* do nothing else */
410 compressed = numarg("compress level", 1L, 9L);
412 #endif /* HAVE_ZLIB */
421 msg("Must specify disk or filesystem\n");
422 msg("The ENTIRE dump is aborted.\n");
426 if (strlen(diskparam) >= MAXPATHLEN) {
427 msg("Disk or filesystem name too long: %s\n", diskparam);
428 msg("The ENTIRE dump is aborted.\n");
432 incompat_flags(Tflag && uflag, 'T', 'u');
433 incompat_flags(aflag && blocksperfile, 'a', 'B');
434 incompat_flags(aflag && cartridge, 'a', 'c');
435 incompat_flags(aflag && density, 'a', 'd');
436 incompat_flags(aflag && tsize, 'a', 's');
438 if (strcmp(tapeprefix, "-") == 0) {
440 tapeprefix = "standard output";
443 if (blocksperfile && !compressed)
444 blocksperfile = blocksperfile / ntrec * ntrec; /* round down */
445 else if (!unlimited) {
447 * Determine how to default tape size and density
450 * 9-track 1600 bpi (160 bytes/.1") 2300 ft.
451 * 9-track 6250 bpi (625 bytes/.1") 2300 ft.
452 * cartridge 8000 bpi (100 bytes/.1") 1700 ft.
454 * hilit19 hits again: "
457 density = cartridge ? 100 : 160;
459 tsize = cartridge ? 1700L*120L : 2300L*120L;
462 if (strchr(tapeprefix, ':')) {
464 tapeprefix = strchr(host, ':');
465 *tapeprefix++ = '\0';
467 if (index(tapeprefix, '\n')) {
468 msg("invalid characters in tape\n");
469 msg("The ENTIRE dump is aborted.\n");
472 if (rmthost(host) == 0)
475 msg("remote dump not enabled\n");
476 msg("The ENTIRE dump is aborted.\n");
480 (void)setuid(getuid()); /* rmthost() is the only reason to be setuid */
482 if (signal(SIGHUP, SIG_IGN) != SIG_IGN)
484 if (signal(SIGTRAP, SIG_IGN) != SIG_IGN)
485 signal(SIGTRAP, sig);
486 if (signal(SIGFPE, SIG_IGN) != SIG_IGN)
488 if (signal(SIGBUS, SIG_IGN) != SIG_IGN)
490 if (signal(SIGSEGV, SIG_IGN) != SIG_IGN)
491 signal(SIGSEGV, sig);
492 if (signal(SIGTERM, SIG_IGN) != SIG_IGN)
493 signal(SIGTERM, sig);
494 if (signal(SIGINT, interrupt) == SIG_IGN)
495 signal(SIGINT, SIG_IGN);
496 set_operators(); /* /etc/group snarfed */
497 getfstab(); /* /etc/fstab snarfed */
500 * disk may end in / and this can confuse
503 i = strlen(diskparam) - 1;
504 if (i > 1 && diskparam[i] == '/')
507 disk = get_device_name(diskparam);
508 if (!disk) { /* null means the disk is some form
509 of LABEL= or UID= but it was not
511 msg("Cannot find a disk having %s\n", diskparam);
512 msg("The ENTIRE dump is aborted.\n");
516 * disk can be either the full special file name,
517 * the suffix of the special file name,
518 * the special name missing the leading '/',
519 * the file system name with or without the leading '/'.
521 if ((dt = fstabsearch(disk)) != NULL) {
522 /* if found then only one parameter (i.e. partition)
525 (void)fprintf(stderr, "Unknown arguments to dump:");
527 (void)fprintf(stderr, " %s", *argv++);
528 (void)fprintf(stderr, "\n");
529 msg("The ENTIRE dump is aborted.\n");
532 disk = rawname(dt->fs_spec);
533 (void)strncpy(spcl.c_dev, dt->fs_spec, NAMELEN);
534 (void)strncpy(spcl.c_filesys, dt->fs_file, NAMELEN);
538 if (realpath(disk, pathname) == NULL)
540 strcpy(pathname, disk);
542 * The argument could be now a mountpoint of
543 * a filesystem specified in fstab. Search for it.
545 if ((dt = fstabsearch(pathname)) != NULL) {
546 disk = rawname(dt->fs_spec);
547 (void)strncpy(spcl.c_dev, dt->fs_spec, NAMELEN);
548 (void)strncpy(spcl.c_filesys, dt->fs_file, NAMELEN);
551 * The argument was not found in the fstab
552 * assume that this is a subtree and search for it
554 dt = fstabsearchdir(pathname, directory);
556 char name[MAXPATHLEN];
557 (void)strncpy(spcl.c_dev, dt->fs_spec, NAMELEN);
558 (void)snprintf(name, sizeof(name), "%s (dir %s)",
559 dt->fs_file, directory);
560 (void)strncpy(spcl.c_filesys, name, NAMELEN);
561 disk = rawname(dt->fs_spec);
563 (void)strncpy(spcl.c_dev, disk, NAMELEN);
564 (void)strncpy(spcl.c_filesys, "an unlisted file system",
569 (void)strncpy(spcl.c_dev, disk, NAMELEN);
570 (void)strncpy(spcl.c_filesys, "an unlisted file system",
575 if (directory[0] != 0) {
577 msg("Only level 0 dumps are allowed on a subdirectory\n");
578 msg("The ENTIRE dump is aborted.\n");
582 msg("You can't update the dumpdates file when dumping a subdirectory\n");
583 msg("The ENTIRE dump is aborted.\n");
587 spcl.c_dev[NAMELEN-1] = '\0';
588 spcl.c_filesys[NAMELEN-1] = '\0';
589 (void)gethostname(spcl.c_host, NAMELEN);
590 spcl.c_host[NAMELEN-1] = '\0';
591 spcl.c_level = level - '0';
592 spcl.c_type = TS_TAPE;
594 getdumptime(uflag); /* dumpdates snarfed */
596 if (spcl.c_ddate == 0 && spcl.c_level) {
597 msg("WARNING: There is no inferior level dump on this filesystem\n");
598 msg("WARNING: Assuming a level 0 dump by default\n");
604 snprintf(tape, MAXPATHLEN, "%s%03d", tapeprefix, tapeno + 1);
606 strncpy(tape, tapeprefix, MAXPATHLEN);
607 tape[MAXPATHLEN - 1] = '\0';
610 if (STAT(tape, &statbuf) != -1)
611 fifoout= statbuf.st_mode & S_IFIFO;
616 msg("Date of this level %c dump: %s", level,
617 ctime4(&spcl.c_date));
619 gThisDumpDate = spcl.c_date;
622 msg("Date of last level %c dump: %s", lastlevel,
623 ctime4(&spcl.c_ddate));
624 msg("Dumping %s (%s) ", disk, spcl.c_filesys);
626 msgtail("to %s on host %s\n", tape, host);
628 msgtail("to %s\n", tape);
629 } /* end of size estimate */
632 if ((diskfd = OPEN(disk, O_RDONLY)) < 0) {
633 msg("Cannot open %s\n", disk);
634 msg("The ENTIRE dump is aborted.\n");
638 (void)ioctl(diskfd, BLKFLSBUF);
640 retval = dump_fs_open(disk, &fs);
642 com_err(disk, retval, "while opening filesystem");
643 if (retval == EXT2_ET_REV_TOO_HIGH)
644 msg("Get a newer version of dump!\n");
645 msg("The ENTIRE dump is aborted.\n");
648 if (fs->super->s_rev_level > DUMP_CURRENT_REV) {
649 com_err(disk, retval, "while opening filesystem");
650 msg("Get a newer version of dump!\n");
651 msg("The ENTIRE dump is aborted.\n");
654 /* if no user label specified, use ext2 filesystem label if available */
655 if (spcl.c_label[0] == '\0') {
657 if ( (lbl = get_device_label(disk)) != NULL) {
658 strncpy(spcl.c_label, lbl, LBLSIZE);
659 spcl.c_label[LBLSIZE-1] = '\0';
662 strcpy(spcl.c_label, "none"); /* safe strcpy. */
665 dev_bsize = DEV_BSIZE;
666 dev_bshift = ffs(dev_bsize) - 1;
667 if (dev_bsize != (1 << dev_bshift))
668 quit("dev_bsize (%d) is not a power of 2", dev_bsize);
669 tp_bshift = ffs(TP_BSIZE) - 1;
670 if (TP_BSIZE != (1 << tp_bshift))
671 quit("TP_BSIZE (%d) is not a power of 2", TP_BSIZE);
672 maxino = fs->super->s_inodes_count;
674 spcl.c_flags |= DR_NEWINODEFMT;
676 #else /* __linux __*/
677 if ((diskfd = open(disk, O_RDONLY)) < 0) {
678 msg("Cannot open %s\n", disk);
679 msg("The ENTIRE dump is aborted.\n");
683 sblock = (struct fs *)sblock_buf;
684 bread(SBOFF, (char *) sblock, SBSIZE);
685 if (sblock->fs_magic != FS_MAGIC)
686 quit("bad sblock magic number\n");
687 dev_bsize = sblock->fs_fsize / fsbtodb(sblock, 1);
688 dev_bshift = ffs(dev_bsize) - 1;
689 if (dev_bsize != (1 << dev_bshift))
690 quit("dev_bsize (%d) is not a power of 2", dev_bsize);
691 tp_bshift = ffs(TP_BSIZE) - 1;
692 if (TP_BSIZE != (1 << tp_bshift))
693 quit("TP_BSIZE (%d) is not a power of 2", TP_BSIZE);
695 if (sblock->fs_inodefmt >= FS_44INODEFMT)
696 spcl.c_flags |= DR_NEWINODEFMT;
698 maxino = sblock->fs_ipg * sblock->fs_ncg;
699 #endif /* __linux__ */
700 mapsize = roundup(howmany(maxino, NBBY), TP_BSIZE);
701 usedinomap = (char *)calloc((unsigned) mapsize, sizeof(char));
702 dumpdirmap = (char *)calloc((unsigned) mapsize, sizeof(char));
703 dumpinomap = (char *)calloc((unsigned) mapsize, sizeof(char));
704 if (usedinomap == NULL || dumpdirmap == NULL || dumpinomap == NULL)
705 quit("out of memory allocating inode maps\n");
706 tapesize = 2 * (howmany(mapsize * sizeof(char), TP_BSIZE) + 1);
708 nonodump = spcl.c_level < honorlevel;
711 msg("Label: %s\n", spcl.c_label);
714 msg("Compressing output at compression level %d (%s)\n",
715 compressed, bzipflag ? "bzlib" : "zlib");
719 (void)signal(SIGINFO, statussig);
723 msg("mapping (Pass I) [regular files]\n");
725 if (directory[0] == 0)
726 anydirskipped = mapfiles(maxino, &tapesize);
728 if (STAT(pathname, &statbuf) == -1) {
729 msg("File cannot be accessed (%s).\n", pathname);
730 msg("The ENTIRE dump is aborted.\n");
733 filedev = statbuf.st_dev;
734 if (!(statbuf.st_mode & S_IFDIR)) /* is a file */
735 anydirskipped = maponefile(maxino, &tapesize,
738 anydirskipped = mapfilesfromdir(maxino, &tapesize,
744 /* check if file is available */
745 if (STAT(p, &statbuf) == -1) {
746 msg("File cannot be accessed (%s).\n", p);
747 msg("The ENTIRE dump is aborted.\n");
750 /* check if file is on same unix partiton as the first
752 if (statbuf.st_dev != filedev) {
753 msg("Files are not on same file system (%s).\n", p);
754 msg("The ENTIRE dump is aborted.\n");
757 /* check if file is a directory */
758 if (!(statbuf.st_mode & S_IFDIR))
759 anydirskipped2 = maponefile(maxino, &tapesize,
760 p+strlen(dt->fs_file));
762 /* read directory inodes.
763 * NOTE: nested directories are not recognized
764 * so inodes may be umped twice!
766 anydirskipped2 = mapfilesfromdir(maxino, &tapesize,
767 p+strlen(dt->fs_file));
769 anydirskipped = anydirskipped2;
773 anydirskipped = mapfiles(maxino, &tapesize);
777 msg("mapping (Pass II) [directories]\n");
778 while (anydirskipped) {
779 anydirskipped = mapdirs(maxino, &tapesize);
783 printf("%.0f\n", ((double)tapesize + 1 + ntrec) * TP_BSIZE);
785 } /* stop here for size estimate */
787 if (pipeout || unlimited) {
788 tapesize += 1 + ntrec; /* 1 map header + trailer blocks */
789 msg("estimated %ld tape blocks.\n", tapesize);
794 fetapes = (double) tapesize / blocksperfile;
795 else if (cartridge) {
796 /* Estimate number of tapes, assuming streaming stops at
797 the end of each block written, and not in mid-block.
798 Assume no erroneous blocks; this can be compensated
799 for with an artificially low tape size. */
801 ( (double) tapesize /* blocks */
802 * TP_BSIZE /* bytes/block */
803 * (1.0/density) /* 0.1" / byte " */
805 (double) tapesize /* blocks */
806 * (1.0/ntrec) /* streaming-stops per block */
807 * 15.48 /* 0.1" / streaming-stop " */
808 ) * (1.0 / tsize ); /* tape / 0.1" " */
810 /* Estimate number of tapes, for old fashioned 9-track
812 int tenthsperirg = (density == 625) ? 3 : 7;
814 ( (double) tapesize /* blocks */
815 * TP_BSIZE /* bytes / block */
816 * (1.0/density) /* 0.1" / byte " */
818 (double) tapesize /* blocks */
819 * (1.0/ntrec) /* IRG's / block */
820 * tenthsperirg /* 0.1" / IRG " */
821 ) * (1.0 / tsize ); /* tape / 0.1" " */
823 etapes = fetapes; /* truncating assignment */
825 /* count the dumped inodes map on each additional tape */
826 tapesize += (etapes - 1) *
827 (howmany(mapsize * sizeof(char), TP_BSIZE) + 1);
828 tapesize += etapes + ntrec; /* headers + trailer blks */
829 msg("estimated %ld tape blocks on %3.2f tape(s).\n",
835 msg("writing QFA positions to %s\n", gTapeposfile);
836 if ((gTapeposfd = open(gTapeposfile, O_RDWR|O_CREAT, S_IRUSR | S_IWUSR)) < 0)
837 quit("can't open tapeposfile\n");
838 /* print QFA-file header */
839 sprintf(gTps, "%s\n%s\n%ld\n\n", QFA_MAGIC, QFA_VERSION, (unsigned long)spcl.c_date);
840 if (write(gTapeposfd, gTps, strlen(gTps)) != strlen(gTps))
841 quit("can't write tapeposfile\n");
842 sprintf(gTps, "ino\ttapeno\ttapepos\n");
843 if (write(gTapeposfd, gTps, strlen(gTps)) != strlen(gTps))
844 quit("can't write tapeposfile\n");
849 * Allocate tape buffer.
853 "can't allocate tape buffers - try a smaller blocking factor.\n");
856 tstart_writing = time(NULL);
857 dumpmap(usedinomap, TS_CLRI, maxino - 1);
859 msg("dumping (Pass III) [directories]\n");
860 dirty = 0; /* XXX just to get gcc to shut up */
861 for (map = dumpdirmap, ino = 1; ino < maxino; ino++) {
862 if (((ino - 1) % NBBY) == 0) /* map is offset by 1 */
866 if ((dirty & 1) == 0)
869 * Skip directory inodes deleted and maybe reallocated
872 if ((dp->di_mode & IFMT) != IFDIR)
876 * Skip directory inodes deleted and not yes reallocated...
878 if (dp->di_nlink == 0 || dp->di_dtime != 0)
880 (void)dumpdirino(dp, ino);
882 (void)dumpino(dp, ino);
886 msg("dumping (Pass IV) [regular files]\n");
887 for (map = dumpinomap, ino = 1; ino < maxino; ino++) {
888 if (((ino - 1) % NBBY) == 0) /* map is offset by 1 */
892 if ((dirty & 1) == 0)
895 * Skip inodes deleted and reallocated as directories.
898 if ((dp->di_mode & IFMT) == IFDIR)
902 * No need to check here for deleted and not yet reallocated
903 * inodes since this is done in dumpino().
906 (void)dumpino(dp, ino);
909 tend_writing = time(NULL);
910 spcl.c_type = TS_END;
912 * Finish off the current tape record with trailer blocks, to ensure
913 * at least the data in the last partial record makes it to tape.
914 * Also make sure we write at least 1 trailer block.
916 for (i = ntrec - (spcl.c_tapea % ntrec); i; --i)
917 writeheader(maxino - 1);
921 if (pipeout || fifoout)
922 msg("%ld tape blocks (%.2fMB)\n", spcl.c_tapea,
923 ((double)spcl.c_tapea * TP_BSIZE / 1048576));
925 msg("%ld tape blocks (%.2fMB) on %d volume(s)\n",
927 ((double)spcl.c_tapea * TP_BSIZE / 1048576),
930 /* report dump performance, avoid division by zero */
931 if (tend_writing - tstart_writing == 0)
932 msg("finished in less than a second\n");
934 msg("finished in %d seconds, throughput %d kBytes/sec\n",
935 tend_writing - tstart_writing,
936 spcl.c_tapea / (tend_writing - tstart_writing));
939 msg("Date of this level %c dump: %s", level,
940 spcl.c_date == 0 ? "the epoch\n" : ctime4(&spcl.c_date));
941 msg("Date this dump completed: %s", ctime(&tnow));
943 msg("Average transfer rate: %ld kB/s\n", xferrate / tapeno);
945 long tapekb = bytes_written / 1024;
946 double rate = .0005 + (double) spcl.c_tapea / tapekb;
947 msg("Wrote %ldkB uncompressed, %ldkB compressed, %1.3f:1\n",
948 spcl.c_tapea, tapekb, rate);
951 broadcast("DUMP IS DONE!\7\7\n");
952 msg("DUMP IS DONE\n");
955 return 0; /* gcc - shut up */
961 char white[MAXPATHLEN];
962 const char *ext2ver, *ext2date;
964 memset(white, ' ', MAXPATHLEN);
965 white[MIN(strlen(__progname), MAXPATHLEN - 1)] = '\0';
968 ext2fs_get_library_version(&ext2ver, &ext2date);
969 fprintf(stderr, "%s %s (using libext2fs %s of %s)\n",
970 __progname, _DUMP_VERSION, ext2ver, ext2date);
972 fprintf(stderr, "%s %s\n", __progname, _DUMP_VERSION);
975 "usage:\t%s [-0123456789ac"
980 "] [-B records] [-b blocksize] [-d density]\n"
981 "\t%s [-e inode#,inode#,...] [-E file] [-f file] [-h level] "
989 "[-s feet] [-T date] "
995 __progname, white, white, __progname);
1000 * Pick up a numeric argument. It must be nonnegative and in the given
1001 * range (except that a vmax of 0 means unlimited).
1004 numarg(const char *meaning, long vmin, long vmax)
1009 val = strtol(optarg, &p, 10);
1011 errx(X_STARTUP, "illegal %s -- %s", meaning, optarg);
1012 if (val < vmin || (vmax && val > vmax))
1013 errx(X_STARTUP, "%s must be between %ld and %ld", meaning, vmin, vmax);
1027 if (pipeout || fifoout)
1028 quit("Signal on pipe: cannot recover\n");
1029 msg("Rewriting attempted as response to unknown signal: %d.\n", signo);
1030 (void)fflush(stderr);
1031 (void)fflush(stdout);
1036 msg("SIGSEGV: ABORTING!\n");
1037 (void)signal(SIGSEGV, SIG_DFL);
1038 (void)kill(0, SIGSEGV);
1044 rawname(const char *cp)
1048 #else /* __linux__ */
1049 static char rawbuf[MAXPATHLEN];
1050 char *dp = strrchr(cp, '/');
1054 (void)strncpy(rawbuf, cp, min(dp-cp, MAXPATHLEN - 1));
1055 rawbuf[min(dp-cp, MAXPATHLEN-1)] = '\0';
1056 (void)strncat(rawbuf, "/r", MAXPATHLEN - 1 - strlen(rawbuf));
1057 (void)strncat(rawbuf, dp + 1, MAXPATHLEN - 1 - strlen(rawbuf));
1059 #endif /* __linux__ */
1064 * Change set of key letters and ordered arguments into something
1065 * getopt(3) will like.
1068 obsolete(int *argcp, char **argvp[])
1071 char *ap, **argv, *flagsp=NULL, **nargv, *p=NULL;
1077 /* Return if no arguments or first argument has leading dash. */
1079 if (argc == 1 || *ap == '-')
1082 /* Allocate space for new arguments. */
1083 if ((*argvp = nargv = malloc((argc + 1) * sizeof(char *))) == NULL ||
1084 (p = flagsp = malloc(strlen(ap) + 2)) == NULL)
1085 err(X_STARTUP, "malloc new args");
1090 for (flags = 0; *ap; ++ap) {
1104 if (*argv == NULL) {
1105 warnx("option requires an argument -- %c", *ap);
1108 if ((nargv[0] = malloc(strlen(*argv) + 2 + 1)) == NULL)
1109 err(X_STARTUP, "malloc arg");
1112 (void)strcpy(&nargv[0][2], *argv);
1126 /* Terminate flags. */
1132 /* Copy remaining arguments. */
1133 while ((*nargv++ = *argv++));
1135 /* Update argument count. */
1136 *argcp = nargv - *argvp - 1;
1140 * This tests whether an inode is in the exclude list
1143 exclude_ino(dump_ino_t ino)
1146 if (iexclude_num) { /* if there are inodes in the exclude list */
1147 int idx; /* then check this inode against it */
1148 for (idx = 0; idx < iexclude_num; idx++)
1149 if (ino == iexclude_list[idx])
1156 * This tests adds an inode to the exclusion list if it isn't already there
1159 do_exclude_ino(dump_ino_t ino, const char *reason)
1161 if (!exclude_ino(ino)) {
1162 if (iexclude_num == IEXCLUDE_MAXNUM) {
1163 msg("Too many exclude options\n");
1164 msg("The ENTIRE dump is aborted.\n");
1168 msg("Added inode %u to exclude list (%s)\n",
1171 msg("Added inode %u to exclude list\n", ino);
1172 iexclude_list[iexclude_num++] = ino;
1177 do_exclude_ino_str(char * ino) {
1181 inod = strtoul(ino, &r, 10);
1182 if (*r != '\0' || inod <= ROOTINO) {
1183 msg("Invalid inode argument %s\n", ino);
1184 msg("The ENTIRE dump is aborted.\n");
1187 do_exclude_ino(inod, NULL);
1191 * This reads a file containing one inode number per line and exclude them all
1194 do_exclude_from_file(char *file) {
1196 char *p, fname[MAXPATHLEN];
1199 if (!( f = fopen(file, "r")) ) {
1200 msg("Cannot open file for reading: %s\n", file);
1201 msg("The ENTIRE dump is aborted.\n");
1204 while (( p = fgets(fname, MAXPATHLEN, f))) {
1205 if ( *p && *(p + strlen(p) - 1) == '\n' ) /* possible null string */
1206 *(p + strlen(p) - 1) = '\0';
1207 if ( !*p ) /* skip empty lines */
1209 do_exclude_ino_str(p);
1214 static void incompat_flags(int cond, char flag1, char flag2) {
1216 msg("You cannot use the %c and %c flags together.\n",
1218 msg("The ENTIRE dump is aborted.\n");