2 * Ported to Linux's Second Extended File System as part of the
3 * dump and restore backup suit
4 * Remy Card <card@Linux.EU.Org>, 1994-1997
5 * Stelian Pop <pop@noos.fr>, 1999-2000
6 * Stelian Pop <pop@noos.fr> - AlcĂ´ve <www.alcove.fr>, 2000
10 * Copyright (c) 1983, 1993
11 * The Regents of the University of California. All rights reserved.
13 * Redistribution and use in source and binary forms, with or without
14 * modification, are permitted provided that the following conditions
16 * 1. Redistributions of source code must retain the above copyright
17 * notice, this list of conditions and the following disclaimer.
18 * 2. Redistributions in binary form must reproduce the above copyright
19 * notice, this list of conditions and the following disclaimer in the
20 * documentation and/or other materials provided with the distribution.
21 * 3. All advertising materials mentioning features or use of this software
22 * must display the following acknowledgement:
23 * This product includes software developed by the University of
24 * California, Berkeley and its contributors.
25 * 4. Neither the name of the University nor the names of its contributors
26 * may be used to endorse or promote products derived from this software
27 * without specific prior written permission.
29 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
30 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
31 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
32 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
33 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
34 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
35 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
36 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
37 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
38 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
43 static const char rcsid[] =
44 "$Id: main.c,v 1.23 2001/04/26 08:59:32 stelian Exp $";
48 #include <sys/param.h>
55 #ifdef HAVE_EXT2FS_EXT2_FS_H
56 #include <ext2fs/ext2_fs.h>
58 #include <linux/ext2_fs.h>
60 #include <bsdcompat.h>
64 #include <ufs/ufs/dinode.h>
65 #endif /* __linux__ */
66 #include <protocols/dumprestore.h>
68 #include <compaterr.h>
74 #include <ext2fs/ext2fs.h>
78 #include "pathnames.h"
82 int bflag = 0, cvtflag = 0, dflag = 0, vflag = 0, yflag = 0;
83 int hflag = 1, mflag = 1, Nflag = 0, zflag = 0;
97 int compare_ignore_not_found;
99 char filesys[NAMELEN];
100 static const char *stdin_opt = NULL;
106 static void obsolete __P((int *, char **[]));
107 static void usage __P((void));
108 static void use_stdin __P((const char *));
111 main(int argc, char *argv[])
115 char *inputdev = _PATH_DEFTAPE;
116 char *symtbl = "./restoresymtable";
117 char *p, name[MAXPATHLEN];
118 FILE *filelist = NULL;
119 char fname[MAXPATHLEN];
124 time_t tistart, tiend, titaken;
127 /* Temp files should *not* be readable. We set permissions later. */
131 __progname = argv[0];
137 if ((inputdev = getenv("TAPE")) == NULL)
138 inputdev = _PATH_DEFTAPE;
139 if ((tmpdir = getenv("TMPDIR")) == NULL)
141 if ((tmpdir = strdup(tmpdir)) == NULL)
142 err(1, "malloc tmpdir");
143 for (p = tmpdir + strlen(tmpdir) - 1; p >= tmpdir && *p == '/'; p--)
145 obsolete(&argc, &argv);
146 while ((ch = getopt(argc, argv,
155 "Rrs:tT:uvxX:y")) != -1)
158 /* Change default tape blocksize. */
160 ntrec = strtol(optarg, &p, 10);
162 errx(1, "illegal blocksize -- %s", optarg);
164 errx(1, "block size must be greater than 0");
170 strncpy(filesys, optarg, NAMELEN);
171 filesys[NAMELEN - 1] = '\0';
180 if( !strcmp(optarg,"-") )
200 "%c and %c options are mutually exclusive",
215 gTapeposfile = optarg;
220 /* Dumpnum (skip to) for multifile dump tapes. */
221 dumpnum = strtol(optarg, &p, 10);
223 errx(1, "illegal dump number -- %s", optarg);
225 errx(1, "dump number must be greater than 0");
234 if( !strcmp(optarg,"-") ) {
239 if ( !(filelist = fopen(optarg,"r")) )
240 errx(1, "can't open file for reading -- %s", optarg);
252 errx(1, "none of C, i, R, r, t or x options specified");
255 if (!mflag && tapeposflag)
256 errx(1, "m and Q options are mutually exclusive");
259 if (signal(SIGINT, onintr) == SIG_IGN)
260 (void) signal(SIGINT, SIG_IGN);
261 if (signal(SIGTERM, onintr) == SIG_IGN)
262 (void) signal(SIGTERM, SIG_IGN);
269 if (argc == 0 && !filelist) {
276 msg("reading QFA positions from %s\n", gTapeposfile);
277 if ((gTapeposfp = fopen(gTapeposfile, "r")) == NULL)
278 errx(1, "can't open file for reading -- %s",
280 /* start reading header info */
281 if (fgets(gTps, sizeof(gTps), gTapeposfp) == NULL)
282 errx(1, "not requested format of -- %s", gTapeposfile);
283 gTps[strlen(gTps) - 1] = 0; /* delete end of line */
284 if (strcmp(gTps, QFA_MAGIC) != 0)
285 errx(1, "not requested format of -- %s", gTapeposfile);
286 if (fgets(gTps, sizeof(gTps), gTapeposfp) == NULL)
287 errx(1, "not requested format of -- %s", gTapeposfile);
288 gTps[strlen(gTps) - 1] = 0;
289 if (strcmp(gTps, QFA_VERSION) != 0)
290 errx(1, "not requested format of -- %s", gTapeposfile);
292 if (fgets(gTps, sizeof(gTps), gTapeposfp) == NULL)
293 errx(1, "not requested format of -- %s", gTapeposfile);
294 gTps[strlen(gTps) - 1] = 0;
295 /* TODO: check dumpdate from QFA file with current dump file's
297 /* if not equal either output warning and continue without QFA
299 /* read empty line */
300 if (fgets(gTps, sizeof(gTps), gTapeposfp) == NULL)
301 errx(1, "not requested format of -- %s", gTapeposfile);
302 gTps[strlen(gTps) - 1] = 0;
303 /* read table header line */
304 if (fgets(gTps, sizeof(gTps), gTapeposfp) == NULL)
305 errx(1, "not requested format of -- %s", gTapeposfile);
306 gTps[strlen(gTps) - 1] = 0;
307 /* end reading header info */
308 /* tape position table starts here */
309 gSeekstart = ftell(gTapeposfp); /* remember for later use */
315 * Compare contents of tape.
320 Vprintf(stdout, "Begin compare restore\n");
321 compare_ignore_not_found = 0;
324 printf("filesys = %s\n", filesys);
325 if (stat(filesys, &stbuf) < 0)
326 err(1, "cannot stat directory %s", filesys);
327 if (chdir(filesys) < 0)
328 err(1, "cannot cd to %s", filesys);
329 compare_ignore_not_found = dumptime > 0;
330 initsymtable((char *)0);
332 treescan(".", ROOTINO, nodeupdates);
335 if (compare_errors) {
336 printf("Some files were modified!\n");
352 * Incremental restoration of a file system.
358 * This is an incremental dump tape.
360 Vprintf(stdout, "Begin incremental restore\n");
361 initsymtable(symtbl);
364 Vprintf(stdout, "Calculate node updates.\n");
365 treescan(".", ROOTINO, nodeupdates);
370 * This is a level zero dump tape.
372 Vprintf(stdout, "Begin level 0 restore\n");
373 initsymtable((char *)0);
375 Vprintf(stdout, "Calculate extraction list.\n");
376 treescan(".", ROOTINO, nodeupdates);
378 createleaves(symtbl);
383 Vprintf(stdout, "Verify the directory structure\n");
384 treescan(".", ROOTINO, verifyfile);
386 dumpsymtable(symtbl, (long)1);
389 * Resume an incremental file system restoration.
392 initsymtable(symtbl);
395 createleaves(symtbl);
399 dumpsymtable(symtbl, (long)1);
402 /* handle file names from either text file (-X) or the command line */
403 #define NEXTFILE(p) \
409 else if (filelist) { \
410 if ((p = fgets(fname, MAXPATHLEN, filelist))) { \
411 if ( *p && *(p + strlen(p) - 1) == '\n' ) /* possible null string */ \
412 *(p + strlen(p) - 1) = '\0'; \
413 if ( !*p ) /* skip empty lines */ \
419 * List contents of tape.
424 initsymtable((char *)0);
429 canon(p, name, sizeof(name));
430 ino = dirlookup(name);
433 treescan(name, ino, listfile);
437 * Batch extraction of tape contents.
441 tistart = time(NULL);
445 initsymtable((char *)0);
450 canon(p, name, sizeof(name));
451 ino = dirlookup(name);
456 treescan(name, ino, addfile);
465 titaken = tiend - tistart;
466 msg("restore took %d:%02d:%02d\n", titaken / 3600,
467 (titaken % 3600) / 60, titaken % 60);
468 #endif /* USE_QFADEBUG */
473 return 0; /* gcc shut up */
480 const char *ext2ver, *ext2date;
482 ext2fs_get_library_version(&ext2ver, &ext2date);
483 (void)fprintf(stderr, "%s %s (using libext2fs %s of %s)\n",
484 __progname, _DUMP_VERSION, ext2ver, ext2date);
486 (void)fprintf(stderr, "%s %s\n", __progname, _DUMP_VERSION);
496 #define qfaflag "[-Q file] "
501 (void)fprintf(stderr,
502 "usage:\t%s%s\n\t%s%s\n\t%s%s\n\t%s%s\n\t%s%s\n\t%s%s\n",
503 __progname, " -C [-c" kerbflag "Mvy] [-b blocksize] [-D filesystem] [-f file] [-s fileno]",
504 __progname, " -i [-ch" kerbflag "mMuvy] [-b blocksize] [-f file] " qfaflag "[-s fileno]",
505 __progname, " -r [-c" kerbflag "Muvy] [-b blocksize] [-f file] [-s fileno] [-T directory]",
506 __progname, " -R [-c" kerbflag "Muvy] [-b blocksize] [-f file] [-s fileno] [-T directory]",
507 __progname, " -t [-ch" kerbflag "Muvy] [-b blocksize] [-f file] " qfaflag "[-s fileno] [-X filelist] [file ...]",
508 __progname, " -x [-ch" kerbflag "mMuvy] [-b blocksize] [-f file] " qfaflag "[-s fileno] [-X filelist] [file ...]");
514 * Change set of key letters and ordered arguments into something
515 * getopt(3) will like.
518 obsolete(int *argcp, char **argvp[])
521 char *ap, **argv, *flagsp = NULL, **nargv, *p = NULL;
527 /* Return if no arguments or first argument has leading dash. */
529 if (argc == 1 || *ap == '-')
532 /* Allocate space for new arguments. */
533 if ((*argvp = nargv = malloc((argc + 1) * sizeof(char *))) == NULL ||
534 (p = flagsp = malloc(strlen(ap) + 2)) == NULL)
535 err(1, "malloc args");
538 argv += 2, argc -= 2;
540 for (flags = 0; *ap; ++ap) {
550 warnx("option requires an argument -- %c", *ap);
553 if ((nargv[0] = malloc(strlen(*argv) + 2 + 1)) == NULL)
554 err(1, "malloc arg");
557 (void)strcpy(&nargv[0][2], *argv);
571 /* Terminate flags. */
577 /* Copy remaining arguments. */
578 while ((*nargv++ = *argv++));
580 /* Update argument count. */
581 *argcp = nargv - *argvp - 1;
586 * reserve stdin for opt (avoid conflicts)
589 use_stdin(const char *opt)
592 errx(1, "can't handle standard input for both %s and %s",