main.c revision 1.1 1 1.1 cgd /*
2 1.1 cgd * Copyright (c) 1983 The Regents of the University of California.
3 1.1 cgd * 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 cgd char copyright[] =
36 1.1 cgd "@(#) Copyright (c) 1983 The Regents of the University of California.\n\
37 1.1 cgd All rights reserved.\n";
38 1.1 cgd #endif /* not lint */
39 1.1 cgd
40 1.1 cgd #ifndef lint
41 1.1 cgd static char sccsid[] = "@(#)main.c 5.8 (Berkeley) 6/1/90";
42 1.1 cgd #endif /* not lint */
43 1.1 cgd
44 1.1 cgd /*
45 1.1 cgd * Modified to recursively extract all files within a subtree
46 1.1 cgd * (supressed by the h option) and recreate the heirarchical
47 1.1 cgd * structure of that subtree and move extracted files to their
48 1.1 cgd * proper homes (supressed by the m option).
49 1.1 cgd * Includes the s (skip files) option for use with multiple
50 1.1 cgd * dumps on a single tape.
51 1.1 cgd * 8/29/80 by Mike Litzkow
52 1.1 cgd *
53 1.1 cgd * Modified to work on the new file system and to recover from
54 1.1 cgd * tape read errors.
55 1.1 cgd * 1/19/82 by Kirk McKusick
56 1.1 cgd *
57 1.1 cgd * Full incremental restore running entirely in user code and
58 1.1 cgd * interactive tape browser.
59 1.1 cgd * 1/19/83 by Kirk McKusick
60 1.1 cgd */
61 1.1 cgd
62 1.1 cgd #include "restore.h"
63 1.1 cgd #include <protocols/dumprestore.h>
64 1.1 cgd #include <sys/signal.h>
65 1.1 cgd #include "pathnames.h"
66 1.1 cgd
67 1.1 cgd int bflag = 0, cvtflag = 0, dflag = 0, vflag = 0, yflag = 0;
68 1.1 cgd int hflag = 1, mflag = 1, Nflag = 0;
69 1.1 cgd char command = '\0';
70 1.1 cgd long dumpnum = 1;
71 1.1 cgd long volno = 0;
72 1.1 cgd long ntrec;
73 1.1 cgd char *dumpmap;
74 1.1 cgd char *clrimap;
75 1.1 cgd ino_t maxino;
76 1.1 cgd time_t dumptime;
77 1.1 cgd time_t dumpdate;
78 1.1 cgd FILE *terminal;
79 1.1 cgd
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 cgd register char *cp;
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 cgd char name[MAXPATHLEN];
89 1.1 cgd void onintr();
90 1.1 cgd
91 1.1 cgd if (signal(SIGINT, onintr) == SIG_IGN)
92 1.1 cgd (void) signal(SIGINT, SIG_IGN);
93 1.1 cgd if (signal(SIGTERM, onintr) == SIG_IGN)
94 1.1 cgd (void) signal(SIGTERM, SIG_IGN);
95 1.1 cgd setlinebuf(stderr);
96 1.1 cgd if (argc < 2) {
97 1.1 cgd usage:
98 1.1 cgd fprintf(stderr, "Usage:\n%s%s%s%s%s",
99 1.1 cgd "\trestore tfhsvy [file file ...]\n",
100 1.1 cgd "\trestore xfhmsvy [file file ...]\n",
101 1.1 cgd "\trestore ifhmsvy\n",
102 1.1 cgd "\trestore rfsvy\n",
103 1.1 cgd "\trestore Rfsvy\n");
104 1.1 cgd done(1);
105 1.1 cgd }
106 1.1 cgd argv++;
107 1.1 cgd argc -= 2;
108 1.1 cgd command = '\0';
109 1.1 cgd for (cp = *argv++; *cp; cp++) {
110 1.1 cgd switch (*cp) {
111 1.1 cgd case '-':
112 1.1 cgd break;
113 1.1 cgd case 'c':
114 1.1 cgd cvtflag++;
115 1.1 cgd break;
116 1.1 cgd case 'd':
117 1.1 cgd dflag++;
118 1.1 cgd break;
119 1.1 cgd case 'h':
120 1.1 cgd hflag = 0;
121 1.1 cgd break;
122 1.1 cgd case 'm':
123 1.1 cgd mflag = 0;
124 1.1 cgd break;
125 1.1 cgd case 'N':
126 1.1 cgd Nflag++;
127 1.1 cgd break;
128 1.1 cgd case 'v':
129 1.1 cgd vflag++;
130 1.1 cgd break;
131 1.1 cgd case 'y':
132 1.1 cgd yflag++;
133 1.1 cgd break;
134 1.1 cgd case 'f':
135 1.1 cgd if (argc < 1) {
136 1.1 cgd fprintf(stderr, "missing device specifier\n");
137 1.1 cgd done(1);
138 1.1 cgd }
139 1.1 cgd inputdev = *argv++;
140 1.1 cgd argc--;
141 1.1 cgd break;
142 1.1 cgd case 'b':
143 1.1 cgd /*
144 1.1 cgd * change default tape blocksize
145 1.1 cgd */
146 1.1 cgd bflag++;
147 1.1 cgd if (argc < 1) {
148 1.1 cgd fprintf(stderr, "missing block size\n");
149 1.1 cgd done(1);
150 1.1 cgd }
151 1.1 cgd ntrec = atoi(*argv++);
152 1.1 cgd if (ntrec <= 0) {
153 1.1 cgd fprintf(stderr, "Block size must be a positive integer\n");
154 1.1 cgd done(1);
155 1.1 cgd }
156 1.1 cgd argc--;
157 1.1 cgd break;
158 1.1 cgd case 's':
159 1.1 cgd /*
160 1.1 cgd * dumpnum (skip to) for multifile dump tapes
161 1.1 cgd */
162 1.1 cgd if (argc < 1) {
163 1.1 cgd fprintf(stderr, "missing dump number\n");
164 1.1 cgd done(1);
165 1.1 cgd }
166 1.1 cgd dumpnum = atoi(*argv++);
167 1.1 cgd if (dumpnum <= 0) {
168 1.1 cgd fprintf(stderr, "Dump number must be a positive integer\n");
169 1.1 cgd done(1);
170 1.1 cgd }
171 1.1 cgd argc--;
172 1.1 cgd break;
173 1.1 cgd case 't':
174 1.1 cgd case 'R':
175 1.1 cgd case 'r':
176 1.1 cgd case 'x':
177 1.1 cgd case 'i':
178 1.1 cgd if (command != '\0') {
179 1.1 cgd fprintf(stderr,
180 1.1 cgd "%c and %c are mutually exclusive\n",
181 1.1 cgd *cp, command);
182 1.1 cgd goto usage;
183 1.1 cgd }
184 1.1 cgd command = *cp;
185 1.1 cgd break;
186 1.1 cgd default:
187 1.1 cgd fprintf(stderr, "Bad key character %c\n", *cp);
188 1.1 cgd goto usage;
189 1.1 cgd }
190 1.1 cgd }
191 1.1 cgd if (command == '\0') {
192 1.1 cgd fprintf(stderr, "must specify i, t, r, R, or x\n");
193 1.1 cgd goto usage;
194 1.1 cgd }
195 1.1 cgd setinput(inputdev);
196 1.1 cgd if (argc == 0) {
197 1.1 cgd argc = 1;
198 1.1 cgd *--argv = ".";
199 1.1 cgd }
200 1.1 cgd switch (command) {
201 1.1 cgd /*
202 1.1 cgd * Interactive mode.
203 1.1 cgd */
204 1.1 cgd case 'i':
205 1.1 cgd setup();
206 1.1 cgd extractdirs(1);
207 1.1 cgd initsymtable((char *)0);
208 1.1 cgd runcmdshell();
209 1.1 cgd done(0);
210 1.1 cgd /*
211 1.1 cgd * Incremental restoration of a file system.
212 1.1 cgd */
213 1.1 cgd case 'r':
214 1.1 cgd setup();
215 1.1 cgd if (dumptime > 0) {
216 1.1 cgd /*
217 1.1 cgd * This is an incremental dump tape.
218 1.1 cgd */
219 1.1 cgd vprintf(stdout, "Begin incremental restore\n");
220 1.1 cgd initsymtable(symtbl);
221 1.1 cgd extractdirs(1);
222 1.1 cgd removeoldleaves();
223 1.1 cgd vprintf(stdout, "Calculate node updates.\n");
224 1.1 cgd treescan(".", ROOTINO, nodeupdates);
225 1.1 cgd findunreflinks();
226 1.1 cgd removeoldnodes();
227 1.1 cgd } else {
228 1.1 cgd /*
229 1.1 cgd * This is a level zero dump tape.
230 1.1 cgd */
231 1.1 cgd vprintf(stdout, "Begin level 0 restore\n");
232 1.1 cgd initsymtable((char *)0);
233 1.1 cgd extractdirs(1);
234 1.1 cgd vprintf(stdout, "Calculate extraction list.\n");
235 1.1 cgd treescan(".", ROOTINO, nodeupdates);
236 1.1 cgd }
237 1.1 cgd createleaves(symtbl);
238 1.1 cgd createlinks();
239 1.1 cgd setdirmodes();
240 1.1 cgd checkrestore();
241 1.1 cgd if (dflag) {
242 1.1 cgd vprintf(stdout, "Verify the directory structure\n");
243 1.1 cgd treescan(".", ROOTINO, verifyfile);
244 1.1 cgd }
245 1.1 cgd dumpsymtable(symtbl, (long)1);
246 1.1 cgd done(0);
247 1.1 cgd /*
248 1.1 cgd * Resume an incremental file system restoration.
249 1.1 cgd */
250 1.1 cgd case 'R':
251 1.1 cgd initsymtable(symtbl);
252 1.1 cgd skipmaps();
253 1.1 cgd skipdirs();
254 1.1 cgd createleaves(symtbl);
255 1.1 cgd createlinks();
256 1.1 cgd setdirmodes();
257 1.1 cgd checkrestore();
258 1.1 cgd dumpsymtable(symtbl, (long)1);
259 1.1 cgd done(0);
260 1.1 cgd /*
261 1.1 cgd * List contents of tape.
262 1.1 cgd */
263 1.1 cgd case 't':
264 1.1 cgd setup();
265 1.1 cgd extractdirs(0);
266 1.1 cgd initsymtable((char *)0);
267 1.1 cgd while (argc--) {
268 1.1 cgd canon(*argv++, name);
269 1.1 cgd ino = dirlookup(name);
270 1.1 cgd if (ino == 0)
271 1.1 cgd continue;
272 1.1 cgd treescan(name, ino, listfile);
273 1.1 cgd }
274 1.1 cgd done(0);
275 1.1 cgd /*
276 1.1 cgd * Batch extraction of tape contents.
277 1.1 cgd */
278 1.1 cgd case 'x':
279 1.1 cgd setup();
280 1.1 cgd extractdirs(1);
281 1.1 cgd initsymtable((char *)0);
282 1.1 cgd while (argc--) {
283 1.1 cgd canon(*argv++, name);
284 1.1 cgd ino = dirlookup(name);
285 1.1 cgd if (ino == 0)
286 1.1 cgd continue;
287 1.1 cgd if (mflag)
288 1.1 cgd pathcheck(name);
289 1.1 cgd treescan(name, ino, addfile);
290 1.1 cgd }
291 1.1 cgd createfiles();
292 1.1 cgd createlinks();
293 1.1 cgd setdirmodes();
294 1.1 cgd if (dflag)
295 1.1 cgd checkrestore();
296 1.1 cgd done(0);
297 1.1 cgd }
298 1.1 cgd }
299