]> git.wh0rd.org - dump.git/blobdiff - restore/dirs.c
Added CVS Id.
[dump.git] / restore / dirs.c
index 78285addd1f126dddfa23bc5f402b420334278bd..e4cffd956755f3d25a55eecbbd211aaefc8f102e 100644 (file)
@@ -1,7 +1,8 @@
 /*
  *     Ported to Linux's Second Extended File System as part of the
  *     dump and restore backup suit
- *     Remy Card <card@Linux.EU.Org>, 1994, 1995, 1996
+ *     Remy Card <card@Linux.EU.Org>, 1994-1997
+ *      Stelian Pop <pop@cybercable.fr>, 1999 
  *
  */
 
  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  * SUCH DAMAGE.
+ *
+ * $Id: dirs.c,v 1.5 1999/10/11 13:31:12 stelian Exp $
  */
 
-#ifndef lint
-static char sccsid[] = "@(#)dirs.c     8.7 (Berkeley) 5/1/95";
-#endif /* not lint */
-
 #include <sys/param.h>
 #include <sys/file.h>
 #include <sys/stat.h>
-#include <sys/time.h>
 
 #ifdef __linux__
 #include <linux/ext2_fs.h>
@@ -58,10 +56,10 @@ static char sccsid[] = "@(#)dirs.c  8.7 (Berkeley) 5/1/95";
 #else  /* __linux__ */
 #include <ufs/ufs/dinode.h>
 #include <ufs/ufs/dir.h>
-#include <ufs/ffs/fs.h>
 #endif /* __linux__ */
 #include <protocols/dumprestore.h>
 
+#include <compaterr.h>
 #include <errno.h>
 #include <stdio.h>
 #include <stdlib.h>
@@ -86,8 +84,8 @@ static char sccsid[] = "@(#)dirs.c    8.7 (Berkeley) 5/1/95";
 struct inotab {
        struct  inotab *t_next;
        ino_t   t_ino;
-       long    t_seekpt;
-       long    t_size;
+       int32_t t_seekpt;
+       int32_t t_size;
 };
 static struct inotab *inotab[HASHSIZE];
 
@@ -100,7 +98,7 @@ struct modeinfo {
        mode_t mode;
        uid_t uid;
        gid_t gid;
-       int flags;
+       unsigned int flags;
 };
 
 /*
@@ -110,8 +108,8 @@ struct modeinfo {
 #define DIRBLKSIZ 1024
 struct rstdirdesc {
        int     dd_fd;
-       long    dd_loc;
-       long    dd_size;
+       int32_t dd_loc;
+       int32_t dd_size;
        char    dd_buf[DIRBLKSIZ];
 };
 
@@ -121,9 +119,9 @@ struct rstdirdesc {
 static long    seekpt;
 static FILE    *df, *mf;
 static RST_DIR *dirp;
-static char    dirfile[32] = "#";      /* No file */
-static char    modefile[32] = "#";     /* No file */
-static char    dot[2] = ".";           /* So it can be modified */
+static char    dirfile[MAXPATHLEN] = "#";      /* No file */
+static char    modefile[MAXPATHLEN] = "#";     /* No file */
+static char    dot[2] = ".";                   /* So it can be modified */
 
 /*
  * Format of old style directories.
@@ -143,7 +141,7 @@ static void          dcvt __P((struct odirect *, struct direct *));
 static void             flushent __P((void));
 static struct inotab   *inotablookup __P((ino_t));
 static RST_DIR         *opendirfile __P((const char *));
-static void             putdir __P((char *, long));
+static void             putdir __P((char *, size_t));
 static void             putent __P((struct direct *));
 static void             rst_seekdir __P((RST_DIR *, long, long));
 static long             rst_telldir __P((RST_DIR *));
@@ -156,8 +154,7 @@ static struct direct        *searchdir __P((ino_t, char *));
  *     directories on the tape.
  */
 void
-extractdirs(genmode)
-       int genmode;
+extractdirs(int genmode)
 {
        register int i;
 #ifdef __linux__
@@ -167,34 +164,41 @@ extractdirs(genmode)
 #endif
        struct inotab *itp;
        struct direct nulldir;
-
-       vprintf(stdout, "Extract directories from tape\n");
-       (void) sprintf(dirfile, "%s/rstdir%d", tmpdir, dumpdate);
-       df = fopen(dirfile, "w");
-       if (df == NULL) {
-               fprintf(stderr,
-                   "restore: %s - cannot create directory temporary\n",
-                   dirfile);
-               fprintf(stderr, "fopen: %s\n", strerror(errno));
-               done(1);
+       int fd;
+
+       Vprintf(stdout, "Extract directories from tape\n");
+       (void) snprintf(dirfile, sizeof(dirfile), "%s/rstdir%ld", tmpdir,
+               (long)dumpdate);
+       if (command != 'r' && command != 'R') {
+               (void) strncat(dirfile, "-XXXXXX",
+                       sizeof(dirfile) - strlen(dirfile));
+               fd = mkstemp(dirfile);
+       } else
+               fd = open(dirfile, O_RDWR|O_CREAT|O_EXCL, 0666);
+       if (fd == -1 || (df = fdopen(fd, "w")) == NULL) {
+               if (fd != -1)
+                       close(fd);
+               err(1, "cannot create directory temporary %s", dirfile);
        }
        if (genmode != 0) {
-               (void) sprintf(modefile, "%s/rstmode%d", tmpdir, dumpdate);
-               mf = fopen(modefile, "w");
-               if (mf == NULL) {
-                       fprintf(stderr,
-                           "restore: %s - cannot create modefile \n",
-                           modefile);
-                       fprintf(stderr, "fopen: %s\n", strerror(errno));
-                       done(1);
+               (void) snprintf(modefile, sizeof(modefile), "%s/rstmode%ld", tmpdir, (long)dumpdate);
+               if (command != 'r' && command != 'R') {
+                       (void) strncat(modefile, "-XXXXXX",
+                               sizeof(modefile) - strlen(modefile));
+                       fd = mkstemp(modefile);
+               } else
+                       fd = open(modefile, O_RDWR|O_CREAT|O_EXCL, 0666);
+               if (fd == -1 || (mf = fdopen(fd, "w")) == NULL) {
+                       if (fd != -1)
+                               close(fd);
+                       err(1, "cannot create modefile %s", modefile);
                }
        }
        nulldir.d_ino = 0;
-#ifdef __linux__
        nulldir.d_type = DT_DIR;
-#endif
        nulldir.d_namlen = 1;
-       (void) strcpy(nulldir.d_name, "/");
+       nulldir.d_name[0] = '/';
+       nulldir.d_name[1] = '\0';
        nulldir.d_reclen = DIRSIZ(0, &nulldir);
        for (;;) {
                curfile.name = "<directory file - name unknown>";
@@ -204,8 +208,7 @@ extractdirs(genmode)
                        (void) fclose(df);
                        dirp = opendirfile(dirfile);
                        if (dirp == NULL)
-                               fprintf(stderr, "opendirfile: %s\n",
-                                   strerror(errno));
+                               warn("opendirfile");
                        if (mf != NULL)
                                (void) fclose(mf);
                        i = dirlookup(dot);
@@ -225,7 +228,7 @@ extractdirs(genmode)
  * skip over all the directories on the tape
  */
 void
-skipdirs()
+skipdirs(void)
 {
 
        while (curfile.dip && (curfile.dip->di_mode & IFMT) == IFDIR) {
@@ -234,14 +237,11 @@ skipdirs()
 }
 
 /*
- *     Recursively find names and inumbers of all files in subtree 
+ *     Recursively find names and inumbers of all files in subtree
  *     pname and pass them off to be processed.
  */
 void
-treescan(pname, ino, todo)
-       char *pname;
-       ino_t ino;
-       long (*todo) __P((char *, ino_t, int));
+treescan(char *pname, ino_t ino, long (*todo) __P((char *, ino_t, int)))
 {
        register struct inotab *itp;
        register struct direct *dp;
@@ -266,9 +266,9 @@ treescan(pname, ino, todo)
         * begin search through the directory
         * skipping over "." and ".."
         */
-       (void) strncpy(locname, pname, MAXPATHLEN);
-       (void) strncat(locname, "/", MAXPATHLEN);
-       namelen = strlen(locname);
+       namelen = snprintf(locname, sizeof(locname), "%s/", pname);
+       if (namelen >= sizeof(locname))
+               namelen = sizeof(locname) - 1;
        rst_seekdir(dirp, itp->t_seekpt, itp->t_seekpt);
        dp = rst_readdir(dirp); /* "." */
        if (dp != NULL && strcmp(dp->d_name, ".") == 0)
@@ -287,9 +287,9 @@ treescan(pname, ino, todo)
         */
        while (dp != NULL) {
                locname[namelen] = '\0';
-               if (namelen + dp->d_namlen >= MAXPATHLEN) {
-                       fprintf(stderr, "%s%s: name exceeds %d char\n",
-                               locname, dp->d_name, MAXPATHLEN);
+               if (namelen + dp->d_namlen >= sizeof(locname)) {
+                       fprintf(stderr, "%s%s: name exceeds %ld char\n",
+                               locname, dp->d_name, (long)sizeof(locname) - 1);
                } else {
                        (void) strncat(locname, dp->d_name, (int)dp->d_namlen);
                        treescan(locname, dp->d_ino, todo);
@@ -304,8 +304,7 @@ treescan(pname, ino, todo)
  * Lookup a pathname which is always assumed to start from the ROOTINO.
  */
 struct direct *
-pathsearch(pathname)
-       const char *pathname;
+pathsearch(const char *pathname)
 {
        ino_t ino;
        struct direct *dp;
@@ -330,9 +329,7 @@ pathsearch(pathname)
  * Return its inode number if found, zero if it does not exist.
  */
 static struct direct *
-searchdir(inum, name)
-       ino_t   inum;
-       char    *name;
+searchdir(ino_t inum, char *name)
 {
        register struct direct *dp;
        register struct inotab *itp;
@@ -355,9 +352,7 @@ searchdir(inum, name)
  * Put the directory entries in the directory file
  */
 static void
-putdir(buf, size)
-       char *buf;
-       long size;
+putdir(char *buf, size_t size)
 {
        struct direct cvtbuf;
        register struct odirect *odp;
@@ -380,7 +375,7 @@ putdir(buf, size)
                                dp->d_reclen, dp->d_namlen, dp->d_type);
 #endif
                        if (Bcvt)
-                               swabst((u_char *)"ls", (u_char *) dp);
+                               swabst((u_char *)"is", (u_char *) dp);
                        if (oldinofmt && dp->d_ino != 0) {
 #ifdef __linux__
                                if (Bcvt)
@@ -412,19 +407,19 @@ putdir(buf, size)
                            dp->d_reclen > i ||
                            dp->d_reclen < DIRSIZ(0, dp) ||
                            dp->d_namlen > NAME_MAX) {
-                               vprintf(stdout, "Mangled directory: ");
+                               Vprintf(stdout, "Mangled directory: ");
                                if ((dp->d_reclen & 0x3) != 0)
-                                       vprintf(stdout,
+                                       Vprintf(stdout,
                                           "reclen not multiple of 4 ");
                                if (dp->d_reclen < DIRSIZ(0, dp))
-                                       vprintf(stdout,
+                                       Vprintf(stdout,
                                           "reclen less than DIRSIZ (%d < %d) ",
                                           dp->d_reclen, DIRSIZ(0, dp));
                                if (dp->d_namlen > NAME_MAX)
-                                       vprintf(stdout,
+                                       Vprintf(stdout,
                                           "reclen name too big (%d > %d) ",
                                           dp->d_namlen, NAME_MAX);
-                               vprintf(stdout, "\n");
+                               Vprintf(stdout, "\n");
                                loc += i;
                                continue;
                        }
@@ -447,8 +442,7 @@ long prev = 0;
  * add a new directory entry to a file.
  */
 static void
-putent(dp)
-       struct direct *dp;
+putent(struct direct *dp)
 {
        dp->d_reclen = DIRSIZ(0, dp);
        if (dirloc + dp->d_reclen > DIRBLKSIZ) {
@@ -457,7 +451,7 @@ putent(dp)
                (void) fwrite(dirbuf, 1, DIRBLKSIZ, df);
                dirloc = 0;
        }
-       memmove(dirbuf + dirloc, dp, (long)dp->d_reclen);
+       memmove(dirbuf + dirloc, dp, (size_t)dp->d_reclen);
        prev = dirloc;
        dirloc += dp->d_reclen;
 }
@@ -466,7 +460,7 @@ putent(dp)
  * flush out a directory that is finished.
  */
 static void
-flushent()
+flushent(void)
 {
        ((struct direct *)(dirbuf + prev))->d_reclen = DIRBLKSIZ - prev;
        (void) fwrite(dirbuf, (int)dirloc, 1, df);
@@ -475,16 +469,12 @@ flushent()
 }
 
 static void
-dcvt(odp, ndp)
-       register struct odirect *odp;
-       register struct direct *ndp;
+dcvt(struct odirect *odp, struct direct *ndp)
 {
 
-       memset(ndp, 0, (long)(sizeof *ndp));
+       memset(ndp, 0, (size_t)(sizeof *ndp));
        ndp->d_ino =  odp->d_ino;
-#ifdef __linux__
        ndp->d_type = DT_UNKNOWN;
-#endif
        (void) strncpy(ndp->d_name, odp->d_name, ODIRSIZ);
        ndp->d_namlen = strlen(ndp->d_name);
        ndp->d_reclen = DIRSIZ(0, ndp);
@@ -498,16 +488,14 @@ dcvt(odp, ndp)
  * the desired seek offset into it.
  */
 static void
-rst_seekdir(dirp, loc, base)
-       register RST_DIR *dirp;
-       long loc, base;
+rst_seekdir(RST_DIR *dirp, long loc, long base)
 {
 
        if (loc == rst_telldir(dirp))
                return;
        loc -= base;
        if (loc < 0)
-               fprintf(stderr, "bad seek pointer to rst_seekdir %d\n", loc);
+               fprintf(stderr, "bad seek pointer to rst_seekdir %ld\n", loc);
        (void) lseek(dirp->dd_fd, base + (loc & ~(DIRBLKSIZ - 1)), SEEK_SET);
        dirp->dd_loc = loc & (DIRBLKSIZ - 1);
        if (dirp->dd_loc != 0)
@@ -518,17 +506,16 @@ rst_seekdir(dirp, loc, base)
  * get next entry in a directory.
  */
 struct direct *
-rst_readdir(dirp)
-       register RST_DIR *dirp;
+rst_readdir(RST_DIR *dirp)
 {
        register struct direct *dp;
 
        for (;;) {
                if (dirp->dd_loc == 0) {
-                       dirp->dd_size = read(dirp->dd_fd, dirp->dd_buf, 
+                       dirp->dd_size = read(dirp->dd_fd, dirp->dd_buf,
                            DIRBLKSIZ);
                        if (dirp->dd_size <= 0) {
-                               dprintf(stderr, "error reading directory\n");
+                               Dprintf(stderr, "error reading directory\n");
                                return (NULL);
                        }
                }
@@ -539,16 +526,15 @@ rst_readdir(dirp)
                dp = (struct direct *)(dirp->dd_buf + dirp->dd_loc);
                if (dp->d_reclen == 0 ||
                    dp->d_reclen > DIRBLKSIZ + 1 - dirp->dd_loc) {
-                       dprintf(stderr, "corrupted directory: bad reclen %d\n"
-                               "dd_loc = %d, dd_size = %d\n",
-                               dp->d_reclen, dirp->dd_loc, dirp->dd_size);
+                       Dprintf(stderr, "corrupted directory: bad reclen %d\n",
+                               dp->d_reclen);
                        return (NULL);
                }
                dirp->dd_loc += dp->d_reclen;
                if (dp->d_ino == 0 && strcmp(dp->d_name, "/") == 0)
                        return (NULL);
                if (dp->d_ino >= maxino) {
-                       dprintf(stderr, "corrupted directory: bad inum %d\n",
+                       Dprintf(stderr, "corrupted directory: bad inum %d\n",
                                dp->d_ino);
                        continue;
                }
@@ -560,8 +546,7 @@ rst_readdir(dirp)
  * Simulate the opening of a directory
  */
 RST_DIR *
-rst_opendir(name)
-       const char *name;
+rst_opendir(const char *name)
 {
        struct inotab *itp;
        RST_DIR *dirp;
@@ -580,8 +565,7 @@ rst_opendir(name)
  * In our case, there is nothing to do when closing a directory.
  */
 void
-rst_closedir(dirp)
-       RST_DIR *dirp;
+rst_closedir(RST_DIR *dirp)
 {
 
        (void)close(dirp->dd_fd);
@@ -593,8 +577,7 @@ rst_closedir(dirp)
  * Simulate finding the current offset in the directory.
  */
 static long
-rst_telldir(dirp)
-       RST_DIR *dirp;
+rst_telldir(RST_DIR *dirp)
 {
        return ((long)lseek(dirp->dd_fd,
            (off_t)0, SEEK_CUR) - dirp->dd_size + dirp->dd_loc);
@@ -604,8 +587,7 @@ rst_telldir(dirp)
  * Open a directory file.
  */
 static RST_DIR *
-opendirfile(name)
-       const char *name;
+opendirfile(const char *name)
 {
        register RST_DIR *dirp;
        register int fd;
@@ -625,19 +607,24 @@ opendirfile(name)
  * Set the mode, owner, and times for all new or changed directories
  */
 void
-setdirmodes(flags)
-       int flags;
+setdirmodes(int flags)
 {
        FILE *mf;
        struct modeinfo node;
        struct entry *ep;
        char *cp;
-       
-       vprintf(stdout, "Set directory mode, owner, and times.\n");
-       (void) sprintf(modefile, "%s/rstmode%d", tmpdir, dumpdate);
+
+       Vprintf(stdout, "Set directory mode, owner, and times.\n");
+       if (command == 'r' || command == 'R')
+               (void) snprintf(modefile, sizeof(modefile), "%s/rstmode%lu", tmpdir, (long)dumpdate);
+       if (modefile[0] == '#') {
+               panic("modefile not defined\n");
+               fprintf(stderr, "directory mode, owner, and times not set\n");
+               return;
+       }
        mf = fopen(modefile, "r");
        if (mf == NULL) {
-               fprintf(stderr, "fopen: %s\n", strerror(errno));
+               warn("fopen");
                fprintf(stderr, "cannot open mode file %s\n", modefile);
                fprintf(stderr, "directory mode, owner, and times not set\n");
                return;
@@ -665,10 +652,11 @@ setdirmodes(flags)
                        cp = myname(ep);
                        (void) chown(cp, node.uid, node.gid);
                        (void) chmod(cp, node.mode);
+                       if (node.flags)
 #ifdef __linux__
-                       (void) setflags(cp, node.flags);
+                               (void) fsetflags(cp, node.flags);
 #else
-                       (void) chflags(cp, node.flags);
+                               (void) chflags(cp, node.flags);
 #endif
                        utimes(cp, node.timep);
                        ep->e_flags &= ~NEW;
@@ -683,9 +671,7 @@ setdirmodes(flags)
  * Generate a literal copy of a directory.
  */
 int
-genliteraldir(name, ino)
-       char *name;
-       ino_t ino;
+genliteraldir(char *name, ino_t ino)
 {
        register struct inotab *itp;
        int ofile, dp, i, size;
@@ -695,9 +681,7 @@ genliteraldir(name, ino)
        if (itp == NULL)
                panic("Cannot find directory inode %d named %s\n", ino, name);
        if ((ofile = open(name, O_WRONLY | O_CREAT | O_TRUNC, 0666)) < 0) {
-               fprintf(stderr, "%s: ", name);
-               (void) fflush(stderr);
-               fprintf(stderr, "cannot create file: %s\n", strerror(errno));
+               warn("%s: cannot create file\n", name);
                return (FAIL);
        }
        rst_seekdir(dirp, itp->t_seekpt, itp->t_seekpt);
@@ -705,18 +689,14 @@ genliteraldir(name, ino)
        for (i = itp->t_size; i > 0; i -= BUFSIZ) {
                size = i < BUFSIZ ? i : BUFSIZ;
                if (read(dp, buf, (int) size) == -1) {
-                       fprintf(stderr,
-                               "write error extracting inode %d, name %s\n",
-                               curfile.ino, curfile.name);
-                       fprintf(stderr, "read: %s\n", strerror(errno));
-                       done(1);
+                       warnx("write error extracting inode %lu, name %s\n",
+                               (unsigned long)curfile.ino, curfile.name);
+                       err(1, "read");
                }
                if (!Nflag && write(ofile, buf, (int) size) == -1) {
-                       fprintf(stderr,
-                               "write error extracting inode %d, name %s\n",
-                               curfile.ino, curfile.name);
-                       fprintf(stderr, "write: %s\n", strerror(errno));
-                       done(1);
+                       warnx("write error extracting inode %lu, name %s\n",
+                               (unsigned long)curfile.ino, curfile.name);
+                       err(1, "write");
                }
        }
        (void) close(dp);
@@ -728,8 +708,7 @@ genliteraldir(name, ino)
  * Determine the type of an inode
  */
 int
-inodetype(ino)
-       ino_t ino;
+inodetype(ino_t ino)
 {
        struct inotab *itp;
 
@@ -744,14 +723,11 @@ inodetype(ino)
  * If requested, save its pertinent mode, owner, and time info.
  */
 static struct inotab *
-allocinotab(ino, dip, seekpt)
-       ino_t ino;
 #ifdef __linux__
-       struct new_bsd_inode *dip;
+allocinotab(ino_t ino, struct new_bsd_inode *dip, long seekpt)
 #else
-       struct dinode *dip;
+allocinotab(ino_t ino, struct dinode *dip, long seekpt)
 #endif
-       long seekpt;
 {
        register struct inotab  *itp;
        struct modeinfo node;
@@ -789,8 +765,7 @@ allocinotab(ino, dip, seekpt)
  * Look up an inode in the table of directories
  */
 static struct inotab *
-inotablookup(ino)
-       ino_t   ino;
+inotablookup(ino_t ino)
 {
        register struct inotab *itp;
 
@@ -803,15 +778,12 @@ inotablookup(ino)
 /*
  * Clean up and exit
  */
-__dead void
-done(exitcode)
-       int exitcode;
+void
+cleanup(void)
 {
-
        closemt();
        if (modefile[0] != '#')
                (void) unlink(modefile);
        if (dirfile[0] != '#')
                (void) unlink(dirfile);
-       exit(exitcode);
 }