usb: fail on usb_hub_create_port_device() errors
Ignoring usb_hub_create_port_device() errors cause later NULL pointer deference when uninitialized hub->ports[i] entries are dereferenced after port memory allocation error. Signed-off-by: Krzysztof Mazur <krzysiek@podlesie.net> Acked-by: Alan Stern <stern@rowland.harvard.edu> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
d0308d4b6b
commit
e58547eb95
|
@ -1562,10 +1562,15 @@ static int hub_configure(struct usb_hub *hub,
|
||||||
if (hub->has_indicators && blinkenlights)
|
if (hub->has_indicators && blinkenlights)
|
||||||
hub->indicator [0] = INDICATOR_CYCLE;
|
hub->indicator [0] = INDICATOR_CYCLE;
|
||||||
|
|
||||||
for (i = 0; i < hdev->maxchild; i++)
|
for (i = 0; i < hdev->maxchild; i++) {
|
||||||
if (usb_hub_create_port_device(hub, i + 1) < 0)
|
ret = usb_hub_create_port_device(hub, i + 1);
|
||||||
|
if (ret < 0) {
|
||||||
dev_err(hub->intfdev,
|
dev_err(hub->intfdev,
|
||||||
"couldn't create port%d device.\n", i + 1);
|
"couldn't create port%d device.\n", i + 1);
|
||||||
|
hdev->maxchild = i;
|
||||||
|
goto fail_keep_maxchild;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
usb_hub_adjust_deviceremovable(hdev, hub->descriptor);
|
usb_hub_adjust_deviceremovable(hdev, hub->descriptor);
|
||||||
|
|
||||||
|
@ -1574,6 +1579,7 @@ static int hub_configure(struct usb_hub *hub,
|
||||||
|
|
||||||
fail:
|
fail:
|
||||||
hdev->maxchild = 0;
|
hdev->maxchild = 0;
|
||||||
|
fail_keep_maxchild:
|
||||||
dev_err (hub_dev, "config failed, %s (err %d)\n",
|
dev_err (hub_dev, "config failed, %s (err %d)\n",
|
||||||
message, ret);
|
message, ret);
|
||||||
/* hub_disconnect() frees urb and descriptor */
|
/* hub_disconnect() frees urb and descriptor */
|
||||||
|
|
Loading…
Reference in New Issue