[PATCH] more VFAT_IOCTL_READDIR_BOTH/_SHORT ioctl fix (1/11)

From: OGAWA Hirofumi (hirofumi@mail.parknet.co.jp)
Date: Mon Jul 21 2003 - 10:50:27 EST


This fixes

    - check the ioctl cmd first
    - check the directory whether it's an already dead

Please apply.

 fs/fat/dir.c | 35 +++++++++++++++++++++--------------
 1 files changed, 21 insertions(+), 14 deletions(-)

diff -puN fs/fat/dir.c~fat_more-ioctl-fix fs/fat/dir.c
--- linux-2.6.0-test1/fs/fat/dir.c~fat_more-ioctl-fix 2003-07-21 02:48:09.000000000 +0900
+++ linux-2.6.0-test1-hirofumi/fs/fat/dir.c 2003-07-21 02:48:09.000000000 +0900
@@ -647,9 +647,23 @@ int fat_dir_ioctl(struct inode * inode,
                   unsigned int cmd, unsigned long arg)
 {
         struct fat_ioctl_filldir_callback buf;
- struct dirent __user *d1 = (struct dirent *)arg;
+ struct dirent __user *d1;
         int ret, shortname, both;
 
+ switch (cmd) {
+ case VFAT_IOCTL_READDIR_SHORT:
+ shortname = 1;
+ both = 1;
+ break;
+ case VFAT_IOCTL_READDIR_BOTH:
+ shortname = 0;
+ both = 1;
+ break;
+ default:
+ return -EINVAL;
+ }
+
+ d1 = (struct dirent *)arg;
         if (!access_ok(VERIFY_WRITE, d1, sizeof(struct dirent[2])))
                 return -EFAULT;
         /*
@@ -662,20 +676,13 @@ int fat_dir_ioctl(struct inode * inode,
 
         buf.dirent = d1;
         buf.result = 0;
- switch (cmd) {
- case VFAT_IOCTL_READDIR_SHORT:
- shortname = 1;
- both = 1;
- break;
- case VFAT_IOCTL_READDIR_BOTH:
- shortname = 0;
- both = 1;
- break;
- default:
- return -EINVAL;
+ down(&inode->i_sem);
+ ret = -ENOENT;
+ if (!IS_DEADDIR(inode)) {
+ ret = fat_readdirx(inode, filp, &buf, fat_ioctl_filldir,
+ shortname, both);
         }
- ret = fat_readdirx(inode, filp, &buf, fat_ioctl_filldir,
- shortname, both);
+ up(&inode->i_sem);
         if (ret >= 0)
                 ret = buf.result;
         return ret;

_

-- 
OGAWA Hirofumi <hirofumi@mail.parknet.co.jp>
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/



This archive was generated by hypermail 2b29 : Wed Jul 23 2003 - 22:00:43 EST