linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] more VFAT_IOCTL_READDIR_BOTH/_SHORT ioctl fix (1/11)
@ 2003-07-21 15:50 OGAWA Hirofumi
  0 siblings, 0 replies; only message in thread
From: OGAWA Hirofumi @ 2003-07-21 15:50 UTC (permalink / raw)
  To: Linus Torvalds; +Cc: linux-kernel

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>

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2003-07-21 15:36 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2003-07-21 15:50 [PATCH] more VFAT_IOCTL_READDIR_BOTH/_SHORT ioctl fix (1/11) OGAWA Hirofumi

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).