2 * Linux host USB redirector
4 * Copyright (c) 2005 Fabrice Bellard
6 * Copyright (c) 2008 Max Krasnyansky
7 * Support for host device auto connect & disconnect
8 * Major rewrite to support fully async operation
10 * Copyright 2008 TJ <linux@tjworld.net>
11 * Added flexible support for /dev/bus/usb /sys/bus/usb/devices in addition
12 * to the legacy /proc/bus/usb USB device discovery and handling
14 * (c) 2012 Gerd Hoffmann <kraxel@redhat.com>
15 * Completely rewritten to use libusb instead of usbfs ioctls.
17 * Permission is hereby granted, free of charge, to any person obtaining a copy
18 * of this software and associated documentation files (the "Software"), to deal
19 * in the Software without restriction, including without limitation the rights
20 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
21 * copies of the Software, and to permit persons to whom the Software is
22 * furnished to do so, subject to the following conditions:
24 * The above copyright notice and this permission notice shall be included in
25 * all copies or substantial portions of the Software.
27 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
28 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
29 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
30 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
31 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
32 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
39 #include "qemu-common.h"
40 #include "monitor/monitor.h"
41 #include "sysemu/sysemu.h"
46 /* ------------------------------------------------------------------------ */
48 #define TYPE_USB_HOST_DEVICE "usb-host"
49 #define USB_HOST_DEVICE(obj) \
50 OBJECT_CHECK(USBHostDevice, (obj), TYPE_USB_HOST_DEVICE)
52 typedef struct USBHostDevice USBHostDevice
;
53 typedef struct USBHostRequest USBHostRequest
;
54 typedef struct USBHostIsoXfer USBHostIsoXfer
;
55 typedef struct USBHostIsoRing USBHostIsoRing
;
57 struct USBAutoFilter
{
65 enum USBHostDeviceOptions
{
66 USB_HOST_OPT_PIPELINE
,
69 struct USBHostDevice
{
73 struct USBAutoFilter match
;
75 uint32_t iso_urb_count
;
76 uint32_t iso_urb_frames
;
81 QTAILQ_ENTRY(USBHostDevice
) next
;
88 libusb_device_handle
*dh
;
89 struct libusb_device_descriptor ddesc
;
94 } ifs
[USB_MAX_INTERFACES
];
96 /* callbacks & friends */
102 QTAILQ_HEAD(, USBHostRequest
) requests
;
103 QTAILQ_HEAD(, USBHostIsoRing
) isorings
;
106 struct USBHostRequest
{
110 struct libusb_transfer
*xfer
;
111 unsigned char *buffer
;
115 QTAILQ_ENTRY(USBHostRequest
) next
;
118 struct USBHostIsoXfer
{
119 USBHostIsoRing
*ring
;
120 struct libusb_transfer
*xfer
;
123 QTAILQ_ENTRY(USBHostIsoXfer
) next
;
126 struct USBHostIsoRing
{
129 QTAILQ_HEAD(, USBHostIsoXfer
) unused
;
130 QTAILQ_HEAD(, USBHostIsoXfer
) inflight
;
131 QTAILQ_HEAD(, USBHostIsoXfer
) copy
;
132 QTAILQ_ENTRY(USBHostIsoRing
) next
;
135 static QTAILQ_HEAD(, USBHostDevice
) hostdevs
=
136 QTAILQ_HEAD_INITIALIZER(hostdevs
);
138 static void usb_host_auto_check(void *unused
);
139 static void usb_host_release_interfaces(USBHostDevice
*s
);
140 static void usb_host_nodev(USBHostDevice
*s
);
141 static void usb_host_detach_kernel(USBHostDevice
*s
);
142 static void usb_host_attach_kernel(USBHostDevice
*s
);
144 /* ------------------------------------------------------------------------ */
146 #ifndef LIBUSB_LOG_LEVEL_WARNING /* older libusb didn't define these */
147 #define LIBUSB_LOG_LEVEL_WARNING 2
150 /* ------------------------------------------------------------------------ */
152 #define CONTROL_TIMEOUT 10000 /* 10 sec */
153 #define BULK_TIMEOUT 0 /* unlimited */
154 #define INTR_TIMEOUT 0 /* unlimited */
156 #if LIBUSBX_API_VERSION >= 0x01000103
157 # define HAVE_STREAMS 1
160 static const char *speed_name
[] = {
161 [LIBUSB_SPEED_UNKNOWN
] = "?",
162 [LIBUSB_SPEED_LOW
] = "1.5",
163 [LIBUSB_SPEED_FULL
] = "12",
164 [LIBUSB_SPEED_HIGH
] = "480",
165 [LIBUSB_SPEED_SUPER
] = "5000",
168 static const unsigned int speed_map
[] = {
169 [LIBUSB_SPEED_LOW
] = USB_SPEED_LOW
,
170 [LIBUSB_SPEED_FULL
] = USB_SPEED_FULL
,
171 [LIBUSB_SPEED_HIGH
] = USB_SPEED_HIGH
,
172 [LIBUSB_SPEED_SUPER
] = USB_SPEED_SUPER
,
175 static const unsigned int status_map
[] = {
176 [LIBUSB_TRANSFER_COMPLETED
] = USB_RET_SUCCESS
,
177 [LIBUSB_TRANSFER_ERROR
] = USB_RET_IOERROR
,
178 [LIBUSB_TRANSFER_TIMED_OUT
] = USB_RET_IOERROR
,
179 [LIBUSB_TRANSFER_CANCELLED
] = USB_RET_IOERROR
,
180 [LIBUSB_TRANSFER_STALL
] = USB_RET_STALL
,
181 [LIBUSB_TRANSFER_NO_DEVICE
] = USB_RET_NODEV
,
182 [LIBUSB_TRANSFER_OVERFLOW
] = USB_RET_BABBLE
,
185 static const char *err_names
[] = {
186 [-LIBUSB_ERROR_IO
] = "IO",
187 [-LIBUSB_ERROR_INVALID_PARAM
] = "INVALID_PARAM",
188 [-LIBUSB_ERROR_ACCESS
] = "ACCESS",
189 [-LIBUSB_ERROR_NO_DEVICE
] = "NO_DEVICE",
190 [-LIBUSB_ERROR_NOT_FOUND
] = "NOT_FOUND",
191 [-LIBUSB_ERROR_BUSY
] = "BUSY",
192 [-LIBUSB_ERROR_TIMEOUT
] = "TIMEOUT",
193 [-LIBUSB_ERROR_OVERFLOW
] = "OVERFLOW",
194 [-LIBUSB_ERROR_PIPE
] = "PIPE",
195 [-LIBUSB_ERROR_INTERRUPTED
] = "INTERRUPTED",
196 [-LIBUSB_ERROR_NO_MEM
] = "NO_MEM",
197 [-LIBUSB_ERROR_NOT_SUPPORTED
] = "NOT_SUPPORTED",
198 [-LIBUSB_ERROR_OTHER
] = "OTHER",
201 static libusb_context
*ctx
;
202 static uint32_t loglevel
;
204 static void usb_host_handle_fd(void *opaque
)
206 struct timeval tv
= { 0, 0 };
207 libusb_handle_events_timeout(ctx
, &tv
);
210 static void usb_host_add_fd(int fd
, short events
, void *user_data
)
212 qemu_set_fd_handler(fd
,
213 (events
& POLLIN
) ? usb_host_handle_fd
: NULL
,
214 (events
& POLLOUT
) ? usb_host_handle_fd
: NULL
,
218 static void usb_host_del_fd(int fd
, void *user_data
)
220 qemu_set_fd_handler(fd
, NULL
, NULL
, NULL
);
223 static int usb_host_init(void)
225 const struct libusb_pollfd
**poll
;
231 rc
= libusb_init(&ctx
);
235 libusb_set_debug(ctx
, loglevel
);
237 libusb_set_pollfd_notifiers(ctx
, usb_host_add_fd
,
240 poll
= libusb_get_pollfds(ctx
);
242 for (i
= 0; poll
[i
] != NULL
; i
++) {
243 usb_host_add_fd(poll
[i
]->fd
, poll
[i
]->events
, ctx
);
250 static int usb_host_get_port(libusb_device
*dev
, char *port
, size_t len
)
256 #if LIBUSBX_API_VERSION >= 0x01000102
257 rc
= libusb_get_port_numbers(dev
, path
, 7);
259 rc
= libusb_get_port_path(ctx
, dev
, path
, 7);
264 off
= snprintf(port
, len
, "%d", path
[0]);
265 for (i
= 1; i
< rc
; i
++) {
266 off
+= snprintf(port
+off
, len
-off
, ".%d", path
[i
]);
271 static void usb_host_libusb_error(const char *func
, int rc
)
279 if (-rc
< ARRAY_SIZE(err_names
) && err_names
[-rc
]) {
280 errname
= err_names
[-rc
];
284 error_report("%s: %d [%s]", func
, rc
, errname
);
287 /* ------------------------------------------------------------------------ */
289 static bool usb_host_use_combining(USBEndpoint
*ep
)
296 if (ep
->pid
!= USB_TOKEN_IN
) {
299 type
= usb_ep_get_type(ep
->dev
, ep
->pid
, ep
->nr
);
300 if (type
!= USB_ENDPOINT_XFER_BULK
) {
306 /* ------------------------------------------------------------------------ */
308 static USBHostRequest
*usb_host_req_alloc(USBHostDevice
*s
, USBPacket
*p
,
309 bool in
, size_t bufsize
)
311 USBHostRequest
*r
= g_new0(USBHostRequest
, 1);
316 r
->xfer
= libusb_alloc_transfer(0);
318 r
->buffer
= g_malloc(bufsize
);
320 QTAILQ_INSERT_TAIL(&s
->requests
, r
, next
);
324 static void usb_host_req_free(USBHostRequest
*r
)
327 QTAILQ_REMOVE(&r
->host
->requests
, r
, next
);
329 libusb_free_transfer(r
->xfer
);
334 static USBHostRequest
*usb_host_req_find(USBHostDevice
*s
, USBPacket
*p
)
338 QTAILQ_FOREACH(r
, &s
->requests
, next
) {
346 static void usb_host_req_complete_ctrl(struct libusb_transfer
*xfer
)
348 USBHostRequest
*r
= xfer
->user_data
;
349 USBHostDevice
*s
= r
->host
;
350 bool disconnect
= (xfer
->status
== LIBUSB_TRANSFER_NO_DEVICE
);
353 goto out
; /* request was canceled */
356 r
->p
->status
= status_map
[xfer
->status
];
357 r
->p
->actual_length
= xfer
->actual_length
;
358 if (r
->in
&& xfer
->actual_length
) {
359 memcpy(r
->cbuf
, r
->buffer
+ 8, xfer
->actual_length
);
361 /* Fix up USB-3 ep0 maxpacket size to allow superspeed connected devices
362 * to work redirected to a not superspeed capable hcd */
363 if (r
->usb3ep0quirk
&& xfer
->actual_length
>= 18 &&
368 trace_usb_host_req_complete(s
->bus_num
, s
->addr
, r
->p
,
369 r
->p
->status
, r
->p
->actual_length
);
370 usb_generic_async_ctrl_complete(USB_DEVICE(s
), r
->p
);
373 usb_host_req_free(r
);
379 static void usb_host_req_complete_data(struct libusb_transfer
*xfer
)
381 USBHostRequest
*r
= xfer
->user_data
;
382 USBHostDevice
*s
= r
->host
;
383 bool disconnect
= (xfer
->status
== LIBUSB_TRANSFER_NO_DEVICE
);
386 goto out
; /* request was canceled */
389 r
->p
->status
= status_map
[xfer
->status
];
390 if (r
->in
&& xfer
->actual_length
) {
391 usb_packet_copy(r
->p
, r
->buffer
, xfer
->actual_length
);
393 trace_usb_host_req_complete(s
->bus_num
, s
->addr
, r
->p
,
394 r
->p
->status
, r
->p
->actual_length
);
395 if (usb_host_use_combining(r
->p
->ep
)) {
396 usb_combined_input_packet_complete(USB_DEVICE(s
), r
->p
);
398 usb_packet_complete(USB_DEVICE(s
), r
->p
);
402 usb_host_req_free(r
);
408 static void usb_host_req_abort(USBHostRequest
*r
)
410 USBHostDevice
*s
= r
->host
;
411 bool inflight
= (r
->p
&& r
->p
->state
== USB_PACKET_ASYNC
);
414 r
->p
->status
= USB_RET_NODEV
;
415 trace_usb_host_req_complete(s
->bus_num
, s
->addr
, r
->p
,
416 r
->p
->status
, r
->p
->actual_length
);
417 if (r
->p
->ep
->nr
== 0) {
418 usb_generic_async_ctrl_complete(USB_DEVICE(s
), r
->p
);
420 usb_packet_complete(USB_DEVICE(s
), r
->p
);
425 QTAILQ_REMOVE(&r
->host
->requests
, r
, next
);
429 libusb_cancel_transfer(r
->xfer
);
433 /* ------------------------------------------------------------------------ */
435 static void usb_host_req_complete_iso(struct libusb_transfer
*transfer
)
437 USBHostIsoXfer
*xfer
= transfer
->user_data
;
440 /* USBHostIsoXfer released while inflight */
441 g_free(transfer
->buffer
);
442 libusb_free_transfer(transfer
);
446 QTAILQ_REMOVE(&xfer
->ring
->inflight
, xfer
, next
);
447 if (QTAILQ_EMPTY(&xfer
->ring
->inflight
)) {
448 USBHostDevice
*s
= xfer
->ring
->host
;
449 trace_usb_host_iso_stop(s
->bus_num
, s
->addr
, xfer
->ring
->ep
->nr
);
451 if (xfer
->ring
->ep
->pid
== USB_TOKEN_IN
) {
452 QTAILQ_INSERT_TAIL(&xfer
->ring
->copy
, xfer
, next
);
454 QTAILQ_INSERT_TAIL(&xfer
->ring
->unused
, xfer
, next
);
458 static USBHostIsoRing
*usb_host_iso_alloc(USBHostDevice
*s
, USBEndpoint
*ep
)
460 USBHostIsoRing
*ring
= g_new0(USBHostIsoRing
, 1);
461 USBHostIsoXfer
*xfer
;
462 /* FIXME: check interval (for now assume one xfer per frame) */
463 int packets
= s
->iso_urb_frames
;
468 QTAILQ_INIT(&ring
->unused
);
469 QTAILQ_INIT(&ring
->inflight
);
470 QTAILQ_INIT(&ring
->copy
);
471 QTAILQ_INSERT_TAIL(&s
->isorings
, ring
, next
);
473 for (i
= 0; i
< s
->iso_urb_count
; i
++) {
474 xfer
= g_new0(USBHostIsoXfer
, 1);
476 xfer
->xfer
= libusb_alloc_transfer(packets
);
477 xfer
->xfer
->dev_handle
= s
->dh
;
478 xfer
->xfer
->type
= LIBUSB_TRANSFER_TYPE_ISOCHRONOUS
;
480 xfer
->xfer
->endpoint
= ring
->ep
->nr
;
481 if (ring
->ep
->pid
== USB_TOKEN_IN
) {
482 xfer
->xfer
->endpoint
|= USB_DIR_IN
;
484 xfer
->xfer
->callback
= usb_host_req_complete_iso
;
485 xfer
->xfer
->user_data
= xfer
;
487 xfer
->xfer
->num_iso_packets
= packets
;
488 xfer
->xfer
->length
= ring
->ep
->max_packet_size
* packets
;
489 xfer
->xfer
->buffer
= g_malloc0(xfer
->xfer
->length
);
491 QTAILQ_INSERT_TAIL(&ring
->unused
, xfer
, next
);
497 static USBHostIsoRing
*usb_host_iso_find(USBHostDevice
*s
, USBEndpoint
*ep
)
499 USBHostIsoRing
*ring
;
501 QTAILQ_FOREACH(ring
, &s
->isorings
, next
) {
502 if (ring
->ep
== ep
) {
509 static void usb_host_iso_reset_xfer(USBHostIsoXfer
*xfer
)
511 libusb_set_iso_packet_lengths(xfer
->xfer
,
512 xfer
->ring
->ep
->max_packet_size
);
514 xfer
->copy_complete
= false;
517 static void usb_host_iso_free_xfer(USBHostIsoXfer
*xfer
, bool inflight
)
520 xfer
->xfer
->user_data
= NULL
;
522 g_free(xfer
->xfer
->buffer
);
523 libusb_free_transfer(xfer
->xfer
);
528 static void usb_host_iso_free(USBHostIsoRing
*ring
)
530 USBHostIsoXfer
*xfer
;
532 while ((xfer
= QTAILQ_FIRST(&ring
->inflight
)) != NULL
) {
533 QTAILQ_REMOVE(&ring
->inflight
, xfer
, next
);
534 usb_host_iso_free_xfer(xfer
, true);
536 while ((xfer
= QTAILQ_FIRST(&ring
->unused
)) != NULL
) {
537 QTAILQ_REMOVE(&ring
->unused
, xfer
, next
);
538 usb_host_iso_free_xfer(xfer
, false);
540 while ((xfer
= QTAILQ_FIRST(&ring
->copy
)) != NULL
) {
541 QTAILQ_REMOVE(&ring
->copy
, xfer
, next
);
542 usb_host_iso_free_xfer(xfer
, false);
545 QTAILQ_REMOVE(&ring
->host
->isorings
, ring
, next
);
549 static void usb_host_iso_free_all(USBHostDevice
*s
)
551 USBHostIsoRing
*ring
;
553 while ((ring
= QTAILQ_FIRST(&s
->isorings
)) != NULL
) {
554 usb_host_iso_free(ring
);
558 static bool usb_host_iso_data_copy(USBHostIsoXfer
*xfer
, USBPacket
*p
)
563 buf
= libusb_get_iso_packet_buffer_simple(xfer
->xfer
, xfer
->packet
);
564 if (p
->pid
== USB_TOKEN_OUT
) {
566 if (psize
> xfer
->ring
->ep
->max_packet_size
) {
567 /* should not happen (guest bug) */
568 psize
= xfer
->ring
->ep
->max_packet_size
;
570 xfer
->xfer
->iso_packet_desc
[xfer
->packet
].length
= psize
;
572 psize
= xfer
->xfer
->iso_packet_desc
[xfer
->packet
].actual_length
;
573 if (psize
> p
->iov
.size
) {
574 /* should not happen (guest bug) */
578 usb_packet_copy(p
, buf
, psize
);
580 xfer
->copy_complete
= (xfer
->packet
== xfer
->xfer
->num_iso_packets
);
581 return xfer
->copy_complete
;
584 static void usb_host_iso_data_in(USBHostDevice
*s
, USBPacket
*p
)
586 USBHostIsoRing
*ring
;
587 USBHostIsoXfer
*xfer
;
588 bool disconnect
= false;
591 ring
= usb_host_iso_find(s
, p
->ep
);
593 ring
= usb_host_iso_alloc(s
, p
->ep
);
596 /* copy data to guest */
597 xfer
= QTAILQ_FIRST(&ring
->copy
);
599 if (usb_host_iso_data_copy(xfer
, p
)) {
600 QTAILQ_REMOVE(&ring
->copy
, xfer
, next
);
601 QTAILQ_INSERT_TAIL(&ring
->unused
, xfer
, next
);
605 /* submit empty bufs to host */
606 while ((xfer
= QTAILQ_FIRST(&ring
->unused
)) != NULL
) {
607 QTAILQ_REMOVE(&ring
->unused
, xfer
, next
);
608 usb_host_iso_reset_xfer(xfer
);
609 rc
= libusb_submit_transfer(xfer
->xfer
);
611 usb_host_libusb_error("libusb_submit_transfer [iso]", rc
);
612 QTAILQ_INSERT_TAIL(&ring
->unused
, xfer
, next
);
613 if (rc
== LIBUSB_ERROR_NO_DEVICE
) {
618 if (QTAILQ_EMPTY(&ring
->inflight
)) {
619 trace_usb_host_iso_start(s
->bus_num
, s
->addr
, p
->ep
->nr
);
621 QTAILQ_INSERT_TAIL(&ring
->inflight
, xfer
, next
);
629 static void usb_host_iso_data_out(USBHostDevice
*s
, USBPacket
*p
)
631 USBHostIsoRing
*ring
;
632 USBHostIsoXfer
*xfer
;
633 bool disconnect
= false;
636 ring
= usb_host_iso_find(s
, p
->ep
);
638 ring
= usb_host_iso_alloc(s
, p
->ep
);
641 /* copy data from guest */
642 xfer
= QTAILQ_FIRST(&ring
->copy
);
643 while (xfer
!= NULL
&& xfer
->copy_complete
) {
645 xfer
= QTAILQ_NEXT(xfer
, next
);
648 xfer
= QTAILQ_FIRST(&ring
->unused
);
650 trace_usb_host_iso_out_of_bufs(s
->bus_num
, s
->addr
, p
->ep
->nr
);
653 QTAILQ_REMOVE(&ring
->unused
, xfer
, next
);
654 usb_host_iso_reset_xfer(xfer
);
655 QTAILQ_INSERT_TAIL(&ring
->copy
, xfer
, next
);
657 usb_host_iso_data_copy(xfer
, p
);
659 if (QTAILQ_EMPTY(&ring
->inflight
)) {
660 /* wait until half of our buffers are filled
661 before kicking the iso out stream */
662 if (filled
*2 < s
->iso_urb_count
) {
667 /* submit filled bufs to host */
668 while ((xfer
= QTAILQ_FIRST(&ring
->copy
)) != NULL
&&
669 xfer
->copy_complete
) {
670 QTAILQ_REMOVE(&ring
->copy
, xfer
, next
);
671 rc
= libusb_submit_transfer(xfer
->xfer
);
673 usb_host_libusb_error("libusb_submit_transfer [iso]", rc
);
674 QTAILQ_INSERT_TAIL(&ring
->unused
, xfer
, next
);
675 if (rc
== LIBUSB_ERROR_NO_DEVICE
) {
680 if (QTAILQ_EMPTY(&ring
->inflight
)) {
681 trace_usb_host_iso_start(s
->bus_num
, s
->addr
, p
->ep
->nr
);
683 QTAILQ_INSERT_TAIL(&ring
->inflight
, xfer
, next
);
691 /* ------------------------------------------------------------------------ */
693 static void usb_host_speed_compat(USBHostDevice
*s
)
695 USBDevice
*udev
= USB_DEVICE(s
);
696 struct libusb_config_descriptor
*conf
;
697 const struct libusb_interface_descriptor
*intf
;
698 const struct libusb_endpoint_descriptor
*endp
;
700 struct libusb_ss_endpoint_companion_descriptor
*endp_ss_comp
;
702 bool compat_high
= true;
703 bool compat_full
= true;
708 rc
= libusb_get_config_descriptor(s
->dev
, c
, &conf
);
712 for (i
= 0; i
< conf
->bNumInterfaces
; i
++) {
713 for (a
= 0; a
< conf
->interface
[i
].num_altsetting
; a
++) {
714 intf
= &conf
->interface
[i
].altsetting
[a
];
715 for (e
= 0; e
< intf
->bNumEndpoints
; e
++) {
716 endp
= &intf
->endpoint
[e
];
717 type
= endp
->bmAttributes
& 0x3;
723 case 0x02: /* BULK */
725 rc
= libusb_get_ss_endpoint_companion_descriptor
726 (ctx
, endp
, &endp_ss_comp
);
727 if (rc
== LIBUSB_SUCCESS
) {
728 libusb_free_ss_endpoint_companion_descriptor
735 case 0x03: /* INTERRUPT */
736 if (endp
->wMaxPacketSize
> 64) {
739 if (endp
->wMaxPacketSize
> 1024) {
747 libusb_free_config_descriptor(conf
);
750 udev
->speedmask
= (1 << udev
->speed
);
751 if (udev
->speed
== USB_SPEED_SUPER
&& compat_high
) {
752 udev
->speedmask
|= USB_SPEED_MASK_HIGH
;
754 if (udev
->speed
== USB_SPEED_SUPER
&& compat_full
) {
755 udev
->speedmask
|= USB_SPEED_MASK_FULL
;
757 if (udev
->speed
== USB_SPEED_HIGH
&& compat_full
) {
758 udev
->speedmask
|= USB_SPEED_MASK_FULL
;
762 static void usb_host_ep_update(USBHostDevice
*s
)
764 static const char *tname
[] = {
765 [USB_ENDPOINT_XFER_CONTROL
] = "control",
766 [USB_ENDPOINT_XFER_ISOC
] = "isoc",
767 [USB_ENDPOINT_XFER_BULK
] = "bulk",
768 [USB_ENDPOINT_XFER_INT
] = "int",
770 USBDevice
*udev
= USB_DEVICE(s
);
771 struct libusb_config_descriptor
*conf
;
772 const struct libusb_interface_descriptor
*intf
;
773 const struct libusb_endpoint_descriptor
*endp
;
775 struct libusb_ss_endpoint_companion_descriptor
*endp_ss_comp
;
782 rc
= libusb_get_active_config_descriptor(s
->dev
, &conf
);
786 trace_usb_host_parse_config(s
->bus_num
, s
->addr
,
787 conf
->bConfigurationValue
, true);
789 for (i
= 0; i
< conf
->bNumInterfaces
; i
++) {
790 assert(udev
->altsetting
[i
] < conf
->interface
[i
].num_altsetting
);
791 intf
= &conf
->interface
[i
].altsetting
[udev
->altsetting
[i
]];
792 trace_usb_host_parse_interface(s
->bus_num
, s
->addr
,
793 intf
->bInterfaceNumber
,
794 intf
->bAlternateSetting
, true);
795 for (e
= 0; e
< intf
->bNumEndpoints
; e
++) {
796 endp
= &intf
->endpoint
[e
];
798 devep
= endp
->bEndpointAddress
;
799 pid
= (devep
& USB_DIR_IN
) ? USB_TOKEN_IN
: USB_TOKEN_OUT
;
801 type
= endp
->bmAttributes
& 0x3;
804 trace_usb_host_parse_error(s
->bus_num
, s
->addr
,
805 "invalid endpoint address");
808 if (usb_ep_get_type(udev
, pid
, ep
) != USB_ENDPOINT_XFER_INVALID
) {
809 trace_usb_host_parse_error(s
->bus_num
, s
->addr
,
810 "duplicate endpoint address");
814 trace_usb_host_parse_endpoint(s
->bus_num
, s
->addr
, ep
,
815 (devep
& USB_DIR_IN
) ? "in" : "out",
817 usb_ep_set_max_packet_size(udev
, pid
, ep
,
818 endp
->wMaxPacketSize
);
819 usb_ep_set_type(udev
, pid
, ep
, type
);
820 usb_ep_set_ifnum(udev
, pid
, ep
, i
);
821 usb_ep_set_halted(udev
, pid
, ep
, 0);
823 if (type
== LIBUSB_TRANSFER_TYPE_BULK
&&
824 libusb_get_ss_endpoint_companion_descriptor(ctx
, endp
,
825 &endp_ss_comp
) == LIBUSB_SUCCESS
) {
826 usb_ep_set_max_streams(udev
, pid
, ep
,
827 endp_ss_comp
->bmAttributes
);
828 libusb_free_ss_endpoint_companion_descriptor(endp_ss_comp
);
834 libusb_free_config_descriptor(conf
);
837 static int usb_host_open(USBHostDevice
*s
, libusb_device
*dev
)
839 USBDevice
*udev
= USB_DEVICE(s
);
840 int bus_num
= libusb_get_bus_number(dev
);
841 int addr
= libusb_get_device_address(dev
);
843 Error
*local_err
= NULL
;
845 trace_usb_host_open_started(bus_num
, addr
);
850 rc
= libusb_open(dev
, &s
->dh
);
856 s
->bus_num
= bus_num
;
859 usb_host_detach_kernel(s
);
861 libusb_get_device_descriptor(dev
, &s
->ddesc
);
862 usb_host_get_port(s
->dev
, s
->port
, sizeof(s
->port
));
865 usb_host_ep_update(s
);
867 udev
->speed
= speed_map
[libusb_get_device_speed(dev
)];
868 usb_host_speed_compat(s
);
870 if (s
->ddesc
.iProduct
) {
871 libusb_get_string_descriptor_ascii(s
->dh
, s
->ddesc
.iProduct
,
872 (unsigned char *)udev
->product_desc
,
873 sizeof(udev
->product_desc
));
875 snprintf(udev
->product_desc
, sizeof(udev
->product_desc
),
876 "host:%d.%d", bus_num
, addr
);
879 usb_device_attach(udev
, &local_err
);
881 error_report("%s", error_get_pretty(local_err
));
882 error_free(local_err
);
886 trace_usb_host_open_success(bus_num
, addr
);
890 trace_usb_host_open_failure(bus_num
, addr
);
899 static void usb_host_abort_xfers(USBHostDevice
*s
)
901 USBHostRequest
*r
, *rtmp
;
903 QTAILQ_FOREACH_SAFE(r
, &s
->requests
, next
, rtmp
) {
904 usb_host_req_abort(r
);
908 static int usb_host_close(USBHostDevice
*s
)
910 USBDevice
*udev
= USB_DEVICE(s
);
916 trace_usb_host_close(s
->bus_num
, s
->addr
);
918 usb_host_abort_xfers(s
);
919 usb_host_iso_free_all(s
);
921 if (udev
->attached
) {
922 usb_device_detach(udev
);
925 usb_host_release_interfaces(s
);
926 libusb_reset_device(s
->dh
);
927 usb_host_attach_kernel(s
);
932 usb_host_auto_check(NULL
);
936 static void usb_host_nodev_bh(void *opaque
)
938 USBHostDevice
*s
= opaque
;
942 static void usb_host_nodev(USBHostDevice
*s
)
945 s
->bh_nodev
= qemu_bh_new(usb_host_nodev_bh
, s
);
947 qemu_bh_schedule(s
->bh_nodev
);
950 static void usb_host_exit_notifier(struct Notifier
*n
, void *data
)
952 USBHostDevice
*s
= container_of(n
, USBHostDevice
, exit
);
955 usb_host_release_interfaces(s
);
956 usb_host_attach_kernel(s
);
960 static void usb_host_realize(USBDevice
*udev
, Error
**errp
)
962 USBHostDevice
*s
= USB_HOST_DEVICE(udev
);
964 if (s
->match
.vendor_id
> 0xffff) {
965 error_setg(errp
, "vendorid out of range");
968 if (s
->match
.product_id
> 0xffff) {
969 error_setg(errp
, "productid out of range");
972 if (s
->match
.addr
> 127) {
973 error_setg(errp
, "hostaddr out of range");
977 loglevel
= s
->loglevel
;
978 udev
->flags
|= (1 << USB_DEV_FLAG_IS_HOST
);
979 udev
->auto_attach
= 0;
980 QTAILQ_INIT(&s
->requests
);
981 QTAILQ_INIT(&s
->isorings
);
983 s
->exit
.notify
= usb_host_exit_notifier
;
984 qemu_add_exit_notifier(&s
->exit
);
986 QTAILQ_INSERT_TAIL(&hostdevs
, s
, next
);
987 usb_host_auto_check(NULL
);
990 static void usb_host_instance_init(Object
*obj
)
992 USBDevice
*udev
= USB_DEVICE(obj
);
993 USBHostDevice
*s
= USB_HOST_DEVICE(udev
);
995 device_add_bootindex_property(obj
, &s
->bootindex
,
1000 static void usb_host_handle_destroy(USBDevice
*udev
)
1002 USBHostDevice
*s
= USB_HOST_DEVICE(udev
);
1004 qemu_remove_exit_notifier(&s
->exit
);
1005 QTAILQ_REMOVE(&hostdevs
, s
, next
);
1009 static void usb_host_cancel_packet(USBDevice
*udev
, USBPacket
*p
)
1011 USBHostDevice
*s
= USB_HOST_DEVICE(udev
);
1015 usb_combined_packet_cancel(udev
, p
);
1019 trace_usb_host_req_canceled(s
->bus_num
, s
->addr
, p
);
1021 r
= usb_host_req_find(s
, p
);
1023 r
->p
= NULL
; /* mark as dead */
1024 libusb_cancel_transfer(r
->xfer
);
1028 static void usb_host_detach_kernel(USBHostDevice
*s
)
1030 struct libusb_config_descriptor
*conf
;
1033 rc
= libusb_get_active_config_descriptor(s
->dev
, &conf
);
1037 for (i
= 0; i
< conf
->bNumInterfaces
; i
++) {
1038 rc
= libusb_kernel_driver_active(s
->dh
, i
);
1039 usb_host_libusb_error("libusb_kernel_driver_active", rc
);
1043 trace_usb_host_detach_kernel(s
->bus_num
, s
->addr
, i
);
1044 rc
= libusb_detach_kernel_driver(s
->dh
, i
);
1045 usb_host_libusb_error("libusb_detach_kernel_driver", rc
);
1046 s
->ifs
[i
].detached
= true;
1048 libusb_free_config_descriptor(conf
);
1051 static void usb_host_attach_kernel(USBHostDevice
*s
)
1053 struct libusb_config_descriptor
*conf
;
1056 rc
= libusb_get_active_config_descriptor(s
->dev
, &conf
);
1060 for (i
= 0; i
< conf
->bNumInterfaces
; i
++) {
1061 if (!s
->ifs
[i
].detached
) {
1064 trace_usb_host_attach_kernel(s
->bus_num
, s
->addr
, i
);
1065 libusb_attach_kernel_driver(s
->dh
, i
);
1066 s
->ifs
[i
].detached
= false;
1068 libusb_free_config_descriptor(conf
);
1071 static int usb_host_claim_interfaces(USBHostDevice
*s
, int configuration
)
1073 USBDevice
*udev
= USB_DEVICE(s
);
1074 struct libusb_config_descriptor
*conf
;
1077 for (i
= 0; i
< USB_MAX_INTERFACES
; i
++) {
1078 udev
->altsetting
[i
] = 0;
1080 udev
->ninterfaces
= 0;
1081 udev
->configuration
= 0;
1083 usb_host_detach_kernel(s
);
1085 rc
= libusb_get_active_config_descriptor(s
->dev
, &conf
);
1087 if (rc
== LIBUSB_ERROR_NOT_FOUND
) {
1088 /* address state - ignore */
1089 return USB_RET_SUCCESS
;
1091 return USB_RET_STALL
;
1094 for (i
= 0; i
< conf
->bNumInterfaces
; i
++) {
1095 trace_usb_host_claim_interface(s
->bus_num
, s
->addr
, configuration
, i
);
1096 rc
= libusb_claim_interface(s
->dh
, i
);
1097 usb_host_libusb_error("libusb_claim_interface", rc
);
1099 return USB_RET_STALL
;
1101 s
->ifs
[i
].claimed
= true;
1104 udev
->ninterfaces
= conf
->bNumInterfaces
;
1105 udev
->configuration
= configuration
;
1107 libusb_free_config_descriptor(conf
);
1108 return USB_RET_SUCCESS
;
1111 static void usb_host_release_interfaces(USBHostDevice
*s
)
1113 USBDevice
*udev
= USB_DEVICE(s
);
1116 for (i
= 0; i
< udev
->ninterfaces
; i
++) {
1117 if (!s
->ifs
[i
].claimed
) {
1120 trace_usb_host_release_interface(s
->bus_num
, s
->addr
, i
);
1121 rc
= libusb_release_interface(s
->dh
, i
);
1122 usb_host_libusb_error("libusb_release_interface", rc
);
1123 s
->ifs
[i
].claimed
= false;
1127 static void usb_host_set_address(USBHostDevice
*s
, int addr
)
1129 USBDevice
*udev
= USB_DEVICE(s
);
1131 trace_usb_host_set_address(s
->bus_num
, s
->addr
, addr
);
1135 static void usb_host_set_config(USBHostDevice
*s
, int config
, USBPacket
*p
)
1139 trace_usb_host_set_config(s
->bus_num
, s
->addr
, config
);
1141 usb_host_release_interfaces(s
);
1142 rc
= libusb_set_configuration(s
->dh
, config
);
1144 usb_host_libusb_error("libusb_set_configuration", rc
);
1145 p
->status
= USB_RET_STALL
;
1146 if (rc
== LIBUSB_ERROR_NO_DEVICE
) {
1151 p
->status
= usb_host_claim_interfaces(s
, config
);
1152 if (p
->status
!= USB_RET_SUCCESS
) {
1155 usb_host_ep_update(s
);
1158 static void usb_host_set_interface(USBHostDevice
*s
, int iface
, int alt
,
1161 USBDevice
*udev
= USB_DEVICE(s
);
1164 trace_usb_host_set_interface(s
->bus_num
, s
->addr
, iface
, alt
);
1166 usb_host_iso_free_all(s
);
1168 if (iface
>= USB_MAX_INTERFACES
) {
1169 p
->status
= USB_RET_STALL
;
1173 rc
= libusb_set_interface_alt_setting(s
->dh
, iface
, alt
);
1175 usb_host_libusb_error("libusb_set_interface_alt_setting", rc
);
1176 p
->status
= USB_RET_STALL
;
1177 if (rc
== LIBUSB_ERROR_NO_DEVICE
) {
1183 udev
->altsetting
[iface
] = alt
;
1184 usb_host_ep_update(s
);
1187 static void usb_host_handle_control(USBDevice
*udev
, USBPacket
*p
,
1188 int request
, int value
, int index
,
1189 int length
, uint8_t *data
)
1191 USBHostDevice
*s
= USB_HOST_DEVICE(udev
);
1195 trace_usb_host_req_control(s
->bus_num
, s
->addr
, p
, request
, value
, index
);
1197 if (s
->dh
== NULL
) {
1198 p
->status
= USB_RET_NODEV
;
1199 trace_usb_host_req_emulated(s
->bus_num
, s
->addr
, p
, p
->status
);
1204 case DeviceOutRequest
| USB_REQ_SET_ADDRESS
:
1205 usb_host_set_address(s
, value
);
1206 trace_usb_host_req_emulated(s
->bus_num
, s
->addr
, p
, p
->status
);
1209 case DeviceOutRequest
| USB_REQ_SET_CONFIGURATION
:
1210 usb_host_set_config(s
, value
& 0xff, p
);
1211 trace_usb_host_req_emulated(s
->bus_num
, s
->addr
, p
, p
->status
);
1214 case InterfaceOutRequest
| USB_REQ_SET_INTERFACE
:
1215 usb_host_set_interface(s
, index
, value
, p
);
1216 trace_usb_host_req_emulated(s
->bus_num
, s
->addr
, p
, p
->status
);
1219 case EndpointOutRequest
| USB_REQ_CLEAR_FEATURE
:
1220 if (value
== 0) { /* clear halt */
1221 int pid
= (index
& USB_DIR_IN
) ? USB_TOKEN_IN
: USB_TOKEN_OUT
;
1222 libusb_clear_halt(s
->dh
, index
);
1223 usb_ep_set_halted(udev
, pid
, index
& 0x0f, 0);
1224 trace_usb_host_req_emulated(s
->bus_num
, s
->addr
, p
, p
->status
);
1229 r
= usb_host_req_alloc(s
, p
, (request
>> 8) & USB_DIR_IN
, length
+ 8);
1232 memcpy(r
->buffer
, udev
->setup_buf
, 8);
1234 memcpy(r
->buffer
+ 8, r
->cbuf
, r
->clen
);
1237 /* Fix up USB-3 ep0 maxpacket size to allow superspeed connected devices
1238 * to work redirected to a not superspeed capable hcd */
1239 if (udev
->speed
== USB_SPEED_SUPER
&&
1240 !(udev
->port
->speedmask
& USB_SPEED_MASK_SUPER
) &&
1241 request
== 0x8006 && value
== 0x100 && index
== 0) {
1242 r
->usb3ep0quirk
= true;
1245 libusb_fill_control_transfer(r
->xfer
, s
->dh
, r
->buffer
,
1246 usb_host_req_complete_ctrl
, r
,
1248 rc
= libusb_submit_transfer(r
->xfer
);
1250 p
->status
= USB_RET_NODEV
;
1251 trace_usb_host_req_complete(s
->bus_num
, s
->addr
, p
,
1252 p
->status
, p
->actual_length
);
1253 if (rc
== LIBUSB_ERROR_NO_DEVICE
) {
1259 p
->status
= USB_RET_ASYNC
;
1262 static void usb_host_handle_data(USBDevice
*udev
, USBPacket
*p
)
1264 USBHostDevice
*s
= USB_HOST_DEVICE(udev
);
1269 if (usb_host_use_combining(p
->ep
) && p
->state
== USB_PACKET_SETUP
) {
1270 p
->status
= USB_RET_ADD_TO_QUEUE
;
1274 trace_usb_host_req_data(s
->bus_num
, s
->addr
, p
,
1275 p
->pid
== USB_TOKEN_IN
,
1276 p
->ep
->nr
, p
->iov
.size
);
1278 if (s
->dh
== NULL
) {
1279 p
->status
= USB_RET_NODEV
;
1280 trace_usb_host_req_emulated(s
->bus_num
, s
->addr
, p
, p
->status
);
1283 if (p
->ep
->halted
) {
1284 p
->status
= USB_RET_STALL
;
1285 trace_usb_host_req_emulated(s
->bus_num
, s
->addr
, p
, p
->status
);
1289 switch (usb_ep_get_type(udev
, p
->pid
, p
->ep
->nr
)) {
1290 case USB_ENDPOINT_XFER_BULK
:
1291 size
= usb_packet_size(p
);
1292 r
= usb_host_req_alloc(s
, p
, p
->pid
== USB_TOKEN_IN
, size
);
1294 usb_packet_copy(p
, r
->buffer
, size
);
1296 ep
= p
->ep
->nr
| (r
->in
? USB_DIR_IN
: 0);
1299 libusb_fill_bulk_stream_transfer(r
->xfer
, s
->dh
, ep
, p
->stream
,
1301 usb_host_req_complete_data
, r
,
1304 usb_host_req_free(r
);
1305 p
->status
= USB_RET_STALL
;
1309 libusb_fill_bulk_transfer(r
->xfer
, s
->dh
, ep
,
1311 usb_host_req_complete_data
, r
,
1315 case USB_ENDPOINT_XFER_INT
:
1316 r
= usb_host_req_alloc(s
, p
, p
->pid
== USB_TOKEN_IN
, p
->iov
.size
);
1318 usb_packet_copy(p
, r
->buffer
, p
->iov
.size
);
1320 ep
= p
->ep
->nr
| (r
->in
? USB_DIR_IN
: 0);
1321 libusb_fill_interrupt_transfer(r
->xfer
, s
->dh
, ep
,
1322 r
->buffer
, p
->iov
.size
,
1323 usb_host_req_complete_data
, r
,
1326 case USB_ENDPOINT_XFER_ISOC
:
1327 if (p
->pid
== USB_TOKEN_IN
) {
1328 usb_host_iso_data_in(s
, p
);
1330 usb_host_iso_data_out(s
, p
);
1332 trace_usb_host_req_complete(s
->bus_num
, s
->addr
, p
,
1333 p
->status
, p
->actual_length
);
1336 p
->status
= USB_RET_STALL
;
1337 trace_usb_host_req_complete(s
->bus_num
, s
->addr
, p
,
1338 p
->status
, p
->actual_length
);
1342 rc
= libusb_submit_transfer(r
->xfer
);
1344 p
->status
= USB_RET_NODEV
;
1345 trace_usb_host_req_complete(s
->bus_num
, s
->addr
, p
,
1346 p
->status
, p
->actual_length
);
1347 if (rc
== LIBUSB_ERROR_NO_DEVICE
) {
1353 p
->status
= USB_RET_ASYNC
;
1356 static void usb_host_flush_ep_queue(USBDevice
*dev
, USBEndpoint
*ep
)
1358 if (usb_host_use_combining(ep
)) {
1359 usb_ep_combine_input_packets(ep
);
1363 static void usb_host_handle_reset(USBDevice
*udev
)
1365 USBHostDevice
*s
= USB_HOST_DEVICE(udev
);
1368 trace_usb_host_reset(s
->bus_num
, s
->addr
);
1370 rc
= libusb_reset_device(s
->dh
);
1376 static int usb_host_alloc_streams(USBDevice
*udev
, USBEndpoint
**eps
,
1377 int nr_eps
, int streams
)
1380 USBHostDevice
*s
= USB_HOST_DEVICE(udev
);
1381 unsigned char endpoints
[30];
1384 for (i
= 0; i
< nr_eps
; i
++) {
1385 endpoints
[i
] = eps
[i
]->nr
;
1386 if (eps
[i
]->pid
== USB_TOKEN_IN
) {
1387 endpoints
[i
] |= 0x80;
1390 rc
= libusb_alloc_streams(s
->dh
, streams
, endpoints
, nr_eps
);
1392 usb_host_libusb_error("libusb_alloc_streams", rc
);
1393 } else if (rc
!= streams
) {
1394 error_report("libusb_alloc_streams: got less streams "
1395 "then requested %d < %d", rc
, streams
);
1398 return (rc
== streams
) ? 0 : -1;
1400 error_report("libusb_alloc_streams: error not implemented");
1405 static void usb_host_free_streams(USBDevice
*udev
, USBEndpoint
**eps
,
1409 USBHostDevice
*s
= USB_HOST_DEVICE(udev
);
1410 unsigned char endpoints
[30];
1413 for (i
= 0; i
< nr_eps
; i
++) {
1414 endpoints
[i
] = eps
[i
]->nr
;
1415 if (eps
[i
]->pid
== USB_TOKEN_IN
) {
1416 endpoints
[i
] |= 0x80;
1419 libusb_free_streams(s
->dh
, endpoints
, nr_eps
);
1424 * This is *NOT* about restoring state. We have absolutely no idea
1425 * what state the host device is in at the moment and whenever it is
1426 * still present in the first place. Attemping to contine where we
1427 * left off is impossible.
1429 * What we are going to to to here is emulate a surprise removal of
1430 * the usb device passed through, then kick host scan so the device
1431 * will get re-attached (and re-initialized by the guest) in case it
1434 * As the device removal will change the state of other devices (usb
1435 * host controller, most likely interrupt controller too) we have to
1436 * wait with it until *all* vmstate is loaded. Thus post_load just
1437 * kicks a bottom half which then does the actual work.
1439 static void usb_host_post_load_bh(void *opaque
)
1441 USBHostDevice
*dev
= opaque
;
1442 USBDevice
*udev
= USB_DEVICE(dev
);
1444 if (dev
->dh
!= NULL
) {
1445 usb_host_close(dev
);
1447 if (udev
->attached
) {
1448 usb_device_detach(udev
);
1450 usb_host_auto_check(NULL
);
1453 static int usb_host_post_load(void *opaque
, int version_id
)
1455 USBHostDevice
*dev
= opaque
;
1457 if (!dev
->bh_postld
) {
1458 dev
->bh_postld
= qemu_bh_new(usb_host_post_load_bh
, dev
);
1460 qemu_bh_schedule(dev
->bh_postld
);
1464 static const VMStateDescription vmstate_usb_host
= {
1467 .minimum_version_id
= 1,
1468 .post_load
= usb_host_post_load
,
1469 .fields
= (VMStateField
[]) {
1470 VMSTATE_USB_DEVICE(parent_obj
, USBHostDevice
),
1471 VMSTATE_END_OF_LIST()
1475 static Property usb_host_dev_properties
[] = {
1476 DEFINE_PROP_UINT32("hostbus", USBHostDevice
, match
.bus_num
, 0),
1477 DEFINE_PROP_UINT32("hostaddr", USBHostDevice
, match
.addr
, 0),
1478 DEFINE_PROP_STRING("hostport", USBHostDevice
, match
.port
),
1479 DEFINE_PROP_UINT32("vendorid", USBHostDevice
, match
.vendor_id
, 0),
1480 DEFINE_PROP_UINT32("productid", USBHostDevice
, match
.product_id
, 0),
1481 DEFINE_PROP_UINT32("isobufs", USBHostDevice
, iso_urb_count
, 4),
1482 DEFINE_PROP_UINT32("isobsize", USBHostDevice
, iso_urb_frames
, 32),
1483 DEFINE_PROP_UINT32("loglevel", USBHostDevice
, loglevel
,
1484 LIBUSB_LOG_LEVEL_WARNING
),
1485 DEFINE_PROP_BIT("pipeline", USBHostDevice
, options
,
1486 USB_HOST_OPT_PIPELINE
, true),
1487 DEFINE_PROP_END_OF_LIST(),
1490 static void usb_host_class_initfn(ObjectClass
*klass
, void *data
)
1492 DeviceClass
*dc
= DEVICE_CLASS(klass
);
1493 USBDeviceClass
*uc
= USB_DEVICE_CLASS(klass
);
1495 uc
->realize
= usb_host_realize
;
1496 uc
->product_desc
= "USB Host Device";
1497 uc
->cancel_packet
= usb_host_cancel_packet
;
1498 uc
->handle_data
= usb_host_handle_data
;
1499 uc
->handle_control
= usb_host_handle_control
;
1500 uc
->handle_reset
= usb_host_handle_reset
;
1501 uc
->handle_destroy
= usb_host_handle_destroy
;
1502 uc
->flush_ep_queue
= usb_host_flush_ep_queue
;
1503 uc
->alloc_streams
= usb_host_alloc_streams
;
1504 uc
->free_streams
= usb_host_free_streams
;
1505 dc
->vmsd
= &vmstate_usb_host
;
1506 dc
->props
= usb_host_dev_properties
;
1507 set_bit(DEVICE_CATEGORY_BRIDGE
, dc
->categories
);
1510 static TypeInfo usb_host_dev_info
= {
1511 .name
= TYPE_USB_HOST_DEVICE
,
1512 .parent
= TYPE_USB_DEVICE
,
1513 .instance_size
= sizeof(USBHostDevice
),
1514 .class_init
= usb_host_class_initfn
,
1515 .instance_init
= usb_host_instance_init
,
1518 static void usb_host_register_types(void)
1520 type_register_static(&usb_host_dev_info
);
1523 type_init(usb_host_register_types
)
1525 /* ------------------------------------------------------------------------ */
1527 static QEMUTimer
*usb_auto_timer
;
1528 static VMChangeStateEntry
*usb_vmstate
;
1530 static void usb_host_vm_state(void *unused
, int running
, RunState state
)
1533 usb_host_auto_check(unused
);
1537 static void usb_host_auto_check(void *unused
)
1539 struct USBHostDevice
*s
;
1540 struct USBAutoFilter
*f
;
1541 libusb_device
**devs
= NULL
;
1542 struct libusb_device_descriptor ddesc
;
1543 int unconnected
= 0;
1546 if (usb_host_init() != 0) {
1550 if (runstate_is_running()) {
1551 n
= libusb_get_device_list(ctx
, &devs
);
1552 for (i
= 0; i
< n
; i
++) {
1553 if (libusb_get_device_descriptor(devs
[i
], &ddesc
) != 0) {
1556 if (ddesc
.bDeviceClass
== LIBUSB_CLASS_HUB
) {
1559 QTAILQ_FOREACH(s
, &hostdevs
, next
) {
1561 if (f
->bus_num
> 0 &&
1562 f
->bus_num
!= libusb_get_bus_number(devs
[i
])) {
1566 f
->addr
!= libusb_get_device_address(devs
[i
])) {
1569 if (f
->port
!= NULL
) {
1570 char port
[16] = "-";
1571 usb_host_get_port(devs
[i
], port
, sizeof(port
));
1572 if (strcmp(f
->port
, port
) != 0) {
1576 if (f
->vendor_id
> 0 &&
1577 f
->vendor_id
!= ddesc
.idVendor
) {
1580 if (f
->product_id
> 0 &&
1581 f
->product_id
!= ddesc
.idProduct
) {
1585 /* We got a match */
1587 if (s
->errcount
>= 3) {
1590 if (s
->dh
!= NULL
) {
1593 if (usb_host_open(s
, devs
[i
]) < 0) {
1600 libusb_free_device_list(devs
, 1);
1602 QTAILQ_FOREACH(s
, &hostdevs
, next
) {
1603 if (s
->dh
== NULL
) {
1616 if (unconnected
== 0) {
1617 /* nothing to watch */
1618 if (usb_auto_timer
) {
1619 timer_del(usb_auto_timer
);
1620 trace_usb_host_auto_scan_disabled();
1628 usb_vmstate
= qemu_add_vm_change_state_handler(usb_host_vm_state
, NULL
);
1630 if (!usb_auto_timer
) {
1631 usb_auto_timer
= timer_new_ms(QEMU_CLOCK_REALTIME
, usb_host_auto_check
, NULL
);
1632 if (!usb_auto_timer
) {
1635 trace_usb_host_auto_scan_enabled();
1637 timer_mod(usb_auto_timer
, qemu_clock_get_ms(QEMU_CLOCK_REALTIME
) + 2000);
1640 void usb_host_info(Monitor
*mon
, const QDict
*qdict
)
1642 libusb_device
**devs
= NULL
;
1643 struct libusb_device_descriptor ddesc
;
1647 if (usb_host_init() != 0) {
1651 n
= libusb_get_device_list(ctx
, &devs
);
1652 for (i
= 0; i
< n
; i
++) {
1653 if (libusb_get_device_descriptor(devs
[i
], &ddesc
) != 0) {
1656 if (ddesc
.bDeviceClass
== LIBUSB_CLASS_HUB
) {
1659 usb_host_get_port(devs
[i
], port
, sizeof(port
));
1660 monitor_printf(mon
, " Bus %d, Addr %d, Port %s, Speed %s Mb/s\n",
1661 libusb_get_bus_number(devs
[i
]),
1662 libusb_get_device_address(devs
[i
]),
1664 speed_name
[libusb_get_device_speed(devs
[i
])]);
1665 monitor_printf(mon
, " Class %02x:", ddesc
.bDeviceClass
);
1666 monitor_printf(mon
, " USB device %04x:%04x",
1667 ddesc
.idVendor
, ddesc
.idProduct
);
1668 if (ddesc
.iProduct
) {
1669 libusb_device_handle
*handle
;
1670 if (libusb_open(devs
[i
], &handle
) == 0) {
1671 unsigned char name
[64] = "";
1672 libusb_get_string_descriptor_ascii(handle
,
1674 name
, sizeof(name
));
1675 libusb_close(handle
);
1676 monitor_printf(mon
, ", %s", name
);
1679 monitor_printf(mon
, "\n");
1681 libusb_free_device_list(devs
, 1);