usb: config->desc.bLength may not exceed amount of data returned by the device
authorHans de Goede <hdegoede@redhat.com>
Sat, 3 Aug 2013 14:37:48 +0000 (16:37 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Fri, 27 Sep 2013 00:21:39 +0000 (17:21 -0700)
commit6a60f9edfff43606eb9b574082b8d242f9977e8f
tree081fedfeb5e073dd230d898b2c6c5b92f7bd3c96
parent6d454f588f7256c13cd477c22dc360aa906682aa
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>
drivers/usb/core/config.c