From: Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
To: Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>,
Sascha Hauer <s.hauer@pengutronix.de>
Cc: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>,
barebox@lists.infradead.org
Subject: [PATCH v2 3/7] USB: improve error paths and tear-down
Date: Sat, 26 Jul 2014 17:24:41 +0200 [thread overview]
Message-ID: <1406388285-1666-4-git-send-email-sebastian.hesselbarth@gmail.com> (raw)
In-Reply-To: <1406388285-1666-1-git-send-email-sebastian.hesselbarth@gmail.com>
USB core isn't too strict about allocation/deallocation and
add/remove sequences of usb devices. Especially, error paths
and device tear-down are kind of broken and cause hangs on
failing usb device detect.
This patch improves the situation by introducing a
usb_free_device() that tears down allocated resources by
usb_alloc_new_device(). usb_remove_device() now only deals
with resources that have been added by usb_new_device().
Also, error handling is fixed or improved to ensure that no
devices are unregistered that have not been previously
registered.
Signed-off-by: Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
---
To: Sascha Hauer <s.hauer@pengutronix.de>
Cc: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Cc: Ezequiel Garcia <ezequiel.garcia@free-electrons.com>
Cc: barebox@lists.infradead.org
---
drivers/usb/core/hub.c | 19 ++++++++++++-------
drivers/usb/core/usb.c | 48 ++++++++++++++++++++++++++++--------------------
drivers/usb/core/usb.h | 1 +
3 files changed, 41 insertions(+), 27 deletions(-)
diff --git a/drivers/usb/core/hub.c b/drivers/usb/core/hub.c
index c1f743cbed12..d42b47cbe0b8 100644
--- a/drivers/usb/core/hub.c
+++ b/drivers/usb/core/hub.c
@@ -186,19 +186,21 @@ static void usb_hub_port_connect_change(struct usb_device *dev, int port)
usb_clear_port_feature(dev, port + 1, USB_PORT_FEAT_C_CONNECTION);
/* Disconnect any existing devices under this port */
- if (((!(portstatus & USB_PORT_STAT_CONNECTION)) &&
- (!(portstatus & USB_PORT_STAT_ENABLE))) || (dev->children[port])) {
- dev_dbg(&dev->dev, "usb_disconnect(&hub->children[port]);\n");
+ if (dev->children[port] && !(portstatus & USB_PORT_STAT_CONNECTION)) {
+ dev_dbg(&dev->dev, "disconnect detected on port %d\n", port + 1);
usb_remove_device(dev->children[port]);
- /* Return now if nothing is connected */
- if (!(portstatus & USB_PORT_STAT_CONNECTION))
- return;
+ return;
}
+
+ /* Remove disabled but connected devices */
+ if (dev->children[port] && !(portstatus & USB_PORT_STAT_ENABLE))
+ usb_remove_device(dev->children[port]);
+
wait_ms(200);
/* Reset the port */
if (hub_port_reset(dev, port, &portstatus) < 0) {
- printf("cannot reset port %i!?\n", port + 1);
+ dev_warn(&dev->dev, "cannot reset port %i!?\n", port + 1);
return;
}
@@ -225,7 +227,10 @@ static void usb_hub_port_connect_change(struct usb_device *dev, int port)
/* Woops, disable the port */
dev_dbg(&dev->dev, "hub: disabling port %d\n", port + 1);
usb_clear_port_feature(dev, port + 1, USB_PORT_FEAT_ENABLE);
+ usb_free_device(usb);
+ return;
}
+
device_detect(&usb->dev);
}
diff --git a/drivers/usb/core/usb.c b/drivers/usb/core/usb.c
index d3bd19be706d..3f3d59577ca4 100644
--- a/drivers/usb/core/usb.c
+++ b/drivers/usb/core/usb.c
@@ -431,7 +431,7 @@ int usb_new_device(struct usb_device *dev)
err = register_device(&dev->dev);
if (err) {
printf("Failed to register device: %s\n", strerror(-err));
- return err;
+ goto err_out;
}
dev_add_param_int_ro(&dev->dev, "iManufacturer",
@@ -458,42 +458,45 @@ err_out:
return err;
}
+void usb_free_device(struct usb_device *usbdev)
+{
+ dma_free(usbdev->descriptor);
+ dma_free(usbdev->setup_packet);
+ free(usbdev);
+}
+
void usb_remove_device(struct usb_device *usbdev)
{
- int i, ret;
+ int i;
- for (i = 0; i < usbdev->maxchild; i++) {
- if (usbdev->children[i])
- usb_remove_device(usbdev->children[i]);
- }
+ if (!usbdev)
+ return;
- dev_info(&usbdev->dev, "removing\n");
+ for (i = 0; i < usbdev->maxchild; i++)
+ usb_remove_device(usbdev->children[i]);
+ if (usbdev->parent && usbdev->portnr)
+ usbdev->parent->children[usbdev->portnr - 1] = NULL;
+ list_del(&usbdev->list);
+ dev_count--;
- ret = unregister_device(&usbdev->dev);
- if (ret)
+ if (unregister_device(&usbdev->dev))
dev_err(&usbdev->dev, "failed to unregister\n");
+ else
+ dev_info(&usbdev->dev, "removed\n");
- usbdev->parent->children[usbdev->portnr - 1] = NULL;
- list_del(&usbdev->list);
- free(usbdev);
- dev_count--;
+ usb_free_device(usbdev);
}
struct usb_device *usb_alloc_new_device(void)
{
struct usb_device *usbdev = xzalloc(sizeof (*usbdev));
- if (!usbdev)
- return NULL;
-
- usbdev->devnum = dev_index + 1;
+ usbdev->devnum = ++dev_index;
usbdev->maxchild = 0;
usbdev->dev.bus = &usb_bus_type;
usbdev->setup_packet = dma_alloc(sizeof(*usbdev->setup_packet));
usbdev->descriptor = dma_alloc(sizeof(*usbdev->descriptor));
- dev_index++;
-
return usbdev;
}
@@ -509,7 +512,12 @@ int usb_host_detect(struct usb_host *host)
host->root_dev = usb_alloc_new_device();
host->root_dev->dev.parent = host->hw_dev;
host->root_dev->host = host;
- usb_new_device(host->root_dev);
+
+ ret = usb_new_device(host->root_dev);
+ if (ret) {
+ usb_free_device(host->root_dev);
+ return ret;
+ }
}
device_detect(&host->root_dev->dev);
diff --git a/drivers/usb/core/usb.h b/drivers/usb/core/usb.h
index a0c05506dde8..a5bb255121b2 100644
--- a/drivers/usb/core/usb.h
+++ b/drivers/usb/core/usb.h
@@ -2,6 +2,7 @@
#define __CORE_USB_H
struct usb_device *usb_alloc_new_device(void);
+void usb_free_device(struct usb_device *dev);
int usb_new_device(struct usb_device *dev);
void usb_remove_device(struct usb_device *dev);
--
2.0.0
_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox
next prev parent reply other threads:[~2014-07-26 15:25 UTC|newest]
Thread overview: 10+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-07-26 15:24 [PATCH v2 0/7] Minor USB fixes and xHCI driver Sebastian Hesselbarth
2014-07-26 15:24 ` [PATCH v2 1/7] USB: Fix stale usb devices in usb_device_list Sebastian Hesselbarth
2014-07-26 15:24 ` [PATCH v2 2/7] USB: Count detected USB devices independent of dev_index Sebastian Hesselbarth
2014-07-26 15:24 ` Sebastian Hesselbarth [this message]
2014-07-26 15:24 ` [PATCH v2 4/7] USB: EHCI: use min3 from Linux Sebastian Hesselbarth
2014-07-26 15:24 ` [PATCH v2 5/7] include: import {lower,upper}_32_bits helpers Sebastian Hesselbarth
2014-07-26 15:24 ` [PATCH v2 6/7] USB: host: add xHCI HCD, Hub, and platform driver Sebastian Hesselbarth
2014-07-26 15:24 ` [PATCH v2 7/7] USB: host: add xHCI PCI driver Sebastian Hesselbarth
2014-07-28 5:41 ` [PATCH v2 0/7] Minor USB fixes and xHCI driver Sascha Hauer
2014-07-28 6:09 ` Sebastian Hesselbarth
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1406388285-1666-4-git-send-email-sebastian.hesselbarth@gmail.com \
--to=sebastian.hesselbarth@gmail.com \
--cc=barebox@lists.infradead.org \
--cc=s.hauer@pengutronix.de \
--cc=thomas.petazzoni@free-electrons.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox