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