diff options
author | Johan Hovold <johan@kernel.org> | 2017-03-07 10:11:03 -0500 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2017-03-09 04:25:37 -0500 |
commit | b7321e81fc369abe353cf094d4f0dc2fe11ab95f (patch) | |
tree | ad028bde06e21e8c234b757fb3180d5df4715148 | |
parent | fd567653bdb908009b650f079bfd4b63169e2ac4 (diff) |
USB: iowarrior: fix NULL-deref at probe
Make sure to check for the required interrupt-in endpoint to avoid
dereferencing a NULL-pointer should a malicious device lack such an
endpoint.
Note that a fairly recent change purported to fix this issue, but added
an insufficient test on the number of endpoints only, a test which can
now be removed.
Fixes: 4ec0ef3a8212 ("USB: iowarrior: fix oops with malicious USB descriptors")
Fixes: 946b960d13c1 ("USB: add driver for iowarrior devices.")
Cc: stable <stable@vger.kernel.org> # 2.6.21
Signed-off-by: Johan Hovold <johan@kernel.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-rw-r--r-- | drivers/usb/misc/iowarrior.c | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/drivers/usb/misc/iowarrior.c b/drivers/usb/misc/iowarrior.c index 095778ff984d..3ad058cbe6ca 100644 --- a/drivers/usb/misc/iowarrior.c +++ b/drivers/usb/misc/iowarrior.c | |||
@@ -781,12 +781,6 @@ static int iowarrior_probe(struct usb_interface *interface, | |||
781 | iface_desc = interface->cur_altsetting; | 781 | iface_desc = interface->cur_altsetting; |
782 | dev->product_id = le16_to_cpu(udev->descriptor.idProduct); | 782 | dev->product_id = le16_to_cpu(udev->descriptor.idProduct); |
783 | 783 | ||
784 | if (iface_desc->desc.bNumEndpoints < 1) { | ||
785 | dev_err(&interface->dev, "Invalid number of endpoints\n"); | ||
786 | retval = -EINVAL; | ||
787 | goto error; | ||
788 | } | ||
789 | |||
790 | /* set up the endpoint information */ | 784 | /* set up the endpoint information */ |
791 | for (i = 0; i < iface_desc->desc.bNumEndpoints; ++i) { | 785 | for (i = 0; i < iface_desc->desc.bNumEndpoints; ++i) { |
792 | endpoint = &iface_desc->endpoint[i].desc; | 786 | endpoint = &iface_desc->endpoint[i].desc; |
@@ -797,6 +791,13 @@ static int iowarrior_probe(struct usb_interface *interface, | |||
797 | /* this one will match for the IOWarrior56 only */ | 791 | /* this one will match for the IOWarrior56 only */ |
798 | dev->int_out_endpoint = endpoint; | 792 | dev->int_out_endpoint = endpoint; |
799 | } | 793 | } |
794 | |||
795 | if (!dev->int_in_endpoint) { | ||
796 | dev_err(&interface->dev, "no interrupt-in endpoint found\n"); | ||
797 | retval = -ENODEV; | ||
798 | goto error; | ||
799 | } | ||
800 | |||
800 | /* we have to check the report_size often, so remember it in the endianness suitable for our machine */ | 801 | /* we have to check the report_size often, so remember it in the endianness suitable for our machine */ |
801 | dev->report_size = usb_endpoint_maxp(dev->int_in_endpoint); | 802 | dev->report_size = usb_endpoint_maxp(dev->int_in_endpoint); |
802 | if ((dev->interface->cur_altsetting->desc.bInterfaceNumber == 0) && | 803 | if ((dev->interface->cur_altsetting->desc.bInterfaceNumber == 0) && |