xref: /original-bsd/sbin/restore/dirs.c (revision 602360b2)
1 /*
2  * Copyright (c) 1983 The Regents of the University of California.
3  * All rights reserved.
4  *
5  * %sccs.include.redist.c%
6  */
7 
8 #ifndef lint
9 static char sccsid[] = "@(#)dirs.c	5.21 (Berkeley) 06/30/92";
10 #endif /* not lint */
11 
12 #include "restore.h"
13 #include <protocols/dumprestore.h>
14 #include <sys/file.h>
15 #include <ufs/ufs/dir.h>
16 #include "pathnames.h"
17 
18 /*
19  * Symbol table of directories read from tape.
20  */
21 #define HASHSIZE	1000
22 #define INOHASH(val) (val % HASHSIZE)
23 struct inotab {
24 	struct	inotab *t_next;
25 	ino_t	t_ino;
26 	long	t_seekpt;
27 	long	t_size;
28 };
29 static struct inotab *inotab[HASHSIZE];
30 extern struct inotab *inotablookup();
31 extern struct inotab *allocinotab();
32 
33 /*
34  * Information retained about directories.
35  */
36 struct modeinfo {
37 	ino_t ino;
38 	struct timeval timep[2];
39 	short mode;
40 	short uid;
41 	short gid;
42 };
43 
44 /*
45  * Definitions for library routines operating on directories.
46  */
47 #undef DIRBLKSIZ
48 #define DIRBLKSIZ 1024
49 struct rstdirdesc {
50 	int	dd_fd;
51 	long	dd_loc;
52 	long	dd_size;
53 	char	dd_buf[DIRBLKSIZ];
54 };
55 extern RST_DIR *opendirfile();
56 extern long rst_telldir();
57 extern void rst_seekdir();
58 
59 /*
60  * Global variables for this file.
61  */
62 static long	seekpt;
63 static FILE	*df, *mf;
64 static RST_DIR	*dirp;
65 static char	dirfile[32] = "#";	/* No file */
66 static char	modefile[32] = "#";	/* No file */
67 static char	dot[2] = ".";		/* So it can be modified */
68 extern ino_t	search();
69 struct direct 	*rst_readdir();
70 
71 /*
72  * Format of old style directories.
73  */
74 #define ODIRSIZ 14
75 struct odirect {
76 	u_short	d_ino;
77 	char	d_name[ODIRSIZ];
78 };
79 
80 /*
81  *	Extract directory contents, building up a directory structure
82  *	on disk for extraction by name.
83  *	If genmode is requested, save mode, owner, and times for all
84  *	directories on the tape.
85  */
86 extractdirs(genmode)
87 	int genmode;
88 {
89 	register int i;
90 	register struct dinode *ip;
91 	struct inotab *itp;
92 	struct direct nulldir;
93 	int putdir(), null();
94 
95 	vprintf(stdout, "Extract directories from tape\n");
96 	(void) sprintf(dirfile, "%s/rstdir%d", _PATH_TMP, dumpdate);
97 	df = fopen(dirfile, "w");
98 	if (df == 0) {
99 		fprintf(stderr,
100 		    "restore: %s - cannot create directory temporary\n",
101 		    dirfile);
102 		perror("fopen");
103 		done(1);
104 	}
105 	if (genmode != 0) {
106 		(void) sprintf(modefile, "%s/rstmode%d", _PATH_TMP, dumpdate);
107 		mf = fopen(modefile, "w");
108 		if (mf == 0) {
109 			fprintf(stderr,
110 			    "restore: %s - cannot create modefile \n",
111 			    modefile);
112 			perror("fopen");
113 			done(1);
114 		}
115 	}
116 	nulldir.d_ino = 0;
117 	nulldir.d_type = DT_DIR;
118 	nulldir.d_namlen = 1;
119 	(void) strcpy(nulldir.d_name, "/");
120 	nulldir.d_reclen = DIRSIZ(0, &nulldir);
121 	for (;;) {
122 		curfile.name = "<directory file - name unknown>";
123 		curfile.action = USING;
124 		ip = curfile.dip;
125 		if (ip == NULL || (ip->di_mode & IFMT) != IFDIR) {
126 			(void) fclose(df);
127 			dirp = opendirfile(dirfile);
128 			if (dirp == NULL)
129 				perror("opendirfile");
130 			if (mf != NULL)
131 				(void) fclose(mf);
132 			i = dirlookup(dot);
133 			if (i == 0)
134 				panic("Root directory is not on tape\n");
135 			return;
136 		}
137 		itp = allocinotab(curfile.ino, ip, seekpt);
138 		getfile(putdir, null);
139 		putent(&nulldir);
140 		flushent();
141 		itp->t_size = seekpt - itp->t_seekpt;
142 	}
143 }
144 
145 /*
146  * skip over all the directories on the tape
147  */
148 skipdirs()
149 {
150 
151 	while ((curfile.dip->di_mode & IFMT) == IFDIR) {
152 		skipfile();
153 	}
154 }
155 
156 /*
157  *	Recursively find names and inumbers of all files in subtree
158  *	pname and pass them off to be processed.
159  */
160 treescan(pname, ino, todo)
161 	char *pname;
162 	ino_t ino;
163 	long (*todo)();
164 {
165 	register struct inotab *itp;
166 	register struct direct *dp;
167 	register struct entry *np;
168 	int namelen;
169 	long bpt;
170 	char locname[MAXPATHLEN + 1];
171 
172 	itp = inotablookup(ino);
173 	if (itp == NULL) {
174 		/*
175 		 * Pname is name of a simple file or an unchanged directory.
176 		 */
177 		(void) (*todo)(pname, ino, LEAF);
178 		return;
179 	}
180 	/*
181 	 * Pname is a dumped directory name.
182 	 */
183 	if ((*todo)(pname, ino, NODE) == FAIL)
184 		return;
185 	/*
186 	 * begin search through the directory
187 	 * skipping over "." and ".."
188 	 */
189 	(void) strncpy(locname, pname, MAXPATHLEN);
190 	(void) strncat(locname, "/", MAXPATHLEN);
191 	namelen = strlen(locname);
192 	rst_seekdir(dirp, itp->t_seekpt, itp->t_seekpt);
193 	dp = rst_readdir(dirp); /* "." */
194 	if (dp != NULL && strcmp(dp->d_name, ".") == 0)
195 		dp = rst_readdir(dirp); /* ".." */
196 	else
197 		fprintf(stderr, "Warning: `.' missing from directory %s\n",
198 			pname);
199 	if (dp != NULL && strcmp(dp->d_name, "..") == 0)
200 		dp = rst_readdir(dirp); /* first real entry */
201 	else
202 		fprintf(stderr, "Warning: `..' missing from directory %s\n",
203 			pname);
204 	bpt = rst_telldir(dirp);
205 	/*
206 	 * a zero inode signals end of directory
207 	 */
208 	while (dp != NULL && dp->d_ino != 0) {
209 		locname[namelen] = '\0';
210 		if (namelen + dp->d_namlen >= MAXPATHLEN) {
211 			fprintf(stderr, "%s%s: name exceeds %d char\n",
212 				locname, dp->d_name, MAXPATHLEN);
213 		} else {
214 			(void) strncat(locname, dp->d_name, (int)dp->d_namlen);
215 			treescan(locname, dp->d_ino, todo);
216 			rst_seekdir(dirp, bpt, itp->t_seekpt);
217 		}
218 		dp = rst_readdir(dirp);
219 		bpt = rst_telldir(dirp);
220 	}
221 	if (dp == NULL)
222 		fprintf(stderr, "corrupted directory: %s.\n", locname);
223 }
224 
225 /*
226  * Search the directory tree rooted at inode ROOTINO
227  * for the path pointed at by n
228  */
229 ino_t
230 psearch(n)
231 	char	*n;
232 {
233 	register char *cp, *cp1;
234 	ino_t ino;
235 	char c;
236 
237 	ino = ROOTINO;
238 	if (*(cp = n) == '/')
239 		cp++;
240 next:
241 	cp1 = cp + 1;
242 	while (*cp1 != '/' && *cp1)
243 		cp1++;
244 	c = *cp1;
245 	*cp1 = 0;
246 	ino = search(ino, cp);
247 	if (ino == 0) {
248 		*cp1 = c;
249 		return(0);
250 	}
251 	*cp1 = c;
252 	if (c == '/') {
253 		cp = cp1+1;
254 		goto next;
255 	}
256 	return(ino);
257 }
258 
259 /*
260  * search the directory inode ino
261  * looking for entry cp
262  */
263 ino_t
264 search(inum, cp)
265 	ino_t	inum;
266 	char	*cp;
267 {
268 	register struct direct *dp;
269 	register struct inotab *itp;
270 	int len;
271 
272 	itp = inotablookup(inum);
273 	if (itp == NULL)
274 		return(0);
275 	rst_seekdir(dirp, itp->t_seekpt, itp->t_seekpt);
276 	len = strlen(cp);
277 	do {
278 		dp = rst_readdir(dirp);
279 		if (dp == NULL || dp->d_ino == 0)
280 			return (0);
281 	} while (dp->d_namlen != len || strncmp(dp->d_name, cp, len) != 0);
282 	return(dp->d_ino);
283 }
284 
285 /*
286  * Put the directory entries in the directory file
287  */
288 putdir(buf, size)
289 	char *buf;
290 	int size;
291 {
292 	struct direct cvtbuf;
293 	register struct odirect *odp;
294 	struct odirect *eodp;
295 	register struct direct *dp;
296 	long loc, i;
297 
298 	if (cvtflag) {
299 		eodp = (struct odirect *)&buf[size];
300 		for (odp = (struct odirect *)buf; odp < eodp; odp++)
301 			if (odp->d_ino != 0) {
302 				dcvt(odp, &cvtbuf);
303 				putent(&cvtbuf);
304 			}
305 	} else {
306 		for (loc = 0; loc < size; ) {
307 			dp = (struct direct *)(buf + loc);
308 			if (oldinofmt) {
309 				if (Bcvt) {
310 					swabst("l2s", (char *) dp);
311 				}
312 			} else {
313 				if (Bcvt) {
314 					swabst("ls", (char *) dp);
315 				}
316 			}
317 			i = DIRBLKSIZ - (loc & (DIRBLKSIZ - 1));
318 			if ((dp->d_reclen & 0x3) != 0 ||
319 			    dp->d_reclen > i ||
320 			    dp->d_reclen < DIRSIZ(0, dp) ||
321 			    dp->d_namlen > NAME_MAX) {
322 				vprintf(stdout, "Mangled directory: ");
323 				if ((dp->d_reclen & 0x3) != 0)
324 					vprintf(stdout,
325 					   "reclen not multiple of 4 ");
326 				if (dp->d_reclen < DIRSIZ(0, dp))
327 					vprintf(stdout,
328 					   "reclen less than DIRSIZ (%d < %d) ",
329 					   dp->d_reclen, DIRSIZ(0, dp));
330 				if (dp->d_namlen > NAME_MAX)
331 					vprintf(stdout,
332 					   "reclen name too big (%d > %d) ",
333 					   dp->d_namlen, NAME_MAX);
334 				vprintf(stdout, "\n");
335 				loc += i;
336 				continue;
337 			}
338 			loc += dp->d_reclen;
339 			if (dp->d_ino != 0) {
340 				putent(dp);
341 			}
342 		}
343 	}
344 }
345 
346 /*
347  * These variables are "local" to the following two functions.
348  */
349 char dirbuf[DIRBLKSIZ];
350 long dirloc = 0;
351 long prev = 0;
352 
353 /*
354  * add a new directory entry to a file.
355  */
356 putent(dp)
357 	struct direct *dp;
358 {
359 	dp->d_reclen = DIRSIZ(0, dp);
360 	if (dirloc + dp->d_reclen > DIRBLKSIZ) {
361 		((struct direct *)(dirbuf + prev))->d_reclen =
362 		    DIRBLKSIZ - prev;
363 		(void) fwrite(dirbuf, 1, DIRBLKSIZ, df);
364 		dirloc = 0;
365 	}
366 	bcopy((char *)dp, dirbuf + dirloc, (long)dp->d_reclen);
367 	prev = dirloc;
368 	dirloc += dp->d_reclen;
369 }
370 
371 /*
372  * flush out a directory that is finished.
373  */
374 flushent()
375 {
376 
377 	((struct direct *)(dirbuf + prev))->d_reclen = DIRBLKSIZ - prev;
378 	(void) fwrite(dirbuf, (int)dirloc, 1, df);
379 	seekpt = ftell(df);
380 	dirloc = 0;
381 }
382 
383 dcvt(odp, ndp)
384 	register struct odirect *odp;
385 	register struct direct *ndp;
386 {
387 
388 	bzero((char *)ndp, (long)(sizeof *ndp));
389 	ndp->d_ino =  odp->d_ino;
390 	ndp->d_type = DT_UNKNOWN;
391 	(void) strncpy(ndp->d_name, odp->d_name, ODIRSIZ);
392 	ndp->d_namlen = strlen(ndp->d_name);
393 	ndp->d_reclen = DIRSIZ(0, ndp);
394 }
395 
396 /*
397  * Seek to an entry in a directory.
398  * Only values returned by rst_telldir should be passed to rst_seekdir.
399  * This routine handles many directories in a single file.
400  * It takes the base of the directory in the file, plus
401  * the desired seek offset into it.
402  */
403 void
404 rst_seekdir(dirp, loc, base)
405 	register RST_DIR *dirp;
406 	long loc, base;
407 {
408 
409 	if (loc == rst_telldir(dirp))
410 		return;
411 	loc -= base;
412 	if (loc < 0)
413 		fprintf(stderr, "bad seek pointer to rst_seekdir %d\n", loc);
414 	(void) lseek(dirp->dd_fd, base + (loc & ~(DIRBLKSIZ - 1)), 0);
415 	dirp->dd_loc = loc & (DIRBLKSIZ - 1);
416 	if (dirp->dd_loc != 0)
417 		dirp->dd_size = read(dirp->dd_fd, dirp->dd_buf, DIRBLKSIZ);
418 }
419 
420 /*
421  * get next entry in a directory.
422  */
423 struct direct *
424 rst_readdir(dirp)
425 	register RST_DIR *dirp;
426 {
427 	register struct direct *dp;
428 
429 	for (;;) {
430 		if (dirp->dd_loc == 0) {
431 			dirp->dd_size = read(dirp->dd_fd, dirp->dd_buf,
432 			    DIRBLKSIZ);
433 			if (dirp->dd_size <= 0) {
434 				dprintf(stderr, "error reading directory\n");
435 				return NULL;
436 			}
437 		}
438 		if (dirp->dd_loc >= dirp->dd_size) {
439 			dirp->dd_loc = 0;
440 			continue;
441 		}
442 		dp = (struct direct *)(dirp->dd_buf + dirp->dd_loc);
443 		if (dp->d_reclen == 0 ||
444 		    dp->d_reclen > DIRBLKSIZ + 1 - dirp->dd_loc) {
445 			dprintf(stderr, "corrupted directory: bad reclen %d\n",
446 				dp->d_reclen);
447 			return NULL;
448 		}
449 		dirp->dd_loc += dp->d_reclen;
450 		if (dp->d_ino == 0 && strcmp(dp->d_name, "/") != 0)
451 			continue;
452 		if (dp->d_ino >= maxino) {
453 			dprintf(stderr, "corrupted directory: bad inum %d\n",
454 				dp->d_ino);
455 			continue;
456 		}
457 		return (dp);
458 	}
459 }
460 
461 /*
462  * Simulate the opening of a directory
463  */
464 RST_DIR *
465 rst_opendir(name)
466 	char *name;
467 {
468 	struct inotab *itp;
469 	ino_t ino;
470 
471 	if ((ino = dirlookup(name)) > 0 &&
472 	    (itp = inotablookup(ino)) != NULL) {
473 		rst_seekdir(dirp, itp->t_seekpt, itp->t_seekpt);
474 		return (dirp);
475 	}
476 	return (0);
477 }
478 
479 /*
480  * Simulate finding the current offset in the directory.
481  */
482 long
483 rst_telldir(dirp)
484 	RST_DIR *dirp;
485 {
486 	long lseek();
487 
488 	return (lseek(dirp->dd_fd, 0L, 1) - dirp->dd_size + dirp->dd_loc);
489 }
490 
491 /*
492  * Open a directory file.
493  */
494 RST_DIR *
495 opendirfile(name)
496 	char *name;
497 {
498 	register RST_DIR *dirp;
499 	register int fd;
500 
501 	if ((fd = open(name, 0)) == -1)
502 		return NULL;
503 	if ((dirp = (RST_DIR *)malloc(sizeof(RST_DIR))) == NULL) {
504 		close (fd);
505 		return NULL;
506 	}
507 	dirp->dd_fd = fd;
508 	dirp->dd_loc = 0;
509 	return dirp;
510 }
511 
512 /*
513  * Set the mode, owner, and times for all new or changed directories
514  */
515 setdirmodes()
516 {
517 	FILE *mf;
518 	struct modeinfo node;
519 	struct entry *ep;
520 	char *cp;
521 
522 	vprintf(stdout, "Set directory mode, owner, and times.\n");
523 	(void) sprintf(modefile, "%s/rstmode%d", _PATH_TMP, dumpdate);
524 	mf = fopen(modefile, "r");
525 	if (mf == NULL) {
526 		perror("fopen");
527 		fprintf(stderr, "cannot open mode file %s\n", modefile);
528 		fprintf(stderr, "directory mode, owner, and times not set\n");
529 		return;
530 	}
531 	clearerr(mf);
532 	for (;;) {
533 		(void) fread((char *)&node, 1, sizeof(struct modeinfo), mf);
534 		if (feof(mf))
535 			break;
536 		ep = lookupino(node.ino);
537 		if (command == 'i' || command == 'x') {
538 			if (ep == NIL)
539 				continue;
540 			if (ep->e_flags & EXISTED) {
541 				ep->e_flags &= ~NEW;
542 				continue;
543 			}
544 			if (node.ino == ROOTINO &&
545 		   	    reply("set owner/mode for '.'") == FAIL)
546 				continue;
547 		}
548 		if (ep == NIL) {
549 			panic("cannot find directory inode %d\n", node.ino);
550 		} else {
551 			cp = myname(ep);
552 			(void) chown(cp, node.uid, node.gid);
553 			(void) chmod(cp, node.mode);
554 			utimes(cp, node.timep);
555 			ep->e_flags &= ~NEW;
556 		}
557 	}
558 	if (ferror(mf))
559 		panic("error setting directory modes\n");
560 	(void) fclose(mf);
561 }
562 
563 /*
564  * Generate a literal copy of a directory.
565  */
566 genliteraldir(name, ino)
567 	char *name;
568 	ino_t ino;
569 {
570 	register struct inotab *itp;
571 	int ofile, dp, i, size;
572 	char buf[BUFSIZ];
573 
574 	itp = inotablookup(ino);
575 	if (itp == NULL)
576 		panic("Cannot find directory inode %d named %s\n", ino, name);
577 	if ((ofile = creat(name, 0666)) < 0) {
578 		fprintf(stderr, "%s: ", name);
579 		(void) fflush(stderr);
580 		perror("cannot create file");
581 		return (FAIL);
582 	}
583 	rst_seekdir(dirp, itp->t_seekpt, itp->t_seekpt);
584 	dp = dup(dirp->dd_fd);
585 	for (i = itp->t_size; i > 0; i -= BUFSIZ) {
586 		size = i < BUFSIZ ? i : BUFSIZ;
587 		if (read(dp, buf, (int) size) == -1) {
588 			fprintf(stderr,
589 				"write error extracting inode %d, name %s\n",
590 				curfile.ino, curfile.name);
591 			perror("read");
592 			done(1);
593 		}
594 		if (!Nflag && write(ofile, buf, (int) size) == -1) {
595 			fprintf(stderr,
596 				"write error extracting inode %d, name %s\n",
597 				curfile.ino, curfile.name);
598 			perror("write");
599 			done(1);
600 		}
601 	}
602 	(void) close(dp);
603 	(void) close(ofile);
604 	return (GOOD);
605 }
606 
607 /*
608  * Determine the type of an inode
609  */
610 inodetype(ino)
611 	ino_t ino;
612 {
613 	struct inotab *itp;
614 
615 	itp = inotablookup(ino);
616 	if (itp == NULL)
617 		return (LEAF);
618 	return (NODE);
619 }
620 
621 /*
622  * Allocate and initialize a directory inode entry.
623  * If requested, save its pertinent mode, owner, and time info.
624  */
625 struct inotab *
626 allocinotab(ino, dip, seekpt)
627 	ino_t ino;
628 	struct dinode *dip;
629 	long seekpt;
630 {
631 	register struct inotab	*itp;
632 	struct modeinfo node;
633 
634 	itp = (struct inotab *)calloc(1, sizeof(struct inotab));
635 	if (itp == 0)
636 		panic("no memory directory table\n");
637 	itp->t_next = inotab[INOHASH(ino)];
638 	inotab[INOHASH(ino)] = itp;
639 	itp->t_ino = ino;
640 	itp->t_seekpt = seekpt;
641 	if (mf == NULL)
642 		return(itp);
643 	node.ino = ino;
644 	node.timep[0].tv_sec = dip->di_atime.ts_sec;
645 	node.timep[0].tv_usec = dip->di_atime.ts_nsec / 1000;
646 	node.timep[1].tv_sec = dip->di_mtime.ts_sec;
647 	node.timep[1].tv_usec = dip->di_mtime.ts_nsec / 1000;
648 	node.mode = dip->di_mode;
649 	node.uid = dip->di_uid;
650 	node.gid = dip->di_gid;
651 	(void) fwrite((char *)&node, 1, sizeof(struct modeinfo), mf);
652 	return(itp);
653 }
654 
655 /*
656  * Look up an inode in the table of directories
657  */
658 struct inotab *
659 inotablookup(ino)
660 	ino_t	ino;
661 {
662 	register struct inotab *itp;
663 
664 	for (itp = inotab[INOHASH(ino)]; itp != NULL; itp = itp->t_next)
665 		if (itp->t_ino == ino)
666 			return(itp);
667 	return ((struct inotab *)0);
668 }
669 
670 /*
671  * Clean up and exit
672  */
673 done(exitcode)
674 	int exitcode;
675 {
676 
677 	closemt();
678 	if (modefile[0] != '#')
679 		(void) unlink(modefile);
680 	if (dirfile[0] != '#')
681 		(void) unlink(dirfile);
682 	exit(exitcode);
683 }
684