utilities.c revision 1559
1/*
2 * Copyright (c) 1983, 1993
3 *	The Regents of the University of California.  All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
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.
20 *
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
31 * SUCH DAMAGE.
32 */
33
34#ifndef lint
35static char sccsid[] = "@(#)utilities.c	8.2 (Berkeley) 3/25/94";
36#endif /* not lint */
37
38#include <sys/param.h>
39#include <sys/stat.h>
40
41#include <ufs/ufs/dinode.h>
42#include <ufs/ufs/dir.h>
43
44#include <errno.h>
45#include <stdio.h>
46#include <stdlib.h>
47#include <string.h>
48#include <unistd.h>
49
50#include "restore.h"
51#include "extern.h"
52
53/*
54 * Insure that all the components of a pathname exist.
55 */
56void
57pathcheck(name)
58	char *name;
59{
60	register char *cp;
61	struct entry *ep;
62	char *start;
63
64	start = index(name, '/');
65	if (start == 0)
66		return;
67	for (cp = start; *cp != '\0'; cp++) {
68		if (*cp != '/')
69			continue;
70		*cp = '\0';
71		ep = lookupname(name);
72		if (ep == NULL) {
73			/* Safe; we know the pathname exists in the dump. */
74			ep = addentry(name, pathsearch(name)->d_ino, NODE);
75			newnode(ep);
76		}
77		ep->e_flags |= NEW|KEEP;
78		*cp = '/';
79	}
80}
81
82/*
83 * Change a name to a unique temporary name.
84 */
85void
86mktempname(ep)
87	register struct entry *ep;
88{
89	char oldname[MAXPATHLEN];
90
91	if (ep->e_flags & TMPNAME)
92		badentry(ep, "mktempname: called with TMPNAME");
93	ep->e_flags |= TMPNAME;
94	(void) strcpy(oldname, myname(ep));
95	freename(ep->e_name);
96	ep->e_name = savename(gentempname(ep));
97	ep->e_namlen = strlen(ep->e_name);
98	renameit(oldname, myname(ep));
99}
100
101/*
102 * Generate a temporary name for an entry.
103 */
104char *
105gentempname(ep)
106	struct entry *ep;
107{
108	static char name[MAXPATHLEN];
109	struct entry *np;
110	long i = 0;
111
112	for (np = lookupino(ep->e_ino);
113	    np != NULL && np != ep; np = np->e_links)
114		i++;
115	if (np == NULL)
116		badentry(ep, "not on ino list");
117	(void) sprintf(name, "%s%d%d", TMPHDR, i, ep->e_ino);
118	return (name);
119}
120
121/*
122 * Rename a file or directory.
123 */
124void
125renameit(from, to)
126	char *from, *to;
127{
128	if (!Nflag && rename(from, to) < 0) {
129		fprintf(stderr, "warning: cannot rename %s to %s: %s\n",
130		    from, to, strerror(errno));
131		return;
132	}
133	vprintf(stdout, "rename %s to %s\n", from, to);
134}
135
136/*
137 * Create a new node (directory).
138 */
139void
140newnode(np)
141	struct entry *np;
142{
143	char *cp;
144
145	if (np->e_type != NODE)
146		badentry(np, "newnode: not a node");
147	cp = myname(np);
148	if (!Nflag && mkdir(cp, 0777) < 0) {
149		np->e_flags |= EXISTED;
150		fprintf(stderr, "warning: %s: %s\n", cp, strerror(errno));
151		return;
152	}
153	vprintf(stdout, "Make node %s\n", cp);
154}
155
156/*
157 * Remove an old node (directory).
158 */
159void
160removenode(ep)
161	register struct entry *ep;
162{
163	char *cp;
164
165	if (ep->e_type != NODE)
166		badentry(ep, "removenode: not a node");
167	if (ep->e_entries != NULL)
168		badentry(ep, "removenode: non-empty directory");
169	ep->e_flags |= REMOVED;
170	ep->e_flags &= ~TMPNAME;
171	cp = myname(ep);
172	if (!Nflag && rmdir(cp) < 0) {
173		fprintf(stderr, "warning: %s: %s\n", cp, strerror(errno));
174		return;
175	}
176	vprintf(stdout, "Remove node %s\n", cp);
177}
178
179/*
180 * Remove a leaf.
181 */
182void
183removeleaf(ep)
184	register struct entry *ep;
185{
186	char *cp;
187
188	if (ep->e_type != LEAF)
189		badentry(ep, "removeleaf: not a leaf");
190	ep->e_flags |= REMOVED;
191	ep->e_flags &= ~TMPNAME;
192	cp = myname(ep);
193	if (!Nflag && unlink(cp) < 0) {
194		fprintf(stderr, "warning: %s: %s\n", cp, strerror(errno));
195		return;
196	}
197	vprintf(stdout, "Remove leaf %s\n", cp);
198}
199
200/*
201 * Create a link.
202 */
203int
204linkit(existing, new, type)
205	char *existing, *new;
206	int type;
207{
208
209	if (type == SYMLINK) {
210		if (!Nflag && symlink(existing, new) < 0) {
211			fprintf(stderr,
212			    "warning: cannot create symbolic link %s->%s: %s\n",
213			    new, existing, strerror(errno));
214			return (FAIL);
215		}
216	} else if (type == HARDLINK) {
217		if (!Nflag && link(existing, new) < 0) {
218			fprintf(stderr,
219			    "warning: cannot create hard link %s->%s: %s\n",
220			    new, existing, strerror(errno));
221			return (FAIL);
222		}
223	} else {
224		panic("linkit: unknown type %d\n", type);
225		return (FAIL);
226	}
227	vprintf(stdout, "Create %s link %s->%s\n",
228		type == SYMLINK ? "symbolic" : "hard", new, existing);
229	return (GOOD);
230}
231
232/*
233 * find lowest number file (above "start") that needs to be extracted
234 */
235ino_t
236lowerbnd(start)
237	ino_t start;
238{
239	register struct entry *ep;
240
241	for ( ; start < maxino; start++) {
242		ep = lookupino(start);
243		if (ep == NULL || ep->e_type == NODE)
244			continue;
245		if (ep->e_flags & (NEW|EXTRACT))
246			return (start);
247	}
248	return (start);
249}
250
251/*
252 * find highest number file (below "start") that needs to be extracted
253 */
254ino_t
255upperbnd(start)
256	ino_t start;
257{
258	register struct entry *ep;
259
260	for ( ; start > ROOTINO; start--) {
261		ep = lookupino(start);
262		if (ep == NULL || ep->e_type == NODE)
263			continue;
264		if (ep->e_flags & (NEW|EXTRACT))
265			return (start);
266	}
267	return (start);
268}
269
270/*
271 * report on a badly formed entry
272 */
273void
274badentry(ep, msg)
275	register struct entry *ep;
276	char *msg;
277{
278
279	fprintf(stderr, "bad entry: %s\n", msg);
280	fprintf(stderr, "name: %s\n", myname(ep));
281	fprintf(stderr, "parent name %s\n", myname(ep->e_parent));
282	if (ep->e_sibling != NULL)
283		fprintf(stderr, "sibling name: %s\n", myname(ep->e_sibling));
284	if (ep->e_entries != NULL)
285		fprintf(stderr, "next entry name: %s\n", myname(ep->e_entries));
286	if (ep->e_links != NULL)
287		fprintf(stderr, "next link name: %s\n", myname(ep->e_links));
288	if (ep->e_next != NULL)
289		fprintf(stderr,
290		    "next hashchain name: %s\n", myname(ep->e_next));
291	fprintf(stderr, "entry type: %s\n",
292		ep->e_type == NODE ? "NODE" : "LEAF");
293	fprintf(stderr, "inode number: %ld\n", ep->e_ino);
294	panic("flags: %s\n", flagvalues(ep));
295}
296
297/*
298 * Construct a string indicating the active flag bits of an entry.
299 */
300char *
301flagvalues(ep)
302	register struct entry *ep;
303{
304	static char flagbuf[BUFSIZ];
305
306	(void) strcpy(flagbuf, "|NIL");
307	flagbuf[0] = '\0';
308	if (ep->e_flags & REMOVED)
309		(void) strcat(flagbuf, "|REMOVED");
310	if (ep->e_flags & TMPNAME)
311		(void) strcat(flagbuf, "|TMPNAME");
312	if (ep->e_flags & EXTRACT)
313		(void) strcat(flagbuf, "|EXTRACT");
314	if (ep->e_flags & NEW)
315		(void) strcat(flagbuf, "|NEW");
316	if (ep->e_flags & KEEP)
317		(void) strcat(flagbuf, "|KEEP");
318	if (ep->e_flags & EXISTED)
319		(void) strcat(flagbuf, "|EXISTED");
320	return (&flagbuf[1]);
321}
322
323/*
324 * Check to see if a name is on a dump tape.
325 */
326ino_t
327dirlookup(name)
328	const char *name;
329{
330	struct direct *dp;
331	ino_t ino;
332
333	ino = ((dp = pathsearch(name)) == NULL) ? 0 : dp->d_ino;
334
335	if (ino == 0 || TSTINO(ino, dumpmap) == 0)
336		fprintf(stderr, "%s is not on the tape\n", name);
337	return (ino);
338}
339
340/*
341 * Elicit a reply.
342 */
343int
344reply(question)
345	char *question;
346{
347	char c;
348
349	do	{
350		fprintf(stderr, "%s? [yn] ", question);
351		(void) fflush(stderr);
352		c = getc(terminal);
353		while (c != '\n' && getc(terminal) != '\n')
354			if (feof(terminal))
355				return (FAIL);
356	} while (c != 'y' && c != 'n');
357	if (c == 'y')
358		return (GOOD);
359	return (FAIL);
360}
361
362/*
363 * handle unexpected inconsistencies
364 */
365#if __STDC__
366#include <stdarg.h>
367#else
368#include <varargs.h>
369#endif
370
371void
372#if __STDC__
373panic(const char *fmt, ...)
374#else
375panic(fmt, va_alist)
376	char *fmt;
377	va_dcl
378#endif
379{
380	va_list ap;
381#if __STDC__
382	va_start(ap, fmt);
383#else
384	va_start(ap);
385#endif
386
387	vfprintf(stderr, fmt, ap);
388	if (yflag)
389		return;
390	if (reply("abort") == GOOD) {
391		if (reply("dump core") == GOOD)
392			abort();
393		done(1);
394	}
395}
396