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