|
@@ -1304,9 +1304,6 @@ isdn_ioctl(struct file *file, uint cmd, ulong arg)
|
|
|
if (arg) {
|
|
|
ulong __user *p = argp;
|
|
|
int i;
|
|
|
- if (!access_ok(VERIFY_WRITE, p,
|
|
|
- sizeof(ulong) * ISDN_MAX_CHANNELS * 2))
|
|
|
- return -EFAULT;
|
|
|
for (i = 0; i < ISDN_MAX_CHANNELS; i++) {
|
|
|
put_user(dev->ibytes[i], p++);
|
|
|
put_user(dev->obytes[i], p++);
|
|
@@ -1540,11 +1537,6 @@ isdn_ioctl(struct file *file, uint cmd, ulong arg)
|
|
|
char __user *p = argp;
|
|
|
int i;
|
|
|
|
|
|
- if (!access_ok(VERIFY_WRITE, argp,
|
|
|
- (ISDN_MODEM_NUMREG + ISDN_MSNLEN + ISDN_LMSNLEN)
|
|
|
- * ISDN_MAX_CHANNELS))
|
|
|
- return -EFAULT;
|
|
|
-
|
|
|
for (i = 0; i < ISDN_MAX_CHANNELS; i++) {
|
|
|
if (copy_to_user(p, dev->mdm.info[i].emu.profile,
|
|
|
ISDN_MODEM_NUMREG))
|
|
@@ -1567,11 +1559,6 @@ isdn_ioctl(struct file *file, uint cmd, ulong arg)
|
|
|
char __user *p = argp;
|
|
|
int i;
|
|
|
|
|
|
- if (!access_ok(VERIFY_READ, argp,
|
|
|
- (ISDN_MODEM_NUMREG + ISDN_MSNLEN + ISDN_LMSNLEN)
|
|
|
- * ISDN_MAX_CHANNELS))
|
|
|
- return -EFAULT;
|
|
|
-
|
|
|
for (i = 0; i < ISDN_MAX_CHANNELS; i++) {
|
|
|
if (copy_from_user(dev->mdm.info[i].emu.profile, p,
|
|
|
ISDN_MODEM_NUMREG))
|
|
@@ -1617,8 +1604,6 @@ isdn_ioctl(struct file *file, uint cmd, ulong arg)
|
|
|
int j = 0;
|
|
|
|
|
|
while (1) {
|
|
|
- if (!access_ok(VERIFY_READ, p, 1))
|
|
|
- return -EFAULT;
|
|
|
get_user(bname[j], p++);
|
|
|
switch (bname[j]) {
|
|
|
case '\0':
|
|
@@ -1685,9 +1670,6 @@ isdn_ioctl(struct file *file, uint cmd, ulong arg)
|
|
|
drvidx = 0;
|
|
|
if (drvidx == -1)
|
|
|
return -ENODEV;
|
|
|
- if (!access_ok(VERIFY_WRITE, argp,
|
|
|
- sizeof(isdn_ioctl_struct)))
|
|
|
- return -EFAULT;
|
|
|
c.driver = drvidx;
|
|
|
c.command = ISDN_CMD_IOCTL;
|
|
|
c.arg = cmd;
|