mirror of
https://github.com/torvalds/linux.git
synced 2026-06-07 14:04:54 +02:00
USB: usb_driver_claim_interface: add sanity checking
commit 0b818e3956 upstream.
Attacks that trick drivers into passing a NULL pointer
to usb_driver_claim_interface() using forged descriptors are
known. This thwarts them by sanity checking.
Signed-off-by: Oliver Neukum <ONeukum@suse.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
850631bedd
commit
b6c6426252
|
|
@ -502,11 +502,15 @@ static int usb_unbind_interface(struct device *dev)
|
|||
int usb_driver_claim_interface(struct usb_driver *driver,
|
||||
struct usb_interface *iface, void *priv)
|
||||
{
|
||||
struct device *dev = &iface->dev;
|
||||
struct device *dev;
|
||||
struct usb_device *udev;
|
||||
int retval = 0;
|
||||
int lpm_disable_error;
|
||||
|
||||
if (!iface)
|
||||
return -ENODEV;
|
||||
|
||||
dev = &iface->dev;
|
||||
if (dev->driver)
|
||||
return -EBUSY;
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user