Add enum to track the status of USBPackets, use that instead of the owner pointer to figure whenever a usb packet is currently in flight or not. Add some more packet status sanity checks. Also rename the USBEndpoint pointer from "owner" to "ep".
Signed-off-by: Gerd Hoffmann <kra...@redhat.com> --- hw/usb-ehci.c | 4 ++-- hw/usb-musb.c | 4 ++-- hw/usb-ohci.c | 4 ++-- hw/usb-uhci.c | 4 ++-- hw/usb.c | 18 +++++++++++------- hw/usb.h | 19 ++++++++++++++++--- 6 files changed, 35 insertions(+), 18 deletions(-) diff --git a/hw/usb-ehci.c b/hw/usb-ehci.c index 797b333..0ddcac6 100644 --- a/hw/usb-ehci.c +++ b/hw/usb-ehci.c @@ -715,8 +715,8 @@ static void ehci_queues_rip_device(EHCIState *ehci, USBDevice *dev) EHCIQueue *q, *tmp; QTAILQ_FOREACH_SAFE(q, &ehci->queues, next, tmp) { - if (q->packet.owner == NULL || - q->packet.owner->dev != dev) { + if (!usb_packet_is_inflight(&q->packet) || + q->packet.ep->dev != dev) { continue; } ehci_free_queue(q); diff --git a/hw/usb-musb.c b/hw/usb-musb.c index ecac631..f4e52f1 100644 --- a/hw/usb-musb.c +++ b/hw/usb-musb.c @@ -811,8 +811,8 @@ static void musb_async_cancel_device(MUSBState *s, USBDevice *dev) for (ep = 0; ep < 16; ep++) { for (dir = 0; dir < 2; dir++) { - if (s->ep[ep].packey[dir].p.owner == NULL || - s->ep[ep].packey[dir].p.owner->dev != dev) { + if (!usb_packet_is_inflight(&s->ep[ep].packey[dir].p) || + s->ep[ep].packey[dir].p.ep->dev != dev) { continue; } usb_cancel_packet(&s->ep[ep].packey[dir].p); diff --git a/hw/usb-ohci.c b/hw/usb-ohci.c index e79b9a8..4e33638 100644 --- a/hw/usb-ohci.c +++ b/hw/usb-ohci.c @@ -1709,8 +1709,8 @@ static void ohci_mem_write(void *opaque, static void ohci_async_cancel_device(OHCIState *ohci, USBDevice *dev) { if (ohci->async_td && - ohci->usb_packet.owner != NULL && - ohci->usb_packet.owner->dev == dev) { + usb_packet_is_inflight(&ohci->usb_packet) && + ohci->usb_packet.ep->dev == dev) { usb_cancel_packet(&ohci->usb_packet); ohci->async_td = 0; } diff --git a/hw/usb-uhci.c b/hw/usb-uhci.c index 868ac83..341e112 100644 --- a/hw/usb-uhci.c +++ b/hw/usb-uhci.c @@ -236,8 +236,8 @@ static void uhci_async_cancel_device(UHCIState *s, USBDevice *dev) UHCIAsync *curr, *n; QTAILQ_FOREACH_SAFE(curr, &s->async_pending, next, n) { - if (curr->packet.owner == NULL || - curr->packet.owner->dev != dev) { + if (!usb_packet_is_inflight(&curr->packet) || + curr->packet.ep->dev != dev) { continue; } uhci_async_unlink(s, curr); diff --git a/hw/usb.c b/hw/usb.c index 0bf98a0..9f44565 100644 --- a/hw/usb.c +++ b/hw/usb.c @@ -298,7 +298,7 @@ int usb_handle_packet(USBDevice *dev, USBPacket *p) } assert(dev->addr == p->devaddr); assert(dev->state == USB_STATE_DEFAULT); - assert(p->owner == NULL); + assert(p->state == USB_PACKET_SETUP); if (p->devep == 0) { /* control pipe */ @@ -322,7 +322,8 @@ int usb_handle_packet(USBDevice *dev, USBPacket *p) } if (ret == USB_RET_ASYNC) { - p->owner = usb_ep_get(dev, p->pid, p->devep); + p->ep = usb_ep_get(dev, p->pid, p->devep); + p->state = USB_PACKET_ASYNC; } return ret; } @@ -332,8 +333,8 @@ int usb_handle_packet(USBDevice *dev, USBPacket *p) handle_packet. */ void usb_packet_complete(USBDevice *dev, USBPacket *p) { - assert(p->owner != NULL); - p->owner = NULL; + assert(p->state == USB_PACKET_ASYNC); + p->state = USB_PACKET_COMPLETE; dev->port->ops->complete(dev->port, p); } @@ -342,9 +343,9 @@ void usb_packet_complete(USBDevice *dev, USBPacket *p) completed. */ void usb_cancel_packet(USBPacket * p) { - assert(p->owner != NULL); - p->owner->dev->info->cancel_packet(p->owner->dev, p); - p->owner = NULL; + assert(p->state == USB_PACKET_ASYNC); + p->state = USB_PACKET_CANCELED; + p->ep->dev->info->cancel_packet(p->ep->dev, p); } @@ -355,6 +356,8 @@ void usb_packet_init(USBPacket *p) void usb_packet_setup(USBPacket *p, int pid, uint8_t addr, uint8_t ep) { + assert(!usb_packet_is_inflight(p)); + p->state = USB_PACKET_SETUP; p->pid = pid; p->devaddr = addr; p->devep = ep; @@ -398,6 +401,7 @@ void usb_packet_skip(USBPacket *p, size_t bytes) void usb_packet_cleanup(USBPacket *p) { + assert(!usb_packet_is_inflight(p)); qemu_iovec_destroy(&p->iov); } diff --git a/hw/usb.h b/hw/usb.h index 82ca924..2c834d7 100644 --- a/hw/usb.h +++ b/hw/usb.h @@ -283,8 +283,7 @@ typedef struct USBPortOps { void (*wakeup)(USBPort *port); /* * Note that port->dev will be different then the device from which - * the packet originated when a hub is involved, if you want the orginating - * device use p->owner + * the packet originated when a hub is involved. */ void (*complete)(USBPort *port, USBPacket *p); } USBPortOps; @@ -303,15 +302,24 @@ struct USBPort { typedef void USBCallback(USBPacket * packet, void *opaque); /* Structure used to hold information about an active USB packet. */ +typedef enum USBPacketState { + USB_PACKET_UNDEFINED = 0, + USB_PACKET_SETUP, + USB_PACKET_ASYNC, + USB_PACKET_COMPLETE, + USB_PACKET_CANCELED, +} USBPacketState; + struct USBPacket { /* Data fields for use by the driver. */ int pid; uint8_t devaddr; uint8_t devep; + USBEndpoint *ep; QEMUIOVector iov; int result; /* transfer length or USB_RET_* status code */ /* Internal use by the USB layer. */ - USBEndpoint *owner; + USBPacketState state; }; void usb_packet_init(USBPacket *p); @@ -323,6 +331,11 @@ void usb_packet_copy(USBPacket *p, void *ptr, size_t bytes); void usb_packet_skip(USBPacket *p, size_t bytes); void usb_packet_cleanup(USBPacket *p); +static inline bool usb_packet_is_inflight(USBPacket *p) +{ + return p->state == USB_PACKET_ASYNC; +} + USBDevice *usb_find_device(USBPort *port, uint8_t addr); int usb_handle_packet(USBDevice *dev, USBPacket *p); -- 1.7.1