]> git.wh0rd.org - dump.git/blob - dump/main.c
Fix bug which caused the highest number inode to not be dumped.
[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.63 2002/01/05 23:23:02 stelian Exp $";
45 #endif /* not lint */
46
47 #include <config.h>
48 #include <compatlfs.h>
49 #include <ctype.h>
50 #include <compaterr.h>
51 #include <fcntl.h>
52 #include <fstab.h>
53 #include <signal.h>
54 #include <stdio.h>
55 #include <stdlib.h>
56 #include <string.h>
57 #include <unistd.h>
58
59 #include <sys/param.h>
60 #include <sys/time.h>
61 #include <time.h>
62 #ifdef __linux__
63 #include <linux/fs.h>
64 #ifdef HAVE_EXT2FS_EXT2_FS_H
65 #include <ext2fs/ext2_fs.h>
66 #else
67 #include <linux/ext2_fs.h>
68 #endif
69 #include <ext2fs/ext2fs.h>
70 #include <sys/stat.h>
71 #include <bsdcompat.h>
72 #elif defined sunos
73 #include <sys/vnode.h>
74
75 #include <ufs/inode.h>
76 #include <ufs/fs.h>
77 #else
78 #include <ufs/ufs/dinode.h>
79 #include <ufs/ffs/fs.h>
80 #endif
81
82 #include <protocols/dumprestore.h>
83
84 #include "dump.h"
85 #include "pathnames.h"
86 #include "bylabel.h"
87
88 #ifndef SBOFF
89 #define SBOFF (SBLOCK * DEV_BSIZE)
90 #endif
91
92 /*
93 * Dump maps used to describe what is to be dumped.
94 */
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 */
99
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 int breademax = 32; /* maximum number of bread errors before we quit */
111 char *eot_script; /* end of volume script fiag */
112 int diskfd; /* disk file descriptor */
113 int tapefd; /* tape file descriptor */
114 int pipeout; /* true => output to standard output */
115 int fifoout; /* true => output to fifo */
116 dump_ino_t curino; /* current inumber; used globally */
117 int newtape; /* new tape flag */
118 int density; /* density in 0.1" units */
119 long tapesize; /* estimated tape size, blocks */
120 long tsize; /* tape size in 0.1" units */
121 long asize; /* number of 0.1" units written on current tape */
122 int etapes; /* estimated number of tapes */
123 int nonodump; /* if set, do not honor UF_NODUMP user flags */
124 int unlimited; /* if set, write to end of medium */
125 int compressed; /* if set, dump is to be compressed */
126 long long bytes_written;/* total bytes written to tape */
127 long uncomprblks; /* uncompressed blocks written to tape */
128 int notify; /* notify operator flag */
129 int blockswritten; /* number of blocks written on current tape */
130 int tapeno; /* current tape number */
131 time_t tstart_writing; /* when started writing the first tape block */
132 time_t tend_writing; /* after writing the last tape block */
133 #ifdef __linux__
134 ext2_filsys fs;
135 #else
136 struct fs *sblock; /* the file system super block */
137 char sblock_buf[MAXBSIZE];
138 #endif
139 long xferrate; /* averaged transfer rate of all volumes */
140 long dev_bsize; /* block size of underlying disk device */
141 int dev_bshift; /* log2(dev_bsize) */
142 int tp_bshift; /* log2(TP_BSIZE) */
143
144 #ifdef USE_QFA
145 int gTapeposfd;
146 char *gTapeposfile;
147 char gTps[255];
148 int32_t gThisDumpDate;
149 #endif /* USE_QFA */
150
151 struct dumptime *dthead; /* head of the list version */
152 int nddates; /* number of records (might be zero) */
153 int ddates_in; /* we have read the increment file */
154 struct dumpdates **ddatev; /* the arrayfied version */
155
156 int notify = 0; /* notify operator flag */
157 int blockswritten = 0; /* number of blocks written on current tape */
158 int tapeno = 0; /* current tape number */
159 int density = 0; /* density in bytes/0.1" " <- this is for hilit19 */
160 int ntrec = NTREC; /* # tape blocks in each tape record */
161 int cartridge = 0; /* Assume non-cartridge tape */
162 #ifdef USE_QFA
163 int tapepos = 0; /* assume no QFA tapeposition needed by user */
164 #endif /* USE_QFA */
165 int dokerberos = 0; /* Use Kerberos authentication */
166 long dev_bsize = 1; /* recalculated below */
167 long blocksperfile; /* output blocks per file */
168 char *host = NULL; /* remote host (if any) */
169 int sizest = 0; /* return size estimate only */
170 int compressed = 0; /* use zlib to compress the output, compress level 1-9 */
171 long long bytes_written = 0; /* total bytes written */
172 long uncomprblks = 0;/* uncompressed blocks written */
173
174 #ifdef __linux__
175 char *__progname;
176 #endif
177
178 int maxbsize = 64*1024; /* XXX MAXBSIZE from sys/param.h */
179 static long numarg __P((const char *, long, long));
180 static void obsolete __P((int *, char **[]));
181 static void usage __P((void));
182 static void do_exclude_from_file __P((char *));
183 static void do_exclude_ino_str __P((char *));
184 static void incompat_flags __P((int, char, char));
185
186 static dump_ino_t iexclude_list[IEXCLUDE_MAXNUM];/* the inode exclude list */
187 static int iexclude_num = 0; /* number of elements in the list */
188
189 int
190 main(int argc, char *argv[])
191 {
192 register dump_ino_t ino;
193 register int dirty;
194 register struct dinode *dp;
195 register struct fstab *dt;
196 register char *map;
197 register int ch;
198 int i, anydirskipped;
199 int aflag = 0, bflag = 0, Tflag = 0, honorlevel = 1;
200 dump_ino_t maxino;
201 struct STAT statbuf;
202 dev_t filedev = 0;
203 #ifdef __linux__
204 errcode_t retval;
205 char directory[MAXPATHLEN];
206 char pathname[MAXPATHLEN];
207 #endif
208 time_t tnow;
209 char *diskparam;
210
211 spcl.c_label[0] = '\0';
212 spcl.c_date = time(NULL);
213
214 #ifdef __linux__
215 __progname = argv[0];
216 directory[0] = 0;
217 initialize_ext2_error_table();
218 #endif
219
220 tsize = 0; /* Default later, based on 'c' option for cart tapes */
221 unlimited = 1;
222 eot_script = NULL;
223 if ((tapeprefix = getenv("TAPE")) == NULL)
224 tapeprefix = _PATH_DEFTAPE;
225 dumpdates = _PATH_DUMPDATES;
226 if (TP_BSIZE / DEV_BSIZE == 0 || TP_BSIZE % DEV_BSIZE != 0)
227 quit("TP_BSIZE must be a multiple of DEV_BSIZE\n");
228 level = '0';
229
230 if (argc < 2)
231 usage();
232
233 obsolete(&argc, &argv);
234
235 #ifdef USE_QFA
236 gTapeposfd = -1;
237 #endif /* USE_QFA */
238
239 while ((ch = getopt(argc, argv,
240 "0123456789aB:b:cd:e:E:f:F:h:I:"
241 #ifdef HAVE_BZLIB
242 "j::"
243 #endif
244 "L:"
245 #ifdef KERBEROS
246 "k"
247 #endif
248 "Mnq"
249 #ifdef USE_QFA
250 "Q:"
251 #endif
252 "s:ST:uWw"
253 #ifdef HAVE_ZLIB
254 "z::"
255 #endif
256 )) != -1)
257 switch (ch) {
258 /* dump level */
259 case '0': case '1': case '2': case '3': case '4':
260 case '5': case '6': case '7': case '8': case '9':
261 level = ch;
262 break;
263
264 case 'a': /* `auto-size', Write to EOM. */
265 unlimited = 1;
266 aflag = 1;
267 break;
268
269 case 'B': /* blocks per output file */
270 unlimited = 0;
271 blocksperfile = numarg("number of blocks per file",
272 1L, 0L);
273 break;
274
275 case 'b': /* blocks per tape write */
276 ntrec = numarg("number of blocks per write",
277 1L, 1000L);
278 if (ntrec > maxbsize/1024) {
279 msg("Please choose a blocksize <= %dkB\n",
280 maxbsize/1024);
281 msg("The ENTIRE dump is aborted.\n");
282 exit(X_STARTUP);
283 }
284 bflag = 1;
285 break;
286
287 case 'c': /* Tape is cart. not 9-track */
288 unlimited = 0;
289 cartridge = 1;
290 break;
291
292 case 'd': /* density, in bits per inch */
293 unlimited = 0;
294 density = numarg("density", 10L, 327670L) / 10;
295 if (density >= 625 && !bflag)
296 ntrec = HIGHDENSITYTREC;
297 break;
298
299 /* 04-Feb-00 ILC */
300 case 'e': /* exclude an inode */
301 {
302 char *p = optarg, *q;
303 while ((q = strchr(p, ','))) {
304 *q = '\0';
305 do_exclude_ino_str(p);
306 p = q + 1;
307 }
308 do_exclude_ino_str(p);
309 }
310 break;
311
312 case 'E': /* exclude inodes read from file */
313 do_exclude_from_file(optarg);
314 break;
315
316 case 'f': /* output file */
317 tapeprefix = optarg;
318 break;
319
320 case 'F': /* end of tape script */
321 eot_script = optarg;
322 break;
323
324 case 'h':
325 honorlevel = numarg("honor level", 0L, 10L);
326 break;
327
328 #ifdef HAVE_BZLIB
329 case 'j':
330 compressed = 2;
331 bzipflag = 1;
332 if (optarg)
333 compressed = numarg("compress level", 1L, 9L);
334 break;
335 #endif /* HAVE_BZLIB */
336
337 case 'I':
338 breademax =
339 numarg ("number of errors to ignore", 1L, 0L);
340 break;
341
342 #ifdef KERBEROS
343 case 'k':
344 dokerberos = 1;
345 break;
346 #endif
347
348 case 'L':
349 /*
350 * Note that although there are LBLSIZE characters,
351 * the last must be '\0', so the limit on strlen()
352 * is really LBLSIZE-1.
353 */
354 strncpy(spcl.c_label, optarg, LBLSIZE);
355 spcl.c_label[LBLSIZE-1] = '\0';
356 if (strlen(optarg) > LBLSIZE-1) {
357 msg(
358 "WARNING Label `%s' is larger than limit of %d characters.\n",
359 optarg, LBLSIZE-1);
360 msg("WARNING: Using truncated label `%s'.\n",
361 spcl.c_label);
362 }
363 break;
364
365 case 'M': /* multi-volume flag */
366 Mflag = 1;
367 break;
368
369 case 'n': /* notify operators */
370 notify = 1;
371 break;
372
373 case 'q':
374 qflag = 1;
375 break;
376
377 #ifdef USE_QFA
378 case 'Q': /* create tapeposfile */
379 gTapeposfile = optarg;
380 tapepos = 1;
381 break;
382 #endif /* USE_QFA */
383
384 case 's': /* tape size, feet */
385 unlimited = 0;
386 tsize = numarg("tape size", 1L, 0L) * 12 * 10;
387 break;
388
389 case 'S':
390 sizest = 1; /* return size estimate only */
391 break;
392
393 case 'T': /* time of last dump */
394 spcl.c_ddate = unctime(optarg);
395 if (spcl.c_ddate < 0) {
396 msg("bad time \"%s\"\n", optarg);
397 msg("The ENTIRE dump is aborted.\n");
398 exit(X_STARTUP);
399 }
400 Tflag = 1;
401 lastlevel = '?';
402 break;
403
404 case 'u': /* update dumpdates */
405 uflag = 1;
406 break;
407
408 case 'W': /* what to do */
409 case 'w':
410 lastdump(ch);
411 exit(X_FINOK); /* do nothing else */
412 #ifdef HAVE_ZLIB
413 case 'z':
414 compressed = 2;
415 if (optarg)
416 compressed = numarg("compress level", 1L, 9L);
417 break;
418 #endif /* HAVE_ZLIB */
419
420 default:
421 usage();
422 }
423 argc -= optind;
424 argv += optind;
425
426 if (argc < 1) {
427 msg("Must specify disk or filesystem\n");
428 msg("The ENTIRE dump is aborted.\n");
429 exit(X_STARTUP);
430 }
431 diskparam = *argv++;
432 if (strlen(diskparam) >= MAXPATHLEN) {
433 msg("Disk or filesystem name too long: %s\n", diskparam);
434 msg("The ENTIRE dump is aborted.\n");
435 exit(X_STARTUP);
436 }
437 argc--;
438 incompat_flags(Tflag && uflag, 'T', 'u');
439 incompat_flags(aflag && blocksperfile, 'a', 'B');
440 incompat_flags(aflag && cartridge, 'a', 'c');
441 incompat_flags(aflag && density, 'a', 'd');
442 incompat_flags(aflag && tsize, 'a', 's');
443
444 if (strcmp(tapeprefix, "-") == 0) {
445 pipeout++;
446 tapeprefix = "standard output";
447 }
448
449 if (blocksperfile && !compressed)
450 blocksperfile = blocksperfile / ntrec * ntrec; /* round down */
451 else if (!unlimited) {
452 /*
453 * Determine how to default tape size and density
454 *
455 * density tape size
456 * 9-track 1600 bpi (160 bytes/.1") 2300 ft.
457 * 9-track 6250 bpi (625 bytes/.1") 2300 ft.
458 * cartridge 8000 bpi (100 bytes/.1") 1700 ft.
459 * (450*4 - slop)
460 * hilit19 hits again: "
461 */
462 if (density == 0)
463 density = cartridge ? 100 : 160;
464 if (tsize == 0)
465 tsize = cartridge ? 1700L*120L : 2300L*120L;
466 }
467
468 if (strchr(tapeprefix, ':')) {
469 host = tapeprefix;
470 tapeprefix = strchr(host, ':');
471 *tapeprefix++ = '\0';
472 #ifdef RDUMP
473 if (index(tapeprefix, '\n')) {
474 msg("invalid characters in tape\n");
475 msg("The ENTIRE dump is aborted.\n");
476 exit(X_STARTUP);
477 }
478 if (rmthost(host) == 0)
479 exit(X_STARTUP);
480 #else
481 msg("remote dump not enabled\n");
482 msg("The ENTIRE dump is aborted.\n");
483 exit(X_STARTUP);
484 #endif
485 }
486 (void)setuid(getuid()); /* rmthost() is the only reason to be setuid */
487
488 if (signal(SIGHUP, SIG_IGN) != SIG_IGN)
489 signal(SIGHUP, sig);
490 if (signal(SIGTRAP, SIG_IGN) != SIG_IGN)
491 signal(SIGTRAP, sig);
492 if (signal(SIGFPE, SIG_IGN) != SIG_IGN)
493 signal(SIGFPE, sig);
494 if (signal(SIGBUS, SIG_IGN) != SIG_IGN)
495 signal(SIGBUS, sig);
496 if (signal(SIGSEGV, SIG_IGN) != SIG_IGN)
497 signal(SIGSEGV, sig);
498 if (signal(SIGTERM, SIG_IGN) != SIG_IGN)
499 signal(SIGTERM, sig);
500 if (signal(SIGINT, interrupt) == SIG_IGN)
501 signal(SIGINT, SIG_IGN);
502 set_operators(); /* /etc/group snarfed */
503 getfstab(); /* /etc/fstab snarfed */
504
505 /*
506 * disk may end in / and this can confuse
507 * fstabsearch.
508 */
509 i = strlen(diskparam) - 1;
510 if (i > 1 && diskparam[i] == '/')
511 diskparam[i] = '\0';
512
513 disk = get_device_name(diskparam);
514 if (!disk) { /* null means the disk is some form
515 of LABEL= or UID= but it was not
516 found */
517 msg("Cannot find a disk having %s\n", diskparam);
518 msg("The ENTIRE dump is aborted.\n");
519 exit(X_STARTUP);
520 }
521 /*
522 * disk can be either the full special file name,
523 * the suffix of the special file name,
524 * the special name missing the leading '/',
525 * the file system name with or without the leading '/'.
526 */
527 if ((dt = fstabsearch(disk)) != NULL) {
528 /* if found then only one parameter (i.e. partition)
529 * is allowed */
530 if (argc >= 1) {
531 (void)fprintf(stderr, "Unknown arguments to dump:");
532 while (argc--)
533 (void)fprintf(stderr, " %s", *argv++);
534 (void)fprintf(stderr, "\n");
535 msg("The ENTIRE dump is aborted.\n");
536 exit(X_STARTUP);
537 }
538 disk = rawname(dt->fs_spec);
539 (void)strncpy(spcl.c_dev, dt->fs_spec, NAMELEN);
540 (void)strncpy(spcl.c_filesys, dt->fs_file, NAMELEN);
541 } else {
542 #ifdef __linux__
543 #ifdef HAVE_REALPATH
544 if (realpath(disk, pathname) == NULL)
545 #endif
546 strcpy(pathname, disk);
547 /*
548 * The argument could be now a mountpoint of
549 * a filesystem specified in fstab. Search for it.
550 */
551 if ((dt = fstabsearch(pathname)) != NULL) {
552 disk = rawname(dt->fs_spec);
553 (void)strncpy(spcl.c_dev, dt->fs_spec, NAMELEN);
554 (void)strncpy(spcl.c_filesys, dt->fs_file, NAMELEN);
555 } else {
556 /*
557 * The argument was not found in the fstab
558 * assume that this is a subtree and search for it
559 */
560 dt = fstabsearchdir(pathname, directory);
561 if (dt != NULL) {
562 char name[MAXPATHLEN];
563 (void)strncpy(spcl.c_dev, dt->fs_spec, NAMELEN);
564 (void)snprintf(name, sizeof(name), "%s (dir %s)",
565 dt->fs_file, directory);
566 (void)strncpy(spcl.c_filesys, name, NAMELEN);
567 disk = rawname(dt->fs_spec);
568 } else {
569 (void)strncpy(spcl.c_dev, disk, NAMELEN);
570 (void)strncpy(spcl.c_filesys, "an unlisted file system",
571 NAMELEN);
572 }
573 }
574 #else
575 (void)strncpy(spcl.c_dev, disk, NAMELEN);
576 (void)strncpy(spcl.c_filesys, "an unlisted file system",
577 NAMELEN);
578 #endif
579 }
580
581 if (directory[0] != 0) {
582 if (level != '0') {
583 msg("Only level 0 dumps are allowed on a subdirectory\n");
584 msg("The ENTIRE dump is aborted.\n");
585 exit(X_STARTUP);
586 }
587 if (uflag) {
588 msg("You can't update the dumpdates file when dumping a subdirectory\n");
589 msg("The ENTIRE dump is aborted.\n");
590 exit(X_STARTUP);
591 }
592 }
593 spcl.c_dev[NAMELEN-1] = '\0';
594 spcl.c_filesys[NAMELEN-1] = '\0';
595 (void)gethostname(spcl.c_host, NAMELEN);
596 spcl.c_host[NAMELEN-1] = '\0';
597 spcl.c_level = level - '0';
598 spcl.c_type = TS_TAPE;
599 if (!Tflag)
600 getdumptime(uflag); /* dumpdates snarfed */
601
602 if (spcl.c_ddate == 0 && spcl.c_level) {
603 msg("WARNING: There is no inferior level dump on this filesystem\n");
604 msg("WARNING: Assuming a level 0 dump by default\n");
605 level = '0';
606 spcl.c_level = 0;
607 }
608
609 if (Mflag)
610 snprintf(tape, MAXPATHLEN, "%s%03d", tapeprefix, tapeno + 1);
611 else
612 strncpy(tape, tapeprefix, MAXPATHLEN);
613 tape[MAXPATHLEN - 1] = '\0';
614
615 if (!pipeout) {
616 if (STAT(tape, &statbuf) != -1)
617 fifoout= statbuf.st_mode & S_IFIFO;
618 }
619
620 if (!sizest) {
621
622 msg("Date of this level %c dump: %s", level,
623 ctime4(&spcl.c_date));
624 #ifdef USE_QFA
625 gThisDumpDate = spcl.c_date;
626 #endif
627 if (spcl.c_ddate)
628 msg("Date of last level %c dump: %s", lastlevel,
629 ctime4(&spcl.c_ddate));
630 msg("Dumping %s (%s) ", disk, spcl.c_filesys);
631 if (host)
632 msgtail("to %s on host %s\n", tape, host);
633 else
634 msgtail("to %s\n", tape);
635 } /* end of size estimate */
636
637 #ifdef __linux__
638 if ((diskfd = OPEN(disk, O_RDONLY)) < 0) {
639 msg("Cannot open %s\n", disk);
640 msg("The ENTIRE dump is aborted.\n");
641 exit(X_STARTUP);
642 }
643 #ifdef BLKFLSBUF
644 (void)ioctl(diskfd, BLKFLSBUF);
645 #endif
646 retval = dump_fs_open(disk, &fs);
647 if (retval) {
648 com_err(disk, retval, "while opening filesystem");
649 if (retval == EXT2_ET_REV_TOO_HIGH)
650 msg("Get a newer version of dump!\n");
651 msg("The ENTIRE dump is aborted.\n");
652 exit(X_STARTUP);
653 }
654 if (fs->super->s_rev_level > DUMP_CURRENT_REV) {
655 com_err(disk, retval, "while opening filesystem");
656 msg("Get a newer version of dump!\n");
657 msg("The ENTIRE dump is aborted.\n");
658 exit(X_STARTUP);
659 }
660 /* if no user label specified, use ext2 filesystem label if available */
661 if (spcl.c_label[0] == '\0') {
662 const char *lbl;
663 if ( (lbl = get_device_label(disk)) != NULL) {
664 strncpy(spcl.c_label, lbl, LBLSIZE);
665 spcl.c_label[LBLSIZE-1] = '\0';
666 }
667 else
668 strcpy(spcl.c_label, "none"); /* safe strcpy. */
669 }
670 sync();
671 dev_bsize = DEV_BSIZE;
672 dev_bshift = ffs(dev_bsize) - 1;
673 if (dev_bsize != (1 << dev_bshift))
674 quit("dev_bsize (%d) is not a power of 2", dev_bsize);
675 tp_bshift = ffs(TP_BSIZE) - 1;
676 if (TP_BSIZE != (1 << tp_bshift))
677 quit("TP_BSIZE (%d) is not a power of 2", TP_BSIZE);
678 maxino = fs->super->s_inodes_count + 1;
679 #if 0
680 spcl.c_flags |= DR_NEWINODEFMT;
681 #endif
682 #else /* __linux __*/
683 if ((diskfd = open(disk, O_RDONLY)) < 0) {
684 msg("Cannot open %s\n", disk);
685 msg("The ENTIRE dump is aborted.\n");
686 exit(X_STARTUP);
687 }
688 sync();
689 sblock = (struct fs *)sblock_buf;
690 bread(SBOFF, (char *) sblock, SBSIZE);
691 if (sblock->fs_magic != FS_MAGIC)
692 quit("bad sblock magic number\n");
693 dev_bsize = sblock->fs_fsize / fsbtodb(sblock, 1);
694 dev_bshift = ffs(dev_bsize) - 1;
695 if (dev_bsize != (1 << dev_bshift))
696 quit("dev_bsize (%d) is not a power of 2", dev_bsize);
697 tp_bshift = ffs(TP_BSIZE) - 1;
698 if (TP_BSIZE != (1 << tp_bshift))
699 quit("TP_BSIZE (%d) is not a power of 2", TP_BSIZE);
700 #ifdef FS_44INODEFMT
701 if (sblock->fs_inodefmt >= FS_44INODEFMT)
702 spcl.c_flags |= DR_NEWINODEFMT;
703 #endif
704 maxino = sblock->fs_ipg * sblock->fs_ncg;
705 #endif /* __linux__ */
706 mapsize = roundup(howmany(maxino, NBBY), TP_BSIZE);
707 usedinomap = (char *)calloc((unsigned) mapsize, sizeof(char));
708 dumpdirmap = (char *)calloc((unsigned) mapsize, sizeof(char));
709 dumpinomap = (char *)calloc((unsigned) mapsize, sizeof(char));
710 if (usedinomap == NULL || dumpdirmap == NULL || dumpinomap == NULL)
711 quit("out of memory allocating inode maps\n");
712 tapesize = 2 * (howmany(mapsize * sizeof(char), TP_BSIZE) + 1);
713
714 nonodump = spcl.c_level < honorlevel;
715
716 if (!sizest) {
717 msg("Label: %s\n", spcl.c_label);
718
719 if (compressed)
720 msg("Compressing output at compression level %d (%s)\n",
721 compressed, bzipflag ? "bzlib" : "zlib");
722 }
723
724 #if defined(SIGINFO)
725 (void)signal(SIGINFO, statussig);
726 #endif
727
728 if (!sizest)
729 msg("mapping (Pass I) [regular files]\n");
730 #ifdef __linux__
731 if (directory[0] == 0)
732 anydirskipped = mapfiles(maxino, &tapesize);
733 else {
734 if (STAT(pathname, &statbuf) == -1) {
735 msg("File cannot be accessed (%s).\n", pathname);
736 msg("The ENTIRE dump is aborted.\n");
737 exit(X_STARTUP);
738 }
739 filedev = statbuf.st_dev;
740 if (!(statbuf.st_mode & S_IFDIR)) /* is a file */
741 anydirskipped = maponefile(maxino, &tapesize,
742 directory);
743 else
744 anydirskipped = mapfilesfromdir(maxino, &tapesize,
745 directory);
746 }
747 while (argc--) {
748 int anydirskipped2;
749 char *p = *argv;
750 /* check if file is available */
751 if (STAT(p, &statbuf) == -1) {
752 msg("File cannot be accessed (%s).\n", p);
753 msg("The ENTIRE dump is aborted.\n");
754 exit(X_STARTUP);
755 }
756 /* check if file is on same unix partiton as the first
757 * argument */
758 if (statbuf.st_dev != filedev) {
759 msg("Files are not on same file system (%s).\n", p);
760 msg("The ENTIRE dump is aborted.\n");
761 exit(X_STARTUP);
762 }
763 /* check if file is a directory */
764 if (!(statbuf.st_mode & S_IFDIR))
765 anydirskipped2 = maponefile(maxino, &tapesize,
766 p+strlen(dt->fs_file));
767 else
768 /* read directory inodes.
769 * NOTE: nested directories are not recognized
770 * so inodes may be umped twice!
771 */
772 anydirskipped2 = mapfilesfromdir(maxino, &tapesize,
773 p+strlen(dt->fs_file));
774 if (!anydirskipped)
775 anydirskipped = anydirskipped2;
776 argv++;
777 }
778 #else
779 anydirskipped = mapfiles(maxino, &tapesize);
780 #endif
781
782 if (!sizest)
783 msg("mapping (Pass II) [directories]\n");
784 while (anydirskipped) {
785 anydirskipped = mapdirs(maxino, &tapesize);
786 }
787
788 if (sizest) {
789 printf("%.0f\n", ((double)tapesize + 1 + ntrec) * TP_BSIZE);
790 exit(X_FINOK);
791 } /* stop here for size estimate */
792
793 if (pipeout || unlimited) {
794 tapesize += 1 + ntrec; /* 1 map header + trailer blocks */
795 msg("estimated %ld tape blocks.\n", tapesize);
796 } else {
797 double fetapes;
798
799 if (blocksperfile)
800 fetapes = (double) tapesize / blocksperfile;
801 else if (cartridge) {
802 /* Estimate number of tapes, assuming streaming stops at
803 the end of each block written, and not in mid-block.
804 Assume no erroneous blocks; this can be compensated
805 for with an artificially low tape size. */
806 fetapes =
807 ( (double) tapesize /* blocks */
808 * TP_BSIZE /* bytes/block */
809 * (1.0/density) /* 0.1" / byte " */
810 +
811 (double) tapesize /* blocks */
812 * (1.0/ntrec) /* streaming-stops per block */
813 * 15.48 /* 0.1" / streaming-stop " */
814 ) * (1.0 / tsize ); /* tape / 0.1" " */
815 } else {
816 /* Estimate number of tapes, for old fashioned 9-track
817 tape */
818 int tenthsperirg = (density == 625) ? 3 : 7;
819 fetapes =
820 ( (double) tapesize /* blocks */
821 * TP_BSIZE /* bytes / block */
822 * (1.0/density) /* 0.1" / byte " */
823 +
824 (double) tapesize /* blocks */
825 * (1.0/ntrec) /* IRG's / block */
826 * tenthsperirg /* 0.1" / IRG " */
827 ) * (1.0 / tsize ); /* tape / 0.1" " */
828 }
829 etapes = fetapes; /* truncating assignment */
830 etapes++;
831 /* count the dumped inodes map on each additional tape */
832 tapesize += (etapes - 1) *
833 (howmany(mapsize * sizeof(char), TP_BSIZE) + 1);
834 tapesize += etapes + ntrec; /* headers + trailer blks */
835 msg("estimated %ld tape blocks on %3.2f tape(s).\n",
836 tapesize, fetapes);
837 }
838
839 #ifdef USE_QFA
840 if (tapepos) {
841 msg("writing QFA positions to %s\n", gTapeposfile);
842 if ((gTapeposfd = open(gTapeposfile, O_RDWR|O_CREAT, S_IRUSR | S_IWUSR)) < 0)
843 quit("can't open tapeposfile\n");
844 /* print QFA-file header */
845 sprintf(gTps, "%s\n%s\n%ld\n\n", QFA_MAGIC, QFA_VERSION, (unsigned long)spcl.c_date);
846 if (write(gTapeposfd, gTps, strlen(gTps)) != strlen(gTps))
847 quit("can't write tapeposfile\n");
848 sprintf(gTps, "ino\ttapeno\ttapepos\n");
849 if (write(gTapeposfd, gTps, strlen(gTps)) != strlen(gTps))
850 quit("can't write tapeposfile\n");
851 }
852 #endif /* USE_QFA */
853
854 /*
855 * Allocate tape buffer.
856 */
857 if (!alloctape())
858 quit(
859 "can't allocate tape buffers - try a smaller blocking factor.\n");
860
861 startnewtape(1);
862 tstart_writing = time(NULL);
863 dumpmap(usedinomap, TS_CLRI, maxino - 1);
864
865 msg("dumping (Pass III) [directories]\n");
866 dirty = 0; /* XXX just to get gcc to shut up */
867 for (map = dumpdirmap, ino = 1; ino < maxino; ino++) {
868 if (((ino - 1) % NBBY) == 0) /* map is offset by 1 */
869 dirty = *map++;
870 else
871 dirty >>= 1;
872 if ((dirty & 1) == 0)
873 continue;
874 /*
875 * Skip directory inodes deleted and maybe reallocated
876 */
877 dp = getino(ino);
878 if ((dp->di_mode & IFMT) != IFDIR)
879 continue;
880 #ifdef __linux__
881 /*
882 * Skip directory inodes deleted and not yes reallocated...
883 */
884 if (dp->di_nlink == 0 || dp->di_dtime != 0)
885 continue;
886 (void)dumpdirino(dp, ino);
887 #else
888 (void)dumpino(dp, ino);
889 #endif
890 }
891
892 msg("dumping (Pass IV) [regular files]\n");
893 for (map = dumpinomap, ino = 1; ino < maxino; ino++) {
894 if (((ino - 1) % NBBY) == 0) /* map is offset by 1 */
895 dirty = *map++;
896 else
897 dirty >>= 1;
898 if ((dirty & 1) == 0)
899 continue;
900 /*
901 * Skip inodes deleted and reallocated as directories.
902 */
903 dp = getino(ino);
904 if ((dp->di_mode & IFMT) == IFDIR)
905 continue;
906 #ifdef __linux__
907 /*
908 * No need to check here for deleted and not yet reallocated
909 * inodes since this is done in dumpino().
910 */
911 #endif
912 (void)dumpino(dp, ino);
913 }
914
915 tend_writing = time(NULL);
916 spcl.c_type = TS_END;
917 /*
918 * Finish off the current tape record with trailer blocks, to ensure
919 * at least the data in the last partial record makes it to tape.
920 * Also make sure we write at least 1 trailer block.
921 */
922 for (i = ntrec - (spcl.c_tapea % ntrec); i; --i)
923 writeheader(maxino - 1);
924
925 tnow = trewind();
926
927 if (pipeout || fifoout)
928 msg("%ld tape blocks (%.2fMB)\n", spcl.c_tapea,
929 ((double)spcl.c_tapea * TP_BSIZE / 1048576));
930 else
931 msg("%ld tape blocks (%.2fMB) on %d volume(s)\n",
932 spcl.c_tapea,
933 ((double)spcl.c_tapea * TP_BSIZE / 1048576),
934 spcl.c_volume);
935
936 /* report dump performance, avoid division by zero */
937 if (tend_writing - tstart_writing == 0)
938 msg("finished in less than a second\n");
939 else
940 msg("finished in %d seconds, throughput %d kBytes/sec\n",
941 tend_writing - tstart_writing,
942 spcl.c_tapea / (tend_writing - tstart_writing));
943
944 putdumptime();
945 msg("Date of this level %c dump: %s", level,
946 spcl.c_date == 0 ? "the epoch\n" : ctime4(&spcl.c_date));
947 msg("Date this dump completed: %s", ctime(&tnow));
948
949 msg("Average transfer rate: %ld kB/s\n", xferrate / tapeno);
950 if (compressed) {
951 long tapekb = bytes_written / 1024;
952 double rate = .0005 + (double) spcl.c_tapea / tapekb;
953 msg("Wrote %ldkB uncompressed, %ldkB compressed, %1.3f:1\n",
954 spcl.c_tapea, tapekb, rate);
955 }
956
957 broadcast("DUMP IS DONE!\7\7\n");
958 msg("DUMP IS DONE\n");
959 Exit(X_FINOK);
960 /* NOTREACHED */
961 return 0; /* gcc - shut up */
962 }
963
964 static void
965 usage(void)
966 {
967 char white[MAXPATHLEN];
968 const char *ext2ver, *ext2date;
969
970 memset(white, ' ', MAXPATHLEN);
971 white[MIN(strlen(__progname), MAXPATHLEN - 1)] = '\0';
972
973 #ifdef __linux__
974 ext2fs_get_library_version(&ext2ver, &ext2date);
975 fprintf(stderr, "%s %s (using libext2fs %s of %s)\n",
976 __progname, _DUMP_VERSION, ext2ver, ext2date);
977 #else
978 fprintf(stderr, "%s %s\n", __progname, _DUMP_VERSION);
979 #endif
980 fprintf(stderr,
981 "usage:\t%s [-0123456789ac"
982 #ifdef KERBEROS
983 "k"
984 #endif
985 "MnqSu"
986 "] [-B records] [-b blocksize] [-d density]\n"
987 "\t%s [-e inode#,inode#,...] [-E file] [-f file] [-h level]\n"
988 "\t%s [-I nr errors] "
989 #ifdef HAVE_BZLIB
990 "[-j zlevel] "
991 #endif
992 #ifdef USE_QFA
993 "[-Q file] "
994 #endif
995 "[-s feet] [-T date] "
996 #ifdef HAVE_ZLIB
997 "[-z zlevel] "
998 #endif
999 "filesystem\n"
1000 "\t%s [-W | -w]\n",
1001 __progname, white, white, __progname);
1002 exit(X_STARTUP);
1003 }
1004
1005 /*
1006 * Pick up a numeric argument. It must be nonnegative and in the given
1007 * range (except that a vmax of 0 means unlimited).
1008 */
1009 static long
1010 numarg(const char *meaning, long vmin, long vmax)
1011 {
1012 char *p;
1013 long val;
1014
1015 val = strtol(optarg, &p, 10);
1016 if (*p)
1017 errx(X_STARTUP, "illegal %s -- %s", meaning, optarg);
1018 if (val < vmin || (vmax && val > vmax))
1019 errx(X_STARTUP, "%s must be between %ld and %ld", meaning, vmin, vmax);
1020 return (val);
1021 }
1022
1023 void
1024 sig(int signo)
1025 {
1026 switch(signo) {
1027 case SIGALRM:
1028 case SIGBUS:
1029 case SIGFPE:
1030 case SIGHUP:
1031 case SIGTERM:
1032 case SIGTRAP:
1033 if (pipeout || fifoout)
1034 quit("Signal on pipe: cannot recover\n");
1035 msg("Rewriting attempted as response to unknown signal: %d.\n", signo);
1036 (void)fflush(stderr);
1037 (void)fflush(stdout);
1038 close_rewind();
1039 exit(X_REWRITE);
1040 /* NOTREACHED */
1041 case SIGSEGV:
1042 msg("SIGSEGV: ABORTING!\n");
1043 (void)signal(SIGSEGV, SIG_DFL);
1044 (void)kill(0, SIGSEGV);
1045 /* NOTREACHED */
1046 }
1047 }
1048
1049 const char *
1050 rawname(const char *cp)
1051 {
1052 #ifdef __linux__
1053 return cp;
1054 #else /* __linux__ */
1055 static char rawbuf[MAXPATHLEN];
1056 char *dp = strrchr(cp, '/');
1057
1058 if (dp == NULL)
1059 return (NULL);
1060 (void)strncpy(rawbuf, cp, min(dp-cp, MAXPATHLEN - 1));
1061 rawbuf[min(dp-cp, MAXPATHLEN-1)] = '\0';
1062 (void)strncat(rawbuf, "/r", MAXPATHLEN - 1 - strlen(rawbuf));
1063 (void)strncat(rawbuf, dp + 1, MAXPATHLEN - 1 - strlen(rawbuf));
1064 return (rawbuf);
1065 #endif /* __linux__ */
1066 }
1067
1068 /*
1069 * obsolete --
1070 * Change set of key letters and ordered arguments into something
1071 * getopt(3) will like.
1072 */
1073 static void
1074 obsolete(int *argcp, char **argvp[])
1075 {
1076 int argc, flags;
1077 char *ap, **argv, *flagsp=NULL, **nargv, *p=NULL;
1078
1079 /* Setup. */
1080 argv = *argvp;
1081 argc = *argcp;
1082
1083 /* Return if no arguments or first argument has leading dash. */
1084 ap = argv[1];
1085 if (argc == 1 || *ap == '-')
1086 return;
1087
1088 /* Allocate space for new arguments. */
1089 if ((*argvp = nargv = malloc((argc + 1) * sizeof(char *))) == NULL ||
1090 (p = flagsp = malloc(strlen(ap) + 2)) == NULL)
1091 err(X_STARTUP, "malloc new args");
1092
1093 *nargv++ = *argv;
1094 argv += 2;
1095
1096 for (flags = 0; *ap; ++ap) {
1097 switch (*ap) {
1098 case 'B':
1099 case 'b':
1100 case 'd':
1101 case 'e':
1102 case 'E':
1103 case 'f':
1104 case 'F':
1105 case 'h':
1106 case 'L':
1107 case 'Q':
1108 case 's':
1109 case 'T':
1110 if (*argv == NULL) {
1111 warnx("option requires an argument -- %c", *ap);
1112 usage();
1113 }
1114 if ((nargv[0] = malloc(strlen(*argv) + 2 + 1)) == NULL)
1115 err(X_STARTUP, "malloc arg");
1116 nargv[0][0] = '-';
1117 nargv[0][1] = *ap;
1118 (void)strcpy(&nargv[0][2], *argv);
1119 ++argv;
1120 ++nargv;
1121 break;
1122 default:
1123 if (!flags) {
1124 *p++ = '-';
1125 flags = 1;
1126 }
1127 *p++ = *ap;
1128 break;
1129 }
1130 }
1131
1132 /* Terminate flags. */
1133 if (flags) {
1134 *p = '\0';
1135 *nargv++ = flagsp;
1136 }
1137
1138 /* Copy remaining arguments. */
1139 while ((*nargv++ = *argv++));
1140
1141 /* Update argument count. */
1142 *argcp = nargv - *argvp - 1;
1143 }
1144
1145 /*
1146 * This tests whether an inode is in the exclude list
1147 */
1148 int
1149 exclude_ino(dump_ino_t ino)
1150 {
1151 /* 04-Feb-00 ILC */
1152 if (iexclude_num) { /* if there are inodes in the exclude list */
1153 int idx; /* then check this inode against it */
1154 for (idx = 0; idx < iexclude_num; idx++)
1155 if (ino == iexclude_list[idx])
1156 return 1;
1157 }
1158 return 0;
1159 }
1160
1161 /*
1162 * This tests adds an inode to the exclusion list if it isn't already there
1163 */
1164 void
1165 do_exclude_ino(dump_ino_t ino, const char *reason)
1166 {
1167 if (!exclude_ino(ino)) {
1168 if (iexclude_num == IEXCLUDE_MAXNUM) {
1169 msg("Too many exclude options\n");
1170 msg("The ENTIRE dump is aborted.\n");
1171 exit(X_STARTUP);
1172 }
1173 if (reason)
1174 msg("Added inode %u to exclude list (%s)\n",
1175 ino, reason);
1176 else
1177 msg("Added inode %u to exclude list\n", ino);
1178 iexclude_list[iexclude_num++] = ino;
1179 }
1180 }
1181
1182 static void
1183 do_exclude_ino_str(char * ino) {
1184 char *r;
1185 unsigned long inod;
1186
1187 inod = strtoul(ino, &r, 10);
1188 if (*r != '\0' || inod <= ROOTINO) {
1189 msg("Invalid inode argument %s\n", ino);
1190 msg("The ENTIRE dump is aborted.\n");
1191 exit(X_STARTUP);
1192 }
1193 do_exclude_ino(inod, NULL);
1194 }
1195
1196 /*
1197 * This reads a file containing one inode number per line and exclude them all
1198 */
1199 static void
1200 do_exclude_from_file(char *file) {
1201 FILE *f;
1202 char *p, fname[MAXPATHLEN];
1203
1204
1205 if (!( f = fopen(file, "r")) ) {
1206 msg("Cannot open file for reading: %s\n", file);
1207 msg("The ENTIRE dump is aborted.\n");
1208 exit(X_STARTUP);
1209 }
1210 while (( p = fgets(fname, MAXPATHLEN, f))) {
1211 if ( *p && *(p + strlen(p) - 1) == '\n' ) /* possible null string */
1212 *(p + strlen(p) - 1) = '\0';
1213 if ( !*p ) /* skip empty lines */
1214 continue;
1215 do_exclude_ino_str(p);
1216 }
1217 fclose(f);
1218 }
1219
1220 static void incompat_flags(int cond, char flag1, char flag2) {
1221 if (cond) {
1222 msg("You cannot use the %c and %c flags together.\n",
1223 flag1, flag2);
1224 msg("The ENTIRE dump is aborted.\n");
1225 exit(X_STARTUP);
1226 }
1227 }