yaffs: Add handling for . and .. at end of path
[yaffs2.git] / direct / yaffsfs.c
index 62fb79388d0a6b1d4a36762fde914a2976cbd3e1..7afde717b97655b253e619bd43014cdb19a5337c 100644 (file)
@@ -25,6 +25,8 @@
 #define NULL ((void *)0)
 #endif
 
+#define ROOT_DIR(dev) (((dev) && (dev)->is_mounted) ? (dev)->root_dir : NULL)
+
 /* YAFFSFS_RW_SIZE must be a power of 2 */
 #define YAFFSFS_RW_SHIFT (13)
 #define YAFFSFS_RW_SIZE  (1<<YAFFSFS_RW_SHIFT)
@@ -37,6 +39,9 @@ static struct yaffs_obj *yaffsfs_FindObject(struct yaffs_obj *relativeDirectory,
                                            int *notDir, int *loop);
 
 static void yaffsfs_RemoveObjectCallback(struct yaffs_obj *obj);
+static yaffs_DIR *yaffsfs_opendir_reldir_no_lock(
+                               struct yaffs_obj *reldir, const YCHAR *dirname);
+static int yaffsfs_closedir_no_lock(yaffs_DIR *dirent);
 
 unsigned int yaffs_wr_attempts;
 
@@ -66,15 +71,30 @@ struct yaffsfs_Inode {
        struct yaffs_obj *iObj;
 };
 
+
+struct yaffsfs_DirSearchContext {
+       struct yaffs_dirent de; /* directory entry */
+       YCHAR name[NAME_MAX + 1];       /* name of directory being searched */
+       struct yaffs_obj *dirObj;       /* ptr to directory being searched */
+       struct yaffs_obj *nextReturn;   /* obj  returned by next readddir */
+       struct list_head others;
+       s32 offset:20;
+       u8 inUse:1;
+};
+
 struct yaffsfs_FileDes {
+       u8 isDir:1;             /* This s a directory */
        u8 reading:1;
        u8 writing:1;
        u8 append:1;
        u8 shareRead:1;
        u8 shareWrite:1;
-       int inodeId:12;         /* Index to corresponding yaffsfs_Inode */
-       int handleCount:10;     /* Number of handles for this fd */
-       loff_t position;        /* current position in file */
+       s32 inodeId:12;         /* Index to corresponding yaffsfs_Inode */
+       s32 handleCount:10;     /* Number of handles for this fd */
+       union {
+               Y_LOFF_T position;      /* current position in file */
+               yaffs_DIR *dir;
+       } v;
 };
 
 struct yaffsfs_Handle {
@@ -83,17 +103,7 @@ struct yaffsfs_Handle {
 };
 
 
-struct yaffsfs_DirSearchContxt {
-       struct yaffs_dirent de; /* directory entry */
-       YCHAR name[NAME_MAX + 1];       /* name of directory being searched */
-       struct yaffs_obj *dirObj;       /* ptr to directory being searched */
-       struct yaffs_obj *nextReturn;   /* obj  returned by next readddir */
-       struct list_head others;
-       int offset:20;
-       unsigned inUse:1;
-};
-
-static struct yaffsfs_DirSearchContxt yaffsfs_dsc[YAFFSFS_N_DSC];
+static struct yaffsfs_DirSearchContext yaffsfs_dsc[YAFFSFS_N_DSC];
 static struct yaffsfs_Inode yaffsfs_inode[YAFFSFS_N_HANDLES];
 static struct yaffsfs_FileDes yaffsfs_fd[YAFFSFS_N_HANDLES];
 static struct yaffsfs_Handle yaffsfs_handle[YAFFSFS_N_HANDLES];
@@ -119,9 +129,12 @@ unsigned yaffs_get_trace(void)
 static void yaffsfs_InitHandles(void)
 {
        int i;
+
        if (yaffsfs_handlesInitialised)
                return;
 
+       yaffsfs_handlesInitialised = 1;
+
        memset(yaffsfs_inode, 0, sizeof(yaffsfs_inode));
        memset(yaffsfs_fd, 0, sizeof(yaffsfs_fd));
        memset(yaffsfs_handle, 0, sizeof(yaffsfs_handle));
@@ -238,13 +251,11 @@ static void yaffsfs_ReleaseInode(struct yaffsfs_Inode *in)
        struct yaffs_obj *obj;
 
        obj = in->iObj;
-
-       if (obj->unlinked)
-               yaffs_del_obj(obj);
-
        obj->my_inode = NULL;
        in->iObj = NULL;
 
+       if (obj->unlinked)
+               yaffs_del_obj(obj);
 }
 
 static void yaffsfs_PutInode(int inodeId)
@@ -335,6 +346,8 @@ static int yaffsfs_PutFileDes(int fdId)
                fd = &yaffsfs_fd[fdId];
                fd->handleCount--;
                if (fd->handleCount < 1) {
+                       if (fd->isDir)
+                               yaffsfs_closedir_no_lock(fd->v.dir);
                        if (fd->inodeId >= 0) {
                                yaffsfs_PutInode(fd->inodeId);
                                fd->inodeId = -1;
@@ -385,7 +398,7 @@ static void yaffsfs_BreakDeviceHandles(struct yaffs_dev *dev)
  *  Stuff to handle names.
  */
 #ifdef CONFIG_YAFFS_CASE_INSENSITIVE
-
+#ifndef CONFIG_YAFFS_WINCE
 static int yaffs_toupper(YCHAR a)
 {
        if (a >= 'a' && a <= 'z')
@@ -393,6 +406,7 @@ static int yaffs_toupper(YCHAR a)
        else
                return a;
 }
+#endif
 
 static int yaffsfs_Match(YCHAR a, YCHAR b)
 {
@@ -419,7 +433,7 @@ static int yaffsfs_IsPathDivider(YCHAR ch)
        return 0;
 }
 
-static int yaffsfs_CheckNameLength(const char *name)
+static int yaffsfs_CheckNameLength(const YCHAR *name)
 {
        int retVal = 0;
 
@@ -501,14 +515,17 @@ static struct yaffs_dev *yaffsfs_FindDevice(const YCHAR *path,
                thisMatchLength = 0;
                matching = 1;
 
-               while (matching && *p && *leftOver) {
-                       /* Skip over any /s */
-                       while (yaffsfs_IsPathDivider(*p))
-                               p++;
 
-                       /* Skip over any /s */
-                       while (yaffsfs_IsPathDivider(*leftOver))
-                               leftOver++;
+               if(!p)
+                       continue;
+
+               /* Skip over any leading  /s */
+               while (yaffsfs_IsPathDivider(*p))
+                       p++;
+               while (yaffsfs_IsPathDivider(*leftOver))
+                       leftOver++;
+
+               while (matching && *p && *leftOver) {
 
                        /* Now match the text part */
                        while (matching &&
@@ -522,6 +539,16 @@ static struct yaffs_dev *yaffsfs_FindDevice(const YCHAR *path,
                                        matching = 0;
                                }
                        }
+
+                       if ((*p && !yaffsfs_IsPathDivider(*p)) ||
+                           (*leftOver && !yaffsfs_IsPathDivider(*leftOver)))
+                               matching = 0;
+                       else {
+                               while (yaffsfs_IsPathDivider(*p))
+                                       p++;
+                               while (yaffsfs_IsPathDivider(*leftOver))
+                                       leftOver++;
+                       }
                }
 
                /* Skip over any /s in leftOver */
@@ -542,7 +569,6 @@ static struct yaffs_dev *yaffsfs_FindDevice(const YCHAR *path,
                        retval = dev;
                        longestMatch = thisMatchLength;
                }
-
        }
        return retval;
 }
@@ -599,7 +625,10 @@ static struct yaffs_obj *yaffsfs_FollowLink(struct yaffs_obj *obj,
                YCHAR *alias = obj->variant.symlink_variant.alias;
 
                if (yaffsfs_IsPathDivider(*alias))
-                       /* Starts with a /, need to scan from root up */
+                       /*
+                        * Starts with a /, need to scan from root up */
+                       /* NB Might not work if this is called with root != NULL
+                       */
                        obj = yaffsfs_FindObject(NULL, alias, symDepth++,
                                                 1, NULL, NULL, loop);
                else
@@ -718,7 +747,20 @@ static struct yaffs_obj *yaffsfs_FindObject(struct yaffs_obj *relDir,
        if (dirOut)
                *dirOut = dir;
 
-       if (dir && *name)
+       /* At this stage we have looked up directory part and have the name part
+        * in name if there is one.
+        *
+        *  eg /nand/x/ will give us a name of ""
+        *     /nand/x will give us a name of "x"
+        *
+        * Since the name part might be "." or ".." which need to be fixed.
+        */
+       if (dir && (yaffs_strcmp(name, _Y("..")) == 0)) {
+               dir = dir->parent;
+               obj = dir;
+       } else if (dir && (yaffs_strcmp(name, _Y(".")) == 0))
+               obj = dir;
+       else if (dir && *name)
                obj = yaffs_find_by_name(dir, name);
        else
                obj = dir;
@@ -771,7 +813,8 @@ static int yaffsfs_TooManyObjects(struct yaffs_dev *dev)
                return 0;
 }
 
-int yaffs_open_sharing(const YCHAR *path, int oflag, int mode, int sharing)
+int yaffs_open_sharing_reldir(struct yaffs_obj *reldir, const YCHAR *path,
+                       int oflag, int mode, int sharing)
 {
        struct yaffs_obj *obj = NULL;
        struct yaffs_obj *dir = NULL;
@@ -792,8 +835,10 @@ int yaffs_open_sharing(const YCHAR *path, int oflag, int mode, int sharing)
        u8 writeRequested;
        int notDir = 0;
        int loop = 0;
+       int is_dir = 0;
+       yaffs_DIR *dsc;
 
-       if (!path) {
+       if (yaffsfs_CheckMemRegion(path, 0, 0)< 0) {
                yaffsfs_SetError(-EFAULT);
                return -1;
        }
@@ -830,7 +875,7 @@ int yaffs_open_sharing(const YCHAR *path, int oflag, int mode, int sharing)
                fd = yaffsfs_HandleToFileDes(handle);
 
                /* try to find the exisiting object */
-               obj = yaffsfs_FindObject(NULL, path, 0, 1, NULL, NULL, NULL);
+               obj = yaffsfs_FindObject(reldir, path, 0, 1, NULL, NULL, NULL);
 
                obj = yaffsfs_FollowLink(obj, symDepth++, &loop);
 
@@ -842,14 +887,27 @@ int yaffs_open_sharing(const YCHAR *path, int oflag, int mode, int sharing)
                if (obj) {
 
                        /* The file already exists or it might be a directory */
+                       is_dir = (obj->variant_type ==
+                                       YAFFS_OBJECT_TYPE_DIRECTORY);
 
-                       /* A directory can't be opened as a file */
-                       if (obj->variant_type == YAFFS_OBJECT_TYPE_DIRECTORY) {
+                       /* A directory can't be opened except for read */
+                       if ( is_dir &&
+                           (writeRequested || !readRequested ||
+                               (oflag & ~O_RDONLY))) {
                                openDenied = 1;
                                yaffsfs_SetError(-EISDIR);
                                errorReported = 1;
                        }
 
+                       if(is_dir) {
+                               dsc = yaffsfs_opendir_reldir_no_lock(reldir, path);
+                               if (!dsc) {
+                                       openDenied = 1;
+                                       yaffsfs_SetError(-ENFILE);
+                                       errorReported = 1;
+                               }
+                       }
+
                        /* Open should fail if O_CREAT and O_EXCL are specified
                         * for a file that exists.
                         */
@@ -921,7 +979,7 @@ int yaffs_open_sharing(const YCHAR *path, int oflag, int mode, int sharing)
                 * the directory exists. If not, error.
                 */
                if (!obj && !errorReported) {
-                       dir = yaffsfs_FindDirectory(NULL, path, &name, 0,
+                       dir = yaffsfs_FindDirectory(reldir, path, &name, 0,
                                                    &notDir, &loop);
                        if (!dir && notDir) {
                                yaffsfs_SetError(-ENOTDIR);
@@ -972,14 +1030,19 @@ int yaffs_open_sharing(const YCHAR *path, int oflag, int mode, int sharing)
                        fd->reading = readRequested;
                        fd->writing = writeRequested;
                        fd->append = (oflag & O_APPEND) ? 1 : 0;
-                       fd->position = 0;
                        fd->shareRead = shareRead;
                        fd->shareWrite = shareWrite;
+                       fd->isDir = is_dir;
+
+                       if(is_dir)
+                               fd->v.dir = dsc;
+                       else
+                               fd->v.position = 0;
 
                        /* Hook inode to object */
                        obj->my_inode = (void *)&yaffsfs_inode[inodeId];
 
-                       if ((oflag & O_TRUNC) && fd->writing)
+                       if (!is_dir && (oflag & O_TRUNC) && fd->writing)
                                yaffs_resize_file(obj, 0);
                } else {
                        yaffsfs_PutHandle(handle);
@@ -994,12 +1057,35 @@ int yaffs_open_sharing(const YCHAR *path, int oflag, int mode, int sharing)
        return handle;
 }
 
-int yaffs_open(const YCHAR *path, int oflag, int mode)
+int yaffs_open_sharing_reldev(struct yaffs_dev *dev, const YCHAR *path, int oflag,
+                               int mode, int sharing)
+{
+       return yaffs_open_sharing_reldir(ROOT_DIR(dev), path,
+                                       oflag, mode, sharing);
+}
+
+int yaffs_open_sharing(const YCHAR *path, int oflag, int mode, int sharing)
+{
+       return yaffs_open_sharing_reldir(NULL, path, oflag, mode, sharing);
+}
+
+int yaffs_open_reldir(struct yaffs_obj *reldir,const YCHAR *path, int oflag, int mode)
+{
+       return yaffs_open_sharing_reldir(reldir, path, oflag, mode,
+                                 YAFFS_SHARE_READ | YAFFS_SHARE_WRITE);
+}
+
+int yaffs_open_reldev(struct yaffs_dev *dev,const YCHAR *path, int oflag, int mode)
 {
-       return yaffs_open_sharing(path, oflag, mode,
+       return yaffs_open_sharing_reldir(ROOT_DIR(dev), path, oflag, mode,
                                  YAFFS_SHARE_READ | YAFFS_SHARE_WRITE);
 }
 
+int yaffs_open(const YCHAR *path, int oflag, int mode)
+{
+       return yaffs_open_reldir(NULL, path, oflag, mode);
+}
+
 static int yaffs_Dofsync(int handle, int datasync)
 {
        int retVal = -1;
@@ -1014,7 +1100,7 @@ static int yaffs_Dofsync(int handle, int datasync)
        else if (obj->my_dev->read_only)
                yaffsfs_SetError(-EROFS);
        else {
-               yaffs_flush_file(obj, 1, datasync);
+               yaffs_flush_file(obj, 1, datasync, 0);
                retVal = 0;
        }
 
@@ -1041,19 +1127,22 @@ int yaffs_fdatasync(int handle)
 int yaffs_close(int handle)
 {
        struct yaffsfs_Handle *h = NULL;
+       struct yaffsfs_FileDes *f;
        struct yaffs_obj *obj = NULL;
        int retVal = -1;
 
        yaffsfs_Lock();
 
        h = yaffsfs_HandleToPointer(handle);
+       f = yaffsfs_HandleToFileDes(handle);
        obj = yaffsfs_HandleToObject(handle);
 
-       if (!h || !obj)
+       if (!h || !obj || !f)
                yaffsfs_SetError(-EBADF);
        else {
                /* clean up */
-               yaffs_flush_file(obj, 1, 0);
+               if(!f->isDir)
+                       yaffs_flush_file(obj, 1, 0, 1);
                yaffsfs_PutHandle(handle);
                retVal = 0;
        }
@@ -1064,20 +1153,20 @@ int yaffs_close(int handle)
 }
 
 static int yaffsfs_do_read(int handle, void *vbuf, unsigned int nbyte,
-                   int isPread, loff_t offset)
+                   int isPread, Y_LOFF_T offset)
 {
        struct yaffsfs_FileDes *fd = NULL;
        struct yaffs_obj *obj = NULL;
-       loff_t pos = 0;
-       loff_t startPos = 0;
-       loff_t endPos = 0;
+       Y_LOFF_T pos = 0;
+       Y_LOFF_T startPos = 0;
+       Y_LOFF_T endPos = 0;
        int nRead = 0;
        int nToRead = 0;
        int totalRead = 0;
-       loff_t maxRead;
+       Y_LOFF_T maxRead;
        u8 *buf = (u8 *) vbuf;
 
-       if (!vbuf) {
+       if (yaffsfs_CheckMemRegion(vbuf, nbyte, 1) < 0) {
                yaffsfs_SetError(-EFAULT);
                return -1;
        }
@@ -1101,7 +1190,7 @@ static int yaffsfs_do_read(int handle, void *vbuf, unsigned int nbyte,
                if (isPread)
                        startPos = offset;
                else
-                       startPos = fd->position;
+                       startPos = fd->v.position;
 
                pos = startPos;
 
@@ -1162,7 +1251,7 @@ static int yaffsfs_do_read(int handle, void *vbuf, unsigned int nbyte,
 
                if (!isPread) {
                        if (totalRead >= 0)
-                               fd->position = startPos + totalRead;
+                               fd->v.position = startPos + totalRead;
                        else
                                yaffsfs_SetError(-EINVAL);
                }
@@ -1180,26 +1269,26 @@ int yaffs_read(int handle, void *buf, unsigned int nbyte)
        return yaffsfs_do_read(handle, buf, nbyte, 0, 0);
 }
 
-int yaffs_pread(int handle, void *buf, unsigned int nbyte, loff_t offset)
+int yaffs_pread(int handle, void *buf, unsigned int nbyte, Y_LOFF_T offset)
 {
        return yaffsfs_do_read(handle, buf, nbyte, 1, offset);
 }
 
 static int yaffsfs_do_write(int handle, const void *vbuf, unsigned int nbyte,
-                    int isPwrite, loff_t offset)
+                    int isPwrite, Y_LOFF_T offset)
 {
        struct yaffsfs_FileDes *fd = NULL;
        struct yaffs_obj *obj = NULL;
-       loff_t pos = 0;
-       loff_t startPos = 0;
-       loff_t endPos;
+       Y_LOFF_T pos = 0;
+       Y_LOFF_T startPos = 0;
+       Y_LOFF_T endPos;
        int nWritten = 0;
        int totalWritten = 0;
        int write_trhrough = 0;
        int nToWrite = 0;
        const u8 *buf = (const u8 *)vbuf;
 
-       if (!vbuf) {
+       if (yaffsfs_CheckMemRegion(vbuf, nbyte, 0) < 0) {
                yaffsfs_SetError(-EFAULT);
                return -1;
        }
@@ -1224,7 +1313,7 @@ static int yaffsfs_do_write(int handle, const void *vbuf, unsigned int nbyte,
                else if (isPwrite)
                        startPos = offset;
                else
-                       startPos = fd->position;
+                       startPos = fd->v.position;
 
                yaffsfs_GetHandle(handle);
                pos = startPos;
@@ -1281,7 +1370,7 @@ static int yaffsfs_do_write(int handle, const void *vbuf, unsigned int nbyte,
 
                if (!isPwrite) {
                        if (totalWritten > 0)
-                               fd->position = startPos + totalWritten;
+                               fd->v.position = startPos + totalWritten;
                        else
                                yaffsfs_SetError(-EINVAL);
                }
@@ -1297,12 +1386,13 @@ int yaffs_write(int fd, const void *buf, unsigned int nbyte)
        return yaffsfs_do_write(fd, buf, nbyte, 0, 0);
 }
 
-int yaffs_pwrite(int fd, const void *buf, unsigned int nbyte, loff_t offset)
+int yaffs_pwrite(int fd, const void *buf, unsigned int nbyte, Y_LOFF_T offset)
 {
        return yaffsfs_do_write(fd, buf, nbyte, 1, offset);
 }
 
-int yaffs_truncate(const YCHAR *path, loff_t new_size)
+int yaffs_truncate_reldir(struct yaffs_obj *reldir, const YCHAR *path,
+                               Y_LOFF_T new_size)
 {
        struct yaffs_obj *obj = NULL;
        struct yaffs_obj *dir = NULL;
@@ -1310,7 +1400,7 @@ int yaffs_truncate(const YCHAR *path, loff_t new_size)
        int notDir = 0;
        int loop = 0;
 
-       if (!path) {
+       if (yaffsfs_CheckMemRegion(path, 0, 0) < 0) {
                yaffsfs_SetError(-EFAULT);
                return -1;
        }
@@ -1322,7 +1412,7 @@ int yaffs_truncate(const YCHAR *path, loff_t new_size)
 
        yaffsfs_Lock();
 
-       obj = yaffsfs_FindObject(NULL, path, 0, 1, &dir, &notDir, &loop);
+       obj = yaffsfs_FindObject(reldir, path, 0, 1, &dir, &notDir, &loop);
        obj = yaffsfs_FollowLink(obj, 0, &loop);
 
        if (!dir && notDir)
@@ -1347,7 +1437,18 @@ int yaffs_truncate(const YCHAR *path, loff_t new_size)
        return (result) ? 0 : -1;
 }
 
-int yaffs_ftruncate(int handle, loff_t new_size)
+int yaffs_truncate_reldev(struct yaffs_dev *dev, const YCHAR *path,
+                       Y_LOFF_T new_size)
+{
+       return yaffs_truncate_reldir(ROOT_DIR(dev), path, new_size);
+}
+
+int yaffs_truncate(const YCHAR *path, Y_LOFF_T new_size)
+{
+       return yaffs_truncate_reldir(NULL, path, new_size);
+}
+
+int yaffs_ftruncate(int handle, Y_LOFF_T new_size)
 {
        struct yaffsfs_FileDes *fd = NULL;
        struct yaffs_obj *obj = NULL;
@@ -1375,12 +1476,12 @@ int yaffs_ftruncate(int handle, loff_t new_size)
 
 }
 
-loff_t yaffs_lseek(int handle, loff_t offset, int whence)
+Y_LOFF_T yaffs_lseek(int handle, Y_LOFF_T offset, int whence)
 {
        struct yaffsfs_FileDes *fd = NULL;
        struct yaffs_obj *obj = NULL;
-       loff_t pos = -1;
-       loff_t fSize = -1;
+       Y_LOFF_T pos = -1;
+       Y_LOFF_T fSize = -1;
 
        yaffsfs_Lock();
        fd = yaffsfs_HandleToFileDes(handle);
@@ -1395,8 +1496,8 @@ loff_t yaffs_lseek(int handle, loff_t offset, int whence)
                        if (offset >= 0)
                                pos = offset;
                } else if (whence == SEEK_CUR) {
-                       if ((fd->position + offset) >= 0)
-                               pos = (fd->position + offset);
+                       if ((fd->v.position + offset) >= 0)
+                               pos = (fd->v.position + offset);
                } else if (whence == SEEK_END) {
                        fSize = yaffs_get_obj_length(obj);
                        if (fSize >= 0 && (fSize + offset) >= 0)
@@ -1404,7 +1505,7 @@ loff_t yaffs_lseek(int handle, loff_t offset, int whence)
                }
 
                if (pos >= 0 && pos <= YAFFS_MAX_FILE_SIZE)
-                       fd->position = pos;
+                       fd->v.position = pos;
                else {
                        yaffsfs_SetError(-EINVAL);
                        pos = -1;
@@ -1416,7 +1517,8 @@ loff_t yaffs_lseek(int handle, loff_t offset, int whence)
        return pos;
 }
 
-static int yaffsfs_DoUnlink(const YCHAR *path, int isDirectory)
+static int yaffsfs_DoUnlink_reldir(struct yaffs_obj *reldir,
+                               const YCHAR *path, int isDirectory)
 {
        struct yaffs_obj *dir = NULL;
        struct yaffs_obj *obj = NULL;
@@ -1425,7 +1527,7 @@ static int yaffsfs_DoUnlink(const YCHAR *path, int isDirectory)
        int notDir = 0;
        int loop = 0;
 
-       if (!path) {
+       if (yaffsfs_CheckMemRegion(path, 0, 0) < 0) {
                yaffsfs_SetError(-EFAULT);
                return -1;
        }
@@ -1437,8 +1539,8 @@ static int yaffsfs_DoUnlink(const YCHAR *path, int isDirectory)
 
        yaffsfs_Lock();
 
-       obj = yaffsfs_FindObject(NULL, path, 0, 0, NULL, NULL, NULL);
-       dir = yaffsfs_FindDirectory(NULL, path, &name, 0, &notDir, &loop);
+       obj = yaffsfs_FindObject(reldir, path, 0, 0, NULL, NULL, NULL);
+       dir = yaffsfs_FindDirectory(reldir, path, &name, 0, &notDir, &loop);
 
        if (!dir && notDir)
                yaffsfs_SetError(-ENOTDIR);
@@ -1472,12 +1574,41 @@ static int yaffsfs_DoUnlink(const YCHAR *path, int isDirectory)
        return (result == YAFFS_FAIL) ? -1 : 0;
 }
 
+int yaffs_unlink_reldir(struct yaffs_obj *reldir, const YCHAR *path)
+{
+       return yaffsfs_DoUnlink_reldir(reldir, path, 0);
+}
+
+int yaffs_unlink_reldev(struct yaffs_dev *dev, const YCHAR *path)
+{
+       return yaffsfs_DoUnlink_reldir(ROOT_DIR(dev), path, 0);
+}
+
 int yaffs_unlink(const YCHAR *path)
 {
-       return yaffsfs_DoUnlink(path, 0);
+       return yaffs_unlink_reldir(NULL, path);
 }
 
-int yaffs_rename(const YCHAR *oldPath, const YCHAR *newPath)
+static int rename_file_over_dir(struct yaffs_obj *obj, struct yaffs_obj *newobj)
+{
+       if (obj && obj->variant_type != YAFFS_OBJECT_TYPE_DIRECTORY &&
+           newobj && newobj->variant_type == YAFFS_OBJECT_TYPE_DIRECTORY)
+               return 1;
+       else
+               return 0;
+}
+
+static int rename_dir_over_file(struct yaffs_obj *obj, struct yaffs_obj *newobj)
+{
+       if (obj && obj->variant_type == YAFFS_OBJECT_TYPE_DIRECTORY &&
+           newobj && newobj->variant_type != YAFFS_OBJECT_TYPE_DIRECTORY)
+               return 1;
+       else
+               return 0;
+}
+
+int yaffs_rename_reldir(struct yaffs_obj *reldir,
+                       const YCHAR *oldPath, const YCHAR *newPath)
 {
        struct yaffs_obj *olddir = NULL;
        struct yaffs_obj *newdir = NULL;
@@ -1494,7 +1625,8 @@ int yaffs_rename(const YCHAR *oldPath, const YCHAR *newPath)
 
        YCHAR *alt_newpath = NULL;
 
-       if (!oldPath || !newPath) {
+       if (yaffsfs_CheckMemRegion(oldPath, 0, 0) < 0 ||
+           yaffsfs_CheckMemRegion(newPath, 0, 0) < 0) {
                yaffsfs_SetError(-EFAULT);
                return -1;
        }
@@ -1513,12 +1645,12 @@ int yaffs_rename(const YCHAR *oldPath, const YCHAR *newPath)
 
        yaffsfs_Lock();
 
-       olddir = yaffsfs_FindDirectory(NULL, oldPath, &oldname, 0,
+       olddir = yaffsfs_FindDirectory(reldir, oldPath, &oldname, 0,
                                       &notOldDir, &oldLoop);
-       newdir = yaffsfs_FindDirectory(NULL, newPath, &newname, 0,
+       newdir = yaffsfs_FindDirectory(reldir, newPath, &newname, 0,
                                       &notNewDir, &newLoop);
-       obj = yaffsfs_FindObject(NULL, oldPath, 0, 0, NULL, NULL, NULL);
-       newobj = yaffsfs_FindObject(NULL, newPath, 0, 0, NULL, NULL, NULL);
+       obj = yaffsfs_FindObject(reldir, oldPath, 0, 0, NULL, NULL, NULL);
+       newobj = yaffsfs_FindObject(reldir, newPath, 0, 0, NULL, NULL, NULL);
 
        /* If the object being renamed is a directory and the
         * path ended with a "/" then the olddir == obj.
@@ -1545,6 +1677,12 @@ int yaffs_rename(const YCHAR *oldPath, const YCHAR *newPath)
        } else if (obj->my_dev->read_only) {
                yaffsfs_SetError(-EROFS);
                rename_allowed = 0;
+       } else if (rename_file_over_dir(obj, newobj)) {
+               yaffsfs_SetError(-EISDIR);
+               rename_allowed = 0;
+       } else if (rename_dir_over_file(obj, newobj)) {
+               yaffsfs_SetError(-ENOTDIR);
+               rename_allowed = 0;
        } else if (yaffs_is_non_empty_dir(newobj)) {
                yaffsfs_SetError(-ENOTEMPTY);
                rename_allowed = 0;
@@ -1581,6 +1719,16 @@ int yaffs_rename(const YCHAR *oldPath, const YCHAR *newPath)
        return (result == YAFFS_FAIL) ? -1 : 0;
 }
 
+int yaffs_rename_reldev(struct yaffs_dev *dev, const YCHAR *oldPath,
+                       const YCHAR *newPath)
+{
+       return yaffs_rename_reldir(ROOT_DIR(dev), oldPath, newPath);
+}
+int yaffs_rename(const YCHAR *oldPath, const YCHAR *newPath)
+{
+       return yaffs_rename_reldir(NULL, oldPath, newPath);
+}
+
 static int yaffsfs_DoStat(struct yaffs_obj *obj, struct yaffs_stat *buf)
 {
        int retVal = -1;
@@ -1624,7 +1772,7 @@ static int yaffsfs_DoStat(struct yaffs_obj *obj, struct yaffs_stat *buf)
        return retVal;
 }
 
-static int yaffsfs_DoStatOrLStat(const YCHAR *path,
+static int yaffsfs_DoStatOrLStat_reldir(struct yaffs_obj *reldir, const YCHAR *path,
                                 struct yaffs_stat *buf, int doLStat)
 {
        struct yaffs_obj *obj = NULL;
@@ -1633,7 +1781,8 @@ static int yaffsfs_DoStatOrLStat(const YCHAR *path,
        int notDir = 0;
        int loop = 0;
 
-       if (!path || !buf) {
+       if (yaffsfs_CheckMemRegion(path, 0, 0) < 0 ||
+           yaffsfs_CheckMemRegion(buf, sizeof(*buf), 1) < 0) {
                yaffsfs_SetError(-EFAULT);
                return -1;
        }
@@ -1645,7 +1794,7 @@ static int yaffsfs_DoStatOrLStat(const YCHAR *path,
 
        yaffsfs_Lock();
 
-       obj = yaffsfs_FindObject(NULL, path, 0, 1, &dir, &notDir, &loop);
+       obj = yaffsfs_FindObject(reldir, path, 0, 1, &dir, &notDir, &loop);
 
        if (!doLStat && obj)
                obj = yaffsfs_FollowLink(obj, 0, &loop);
@@ -1665,14 +1814,38 @@ static int yaffsfs_DoStatOrLStat(const YCHAR *path,
 
 }
 
+int yaffs_stat_reldir(struct yaffs_obj *reldir, const YCHAR *path,
+                   struct yaffs_stat *buf)
+{
+       return yaffsfs_DoStatOrLStat_reldir(reldir, path, buf, 0);
+}
+
+int yaffs_lstat_reldir(struct yaffs_obj *reldir, const YCHAR *path,
+                   struct yaffs_stat *buf)
+{
+       return yaffsfs_DoStatOrLStat_reldir(reldir, path, buf, 1);
+}
+
+int yaffs_stat_reldev(struct yaffs_dev *dev, const YCHAR *path,
+                   struct yaffs_stat *buf)
+{
+       return yaffsfs_DoStatOrLStat_reldir(ROOT_DIR(dev), path, buf, 0);
+}
+
+int yaffs_lstat_reldev(struct yaffs_dev *dev, const YCHAR *path,
+                   struct yaffs_stat *buf)
+{
+       return yaffsfs_DoStatOrLStat_reldir(ROOT_DIR(dev), path, buf, 1);
+}
+
 int yaffs_stat(const YCHAR *path, struct yaffs_stat *buf)
 {
-       return yaffsfs_DoStatOrLStat(path, buf, 0);
+       return yaffs_stat_reldir(NULL, path, buf);
 }
 
 int yaffs_lstat(const YCHAR *path, struct yaffs_stat *buf)
 {
-       return yaffsfs_DoStatOrLStat(path, buf, 1);
+       return yaffs_lstat_reldir(NULL, path, buf);
 }
 
 int yaffs_fstat(int fd, struct yaffs_stat *buf)
@@ -1681,7 +1854,7 @@ int yaffs_fstat(int fd, struct yaffs_stat *buf)
 
        int retVal = -1;
 
-       if (!buf) {
+       if (yaffsfs_CheckMemRegion(buf, sizeof(*buf), 1) < 0) {
                yaffsfs_SetError(-EFAULT);
                return -1;
        }
@@ -1704,8 +1877,6 @@ static int yaffsfs_DoUtime(struct yaffs_obj *obj,
                           const struct yaffs_utimbuf *buf)
 {
        int retVal = -1;
-       int result;
-
        struct yaffs_utimbuf local;
 
        obj = yaffs_get_equivalent_obj(obj);
@@ -1715,6 +1886,7 @@ static int yaffsfs_DoUtime(struct yaffs_obj *obj,
                return -1;
        }
 
+#if !CONFIG_YAFFS_WINCE
        if (!buf) {
                local.actime = Y_CURRENT_TIME;
                local.modtime = local.actime;
@@ -1722,17 +1894,21 @@ static int yaffsfs_DoUtime(struct yaffs_obj *obj,
        }
 
        if (obj) {
+               int result;
+
                obj->yst_atime = buf->actime;
                obj->yst_mtime = buf->modtime;
                obj->dirty = 1;
-               result = yaffs_flush_file(obj, 0, 0);
+               result = yaffs_flush_file(obj, 0, 0, 0);
                retVal = result == YAFFS_OK ? 0 : -1;
        }
+#endif
 
        return retVal;
 }
 
-int yaffs_utime(const YCHAR *path, const struct yaffs_utimbuf *buf)
+int yaffs_utime_reldir(struct yaffs_obj *reldir, const YCHAR *path,
+                    const struct yaffs_utimbuf *buf)
 {
        struct yaffs_obj *obj = NULL;
        struct yaffs_obj *dir = NULL;
@@ -1752,7 +1928,7 @@ int yaffs_utime(const YCHAR *path, const struct yaffs_utimbuf *buf)
 
        yaffsfs_Lock();
 
-       obj = yaffsfs_FindObject(NULL, path, 0, 1, &dir, &notDir, &loop);
+       obj = yaffsfs_FindObject(reldir, path, 0, 1, &dir, &notDir, &loop);
 
        if (!dir && notDir)
                yaffsfs_SetError(-ENOTDIR);
@@ -1769,6 +1945,17 @@ int yaffs_utime(const YCHAR *path, const struct yaffs_utimbuf *buf)
 
 }
 
+int yaffs_utime_reldev(struct yaffs_dev *dev, const YCHAR *path,
+                       const struct yaffs_utimbuf *buf)
+{
+       return yaffs_utime_reldir(ROOT_DIR(dev), path, buf);
+}
+
+int yaffs_utime(const YCHAR *path, const struct yaffs_utimbuf *buf)
+{
+       return yaffs_utime_reldir(NULL, path, buf);
+}
+
 int yaffs_futime(int fd, const struct yaffs_utimbuf *buf)
 {
        struct yaffs_obj *obj;
@@ -1792,8 +1979,9 @@ int yaffs_futime(int fd, const struct yaffs_utimbuf *buf)
 #ifndef CONFIG_YAFFS_WINCE
 /* xattrib functions */
 
-static int yaffs_do_setxattr(const YCHAR *path, const char *name,
-                            const void *data, int size, int flags, int follow)
+static int yaffs_do_setxattr_reldir(struct yaffs_obj *reldir, const YCHAR *path,
+                                 const char *name, const void *data, int size,
+                                 int flags, int follow)
 {
        struct yaffs_obj *obj;
        struct yaffs_obj *dir;
@@ -1802,7 +1990,9 @@ static int yaffs_do_setxattr(const YCHAR *path, const char *name,
 
        int retVal = -1;
 
-       if (!path || !name || !data) {
+       if (yaffsfs_CheckMemRegion(path, 0, 0) < 0 ||
+           yaffsfs_CheckMemRegion(name, 0, 0) < 0 ||
+           yaffsfs_CheckMemRegion(data, size, 0) < 0) {
                yaffsfs_SetError(-EFAULT);
                return -1;
        }
@@ -1814,7 +2004,7 @@ static int yaffs_do_setxattr(const YCHAR *path, const char *name,
 
        yaffsfs_Lock();
 
-       obj = yaffsfs_FindObject(NULL, path, 0, 1, &dir, &notDir, &loop);
+       obj = yaffsfs_FindObject(reldir, path, 0, 1, &dir, &notDir, &loop);
 
        if (follow)
                obj = yaffsfs_FollowLink(obj, 0, &loop);
@@ -1839,16 +2029,40 @@ static int yaffs_do_setxattr(const YCHAR *path, const char *name,
 
 }
 
+int yaffs_setxattr_reldir(struct yaffs_obj *reldir, const YCHAR *path,
+                       const char *name, const void *data, int size, int flags)
+{
+       return yaffs_do_setxattr_reldir(reldir, path, name, data, size, flags, 1);
+}
+
+int yaffs_setxattr_reldev(struct yaffs_dev *dev, const YCHAR *path,
+               const char *name, const void *data, int size, int flags)
+{
+       return yaffs_setxattr_reldir(ROOT_DIR(dev), path, name, data, size, flags);
+}
+
 int yaffs_setxattr(const YCHAR *path, const char *name,
                   const void *data, int size, int flags)
 {
-       return yaffs_do_setxattr(path, name, data, size, flags, 1);
+       return yaffs_setxattr_reldir(NULL, path, name, data, size, flags);
 }
 
-int yaffs_lsetxattr(const YCHAR *path, const char *name,
+int yaffs_lsetxattr_reldir(struct yaffs_obj *reldir, const YCHAR *path, const char *name,
                    const void *data, int size, int flags)
 {
-       return yaffs_do_setxattr(path, name, data, size, flags, 0);
+       return yaffs_do_setxattr_reldir(reldir, path, name, data, size, flags, 0);
+}
+
+int yaffs_lsetxattr_reldev(struct yaffs_dev *dev, const YCHAR *path, const char *name,
+                  const void *data, int size, int flags)
+{
+       return yaffs_lsetxattr_reldir(ROOT_DIR(dev), path, name, data, size, flags);
+}
+
+int yaffs_lsetxattr(const YCHAR *path, const char *name,
+                  const void *data, int size, int flags)
+{
+       return yaffs_lsetxattr_reldir(NULL, path, name, data, size, flags);
 }
 
 int yaffs_fsetxattr(int fd, const char *name,
@@ -1858,7 +2072,8 @@ int yaffs_fsetxattr(int fd, const char *name,
 
        int retVal = -1;
 
-       if (!name || !data) {
+       if (yaffsfs_CheckMemRegion(name, 0, 0) < 0 ||
+           yaffsfs_CheckMemRegion(data, size, 0) < 0) {
                yaffsfs_SetError(-EFAULT);
                return -1;
        }
@@ -1881,8 +2096,8 @@ int yaffs_fsetxattr(int fd, const char *name,
        return retVal;
 }
 
-static int yaffs_do_getxattr(const YCHAR *path, const char *name,
-                            void *data, int size, int follow)
+static int yaffs_do_getxattr_reldir(struct yaffs_obj *reldir, const YCHAR *path,
+                       const char *name, void *data, int size, int follow)
 {
        struct yaffs_obj *obj;
        struct yaffs_obj *dir;
@@ -1890,7 +2105,9 @@ static int yaffs_do_getxattr(const YCHAR *path, const char *name,
        int notDir = 0;
        int loop = 0;
 
-       if (!path || !name || !data) {
+       if (yaffsfs_CheckMemRegion(path, 0, 0) < 0 ||
+           yaffsfs_CheckMemRegion(name, 0, 0) < 0 ||
+           yaffsfs_CheckMemRegion(data, size, 1) < 0) {
                yaffsfs_SetError(-EFAULT);
                return -1;
        }
@@ -1902,7 +2119,7 @@ static int yaffs_do_getxattr(const YCHAR *path, const char *name,
 
        yaffsfs_Lock();
 
-       obj = yaffsfs_FindObject(NULL, path, 0, 1, &dir, &notDir, &loop);
+       obj = yaffsfs_FindObject(reldir, path, 0, 1, &dir, &notDir, &loop);
 
        if (follow)
                obj = yaffsfs_FollowLink(obj, 0, &loop);
@@ -1926,14 +2143,36 @@ static int yaffs_do_getxattr(const YCHAR *path, const char *name,
 
 }
 
+int yaffs_getxattr_reldir(struct yaffs_obj *reldir, const YCHAR *path,
+                       const char *name, void *data, int size)
+{
+       return yaffs_do_getxattr_reldir(reldir, path, name, data, size, 1);
+}
+
+int yaffs_getxattr_reldev(struct yaffs_dev *dev, const YCHAR *path, const char *name, void *data, int size)
+{
+       return yaffs_getxattr_reldir(ROOT_DIR(dev), path, name, data, size);
+}
+
 int yaffs_getxattr(const YCHAR *path, const char *name, void *data, int size)
 {
-       return yaffs_do_getxattr(path, name, data, size, 1);
+       return yaffs_getxattr_reldir(NULL, path, name, data, size);
+}
+
+int yaffs_lgetxattr_reldir(struct yaffs_obj *reldir, const YCHAR *path,
+                       const char *name, void *data, int size)
+{
+       return yaffs_do_getxattr_reldir(reldir, path, name, data, size, 0);
+}
+
+int yaffs_lgetxattr_reldev(struct yaffs_dev *dev, const YCHAR *path, const char *name, void *data, int size)
+{
+       return yaffs_lgetxattr_reldir(ROOT_DIR(dev), path, name, data, size);
 }
 
 int yaffs_lgetxattr(const YCHAR *path, const char *name, void *data, int size)
 {
-       return yaffs_do_getxattr(path, name, data, size, 0);
+       return yaffs_lgetxattr_reldir(NULL, path, name, data, size);
 }
 
 int yaffs_fgetxattr(int fd, const char *name, void *data, int size)
@@ -1942,7 +2181,8 @@ int yaffs_fgetxattr(int fd, const char *name, void *data, int size)
 
        int retVal = -1;
 
-       if (!name || !data) {
+       if (yaffsfs_CheckMemRegion(name, 0, 0) < 0 ||
+           yaffsfs_CheckMemRegion(data, size, 1) < 0) {
                yaffsfs_SetError(-EFAULT);
                return -1;
        }
@@ -1965,8 +2205,8 @@ int yaffs_fgetxattr(int fd, const char *name, void *data, int size)
        return retVal;
 }
 
-static int yaffs_do_listxattr(const YCHAR *path, char *data,
-                             int size, int follow)
+static int yaffs_do_listxattr_reldir(struct yaffs_obj *reldir, const YCHAR *path,
+                               char *data, int size, int follow)
 {
        struct yaffs_obj *obj = NULL;
        struct yaffs_obj *dir = NULL;
@@ -1974,7 +2214,8 @@ static int yaffs_do_listxattr(const YCHAR *path, char *data,
        int notDir = 0;
        int loop = 0;
 
-       if (!path || !data) {
+       if (yaffsfs_CheckMemRegion(path, 0, 0) < 0 ||
+           yaffsfs_CheckMemRegion(data, size, 1) < 0) {
                yaffsfs_SetError(-EFAULT);
                return -1;
        }
@@ -1986,7 +2227,7 @@ static int yaffs_do_listxattr(const YCHAR *path, char *data,
 
        yaffsfs_Lock();
 
-       obj = yaffsfs_FindObject(NULL, path, 0, 1, &dir, &notDir, &loop);
+       obj = yaffsfs_FindObject(reldir, path, 0, 1, &dir, &notDir, &loop);
 
        if (follow)
                obj = yaffsfs_FollowLink(obj, 0, &loop);
@@ -2011,14 +2252,36 @@ static int yaffs_do_listxattr(const YCHAR *path, char *data,
 
 }
 
+int yaffs_listxattr_reldir(struct yaffs_obj *reldir, const YCHAR *path,
+                       char *data, int size)
+{
+       return yaffs_do_listxattr_reldir(reldir, path, data, size, 1);
+}
+
+int yaffs_listxattr_reldev(struct yaffs_dev *dev, const YCHAR *path, char *data, int size)
+{
+       return yaffs_listxattr_reldir(ROOT_DIR(dev), path, data, size);
+}
+
 int yaffs_listxattr(const YCHAR *path, char *data, int size)
 {
-       return yaffs_do_listxattr(path, data, size, 1);
+       return yaffs_listxattr_reldir(NULL, path, data, size);
+}
+
+int yaffs_llistxattr_reldir(struct yaffs_obj *reldir, const YCHAR *path,
+                       char *data, int size)
+{
+       return yaffs_do_listxattr_reldir(reldir, path, data, size, 0);
+}
+
+int yaffs_llistxattr_reldev(struct yaffs_dev *dev, const YCHAR *path, char *data, int size)
+{
+       return yaffs_llistxattr_reldir(ROOT_DIR(dev), path, data, size);
 }
 
 int yaffs_llistxattr(const YCHAR *path, char *data, int size)
 {
-       return yaffs_do_listxattr(path, data, size, 0);
+       return yaffs_llistxattr_reldir(NULL, path, data, size);
 }
 
 int yaffs_flistxattr(int fd, char *data, int size)
@@ -2027,7 +2290,7 @@ int yaffs_flistxattr(int fd, char *data, int size)
 
        int retVal = -1;
 
-       if (!data) {
+       if (yaffsfs_CheckMemRegion(data, size, 1) < 0) {
                yaffsfs_SetError(-EFAULT);
                return -1;
        }
@@ -2050,8 +2313,8 @@ int yaffs_flistxattr(int fd, char *data, int size)
        return retVal;
 }
 
-static int yaffs_do_removexattr(const YCHAR *path, const char *name,
-                               int follow)
+static int yaffs_do_removexattr_reldir(struct yaffs_obj *reldir, const YCHAR *path,
+                               const char *name, int follow)
 {
        struct yaffs_obj *obj = NULL;
        struct yaffs_obj *dir = NULL;
@@ -2059,7 +2322,8 @@ static int yaffs_do_removexattr(const YCHAR *path, const char *name,
        int loop = 0;
        int retVal = -1;
 
-       if (!path || !name) {
+       if (yaffsfs_CheckMemRegion(path, 0, 0) < 0 ||
+           yaffsfs_CheckMemRegion(name, 0, 0) < 0) {
                yaffsfs_SetError(-EFAULT);
                return -1;
        }
@@ -2071,7 +2335,7 @@ static int yaffs_do_removexattr(const YCHAR *path, const char *name,
 
        yaffsfs_Lock();
 
-       obj = yaffsfs_FindObject(NULL, path, 0, 1, &dir, &notDir, &loop);
+       obj = yaffsfs_FindObject(reldir, path, 0, 1, &dir, &notDir, &loop);
 
        if (follow)
                obj = yaffsfs_FollowLink(obj, 0, &loop);
@@ -2096,14 +2360,36 @@ static int yaffs_do_removexattr(const YCHAR *path, const char *name,
 
 }
 
+int yaffs_removexattr_reldir(struct yaffs_obj *reldir, const YCHAR *path,
+                       const char *name)
+{
+       return yaffs_do_removexattr_reldir(reldir, path, name, 1);
+}
+
+int yaffs_removexattr_reldev(struct yaffs_dev *dev, const YCHAR *path, const char *name)
+{
+       return yaffs_removexattr_reldir(ROOT_DIR(dev), path, name);
+}
+
 int yaffs_removexattr(const YCHAR *path, const char *name)
 {
-       return yaffs_do_removexattr(path, name, 1);
+       return yaffs_removexattr_reldir(NULL, path, name);
+}
+
+int yaffs_lremovexattr_reldir(struct yaffs_obj *reldir, const YCHAR *path,
+                       const char *name)
+{
+       return yaffs_do_removexattr_reldir(reldir, path, name, 0);
+}
+
+int yaffs_lremovexattr_reldev(struct yaffs_dev *dev, const YCHAR *path, const char *name)
+{
+       return yaffs_lremovexattr_reldir(ROOT_DIR(dev), path, name);
 }
 
 int yaffs_lremovexattr(const YCHAR *path, const char *name)
 {
-       return yaffs_do_removexattr(path, name, 0);
+       return yaffs_lremovexattr_reldir(NULL, path, name);
 }
 
 int yaffs_fremovexattr(int fd, const char *name)
@@ -2112,7 +2398,7 @@ int yaffs_fremovexattr(int fd, const char *name)
 
        int retVal = -1;
 
-       if (!name) {
+       if (yaffsfs_CheckMemRegion(name, 0, 0) < 0) {
                yaffsfs_SetError(-EFAULT);
                return -1;
        }
@@ -2199,7 +2485,7 @@ int yaffs_set_wince_times(int fd,
                }
 
                obj->dirty = 1;
-               result = yaffs_flush_file(obj, 0, 0);
+               result = yaffs_flush_file(obj, 0, 0, 0);
                retVal = 0;
        } else
                /* bad handle */
@@ -2222,13 +2508,13 @@ static int yaffsfs_DoChMod(struct yaffs_obj *obj, mode_t mode)
        if (obj) {
                obj->yst_mode = mode;
                obj->dirty = 1;
-               result = yaffs_flush_file(obj, 0, 0);
+               result = yaffs_flush_file(obj, 0, 0, 0);
        }
 
        return result == YAFFS_OK ? 0 : -1;
 }
 
-int yaffs_access(const YCHAR *path, int amode)
+int yaffs_access_reldir(struct yaffs_obj *reldir, const YCHAR *path, int amode)
 {
        struct yaffs_obj *obj = NULL;
        struct yaffs_obj *dir = NULL;
@@ -2236,7 +2522,7 @@ int yaffs_access(const YCHAR *path, int amode)
        int loop = 0;
        int retval = -1;
 
-       if (!path) {
+       if (yaffsfs_CheckMemRegion(path, 0, 0) < 0) {
                yaffsfs_SetError(-EFAULT);
                return -1;
        }
@@ -2253,7 +2539,7 @@ int yaffs_access(const YCHAR *path, int amode)
 
        yaffsfs_Lock();
 
-       obj = yaffsfs_FindObject(NULL, path, 0, 1, &dir, &notDir, &loop);
+       obj = yaffsfs_FindObject(reldir, path, 0, 1, &dir, &notDir, &loop);
        obj = yaffsfs_FollowLink(obj, 0, &loop);
 
        if (!dir && notDir)
@@ -2286,7 +2572,17 @@ int yaffs_access(const YCHAR *path, int amode)
 
 }
 
-int yaffs_chmod(const YCHAR *path, mode_t mode)
+int yaffs_access_reldev(struct yaffs_dev *dev, const YCHAR *path, int amode)
+{
+       return yaffs_access_reldir(ROOT_DIR(dev), path, amode);
+}
+
+int yaffs_access(const YCHAR *path, int amode)
+{
+       return yaffs_access_reldir(NULL, path, amode);
+}
+
+int yaffs_chmod_reldir(struct yaffs_obj *reldir, const YCHAR *path, mode_t mode)
 {
        struct yaffs_obj *obj = NULL;
        struct yaffs_obj *dir = NULL;
@@ -2294,7 +2590,7 @@ int yaffs_chmod(const YCHAR *path, mode_t mode)
        int notDir = 0;
        int loop = 0;
 
-       if (!path) {
+       if (yaffsfs_CheckMemRegion(path, 0, 0) < 0) {
                yaffsfs_SetError(-EFAULT);
                return -1;
        }
@@ -2311,7 +2607,7 @@ int yaffs_chmod(const YCHAR *path, mode_t mode)
 
        yaffsfs_Lock();
 
-       obj = yaffsfs_FindObject(NULL, path, 0, 1, &dir, &notDir, &loop);
+       obj = yaffsfs_FindObject(reldir, path, 0, 1, &dir, &notDir, &loop);
        obj = yaffsfs_FollowLink(obj, 0, &loop);
 
        if (!dir && notDir)
@@ -2331,6 +2627,16 @@ int yaffs_chmod(const YCHAR *path, mode_t mode)
 
 }
 
+int yaffs_chmod_reldev(struct yaffs_dev *dev, const YCHAR *path, mode_t mode)
+{
+       return yaffs_chmod_reldir(ROOT_DIR(dev), path, mode);
+}
+
+int yaffs_chmod(const YCHAR *path, mode_t mode)
+{
+       return yaffs_chmod_reldir(NULL, path, mode);
+}
+
 int yaffs_fchmod(int fd, mode_t mode)
 {
        struct yaffs_obj *obj;
@@ -2356,7 +2662,7 @@ int yaffs_fchmod(int fd, mode_t mode)
        return retVal;
 }
 
-int yaffs_mkdir(const YCHAR *path, mode_t mode)
+int yaffs_mkdir_reldir(struct yaffs_obj *reldir, const YCHAR *path, mode_t mode)
 {
        struct yaffs_obj *parent = NULL;
        struct yaffs_obj *dir = NULL;
@@ -2366,7 +2672,7 @@ int yaffs_mkdir(const YCHAR *path, mode_t mode)
        int notDir = 0;
        int loop = 0;
 
-       if (!path) {
+       if (yaffsfs_CheckMemRegion(path, 0, 0) < 0) {
                yaffsfs_SetError(-EFAULT);
                return -1;
        }
@@ -2384,7 +2690,7 @@ int yaffs_mkdir(const YCHAR *path, mode_t mode)
                path = alt_path;
 
        yaffsfs_Lock();
-       parent = yaffsfs_FindDirectory(NULL, path, &name, 0, &notDir, &loop);
+       parent = yaffsfs_FindDirectory(reldir, path, &name, 0, &notDir, &loop);
        if (!parent && notDir)
                yaffsfs_SetError(-ENOTDIR);
        else if (loop)
@@ -2415,12 +2721,22 @@ int yaffs_mkdir(const YCHAR *path, mode_t mode)
        return retVal;
 }
 
-int yaffs_rmdir(const YCHAR *path)
+int yaffs_mkdir_reldev(struct yaffs_dev *dev, const YCHAR *path, mode_t mode)
+{
+       return yaffs_mkdir_reldir(ROOT_DIR(dev), path, mode);
+}
+
+int yaffs_mkdir(const YCHAR *path, mode_t mode)
+{
+       return yaffs_mkdir_reldir(NULL, path, mode);
+}
+
+int yaffs_rmdir_reldir(struct yaffs_obj *reldir, const YCHAR *path)
 {
        int result;
        YCHAR *alt_path;
 
-       if (!path) {
+       if (yaffsfs_CheckMemRegion(path, 0, 0) < 0) {
                yaffsfs_SetError(-EFAULT);
                return -1;
        }
@@ -2436,13 +2752,26 @@ int yaffs_rmdir(const YCHAR *path)
        }
        if (alt_path)
                path = alt_path;
-       result = yaffsfs_DoUnlink(path, 1);
+       result = yaffsfs_DoUnlink_reldir(reldir, path, 1);
 
        kfree(alt_path);
 
        return result;
 }
 
+int yaffs_rmdir_reldev(struct yaffs_dev *dev, const YCHAR *path)
+{
+       return yaffs_rmdir_reldir(ROOT_DIR(dev), path);
+}
+
+int yaffs_rmdir(const YCHAR *path)
+{
+       return yaffs_rmdir_reldir(NULL, path);
+}
+
+/*
+ * The mount/unmount/sync functions act on devices rather than reldirs.
+ */
 void *yaffs_getdev(const YCHAR *path)
 {
        struct yaffs_dev *dev = NULL;
@@ -2451,29 +2780,33 @@ void *yaffs_getdev(const YCHAR *path)
        return (void *)dev;
 }
 
-int yaffs_mount_common(const YCHAR *path, int read_only, int skip_checkpt)
+int yaffs_mount_common(struct yaffs_dev *dev, const YCHAR *path,
+                               int read_only, int skip_checkpt)
 {
        int retVal = -1;
        int result = YAFFS_FAIL;
-       struct yaffs_dev *dev = NULL;
 
-       if (!path) {
-               yaffsfs_SetError(-EFAULT);
-               return -1;
-       }
+       if (!dev) {
+               if (yaffsfs_CheckMemRegion(path, 0, 0) < 0) {
+                       yaffsfs_SetError(-EFAULT);
+                       return -1;
+               }
 
-       yaffs_trace(YAFFS_TRACE_MOUNT, "yaffs: Mounting %s", path);
+               yaffs_trace(YAFFS_TRACE_MOUNT, "yaffs: Mounting %s", path);
 
-       if (yaffsfs_CheckPath(path) < 0) {
-               yaffsfs_SetError(-ENAMETOOLONG);
-               return -1;
+               if (yaffsfs_CheckPath(path) < 0) {
+                       yaffsfs_SetError(-ENAMETOOLONG);
+                       return -1;
+               }
        }
 
        yaffsfs_Lock();
 
        yaffsfs_InitHandles();
 
-       dev = yaffsfs_FindMountPoint(path);
+       if (!dev)
+               dev = yaffsfs_FindMountPoint(path);
+
        if (dev) {
                if (!dev->is_mounted) {
                        dev->read_only = read_only ? 1 : 0;
@@ -2500,34 +2833,57 @@ int yaffs_mount_common(const YCHAR *path, int read_only, int skip_checkpt)
 
 }
 
+int yaffs_mount3_reldev(struct yaffs_dev *dev, int read_only, int skip_checkpt)
+{
+       return yaffs_mount_common(dev, NULL, read_only, skip_checkpt);
+}
+
+int yaffs_mount3(const YCHAR *path, int read_only, int skip_checkpt)
+{
+       return yaffs_mount_common(NULL, path, read_only, skip_checkpt);
+}
+
+int yaffs_mount2_reldev(struct yaffs_dev *dev, int readonly)
+{
+       return yaffs_mount_common(dev, NULL, readonly, 0);
+}
+
 int yaffs_mount2(const YCHAR *path, int readonly)
 {
-       return yaffs_mount_common(path, readonly, 0);
+       return yaffs_mount_common(NULL, path, readonly, 0);
+}
+
+int yaffs_mount_reldev(struct yaffs_dev *dev)
+{
+       return yaffs_mount_common(dev, NULL, 0, 0);
 }
 
 int yaffs_mount(const YCHAR *path)
 {
-       return yaffs_mount_common(path, 0, 0);
+       return yaffs_mount_common(NULL, path, 0, 0);
 }
 
-int yaffs_sync(const YCHAR *path)
+int yaffs_sync_common(struct yaffs_dev *dev, const YCHAR *path)
 {
        int retVal = -1;
-       struct yaffs_dev *dev = NULL;
        YCHAR *dummy;
 
-       if (!path) {
-               yaffsfs_SetError(-EFAULT);
-               return -1;
-       }
+       if (!dev) {
+               if (yaffsfs_CheckMemRegion(path, 0, 0) < 0) {
+                       yaffsfs_SetError(-EFAULT);
+                       return -1;
+               }
 
-       if (yaffsfs_CheckPath(path) < 0) {
-               yaffsfs_SetError(-ENAMETOOLONG);
-               return -1;
+               if (yaffsfs_CheckPath(path) < 0) {
+                       yaffsfs_SetError(-ENAMETOOLONG);
+                       return -1;
+               }
        }
 
        yaffsfs_Lock();
-       dev = yaffsfs_FindDevice(path, &dummy);
+       if (!dev)
+               dev = yaffsfs_FindDevice(path, &dummy);
+
        if (dev) {
                if (!dev->is_mounted)
                        yaffsfs_SetError(-EINVAL);
@@ -2535,7 +2891,7 @@ int yaffs_sync(const YCHAR *path)
                        yaffsfs_SetError(-EROFS);
                else {
 
-                       yaffs_flush_whole_cache(dev);
+                       yaffs_flush_whole_cache(dev, 0);
                        yaffs_checkpoint_save(dev);
                        retVal = 0;
 
@@ -2547,6 +2903,67 @@ int yaffs_sync(const YCHAR *path)
        return retVal;
 }
 
+int yaffs_sync_reldev(struct yaffs_dev *dev)
+{
+       return yaffs_sync_common(dev, NULL);
+}
+
+int yaffs_sync(const YCHAR *path)
+{
+       return yaffs_sync_common(NULL, path);
+}
+
+
+static int yaffsfs_bg_gc_common(struct yaffs_dev *dev,
+                               const YCHAR *path,
+                               int urgency)
+{
+       int retVal = -1;
+       YCHAR *dummy;
+
+       if (!dev) {
+               if (yaffsfs_CheckMemRegion(path, 0, 0) < 0) {
+                       yaffsfs_SetError(-EFAULT);
+                       return -1;
+               }
+
+               if (yaffsfs_CheckPath(path) < 0) {
+                       yaffsfs_SetError(-ENAMETOOLONG);
+                       return -1;
+               }
+       }
+
+       yaffsfs_Lock();
+       if (!dev)
+               dev = yaffsfs_FindDevice(path, &dummy);
+
+       if (dev) {
+               if (!dev->is_mounted)
+                       yaffsfs_SetError(-EINVAL);
+               else
+                       retVal = yaffs_bg_gc(dev, urgency);
+       } else
+               yaffsfs_SetError(-ENODEV);
+
+       yaffsfs_Unlock();
+       return retVal;
+}
+
+/* Background gc functions.
+ * These return 0 when bg done or greater than 0 when gc has been
+ * done and there is still a lot of garbage to be cleaned up.
+ */
+
+int yaffs_do_background_gc(const YCHAR *path, int urgency)
+{
+       return yaffsfs_bg_gc_common(NULL, path, urgency);
+}
+
+int yaffs_do_background_gc_reldev(struct yaffs_dev *dev, int urgency)
+{
+       return yaffsfs_bg_gc_common(dev, NULL, urgency);
+}
+
 static int yaffsfs_IsDevBusy(struct yaffs_dev *dev)
 {
        int i;
@@ -2560,12 +2977,12 @@ static int yaffsfs_IsDevBusy(struct yaffs_dev *dev)
        return 0;
 }
 
-int yaffs_remount(const YCHAR *path, int force, int read_only)
+int yaffs_remount_common(struct yaffs_dev *dev, const YCHAR *path,
+                      int force, int read_only)
 {
        int retVal = -1;
-       struct yaffs_dev *dev = NULL;
 
-       if (!path) {
+       if (yaffsfs_CheckMemRegion(path, 0, 0) < 0) {
                yaffsfs_SetError(-EFAULT);
                return -1;
        }
@@ -2576,10 +2993,12 @@ int yaffs_remount(const YCHAR *path, int force, int read_only)
        }
 
        yaffsfs_Lock();
-       dev = yaffsfs_FindMountPoint(path);
+       if (!dev)
+               dev = yaffsfs_FindMountPoint(path);
+
        if (dev) {
                if (dev->is_mounted) {
-                       yaffs_flush_whole_cache(dev);
+                       yaffs_flush_whole_cache(dev, 0);
 
                        if (force || !yaffsfs_IsDevBusy(dev)) {
                                if (read_only)
@@ -2600,12 +3019,20 @@ int yaffs_remount(const YCHAR *path, int force, int read_only)
 
 }
 
-int yaffs_unmount2(const YCHAR *path, int force)
+int yaffs_remount_reldev(struct yaffs_dev *dev, int force, int read_only)
+{
+       return yaffs_remount_common(dev, NULL, force, read_only);
+}
+int yaffs_remount(const YCHAR *path, int force, int read_only)
+{
+       return yaffs_remount_common(NULL, path, force, read_only);
+}
+
+int yaffs_unmount2_common(struct yaffs_dev *dev, const YCHAR *path, int force)
 {
        int retVal = -1;
-       struct yaffs_dev *dev = NULL;
 
-       if (!path) {
+       if (yaffsfs_CheckMemRegion(path, 0, 0) < 0) {
                yaffsfs_SetError(-EFAULT);
                return -1;
        }
@@ -2616,11 +3043,13 @@ int yaffs_unmount2(const YCHAR *path, int force)
        }
 
        yaffsfs_Lock();
-       dev = yaffsfs_FindMountPoint(path);
+       if (!dev)
+               dev = yaffsfs_FindMountPoint(path);
+
        if (dev) {
                if (dev->is_mounted) {
                        int inUse;
-                       yaffs_flush_whole_cache(dev);
+                       yaffs_flush_whole_cache(dev, 0);
                        yaffs_checkpoint_save(dev);
                        inUse = yaffsfs_IsDevBusy(dev);
                        if (!inUse || force) {
@@ -2643,29 +3072,127 @@ int yaffs_unmount2(const YCHAR *path, int force)
 
 }
 
+int yaffs_unmount2_reldev(struct yaffs_dev *dev, int force)
+{
+       return yaffs_unmount2_common(dev, NULL, force);
+}
+
+int yaffs_unmount2(const YCHAR *path, int force)
+{
+       return yaffs_unmount2_common(NULL, path, force);
+}
+
+int yaffs_unmount_reldev(struct yaffs_dev *dev)
+{
+       return yaffs_unmount2_reldev(dev, 0);
+}
+
 int yaffs_unmount(const YCHAR *path)
 {
        return yaffs_unmount2(path, 0);
 }
 
-loff_t yaffs_freespace(const YCHAR *path)
+int yaffs_format_common(struct yaffs_dev *dev,
+               const YCHAR *path,
+               int unmount_flag,
+               int force_unmount_flag,
+               int remount_flag)
 {
-       loff_t retVal = -1;
-       struct yaffs_dev *dev = NULL;
-       YCHAR *dummy;
+       int retVal = 0;
+       int result;
 
-       if (!path) {
-               yaffsfs_SetError(-EFAULT);
-               return -1;
+       if (!dev) {
+               if (!path) {
+                       yaffsfs_SetError(-EFAULT);
+                       return -1;
+               }
+
+               if (yaffsfs_CheckPath(path) < 0) {
+                       yaffsfs_SetError(-ENAMETOOLONG);
+                       return -1;
+               }
        }
 
-       if (yaffsfs_CheckPath(path) < 0) {
-               yaffsfs_SetError(-ENAMETOOLONG);
-               return -1;
+       yaffsfs_Lock();
+       if (!dev)
+               dev = yaffsfs_FindMountPoint(path);
+
+       if (dev) {
+               int was_mounted = dev->is_mounted;
+
+               if (dev->is_mounted && unmount_flag) {
+                       int inUse;
+                       yaffs_flush_whole_cache(dev, 0);
+                       yaffs_checkpoint_save(dev);
+                       inUse = yaffsfs_IsDevBusy(dev);
+                       if (!inUse || force_unmount_flag) {
+                               if (inUse)
+                                       yaffsfs_BreakDeviceHandles(dev);
+                               yaffs_deinitialise(dev);
+                       }
+               }
+
+               if(dev->is_mounted) {
+                               yaffsfs_SetError(-EBUSY);
+                               retVal = -1;
+               } else {
+                       yaffs_guts_format_dev(dev);
+                       if(was_mounted && remount_flag) {
+                               result = yaffs_guts_initialise(dev);
+                               if (result == YAFFS_FAIL) {
+                                       yaffsfs_SetError(-ENOMEM);
+                                       retVal = -1;
+                               }
+                       }
+               }
+       } else {
+               yaffsfs_SetError(-ENODEV);
+               retVal = -1;
+       }
+
+       yaffsfs_Unlock();
+       return retVal;
+
+}
+
+int yaffs_format_reldev(struct yaffs_dev *dev,
+               int unmount_flag,
+               int force_unmount_flag,
+               int remount_flag)
+{
+       return yaffs_format_common(dev, NULL, unmount_flag,
+                       force_unmount_flag, remount_flag);
+}
+
+int yaffs_format(const YCHAR *path,
+               int unmount_flag,
+               int force_unmount_flag,
+               int remount_flag)
+{
+       return yaffs_format_common(NULL, path, unmount_flag,
+                       force_unmount_flag, remount_flag);
+}
+
+Y_LOFF_T yaffs_freespace_common(struct yaffs_dev *dev, const YCHAR *path)
+{
+       Y_LOFF_T retVal = -1;
+       YCHAR *dummy;
+
+       if (!dev) {
+               if (yaffsfs_CheckMemRegion(path, 0, 0) < 0) {
+                       yaffsfs_SetError(-EFAULT);
+                       return -1;
+               }
+
+               if (yaffsfs_CheckPath(path) < 0) {
+                       yaffsfs_SetError(-ENAMETOOLONG);
+                       return -1;
+               }
        }
 
        yaffsfs_Lock();
-       dev = yaffsfs_FindDevice(path, &dummy);
+       if (!dev)
+               dev = yaffsfs_FindDevice(path, &dummy);
        if (dev && dev->is_mounted) {
                retVal = yaffs_get_n_free_chunks(dev);
                retVal *= dev->data_bytes_per_chunk;
@@ -2677,24 +3204,36 @@ loff_t yaffs_freespace(const YCHAR *path)
        return retVal;
 }
 
-loff_t yaffs_totalspace(const YCHAR *path)
+Y_LOFF_T yaffs_freespace_reldev(struct yaffs_dev *dev)
 {
-       loff_t retVal = -1;
-       struct yaffs_dev *dev = NULL;
+       return yaffs_freespace_common(dev, NULL);
+}
+
+Y_LOFF_T yaffs_freespace(const YCHAR *path)
+{
+       return yaffs_freespace_common(NULL, path);
+}
+
+Y_LOFF_T yaffs_totalspace_common(struct yaffs_dev *dev, const YCHAR *path)
+{
+       Y_LOFF_T retVal = -1;
        YCHAR *dummy;
 
-       if (!path) {
-               yaffsfs_SetError(-EFAULT);
-               return -1;
-       }
+       if (!dev) {
+               if (yaffsfs_CheckMemRegion(path, 0, 0) < 0) {
+                       yaffsfs_SetError(-EFAULT);
+                       return -1;
+               }
 
-       if (yaffsfs_CheckPath(path) < 0) {
-               yaffsfs_SetError(-ENAMETOOLONG);
-               return -1;
+               if (yaffsfs_CheckPath(path) < 0) {
+                       yaffsfs_SetError(-ENAMETOOLONG);
+                       return -1;
+               }
        }
 
        yaffsfs_Lock();
-       dev = yaffsfs_FindDevice(path, &dummy);
+       if (!dev)
+               dev = yaffsfs_FindDevice(path, &dummy);
        if (dev && dev->is_mounted) {
                retVal = (dev->param.end_block - dev->param.start_block + 1) -
                    dev->param.n_reserved_blocks;
@@ -2708,24 +3247,36 @@ loff_t yaffs_totalspace(const YCHAR *path)
        return retVal;
 }
 
-int yaffs_inodecount(const YCHAR *path)
+Y_LOFF_T yaffs_totalspace_reldev(struct yaffs_dev *dev)
 {
-       loff_t retVal = -1;
-       struct yaffs_dev *dev = NULL;
+       return yaffs_totalspace_common(dev, NULL);
+}
+
+Y_LOFF_T yaffs_totalspace(const YCHAR *path)
+{
+       return yaffs_totalspace_common(NULL, path);
+}
+
+int yaffs_inodecount_common(struct yaffs_dev *dev, const YCHAR *path)
+{
+       Y_LOFF_T retVal = -1;
        YCHAR *dummy;
 
-       if (!path) {
-               yaffsfs_SetError(-EFAULT);
-               return -1;
-       }
+       if (!dev) {
+               if (yaffsfs_CheckMemRegion(path, 0, 0) < 0) {
+                       yaffsfs_SetError(-EFAULT);
+                       return -1;
+               }
 
-       if (yaffsfs_CheckPath(path) < 0) {
-               yaffsfs_SetError(-ENAMETOOLONG);
-               return -1;
+               if (yaffsfs_CheckPath(path) < 0) {
+                       yaffsfs_SetError(-ENAMETOOLONG);
+                       return -1;
+               }
        }
 
        yaffsfs_Lock();
-       dev = yaffsfs_FindDevice(path, &dummy);
+       if (!dev)
+               dev = yaffsfs_FindDevice(path, &dummy);
        if (dev && dev->is_mounted) {
                int n_obj = dev->n_obj;
                if (n_obj > dev->n_hardlinks)
@@ -2739,6 +3290,16 @@ int yaffs_inodecount(const YCHAR *path)
        return retVal;
 }
 
+int yaffs_inodecount_reldev(struct yaffs_dev *dev)
+{
+       return yaffs_inodecount_common(dev, NULL);
+}
+
+int yaffs_inodecount(const YCHAR *path)
+{
+       return yaffs_inodecount_common(NULL, path);
+}
+
 void yaffs_add_device(struct yaffs_dev *dev)
 {
        struct list_head *cfg;
@@ -2756,6 +3317,8 @@ void yaffs_add_device(struct yaffs_dev *dev)
                INIT_LIST_HEAD(&dev->dev_list);
 
        list_add(&dev->dev_list, &yaffsfs_deviceList);
+
+
 }
 
 void yaffs_remove_device(struct yaffs_dev *dev)
@@ -2789,7 +3352,7 @@ struct yaffs_dev *yaffs_next_dev(void)
 
 static struct list_head search_contexts;
 
-static void yaffsfs_SetDirRewound(struct yaffsfs_DirSearchContxt *dsc)
+static void yaffsfs_SetDirRewound(struct yaffsfs_DirSearchContext *dsc)
 {
        if (dsc &&
            dsc->dirObj &&
@@ -2809,7 +3372,7 @@ static void yaffsfs_SetDirRewound(struct yaffsfs_DirSearchContxt *dsc)
        }
 }
 
-static void yaffsfs_DirAdvance(struct yaffsfs_DirSearchContxt *dsc)
+static void yaffsfs_DirAdvance(struct yaffsfs_DirSearchContext *dsc)
 {
        if (dsc &&
            dsc->dirObj &&
@@ -2837,7 +3400,7 @@ static void yaffsfs_RemoveObjectCallback(struct yaffs_obj *obj)
 {
 
        struct list_head *i;
-       struct yaffsfs_DirSearchContxt *dsc;
+       struct yaffsfs_DirSearchContext *dsc;
 
        /* if search contexts not initilised then skip */
        if (!search_contexts.next)
@@ -2849,7 +3412,7 @@ static void yaffsfs_RemoveObjectCallback(struct yaffs_obj *obj)
         */
        list_for_each(i, &search_contexts) {
                if (i) {
-                       dsc = list_entry(i, struct yaffsfs_DirSearchContxt,
+                       dsc = list_entry(i, struct yaffsfs_DirSearchContext,
                                         others);
                        if (dsc->nextReturn == obj)
                                yaffsfs_DirAdvance(dsc);
@@ -2858,15 +3421,16 @@ static void yaffsfs_RemoveObjectCallback(struct yaffs_obj *obj)
 
 }
 
-yaffs_DIR *yaffs_opendir(const YCHAR *dirname)
+static yaffs_DIR *yaffsfs_opendir_reldir_no_lock(struct yaffs_obj *reldir,
+                                       const YCHAR *dirname)
 {
        yaffs_DIR *dir = NULL;
        struct yaffs_obj *obj = NULL;
-       struct yaffsfs_DirSearchContxt *dsc = NULL;
+       struct yaffsfs_DirSearchContext *dsc = NULL;
        int notDir = 0;
        int loop = 0;
 
-       if (!dirname) {
+       if (yaffsfs_CheckMemRegion(dirname, 0, 0) < 0) {
                yaffsfs_SetError(-EFAULT);
                return NULL;
        }
@@ -2876,9 +3440,8 @@ yaffs_DIR *yaffs_opendir(const YCHAR *dirname)
                return NULL;
        }
 
-       yaffsfs_Lock();
-
-       obj = yaffsfs_FindObject(NULL, dirname, 0, 1, NULL, &notDir, &loop);
+       obj = yaffsfs_FindObject(reldir, dirname, 0, 1, NULL, &notDir, &loop);
+       obj = yaffsfs_FollowLink(obj, 0, &loop);
 
        if (!obj && notDir)
                yaffsfs_SetError(-ENOTDIR);
@@ -2899,7 +3462,7 @@ yaffs_DIR *yaffs_opendir(const YCHAR *dirname)
                dir = (yaffs_DIR *) dsc;
 
                if (dsc) {
-                       memset(dsc, 0, sizeof(struct yaffsfs_DirSearchContxt));
+                       memset(dsc, 0, sizeof(struct yaffsfs_DirSearchContext));
                        dsc->inUse = 1;
                        dsc->dirObj = obj;
                        yaffs_strncpy(dsc->name, dirname, NAME_MAX);
@@ -2911,21 +3474,37 @@ yaffs_DIR *yaffs_opendir(const YCHAR *dirname)
                        list_add(&dsc->others, &search_contexts);
                        yaffsfs_SetDirRewound(dsc);
                }
-
        }
+       return dir;
+}
 
+yaffs_DIR *yaffs_opendir_reldir(struct yaffs_obj *reldir, const YCHAR *dirname)
+{
+       yaffs_DIR *ret;
+
+       yaffsfs_Lock();
+       ret = yaffsfs_opendir_reldir_no_lock(reldir, dirname);
        yaffsfs_Unlock();
+       return ret;
+}
 
-       return dir;
+yaffs_DIR *yaffs_opendir_reldev(struct yaffs_dev *dev, const YCHAR *dirname)
+{
+       return yaffs_opendir_reldir(ROOT_DIR(dev), dirname);
 }
 
-struct yaffs_dirent *yaffs_readdir(yaffs_DIR * dirp)
+yaffs_DIR *yaffs_opendir(const YCHAR *dirname)
 {
-       struct yaffsfs_DirSearchContxt *dsc;
+       return yaffs_opendir_reldir(NULL, dirname);
+}
+
+struct yaffs_dirent *yaffsfs_readdir_no_lock(yaffs_DIR * dirp)
+{
+       struct yaffsfs_DirSearchContext *dsc;
        struct yaffs_dirent *retVal = NULL;
 
-       dsc = (struct yaffsfs_DirSearchContxt *) dirp;
-       yaffsfs_Lock();
+       dsc = (struct yaffsfs_DirSearchContext *) dirp;
+
 
        if (dsc && dsc->inUse) {
                yaffsfs_SetError(0);
@@ -2948,46 +3527,94 @@ struct yaffs_dirent *yaffs_readdir(yaffs_DIR * dirp)
        } else
                yaffsfs_SetError(-EBADF);
 
+       return retVal;
+
+}
+struct yaffs_dirent *yaffs_readdir(yaffs_DIR * dirp)
+{
+       struct yaffs_dirent *ret;
+
+       yaffsfs_Lock();
+       ret = yaffsfs_readdir_no_lock(dirp);
        yaffsfs_Unlock();
+       return ret;
+}
 
-       return retVal;
+static void yaffsfs_rewinddir_no_lock(yaffs_DIR *dirp)
+{
+       struct yaffsfs_DirSearchContext *dsc;
+
+       dsc = (struct yaffsfs_DirSearchContext *) dirp;
+
+       if (yaffsfs_CheckMemRegion(dirp, sizeof(*dsc), 0) < 0)
+               return;
+
+       yaffsfs_SetDirRewound(dsc);
 
 }
 
 void yaffs_rewinddir(yaffs_DIR *dirp)
 {
-       struct yaffsfs_DirSearchContxt *dsc;
+       yaffsfs_Lock();
+       yaffsfs_rewinddir_no_lock(dirp);
+       yaffsfs_Unlock();
+}
 
-       dsc = (struct yaffsfs_DirSearchContxt *) dirp;
+struct yaffs_dirent *yaffs_readdir_fd(int fd)
+{
+       struct yaffs_dirent *ret = NULL;
+       struct yaffsfs_FileDes *f;
 
        yaffsfs_Lock();
+       f = yaffsfs_HandleToFileDes(fd);
+       if(f && f->isDir)
+               ret = yaffsfs_readdir_no_lock(f->v.dir);
+       yaffsfs_Unlock();
+       return ret;
+}
 
-       yaffsfs_SetDirRewound(dsc);
+void yaffs_rewinddir_fd(int fd)
+{
+       struct yaffsfs_FileDes *f;
 
+       yaffsfs_Lock();
+       f = yaffsfs_HandleToFileDes(fd);
+       if(f && f->isDir)
+               yaffsfs_rewinddir_no_lock(f->v.dir);
        yaffsfs_Unlock();
 }
 
-int yaffs_closedir(yaffs_DIR *dirp)
+
+static int yaffsfs_closedir_no_lock(yaffs_DIR *dirp)
 {
-       struct yaffsfs_DirSearchContxt *dsc;
+       struct yaffsfs_DirSearchContext *dsc;
 
-       dsc = (struct yaffsfs_DirSearchContxt *) dirp;
+       dsc = (struct yaffsfs_DirSearchContext *) dirp;
 
-       if (!dsc) {
+       if (yaffsfs_CheckMemRegion(dirp, sizeof(*dsc), 0) < 0) {
                yaffsfs_SetError(-EFAULT);
                return -1;
        }
 
-       yaffsfs_Lock();
        dsc->inUse = 0;
        list_del(&dsc->others); /* unhook from list */
-       yaffsfs_Unlock();
+
        return 0;
 }
+int yaffs_closedir(yaffs_DIR *dirp)
+{
+       int ret;
+
+       yaffsfs_Lock();
+       ret = yaffsfs_closedir_no_lock(dirp);
+       yaffsfs_Unlock();
+       return ret;
+}
 
 /* End of directory stuff */
 
-int yaffs_symlink(const YCHAR *oldpath, const YCHAR *newpath)
+int yaffs_symlink_reldir(struct yaffs_obj *reldir,
+                      const YCHAR *oldpath, const YCHAR *newpath)
 {
        struct yaffs_obj *parent = NULL;
        struct yaffs_obj *obj;
@@ -2997,7 +3624,8 @@ int yaffs_symlink(const YCHAR *oldpath, const YCHAR *newpath)
        int notDir = 0;
        int loop = 0;
 
-       if (!oldpath || !newpath) {
+       if (yaffsfs_CheckMemRegion(oldpath, 0, 0) < 0 ||
+           yaffsfs_CheckMemRegion(newpath, 0, 0) < 0) {
                yaffsfs_SetError(-EFAULT);
                return -1;
        }
@@ -3008,7 +3636,7 @@ int yaffs_symlink(const YCHAR *oldpath, const YCHAR *newpath)
        }
 
        yaffsfs_Lock();
-       parent = yaffsfs_FindDirectory(NULL, newpath, &name, 0, &notDir, &loop);
+       parent = yaffsfs_FindDirectory(reldir, newpath, &name, 0, &notDir, &loop);
        if (!parent && notDir)
                yaffsfs_SetError(-ENOTDIR);
        else if (loop)
@@ -3023,8 +3651,8 @@ int yaffs_symlink(const YCHAR *oldpath, const YCHAR *newpath)
                obj = yaffs_create_symlink(parent, name, mode, 0, 0, oldpath);
                if (obj)
                        retVal = 0;
-               else if (yaffsfs_FindObject
-                        (NULL, newpath, 0, 0, NULL, NULL, NULL))
+               else if (yaffsfs_FindObject(reldir, newpath, 0, 0,
+                                               NULL, NULL, NULL))
                        yaffsfs_SetError(-EEXIST);
                else
                        yaffsfs_SetError(-ENOSPC);
@@ -3035,8 +3663,13 @@ int yaffs_symlink(const YCHAR *oldpath, const YCHAR *newpath)
        return retVal;
 
 }
+int yaffs_symlink(const YCHAR *oldpath, const YCHAR *newpath)
+{
+       return yaffs_symlink_reldir(NULL, oldpath, newpath);
+}
 
-int yaffs_readlink(const YCHAR *path, YCHAR *buf, int bufsiz)
+int yaffs_readlink_reldir(struct yaffs_obj *reldir,const YCHAR *path,
+                       YCHAR *buf, int bufsiz)
 {
        struct yaffs_obj *obj = NULL;
        struct yaffs_obj *dir = NULL;
@@ -3044,14 +3677,15 @@ int yaffs_readlink(const YCHAR *path, YCHAR *buf, int bufsiz)
        int notDir = 0;
        int loop = 0;
 
-       if (!path || !buf) {
+       if (yaffsfs_CheckMemRegion(path, 0, 0) < 0 ||
+           yaffsfs_CheckMemRegion(buf, bufsiz, 1) < 0) {
                yaffsfs_SetError(-EFAULT);
                return -1;
        }
 
        yaffsfs_Lock();
 
-       obj = yaffsfs_FindObject(NULL, path, 0, 1, &dir, &notDir, &loop);
+       obj = yaffsfs_FindObject(reldir, path, 0, 1, &dir, &notDir, &loop);
 
        if (!dir && notDir)
                yaffsfs_SetError(-ENOTDIR);
@@ -3070,8 +3704,13 @@ int yaffs_readlink(const YCHAR *path, YCHAR *buf, int bufsiz)
        yaffsfs_Unlock();
        return retVal;
 }
+int yaffs_readlink(const YCHAR *path, YCHAR *buf, int bufsiz)
+{
+       return yaffs_readlink_reldir(NULL, path, buf, bufsiz);
+}
 
-int yaffs_link(const YCHAR *oldpath, const YCHAR *linkpath)
+int yaffs_link_reldir(struct yaffs_obj *reldir,
+                       const YCHAR *oldpath, const YCHAR *linkpath)
 {
        /* Creates a link called newpath to existing oldpath */
        struct yaffs_obj *obj = NULL;
@@ -3085,7 +3724,8 @@ int yaffs_link(const YCHAR *oldpath, const YCHAR *linkpath)
        int lnkLoop = 0;
        YCHAR *newname;
 
-       if (!oldpath || !linkpath) {
+       if (yaffsfs_CheckMemRegion(oldpath, 0, 0) < 0 ||
+           yaffsfs_CheckMemRegion(linkpath, 0, 0) < 0) {
                yaffsfs_SetError(-EFAULT);
                return -1;
        }
@@ -3097,10 +3737,10 @@ int yaffs_link(const YCHAR *oldpath, const YCHAR *linkpath)
 
        yaffsfs_Lock();
 
-       obj = yaffsfs_FindObject(NULL, oldpath, 0, 1,
+       obj = yaffsfs_FindObject(reldir, oldpath, 0, 1,
                                 &obj_dir, &notDirObj, &objLoop);
-       lnk = yaffsfs_FindObject(NULL, linkpath, 0, 0, NULL, NULL, NULL);
-       lnk_dir = yaffsfs_FindDirectory(NULL, linkpath, &newname,
+       lnk = yaffsfs_FindObject(reldir, linkpath, 0, 0, NULL, NULL, NULL);
+       lnk_dir = yaffsfs_FindDirectory(reldir, linkpath, &newname,
                                        0, &notDirLnk, &lnkLoop);
 
        if ((!obj_dir && notDirObj) || (!lnk_dir && notDirLnk))
@@ -3134,17 +3774,33 @@ int yaffs_link(const YCHAR *oldpath, const YCHAR *linkpath)
 
        return retVal;
 }
+int yaffs_link(const YCHAR *oldpath, const YCHAR *linkpath)
+{
+       return yaffs_link_reldir(NULL, oldpath, linkpath);
+}
 
-int yaffs_mknod(const YCHAR *pathname, mode_t mode, dev_t dev)
+int yaffs_mknod_reldir(struct yaffs_obj *reldir, const YCHAR *pathname,
+                    mode_t mode, dev_t dev_val)
 {
-       pathname = pathname;
-       mode = mode;
-       dev = dev;
+       (void) pathname;
+       (void) mode;
+       (void) dev_val;
+       (void) reldir;
 
        yaffsfs_SetError(-EINVAL);
        return -1;
 }
 
+int yaffs_mknod_reldev(struct yaffs_dev *dev, const YCHAR *pathname, mode_t mode, dev_t dev_val)
+{
+       return yaffs_mknod_reldir(ROOT_DIR(dev), pathname, mode, dev_val);
+}
+
+int yaffs_mknod(const YCHAR *pathname, mode_t mode, dev_t dev_val)
+{
+       return yaffs_mknod_reldir(NULL, pathname, mode, dev_val);
+}
+
 /*
  * D E B U G   F U N C T I O N S
  */
@@ -3153,11 +3809,11 @@ int yaffs_mknod(const YCHAR *pathname, mode_t mode, dev_t dev)
  * yaffs_n_handles()
  * Returns number of handles attached to the object
  */
-int yaffs_n_handles(const YCHAR *path)
+int yaffs_n_handles_reldir(struct yaffs_obj *reldir, const YCHAR *path)
 {
        struct yaffs_obj *obj;
 
-       if (!path) {
+       if (yaffsfs_CheckMemRegion(path, 0, 0) < 0) {
                yaffsfs_SetError(-EFAULT);
                return -1;
        }
@@ -3167,7 +3823,7 @@ int yaffs_n_handles(const YCHAR *path)
                return -1;
        }
 
-       obj = yaffsfs_FindObject(NULL, path, 0, 1, NULL, NULL, NULL);
+       obj = yaffsfs_FindObject(reldir, path, 0, 1, NULL, NULL, NULL);
 
        if (obj)
                return yaffsfs_CountHandles(obj);
@@ -3175,6 +3831,11 @@ int yaffs_n_handles(const YCHAR *path)
                return -1;
 }
 
+int yaffs_n_handles(const YCHAR *path)
+{
+       return yaffs_n_handles_reldir(NULL, path);
+}
+
 int yaffs_get_error(void)
 {
        return yaffsfs_GetLastError();
@@ -3186,17 +3847,20 @@ int yaffs_set_error(int error)
        return 0;
 }
 
-int yaffs_dump_dev(const YCHAR *path)
+int yaffs_dump_dev_reldir(struct yaffs_obj *reldir, const YCHAR *path)
 {
 #if 1
-       path = path;
+       (void) path;
+       (void) reldir;
 #else
        YCHAR *rest;
 
-       struct yaffs_obj *obj = yaffsfs_FindRoot(path, &rest);
 
-       if (obj) {
-               struct yaffs_dev *dev = obj->my_dev;
+       if (!reldir)
+               reldir = yaffsfs_FindRoot(path, &rest);
+
+       if (reldir) {
+               struct yaffs_dev *dev = reldir->my_dev;
 
                printf("\n"
                       "n_page_writes.......... %d\n"
@@ -3216,3 +3880,8 @@ int yaffs_dump_dev(const YCHAR *path)
 #endif
        return 0;
 }
+
+int yaffs_dump_dev(const YCHAR *path)
+{
+       return yaffs_dump_dev_reldir(NULL, path);
+}