Commit 66cf191f authored by Al Viro's avatar Al Viro

compat_ioctl: don't pass fd around when not needed

Signed-off-by: default avatarAl Viro <viro@zeniv.linux.org.uk>
parent b4341721
...@@ -58,6 +58,8 @@ ...@@ -58,6 +58,8 @@
#include <linux/atalk.h> #include <linux/atalk.h>
#include <linux/gfp.h> #include <linux/gfp.h>
#include "internal.h"
#include <net/bluetooth/bluetooth.h> #include <net/bluetooth/bluetooth.h>
#include <net/bluetooth/hci_sock.h> #include <net/bluetooth/hci_sock.h>
#include <net/bluetooth/rfcomm.h> #include <net/bluetooth/rfcomm.h>
...@@ -115,8 +117,7 @@ ...@@ -115,8 +117,7 @@
#include <asm/fbio.h> #include <asm/fbio.h>
#endif #endif
static int do_ioctl(struct file *file, unsigned int fd, static int do_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
unsigned int cmd, unsigned long arg)
{ {
int err; int err;
...@@ -124,10 +125,10 @@ static int do_ioctl(struct file *file, unsigned int fd, ...@@ -124,10 +125,10 @@ static int do_ioctl(struct file *file, unsigned int fd,
if (err) if (err)
return err; return err;
return do_vfs_ioctl(file, fd, cmd, arg); return vfs_ioctl(file, cmd, arg);
} }
static int w_long(struct file *file, unsigned int fd, static int w_long(struct file *file,
unsigned int cmd, compat_ulong_t __user *argp) unsigned int cmd, compat_ulong_t __user *argp)
{ {
mm_segment_t old_fs = get_fs(); mm_segment_t old_fs = get_fs();
...@@ -135,7 +136,7 @@ static int w_long(struct file *file, unsigned int fd, ...@@ -135,7 +136,7 @@ static int w_long(struct file *file, unsigned int fd,
unsigned long val; unsigned long val;
set_fs (KERNEL_DS); set_fs (KERNEL_DS);
err = do_ioctl(file, fd, cmd, (unsigned long)&val); err = do_ioctl(file, cmd, (unsigned long)&val);
set_fs (old_fs); set_fs (old_fs);
if (!err && put_user(val, argp)) if (!err && put_user(val, argp))
return -EFAULT; return -EFAULT;
...@@ -151,7 +152,7 @@ struct compat_video_event { ...@@ -151,7 +152,7 @@ struct compat_video_event {
} u; } u;
}; };
static int do_video_get_event(struct file *file, unsigned int fd, static int do_video_get_event(struct file *file,
unsigned int cmd, struct compat_video_event __user *up) unsigned int cmd, struct compat_video_event __user *up)
{ {
struct video_event kevent; struct video_event kevent;
...@@ -159,7 +160,7 @@ static int do_video_get_event(struct file *file, unsigned int fd, ...@@ -159,7 +160,7 @@ static int do_video_get_event(struct file *file, unsigned int fd,
int err; int err;
set_fs(KERNEL_DS); set_fs(KERNEL_DS);
err = do_ioctl(file, fd, cmd, (unsigned long) &kevent); err = do_ioctl(file, cmd, (unsigned long) &kevent);
set_fs(old_fs); set_fs(old_fs);
if (!err) { if (!err) {
...@@ -181,7 +182,7 @@ struct compat_video_still_picture { ...@@ -181,7 +182,7 @@ struct compat_video_still_picture {
int32_t size; int32_t size;
}; };
static int do_video_stillpicture(struct file *file, unsigned int fd, static int do_video_stillpicture(struct file *file,
unsigned int cmd, struct compat_video_still_picture __user *up) unsigned int cmd, struct compat_video_still_picture __user *up)
{ {
struct video_still_picture __user *up_native; struct video_still_picture __user *up_native;
...@@ -202,7 +203,7 @@ static int do_video_stillpicture(struct file *file, unsigned int fd, ...@@ -202,7 +203,7 @@ static int do_video_stillpicture(struct file *file, unsigned int fd,
if (err) if (err)
return -EFAULT; return -EFAULT;
err = do_ioctl(file, fd, cmd, (unsigned long) up_native); err = do_ioctl(file, cmd, (unsigned long) up_native);
return err; return err;
} }
...@@ -212,7 +213,7 @@ struct compat_video_spu_palette { ...@@ -212,7 +213,7 @@ struct compat_video_spu_palette {
compat_uptr_t palette; compat_uptr_t palette;
}; };
static int do_video_set_spu_palette(struct file *file, unsigned int fd, static int do_video_set_spu_palette(struct file *file,
unsigned int cmd, struct compat_video_spu_palette __user *up) unsigned int cmd, struct compat_video_spu_palette __user *up)
{ {
struct video_spu_palette __user *up_native; struct video_spu_palette __user *up_native;
...@@ -230,7 +231,7 @@ static int do_video_set_spu_palette(struct file *file, unsigned int fd, ...@@ -230,7 +231,7 @@ static int do_video_set_spu_palette(struct file *file, unsigned int fd,
if (err) if (err)
return -EFAULT; return -EFAULT;
err = do_ioctl(file, fd, cmd, (unsigned long) up_native); err = do_ioctl(file, cmd, (unsigned long) up_native);
return err; return err;
} }
...@@ -288,7 +289,7 @@ static int sg_build_iovec(sg_io_hdr_t __user *sgio, void __user *dxferp, u16 iov ...@@ -288,7 +289,7 @@ static int sg_build_iovec(sg_io_hdr_t __user *sgio, void __user *dxferp, u16 iov
return 0; return 0;
} }
static int sg_ioctl_trans(struct file *file, unsigned int fd, unsigned int cmd, static int sg_ioctl_trans(struct file *file, unsigned int cmd,
sg_io_hdr32_t __user *sgio32) sg_io_hdr32_t __user *sgio32)
{ {
sg_io_hdr_t __user *sgio; sg_io_hdr_t __user *sgio;
...@@ -301,7 +302,7 @@ static int sg_ioctl_trans(struct file *file, unsigned int fd, unsigned int cmd, ...@@ -301,7 +302,7 @@ static int sg_ioctl_trans(struct file *file, unsigned int fd, unsigned int cmd,
if (get_user(interface_id, &sgio32->interface_id)) if (get_user(interface_id, &sgio32->interface_id))
return -EFAULT; return -EFAULT;
if (interface_id != 'S') if (interface_id != 'S')
return do_ioctl(file, fd, cmd, (unsigned long)sgio32); return do_ioctl(file, cmd, (unsigned long)sgio32);
if (get_user(iovec_count, &sgio32->iovec_count)) if (get_user(iovec_count, &sgio32->iovec_count))
return -EFAULT; return -EFAULT;
...@@ -361,7 +362,7 @@ static int sg_ioctl_trans(struct file *file, unsigned int fd, unsigned int cmd, ...@@ -361,7 +362,7 @@ static int sg_ioctl_trans(struct file *file, unsigned int fd, unsigned int cmd,
if (put_user(compat_ptr(data), &sgio->usr_ptr)) if (put_user(compat_ptr(data), &sgio->usr_ptr))
return -EFAULT; return -EFAULT;
err = do_ioctl(file, fd, cmd, (unsigned long) sgio); err = do_ioctl(file, cmd, (unsigned long) sgio);
if (err >= 0) { if (err >= 0) {
void __user *datap; void __user *datap;
...@@ -392,13 +393,13 @@ struct compat_sg_req_info { /* used by SG_GET_REQUEST_TABLE ioctl() */ ...@@ -392,13 +393,13 @@ struct compat_sg_req_info { /* used by SG_GET_REQUEST_TABLE ioctl() */
int unused; int unused;
}; };
static int sg_grt_trans(struct file *file, unsigned int fd, static int sg_grt_trans(struct file *file,
unsigned int cmd, struct compat_sg_req_info __user *o) unsigned int cmd, struct compat_sg_req_info __user *o)
{ {
int err, i; int err, i;
sg_req_info_t __user *r; sg_req_info_t __user *r;
r = compat_alloc_user_space(sizeof(sg_req_info_t)*SG_MAX_QUEUE); r = compat_alloc_user_space(sizeof(sg_req_info_t)*SG_MAX_QUEUE);
err = do_ioctl(file, fd, cmd, (unsigned long)r); err = do_ioctl(file, cmd, (unsigned long)r);
if (err < 0) if (err < 0)
return err; return err;
for (i = 0; i < SG_MAX_QUEUE; i++) { for (i = 0; i < SG_MAX_QUEUE; i++) {
...@@ -424,7 +425,7 @@ struct sock_fprog32 { ...@@ -424,7 +425,7 @@ struct sock_fprog32 {
#define PPPIOCSPASS32 _IOW('t', 71, struct sock_fprog32) #define PPPIOCSPASS32 _IOW('t', 71, struct sock_fprog32)
#define PPPIOCSACTIVE32 _IOW('t', 70, struct sock_fprog32) #define PPPIOCSACTIVE32 _IOW('t', 70, struct sock_fprog32)
static int ppp_sock_fprog_ioctl_trans(struct file *file, unsigned int fd, static int ppp_sock_fprog_ioctl_trans(struct file *file,
unsigned int cmd, struct sock_fprog32 __user *u_fprog32) unsigned int cmd, struct sock_fprog32 __user *u_fprog32)
{ {
struct sock_fprog __user *u_fprog64 = compat_alloc_user_space(sizeof(struct sock_fprog)); struct sock_fprog __user *u_fprog64 = compat_alloc_user_space(sizeof(struct sock_fprog));
...@@ -447,7 +448,7 @@ static int ppp_sock_fprog_ioctl_trans(struct file *file, unsigned int fd, ...@@ -447,7 +448,7 @@ static int ppp_sock_fprog_ioctl_trans(struct file *file, unsigned int fd,
else else
cmd = PPPIOCSACTIVE; cmd = PPPIOCSACTIVE;
return do_ioctl(file, fd, cmd, (unsigned long) u_fprog64); return do_ioctl(file, cmd, (unsigned long) u_fprog64);
} }
struct ppp_option_data32 { struct ppp_option_data32 {
...@@ -463,7 +464,7 @@ struct ppp_idle32 { ...@@ -463,7 +464,7 @@ struct ppp_idle32 {
}; };
#define PPPIOCGIDLE32 _IOR('t', 63, struct ppp_idle32) #define PPPIOCGIDLE32 _IOR('t', 63, struct ppp_idle32)
static int ppp_gidle(struct file *file, unsigned int fd, unsigned int cmd, static int ppp_gidle(struct file *file, unsigned int cmd,
struct ppp_idle32 __user *idle32) struct ppp_idle32 __user *idle32)
{ {
struct ppp_idle __user *idle; struct ppp_idle __user *idle;
...@@ -472,7 +473,7 @@ static int ppp_gidle(struct file *file, unsigned int fd, unsigned int cmd, ...@@ -472,7 +473,7 @@ static int ppp_gidle(struct file *file, unsigned int fd, unsigned int cmd,
idle = compat_alloc_user_space(sizeof(*idle)); idle = compat_alloc_user_space(sizeof(*idle));
err = do_ioctl(file, fd, PPPIOCGIDLE, (unsigned long) idle); err = do_ioctl(file, PPPIOCGIDLE, (unsigned long) idle);
if (!err) { if (!err) {
if (get_user(xmit, &idle->xmit_idle) || if (get_user(xmit, &idle->xmit_idle) ||
...@@ -484,7 +485,7 @@ static int ppp_gidle(struct file *file, unsigned int fd, unsigned int cmd, ...@@ -484,7 +485,7 @@ static int ppp_gidle(struct file *file, unsigned int fd, unsigned int cmd,
return err; return err;
} }
static int ppp_scompress(struct file *file, unsigned int fd, unsigned int cmd, static int ppp_scompress(struct file *file, unsigned int cmd,
struct ppp_option_data32 __user *odata32) struct ppp_option_data32 __user *odata32)
{ {
struct ppp_option_data __user *odata; struct ppp_option_data __user *odata;
...@@ -504,7 +505,7 @@ static int ppp_scompress(struct file *file, unsigned int fd, unsigned int cmd, ...@@ -504,7 +505,7 @@ static int ppp_scompress(struct file *file, unsigned int fd, unsigned int cmd,
sizeof(__u32) + sizeof(int))) sizeof(__u32) + sizeof(int)))
return -EFAULT; return -EFAULT;
return do_ioctl(file, fd, PPPIOCSCOMPRESS, (unsigned long) odata); return do_ioctl(file, PPPIOCSCOMPRESS, (unsigned long) odata);
} }
#ifdef CONFIG_BLOCK #ifdef CONFIG_BLOCK
...@@ -524,7 +525,7 @@ struct mtpos32 { ...@@ -524,7 +525,7 @@ struct mtpos32 {
}; };
#define MTIOCPOS32 _IOR('m', 3, struct mtpos32) #define MTIOCPOS32 _IOR('m', 3, struct mtpos32)
static int mt_ioctl_trans(struct file *file, unsigned int fd, static int mt_ioctl_trans(struct file *file,
unsigned int cmd, void __user *argp) unsigned int cmd, void __user *argp)
{ {
mm_segment_t old_fs = get_fs(); mm_segment_t old_fs = get_fs();
...@@ -547,7 +548,7 @@ static int mt_ioctl_trans(struct file *file, unsigned int fd, ...@@ -547,7 +548,7 @@ static int mt_ioctl_trans(struct file *file, unsigned int fd,
break; break;
} }
set_fs (KERNEL_DS); set_fs (KERNEL_DS);
err = do_ioctl(file, fd, kcmd, (unsigned long)karg); err = do_ioctl(file, kcmd, (unsigned long)karg);
set_fs (old_fs); set_fs (old_fs);
if (err) if (err)
return err; return err;
...@@ -618,7 +619,7 @@ struct serial_struct32 { ...@@ -618,7 +619,7 @@ struct serial_struct32 {
compat_int_t reserved[1]; compat_int_t reserved[1];
}; };
static int serial_struct_ioctl(struct file *file, unsigned fd, static int serial_struct_ioctl(struct file *file,
unsigned cmd, struct serial_struct32 __user *ss32) unsigned cmd, struct serial_struct32 __user *ss32)
{ {
typedef struct serial_struct32 SS32; typedef struct serial_struct32 SS32;
...@@ -642,7 +643,7 @@ static int serial_struct_ioctl(struct file *file, unsigned fd, ...@@ -642,7 +643,7 @@ static int serial_struct_ioctl(struct file *file, unsigned fd,
ss.iomap_base = 0UL; ss.iomap_base = 0UL;
} }
set_fs(KERNEL_DS); set_fs(KERNEL_DS);
err = do_ioctl(file, fd, cmd, (unsigned long)&ss); err = do_ioctl(file, cmd, (unsigned long)&ss);
set_fs(oldseg); set_fs(oldseg);
if (cmd == TIOCGSERIAL && err >= 0) { if (cmd == TIOCGSERIAL && err >= 0) {
if (!access_ok(VERIFY_WRITE, ss32, sizeof(SS32))) if (!access_ok(VERIFY_WRITE, ss32, sizeof(SS32)))
...@@ -687,7 +688,7 @@ struct i2c_rdwr_aligned { ...@@ -687,7 +688,7 @@ struct i2c_rdwr_aligned {
struct i2c_msg msgs[0]; struct i2c_msg msgs[0];
}; };
static int do_i2c_rdwr_ioctl(struct file *file, unsigned int fd, static int do_i2c_rdwr_ioctl(struct file *file,
unsigned int cmd, struct i2c_rdwr_ioctl_data32 __user *udata) unsigned int cmd, struct i2c_rdwr_ioctl_data32 __user *udata)
{ {
struct i2c_rdwr_aligned __user *tdata; struct i2c_rdwr_aligned __user *tdata;
...@@ -721,10 +722,10 @@ static int do_i2c_rdwr_ioctl(struct file *file, unsigned int fd, ...@@ -721,10 +722,10 @@ static int do_i2c_rdwr_ioctl(struct file *file, unsigned int fd,
put_user(compat_ptr(datap), &tmsgs[i].buf)) put_user(compat_ptr(datap), &tmsgs[i].buf))
return -EFAULT; return -EFAULT;
} }
return do_ioctl(file, fd, cmd, (unsigned long)tdata); return do_ioctl(file, cmd, (unsigned long)tdata);
} }
static int do_i2c_smbus_ioctl(struct file *file, unsigned int fd, static int do_i2c_smbus_ioctl(struct file *file,
unsigned int cmd, struct i2c_smbus_ioctl_data32 __user *udata) unsigned int cmd, struct i2c_smbus_ioctl_data32 __user *udata)
{ {
struct i2c_smbus_ioctl_data __user *tdata; struct i2c_smbus_ioctl_data __user *tdata;
...@@ -747,7 +748,7 @@ static int do_i2c_smbus_ioctl(struct file *file, unsigned int fd, ...@@ -747,7 +748,7 @@ static int do_i2c_smbus_ioctl(struct file *file, unsigned int fd,
__put_user(compat_ptr(datap), &tdata->data)) __put_user(compat_ptr(datap), &tdata->data))
return -EFAULT; return -EFAULT;
return do_ioctl(file, fd, cmd, (unsigned long)tdata); return do_ioctl(file, cmd, (unsigned long)tdata);
} }
#define RTC_IRQP_READ32 _IOR('p', 0x0b, compat_ulong_t) #define RTC_IRQP_READ32 _IOR('p', 0x0b, compat_ulong_t)
...@@ -755,7 +756,7 @@ static int do_i2c_smbus_ioctl(struct file *file, unsigned int fd, ...@@ -755,7 +756,7 @@ static int do_i2c_smbus_ioctl(struct file *file, unsigned int fd,
#define RTC_EPOCH_READ32 _IOR('p', 0x0d, compat_ulong_t) #define RTC_EPOCH_READ32 _IOR('p', 0x0d, compat_ulong_t)
#define RTC_EPOCH_SET32 _IOW('p', 0x0e, compat_ulong_t) #define RTC_EPOCH_SET32 _IOW('p', 0x0e, compat_ulong_t)
static int rtc_ioctl(struct file *file, unsigned fd, static int rtc_ioctl(struct file *file,
unsigned cmd, void __user *argp) unsigned cmd, void __user *argp)
{ {
mm_segment_t oldfs = get_fs(); mm_segment_t oldfs = get_fs();
...@@ -767,7 +768,7 @@ static int rtc_ioctl(struct file *file, unsigned fd, ...@@ -767,7 +768,7 @@ static int rtc_ioctl(struct file *file, unsigned fd,
case RTC_IRQP_READ32: case RTC_IRQP_READ32:
case RTC_EPOCH_READ32: case RTC_EPOCH_READ32:
set_fs(KERNEL_DS); set_fs(KERNEL_DS);
ret = do_ioctl(file, fd, (cmd == RTC_IRQP_READ32) ? ret = do_ioctl(file, (cmd == RTC_IRQP_READ32) ?
RTC_IRQP_READ : RTC_EPOCH_READ, RTC_IRQP_READ : RTC_EPOCH_READ,
(unsigned long)&kval); (unsigned long)&kval);
set_fs(oldfs); set_fs(oldfs);
...@@ -776,9 +777,9 @@ static int rtc_ioctl(struct file *file, unsigned fd, ...@@ -776,9 +777,9 @@ static int rtc_ioctl(struct file *file, unsigned fd,
val32 = kval; val32 = kval;
return put_user(val32, (unsigned int __user *)argp); return put_user(val32, (unsigned int __user *)argp);
case RTC_IRQP_SET32: case RTC_IRQP_SET32:
return do_ioctl(file, fd, RTC_IRQP_SET, (unsigned long)argp); return do_ioctl(file, RTC_IRQP_SET, (unsigned long)argp);
case RTC_EPOCH_SET32: case RTC_EPOCH_SET32:
return do_ioctl(file, fd, RTC_EPOCH_SET, (unsigned long)argp); return do_ioctl(file, RTC_EPOCH_SET, (unsigned long)argp);
} }
return -ENOIOCTLCMD; return -ENOIOCTLCMD;
...@@ -1450,53 +1451,53 @@ IGNORE_IOCTL(FBIOGCURSOR32) ...@@ -1450,53 +1451,53 @@ IGNORE_IOCTL(FBIOGCURSOR32)
* a compat_ioctl operation in the place that handleѕ the * a compat_ioctl operation in the place that handleѕ the
* ioctl for the native case. * ioctl for the native case.
*/ */
static long do_ioctl_trans(int fd, unsigned int cmd, static long do_ioctl_trans(unsigned int cmd,
unsigned long arg, struct file *file) unsigned long arg, struct file *file)
{ {
void __user *argp = compat_ptr(arg); void __user *argp = compat_ptr(arg);
switch (cmd) { switch (cmd) {
case PPPIOCGIDLE32: case PPPIOCGIDLE32:
return ppp_gidle(file, fd, cmd, argp); return ppp_gidle(file, cmd, argp);
case PPPIOCSCOMPRESS32: case PPPIOCSCOMPRESS32:
return ppp_scompress(file, fd, cmd, argp); return ppp_scompress(file, cmd, argp);
case PPPIOCSPASS32: case PPPIOCSPASS32:
case PPPIOCSACTIVE32: case PPPIOCSACTIVE32:
return ppp_sock_fprog_ioctl_trans(file, fd, cmd, argp); return ppp_sock_fprog_ioctl_trans(file, cmd, argp);
#ifdef CONFIG_BLOCK #ifdef CONFIG_BLOCK
case SG_IO: case SG_IO:
return sg_ioctl_trans(file, fd, cmd, argp); return sg_ioctl_trans(file, cmd, argp);
case SG_GET_REQUEST_TABLE: case SG_GET_REQUEST_TABLE:
return sg_grt_trans(file, fd, cmd, argp); return sg_grt_trans(file, cmd, argp);
case MTIOCGET32: case MTIOCGET32:
case MTIOCPOS32: case MTIOCPOS32:
return mt_ioctl_trans(file, fd, cmd, argp); return mt_ioctl_trans(file, cmd, argp);
#endif #endif
/* Serial */ /* Serial */
case TIOCGSERIAL: case TIOCGSERIAL:
case TIOCSSERIAL: case TIOCSSERIAL:
return serial_struct_ioctl(file, fd, cmd, argp); return serial_struct_ioctl(file, cmd, argp);
/* i2c */ /* i2c */
case I2C_FUNCS: case I2C_FUNCS:
return w_long(file, fd, cmd, argp); return w_long(file, cmd, argp);
case I2C_RDWR: case I2C_RDWR:
return do_i2c_rdwr_ioctl(file, fd, cmd, argp); return do_i2c_rdwr_ioctl(file, cmd, argp);
case I2C_SMBUS: case I2C_SMBUS:
return do_i2c_smbus_ioctl(file, fd, cmd, argp); return do_i2c_smbus_ioctl(file, cmd, argp);
/* Not implemented in the native kernel */ /* Not implemented in the native kernel */
case RTC_IRQP_READ32: case RTC_IRQP_READ32:
case RTC_IRQP_SET32: case RTC_IRQP_SET32:
case RTC_EPOCH_READ32: case RTC_EPOCH_READ32:
case RTC_EPOCH_SET32: case RTC_EPOCH_SET32:
return rtc_ioctl(file, fd, cmd, argp); return rtc_ioctl(file, cmd, argp);
/* dvb */ /* dvb */
case VIDEO_GET_EVENT: case VIDEO_GET_EVENT:
return do_video_get_event(file, fd, cmd, argp); return do_video_get_event(file, cmd, argp);
case VIDEO_STILLPICTURE: case VIDEO_STILLPICTURE:
return do_video_stillpicture(file, fd, cmd, argp); return do_video_stillpicture(file, cmd, argp);
case VIDEO_SET_SPU_PALETTE: case VIDEO_SET_SPU_PALETTE:
return do_video_set_spu_palette(file, fd, cmd, argp); return do_video_set_spu_palette(file, cmd, argp);
} }
/* /*
...@@ -1527,7 +1528,7 @@ static long do_ioctl_trans(int fd, unsigned int cmd, ...@@ -1527,7 +1528,7 @@ static long do_ioctl_trans(int fd, unsigned int cmd,
case NBD_SET_BLKSIZE: case NBD_SET_BLKSIZE:
case NBD_SET_SIZE: case NBD_SET_SIZE:
case NBD_SET_SIZE_BLOCKS: case NBD_SET_SIZE_BLOCKS:
return do_vfs_ioctl(file, fd, cmd, arg); return vfs_ioctl(file, cmd, arg);
} }
return -ENOIOCTLCMD; return -ENOIOCTLCMD;
...@@ -1616,7 +1617,7 @@ COMPAT_SYSCALL_DEFINE3(ioctl, unsigned int, fd, unsigned int, cmd, ...@@ -1616,7 +1617,7 @@ COMPAT_SYSCALL_DEFINE3(ioctl, unsigned int, fd, unsigned int, cmd,
if (compat_ioctl_check_table(XFORM(cmd))) if (compat_ioctl_check_table(XFORM(cmd)))
goto found_handler; goto found_handler;
error = do_ioctl_trans(fd, cmd, arg, f.file); error = do_ioctl_trans(cmd, arg, f.file);
if (error == -ENOIOCTLCMD) if (error == -ENOIOCTLCMD)
error = -ENOTTY; error = -ENOTTY;
......
...@@ -151,3 +151,10 @@ extern void mnt_pin_kill(struct mount *m); ...@@ -151,3 +151,10 @@ extern void mnt_pin_kill(struct mount *m);
* fs/nsfs.c * fs/nsfs.c
*/ */
extern struct dentry_operations ns_dentry_operations; extern struct dentry_operations ns_dentry_operations;
/*
* fs/ioctl.c
*/
extern int do_vfs_ioctl(struct file *file, unsigned int fd, unsigned int cmd,
unsigned long arg);
extern long vfs_ioctl(struct file *file, unsigned int cmd, unsigned long arg);
...@@ -15,6 +15,7 @@ ...@@ -15,6 +15,7 @@
#include <linux/writeback.h> #include <linux/writeback.h>
#include <linux/buffer_head.h> #include <linux/buffer_head.h>
#include <linux/falloc.h> #include <linux/falloc.h>
#include "internal.h"
#include <asm/ioctls.h> #include <asm/ioctls.h>
...@@ -32,8 +33,7 @@ ...@@ -32,8 +33,7 @@
* *
* Returns 0 on success, -errno on error. * Returns 0 on success, -errno on error.
*/ */
static long vfs_ioctl(struct file *filp, unsigned int cmd, long vfs_ioctl(struct file *filp, unsigned int cmd, unsigned long arg)
unsigned long arg)
{ {
int error = -ENOTTY; int error = -ENOTTY;
......
...@@ -2764,8 +2764,6 @@ extern int vfs_lstat(const char __user *, struct kstat *); ...@@ -2764,8 +2764,6 @@ extern int vfs_lstat(const char __user *, struct kstat *);
extern int vfs_fstat(unsigned int, struct kstat *); extern int vfs_fstat(unsigned int, struct kstat *);
extern int vfs_fstatat(int , const char __user *, struct kstat *, int); extern int vfs_fstatat(int , const char __user *, struct kstat *, int);
extern int do_vfs_ioctl(struct file *filp, unsigned int fd, unsigned int cmd,
unsigned long arg);
extern int __generic_block_fiemap(struct inode *inode, extern int __generic_block_fiemap(struct inode *inode,
struct fiemap_extent_info *fieinfo, struct fiemap_extent_info *fieinfo,
loff_t start, loff_t len, loff_t start, loff_t len,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment