2 * Copyright (c) 1983, 1993
3 * The Regents of the University of California. All rights reserved.
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright
11 * notice, this list of conditions and the following disclaimer in the
12 * documentation and/or other materials provided with the distribution.
13 * 3. All advertising materials mentioning features or use of this software
14 * must display the following acknowledgement:
15 * This product includes software developed by the University of
16 * California, Berkeley and its contributors.
17 * 4. Neither the name of the University nor the names of its contributors
18 * may be used to endorse or promote products derived from this software
19 * without specific prior written permission.
21 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
22 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
25 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
26 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
27 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
33 * @(#) Copyright (c) 1983, 1993 The Regents of the University of California. All rights reserved.
34 * @(#)main.c 8.6 (Berkeley) 5/4/95
35 * $FreeBSD: src/sbin/restore/main.c,v 1.10.2.3 2001/10/02 08:30:17 cjc Exp $
36 * $DragonFly: src/sbin/restore/main.c,v 1.8 2005/11/06 12:49:25 swildner Exp $
39 #include <sys/param.h>
42 #include <vfs/ufs/dinode.h>
43 #include <protocols/dumprestore.h>
55 int bflag
= 0, cvtflag
= 0, dflag
= 0, vflag
= 0, yflag
= 0;
56 int hflag
= 1, mflag
= 1, Nflag
= 0;
70 static void obsolete(int *, char **[]);
71 static void usage(void);
74 main(int argc
, char **argv
)
79 char *symtbl
= "./restoresymtable";
80 char *p
, name
[MAXPATHLEN
];
82 /* Temp files should *not* be readable. We set permissions later. */
88 if ((inputdev
= getenv("TAPE")) == NULL
)
89 inputdev
= _PATH_DEFTAPE
;
90 obsolete(&argc
, &argv
);
92 #define optlist "b:cdf:hikmNRrs:tuvxy"
94 #define optlist "b:cdf:himNRrs:tuvxy"
96 while ((ch
= getopt(argc
, argv
, optlist
)) != -1)
99 /* Change default tape blocksize. */
101 ntrec
= strtol(optarg
, &p
, 10);
103 errx(1, "illegal blocksize -- %s", optarg
);
105 errx(1, "block size must be greater than 0");
131 "%c and %c options are mutually exclusive",
142 /* Dumpnum (skip to) for multifile dump tapes. */
143 dumpnum
= strtol(optarg
, &p
, 10);
145 errx(1, "illegal dump number -- %s", optarg
);
147 errx(1, "dump number must be greater than 0");
165 errx(1, "none of i, R, r, t or x options specified");
167 if (signal(SIGINT
, onintr
) == SIG_IGN
)
168 signal(SIGINT
, SIG_IGN
);
169 if (signal(SIGTERM
, onintr
) == SIG_IGN
)
170 signal(SIGTERM
, SIG_IGN
);
191 * Incremental restoration of a file system.
197 * This is an incremental dump tape.
199 vprintf(stdout
, "Begin incremental restore\n");
200 initsymtable(symtbl
);
203 vprintf(stdout
, "Calculate node updates.\n");
204 treescan(".", ROOTINO
, nodeupdates
);
209 * This is a level zero dump tape.
211 vprintf(stdout
, "Begin level 0 restore\n");
212 initsymtable((char *)0);
214 vprintf(stdout
, "Calculate extraction list.\n");
215 treescan(".", ROOTINO
, nodeupdates
);
217 createleaves(symtbl
);
222 vprintf(stdout
, "Verify the directory structure\n");
223 treescan(".", ROOTINO
, verifyfile
);
225 dumpsymtable(symtbl
, (long)1);
228 * Resume an incremental file system restoration.
231 initsymtable(symtbl
);
234 createleaves(symtbl
);
238 dumpsymtable(symtbl
, (long)1);
241 * List contents of tape.
246 initsymtable((char *)0);
248 canon(*argv
++, name
, sizeof(name
));
249 ino
= dirlookup(name
);
252 treescan(name
, ino
, listfile
);
256 * Batch extraction of tape contents.
261 initsymtable((char *)0);
263 canon(*argv
++, name
, sizeof(name
));
264 ino
= dirlookup(name
);
269 treescan(name
, ino
, addfile
);
285 fprintf(stderr
, "usage:\t%s\n\t%s\n\t%s\n\t%s\n\t%s\n",
286 "restore -i [-cdhkmNuvy] [-b blocksize] [-f file] [-s fileno]",
287 "restore -r [-cdkNuvy] [-b blocksize] [-f file] [-s fileno]",
288 "restore -R [-cdkNuvy] [-b blocksize] [-f file] [-s fileno]",
289 "restore -x [-cdhkmNuvy] [-b blocksize] [-f file] [-s fileno] [file ...]",
290 "restore -t [-cdhkNuvy] [-b blocksize] [-f file] [-s fileno] [file ...]");
296 * Change set of key letters and ordered arguments into something
297 * getopt(3) will like.
300 obsolete(int *argcp
, char **argvp
[])
303 char *ap
, **argv
, *flagsp
, **nargv
, *p
;
309 /* Return if no arguments or first argument has leading dash. */
311 if (argc
== 1 || *ap
== '-')
314 /* Allocate space for new arguments. */
315 if ((*argvp
= nargv
= malloc((argc
+ 1) * sizeof(char *))) == NULL
||
316 (p
= flagsp
= malloc(strlen(ap
) + 2)) == NULL
)
320 argv
+= 2, argc
-= 2;
322 for (flags
= 0; *ap
; ++ap
) {
328 warnx("option requires an argument -- %c", *ap
);
331 if ((nargv
[0] = malloc(strlen(*argv
) + 2 + 1)) == NULL
)
335 strcpy(&nargv
[0][2], *argv
);
349 /* Terminate flags. */
355 /* Copy remaining arguments. */
356 while ((*nargv
++ = *argv
++));
358 /* Update argument count. */
359 *argcp
= nargv
- *argvp
- 1;