]> git.wh0rd.org - dump.git/blob - restore/main.c
a debug message removed
[dump.git] / restore / 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) 1983, 1993
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.31 2001/11/13 12:11:42 stelian Exp $";
45 #endif /* not lint */
46
47 #include <config.h>
48 #include <compatlfs.h>
49 #include <sys/param.h>
50 #include <sys/stat.h>
51 #include <errno.h>
52
53 #ifdef __linux__
54 #include <sys/time.h>
55 #include <time.h>
56 #ifdef HAVE_EXT2FS_EXT2_FS_H
57 #include <ext2fs/ext2_fs.h>
58 #else
59 #include <linux/ext2_fs.h>
60 #endif
61 #include <bsdcompat.h>
62 #include <signal.h>
63 #include <string.h>
64 #else /* __linux__ */
65 #include <ufs/ufs/dinode.h>
66 #endif /* __linux__ */
67 #include <protocols/dumprestore.h>
68
69 #include <compaterr.h>
70 #include <stdio.h>
71 #include <stdlib.h>
72 #include <unistd.h>
73
74 #ifdef __linux__
75 #include <ext2fs/ext2fs.h>
76 #include <getopt.h>
77 #endif
78
79 #include "pathnames.h"
80 #include "restore.h"
81 #include "extern.h"
82
83 int bflag = 0, cvtflag = 0, dflag = 0, vflag = 0, yflag = 0;
84 int hflag = 1, mflag = 1, Mflag = 0, Nflag = 0, Vflag = 0, zflag = 0;
85 int uflag = 0;
86 int dokerberos = 0;
87 char command = '\0';
88 long dumpnum = 1;
89 long volno = 0;
90 long ntrec;
91 char *dumpmap;
92 char *usedinomap;
93 dump_ino_t maxino;
94 time_t dumptime;
95 time_t dumpdate;
96 FILE *terminal;
97 char *tmpdir;
98 int compare_ignore_not_found;
99 int compare_errors;
100 char filesys[NAMELEN];
101 static const char *stdin_opt = NULL;
102 char *bot_script = NULL;
103
104 #ifdef USE_QFA
105 FILE *gTapeposfp;
106 char *gTapeposfile;
107 char gTps[255];
108 long gSeekstart;
109 int tapeposflag;
110 #endif /* USE_QFA */
111
112 #ifdef __linux__
113 char *__progname;
114 #endif
115
116 static void obsolete __P((int *, char **[]));
117 static void usage __P((void));
118 static void use_stdin __P((const char *));
119
120 int
121 main(int argc, char *argv[])
122 {
123 int ch;
124 dump_ino_t ino;
125 char *inputdev = _PATH_DEFTAPE;
126 char *symtbl = "./restoresymtable";
127 char *p, name[MAXPATHLEN];
128 FILE *filelist = NULL;
129 char fname[MAXPATHLEN];
130 #ifdef USE_QFA
131 tapeposflag = 0;
132 #endif
133 #ifdef USE_QFADEBUG
134 time_t tistart, tiend, titaken;
135 #endif
136
137 /* Temp files should *not* be readable. We set permissions later. */
138 (void) umask(077);
139 filesys[0] = '\0';
140 #ifdef __linux__
141 __progname = argv[0];
142 #endif
143
144 if (argc < 2)
145 usage();
146
147 if ((inputdev = getenv("TAPE")) == NULL)
148 inputdev = _PATH_DEFTAPE;
149 if ((tmpdir = getenv("TMPDIR")) == NULL)
150 tmpdir = _PATH_TMP;
151 if ((tmpdir = strdup(tmpdir)) == NULL)
152 err(1, "malloc tmpdir");
153 for (p = tmpdir + strlen(tmpdir) - 1; p >= tmpdir && *p == '/'; p--)
154 ;
155 obsolete(&argc, &argv);
156 while ((ch = getopt(argc, argv,
157 "b:CcdD:f:F:hi"
158 #ifdef KERBEROS
159 "k"
160 #endif
161 "mMN"
162 #ifdef USE_QFA
163 "Q:"
164 #endif
165 "Rrs:tT:uvVxX:y")) != -1)
166 switch(ch) {
167 case 'b':
168 /* Change default tape blocksize. */
169 bflag = 1;
170 ntrec = strtol(optarg, &p, 10);
171 if (*p)
172 errx(1, "illegal blocksize -- %s", optarg);
173 if (ntrec <= 0)
174 errx(1, "block size must be greater than 0");
175 break;
176 case 'c':
177 cvtflag = 1;
178 break;
179 case 'D':
180 strncpy(filesys, optarg, NAMELEN);
181 filesys[NAMELEN - 1] = '\0';
182 break;
183 case 'T':
184 tmpdir = optarg;
185 break;
186 case 'd':
187 dflag = 1;
188 break;
189 case 'f':
190 if( !strcmp(optarg,"-") )
191 use_stdin("-f");
192 inputdev = optarg;
193 break;
194 case 'F':
195 bot_script = optarg;
196 break;
197 case 'h':
198 hflag = 0;
199 break;
200 #ifdef KERBEROS
201 case 'k':
202 dokerberos = 1;
203 break;
204 #endif
205 case 'C':
206 case 'i':
207 case 'R':
208 case 'r':
209 case 't':
210 case 'x':
211 if (command != '\0')
212 errx(1,
213 "%c and %c options are mutually exclusive",
214 ch, command);
215 command = ch;
216 break;
217 case 'm':
218 mflag = 0;
219 break;
220 case 'M':
221 Mflag = 1;
222 break;
223 case 'N':
224 Nflag = 1;
225 break;
226 #ifdef USE_QFA
227 case 'Q':
228 gTapeposfile = optarg;
229 tapeposflag = 1;
230 break;
231 #endif
232 case 's':
233 /* Dumpnum (skip to) for multifile dump tapes. */
234 dumpnum = strtol(optarg, &p, 10);
235 if (*p)
236 errx(1, "illegal dump number -- %s", optarg);
237 if (dumpnum <= 0)
238 errx(1, "dump number must be greater than 0");
239 break;
240 case 'u':
241 uflag = 1;
242 break;
243 case 'v':
244 vflag = 1;
245 break;
246 case 'V':
247 Vflag = 1;
248 break;
249 case 'X':
250 if( !strcmp(optarg,"-") ) {
251 use_stdin("-X");
252 filelist = stdin;
253 }
254 else
255 if ( !(filelist = fopen(optarg,"r")) )
256 errx(1, "can't open file for reading -- %s", optarg);
257 break;
258 case 'y':
259 yflag = 1;
260 break;
261 default:
262 usage();
263 }
264 argc -= optind;
265 argv += optind;
266
267 if (command == '\0')
268 errx(1, "none of C, i, R, r, t or x options specified");
269
270 #ifdef USE_QFA
271 if (!mflag && tapeposflag)
272 errx(1, "m and Q options are mutually exclusive");
273 #endif
274
275 if (signal(SIGINT, onintr) == SIG_IGN)
276 (void) signal(SIGINT, SIG_IGN);
277 if (signal(SIGTERM, onintr) == SIG_IGN)
278 (void) signal(SIGTERM, SIG_IGN);
279 setlinebuf(stderr);
280
281 atexit(cleanup);
282
283 if (command == 'C' && inputdev[0] != '/' && strcmp(inputdev, "-")) {
284 /* since we chdir into the directory we are comparing
285 * to, we must retain the full tape path */
286 char wd[MAXPATHLEN], fullpathinput[MAXPATHLEN];
287 if (!getcwd(wd, MAXPATHLEN))
288 err(1, "can't get current directory");
289 snprintf(fullpathinput, MAXPATHLEN, "%s/%s", wd, inputdev);
290 fullpathinput[MAXPATHLEN - 1] = '\0';
291 setinput(fullpathinput);
292 }
293 else
294 setinput(inputdev);
295
296 if (argc == 0 && !filelist) {
297 argc = 1;
298 *--argv = ".";
299 }
300
301 #ifdef USE_QFA
302 if (tapeposflag) {
303 msg("reading QFA positions from %s\n", gTapeposfile);
304 if ((gTapeposfp = fopen(gTapeposfile, "r")) == NULL)
305 errx(1, "can't open file for reading -- %s",
306 gTapeposfile);
307 /* start reading header info */
308 if (fgets(gTps, sizeof(gTps), gTapeposfp) == NULL)
309 errx(1, "not requested format of -- %s", gTapeposfile);
310 gTps[strlen(gTps) - 1] = 0; /* delete end of line */
311 if (strcmp(gTps, QFA_MAGIC) != 0)
312 errx(1, "not requested format of -- %s", gTapeposfile);
313 if (fgets(gTps, sizeof(gTps), gTapeposfp) == NULL)
314 errx(1, "not requested format of -- %s", gTapeposfile);
315 gTps[strlen(gTps) - 1] = 0;
316 if (strcmp(gTps, QFA_VERSION) != 0)
317 errx(1, "not requested format of -- %s", gTapeposfile);
318 /* read dumpdate */
319 if (fgets(gTps, sizeof(gTps), gTapeposfp) == NULL)
320 errx(1, "not requested format of -- %s", gTapeposfile);
321 gTps[strlen(gTps) - 1] = 0;
322 /* TODO: check dumpdate from QFA file with current dump file's
323 * dump date */
324 /* if not equal either output warning and continue without QFA
325 * or abort */
326 /* read empty line */
327 if (fgets(gTps, sizeof(gTps), gTapeposfp) == NULL)
328 errx(1, "not requested format of -- %s", gTapeposfile);
329 gTps[strlen(gTps) - 1] = 0;
330 /* read table header line */
331 if (fgets(gTps, sizeof(gTps), gTapeposfp) == NULL)
332 errx(1, "not requested format of -- %s", gTapeposfile);
333 gTps[strlen(gTps) - 1] = 0;
334 /* end reading header info */
335 /* tape position table starts here */
336 gSeekstart = ftell(gTapeposfp); /* remember for later use */
337 }
338 #endif /* USE_QFA */
339
340 switch (command) {
341 /*
342 * Compare contents of tape.
343 */
344 case 'C': {
345 struct STAT stbuf;
346
347 Vprintf(stdout, "Begin compare restore\n");
348 compare_ignore_not_found = 0;
349 compare_errors = 0;
350 setup();
351 printf("filesys = %s\n", filesys);
352 if (STAT(filesys, &stbuf) < 0)
353 err(1, "cannot stat directory %s", filesys);
354 if (chdir(filesys) < 0)
355 err(1, "cannot cd to %s", filesys);
356 compare_ignore_not_found = dumptime > 0;
357 initsymtable((char *)0);
358 extractdirs(0);
359 treescan(".", ROOTINO, nodeupdates);
360 compareleaves();
361 checkrestore();
362 if (compare_errors) {
363 printf("Some files were modified!\n");
364 exit(2);
365 }
366 break;
367 }
368
369 /*
370 * Interactive mode.
371 */
372 case 'i':
373 setup();
374 extractdirs(1);
375 initsymtable(NULL);
376 runcmdshell();
377 break;
378 /*
379 * Incremental restoration of a file system.
380 */
381 case 'r':
382 setup();
383 if (dumptime > 0) {
384 /*
385 * This is an incremental dump tape.
386 */
387 Vprintf(stdout, "Begin incremental restore\n");
388 initsymtable(symtbl);
389 extractdirs(1);
390 removeoldleaves();
391 Vprintf(stdout, "Calculate node updates.\n");
392 treescan(".", ROOTINO, nodeupdates);
393 findunreflinks();
394 removeoldnodes();
395 } else {
396 /*
397 * This is a level zero dump tape.
398 */
399 Vprintf(stdout, "Begin level 0 restore\n");
400 initsymtable((char *)0);
401 extractdirs(1);
402 Vprintf(stdout, "Calculate extraction list.\n");
403 treescan(".", ROOTINO, nodeupdates);
404 }
405 createleaves(symtbl);
406 createlinks();
407 setdirmodes(FORCE);
408 checkrestore();
409 if (dflag) {
410 Vprintf(stdout, "Verify the directory structure\n");
411 treescan(".", ROOTINO, verifyfile);
412 }
413 dumpsymtable(symtbl, (long)1);
414 break;
415 /*
416 * Resume an incremental file system restoration.
417 */
418 case 'R':
419 initsymtable(symtbl);
420 skipmaps();
421 skipdirs();
422 createleaves(symtbl);
423 createlinks();
424 setdirmodes(FORCE);
425 checkrestore();
426 dumpsymtable(symtbl, (long)1);
427 break;
428
429 /* handle file names from either text file (-X) or the command line */
430 #define NEXTFILE(p) \
431 p = NULL; \
432 if (argc) { \
433 --argc; \
434 p = *argv++; \
435 } \
436 else if (filelist) { \
437 if ((p = fgets(fname, MAXPATHLEN, filelist))) { \
438 if ( *p && *(p + strlen(p) - 1) == '\n' ) /* possible null string */ \
439 *(p + strlen(p) - 1) = '\0'; \
440 if ( !*p ) /* skip empty lines */ \
441 continue; \
442 } \
443 }
444
445 /*
446 * List contents of tape.
447 */
448 case 't':
449 setup();
450 extractdirs(0);
451 initsymtable((char *)0);
452 for (;;) {
453 NEXTFILE(p);
454 if (!p)
455 break;
456 canon(p, name, sizeof(name));
457 ino = dirlookup(name);
458 if (ino == 0)
459 continue;
460 treescan(name, ino, listfile);
461 }
462 break;
463 /*
464 * Batch extraction of tape contents.
465 */
466 case 'x':
467 #ifdef USE_QFADEBUG
468 tistart = time(NULL);
469 #endif
470 setup();
471 extractdirs(1);
472 initsymtable((char *)0);
473 for (;;) {
474 NEXTFILE(p);
475 if (!p)
476 break;
477 canon(p, name, sizeof(name));
478 ino = dirlookup(name);
479 if (ino == 0)
480 continue;
481 if (mflag)
482 pathcheck(name);
483 treescan(name, ino, addfile);
484 }
485 createfiles();
486 createlinks();
487 setdirmodes(0);
488 if (dflag)
489 checkrestore();
490 #ifdef USE_QFADEBUG
491 tiend = time(NULL);
492 titaken = tiend - tistart;
493 msg("restore took %d:%02d:%02d\n", titaken / 3600,
494 (titaken % 3600) / 60, titaken % 60);
495 #endif /* USE_QFADEBUG */
496 break;
497 }
498 exit(0);
499 /* NOTREACHED */
500 return 0; /* gcc shut up */
501 }
502
503 static void
504 usage(void)
505 {
506 #ifdef __linux__
507 const char *ext2ver, *ext2date;
508
509 ext2fs_get_library_version(&ext2ver, &ext2date);
510 (void)fprintf(stderr, "%s %s (using libext2fs %s of %s)\n",
511 __progname, _DUMP_VERSION, ext2ver, ext2date);
512 #else
513 (void)fprintf(stderr, "%s %s\n", __progname, _DUMP_VERSION);
514 #endif
515
516 #ifdef KERBEROS
517 #define kerbflag "k"
518 #else
519 #define kerbflag
520 #endif
521
522 #ifdef USE_QFA
523 #define qfaflag "[-Q file] "
524 #else
525 #define qfaflag
526 #endif
527
528 (void)fprintf(stderr,
529 "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",
530 __progname, " -C [-c" kerbflag "MvVy] [-b blocksize] [-D filesystem] [-f file] [-F script] [-s fileno]",
531 __progname, " -i [-ch" kerbflag "mMuvVy] [-b blocksize] [-f file] [-F script] " qfaflag "[-s fileno]",
532 __progname, " -r [-c" kerbflag "MuvVy] [-b blocksize] [-f file] [-F script] [-s fileno] [-T directory]",
533 __progname, " -R [-c" kerbflag "MuvVy] [-b blocksize] [-f file] [-F script] [-s fileno] [-T directory]",
534 __progname, " -t [-ch" kerbflag "MuvVy] [-b blocksize] [-f file] [-F script] " qfaflag "[-s fileno] [-X filelist] [file ...]",
535 __progname, " -x [-ch" kerbflag "mMuvVy] [-b blocksize] [-f file] [-F script] " qfaflag "[-s fileno] [-X filelist] [file ...]");
536 exit(1);
537 }
538
539 /*
540 * obsolete --
541 * Change set of key letters and ordered arguments into something
542 * getopt(3) will like.
543 */
544 static void
545 obsolete(int *argcp, char **argvp[])
546 {
547 int argc, flags;
548 char *ap, **argv, *flagsp = NULL, **nargv, *p = NULL;
549
550 /* Setup. */
551 argv = *argvp;
552 argc = *argcp;
553
554 /* Return if no arguments or first argument has leading dash. */
555 ap = argv[1];
556 if (argc == 1 || *ap == '-')
557 return;
558
559 /* Allocate space for new arguments. */
560 if ((*argvp = nargv = malloc((argc + 1) * sizeof(char *))) == NULL ||
561 (p = flagsp = malloc(strlen(ap) + 2)) == NULL)
562 err(1, "malloc args");
563
564 *nargv++ = *argv;
565 argv += 2, argc -= 2;
566
567 for (flags = 0; *ap; ++ap) {
568 switch (*ap) {
569 case 'b':
570 case 'D':
571 case 'f':
572 case 'F':
573 case 'Q':
574 case 's':
575 case 'T':
576 case 'X':
577 if (*argv == NULL) {
578 warnx("option requires an argument -- %c", *ap);
579 usage();
580 }
581 if ((nargv[0] = malloc(strlen(*argv) + 2 + 1)) == NULL)
582 err(1, "malloc arg");
583 nargv[0][0] = '-';
584 nargv[0][1] = *ap;
585 (void)strcpy(&nargv[0][2], *argv);
586 ++argv;
587 ++nargv;
588 break;
589 default:
590 if (!flags) {
591 *p++ = '-';
592 flags = 1;
593 }
594 *p++ = *ap;
595 break;
596 }
597 }
598
599 /* Terminate flags. */
600 if (flags) {
601 *p = '\0';
602 *nargv++ = flagsp;
603 }
604
605 /* Copy remaining arguments. */
606 while ((*nargv++ = *argv++));
607
608 /* Update argument count. */
609 *argcp = nargv - *argvp - 1;
610 }
611
612 /*
613 * use_stdin --
614 * reserve stdin for opt (avoid conflicts)
615 */
616 void
617 use_stdin(const char *opt)
618 {
619 if (stdin_opt)
620 errx(1, "can't handle standard input for both %s and %s",
621 stdin_opt, opt);
622 stdin_opt = opt;
623 }