Home | History | Annotate | Line # | Download | only in restore
main.c revision 1.1.1.3
      1      1.1      cgd /*
      2  1.1.1.2  mycroft  * Copyright (c) 1983, 1993
      3  1.1.1.2  mycroft  *	The Regents of the University of California.  All rights reserved.
      4      1.1      cgd  *
      5      1.1      cgd  * Redistribution and use in source and binary forms, with or without
      6      1.1      cgd  * modification, are permitted provided that the following conditions
      7      1.1      cgd  * are met:
      8      1.1      cgd  * 1. Redistributions of source code must retain the above copyright
      9      1.1      cgd  *    notice, this list of conditions and the following disclaimer.
     10      1.1      cgd  * 2. Redistributions in binary form must reproduce the above copyright
     11      1.1      cgd  *    notice, this list of conditions and the following disclaimer in the
     12      1.1      cgd  *    documentation and/or other materials provided with the distribution.
     13      1.1      cgd  * 3. All advertising materials mentioning features or use of this software
     14      1.1      cgd  *    must display the following acknowledgement:
     15      1.1      cgd  *	This product includes software developed by the University of
     16      1.1      cgd  *	California, Berkeley and its contributors.
     17      1.1      cgd  * 4. Neither the name of the University nor the names of its contributors
     18      1.1      cgd  *    may be used to endorse or promote products derived from this software
     19      1.1      cgd  *    without specific prior written permission.
     20      1.1      cgd  *
     21      1.1      cgd  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     22      1.1      cgd  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     23      1.1      cgd  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     24      1.1      cgd  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     25      1.1      cgd  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     26      1.1      cgd  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     27      1.1      cgd  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     28      1.1      cgd  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     29      1.1      cgd  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     30      1.1      cgd  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     31      1.1      cgd  * SUCH DAMAGE.
     32      1.1      cgd  */
     33      1.1      cgd 
     34      1.1      cgd #ifndef lint
     35  1.1.1.2  mycroft static char copyright[] =
     36  1.1.1.2  mycroft "@(#) Copyright (c) 1983, 1993\n\
     37  1.1.1.2  mycroft 	The Regents of the University of California.  All rights reserved.\n";
     38      1.1      cgd #endif /* not lint */
     39      1.1      cgd 
     40      1.1      cgd #ifndef lint
     41  1.1.1.3    lukem static char sccsid[] = "@(#)main.c	8.6 (Berkeley) 5/4/95";
     42      1.1      cgd #endif /* not lint */
     43      1.1      cgd 
     44  1.1.1.2  mycroft #include <sys/param.h>
     45  1.1.1.2  mycroft #include <sys/time.h>
     46      1.1      cgd 
     47  1.1.1.2  mycroft #include <ufs/ufs/dinode.h>
     48  1.1.1.3    lukem #include <ufs/ffs/fs.h>
     49      1.1      cgd #include <protocols/dumprestore.h>
     50  1.1.1.2  mycroft 
     51  1.1.1.2  mycroft #include <err.h>
     52  1.1.1.2  mycroft #include <errno.h>
     53  1.1.1.2  mycroft #include <signal.h>
     54  1.1.1.2  mycroft #include <stdio.h>
     55  1.1.1.2  mycroft #include <stdlib.h>
     56  1.1.1.2  mycroft #include <string.h>
     57  1.1.1.3    lukem #include <unistd.h>
     58  1.1.1.2  mycroft 
     59      1.1      cgd #include "pathnames.h"
     60  1.1.1.2  mycroft #include "restore.h"
     61  1.1.1.2  mycroft #include "extern.h"
     62      1.1      cgd 
     63      1.1      cgd int	bflag = 0, cvtflag = 0, dflag = 0, vflag = 0, yflag = 0;
     64      1.1      cgd int	hflag = 1, mflag = 1, Nflag = 0;
     65      1.1      cgd char	command = '\0';
     66      1.1      cgd long	dumpnum = 1;
     67      1.1      cgd long	volno = 0;
     68      1.1      cgd long	ntrec;
     69      1.1      cgd char	*dumpmap;
     70  1.1.1.3    lukem char	*usedinomap;
     71      1.1      cgd ino_t	maxino;
     72      1.1      cgd time_t	dumptime;
     73      1.1      cgd time_t	dumpdate;
     74      1.1      cgd FILE 	*terminal;
     75      1.1      cgd 
     76  1.1.1.2  mycroft static void obsolete __P((int *, char **[]));
     77  1.1.1.2  mycroft static void usage __P((void));
     78  1.1.1.2  mycroft 
     79  1.1.1.2  mycroft int
     80      1.1      cgd main(argc, argv)
     81      1.1      cgd 	int argc;
     82      1.1      cgd 	char *argv[];
     83      1.1      cgd {
     84  1.1.1.2  mycroft 	int ch;
     85      1.1      cgd 	ino_t ino;
     86      1.1      cgd 	char *inputdev = _PATH_DEFTAPE;
     87      1.1      cgd 	char *symtbl = "./restoresymtable";
     88  1.1.1.2  mycroft 	char *p, name[MAXPATHLEN];
     89      1.1      cgd 
     90  1.1.1.2  mycroft 	if (argc < 2)
     91  1.1.1.2  mycroft 		usage();
     92  1.1.1.2  mycroft 
     93  1.1.1.2  mycroft 	obsolete(&argc, &argv);
     94  1.1.1.2  mycroft 	while ((ch = getopt(argc, argv, "b:cdf:himNRrs:tvxy")) != EOF)
     95  1.1.1.2  mycroft 		switch(ch) {
     96  1.1.1.2  mycroft 		case 'b':
     97  1.1.1.2  mycroft 			/* Change default tape blocksize. */
     98  1.1.1.2  mycroft 			bflag = 1;
     99  1.1.1.2  mycroft 			ntrec = strtol(optarg, &p, 10);
    100  1.1.1.2  mycroft 			if (*p)
    101  1.1.1.2  mycroft 				errx(1, "illegal blocksize -- %s", optarg);
    102  1.1.1.2  mycroft 			if (ntrec <= 0)
    103  1.1.1.2  mycroft 				errx(1, "block size must be greater than 0");
    104      1.1      cgd 			break;
    105      1.1      cgd 		case 'c':
    106  1.1.1.2  mycroft 			cvtflag = 1;
    107      1.1      cgd 			break;
    108      1.1      cgd 		case 'd':
    109  1.1.1.2  mycroft 			dflag = 1;
    110  1.1.1.2  mycroft 			break;
    111  1.1.1.2  mycroft 		case 'f':
    112  1.1.1.2  mycroft 			inputdev = optarg;
    113      1.1      cgd 			break;
    114      1.1      cgd 		case 'h':
    115      1.1      cgd 			hflag = 0;
    116      1.1      cgd 			break;
    117  1.1.1.2  mycroft 		case 'i':
    118  1.1.1.2  mycroft 		case 'R':
    119  1.1.1.2  mycroft 		case 'r':
    120  1.1.1.2  mycroft 		case 't':
    121  1.1.1.2  mycroft 		case 'x':
    122  1.1.1.2  mycroft 			if (command != '\0')
    123  1.1.1.2  mycroft 				errx(1,
    124  1.1.1.2  mycroft 				    "%c and %c options are mutually exclusive",
    125  1.1.1.2  mycroft 				    ch, command);
    126  1.1.1.2  mycroft 			command = ch;
    127  1.1.1.2  mycroft 			break;
    128      1.1      cgd 		case 'm':
    129      1.1      cgd 			mflag = 0;
    130      1.1      cgd 			break;
    131      1.1      cgd 		case 'N':
    132  1.1.1.2  mycroft 			Nflag = 1;
    133  1.1.1.2  mycroft 			break;
    134  1.1.1.2  mycroft 		case 's':
    135  1.1.1.2  mycroft 			/* Dumpnum (skip to) for multifile dump tapes. */
    136  1.1.1.2  mycroft 			dumpnum = strtol(optarg, &p, 10);
    137  1.1.1.2  mycroft 			if (*p)
    138  1.1.1.2  mycroft 				errx(1, "illegal dump number -- %s", optarg);
    139  1.1.1.2  mycroft 			if (dumpnum <= 0)
    140  1.1.1.2  mycroft 				errx(1, "dump number must be greater than 0");
    141      1.1      cgd 			break;
    142      1.1      cgd 		case 'v':
    143  1.1.1.2  mycroft 			vflag = 1;
    144      1.1      cgd 			break;
    145      1.1      cgd 		case 'y':
    146  1.1.1.2  mycroft 			yflag = 1;
    147      1.1      cgd 			break;
    148      1.1      cgd 		default:
    149  1.1.1.2  mycroft 			usage();
    150      1.1      cgd 		}
    151  1.1.1.2  mycroft 	argc -= optind;
    152  1.1.1.2  mycroft 	argv += optind;
    153  1.1.1.2  mycroft 
    154  1.1.1.2  mycroft 	if (command == '\0')
    155  1.1.1.2  mycroft 		errx(1, "none of i, R, r, t or x options specified");
    156  1.1.1.2  mycroft 
    157  1.1.1.2  mycroft 	if (signal(SIGINT, onintr) == SIG_IGN)
    158  1.1.1.2  mycroft 		(void) signal(SIGINT, SIG_IGN);
    159  1.1.1.2  mycroft 	if (signal(SIGTERM, onintr) == SIG_IGN)
    160  1.1.1.2  mycroft 		(void) signal(SIGTERM, SIG_IGN);
    161  1.1.1.2  mycroft 	setlinebuf(stderr);
    162  1.1.1.2  mycroft 
    163      1.1      cgd 	setinput(inputdev);
    164  1.1.1.2  mycroft 
    165      1.1      cgd 	if (argc == 0) {
    166      1.1      cgd 		argc = 1;
    167      1.1      cgd 		*--argv = ".";
    168      1.1      cgd 	}
    169  1.1.1.2  mycroft 
    170      1.1      cgd 	switch (command) {
    171      1.1      cgd 	/*
    172      1.1      cgd 	 * Interactive mode.
    173      1.1      cgd 	 */
    174      1.1      cgd 	case 'i':
    175      1.1      cgd 		setup();
    176      1.1      cgd 		extractdirs(1);
    177  1.1.1.2  mycroft 		initsymtable(NULL);
    178      1.1      cgd 		runcmdshell();
    179  1.1.1.2  mycroft 		break;
    180      1.1      cgd 	/*
    181      1.1      cgd 	 * Incremental restoration of a file system.
    182      1.1      cgd 	 */
    183      1.1      cgd 	case 'r':
    184      1.1      cgd 		setup();
    185      1.1      cgd 		if (dumptime > 0) {
    186      1.1      cgd 			/*
    187      1.1      cgd 			 * This is an incremental dump tape.
    188      1.1      cgd 			 */
    189      1.1      cgd 			vprintf(stdout, "Begin incremental restore\n");
    190      1.1      cgd 			initsymtable(symtbl);
    191      1.1      cgd 			extractdirs(1);
    192      1.1      cgd 			removeoldleaves();
    193      1.1      cgd 			vprintf(stdout, "Calculate node updates.\n");
    194      1.1      cgd 			treescan(".", ROOTINO, nodeupdates);
    195      1.1      cgd 			findunreflinks();
    196      1.1      cgd 			removeoldnodes();
    197      1.1      cgd 		} else {
    198      1.1      cgd 			/*
    199      1.1      cgd 			 * This is a level zero dump tape.
    200      1.1      cgd 			 */
    201      1.1      cgd 			vprintf(stdout, "Begin level 0 restore\n");
    202      1.1      cgd 			initsymtable((char *)0);
    203      1.1      cgd 			extractdirs(1);
    204      1.1      cgd 			vprintf(stdout, "Calculate extraction list.\n");
    205      1.1      cgd 			treescan(".", ROOTINO, nodeupdates);
    206      1.1      cgd 		}
    207      1.1      cgd 		createleaves(symtbl);
    208      1.1      cgd 		createlinks();
    209  1.1.1.2  mycroft 		setdirmodes(FORCE);
    210      1.1      cgd 		checkrestore();
    211      1.1      cgd 		if (dflag) {
    212      1.1      cgd 			vprintf(stdout, "Verify the directory structure\n");
    213      1.1      cgd 			treescan(".", ROOTINO, verifyfile);
    214      1.1      cgd 		}
    215      1.1      cgd 		dumpsymtable(symtbl, (long)1);
    216  1.1.1.2  mycroft 		break;
    217      1.1      cgd 	/*
    218      1.1      cgd 	 * Resume an incremental file system restoration.
    219      1.1      cgd 	 */
    220      1.1      cgd 	case 'R':
    221      1.1      cgd 		initsymtable(symtbl);
    222      1.1      cgd 		skipmaps();
    223      1.1      cgd 		skipdirs();
    224      1.1      cgd 		createleaves(symtbl);
    225      1.1      cgd 		createlinks();
    226  1.1.1.2  mycroft 		setdirmodes(FORCE);
    227      1.1      cgd 		checkrestore();
    228      1.1      cgd 		dumpsymtable(symtbl, (long)1);
    229  1.1.1.2  mycroft 		break;
    230      1.1      cgd 	/*
    231      1.1      cgd 	 * List contents of tape.
    232      1.1      cgd 	 */
    233      1.1      cgd 	case 't':
    234      1.1      cgd 		setup();
    235      1.1      cgd 		extractdirs(0);
    236      1.1      cgd 		initsymtable((char *)0);
    237      1.1      cgd 		while (argc--) {
    238      1.1      cgd 			canon(*argv++, name);
    239      1.1      cgd 			ino = dirlookup(name);
    240      1.1      cgd 			if (ino == 0)
    241      1.1      cgd 				continue;
    242      1.1      cgd 			treescan(name, ino, listfile);
    243      1.1      cgd 		}
    244  1.1.1.2  mycroft 		break;
    245      1.1      cgd 	/*
    246      1.1      cgd 	 * Batch extraction of tape contents.
    247      1.1      cgd 	 */
    248      1.1      cgd 	case 'x':
    249      1.1      cgd 		setup();
    250      1.1      cgd 		extractdirs(1);
    251      1.1      cgd 		initsymtable((char *)0);
    252      1.1      cgd 		while (argc--) {
    253      1.1      cgd 			canon(*argv++, name);
    254      1.1      cgd 			ino = dirlookup(name);
    255      1.1      cgd 			if (ino == 0)
    256      1.1      cgd 				continue;
    257      1.1      cgd 			if (mflag)
    258      1.1      cgd 				pathcheck(name);
    259      1.1      cgd 			treescan(name, ino, addfile);
    260      1.1      cgd 		}
    261      1.1      cgd 		createfiles();
    262      1.1      cgd 		createlinks();
    263  1.1.1.2  mycroft 		setdirmodes(0);
    264      1.1      cgd 		if (dflag)
    265      1.1      cgd 			checkrestore();
    266  1.1.1.2  mycroft 		break;
    267  1.1.1.2  mycroft 	}
    268  1.1.1.2  mycroft 	done(0);
    269  1.1.1.2  mycroft 	/* NOTREACHED */
    270  1.1.1.2  mycroft }
    271  1.1.1.2  mycroft 
    272  1.1.1.2  mycroft static void
    273  1.1.1.2  mycroft usage()
    274  1.1.1.2  mycroft {
    275  1.1.1.3    lukem 	(void)fprintf(stderr, "usage:\t%s\n\t%s\n\t%s\n\t%s\n\t%s\n",
    276  1.1.1.3    lukem 	  "restore -i [-chmvy] [-b blocksize] [-f file] [-s fileno]",
    277  1.1.1.3    lukem 	  "restore -r [-cvy] [-b blocksize] [-f file] [-s fileno]",
    278  1.1.1.3    lukem 	  "restore -R [-cvy] [-b blocksize] [-f file] [-s fileno]",
    279  1.1.1.3    lukem 	  "restore -x [-chmvy] [-b blocksize] [-f file] [-s fileno] [file ...]",
    280  1.1.1.3    lukem 	  "restore -t [-chvy] [-b blocksize] [-f file] [-s fileno] [file ...]");
    281  1.1.1.2  mycroft 	done(1);
    282  1.1.1.2  mycroft }
    283  1.1.1.2  mycroft 
    284  1.1.1.2  mycroft /*
    285  1.1.1.2  mycroft  * obsolete --
    286  1.1.1.2  mycroft  *	Change set of key letters and ordered arguments into something
    287  1.1.1.2  mycroft  *	getopt(3) will like.
    288  1.1.1.2  mycroft  */
    289  1.1.1.2  mycroft static void
    290  1.1.1.2  mycroft obsolete(argcp, argvp)
    291  1.1.1.2  mycroft 	int *argcp;
    292  1.1.1.2  mycroft 	char **argvp[];
    293  1.1.1.2  mycroft {
    294  1.1.1.2  mycroft 	int argc, flags;
    295  1.1.1.2  mycroft 	char *ap, **argv, *flagsp, **nargv, *p;
    296  1.1.1.2  mycroft 
    297  1.1.1.2  mycroft 	/* Setup. */
    298  1.1.1.2  mycroft 	argv = *argvp;
    299  1.1.1.2  mycroft 	argc = *argcp;
    300  1.1.1.2  mycroft 
    301  1.1.1.2  mycroft 	/* Return if no arguments or first argument has leading dash. */
    302  1.1.1.2  mycroft 	ap = argv[1];
    303  1.1.1.2  mycroft 	if (argc == 1 || *ap == '-')
    304  1.1.1.2  mycroft 		return;
    305  1.1.1.2  mycroft 
    306  1.1.1.2  mycroft 	/* Allocate space for new arguments. */
    307  1.1.1.2  mycroft 	if ((*argvp = nargv = malloc((argc + 1) * sizeof(char *))) == NULL ||
    308  1.1.1.2  mycroft 	    (p = flagsp = malloc(strlen(ap) + 2)) == NULL)
    309  1.1.1.2  mycroft 		err(1, NULL);
    310  1.1.1.2  mycroft 
    311  1.1.1.2  mycroft 	*nargv++ = *argv;
    312  1.1.1.2  mycroft 	argv += 2;
    313  1.1.1.2  mycroft 
    314  1.1.1.2  mycroft 	for (flags = 0; *ap; ++ap) {
    315  1.1.1.3    lukem 		switch (*ap) {
    316  1.1.1.2  mycroft 		case 'b':
    317  1.1.1.2  mycroft 		case 'f':
    318  1.1.1.2  mycroft 		case 's':
    319  1.1.1.3    lukem 			if (*argv == NULL) {
    320  1.1.1.3    lukem 				warnx("option requires an argument -- %c", *ap);
    321  1.1.1.3    lukem 				usage();
    322  1.1.1.3    lukem 			}
    323  1.1.1.2  mycroft 			if ((nargv[0] = malloc(strlen(*argv) + 2 + 1)) == NULL)
    324  1.1.1.2  mycroft 				err(1, NULL);
    325  1.1.1.2  mycroft 			nargv[0][0] = '-';
    326  1.1.1.2  mycroft 			nargv[0][1] = *ap;
    327  1.1.1.2  mycroft 			(void)strcpy(&nargv[0][2], *argv);
    328  1.1.1.3    lukem 			++argv;
    329  1.1.1.2  mycroft 			++nargv;
    330  1.1.1.2  mycroft 			break;
    331  1.1.1.2  mycroft 		default:
    332  1.1.1.2  mycroft 			if (!flags) {
    333  1.1.1.2  mycroft 				*p++ = '-';
    334  1.1.1.2  mycroft 				flags = 1;
    335  1.1.1.2  mycroft 			}
    336  1.1.1.2  mycroft 			*p++ = *ap;
    337  1.1.1.2  mycroft 			break;
    338  1.1.1.2  mycroft 		}
    339      1.1      cgd 	}
    340  1.1.1.2  mycroft 
    341  1.1.1.2  mycroft 	/* Terminate flags. */
    342  1.1.1.2  mycroft 	if (flags) {
    343  1.1.1.2  mycroft 		*p = '\0';
    344  1.1.1.2  mycroft 		*nargv++ = flagsp;
    345  1.1.1.2  mycroft 	}
    346  1.1.1.2  mycroft 
    347  1.1.1.2  mycroft 	/* Copy remaining arguments. */
    348  1.1.1.2  mycroft 	while (*nargv++ = *argv++);
    349  1.1.1.3    lukem 
    350  1.1.1.3    lukem 	/* Update argument count. */
    351  1.1.1.3    lukem 	*argcp = nargv - *argvp - 1;
    352      1.1      cgd }
    353