mirror of
https://github.com/edk2-porting/linux-next.git
synced 2024-11-19 08:05:27 +08:00
ISDN: Fix data access out of array bounds
Fix against access random data bytes outside the dev->chanmap array. Thanks to Oliver Neukum for pointing me to this issue. Signed-off-by: Karsten Keil <kkeil@suse.de> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
parent
e46dc1dab9
commit
d39d5ed97e
@ -1135,7 +1135,7 @@ isdn_read(struct file *file, char __user *buf, size_t count, loff_t * off)
|
||||
if (count > dev->drv[drvidx]->stavail)
|
||||
count = dev->drv[drvidx]->stavail;
|
||||
len = dev->drv[drvidx]->interface->readstat(buf, count,
|
||||
drvidx, isdn_minor2chan(minor));
|
||||
drvidx, isdn_minor2chan(minor - ISDN_MINOR_CTRL));
|
||||
if (len < 0) {
|
||||
retval = len;
|
||||
goto out;
|
||||
@ -1207,7 +1207,8 @@ isdn_write(struct file *file, const char __user *buf, size_t count, loff_t * off
|
||||
*/
|
||||
if (dev->drv[drvidx]->interface->writecmd)
|
||||
retval = dev->drv[drvidx]->interface->
|
||||
writecmd(buf, count, drvidx, isdn_minor2chan(minor));
|
||||
writecmd(buf, count, drvidx,
|
||||
isdn_minor2chan(minor - ISDN_MINOR_CTRL));
|
||||
else
|
||||
retval = count;
|
||||
goto out;
|
||||
|
Loading…
Reference in New Issue
Block a user