dirs.c revision 21149
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
40static 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)
70struct inotab {
71	struct	inotab *t_next;
72	ino_t	t_ino;
73	long	t_seekpt;
74	long	t_size;
75};
76static struct inotab *inotab[HASHSIZE];
77
78/*
79 * Information retained about directories.
80 */
81struct 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
94struct 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 */
104static long	seekpt;
105static FILE	*df, *mf;
106static RST_DIR	*dirp;
107static char	dirfile[MAXPATHLEN] = "#";	/* No file */
108static char	modefile[MAXPATHLEN] = "#";	/* No file */
109static char	dot[2] = ".";			/* So it can be modified */
110
111/*
112 * Format of old style directories.
113 */
114#define ODIRSIZ 14
115struct odirect {
116	u_short	d_ino;
117	char	d_name[ODIRSIZ];
118};
119
120static struct inotab	*allocinotab __P((ino_t, struct dinode *, long));
121static void		 dcvt __P((struct odirect *, struct direct *));
122static void		 flushent __P((void));
123static struct inotab	*inotablookup __P((ino_t));
124static RST_DIR		*opendirfile __P((const char *));
125static void		 putdir __P((char *, long));
126static void		 putent __P((struct direct *));
127static void		 rst_seekdir __P((RST_DIR *, long, long));
128static long		 rst_telldir __P((RST_DIR *));
129static 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 */
137void
138extractdirs(genmode)
139	int genmode;
140{
141	register int i;
142	register struct dinode *ip;
143	struct inotab *itp;
144	struct direct nulldir;
145	int fd;
146
147	vprintf(stdout, "Extract directories from tape\n");
148	(void) sprintf(dirfile, "%srstdir%d", _PATH_TMP, dumpdate);
149	if (command != 'r' && command != 'R') {
150		(void *) strcat(dirfile, "-XXXXXX");
151		fd = mkstemp(dirfile);
152	} else
153		fd = open(dirfile, O_RDWR|O_CREAT|O_EXCL, 0666);
154	if (fd == -1 || (df = fdopen(fd, "w")) == NULL) {
155		if (fd != -1)
156			close(fd);
157		fprintf(stderr,
158		    "restore: %s - cannot create directory temporary\n",
159		    dirfile);
160		fprintf(stderr, "fopen: %s\n", strerror(errno));
161		done(1);
162	}
163	if (genmode != 0) {
164		(void) sprintf(modefile, "%srstmode%d", _PATH_TMP, dumpdate);
165		if (command != 'r' && command != 'R') {
166			(void *) strcat(modefile, "-XXXXXX");
167			fd = mkstemp(modefile);
168		} else
169			fd = open(modefile, O_RDWR|O_CREAT|O_EXCL, 0666);
170		if (fd == -1 || (mf = fdopen(fd, "w")) == NULL) {
171			if (fd != -1)
172				close(fd);
173			fprintf(stderr,
174			    "restore: %s - cannot create modefile \n",
175			    modefile);
176			fprintf(stderr, "fopen: %s\n", strerror(errno));
177			done(1);
178		}
179	}
180	nulldir.d_ino = 0;
181	nulldir.d_type = DT_DIR;
182	nulldir.d_namlen = 1;
183	(void) strcpy(nulldir.d_name, "/");
184	nulldir.d_reclen = DIRSIZ(0, &nulldir);
185	for (;;) {
186		curfile.name = "<directory file - name unknown>";
187		curfile.action = USING;
188		ip = curfile.dip;
189		if (ip == NULL || (ip->di_mode & IFMT) != IFDIR) {
190			(void) fclose(df);
191			dirp = opendirfile(dirfile);
192			if (dirp == NULL)
193				fprintf(stderr, "opendirfile: %s\n",
194				    strerror(errno));
195			if (mf != NULL)
196				(void) fclose(mf);
197			i = dirlookup(dot);
198			if (i == 0)
199				panic("Root directory is not on tape\n");
200			return;
201		}
202		itp = allocinotab(curfile.ino, ip, seekpt);
203		getfile(putdir, xtrnull);
204		putent(&nulldir);
205		flushent();
206		itp->t_size = seekpt - itp->t_seekpt;
207	}
208}
209
210/*
211 * skip over all the directories on the tape
212 */
213void
214skipdirs()
215{
216
217	while (curfile.dip && (curfile.dip->di_mode & IFMT) == IFDIR) {
218		skipfile();
219	}
220}
221
222/*
223 *	Recursively find names and inumbers of all files in subtree
224 *	pname and pass them off to be processed.
225 */
226void
227treescan(pname, ino, todo)
228	char *pname;
229	ino_t ino;
230	long (*todo) __P((char *, ino_t, int));
231{
232	register struct inotab *itp;
233	register struct direct *dp;
234	int namelen;
235	long bpt;
236	char locname[MAXPATHLEN + 1];
237
238	itp = inotablookup(ino);
239	if (itp == NULL) {
240		/*
241		 * Pname is name of a simple file or an unchanged directory.
242		 */
243		(void) (*todo)(pname, ino, LEAF);
244		return;
245	}
246	/*
247	 * Pname is a dumped directory name.
248	 */
249	if ((*todo)(pname, ino, NODE) == FAIL)
250		return;
251	/*
252	 * begin search through the directory
253	 * skipping over "." and ".."
254	 */
255	(void) strncpy(locname, pname, sizeof(locname) - 1);
256	locname[sizeof(locname) - 1] = '\0';
257	(void) strncat(locname, "/", sizeof(locname) - strlen(locname));
258	namelen = strlen(locname);
259	rst_seekdir(dirp, itp->t_seekpt, itp->t_seekpt);
260	dp = rst_readdir(dirp); /* "." */
261	if (dp != NULL && strcmp(dp->d_name, ".") == 0)
262		dp = rst_readdir(dirp); /* ".." */
263	else
264		fprintf(stderr, "Warning: `.' missing from directory %s\n",
265			pname);
266	if (dp != NULL && strcmp(dp->d_name, "..") == 0)
267		dp = rst_readdir(dirp); /* first real entry */
268	else
269		fprintf(stderr, "Warning: `..' missing from directory %s\n",
270			pname);
271	bpt = rst_telldir(dirp);
272	/*
273	 * a zero inode signals end of directory
274	 */
275	while (dp != NULL && dp->d_ino != 0) {
276		locname[namelen] = '\0';
277		if (namelen + dp->d_namlen >= sizeof(locname)) {
278			fprintf(stderr, "%s%s: name exceeds %d char\n",
279				locname, dp->d_name, sizeof(locname) - 1);
280		} else {
281			(void) strncat(locname, dp->d_name, (int)dp->d_namlen);
282			treescan(locname, dp->d_ino, todo);
283			rst_seekdir(dirp, bpt, itp->t_seekpt);
284		}
285		dp = rst_readdir(dirp);
286		bpt = rst_telldir(dirp);
287	}
288	if (dp == NULL)
289		fprintf(stderr, "corrupted directory: %s.\n", locname);
290}
291
292/*
293 * Lookup a pathname which is always assumed to start from the ROOTINO.
294 */
295struct direct *
296pathsearch(pathname)
297	const char *pathname;
298{
299	ino_t ino;
300	struct direct *dp;
301	char *path, *name, buffer[MAXPATHLEN];
302
303	strcpy(buffer, pathname);
304	path = buffer;
305	ino = ROOTINO;
306	while (*path == '/')
307		path++;
308	dp = NULL;
309	while ((name = strsep(&path, "/")) != NULL && *name != NULL) {
310		if ((dp = searchdir(ino, name)) == NULL)
311			return (NULL);
312		ino = dp->d_ino;
313	}
314	return (dp);
315}
316
317/*
318 * Lookup the requested name in directory inum.
319 * Return its inode number if found, zero if it does not exist.
320 */
321static struct direct *
322searchdir(inum, name)
323	ino_t	inum;
324	char	*name;
325{
326	register struct direct *dp;
327	register struct inotab *itp;
328	int len;
329
330	itp = inotablookup(inum);
331	if (itp == NULL)
332		return (NULL);
333	rst_seekdir(dirp, itp->t_seekpt, itp->t_seekpt);
334	len = strlen(name);
335	do {
336		dp = rst_readdir(dirp);
337		if (dp == NULL || dp->d_ino == 0)
338			return (NULL);
339	} while (dp->d_namlen != len || strncmp(dp->d_name, name, len) != 0);
340	return (dp);
341}
342
343/*
344 * Put the directory entries in the directory file
345 */
346static void
347putdir(buf, size)
348	char *buf;
349	long size;
350{
351	struct direct cvtbuf;
352	register struct odirect *odp;
353	struct odirect *eodp;
354	register struct direct *dp;
355	long loc, i;
356
357	if (cvtflag) {
358		eodp = (struct odirect *)&buf[size];
359		for (odp = (struct odirect *)buf; odp < eodp; odp++)
360			if (odp->d_ino != 0) {
361				dcvt(odp, &cvtbuf);
362				putent(&cvtbuf);
363			}
364	} else {
365		for (loc = 0; loc < size; ) {
366			dp = (struct direct *)(buf + loc);
367			if (Bcvt)
368				swabst((u_char *)"ls", (u_char *) dp);
369			if (oldinofmt && dp->d_ino != 0) {
370#if BYTE_ORDER == BIG_ENDIAN
371				if (Bcvt)
372#else
373				if (!Bcvt)
374#endif
375					dp->d_namlen = dp->d_type;
376				dp->d_type = DT_UNKNOWN;
377			}
378			i = DIRBLKSIZ - (loc & (DIRBLKSIZ - 1));
379			if ((dp->d_reclen & 0x3) != 0 ||
380			    dp->d_reclen > i ||
381			    dp->d_reclen < DIRSIZ(0, dp) ||
382			    dp->d_namlen > NAME_MAX) {
383				vprintf(stdout, "Mangled directory: ");
384				if ((dp->d_reclen & 0x3) != 0)
385					vprintf(stdout,
386					   "reclen not multiple of 4 ");
387				if (dp->d_reclen < DIRSIZ(0, dp))
388					vprintf(stdout,
389					   "reclen less than DIRSIZ (%d < %d) ",
390					   dp->d_reclen, DIRSIZ(0, dp));
391				if (dp->d_namlen > NAME_MAX)
392					vprintf(stdout,
393					   "reclen name too big (%d > %d) ",
394					   dp->d_namlen, NAME_MAX);
395				vprintf(stdout, "\n");
396				loc += i;
397				continue;
398			}
399			loc += dp->d_reclen;
400			if (dp->d_ino != 0) {
401				putent(dp);
402			}
403		}
404	}
405}
406
407/*
408 * These variables are "local" to the following two functions.
409 */
410char dirbuf[DIRBLKSIZ];
411long dirloc = 0;
412long prev = 0;
413
414/*
415 * add a new directory entry to a file.
416 */
417static void
418putent(dp)
419	struct direct *dp;
420{
421	dp->d_reclen = DIRSIZ(0, dp);
422	if (dirloc + dp->d_reclen > DIRBLKSIZ) {
423		((struct direct *)(dirbuf + prev))->d_reclen =
424		    DIRBLKSIZ - prev;
425		(void) fwrite(dirbuf, 1, DIRBLKSIZ, df);
426		dirloc = 0;
427	}
428	bcopy((char *)dp, dirbuf + dirloc, (long)dp->d_reclen);
429	prev = dirloc;
430	dirloc += dp->d_reclen;
431}
432
433/*
434 * flush out a directory that is finished.
435 */
436static void
437flushent()
438{
439	((struct direct *)(dirbuf + prev))->d_reclen = DIRBLKSIZ - prev;
440	(void) fwrite(dirbuf, (int)dirloc, 1, df);
441	seekpt = ftell(df);
442	dirloc = 0;
443}
444
445static void
446dcvt(odp, ndp)
447	register struct odirect *odp;
448	register struct direct *ndp;
449{
450
451	bzero((char *)ndp, (long)(sizeof *ndp));
452	ndp->d_ino =  odp->d_ino;
453	ndp->d_type = DT_UNKNOWN;
454	(void) strncpy(ndp->d_name, odp->d_name, ODIRSIZ);
455	ndp->d_namlen = strlen(ndp->d_name);
456	ndp->d_reclen = DIRSIZ(0, ndp);
457}
458
459/*
460 * Seek to an entry in a directory.
461 * Only values returned by rst_telldir should be passed to rst_seekdir.
462 * This routine handles many directories in a single file.
463 * It takes the base of the directory in the file, plus
464 * the desired seek offset into it.
465 */
466static void
467rst_seekdir(dirp, loc, base)
468	register RST_DIR *dirp;
469	long loc, base;
470{
471
472	if (loc == rst_telldir(dirp))
473		return;
474	loc -= base;
475	if (loc < 0)
476		fprintf(stderr, "bad seek pointer to rst_seekdir %d\n", loc);
477	(void) lseek(dirp->dd_fd, base + (loc & ~(DIRBLKSIZ - 1)), SEEK_SET);
478	dirp->dd_loc = loc & (DIRBLKSIZ - 1);
479	if (dirp->dd_loc != 0)
480		dirp->dd_size = read(dirp->dd_fd, dirp->dd_buf, DIRBLKSIZ);
481}
482
483/*
484 * get next entry in a directory.
485 */
486struct direct *
487rst_readdir(dirp)
488	register RST_DIR *dirp;
489{
490	register struct direct *dp;
491
492	for (;;) {
493		if (dirp->dd_loc == 0) {
494			dirp->dd_size = read(dirp->dd_fd, dirp->dd_buf,
495			    DIRBLKSIZ);
496			if (dirp->dd_size <= 0) {
497				dprintf(stderr, "error reading directory\n");
498				return (NULL);
499			}
500		}
501		if (dirp->dd_loc >= dirp->dd_size) {
502			dirp->dd_loc = 0;
503			continue;
504		}
505		dp = (struct direct *)(dirp->dd_buf + dirp->dd_loc);
506		if (dp->d_reclen == 0 ||
507		    dp->d_reclen > DIRBLKSIZ + 1 - dirp->dd_loc) {
508			dprintf(stderr, "corrupted directory: bad reclen %d\n",
509				dp->d_reclen);
510			return (NULL);
511		}
512		dirp->dd_loc += dp->d_reclen;
513		if (dp->d_ino == 0 && strcmp(dp->d_name, "/") != 0)
514			continue;
515		if (dp->d_ino >= maxino) {
516			dprintf(stderr, "corrupted directory: bad inum %d\n",
517				dp->d_ino);
518			continue;
519		}
520		return (dp);
521	}
522}
523
524/*
525 * Simulate the opening of a directory
526 */
527RST_DIR *
528rst_opendir(name)
529	const char *name;
530{
531	struct inotab *itp;
532	RST_DIR *dirp;
533	ino_t ino;
534
535	if ((ino = dirlookup(name)) > 0 &&
536	    (itp = inotablookup(ino)) != NULL) {
537		dirp = opendirfile(dirfile);
538		rst_seekdir(dirp, itp->t_seekpt, itp->t_seekpt);
539		return (dirp);
540	}
541	return (NULL);
542}
543
544/*
545 * In our case, there is nothing to do when closing a directory.
546 */
547void
548rst_closedir(dirp)
549	RST_DIR *dirp;
550{
551
552	(void)close(dirp->dd_fd);
553	free(dirp);
554	return;
555}
556
557/*
558 * Simulate finding the current offset in the directory.
559 */
560static long
561rst_telldir(dirp)
562	RST_DIR *dirp;
563{
564	return ((long)lseek(dirp->dd_fd,
565	    (off_t)0, SEEK_CUR) - dirp->dd_size + dirp->dd_loc);
566}
567
568/*
569 * Open a directory file.
570 */
571static RST_DIR *
572opendirfile(name)
573	const char *name;
574{
575	register RST_DIR *dirp;
576	register int fd;
577
578	if ((fd = open(name, O_RDONLY)) == -1)
579		return (NULL);
580	if ((dirp = malloc(sizeof(RST_DIR))) == NULL) {
581		(void)close(fd);
582		return (NULL);
583	}
584	dirp->dd_fd = fd;
585	dirp->dd_loc = 0;
586	return (dirp);
587}
588
589/*
590 * Set the mode, owner, and times for all new or changed directories
591 */
592void
593setdirmodes(flags)
594	int flags;
595{
596	FILE *mf;
597	struct modeinfo node;
598	struct entry *ep;
599	char *cp;
600
601	vprintf(stdout, "Set directory mode, owner, and times.\n");
602	if (command == 'r' || command == 'R')
603		(void) sprintf(modefile, "%srstmode%d", _PATH_TMP, dumpdate);
604	if (modefile[0] == '#') {
605		panic("modefile not defined\n");
606		fprintf(stderr, "directory mode, owner, and times not set\n");
607		return;
608	}
609	mf = fopen(modefile, "r");
610	if (mf == NULL) {
611		fprintf(stderr, "fopen: %s\n", strerror(errno));
612		fprintf(stderr, "cannot open mode file %s\n", modefile);
613		fprintf(stderr, "directory mode, owner, and times not set\n");
614		return;
615	}
616	clearerr(mf);
617	for (;;) {
618		(void) fread((char *)&node, 1, sizeof(struct modeinfo), mf);
619		if (feof(mf))
620			break;
621		ep = lookupino(node.ino);
622		if (command == 'i' || command == 'x') {
623			if (ep == NULL)
624				continue;
625			if ((flags & FORCE) == 0 && ep->e_flags & EXISTED) {
626				ep->e_flags &= ~NEW;
627				continue;
628			}
629			if (node.ino == ROOTINO &&
630		   	    reply("set owner/mode for '.'") == FAIL)
631				continue;
632		}
633		if (ep == NULL) {
634			panic("cannot find directory inode %d\n", node.ino);
635		} else {
636			cp = myname(ep);
637			(void) chown(cp, node.uid, node.gid);
638			(void) chmod(cp, node.mode);
639			utimes(cp, node.timep);
640			ep->e_flags &= ~NEW;
641		}
642	}
643	if (ferror(mf))
644		panic("error setting directory modes\n");
645	(void) fclose(mf);
646}
647
648/*
649 * Generate a literal copy of a directory.
650 */
651int
652genliteraldir(name, ino)
653	char *name;
654	ino_t ino;
655{
656	register struct inotab *itp;
657	int ofile, dp, i, size;
658	char buf[BUFSIZ];
659
660	itp = inotablookup(ino);
661	if (itp == NULL)
662		panic("Cannot find directory inode %d named %s\n", ino, name);
663	if ((ofile = open(name, O_WRONLY | O_CREAT | O_TRUNC, 0666)) < 0) {
664		fprintf(stderr, "%s: ", name);
665		(void) fflush(stderr);
666		fprintf(stderr, "cannot create file: %s\n", strerror(errno));
667		return (FAIL);
668	}
669	rst_seekdir(dirp, itp->t_seekpt, itp->t_seekpt);
670	dp = dup(dirp->dd_fd);
671	for (i = itp->t_size; i > 0; i -= BUFSIZ) {
672		size = i < BUFSIZ ? i : BUFSIZ;
673		if (read(dp, buf, (int) size) == -1) {
674			fprintf(stderr,
675				"write error extracting inode %d, name %s\n",
676				curfile.ino, curfile.name);
677			fprintf(stderr, "read: %s\n", strerror(errno));
678			done(1);
679		}
680		if (!Nflag && write(ofile, buf, (int) size) == -1) {
681			fprintf(stderr,
682				"write error extracting inode %d, name %s\n",
683				curfile.ino, curfile.name);
684			fprintf(stderr, "write: %s\n", strerror(errno));
685			done(1);
686		}
687	}
688	(void) close(dp);
689	(void) close(ofile);
690	return (GOOD);
691}
692
693/*
694 * Determine the type of an inode
695 */
696int
697inodetype(ino)
698	ino_t ino;
699{
700	struct inotab *itp;
701
702	itp = inotablookup(ino);
703	if (itp == NULL)
704		return (LEAF);
705	return (NODE);
706}
707
708/*
709 * Allocate and initialize a directory inode entry.
710 * If requested, save its pertinent mode, owner, and time info.
711 */
712static struct inotab *
713allocinotab(ino, dip, seekpt)
714	ino_t ino;
715	struct dinode *dip;
716	long seekpt;
717{
718	register struct inotab	*itp;
719	struct modeinfo node;
720
721	itp = calloc(1, sizeof(struct inotab));
722	if (itp == NULL)
723		panic("no memory directory table\n");
724	itp->t_next = inotab[INOHASH(ino)];
725	inotab[INOHASH(ino)] = itp;
726	itp->t_ino = ino;
727	itp->t_seekpt = seekpt;
728	if (mf == NULL)
729		return (itp);
730	node.ino = ino;
731	node.timep[0].tv_sec = dip->di_atime.tv_sec;
732	node.timep[0].tv_usec = dip->di_atime.tv_nsec / 1000;
733	node.timep[1].tv_sec = dip->di_mtime.tv_sec;
734	node.timep[1].tv_usec = dip->di_mtime.tv_nsec / 1000;
735	node.mode = dip->di_mode;
736	node.uid = dip->di_uid;
737	node.gid = dip->di_gid;
738	(void) fwrite((char *)&node, 1, sizeof(struct modeinfo), mf);
739	return (itp);
740}
741
742/*
743 * Look up an inode in the table of directories
744 */
745static struct inotab *
746inotablookup(ino)
747	ino_t	ino;
748{
749	register struct inotab *itp;
750
751	for (itp = inotab[INOHASH(ino)]; itp != NULL; itp = itp->t_next)
752		if (itp->t_ino == ino)
753			return (itp);
754	return (NULL);
755}
756
757/*
758 * Clean up and exit
759 */
760void
761done(exitcode)
762	int exitcode;
763{
764
765	closemt();
766	if (modefile[0] != '#')
767		(void) unlink(modefile);
768	if (dirfile[0] != '#')
769		(void) unlink(dirfile);
770	exit(exitcode);
771}
772