xref: /freebsd/sbin/restore/dirs.c (revision e627b39baccd1ec9129690167cf5e6d860509655)
1 /*
2  * Copyright (c) 1983, 1993
3  *	The Regents of the University of California.  All rights reserved.
4  * (c) UNIX System Laboratories, Inc.
5  * All or some portions of this file are derived from material licensed
6  * to the University of California by American Telephone and Telegraph
7  * Co. or Unix System Laboratories, Inc. and are reproduced herein with
8  * the permission of UNIX System Laboratories, Inc.
9  *
10  * Redistribution and use in source and binary forms, with or without
11  * modification, are permitted provided that the following conditions
12  * are met:
13  * 1. Redistributions of source code must retain the above copyright
14  *    notice, this list of conditions and the following disclaimer.
15  * 2. Redistributions in binary form must reproduce the above copyright
16  *    notice, this list of conditions and the following disclaimer in the
17  *    documentation and/or other materials provided with the distribution.
18  * 3. All advertising materials mentioning features or use of this software
19  *    must display the following acknowledgement:
20  *	This product includes software developed by the University of
21  *	California, Berkeley and its contributors.
22  * 4. Neither the name of the University nor the names of its contributors
23  *    may be used to endorse or promote products derived from this software
24  *    without specific prior written permission.
25  *
26  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
27  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
28  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
29  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
30  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
31  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
32  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
33  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
34  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
35  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
36  * SUCH DAMAGE.
37  */
38 
39 #ifndef lint
40 static char sccsid[] = "@(#)dirs.c	8.2 (Berkeley) 1/21/94";
41 #endif /* not lint */
42 
43 #include <sys/param.h>
44 #include <sys/file.h>
45 #include <sys/stat.h>
46 #include <sys/time.h>
47 
48 #include <ufs/ffs/fs.h>
49 #include <ufs/ufs/dinode.h>
50 #include <ufs/ufs/dir.h>
51 #include <protocols/dumprestore.h>
52 
53 #include <errno.h>
54 #include <stdio.h>
55 #include <stdlib.h>
56 #include <string.h>
57 #include <unistd.h>
58 
59 #include <machine/endian.h>
60 
61 #include "pathnames.h"
62 #include "restore.h"
63 #include "extern.h"
64 
65 /*
66  * Symbol table of directories read from tape.
67  */
68 #define HASHSIZE	1000
69 #define INOHASH(val) (val % HASHSIZE)
70 struct inotab {
71 	struct	inotab *t_next;
72 	ino_t	t_ino;
73 	long	t_seekpt;
74 	long	t_size;
75 };
76 static struct inotab *inotab[HASHSIZE];
77 
78 /*
79  * Information retained about directories.
80  */
81 struct modeinfo {
82 	ino_t ino;
83 	struct timeval timep[2];
84 	short mode;
85 	short uid;
86 	short gid;
87 };
88 
89 /*
90  * Definitions for library routines operating on directories.
91  */
92 #undef DIRBLKSIZ
93 #define DIRBLKSIZ 1024
94 struct rstdirdesc {
95 	int	dd_fd;
96 	long	dd_loc;
97 	long	dd_size;
98 	char	dd_buf[DIRBLKSIZ];
99 };
100 
101 /*
102  * Global variables for this file.
103  */
104 static long	seekpt;
105 static FILE	*df, *mf;
106 static RST_DIR	*dirp;
107 static char	dirfile[32] = "#";	/* No file */
108 static char	modefile[32] = "#";	/* No file */
109 static char	dot[2] = ".";		/* So it can be modified */
110 
111 /*
112  * Format of old style directories.
113  */
114 #define ODIRSIZ 14
115 struct odirect {
116 	u_short	d_ino;
117 	char	d_name[ODIRSIZ];
118 };
119 
120 static struct inotab	*allocinotab __P((ino_t, struct dinode *, long));
121 static void		 dcvt __P((struct odirect *, struct direct *));
122 static void		 flushent __P((void));
123 static struct inotab	*inotablookup __P((ino_t));
124 static RST_DIR		*opendirfile __P((const char *));
125 static void		 putdir __P((char *, long));
126 static void		 putent __P((struct direct *));
127 static void		 rst_seekdir __P((RST_DIR *, long, long));
128 static long		 rst_telldir __P((RST_DIR *));
129 static struct direct	*searchdir __P((ino_t, char *));
130 
131 /*
132  *	Extract directory contents, building up a directory structure
133  *	on disk for extraction by name.
134  *	If genmode is requested, save mode, owner, and times for all
135  *	directories on the tape.
136  */
137 void
138 extractdirs(genmode)
139 	int genmode;
140 {
141 	register int i;
142 	register struct dinode *ip;
143 	struct inotab *itp;
144 	struct direct nulldir;
145 
146 	vprintf(stdout, "Extract directories from tape\n");
147 	(void) sprintf(dirfile, "%s/rstdir%d", _PATH_TMP, dumpdate);
148 	df = fopen(dirfile, "w");
149 	if (df == NULL) {
150 		fprintf(stderr,
151 		    "restore: %s - cannot create directory temporary\n",
152 		    dirfile);
153 		fprintf(stderr, "fopen: %s\n", strerror(errno));
154 		done(1);
155 	}
156 	if (genmode != 0) {
157 		(void) sprintf(modefile, "%s/rstmode%d", _PATH_TMP, dumpdate);
158 		mf = fopen(modefile, "w");
159 		if (mf == NULL) {
160 			fprintf(stderr,
161 			    "restore: %s - cannot create modefile \n",
162 			    modefile);
163 			fprintf(stderr, "fopen: %s\n", strerror(errno));
164 			done(1);
165 		}
166 	}
167 	nulldir.d_ino = 0;
168 	nulldir.d_type = DT_DIR;
169 	nulldir.d_namlen = 1;
170 	(void) strcpy(nulldir.d_name, "/");
171 	nulldir.d_reclen = DIRSIZ(0, &nulldir);
172 	for (;;) {
173 		curfile.name = "<directory file - name unknown>";
174 		curfile.action = USING;
175 		ip = curfile.dip;
176 		if (ip == NULL || (ip->di_mode & IFMT) != IFDIR) {
177 			(void) fclose(df);
178 			dirp = opendirfile(dirfile);
179 			if (dirp == NULL)
180 				fprintf(stderr, "opendirfile: %s\n",
181 				    strerror(errno));
182 			if (mf != NULL)
183 				(void) fclose(mf);
184 			i = dirlookup(dot);
185 			if (i == 0)
186 				panic("Root directory is not on tape\n");
187 			return;
188 		}
189 		itp = allocinotab(curfile.ino, ip, seekpt);
190 		getfile(putdir, xtrnull);
191 		putent(&nulldir);
192 		flushent();
193 		itp->t_size = seekpt - itp->t_seekpt;
194 	}
195 }
196 
197 /*
198  * skip over all the directories on the tape
199  */
200 void
201 skipdirs()
202 {
203 
204 	while (curfile.dip && (curfile.dip->di_mode & IFMT) == IFDIR) {
205 		skipfile();
206 	}
207 }
208 
209 /*
210  *	Recursively find names and inumbers of all files in subtree
211  *	pname and pass them off to be processed.
212  */
213 void
214 treescan(pname, ino, todo)
215 	char *pname;
216 	ino_t ino;
217 	long (*todo) __P((char *, ino_t, int));
218 {
219 	register struct inotab *itp;
220 	register struct direct *dp;
221 	int namelen;
222 	long bpt;
223 	char locname[MAXPATHLEN + 1];
224 
225 	itp = inotablookup(ino);
226 	if (itp == NULL) {
227 		/*
228 		 * Pname is name of a simple file or an unchanged directory.
229 		 */
230 		(void) (*todo)(pname, ino, LEAF);
231 		return;
232 	}
233 	/*
234 	 * Pname is a dumped directory name.
235 	 */
236 	if ((*todo)(pname, ino, NODE) == FAIL)
237 		return;
238 	/*
239 	 * begin search through the directory
240 	 * skipping over "." and ".."
241 	 */
242 	(void) strncpy(locname, pname, MAXPATHLEN);
243 	(void) strncat(locname, "/", MAXPATHLEN);
244 	namelen = strlen(locname);
245 	rst_seekdir(dirp, itp->t_seekpt, itp->t_seekpt);
246 	dp = rst_readdir(dirp); /* "." */
247 	if (dp != NULL && strcmp(dp->d_name, ".") == 0)
248 		dp = rst_readdir(dirp); /* ".." */
249 	else
250 		fprintf(stderr, "Warning: `.' missing from directory %s\n",
251 			pname);
252 	if (dp != NULL && strcmp(dp->d_name, "..") == 0)
253 		dp = rst_readdir(dirp); /* first real entry */
254 	else
255 		fprintf(stderr, "Warning: `..' missing from directory %s\n",
256 			pname);
257 	bpt = rst_telldir(dirp);
258 	/*
259 	 * a zero inode signals end of directory
260 	 */
261 	while (dp != NULL && dp->d_ino != 0) {
262 		locname[namelen] = '\0';
263 		if (namelen + dp->d_namlen >= MAXPATHLEN) {
264 			fprintf(stderr, "%s%s: name exceeds %d char\n",
265 				locname, dp->d_name, MAXPATHLEN);
266 		} else {
267 			(void) strncat(locname, dp->d_name, (int)dp->d_namlen);
268 			treescan(locname, dp->d_ino, todo);
269 			rst_seekdir(dirp, bpt, itp->t_seekpt);
270 		}
271 		dp = rst_readdir(dirp);
272 		bpt = rst_telldir(dirp);
273 	}
274 	if (dp == NULL)
275 		fprintf(stderr, "corrupted directory: %s.\n", locname);
276 }
277 
278 /*
279  * Lookup a pathname which is always assumed to start from the ROOTINO.
280  */
281 struct direct *
282 pathsearch(pathname)
283 	const char *pathname;
284 {
285 	ino_t ino;
286 	struct direct *dp;
287 	char *path, *name, buffer[MAXPATHLEN];
288 
289 	strcpy(buffer, pathname);
290 	path = buffer;
291 	ino = ROOTINO;
292 	while (*path == '/')
293 		path++;
294 	dp = NULL;
295 	while ((name = strsep(&path, "/")) != NULL && *name != NULL) {
296 		if ((dp = searchdir(ino, name)) == NULL)
297 			return (NULL);
298 		ino = dp->d_ino;
299 	}
300 	return (dp);
301 }
302 
303 /*
304  * Lookup the requested name in directory inum.
305  * Return its inode number if found, zero if it does not exist.
306  */
307 static struct direct *
308 searchdir(inum, name)
309 	ino_t	inum;
310 	char	*name;
311 {
312 	register struct direct *dp;
313 	register struct inotab *itp;
314 	int len;
315 
316 	itp = inotablookup(inum);
317 	if (itp == NULL)
318 		return (NULL);
319 	rst_seekdir(dirp, itp->t_seekpt, itp->t_seekpt);
320 	len = strlen(name);
321 	do {
322 		dp = rst_readdir(dirp);
323 		if (dp == NULL || dp->d_ino == 0)
324 			return (NULL);
325 	} while (dp->d_namlen != len || strncmp(dp->d_name, name, len) != 0);
326 	return (dp);
327 }
328 
329 /*
330  * Put the directory entries in the directory file
331  */
332 static void
333 putdir(buf, size)
334 	char *buf;
335 	long size;
336 {
337 	struct direct cvtbuf;
338 	register struct odirect *odp;
339 	struct odirect *eodp;
340 	register struct direct *dp;
341 	long loc, i;
342 
343 	if (cvtflag) {
344 		eodp = (struct odirect *)&buf[size];
345 		for (odp = (struct odirect *)buf; odp < eodp; odp++)
346 			if (odp->d_ino != 0) {
347 				dcvt(odp, &cvtbuf);
348 				putent(&cvtbuf);
349 			}
350 	} else {
351 		for (loc = 0; loc < size; ) {
352 			dp = (struct direct *)(buf + loc);
353 			if (Bcvt)
354 				swabst((u_char *)"ls", (u_char *) dp);
355 			if (oldinofmt && dp->d_ino != 0) {
356 #if BYTE_ORDER == BIG_ENDIAN
357 				if (Bcvt)
358 #else
359 				if (!Bcvt)
360 #endif
361 					dp->d_namlen = dp->d_type;
362 				dp->d_type = DT_UNKNOWN;
363 			}
364 			i = DIRBLKSIZ - (loc & (DIRBLKSIZ - 1));
365 			if ((dp->d_reclen & 0x3) != 0 ||
366 			    dp->d_reclen > i ||
367 			    dp->d_reclen < DIRSIZ(0, dp) ||
368 			    dp->d_namlen > NAME_MAX) {
369 				vprintf(stdout, "Mangled directory: ");
370 				if ((dp->d_reclen & 0x3) != 0)
371 					vprintf(stdout,
372 					   "reclen not multiple of 4 ");
373 				if (dp->d_reclen < DIRSIZ(0, dp))
374 					vprintf(stdout,
375 					   "reclen less than DIRSIZ (%d < %d) ",
376 					   dp->d_reclen, DIRSIZ(0, dp));
377 				if (dp->d_namlen > NAME_MAX)
378 					vprintf(stdout,
379 					   "reclen name too big (%d > %d) ",
380 					   dp->d_namlen, NAME_MAX);
381 				vprintf(stdout, "\n");
382 				loc += i;
383 				continue;
384 			}
385 			loc += dp->d_reclen;
386 			if (dp->d_ino != 0) {
387 				putent(dp);
388 			}
389 		}
390 	}
391 }
392 
393 /*
394  * These variables are "local" to the following two functions.
395  */
396 char dirbuf[DIRBLKSIZ];
397 long dirloc = 0;
398 long prev = 0;
399 
400 /*
401  * add a new directory entry to a file.
402  */
403 static void
404 putent(dp)
405 	struct direct *dp;
406 {
407 	dp->d_reclen = DIRSIZ(0, dp);
408 	if (dirloc + dp->d_reclen > DIRBLKSIZ) {
409 		((struct direct *)(dirbuf + prev))->d_reclen =
410 		    DIRBLKSIZ - prev;
411 		(void) fwrite(dirbuf, 1, DIRBLKSIZ, df);
412 		dirloc = 0;
413 	}
414 	bcopy((char *)dp, dirbuf + dirloc, (long)dp->d_reclen);
415 	prev = dirloc;
416 	dirloc += dp->d_reclen;
417 }
418 
419 /*
420  * flush out a directory that is finished.
421  */
422 static void
423 flushent()
424 {
425 	((struct direct *)(dirbuf + prev))->d_reclen = DIRBLKSIZ - prev;
426 	(void) fwrite(dirbuf, (int)dirloc, 1, df);
427 	seekpt = ftell(df);
428 	dirloc = 0;
429 }
430 
431 static void
432 dcvt(odp, ndp)
433 	register struct odirect *odp;
434 	register struct direct *ndp;
435 {
436 
437 	bzero((char *)ndp, (long)(sizeof *ndp));
438 	ndp->d_ino =  odp->d_ino;
439 	ndp->d_type = DT_UNKNOWN;
440 	(void) strncpy(ndp->d_name, odp->d_name, ODIRSIZ);
441 	ndp->d_namlen = strlen(ndp->d_name);
442 	ndp->d_reclen = DIRSIZ(0, ndp);
443 }
444 
445 /*
446  * Seek to an entry in a directory.
447  * Only values returned by rst_telldir should be passed to rst_seekdir.
448  * This routine handles many directories in a single file.
449  * It takes the base of the directory in the file, plus
450  * the desired seek offset into it.
451  */
452 static void
453 rst_seekdir(dirp, loc, base)
454 	register RST_DIR *dirp;
455 	long loc, base;
456 {
457 
458 	if (loc == rst_telldir(dirp))
459 		return;
460 	loc -= base;
461 	if (loc < 0)
462 		fprintf(stderr, "bad seek pointer to rst_seekdir %d\n", loc);
463 	(void) lseek(dirp->dd_fd, base + (loc & ~(DIRBLKSIZ - 1)), SEEK_SET);
464 	dirp->dd_loc = loc & (DIRBLKSIZ - 1);
465 	if (dirp->dd_loc != 0)
466 		dirp->dd_size = read(dirp->dd_fd, dirp->dd_buf, DIRBLKSIZ);
467 }
468 
469 /*
470  * get next entry in a directory.
471  */
472 struct direct *
473 rst_readdir(dirp)
474 	register RST_DIR *dirp;
475 {
476 	register struct direct *dp;
477 
478 	for (;;) {
479 		if (dirp->dd_loc == 0) {
480 			dirp->dd_size = read(dirp->dd_fd, dirp->dd_buf,
481 			    DIRBLKSIZ);
482 			if (dirp->dd_size <= 0) {
483 				dprintf(stderr, "error reading directory\n");
484 				return (NULL);
485 			}
486 		}
487 		if (dirp->dd_loc >= dirp->dd_size) {
488 			dirp->dd_loc = 0;
489 			continue;
490 		}
491 		dp = (struct direct *)(dirp->dd_buf + dirp->dd_loc);
492 		if (dp->d_reclen == 0 ||
493 		    dp->d_reclen > DIRBLKSIZ + 1 - dirp->dd_loc) {
494 			dprintf(stderr, "corrupted directory: bad reclen %d\n",
495 				dp->d_reclen);
496 			return (NULL);
497 		}
498 		dirp->dd_loc += dp->d_reclen;
499 		if (dp->d_ino == 0 && strcmp(dp->d_name, "/") != 0)
500 			continue;
501 		if (dp->d_ino >= maxino) {
502 			dprintf(stderr, "corrupted directory: bad inum %d\n",
503 				dp->d_ino);
504 			continue;
505 		}
506 		return (dp);
507 	}
508 }
509 
510 /*
511  * Simulate the opening of a directory
512  */
513 RST_DIR *
514 rst_opendir(name)
515 	const char *name;
516 {
517 	struct inotab *itp;
518 	RST_DIR *dirp;
519 	ino_t ino;
520 
521 	if ((ino = dirlookup(name)) > 0 &&
522 	    (itp = inotablookup(ino)) != NULL) {
523 		dirp = opendirfile(dirfile);
524 		rst_seekdir(dirp, itp->t_seekpt, itp->t_seekpt);
525 		return (dirp);
526 	}
527 	return (NULL);
528 }
529 
530 /*
531  * In our case, there is nothing to do when closing a directory.
532  */
533 void
534 rst_closedir(dirp)
535 	RST_DIR *dirp;
536 {
537 
538 	(void)close(dirp->dd_fd);
539 	free(dirp);
540 	return;
541 }
542 
543 /*
544  * Simulate finding the current offset in the directory.
545  */
546 static long
547 rst_telldir(dirp)
548 	RST_DIR *dirp;
549 {
550 	return ((long)lseek(dirp->dd_fd,
551 	    (off_t)0, SEEK_CUR) - dirp->dd_size + dirp->dd_loc);
552 }
553 
554 /*
555  * Open a directory file.
556  */
557 static RST_DIR *
558 opendirfile(name)
559 	const char *name;
560 {
561 	register RST_DIR *dirp;
562 	register int fd;
563 
564 	if ((fd = open(name, O_RDONLY)) == -1)
565 		return (NULL);
566 	if ((dirp = malloc(sizeof(RST_DIR))) == NULL) {
567 		(void)close(fd);
568 		return (NULL);
569 	}
570 	dirp->dd_fd = fd;
571 	dirp->dd_loc = 0;
572 	return (dirp);
573 }
574 
575 /*
576  * Set the mode, owner, and times for all new or changed directories
577  */
578 void
579 setdirmodes(flags)
580 	int flags;
581 {
582 	FILE *mf;
583 	struct modeinfo node;
584 	struct entry *ep;
585 	char *cp;
586 
587 	vprintf(stdout, "Set directory mode, owner, and times.\n");
588 	(void) sprintf(modefile, "%s/rstmode%d", _PATH_TMP, dumpdate);
589 	mf = fopen(modefile, "r");
590 	if (mf == NULL) {
591 		fprintf(stderr, "fopen: %s\n", strerror(errno));
592 		fprintf(stderr, "cannot open mode file %s\n", modefile);
593 		fprintf(stderr, "directory mode, owner, and times not set\n");
594 		return;
595 	}
596 	clearerr(mf);
597 	for (;;) {
598 		(void) fread((char *)&node, 1, sizeof(struct modeinfo), mf);
599 		if (feof(mf))
600 			break;
601 		ep = lookupino(node.ino);
602 		if (command == 'i' || command == 'x') {
603 			if (ep == NULL)
604 				continue;
605 			if ((flags & FORCE) == 0 && ep->e_flags & EXISTED) {
606 				ep->e_flags &= ~NEW;
607 				continue;
608 			}
609 			if (node.ino == ROOTINO &&
610 		   	    reply("set owner/mode for '.'") == FAIL)
611 				continue;
612 		}
613 		if (ep == NULL) {
614 			panic("cannot find directory inode %d\n", node.ino);
615 		} else {
616 			cp = myname(ep);
617 			(void) chown(cp, node.uid, node.gid);
618 			(void) chmod(cp, node.mode);
619 			utimes(cp, node.timep);
620 			ep->e_flags &= ~NEW;
621 		}
622 	}
623 	if (ferror(mf))
624 		panic("error setting directory modes\n");
625 	(void) fclose(mf);
626 }
627 
628 /*
629  * Generate a literal copy of a directory.
630  */
631 int
632 genliteraldir(name, ino)
633 	char *name;
634 	ino_t ino;
635 {
636 	register struct inotab *itp;
637 	int ofile, dp, i, size;
638 	char buf[BUFSIZ];
639 
640 	itp = inotablookup(ino);
641 	if (itp == NULL)
642 		panic("Cannot find directory inode %d named %s\n", ino, name);
643 	if ((ofile = creat(name, 0666)) < 0) {
644 		fprintf(stderr, "%s: ", name);
645 		(void) fflush(stderr);
646 		fprintf(stderr, "cannot create file: %s\n", strerror(errno));
647 		return (FAIL);
648 	}
649 	rst_seekdir(dirp, itp->t_seekpt, itp->t_seekpt);
650 	dp = dup(dirp->dd_fd);
651 	for (i = itp->t_size; i > 0; i -= BUFSIZ) {
652 		size = i < BUFSIZ ? i : BUFSIZ;
653 		if (read(dp, buf, (int) size) == -1) {
654 			fprintf(stderr,
655 				"write error extracting inode %d, name %s\n",
656 				curfile.ino, curfile.name);
657 			fprintf(stderr, "read: %s\n", strerror(errno));
658 			done(1);
659 		}
660 		if (!Nflag && write(ofile, buf, (int) size) == -1) {
661 			fprintf(stderr,
662 				"write error extracting inode %d, name %s\n",
663 				curfile.ino, curfile.name);
664 			fprintf(stderr, "write: %s\n", strerror(errno));
665 			done(1);
666 		}
667 	}
668 	(void) close(dp);
669 	(void) close(ofile);
670 	return (GOOD);
671 }
672 
673 /*
674  * Determine the type of an inode
675  */
676 int
677 inodetype(ino)
678 	ino_t ino;
679 {
680 	struct inotab *itp;
681 
682 	itp = inotablookup(ino);
683 	if (itp == NULL)
684 		return (LEAF);
685 	return (NODE);
686 }
687 
688 /*
689  * Allocate and initialize a directory inode entry.
690  * If requested, save its pertinent mode, owner, and time info.
691  */
692 static struct inotab *
693 allocinotab(ino, dip, seekpt)
694 	ino_t ino;
695 	struct dinode *dip;
696 	long seekpt;
697 {
698 	register struct inotab	*itp;
699 	struct modeinfo node;
700 
701 	itp = calloc(1, sizeof(struct inotab));
702 	if (itp == NULL)
703 		panic("no memory directory table\n");
704 	itp->t_next = inotab[INOHASH(ino)];
705 	inotab[INOHASH(ino)] = itp;
706 	itp->t_ino = ino;
707 	itp->t_seekpt = seekpt;
708 	if (mf == NULL)
709 		return (itp);
710 	node.ino = ino;
711 	node.timep[0].tv_sec = dip->di_atime.tv_sec;
712 	node.timep[0].tv_usec = dip->di_atime.tv_nsec / 1000;
713 	node.timep[1].tv_sec = dip->di_mtime.tv_sec;
714 	node.timep[1].tv_usec = dip->di_mtime.tv_nsec / 1000;
715 	node.mode = dip->di_mode;
716 	node.uid = dip->di_uid;
717 	node.gid = dip->di_gid;
718 	(void) fwrite((char *)&node, 1, sizeof(struct modeinfo), mf);
719 	return (itp);
720 }
721 
722 /*
723  * Look up an inode in the table of directories
724  */
725 static struct inotab *
726 inotablookup(ino)
727 	ino_t	ino;
728 {
729 	register struct inotab *itp;
730 
731 	for (itp = inotab[INOHASH(ino)]; itp != NULL; itp = itp->t_next)
732 		if (itp->t_ino == ino)
733 			return (itp);
734 	return (NULL);
735 }
736 
737 /*
738  * Clean up and exit
739  */
740 void
741 done(exitcode)
742 	int exitcode;
743 {
744 
745 	closemt();
746 	if (modefile[0] != '#')
747 		(void) unlink(modefile);
748 	if (dirfile[0] != '#')
749 		(void) unlink(dirfile);
750 	exit(exitcode);
751 }
752