diff options
author | Hans de Goede <hdegoede@redhat.com> | 2013-08-03 16:37:48 +0200 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2013-09-26 16:52:47 -0700 |
commit | ff819a0c7f12179d197aa06841087964dd2be7d3 (patch) | |
tree | 97239d62c33a597a87a1f368e769a722ff81d8fa /drivers | |
parent | fe3efa501f32fc05483a095334573799a954d1ab (diff) | |
download | kernel_samsung_smdk4412-ff819a0c7f12179d197aa06841087964dd2be7d3.zip kernel_samsung_smdk4412-ff819a0c7f12179d197aa06841087964dd2be7d3.tar.gz kernel_samsung_smdk4412-ff819a0c7f12179d197aa06841087964dd2be7d3.tar.bz2 |
usb: config->desc.bLength may not exceed amount of data returned by the device
commit b4f17a488ae2e09bfcf95c0e0b4219c246f1116a upstream.
While reading the config parsing code I noticed this check is missing, without
this check config->desc.wTotalLength can end up with a value larger then the
dev->rawdescriptors length for the config, and when userspace then tries to
get the rawdescriptors bad things may happen.
Signed-off-by: Hans de Goede <hdegoede@redhat.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/usb/core/config.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/usb/core/config.c b/drivers/usb/core/config.c index 26678ca..c29f521 100644 --- a/drivers/usb/core/config.c +++ b/drivers/usb/core/config.c @@ -424,7 +424,8 @@ static int usb_parse_configuration(struct usb_device *dev, int cfgidx, memcpy(&config->desc, buffer, USB_DT_CONFIG_SIZE); if (config->desc.bDescriptorType != USB_DT_CONFIG || - config->desc.bLength < USB_DT_CONFIG_SIZE) { + config->desc.bLength < USB_DT_CONFIG_SIZE || + config->desc.bLength > size) { dev_err(ddev, "invalid descriptor for config index %d: " "type = 0x%X, length = %d\n", cfgidx, config->desc.bDescriptorType, config->desc.bLength); |