[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Qemu-devel] [PATCH 4/9] xhci: Add a few missing checks for disconnected
From: |
Hans de Goede |
Subject: |
[Qemu-devel] [PATCH 4/9] xhci: Add a few missing checks for disconnected devices |
Date: |
Tue, 19 Nov 2013 14:36:59 +0100 |
One of the reworks of qemu's usb core made changes to usb-port's disconnect
handling. Now ports with a device will always have a non 0 dev member, but
if the device is not attached (which is possible with usb redirection),
dev->attached will be 0.
So supplement all checks for dev to also check dev->attached, and add an
extra check in a path where a device check was completely missing.
This fixes various crashes (asserts triggering) I've been seeing when xhci
attached usb devices get disconnected at the wrong time.
Signed-off-by: Hans de Goede <address@hidden>
---
hw/usb/hcd-xhci.c | 13 +++++++++++--
1 file changed, 11 insertions(+), 2 deletions(-)
diff --git a/hw/usb/hcd-xhci.c b/hw/usb/hcd-xhci.c
index 9368348..bafe085 100644
--- a/hw/usb/hcd-xhci.c
+++ b/hw/usb/hcd-xhci.c
@@ -1600,7 +1600,8 @@ static TRBCCode xhci_reset_ep(XHCIState *xhci, unsigned
int slotid,
}
if (!xhci->slots[slotid-1].uport ||
- !xhci->slots[slotid-1].uport->dev) {
+ !xhci->slots[slotid-1].uport->dev ||
+ !xhci->slots[slotid-1].uport->dev->attached) {
return CC_USB_TRANSACTION_ERROR;
}
@@ -2087,6 +2088,14 @@ static void xhci_kick_ep(XHCIState *xhci, unsigned int
slotid,
return;
}
+ /* If the device has been detached, but the guest has not noticed this
+ yet the 2 above checks will succeed, but we must NOT continue */
+ if (!xhci->slots[slotid - 1].uport ||
+ !xhci->slots[slotid - 1].uport->dev ||
+ !xhci->slots[slotid - 1].uport->dev->attached) {
+ return;
+ }
+
if (epctx->retry) {
XHCITransfer *xfer = epctx->retry;
@@ -2311,7 +2320,7 @@ static TRBCCode xhci_address_slot(XHCIState *xhci,
unsigned int slotid,
trace_usb_xhci_slot_address(slotid, uport->path);
dev = uport->dev;
- if (!dev) {
+ if (!dev || !dev->attached) {
fprintf(stderr, "xhci: port %s not connected\n", uport->path);
return CC_USB_TRANSACTION_ERROR;
}
--
1.8.4.2
- [Qemu-devel] [PATCH 0/9] usb: redirection streams support + small fixes, Hans de Goede, 2013/11/19
- [Qemu-devel] [PATCH 1/9] usb: Add max_streams attribute to endpoint info, Hans de Goede, 2013/11/19
- [Qemu-devel] [PATCH 2/9] usb: Add usb_device_alloc/free_streams, Hans de Goede, 2013/11/19
- [Qemu-devel] [PATCH 4/9] xhci: Add a few missing checks for disconnected devices,
Hans de Goede <=
- [Qemu-devel] [PATCH 3/9] xhci: Call usb_device_alloc/free_streams, Hans de Goede, 2013/11/19
- [Qemu-devel] [PATCH 5/9] usb-host-libusb: Fill in endpoint max_streams when available, Hans de Goede, 2013/11/19
- [Qemu-devel] [PATCH 6/9] usb-host-libusb: Add alloc / free streams ops, Hans de Goede, 2013/11/19
- [Qemu-devel] [PATCH 7/9] usb-host-libusb: Set stream id when submitting bulk-stream transfers, Hans de Goede, 2013/11/19
- [Qemu-devel] [PATCH 9/9] uas: s/ui/iu/, Hans de Goede, 2013/11/19
- [Qemu-devel] [PATCH 8/9] usb-redir: Add support for bulk streams, Hans de Goede, 2013/11/19
- Re: [Qemu-devel] [PATCH 0/9] usb: redirection streams support + small fixes, Gerd Hoffmann, 2013/11/20
- Re: [Qemu-devel] [PATCH 0/9] usb: redirection streams support + small fixes, Gerd Hoffmann, 2013/11/21