Whamcloud - gitweb
libext2fs: precompute FS UUID checksum seed
[tools/e2fsprogs.git] / lib / ext2fs / namei.c
index 8fc71b0..efcc02b 100644 (file)
 /*
  * namei.c --- ext2fs directory lookup operations
- * 
- * Copyright (C) 1993, 1994 Theodore Ts'o.  This file may be
- * redistributed under the terms of the GNU Public License.
+ *
+ * Copyright (C) 1993, 1994, 1994, 1995 Theodore Ts'o.
+ *
+ * %Begin-Header%
+ * This file may be redistributed under the terms of the GNU Library
+ * General Public License, version 2.
+ * %End-Header%
  */
 
+#include "config.h"
 #include <stdio.h>
 #include <string.h>
+#if HAVE_UNISTD_H
 #include <unistd.h>
-#include <stdlib.h>
-#if HAVE_ERRNO_H
-#include <errno.h>
 #endif
 
 /* #define NAMEI_DEBUG */
 
-#include <linux/ext2_fs.h>
-
+#include "ext2_fs.h"
 #include "ext2fs.h"
+#include "ext2fsP.h"
 
-struct dir_context {
-       ino_t           dir;
-       int             flags;
-       char            *buf;
-       int (*func)(struct ext2_dir_entry *dirent,
-                   int offset,
-                   int blocksize,
-                   char        *buf,
-                   void        *private);
-       void            *private;
-       errcode_t       errcode;
-};
-
-static int process_dir_block(ext2_filsys fs,
-                            blk_t      *blocknr,
-                            int        blockcnt,
-                            void       *private);
-
-errcode_t ext2fs_dir_iterate(ext2_filsys fs,
-                            ino_t dir,
-                            int flags,
-                            char *block_buf,
-                            int (*func)(struct ext2_dir_entry *dirent,
-                                        int    offset,
-                                        int    blocksize,
-                                        char   *buf,
-                                        void   *private),
-                            void *private)
-{
-       struct          dir_context     ctx;
-       errcode_t       retval;
-       
-       EXT2_CHECK_MAGIC(fs, EXT2_ET_MAGIC_EXT2FS_FILSYS);
-
-       retval = ext2fs_check_directory(fs, dir);
-       if (retval)
-               return retval;
-       
-       ctx.dir = dir;
-       ctx.flags = flags;
-       if (block_buf)
-               ctx.buf = block_buf;
-       else {
-               ctx.buf = malloc(fs->blocksize);
-               if (!ctx.buf)
-                       return ENOMEM;
-       }
-       ctx.func = func;
-       ctx.private = private;
-       ctx.errcode = 0;
-       retval = ext2fs_block_iterate(fs, dir, 0, 0, process_dir_block, &ctx);
-       if (!block_buf)
-               free(ctx.buf);
-       if (retval)
-               return retval;
-       return ctx.errcode;
-}
-
-static int process_dir_block(ext2_filsys  fs,
-                            blk_t      *blocknr,
-                            int        blockcnt,
-                            void       *private)
-{
-       struct dir_context *ctx = (struct dir_context *) private;
-       int             offset = 0;
-       int             ret;
-       int             changed = 0;
-       int             do_abort = 0;
-       struct ext2_dir_entry *dirent;
-
-       if (blockcnt < 0)
-               return 0;
-
-       ctx->errcode = ext2fs_read_dir_block(fs, *blocknr, ctx->buf);
-       if (ctx->errcode)
-               return BLOCK_ABORT;
-       
-       while (offset < fs->blocksize) {
-               dirent = (struct ext2_dir_entry *) (ctx->buf + offset);
-               if (!dirent->inode &&
-                   !(ctx->flags & DIRENT_FLAG_INCLUDE_EMPTY))
-                       goto next;
-
-               ret = (ctx->func)(dirent, offset, fs->blocksize,
-                                 ctx->buf, ctx->private);
-               if (ret & DIRENT_CHANGED)
-                       changed++;
-               if (ret & DIRENT_ABORT) {
-                       do_abort++;
-                       break;
-               }
-next:          
-               if (((offset + dirent->rec_len) > fs->blocksize) ||
-                   (dirent->rec_len < 8) ||
-                   ((dirent->name_len+8) > dirent->rec_len)) {
-                       ctx->errcode = EXT2_ET_DIR_CORRUPTED;
-                       return BLOCK_ABORT;
-               }
-               offset += dirent->rec_len;
-       }
-
-       if (changed) {
-               ctx->errcode = ext2fs_write_dir_block(fs, *blocknr, ctx->buf);
-               if (ctx->errcode)
-                       return BLOCK_ABORT;
-       }
-       if (do_abort)
-               return BLOCK_ABORT;
-       return 0;
-}
-
-struct lookup_struct  {
-       const char      *name;
-       int             len;
-       ino_t           *inode;
-       int             found;
-};     
+static errcode_t open_namei(ext2_filsys fs, ext2_ino_t root, ext2_ino_t base,
+                           const char *pathname, size_t pathlen, int follow,
+                           int link_count, char *buf, ext2_ino_t *res_inode);
 
-static int lookup_proc(struct ext2_dir_entry *dirent,
-                      int      offset,
-                      int      blocksize,
-                      char     *buf,
-                      void     *private)
-{
-       struct lookup_struct *ls = (struct lookup_struct *) private;
-
-       if (ls->len != dirent->name_len)
-               return 0;
-       if (strncmp(ls->name, dirent->name, dirent->name_len))
-               return 0;
-       *ls->inode = dirent->inode;
-       ls->found++;
-       return DIRENT_ABORT;
-}
-
-
-errcode_t ext2fs_lookup(ext2_filsys fs, ino_t dir, const char *name,
-                       int namelen, char *buf, ino_t *inode)
-{
-       errcode_t       retval;
-       struct lookup_struct ls;
-
-       EXT2_CHECK_MAGIC(fs, EXT2_ET_MAGIC_EXT2FS_FILSYS);
-
-       ls.name = name;
-       ls.len = namelen;
-       ls.inode = inode;
-       ls.found = 0;
-
-       retval = ext2fs_dir_iterate(fs, dir, 0, buf, lookup_proc, &ls);
-       if (retval)
-               return retval;
-
-       return (ls.found) ? 0 : ENOENT;
-}
-
-
-static errcode_t open_namei(ext2_filsys fs, ino_t root, ino_t base,
-                           const char *pathname, int pathlen, int follow,
-                           int link_count, char *buf, ino_t *res_inode);
-
-static errcode_t follow_link(ext2_filsys fs, ino_t root, ino_t dir,
-                            ino_t inode, int link_count,
-                            char *buf, ino_t *res_inode)
+static errcode_t follow_link(ext2_filsys fs, ext2_ino_t root, ext2_ino_t dir,
+                            ext2_ino_t inode, int link_count,
+                            char *buf, ext2_ino_t *res_inode)
 {
        char *pathname;
        char *buffer = 0;
@@ -192,7 +38,7 @@ static errcode_t follow_link(ext2_filsys fs, ino_t root, ino_t dir,
 #ifdef NAMEI_DEBUG
        printf("follow_link: root=%lu, dir=%lu, inode=%lu, lc=%d\n",
               root, dir, inode, link_count);
-       
+
 #endif
        retval = ext2fs_read_inode (fs, inode, &ei);
        if (retval) return retval;
@@ -200,16 +46,17 @@ static errcode_t follow_link(ext2_filsys fs, ino_t root, ino_t dir,
                *res_inode = inode;
                return 0;
        }
-       if (link_count++ > 5) {
+       if (link_count++ >= EXT2FS_MAX_NESTED_LINKS)
                return EXT2_ET_SYMLINK_LOOP;
-       }
-       if (ei.i_blocks) {
-               buffer = malloc (fs->blocksize);
-               if (!buffer)
-                       return ENOMEM;
+
+       /* FIXME-64: Actually, this is FIXME EXTENTS */
+       if (ext2fs_inode_data_blocks(fs,&ei)) {
+               retval = ext2fs_get_mem(fs->blocksize, &buffer);
+               if (retval)
+                       return retval;
                retval = io_channel_read_blk(fs->io, ei.i_block[0], 1, buffer);
                if (retval) {
-                       free(buffer);
+                       ext2fs_free_mem(&buffer);
                        return retval;
                }
                pathname = buffer;
@@ -218,7 +65,7 @@ static errcode_t follow_link(ext2_filsys fs, ino_t root, ino_t dir,
        retval = open_namei(fs, root, dir, pathname, ei.i_size, 1,
                            link_count, buf, res_inode);
        if (buffer)
-               free (buffer);
+               ext2fs_free_mem(&buffer);
        return retval;
 }
 
@@ -228,15 +75,16 @@ static errcode_t follow_link(ext2_filsys fs, ino_t root, ino_t dir,
  * containing directory, and a pointer to the filename of the file
  * (pointing into the pathname) and the length of the filename.
  */
-static errcode_t dir_namei(ext2_filsys fs, ino_t root, ino_t dir,
+static errcode_t dir_namei(ext2_filsys fs, ext2_ino_t root, ext2_ino_t dir,
                           const char *pathname, int pathlen,
                           int link_count, char *buf,
-                          const char **name, int *namelen, ino_t *res_inode)
+                          const char **name, int *namelen,
+                          ext2_ino_t *res_inode)
 {
        char c;
        const char *thisname;
        int len;
-       ino_t inode;
+       ext2_ino_t inode;
        errcode_t retval;
 
        if ((c = *pathname) == '/') {
@@ -265,13 +113,13 @@ static errcode_t dir_namei(ext2_filsys fs, ino_t root, ino_t dir,
        return 0;
 }
 
-static errcode_t open_namei(ext2_filsys fs, ino_t root, ino_t base,
-                           const char *pathname, int pathlen, int follow,
-                           int link_count, char *buf, ino_t *res_inode)
+static errcode_t open_namei(ext2_filsys fs, ext2_ino_t root, ext2_ino_t base,
+                           const char *pathname, size_t pathlen, int follow,
+                           int link_count, char *buf, ext2_ino_t *res_inode)
 {
-       const char *basename;
+       const char *base_name;
        int namelen;
-       ino_t dir, inode;
+       ext2_ino_t dir, inode;
        errcode_t retval;
 
 #ifdef NAMEI_DEBUG
@@ -279,13 +127,13 @@ static errcode_t open_namei(ext2_filsys fs, ino_t root, ino_t base,
               root, base, pathlen, pathname, link_count);
 #endif
        retval = dir_namei(fs, root, base, pathname, pathlen,
-                          link_count, buf, &basename, &namelen, &dir);
+                          link_count, buf, &base_name, &namelen, &dir);
        if (retval) return retval;
        if (!namelen) {                     /* special case: '/usr/' etc */
                *res_inode=dir;
                return 0;
        }
-       retval = ext2fs_lookup (fs, dir, basename, namelen, buf, &inode);
+       retval = ext2fs_lookup (fs, dir, base_name, namelen, buf, &inode);
        if (retval)
                return retval;
        if (follow) {
@@ -302,59 +150,59 @@ static errcode_t open_namei(ext2_filsys fs, ino_t root, ino_t base,
        return 0;
 }
 
-errcode_t ext2fs_namei(ext2_filsys fs, ino_t root, ino_t cwd,
-                      const char *name, ino_t *inode)
+errcode_t ext2fs_namei(ext2_filsys fs, ext2_ino_t root, ext2_ino_t cwd,
+                      const char *name, ext2_ino_t *inode)
 {
        char *buf;
        errcode_t retval;
-       
+
        EXT2_CHECK_MAGIC(fs, EXT2_ET_MAGIC_EXT2FS_FILSYS);
 
-       buf = malloc(fs->blocksize);
-       if (!buf)
-               return ENOMEM;
-       
+       retval = ext2fs_get_mem(fs->blocksize, &buf);
+       if (retval)
+               return retval;
+
        retval = open_namei(fs, root, cwd, name, strlen(name), 0, 0,
                            buf, inode);
 
-       free(buf);
+       ext2fs_free_mem(&buf);
        return retval;
 }
 
-errcode_t ext2fs_namei_follow(ext2_filsys fs, ino_t root, ino_t cwd,
-                             const char *name, ino_t *inode)
+errcode_t ext2fs_namei_follow(ext2_filsys fs, ext2_ino_t root, ext2_ino_t cwd,
+                             const char *name, ext2_ino_t *inode)
 {
        char *buf;
        errcode_t retval;
-       
+
        EXT2_CHECK_MAGIC(fs, EXT2_ET_MAGIC_EXT2FS_FILSYS);
 
-       buf = malloc(fs->blocksize);
-       if (!buf)
-               return ENOMEM;
-       
+       retval = ext2fs_get_mem(fs->blocksize, &buf);
+       if (retval)
+               return retval;
+
        retval = open_namei(fs, root, cwd, name, strlen(name), 1, 0,
                            buf, inode);
 
-       free(buf);
+       ext2fs_free_mem(&buf);
        return retval;
 }
 
-extern errcode_t ext2fs_follow_link(ext2_filsys fs, ino_t root, ino_t cwd,
-                       ino_t inode, ino_t *res_inode)
+errcode_t ext2fs_follow_link(ext2_filsys fs, ext2_ino_t root, ext2_ino_t cwd,
+                       ext2_ino_t inode, ext2_ino_t *res_inode)
 {
        char *buf;
        errcode_t retval;
-       
+
        EXT2_CHECK_MAGIC(fs, EXT2_ET_MAGIC_EXT2FS_FILSYS);
 
-       buf = malloc(fs->blocksize);
-       if (!buf)
-               return ENOMEM;
-       
+       retval = ext2fs_get_mem(fs->blocksize, &buf);
+       if (retval)
+               return retval;
+
        retval = follow_link(fs, root, cwd, inode, 0, buf, res_inode);
 
-       free(buf);
+       ext2fs_free_mem(&buf);
        return retval;
 }