USB: hub: fix SS max number of ports

Add define for the maximum number of ports on a SuperSpeed hub as per
USB 3.1 spec Table 10-5, and use it when verifying the retrieved hub
descriptor.

This specifically avoids benign attempts to update the DeviceRemovable
mask for non-existing ports (should we get that far).

Fixes: dbe79bbe9d ("USB 3.0 Hub Changes")
Acked-by: Alan Stern <stern@rowland.harvard.edu>
Signed-off-by: Johan Hovold <johan@kernel.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
Johan Hovold 2017-05-10 18:18:29 +02:00 коммит произвёл Greg Kroah-Hartman
Родитель bec444cd1c
Коммит 93491ced3c
2 изменённых файлов: 10 добавлений и 1 удалений

Просмотреть файл

@ -1336,7 +1336,13 @@ static int hub_configure(struct usb_hub *hub,
if (ret < 0) { if (ret < 0) {
message = "can't read hub descriptor"; message = "can't read hub descriptor";
goto fail; goto fail;
} else if (hub->descriptor->bNbrPorts > USB_MAXCHILDREN) { }
maxchild = USB_MAXCHILDREN;
if (hub_is_superspeed(hdev))
maxchild = min_t(unsigned, maxchild, USB_SS_MAXPORTS);
if (hub->descriptor->bNbrPorts > maxchild) {
message = "hub has too many ports!"; message = "hub has too many ports!";
ret = -ENODEV; ret = -ENODEV;
goto fail; goto fail;

Просмотреть файл

@ -22,6 +22,9 @@
*/ */
#define USB_MAXCHILDREN 31 #define USB_MAXCHILDREN 31
/* See USB 3.1 spec Table 10-5 */
#define USB_SS_MAXPORTS 15
/* /*
* Hub request types * Hub request types
*/ */