[patch] compat_ioctl should return -ENOTTY for some failures

From: Chuck Ebbert
Date: Mon Feb 12 2007 - 18:16:57 EST


In many cases compat_ioctl() should return -ENOTTY.

Recent changes in this area seem to be breaking some
Wine apps. I'm not proposing this for inclusion (yet,)
I just want to know if I've hit the right places.

Index: 2.6.20-d390/fs/compat.c
===================================================================
--- 2.6.20-d390.orig/fs/compat.c 2007-02-12 13:24:20.000000000 -0500
+++ 2.6.20-d390/fs/compat.c 2007-02-12 16:16:08.000000000 -0500
@@ -439,15 +439,10 @@
}

if (S_ISSOCK(filp->f_path.dentry->d_inode->i_mode) &&
- cmd >= SIOCDEVPRIVATE && cmd <= (SIOCDEVPRIVATE + 15)) {
+ cmd >= SIOCDEVPRIVATE && cmd <= (SIOCDEVPRIVATE + 15))
error = siocdevprivate_ioctl(fd, cmd, arg);
- } else {
- static int count;
-
- if (++count <= 50)
- compat_ioctl_error(filp, fd, cmd, arg);
- error = -EINVAL;
- }
+ else
+ error = -ENOTTY;

goto out_fput;

Index: 2.6.20-d390/fs/ioctl.c
===================================================================
--- 2.6.20-d390.orig/fs/ioctl.c 2007-02-12 13:24:20.000000000 -0500
+++ 2.6.20-d390/fs/ioctl.c 2007-02-12 16:14:29.000000000 -0500
@@ -27,7 +27,7 @@
if (filp->f_op->unlocked_ioctl) {
error = filp->f_op->unlocked_ioctl(filp, cmd, arg);
if (error == -ENOIOCTLCMD)
- error = -EINVAL;
+ error = -ENOTTY;
goto out;
} else if (filp->f_op->ioctl) {
lock_kernel();