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