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
;
114 QTAILQ_ENTRY(USBHostRequest
) next
;
117 struct USBHostIsoXfer
{
118 USBHostIsoRing
*ring
;
119 struct libusb_transfer
*xfer
;
122 QTAILQ_ENTRY(USBHostIsoXfer
) next
;
125 struct USBHostIsoRing
{
128 QTAILQ_HEAD(, USBHostIsoXfer
) unused
;
129 QTAILQ_HEAD(, USBHostIsoXfer
) inflight
;
130 QTAILQ_HEAD(, USBHostIsoXfer
) copy
;
131 QTAILQ_ENTRY(USBHostIsoRing
) next
;
134 static QTAILQ_HEAD(, USBHostDevice
) hostdevs
=
135 QTAILQ_HEAD_INITIALIZER(hostdevs
);
137 static void usb_host_auto_check(void *unused
);
138 static void usb_host_release_interfaces(USBHostDevice
*s
);
139 static void usb_host_nodev(USBHostDevice
*s
);
140 static void usb_host_detach_kernel(USBHostDevice
*s
);
141 static void usb_host_attach_kernel(USBHostDevice
*s
);
143 /* ------------------------------------------------------------------------ */
145 #define CONTROL_TIMEOUT 10000 /* 10 sec */
146 #define BULK_TIMEOUT 0 /* unlimited */
147 #define INTR_TIMEOUT 0 /* unlimited */
149 static const char *speed_name
[] = {
150 [LIBUSB_SPEED_UNKNOWN
] = "?",
151 [LIBUSB_SPEED_LOW
] = "1.5",
152 [LIBUSB_SPEED_FULL
] = "12",
153 [LIBUSB_SPEED_HIGH
] = "480",
154 [LIBUSB_SPEED_SUPER
] = "5000",
157 static const unsigned int speed_map
[] = {
158 [LIBUSB_SPEED_LOW
] = USB_SPEED_LOW
,
159 [LIBUSB_SPEED_FULL
] = USB_SPEED_FULL
,
160 [LIBUSB_SPEED_HIGH
] = USB_SPEED_HIGH
,
161 [LIBUSB_SPEED_SUPER
] = USB_SPEED_SUPER
,
164 static const unsigned int status_map
[] = {
165 [LIBUSB_TRANSFER_COMPLETED
] = USB_RET_SUCCESS
,
166 [LIBUSB_TRANSFER_ERROR
] = USB_RET_IOERROR
,
167 [LIBUSB_TRANSFER_TIMED_OUT
] = USB_RET_IOERROR
,
168 [LIBUSB_TRANSFER_CANCELLED
] = USB_RET_IOERROR
,
169 [LIBUSB_TRANSFER_STALL
] = USB_RET_STALL
,
170 [LIBUSB_TRANSFER_NO_DEVICE
] = USB_RET_NODEV
,
171 [LIBUSB_TRANSFER_OVERFLOW
] = USB_RET_BABBLE
,
174 static const char *err_names
[] = {
175 [-LIBUSB_ERROR_IO
] = "IO",
176 [-LIBUSB_ERROR_INVALID_PARAM
] = "INVALID_PARAM",
177 [-LIBUSB_ERROR_ACCESS
] = "ACCESS",
178 [-LIBUSB_ERROR_NO_DEVICE
] = "NO_DEVICE",
179 [-LIBUSB_ERROR_NOT_FOUND
] = "NOT_FOUND",
180 [-LIBUSB_ERROR_BUSY
] = "BUSY",
181 [-LIBUSB_ERROR_TIMEOUT
] = "TIMEOUT",
182 [-LIBUSB_ERROR_OVERFLOW
] = "OVERFLOW",
183 [-LIBUSB_ERROR_PIPE
] = "PIPE",
184 [-LIBUSB_ERROR_INTERRUPTED
] = "INTERRUPTED",
185 [-LIBUSB_ERROR_NO_MEM
] = "NO_MEM",
186 [-LIBUSB_ERROR_NOT_SUPPORTED
] = "NOT_SUPPORTED",
187 [-LIBUSB_ERROR_OTHER
] = "OTHER",
190 static libusb_context
*ctx
;
191 static uint32_t loglevel
;
193 static void usb_host_handle_fd(void *opaque
)
195 struct timeval tv
= { 0, 0 };
196 libusb_handle_events_timeout(ctx
, &tv
);
199 static void usb_host_add_fd(int fd
, short events
, void *user_data
)
201 qemu_set_fd_handler(fd
,
202 (events
& POLLIN
) ? usb_host_handle_fd
: NULL
,
203 (events
& POLLOUT
) ? usb_host_handle_fd
: NULL
,
207 static void usb_host_del_fd(int fd
, void *user_data
)
209 qemu_set_fd_handler(fd
, NULL
, NULL
, NULL
);
212 static int usb_host_init(void)
214 const struct libusb_pollfd
**poll
;
220 rc
= libusb_init(&ctx
);
224 libusb_set_debug(ctx
, loglevel
);
226 libusb_set_pollfd_notifiers(ctx
, usb_host_add_fd
,
229 poll
= libusb_get_pollfds(ctx
);
231 for (i
= 0; poll
[i
] != NULL
; i
++) {
232 usb_host_add_fd(poll
[i
]->fd
, poll
[i
]->events
, ctx
);
239 static int usb_host_get_port(libusb_device
*dev
, char *port
, size_t len
)
245 #if LIBUSBX_API_VERSION >= 0x01000102
246 rc
= libusb_get_port_numbers(dev
, path
, 7);
248 rc
= libusb_get_port_path(ctx
, dev
, path
, 7);
253 off
= snprintf(port
, len
, "%d", path
[0]);
254 for (i
= 1; i
< rc
; i
++) {
255 off
+= snprintf(port
+off
, len
-off
, ".%d", path
[i
]);
260 static void usb_host_libusb_error(const char *func
, int rc
)
268 if (-rc
< ARRAY_SIZE(err_names
) && err_names
[-rc
]) {
269 errname
= err_names
[-rc
];
273 fprintf(stderr
, "%s: %d [%s]\n", func
, rc
, errname
);
276 /* ------------------------------------------------------------------------ */
278 static bool usb_host_use_combining(USBEndpoint
*ep
)
285 if (ep
->pid
!= USB_TOKEN_IN
) {
288 type
= usb_ep_get_type(ep
->dev
, ep
->pid
, ep
->nr
);
289 if (type
!= USB_ENDPOINT_XFER_BULK
) {
295 /* ------------------------------------------------------------------------ */
297 static USBHostRequest
*usb_host_req_alloc(USBHostDevice
*s
, USBPacket
*p
,
298 bool in
, size_t bufsize
)
300 USBHostRequest
*r
= g_new0(USBHostRequest
, 1);
305 r
->xfer
= libusb_alloc_transfer(0);
307 r
->buffer
= g_malloc(bufsize
);
309 QTAILQ_INSERT_TAIL(&s
->requests
, r
, next
);
313 static void usb_host_req_free(USBHostRequest
*r
)
316 QTAILQ_REMOVE(&r
->host
->requests
, r
, next
);
318 libusb_free_transfer(r
->xfer
);
323 static USBHostRequest
*usb_host_req_find(USBHostDevice
*s
, USBPacket
*p
)
327 QTAILQ_FOREACH(r
, &s
->requests
, next
) {
335 static void usb_host_req_complete_ctrl(struct libusb_transfer
*xfer
)
337 USBHostRequest
*r
= xfer
->user_data
;
338 USBHostDevice
*s
= r
->host
;
339 bool disconnect
= (xfer
->status
== LIBUSB_TRANSFER_NO_DEVICE
);
342 goto out
; /* request was canceled */
345 r
->p
->status
= status_map
[xfer
->status
];
346 r
->p
->actual_length
= xfer
->actual_length
;
347 if (r
->in
&& xfer
->actual_length
) {
348 memcpy(r
->cbuf
, r
->buffer
+ 8, xfer
->actual_length
);
350 trace_usb_host_req_complete(s
->bus_num
, s
->addr
, r
->p
,
351 r
->p
->status
, r
->p
->actual_length
);
352 usb_generic_async_ctrl_complete(USB_DEVICE(s
), r
->p
);
355 usb_host_req_free(r
);
361 static void usb_host_req_complete_data(struct libusb_transfer
*xfer
)
363 USBHostRequest
*r
= xfer
->user_data
;
364 USBHostDevice
*s
= r
->host
;
365 bool disconnect
= (xfer
->status
== LIBUSB_TRANSFER_NO_DEVICE
);
368 goto out
; /* request was canceled */
371 r
->p
->status
= status_map
[xfer
->status
];
372 if (r
->in
&& xfer
->actual_length
) {
373 usb_packet_copy(r
->p
, r
->buffer
, xfer
->actual_length
);
375 trace_usb_host_req_complete(s
->bus_num
, s
->addr
, r
->p
,
376 r
->p
->status
, r
->p
->actual_length
);
377 if (usb_host_use_combining(r
->p
->ep
)) {
378 usb_combined_input_packet_complete(USB_DEVICE(s
), r
->p
);
380 usb_packet_complete(USB_DEVICE(s
), r
->p
);
384 usb_host_req_free(r
);
390 static void usb_host_req_abort(USBHostRequest
*r
)
392 USBHostDevice
*s
= r
->host
;
393 bool inflight
= (r
->p
&& r
->p
->state
== USB_PACKET_ASYNC
);
396 r
->p
->status
= USB_RET_NODEV
;
397 trace_usb_host_req_complete(s
->bus_num
, s
->addr
, r
->p
,
398 r
->p
->status
, r
->p
->actual_length
);
399 if (r
->p
->ep
->nr
== 0) {
400 usb_generic_async_ctrl_complete(USB_DEVICE(s
), r
->p
);
402 usb_packet_complete(USB_DEVICE(s
), r
->p
);
407 QTAILQ_REMOVE(&r
->host
->requests
, r
, next
);
411 libusb_cancel_transfer(r
->xfer
);
415 /* ------------------------------------------------------------------------ */
417 static void usb_host_req_complete_iso(struct libusb_transfer
*transfer
)
419 USBHostIsoXfer
*xfer
= transfer
->user_data
;
422 /* USBHostIsoXfer released while inflight */
423 g_free(transfer
->buffer
);
424 libusb_free_transfer(transfer
);
428 QTAILQ_REMOVE(&xfer
->ring
->inflight
, xfer
, next
);
429 if (QTAILQ_EMPTY(&xfer
->ring
->inflight
)) {
430 USBHostDevice
*s
= xfer
->ring
->host
;
431 trace_usb_host_iso_stop(s
->bus_num
, s
->addr
, xfer
->ring
->ep
->nr
);
433 if (xfer
->ring
->ep
->pid
== USB_TOKEN_IN
) {
434 QTAILQ_INSERT_TAIL(&xfer
->ring
->copy
, xfer
, next
);
436 QTAILQ_INSERT_TAIL(&xfer
->ring
->unused
, xfer
, next
);
440 static USBHostIsoRing
*usb_host_iso_alloc(USBHostDevice
*s
, USBEndpoint
*ep
)
442 USBHostIsoRing
*ring
= g_new0(USBHostIsoRing
, 1);
443 USBHostIsoXfer
*xfer
;
444 /* FIXME: check interval (for now assume one xfer per frame) */
445 int packets
= s
->iso_urb_frames
;
450 QTAILQ_INIT(&ring
->unused
);
451 QTAILQ_INIT(&ring
->inflight
);
452 QTAILQ_INIT(&ring
->copy
);
453 QTAILQ_INSERT_TAIL(&s
->isorings
, ring
, next
);
455 for (i
= 0; i
< s
->iso_urb_count
; i
++) {
456 xfer
= g_new0(USBHostIsoXfer
, 1);
458 xfer
->xfer
= libusb_alloc_transfer(packets
);
459 xfer
->xfer
->dev_handle
= s
->dh
;
460 xfer
->xfer
->type
= LIBUSB_TRANSFER_TYPE_ISOCHRONOUS
;
462 xfer
->xfer
->endpoint
= ring
->ep
->nr
;
463 if (ring
->ep
->pid
== USB_TOKEN_IN
) {
464 xfer
->xfer
->endpoint
|= USB_DIR_IN
;
466 xfer
->xfer
->callback
= usb_host_req_complete_iso
;
467 xfer
->xfer
->user_data
= xfer
;
469 xfer
->xfer
->num_iso_packets
= packets
;
470 xfer
->xfer
->length
= ring
->ep
->max_packet_size
* packets
;
471 xfer
->xfer
->buffer
= g_malloc0(xfer
->xfer
->length
);
473 QTAILQ_INSERT_TAIL(&ring
->unused
, xfer
, next
);
479 static USBHostIsoRing
*usb_host_iso_find(USBHostDevice
*s
, USBEndpoint
*ep
)
481 USBHostIsoRing
*ring
;
483 QTAILQ_FOREACH(ring
, &s
->isorings
, next
) {
484 if (ring
->ep
== ep
) {
491 static void usb_host_iso_reset_xfer(USBHostIsoXfer
*xfer
)
493 libusb_set_iso_packet_lengths(xfer
->xfer
,
494 xfer
->ring
->ep
->max_packet_size
);
496 xfer
->copy_complete
= false;
499 static void usb_host_iso_free_xfer(USBHostIsoXfer
*xfer
, bool inflight
)
502 xfer
->xfer
->user_data
= NULL
;
504 g_free(xfer
->xfer
->buffer
);
505 libusb_free_transfer(xfer
->xfer
);
510 static void usb_host_iso_free(USBHostIsoRing
*ring
)
512 USBHostIsoXfer
*xfer
;
514 while ((xfer
= QTAILQ_FIRST(&ring
->inflight
)) != NULL
) {
515 QTAILQ_REMOVE(&ring
->inflight
, xfer
, next
);
516 usb_host_iso_free_xfer(xfer
, true);
518 while ((xfer
= QTAILQ_FIRST(&ring
->unused
)) != NULL
) {
519 QTAILQ_REMOVE(&ring
->unused
, xfer
, next
);
520 usb_host_iso_free_xfer(xfer
, false);
522 while ((xfer
= QTAILQ_FIRST(&ring
->copy
)) != NULL
) {
523 QTAILQ_REMOVE(&ring
->copy
, xfer
, next
);
524 usb_host_iso_free_xfer(xfer
, false);
527 QTAILQ_REMOVE(&ring
->host
->isorings
, ring
, next
);
531 static void usb_host_iso_free_all(USBHostDevice
*s
)
533 USBHostIsoRing
*ring
;
535 while ((ring
= QTAILQ_FIRST(&s
->isorings
)) != NULL
) {
536 usb_host_iso_free(ring
);
540 static bool usb_host_iso_data_copy(USBHostIsoXfer
*xfer
, USBPacket
*p
)
545 buf
= libusb_get_iso_packet_buffer_simple(xfer
->xfer
, xfer
->packet
);
546 if (p
->pid
== USB_TOKEN_OUT
) {
548 if (psize
> xfer
->ring
->ep
->max_packet_size
) {
549 /* should not happen (guest bug) */
550 psize
= xfer
->ring
->ep
->max_packet_size
;
552 xfer
->xfer
->iso_packet_desc
[xfer
->packet
].length
= psize
;
554 psize
= xfer
->xfer
->iso_packet_desc
[xfer
->packet
].actual_length
;
555 if (psize
> p
->iov
.size
) {
556 /* should not happen (guest bug) */
560 usb_packet_copy(p
, buf
, psize
);
562 xfer
->copy_complete
= (xfer
->packet
== xfer
->xfer
->num_iso_packets
);
563 return xfer
->copy_complete
;
566 static void usb_host_iso_data_in(USBHostDevice
*s
, USBPacket
*p
)
568 USBHostIsoRing
*ring
;
569 USBHostIsoXfer
*xfer
;
570 bool disconnect
= false;
573 ring
= usb_host_iso_find(s
, p
->ep
);
575 ring
= usb_host_iso_alloc(s
, p
->ep
);
578 /* copy data to guest */
579 xfer
= QTAILQ_FIRST(&ring
->copy
);
581 if (usb_host_iso_data_copy(xfer
, p
)) {
582 QTAILQ_REMOVE(&ring
->copy
, xfer
, next
);
583 QTAILQ_INSERT_TAIL(&ring
->unused
, xfer
, next
);
587 /* submit empty bufs to host */
588 while ((xfer
= QTAILQ_FIRST(&ring
->unused
)) != NULL
) {
589 QTAILQ_REMOVE(&ring
->unused
, xfer
, next
);
590 usb_host_iso_reset_xfer(xfer
);
591 rc
= libusb_submit_transfer(xfer
->xfer
);
593 usb_host_libusb_error("libusb_submit_transfer [iso]", rc
);
594 QTAILQ_INSERT_TAIL(&ring
->unused
, xfer
, next
);
595 if (rc
== LIBUSB_ERROR_NO_DEVICE
) {
600 if (QTAILQ_EMPTY(&ring
->inflight
)) {
601 trace_usb_host_iso_start(s
->bus_num
, s
->addr
, p
->ep
->nr
);
603 QTAILQ_INSERT_TAIL(&ring
->inflight
, xfer
, next
);
611 static void usb_host_iso_data_out(USBHostDevice
*s
, USBPacket
*p
)
613 USBHostIsoRing
*ring
;
614 USBHostIsoXfer
*xfer
;
615 bool disconnect
= false;
618 ring
= usb_host_iso_find(s
, p
->ep
);
620 ring
= usb_host_iso_alloc(s
, p
->ep
);
623 /* copy data from guest */
624 xfer
= QTAILQ_FIRST(&ring
->copy
);
625 while (xfer
!= NULL
&& xfer
->copy_complete
) {
627 xfer
= QTAILQ_NEXT(xfer
, next
);
630 xfer
= QTAILQ_FIRST(&ring
->unused
);
632 trace_usb_host_iso_out_of_bufs(s
->bus_num
, s
->addr
, p
->ep
->nr
);
635 QTAILQ_REMOVE(&ring
->unused
, xfer
, next
);
636 usb_host_iso_reset_xfer(xfer
);
637 QTAILQ_INSERT_TAIL(&ring
->copy
, xfer
, next
);
639 usb_host_iso_data_copy(xfer
, p
);
641 if (QTAILQ_EMPTY(&ring
->inflight
)) {
642 /* wait until half of our buffers are filled
643 before kicking the iso out stream */
644 if (filled
*2 < s
->iso_urb_count
) {
649 /* submit filled bufs to host */
650 while ((xfer
= QTAILQ_FIRST(&ring
->copy
)) != NULL
&&
651 xfer
->copy_complete
) {
652 QTAILQ_REMOVE(&ring
->copy
, xfer
, next
);
653 rc
= libusb_submit_transfer(xfer
->xfer
);
655 usb_host_libusb_error("libusb_submit_transfer [iso]", rc
);
656 QTAILQ_INSERT_TAIL(&ring
->unused
, xfer
, next
);
657 if (rc
== LIBUSB_ERROR_NO_DEVICE
) {
662 if (QTAILQ_EMPTY(&ring
->inflight
)) {
663 trace_usb_host_iso_start(s
->bus_num
, s
->addr
, p
->ep
->nr
);
665 QTAILQ_INSERT_TAIL(&ring
->inflight
, xfer
, next
);
673 /* ------------------------------------------------------------------------ */
675 static bool usb_host_full_speed_compat(USBHostDevice
*s
)
677 struct libusb_config_descriptor
*conf
;
678 const struct libusb_interface_descriptor
*intf
;
679 const struct libusb_endpoint_descriptor
*endp
;
684 rc
= libusb_get_config_descriptor(s
->dev
, c
, &conf
);
688 for (i
= 0; i
< conf
->bNumInterfaces
; i
++) {
689 for (a
= 0; a
< conf
->interface
[i
].num_altsetting
; a
++) {
690 intf
= &conf
->interface
[i
].altsetting
[a
];
691 for (e
= 0; e
< intf
->bNumEndpoints
; e
++) {
692 endp
= &intf
->endpoint
[e
];
693 type
= endp
->bmAttributes
& 0x3;
697 case 0x03: /* INTERRUPT */
698 if (endp
->wMaxPacketSize
> 64) {
706 libusb_free_config_descriptor(conf
);
711 static void usb_host_ep_update(USBHostDevice
*s
)
713 static const char *tname
[] = {
714 [USB_ENDPOINT_XFER_CONTROL
] = "control",
715 [USB_ENDPOINT_XFER_ISOC
] = "isoc",
716 [USB_ENDPOINT_XFER_BULK
] = "bulk",
717 [USB_ENDPOINT_XFER_INT
] = "int",
719 USBDevice
*udev
= USB_DEVICE(s
);
720 struct libusb_config_descriptor
*conf
;
721 const struct libusb_interface_descriptor
*intf
;
722 const struct libusb_endpoint_descriptor
*endp
;
728 rc
= libusb_get_active_config_descriptor(s
->dev
, &conf
);
732 trace_usb_host_parse_config(s
->bus_num
, s
->addr
,
733 conf
->bConfigurationValue
, true);
735 for (i
= 0; i
< conf
->bNumInterfaces
; i
++) {
736 assert(udev
->altsetting
[i
] < conf
->interface
[i
].num_altsetting
);
737 intf
= &conf
->interface
[i
].altsetting
[udev
->altsetting
[i
]];
738 trace_usb_host_parse_interface(s
->bus_num
, s
->addr
,
739 intf
->bInterfaceNumber
,
740 intf
->bAlternateSetting
, true);
741 for (e
= 0; e
< intf
->bNumEndpoints
; e
++) {
742 endp
= &intf
->endpoint
[e
];
744 devep
= endp
->bEndpointAddress
;
745 pid
= (devep
& USB_DIR_IN
) ? USB_TOKEN_IN
: USB_TOKEN_OUT
;
747 type
= endp
->bmAttributes
& 0x3;
750 trace_usb_host_parse_error(s
->bus_num
, s
->addr
,
751 "invalid endpoint address");
754 if (usb_ep_get_type(udev
, pid
, ep
) != USB_ENDPOINT_XFER_INVALID
) {
755 trace_usb_host_parse_error(s
->bus_num
, s
->addr
,
756 "duplicate endpoint address");
760 trace_usb_host_parse_endpoint(s
->bus_num
, s
->addr
, ep
,
761 (devep
& USB_DIR_IN
) ? "in" : "out",
763 usb_ep_set_max_packet_size(udev
, pid
, ep
,
764 endp
->wMaxPacketSize
);
765 usb_ep_set_type(udev
, pid
, ep
, type
);
766 usb_ep_set_ifnum(udev
, pid
, ep
, i
);
767 usb_ep_set_halted(udev
, pid
, ep
, 0);
771 libusb_free_config_descriptor(conf
);
774 static int usb_host_open(USBHostDevice
*s
, libusb_device
*dev
)
776 USBDevice
*udev
= USB_DEVICE(s
);
777 int bus_num
= libusb_get_bus_number(dev
);
778 int addr
= libusb_get_device_address(dev
);
781 trace_usb_host_open_started(bus_num
, addr
);
786 rc
= libusb_open(dev
, &s
->dh
);
792 s
->bus_num
= bus_num
;
795 usb_host_detach_kernel(s
);
797 libusb_get_device_descriptor(dev
, &s
->ddesc
);
798 usb_host_get_port(s
->dev
, s
->port
, sizeof(s
->port
));
801 usb_host_ep_update(s
);
803 udev
->speed
= speed_map
[libusb_get_device_speed(dev
)];
804 udev
->speedmask
= (1 << udev
->speed
);
805 if (udev
->speed
== USB_SPEED_HIGH
&& usb_host_full_speed_compat(s
)) {
806 udev
->speedmask
|= USB_SPEED_MASK_FULL
;
809 if (s
->ddesc
.iProduct
) {
810 libusb_get_string_descriptor_ascii(s
->dh
, s
->ddesc
.iProduct
,
811 (unsigned char *)udev
->product_desc
,
812 sizeof(udev
->product_desc
));
814 snprintf(udev
->product_desc
, sizeof(udev
->product_desc
),
815 "host:%d.%d", bus_num
, addr
);
818 rc
= usb_device_attach(udev
);
823 trace_usb_host_open_success(bus_num
, addr
);
827 trace_usb_host_open_failure(bus_num
, addr
);
836 static void usb_host_abort_xfers(USBHostDevice
*s
)
838 USBHostRequest
*r
, *rtmp
;
840 QTAILQ_FOREACH_SAFE(r
, &s
->requests
, next
, rtmp
) {
841 usb_host_req_abort(r
);
845 static int usb_host_close(USBHostDevice
*s
)
847 USBDevice
*udev
= USB_DEVICE(s
);
853 trace_usb_host_close(s
->bus_num
, s
->addr
);
855 usb_host_abort_xfers(s
);
856 usb_host_iso_free_all(s
);
858 if (udev
->attached
) {
859 usb_device_detach(udev
);
862 usb_host_release_interfaces(s
);
863 libusb_reset_device(s
->dh
);
864 usb_host_attach_kernel(s
);
869 usb_host_auto_check(NULL
);
873 static void usb_host_nodev_bh(void *opaque
)
875 USBHostDevice
*s
= opaque
;
879 static void usb_host_nodev(USBHostDevice
*s
)
882 s
->bh_nodev
= qemu_bh_new(usb_host_nodev_bh
, s
);
884 qemu_bh_schedule(s
->bh_nodev
);
887 static void usb_host_exit_notifier(struct Notifier
*n
, void *data
)
889 USBHostDevice
*s
= container_of(n
, USBHostDevice
, exit
);
892 usb_host_release_interfaces(s
);
893 usb_host_attach_kernel(s
);
897 static int usb_host_initfn(USBDevice
*udev
)
899 USBHostDevice
*s
= USB_HOST_DEVICE(udev
);
901 loglevel
= s
->loglevel
;
902 udev
->flags
|= (1 << USB_DEV_FLAG_IS_HOST
);
903 udev
->auto_attach
= 0;
904 QTAILQ_INIT(&s
->requests
);
905 QTAILQ_INIT(&s
->isorings
);
907 s
->exit
.notify
= usb_host_exit_notifier
;
908 qemu_add_exit_notifier(&s
->exit
);
910 QTAILQ_INSERT_TAIL(&hostdevs
, s
, next
);
911 add_boot_device_path(s
->bootindex
, &udev
->qdev
, NULL
);
912 usb_host_auto_check(NULL
);
916 static void usb_host_handle_destroy(USBDevice
*udev
)
918 USBHostDevice
*s
= USB_HOST_DEVICE(udev
);
920 qemu_remove_exit_notifier(&s
->exit
);
921 QTAILQ_REMOVE(&hostdevs
, s
, next
);
925 static void usb_host_cancel_packet(USBDevice
*udev
, USBPacket
*p
)
927 USBHostDevice
*s
= USB_HOST_DEVICE(udev
);
931 usb_combined_packet_cancel(udev
, p
);
935 trace_usb_host_req_canceled(s
->bus_num
, s
->addr
, p
);
937 r
= usb_host_req_find(s
, p
);
939 r
->p
= NULL
; /* mark as dead */
940 libusb_cancel_transfer(r
->xfer
);
944 static void usb_host_detach_kernel(USBHostDevice
*s
)
946 struct libusb_config_descriptor
*conf
;
949 rc
= libusb_get_active_config_descriptor(s
->dev
, &conf
);
953 for (i
= 0; i
< conf
->bNumInterfaces
; i
++) {
954 rc
= libusb_kernel_driver_active(s
->dh
, i
);
955 usb_host_libusb_error("libusb_kernel_driver_active", rc
);
959 trace_usb_host_detach_kernel(s
->bus_num
, s
->addr
, i
);
960 rc
= libusb_detach_kernel_driver(s
->dh
, i
);
961 usb_host_libusb_error("libusb_detach_kernel_driver", rc
);
962 s
->ifs
[i
].detached
= true;
964 libusb_free_config_descriptor(conf
);
967 static void usb_host_attach_kernel(USBHostDevice
*s
)
969 struct libusb_config_descriptor
*conf
;
972 rc
= libusb_get_active_config_descriptor(s
->dev
, &conf
);
976 for (i
= 0; i
< conf
->bNumInterfaces
; i
++) {
977 if (!s
->ifs
[i
].detached
) {
980 trace_usb_host_attach_kernel(s
->bus_num
, s
->addr
, i
);
981 libusb_attach_kernel_driver(s
->dh
, i
);
982 s
->ifs
[i
].detached
= false;
984 libusb_free_config_descriptor(conf
);
987 static int usb_host_claim_interfaces(USBHostDevice
*s
, int configuration
)
989 USBDevice
*udev
= USB_DEVICE(s
);
990 struct libusb_config_descriptor
*conf
;
993 for (i
= 0; i
< USB_MAX_INTERFACES
; i
++) {
994 udev
->altsetting
[i
] = 0;
996 udev
->ninterfaces
= 0;
997 udev
->configuration
= 0;
999 usb_host_detach_kernel(s
);
1001 rc
= libusb_get_active_config_descriptor(s
->dev
, &conf
);
1003 if (rc
== LIBUSB_ERROR_NOT_FOUND
) {
1004 /* address state - ignore */
1005 return USB_RET_SUCCESS
;
1007 return USB_RET_STALL
;
1010 for (i
= 0; i
< conf
->bNumInterfaces
; i
++) {
1011 trace_usb_host_claim_interface(s
->bus_num
, s
->addr
, configuration
, i
);
1012 rc
= libusb_claim_interface(s
->dh
, i
);
1013 usb_host_libusb_error("libusb_claim_interface", rc
);
1015 return USB_RET_STALL
;
1017 s
->ifs
[i
].claimed
= true;
1020 udev
->ninterfaces
= conf
->bNumInterfaces
;
1021 udev
->configuration
= configuration
;
1023 libusb_free_config_descriptor(conf
);
1024 return USB_RET_SUCCESS
;
1027 static void usb_host_release_interfaces(USBHostDevice
*s
)
1029 USBDevice
*udev
= USB_DEVICE(s
);
1032 for (i
= 0; i
< udev
->ninterfaces
; i
++) {
1033 if (!s
->ifs
[i
].claimed
) {
1036 trace_usb_host_release_interface(s
->bus_num
, s
->addr
, i
);
1037 rc
= libusb_release_interface(s
->dh
, i
);
1038 usb_host_libusb_error("libusb_release_interface", rc
);
1039 s
->ifs
[i
].claimed
= false;
1043 static void usb_host_set_address(USBHostDevice
*s
, int addr
)
1045 USBDevice
*udev
= USB_DEVICE(s
);
1047 trace_usb_host_set_address(s
->bus_num
, s
->addr
, addr
);
1051 static void usb_host_set_config(USBHostDevice
*s
, int config
, USBPacket
*p
)
1055 trace_usb_host_set_config(s
->bus_num
, s
->addr
, config
);
1057 usb_host_release_interfaces(s
);
1058 rc
= libusb_set_configuration(s
->dh
, config
);
1060 usb_host_libusb_error("libusb_set_configuration", rc
);
1061 p
->status
= USB_RET_STALL
;
1062 if (rc
== LIBUSB_ERROR_NO_DEVICE
) {
1067 p
->status
= usb_host_claim_interfaces(s
, config
);
1068 if (p
->status
!= USB_RET_SUCCESS
) {
1071 usb_host_ep_update(s
);
1074 static void usb_host_set_interface(USBHostDevice
*s
, int iface
, int alt
,
1077 USBDevice
*udev
= USB_DEVICE(s
);
1080 trace_usb_host_set_interface(s
->bus_num
, s
->addr
, iface
, alt
);
1082 usb_host_iso_free_all(s
);
1084 if (iface
>= USB_MAX_INTERFACES
) {
1085 p
->status
= USB_RET_STALL
;
1089 rc
= libusb_set_interface_alt_setting(s
->dh
, iface
, alt
);
1091 usb_host_libusb_error("libusb_set_interface_alt_setting", rc
);
1092 p
->status
= USB_RET_STALL
;
1093 if (rc
== LIBUSB_ERROR_NO_DEVICE
) {
1099 udev
->altsetting
[iface
] = alt
;
1100 usb_host_ep_update(s
);
1103 static void usb_host_handle_control(USBDevice
*udev
, USBPacket
*p
,
1104 int request
, int value
, int index
,
1105 int length
, uint8_t *data
)
1107 USBHostDevice
*s
= USB_HOST_DEVICE(udev
);
1111 trace_usb_host_req_control(s
->bus_num
, s
->addr
, p
, request
, value
, index
);
1113 if (s
->dh
== NULL
) {
1114 p
->status
= USB_RET_NODEV
;
1115 trace_usb_host_req_emulated(s
->bus_num
, s
->addr
, p
, p
->status
);
1120 case DeviceOutRequest
| USB_REQ_SET_ADDRESS
:
1121 usb_host_set_address(s
, value
);
1122 trace_usb_host_req_emulated(s
->bus_num
, s
->addr
, p
, p
->status
);
1125 case DeviceOutRequest
| USB_REQ_SET_CONFIGURATION
:
1126 usb_host_set_config(s
, value
& 0xff, p
);
1127 trace_usb_host_req_emulated(s
->bus_num
, s
->addr
, p
, p
->status
);
1130 case InterfaceOutRequest
| USB_REQ_SET_INTERFACE
:
1131 usb_host_set_interface(s
, index
, value
, p
);
1132 trace_usb_host_req_emulated(s
->bus_num
, s
->addr
, p
, p
->status
);
1135 case EndpointOutRequest
| USB_REQ_CLEAR_FEATURE
:
1136 if (value
== 0) { /* clear halt */
1137 int pid
= (index
& USB_DIR_IN
) ? USB_TOKEN_IN
: USB_TOKEN_OUT
;
1138 libusb_clear_halt(s
->dh
, index
);
1139 usb_ep_set_halted(udev
, pid
, index
& 0x0f, 0);
1140 trace_usb_host_req_emulated(s
->bus_num
, s
->addr
, p
, p
->status
);
1145 r
= usb_host_req_alloc(s
, p
, (request
>> 8) & USB_DIR_IN
, length
+ 8);
1148 memcpy(r
->buffer
, udev
->setup_buf
, 8);
1150 memcpy(r
->buffer
+ 8, r
->cbuf
, r
->clen
);
1153 libusb_fill_control_transfer(r
->xfer
, s
->dh
, r
->buffer
,
1154 usb_host_req_complete_ctrl
, r
,
1156 rc
= libusb_submit_transfer(r
->xfer
);
1158 p
->status
= USB_RET_NODEV
;
1159 trace_usb_host_req_complete(s
->bus_num
, s
->addr
, p
,
1160 p
->status
, p
->actual_length
);
1161 if (rc
== LIBUSB_ERROR_NO_DEVICE
) {
1167 p
->status
= USB_RET_ASYNC
;
1170 static void usb_host_handle_data(USBDevice
*udev
, USBPacket
*p
)
1172 USBHostDevice
*s
= USB_HOST_DEVICE(udev
);
1177 if (usb_host_use_combining(p
->ep
) && p
->state
== USB_PACKET_SETUP
) {
1178 p
->status
= USB_RET_ADD_TO_QUEUE
;
1182 trace_usb_host_req_data(s
->bus_num
, s
->addr
, p
,
1183 p
->pid
== USB_TOKEN_IN
,
1184 p
->ep
->nr
, p
->iov
.size
);
1186 if (s
->dh
== NULL
) {
1187 p
->status
= USB_RET_NODEV
;
1188 trace_usb_host_req_emulated(s
->bus_num
, s
->addr
, p
, p
->status
);
1191 if (p
->ep
->halted
) {
1192 p
->status
= USB_RET_STALL
;
1193 trace_usb_host_req_emulated(s
->bus_num
, s
->addr
, p
, p
->status
);
1197 switch (usb_ep_get_type(udev
, p
->pid
, p
->ep
->nr
)) {
1198 case USB_ENDPOINT_XFER_BULK
:
1199 size
= usb_packet_size(p
);
1200 r
= usb_host_req_alloc(s
, p
, p
->pid
== USB_TOKEN_IN
, size
);
1202 usb_packet_copy(p
, r
->buffer
, size
);
1204 ep
= p
->ep
->nr
| (r
->in
? USB_DIR_IN
: 0);
1205 libusb_fill_bulk_transfer(r
->xfer
, s
->dh
, ep
,
1207 usb_host_req_complete_data
, r
,
1210 case USB_ENDPOINT_XFER_INT
:
1211 r
= usb_host_req_alloc(s
, p
, p
->pid
== USB_TOKEN_IN
, p
->iov
.size
);
1213 usb_packet_copy(p
, r
->buffer
, p
->iov
.size
);
1215 ep
= p
->ep
->nr
| (r
->in
? USB_DIR_IN
: 0);
1216 libusb_fill_interrupt_transfer(r
->xfer
, s
->dh
, ep
,
1217 r
->buffer
, p
->iov
.size
,
1218 usb_host_req_complete_data
, r
,
1221 case USB_ENDPOINT_XFER_ISOC
:
1222 if (p
->pid
== USB_TOKEN_IN
) {
1223 usb_host_iso_data_in(s
, p
);
1225 usb_host_iso_data_out(s
, p
);
1227 trace_usb_host_req_complete(s
->bus_num
, s
->addr
, p
,
1228 p
->status
, p
->actual_length
);
1231 p
->status
= USB_RET_STALL
;
1232 trace_usb_host_req_complete(s
->bus_num
, s
->addr
, p
,
1233 p
->status
, p
->actual_length
);
1237 rc
= libusb_submit_transfer(r
->xfer
);
1239 p
->status
= USB_RET_NODEV
;
1240 trace_usb_host_req_complete(s
->bus_num
, s
->addr
, p
,
1241 p
->status
, p
->actual_length
);
1242 if (rc
== LIBUSB_ERROR_NO_DEVICE
) {
1248 p
->status
= USB_RET_ASYNC
;
1251 static void usb_host_flush_ep_queue(USBDevice
*dev
, USBEndpoint
*ep
)
1253 if (usb_host_use_combining(ep
)) {
1254 usb_ep_combine_input_packets(ep
);
1258 static void usb_host_handle_reset(USBDevice
*udev
)
1260 USBHostDevice
*s
= USB_HOST_DEVICE(udev
);
1263 trace_usb_host_reset(s
->bus_num
, s
->addr
);
1265 rc
= libusb_reset_device(s
->dh
);
1272 * This is *NOT* about restoring state. We have absolutely no idea
1273 * what state the host device is in at the moment and whenever it is
1274 * still present in the first place. Attemping to contine where we
1275 * left off is impossible.
1277 * What we are going to to to here is emulate a surprise removal of
1278 * the usb device passed through, then kick host scan so the device
1279 * will get re-attached (and re-initialized by the guest) in case it
1282 * As the device removal will change the state of other devices (usb
1283 * host controller, most likely interrupt controller too) we have to
1284 * wait with it until *all* vmstate is loaded. Thus post_load just
1285 * kicks a bottom half which then does the actual work.
1287 static void usb_host_post_load_bh(void *opaque
)
1289 USBHostDevice
*dev
= opaque
;
1290 USBDevice
*udev
= USB_DEVICE(dev
);
1292 if (dev
->dh
!= NULL
) {
1293 usb_host_close(dev
);
1295 if (udev
->attached
) {
1296 usb_device_detach(udev
);
1298 usb_host_auto_check(NULL
);
1301 static int usb_host_post_load(void *opaque
, int version_id
)
1303 USBHostDevice
*dev
= opaque
;
1305 if (!dev
->bh_postld
) {
1306 dev
->bh_postld
= qemu_bh_new(usb_host_post_load_bh
, dev
);
1308 qemu_bh_schedule(dev
->bh_postld
);
1312 static const VMStateDescription vmstate_usb_host
= {
1315 .minimum_version_id
= 1,
1316 .post_load
= usb_host_post_load
,
1317 .fields
= (VMStateField
[]) {
1318 VMSTATE_USB_DEVICE(parent_obj
, USBHostDevice
),
1319 VMSTATE_END_OF_LIST()
1323 static Property usb_host_dev_properties
[] = {
1324 DEFINE_PROP_UINT32("hostbus", USBHostDevice
, match
.bus_num
, 0),
1325 DEFINE_PROP_UINT32("hostaddr", USBHostDevice
, match
.addr
, 0),
1326 DEFINE_PROP_STRING("hostport", USBHostDevice
, match
.port
),
1327 DEFINE_PROP_HEX32("vendorid", USBHostDevice
, match
.vendor_id
, 0),
1328 DEFINE_PROP_HEX32("productid", USBHostDevice
, match
.product_id
, 0),
1329 DEFINE_PROP_UINT32("isobufs", USBHostDevice
, iso_urb_count
, 4),
1330 DEFINE_PROP_UINT32("isobsize", USBHostDevice
, iso_urb_frames
, 32),
1331 DEFINE_PROP_INT32("bootindex", USBHostDevice
, bootindex
, -1),
1332 DEFINE_PROP_UINT32("loglevel", USBHostDevice
, loglevel
,
1333 LIBUSB_LOG_LEVEL_WARNING
),
1334 DEFINE_PROP_BIT("pipeline", USBHostDevice
, options
,
1335 USB_HOST_OPT_PIPELINE
, true),
1336 DEFINE_PROP_END_OF_LIST(),
1339 static void usb_host_class_initfn(ObjectClass
*klass
, void *data
)
1341 DeviceClass
*dc
= DEVICE_CLASS(klass
);
1342 USBDeviceClass
*uc
= USB_DEVICE_CLASS(klass
);
1344 uc
->init
= usb_host_initfn
;
1345 uc
->product_desc
= "USB Host Device";
1346 uc
->cancel_packet
= usb_host_cancel_packet
;
1347 uc
->handle_data
= usb_host_handle_data
;
1348 uc
->handle_control
= usb_host_handle_control
;
1349 uc
->handle_reset
= usb_host_handle_reset
;
1350 uc
->handle_destroy
= usb_host_handle_destroy
;
1351 uc
->flush_ep_queue
= usb_host_flush_ep_queue
;
1352 dc
->vmsd
= &vmstate_usb_host
;
1353 dc
->props
= usb_host_dev_properties
;
1354 set_bit(DEVICE_CATEGORY_BRIDGE
, dc
->categories
);
1357 static TypeInfo usb_host_dev_info
= {
1358 .name
= TYPE_USB_HOST_DEVICE
,
1359 .parent
= TYPE_USB_DEVICE
,
1360 .instance_size
= sizeof(USBHostDevice
),
1361 .class_init
= usb_host_class_initfn
,
1364 static void usb_host_register_types(void)
1366 type_register_static(&usb_host_dev_info
);
1369 type_init(usb_host_register_types
)
1371 /* ------------------------------------------------------------------------ */
1373 static QEMUTimer
*usb_auto_timer
;
1374 static VMChangeStateEntry
*usb_vmstate
;
1376 static void usb_host_vm_state(void *unused
, int running
, RunState state
)
1379 usb_host_auto_check(unused
);
1383 static void usb_host_auto_check(void *unused
)
1385 struct USBHostDevice
*s
;
1386 struct USBAutoFilter
*f
;
1387 libusb_device
**devs
;
1388 struct libusb_device_descriptor ddesc
;
1389 int unconnected
= 0;
1392 if (usb_host_init() != 0) {
1396 if (runstate_is_running()) {
1397 n
= libusb_get_device_list(ctx
, &devs
);
1398 for (i
= 0; i
< n
; i
++) {
1399 if (libusb_get_device_descriptor(devs
[i
], &ddesc
) != 0) {
1402 if (ddesc
.bDeviceClass
== LIBUSB_CLASS_HUB
) {
1405 QTAILQ_FOREACH(s
, &hostdevs
, next
) {
1407 if (f
->bus_num
> 0 &&
1408 f
->bus_num
!= libusb_get_bus_number(devs
[i
])) {
1412 f
->addr
!= libusb_get_device_address(devs
[i
])) {
1415 if (f
->port
!= NULL
) {
1416 char port
[16] = "-";
1417 usb_host_get_port(devs
[i
], port
, sizeof(port
));
1418 if (strcmp(f
->port
, port
) != 0) {
1422 if (f
->vendor_id
> 0 &&
1423 f
->vendor_id
!= ddesc
.idVendor
) {
1426 if (f
->product_id
> 0 &&
1427 f
->product_id
!= ddesc
.idProduct
) {
1431 /* We got a match */
1433 if (s
->errcount
>= 3) {
1436 if (s
->dh
!= NULL
) {
1439 if (usb_host_open(s
, devs
[i
]) < 0) {
1446 libusb_free_device_list(devs
, 1);
1448 QTAILQ_FOREACH(s
, &hostdevs
, next
) {
1449 if (s
->dh
== NULL
) {
1462 if (unconnected
== 0) {
1463 /* nothing to watch */
1464 if (usb_auto_timer
) {
1465 timer_del(usb_auto_timer
);
1466 trace_usb_host_auto_scan_disabled();
1474 usb_vmstate
= qemu_add_vm_change_state_handler(usb_host_vm_state
, NULL
);
1476 if (!usb_auto_timer
) {
1477 usb_auto_timer
= timer_new_ms(QEMU_CLOCK_REALTIME
, usb_host_auto_check
, NULL
);
1478 if (!usb_auto_timer
) {
1481 trace_usb_host_auto_scan_enabled();
1483 timer_mod(usb_auto_timer
, qemu_clock_get_ms(QEMU_CLOCK_REALTIME
) + 2000);
1486 void usb_host_info(Monitor
*mon
, const QDict
*qdict
)
1488 libusb_device
**devs
;
1489 struct libusb_device_descriptor ddesc
;
1493 if (usb_host_init() != 0) {
1497 n
= libusb_get_device_list(ctx
, &devs
);
1498 for (i
= 0; i
< n
; i
++) {
1499 if (libusb_get_device_descriptor(devs
[i
], &ddesc
) != 0) {
1502 if (ddesc
.bDeviceClass
== LIBUSB_CLASS_HUB
) {
1505 usb_host_get_port(devs
[i
], port
, sizeof(port
));
1506 monitor_printf(mon
, " Bus %d, Addr %d, Port %s, Speed %s Mb/s\n",
1507 libusb_get_bus_number(devs
[i
]),
1508 libusb_get_device_address(devs
[i
]),
1510 speed_name
[libusb_get_device_speed(devs
[i
])]);
1511 monitor_printf(mon
, " Class %02x:", ddesc
.bDeviceClass
);
1512 monitor_printf(mon
, " USB device %04x:%04x",
1513 ddesc
.idVendor
, ddesc
.idProduct
);
1514 if (ddesc
.iProduct
) {
1515 libusb_device_handle
*handle
;
1516 if (libusb_open(devs
[i
], &handle
) == 0) {
1517 unsigned char name
[64] = "";
1518 libusb_get_string_descriptor_ascii(handle
,
1520 name
, sizeof(name
));
1521 libusb_close(handle
);
1522 monitor_printf(mon
, ", %s", name
);
1525 monitor_printf(mon
, "\n");
1527 libusb_free_device_list(devs
, 1);