1994-05-26 06:35:07 +00:00
|
|
|
/*
|
|
|
|
* Copyright (c) 1983, 1993
|
|
|
|
* The Regents of the University of California. All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
|
|
|
* 4. Neither the name of the University nor the names of its contributors
|
|
|
|
* may be used to endorse or promote products derived from this software
|
|
|
|
* without specific prior written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
|
|
|
|
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
|
|
|
|
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
|
|
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
|
|
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
|
|
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
|
|
* SUCH DAMAGE.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef lint
|
1998-07-28 06:20:16 +00:00
|
|
|
static const char copyright[] =
|
1994-05-26 06:35:07 +00:00
|
|
|
"@(#) Copyright (c) 1983, 1993\n\
|
|
|
|
The Regents of the University of California. All rights reserved.\n";
|
|
|
|
#endif /* not lint */
|
|
|
|
|
|
|
|
#ifndef lint
|
1998-07-28 06:20:16 +00:00
|
|
|
#if 0
|
1997-03-11 12:55:19 +00:00
|
|
|
static char sccsid[] = "@(#)main.c 8.6 (Berkeley) 5/4/95";
|
1998-07-28 06:20:16 +00:00
|
|
|
#endif
|
1994-05-26 06:35:07 +00:00
|
|
|
#endif /* not lint */
|
|
|
|
|
2005-05-29 15:57:00 +00:00
|
|
|
#include <sys/cdefs.h>
|
|
|
|
__FBSDID("$FreeBSD$");
|
|
|
|
|
1994-05-26 06:35:07 +00:00
|
|
|
#include <sys/param.h>
|
1998-07-28 06:20:16 +00:00
|
|
|
#include <sys/stat.h>
|
1994-05-26 06:35:07 +00:00
|
|
|
|
|
|
|
#include <ufs/ufs/dinode.h>
|
|
|
|
#include <protocols/dumprestore.h>
|
|
|
|
|
|
|
|
#include <err.h>
|
2002-09-25 04:06:37 +00:00
|
|
|
#include <limits.h>
|
2003-08-06 08:46:21 +00:00
|
|
|
#include <locale.h>
|
2001-03-08 09:04:40 +00:00
|
|
|
#include <paths.h>
|
1994-05-26 06:35:07 +00:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
2001-06-24 23:04:23 +00:00
|
|
|
#include <string.h>
|
1997-03-11 12:55:19 +00:00
|
|
|
#include <unistd.h>
|
1994-05-26 06:35:07 +00:00
|
|
|
|
|
|
|
#include "restore.h"
|
|
|
|
#include "extern.h"
|
|
|
|
|
2006-12-05 11:18:51 +00:00
|
|
|
int bflag = 0, cvtflag = 0, dflag = 0, Dflag = 0, vflag = 0, yflag = 0;
|
1994-05-26 06:35:07 +00:00
|
|
|
int hflag = 1, mflag = 1, Nflag = 0;
|
1998-05-09 05:23:02 +00:00
|
|
|
int uflag = 0;
|
2004-04-13 02:58:06 +00:00
|
|
|
int pipecmd = 0;
|
1994-05-26 06:35:07 +00:00
|
|
|
char command = '\0';
|
|
|
|
long dumpnum = 1;
|
|
|
|
long volno = 0;
|
|
|
|
long ntrec;
|
|
|
|
char *dumpmap;
|
1997-03-11 12:55:19 +00:00
|
|
|
char *usedinomap;
|
1994-05-26 06:35:07 +00:00
|
|
|
ino_t maxino;
|
|
|
|
time_t dumptime;
|
|
|
|
time_t dumpdate;
|
|
|
|
FILE *terminal;
|
|
|
|
|
2002-03-20 22:49:40 +00:00
|
|
|
static void obsolete(int *, char **[]);
|
|
|
|
static void usage(void) __dead2;
|
1994-05-26 06:35:07 +00:00
|
|
|
|
|
|
|
int
|
2002-03-20 22:49:40 +00:00
|
|
|
main(int argc, char *argv[])
|
1994-05-26 06:35:07 +00:00
|
|
|
{
|
|
|
|
int ch;
|
|
|
|
ino_t ino;
|
1997-01-01 00:03:49 +00:00
|
|
|
char *inputdev;
|
1994-05-26 06:35:07 +00:00
|
|
|
char *symtbl = "./restoresymtable";
|
|
|
|
char *p, name[MAXPATHLEN];
|
|
|
|
|
1997-01-01 00:03:49 +00:00
|
|
|
/* Temp files should *not* be readable. We set permissions later. */
|
|
|
|
(void) umask(077);
|
|
|
|
|
1994-05-26 06:35:07 +00:00
|
|
|
if (argc < 2)
|
|
|
|
usage();
|
|
|
|
|
2003-08-06 08:46:21 +00:00
|
|
|
(void)setlocale(LC_ALL, "");
|
|
|
|
|
2004-04-13 02:58:06 +00:00
|
|
|
inputdev = NULL;
|
1994-05-26 06:35:07 +00:00
|
|
|
obsolete(&argc, &argv);
|
2006-12-05 11:18:51 +00:00
|
|
|
while ((ch = getopt(argc, argv, "b:dDf:himNP:Rrs:tuvxy")) != -1)
|
1994-05-26 06:35:07 +00:00
|
|
|
switch(ch) {
|
|
|
|
case 'b':
|
|
|
|
/* Change default tape blocksize. */
|
|
|
|
bflag = 1;
|
|
|
|
ntrec = strtol(optarg, &p, 10);
|
|
|
|
if (*p)
|
|
|
|
errx(1, "illegal blocksize -- %s", optarg);
|
|
|
|
if (ntrec <= 0)
|
|
|
|
errx(1, "block size must be greater than 0");
|
|
|
|
break;
|
|
|
|
case 'd':
|
|
|
|
dflag = 1;
|
|
|
|
break;
|
2006-12-05 11:18:51 +00:00
|
|
|
case 'D':
|
|
|
|
Dflag = 1;
|
|
|
|
break;
|
1994-05-26 06:35:07 +00:00
|
|
|
case 'f':
|
2004-04-13 02:58:06 +00:00
|
|
|
if (pipecmd)
|
|
|
|
errx(1,
|
|
|
|
"-P and -f options are mutually exclusive");
|
1994-05-26 06:35:07 +00:00
|
|
|
inputdev = optarg;
|
|
|
|
break;
|
2004-04-13 02:58:06 +00:00
|
|
|
case 'P':
|
|
|
|
if (!pipecmd && inputdev)
|
|
|
|
errx(1,
|
|
|
|
"-P and -f options are mutually exclusive");
|
|
|
|
inputdev = optarg;
|
|
|
|
pipecmd = 1;
|
|
|
|
break;
|
1994-05-26 06:35:07 +00:00
|
|
|
case 'h':
|
|
|
|
hflag = 0;
|
|
|
|
break;
|
|
|
|
case 'i':
|
|
|
|
case 'R':
|
|
|
|
case 'r':
|
|
|
|
case 't':
|
|
|
|
case 'x':
|
|
|
|
if (command != '\0')
|
|
|
|
errx(1,
|
|
|
|
"%c and %c options are mutually exclusive",
|
|
|
|
ch, command);
|
|
|
|
command = ch;
|
|
|
|
break;
|
|
|
|
case 'm':
|
|
|
|
mflag = 0;
|
|
|
|
break;
|
|
|
|
case 'N':
|
|
|
|
Nflag = 1;
|
|
|
|
break;
|
|
|
|
case 's':
|
|
|
|
/* Dumpnum (skip to) for multifile dump tapes. */
|
|
|
|
dumpnum = strtol(optarg, &p, 10);
|
|
|
|
if (*p)
|
|
|
|
errx(1, "illegal dump number -- %s", optarg);
|
|
|
|
if (dumpnum <= 0)
|
|
|
|
errx(1, "dump number must be greater than 0");
|
|
|
|
break;
|
1998-05-09 05:23:02 +00:00
|
|
|
case 'u':
|
|
|
|
uflag = 1;
|
|
|
|
break;
|
1994-05-26 06:35:07 +00:00
|
|
|
case 'v':
|
|
|
|
vflag = 1;
|
|
|
|
break;
|
|
|
|
case 'y':
|
|
|
|
yflag = 1;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
usage();
|
|
|
|
}
|
|
|
|
argc -= optind;
|
|
|
|
argv += optind;
|
|
|
|
|
|
|
|
if (command == '\0')
|
|
|
|
errx(1, "none of i, R, r, t or x options specified");
|
|
|
|
|
|
|
|
if (signal(SIGINT, onintr) == SIG_IGN)
|
|
|
|
(void) signal(SIGINT, SIG_IGN);
|
|
|
|
if (signal(SIGTERM, onintr) == SIG_IGN)
|
|
|
|
(void) signal(SIGTERM, SIG_IGN);
|
|
|
|
setlinebuf(stderr);
|
|
|
|
|
2004-04-13 02:58:06 +00:00
|
|
|
if (inputdev == NULL && (inputdev = getenv("TAPE")) == NULL)
|
|
|
|
inputdev = _PATH_DEFTAPE;
|
|
|
|
setinput(inputdev, pipecmd);
|
1994-05-26 06:35:07 +00:00
|
|
|
|
|
|
|
if (argc == 0) {
|
|
|
|
argc = 1;
|
|
|
|
*--argv = ".";
|
|
|
|
}
|
|
|
|
|
|
|
|
switch (command) {
|
|
|
|
/*
|
|
|
|
* Interactive mode.
|
|
|
|
*/
|
|
|
|
case 'i':
|
|
|
|
setup();
|
|
|
|
extractdirs(1);
|
|
|
|
initsymtable(NULL);
|
|
|
|
runcmdshell();
|
|
|
|
break;
|
|
|
|
/*
|
2002-08-21 18:11:48 +00:00
|
|
|
* Incremental restoration of a file system.
|
1994-05-26 06:35:07 +00:00
|
|
|
*/
|
|
|
|
case 'r':
|
|
|
|
setup();
|
|
|
|
if (dumptime > 0) {
|
|
|
|
/*
|
|
|
|
* This is an incremental dump tape.
|
|
|
|
*/
|
|
|
|
vprintf(stdout, "Begin incremental restore\n");
|
|
|
|
initsymtable(symtbl);
|
|
|
|
extractdirs(1);
|
|
|
|
removeoldleaves();
|
|
|
|
vprintf(stdout, "Calculate node updates.\n");
|
|
|
|
treescan(".", ROOTINO, nodeupdates);
|
|
|
|
findunreflinks();
|
|
|
|
removeoldnodes();
|
|
|
|
} else {
|
|
|
|
/*
|
|
|
|
* This is a level zero dump tape.
|
|
|
|
*/
|
|
|
|
vprintf(stdout, "Begin level 0 restore\n");
|
|
|
|
initsymtable((char *)0);
|
|
|
|
extractdirs(1);
|
|
|
|
vprintf(stdout, "Calculate extraction list.\n");
|
|
|
|
treescan(".", ROOTINO, nodeupdates);
|
|
|
|
}
|
|
|
|
createleaves(symtbl);
|
|
|
|
createlinks();
|
|
|
|
setdirmodes(FORCE);
|
|
|
|
checkrestore();
|
|
|
|
if (dflag) {
|
|
|
|
vprintf(stdout, "Verify the directory structure\n");
|
|
|
|
treescan(".", ROOTINO, verifyfile);
|
|
|
|
}
|
|
|
|
dumpsymtable(symtbl, (long)1);
|
|
|
|
break;
|
|
|
|
/*
|
2002-08-21 18:11:48 +00:00
|
|
|
* Resume an incremental file system restoration.
|
1994-05-26 06:35:07 +00:00
|
|
|
*/
|
|
|
|
case 'R':
|
|
|
|
initsymtable(symtbl);
|
|
|
|
skipmaps();
|
|
|
|
skipdirs();
|
|
|
|
createleaves(symtbl);
|
|
|
|
createlinks();
|
|
|
|
setdirmodes(FORCE);
|
|
|
|
checkrestore();
|
|
|
|
dumpsymtable(symtbl, (long)1);
|
|
|
|
break;
|
|
|
|
/*
|
|
|
|
* List contents of tape.
|
|
|
|
*/
|
|
|
|
case 't':
|
|
|
|
setup();
|
|
|
|
extractdirs(0);
|
|
|
|
initsymtable((char *)0);
|
|
|
|
while (argc--) {
|
1997-01-01 14:08:47 +00:00
|
|
|
canon(*argv++, name, sizeof(name));
|
1994-05-26 06:35:07 +00:00
|
|
|
ino = dirlookup(name);
|
|
|
|
if (ino == 0)
|
|
|
|
continue;
|
|
|
|
treescan(name, ino, listfile);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
/*
|
|
|
|
* Batch extraction of tape contents.
|
|
|
|
*/
|
|
|
|
case 'x':
|
|
|
|
setup();
|
|
|
|
extractdirs(1);
|
|
|
|
initsymtable((char *)0);
|
|
|
|
while (argc--) {
|
1997-01-01 14:08:47 +00:00
|
|
|
canon(*argv++, name, sizeof(name));
|
1994-05-26 06:35:07 +00:00
|
|
|
ino = dirlookup(name);
|
|
|
|
if (ino == 0)
|
|
|
|
continue;
|
|
|
|
if (mflag)
|
|
|
|
pathcheck(name);
|
|
|
|
treescan(name, ino, addfile);
|
|
|
|
}
|
|
|
|
createfiles();
|
|
|
|
createlinks();
|
|
|
|
setdirmodes(0);
|
|
|
|
if (dflag)
|
|
|
|
checkrestore();
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
done(0);
|
|
|
|
/* NOTREACHED */
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
usage()
|
|
|
|
{
|
2004-04-13 02:58:06 +00:00
|
|
|
const char *const common =
|
2005-02-10 09:19:34 +00:00
|
|
|
"[-b blocksize] [-f file | -P pipecommand] [-s fileno]";
|
2004-04-13 02:58:06 +00:00
|
|
|
const char *const fileell = "[file ...]";
|
|
|
|
|
|
|
|
(void)fprintf(stderr, "usage:\t%s %s\n\t%s %s\n\t%s %s\n"
|
|
|
|
"\t%s %s %s\n\t%s %s %s\n",
|
2005-03-18 17:49:08 +00:00
|
|
|
"restore -i [-dhmNuvy]", common,
|
|
|
|
"restore -R [-dNuvy]", common,
|
|
|
|
"restore -r [-dNuvy]", common,
|
|
|
|
"restore -t [-dhNuvy]", common, fileell,
|
|
|
|
"restore -x [-dhmNuvy]", common, fileell);
|
1994-05-26 06:35:07 +00:00
|
|
|
done(1);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* obsolete --
|
|
|
|
* Change set of key letters and ordered arguments into something
|
|
|
|
* getopt(3) will like.
|
|
|
|
*/
|
|
|
|
static void
|
2002-03-20 22:49:40 +00:00
|
|
|
obsolete(int *argcp, char **argvp[])
|
1994-05-26 06:35:07 +00:00
|
|
|
{
|
|
|
|
int argc, flags;
|
|
|
|
char *ap, **argv, *flagsp, **nargv, *p;
|
|
|
|
|
|
|
|
/* Setup. */
|
|
|
|
argv = *argvp;
|
|
|
|
argc = *argcp;
|
|
|
|
|
|
|
|
/* Return if no arguments or first argument has leading dash. */
|
|
|
|
ap = argv[1];
|
|
|
|
if (argc == 1 || *ap == '-')
|
|
|
|
return;
|
|
|
|
|
|
|
|
/* Allocate space for new arguments. */
|
|
|
|
if ((*argvp = nargv = malloc((argc + 1) * sizeof(char *))) == NULL ||
|
|
|
|
(p = flagsp = malloc(strlen(ap) + 2)) == NULL)
|
|
|
|
err(1, NULL);
|
|
|
|
|
|
|
|
*nargv++ = *argv;
|
1996-07-23 19:33:44 +00:00
|
|
|
argv += 2, argc -= 2;
|
1994-05-26 06:35:07 +00:00
|
|
|
|
|
|
|
for (flags = 0; *ap; ++ap) {
|
1997-03-11 12:55:19 +00:00
|
|
|
switch (*ap) {
|
1994-05-26 06:35:07 +00:00
|
|
|
case 'b':
|
|
|
|
case 'f':
|
|
|
|
case 's':
|
1997-03-11 12:55:19 +00:00
|
|
|
if (*argv == NULL) {
|
|
|
|
warnx("option requires an argument -- %c", *ap);
|
|
|
|
usage();
|
|
|
|
}
|
1994-05-26 06:35:07 +00:00
|
|
|
if ((nargv[0] = malloc(strlen(*argv) + 2 + 1)) == NULL)
|
|
|
|
err(1, NULL);
|
|
|
|
nargv[0][0] = '-';
|
|
|
|
nargv[0][1] = *ap;
|
|
|
|
(void)strcpy(&nargv[0][2], *argv);
|
1997-03-11 12:55:19 +00:00
|
|
|
++argv;
|
1994-05-26 06:35:07 +00:00
|
|
|
++nargv;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
if (!flags) {
|
|
|
|
*p++ = '-';
|
|
|
|
flags = 1;
|
|
|
|
}
|
|
|
|
*p++ = *ap;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Terminate flags. */
|
|
|
|
if (flags) {
|
|
|
|
*p = '\0';
|
|
|
|
*nargv++ = flagsp;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Copy remaining arguments. */
|
1998-07-28 06:20:16 +00:00
|
|
|
while ((*nargv++ = *argv++));
|
1997-03-11 12:55:19 +00:00
|
|
|
|
|
|
|
/* Update argument count. */
|
|
|
|
*argcp = nargv - *argvp - 1;
|
1994-05-26 06:35:07 +00:00
|
|
|
}
|