blob: e08948567a9e1733d5a9498c0dac464a8301b949 [file] [log] [blame]
bellardbb36d472005-11-05 14:22:28 +00001/*
2 * Linux host USB redirector
3 *
4 * Copyright (c) 2005 Fabrice Bellard
ths5fafdf22007-09-16 21:08:06 +00005 *
aliguori64838172008-08-21 19:31:10 +00006 * Copyright (c) 2008 Max Krasnyansky
7 * Support for host device auto connect & disconnect
aliguori5d0c5752008-09-14 01:07:41 +00008 * Major rewrite to support fully async operation
aliguori4b096fc2008-08-21 19:28:55 +00009 *
aliguori0f431522008-10-07 20:06:37 +000010 * 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
13 *
bellardbb36d472005-11-05 14:22:28 +000014 * Permission is hereby granted, free of charge, to any person obtaining a copy
15 * of this software and associated documentation files (the "Software"), to deal
16 * in the Software without restriction, including without limitation the rights
17 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
18 * copies of the Software, and to permit persons to whom the Software is
19 * furnished to do so, subject to the following conditions:
20 *
21 * The above copyright notice and this permission notice shall be included in
22 * all copies or substantial portions of the Software.
23 *
24 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
25 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
26 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
27 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
28 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
29 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
30 * THE SOFTWARE.
31 */
aliguori446ab122008-09-14 01:06:09 +000032
pbrook87ecb682007-11-17 17:14:51 +000033#include "qemu-common.h"
aliguori1f3870a2008-08-21 19:27:48 +000034#include "qemu-timer.h"
aliguori376253e2009-03-05 23:01:23 +000035#include "monitor.h"
Shahar Havivib373a632010-06-16 15:16:11 +030036#include "sysemu.h"
bellardbb36d472005-11-05 14:22:28 +000037
bellardbb36d472005-11-05 14:22:28 +000038#include <dirent.h>
39#include <sys/ioctl.h>
bellardbb36d472005-11-05 14:22:28 +000040
aliguori446ab122008-09-14 01:06:09 +000041#include <linux/usbdevice_fs.h>
42#include <linux/version.h>
43#include "hw/usb.h"
bellardbb36d472005-11-05 14:22:28 +000044
blueswir1d9cf1572008-09-15 14:57:11 +000045/* We redefine it to avoid version problems */
46struct usb_ctrltransfer {
47 uint8_t bRequestType;
48 uint8_t bRequest;
49 uint16_t wValue;
50 uint16_t wIndex;
51 uint16_t wLength;
52 uint32_t timeout;
53 void *data;
54};
55
Gerd Hoffmann5557d822011-05-10 11:43:57 +020056typedef int USBScanFunc(void *opaque, int bus_num, int addr, char *port,
Hans de Goede0f5160d2010-11-10 10:06:23 +010057 int class_id, int vendor_id, int product_id,
bellarda594cfb2005-11-06 16:13:29 +000058 const char *product_name, int speed);
Gerd Hoffmann26a9e822009-10-26 15:56:50 +010059
Markus Armbruster0745eb12009-11-27 13:05:53 +010060//#define DEBUG
aliguori64838172008-08-21 19:31:10 +000061
62#ifdef DEBUG
malcd0f2c4c2010-02-07 02:03:50 +030063#define DPRINTF printf
aliguori64838172008-08-21 19:31:10 +000064#else
malcd0f2c4c2010-02-07 02:03:50 +030065#define DPRINTF(...)
aliguori64838172008-08-21 19:31:10 +000066#endif
bellardbb36d472005-11-05 14:22:28 +000067
blueswir15be8e1f2008-10-25 11:47:20 +000068#define USBDBG_DEVOPENED "husb: opened %s/devices\n"
69
aliguori0f431522008-10-07 20:06:37 +000070#define USBPROCBUS_PATH "/proc/bus/usb"
bellard1f6e24e2006-06-26 21:00:51 +000071#define PRODUCT_NAME_SZ 32
Hans de Goede3a4854b2010-11-26 15:02:16 +010072#define MAX_ENDPOINTS 15
Gerd Hoffmann5557d822011-05-10 11:43:57 +020073#define MAX_PORTLEN 16
aliguori0f431522008-10-07 20:06:37 +000074#define USBDEVBUS_PATH "/dev/bus/usb"
75#define USBSYSBUS_PATH "/sys/bus/usb"
76
77static char *usb_host_device_path;
78
79#define USB_FS_NONE 0
80#define USB_FS_PROC 1
81#define USB_FS_DEV 2
82#define USB_FS_SYS 3
83
84static int usb_fs_type;
bellardbb36d472005-11-05 14:22:28 +000085
balrogb9dc0332007-10-04 22:47:34 +000086/* endpoint association data */
Hans de Goede060dc842010-11-26 11:41:08 +010087#define ISO_FRAME_DESC_PER_URB 32
88#define ISO_URB_COUNT 3
Hans de Goedea0b5fec2010-11-26 14:56:17 +010089#define INVALID_EP_TYPE 255
Hans de Goede060dc842010-11-26 11:41:08 +010090
Gerd Hoffmann71138532011-05-16 10:21:51 +020091/* devio.c limits single requests to 16k */
92#define MAX_USBFS_BUFFER_SIZE 16384
93
Hans de Goede060dc842010-11-26 11:41:08 +010094typedef struct AsyncURB AsyncURB;
95
balrogb9dc0332007-10-04 22:47:34 +000096struct endp_data {
97 uint8_t type;
aliguori64838172008-08-21 19:31:10 +000098 uint8_t halted;
Hans de Goedebb6d5492010-11-26 19:11:03 +010099 uint8_t iso_started;
Hans de Goede060dc842010-11-26 11:41:08 +0100100 AsyncURB *iso_urb;
101 int iso_urb_idx;
Hans de Goedebb6d5492010-11-26 19:11:03 +0100102 int iso_buffer_used;
Hans de Goede060dc842010-11-26 11:41:08 +0100103 int max_packet_size;
balrogb9dc0332007-10-04 22:47:34 +0000104};
105
Gerd Hoffmann26a9e822009-10-26 15:56:50 +0100106struct USBAutoFilter {
107 uint32_t bus_num;
108 uint32_t addr;
Gerd Hoffmann9056a292011-05-10 12:07:42 +0200109 char *port;
Gerd Hoffmann26a9e822009-10-26 15:56:50 +0100110 uint32_t vendor_id;
111 uint32_t product_id;
112};
113
bellardbb36d472005-11-05 14:22:28 +0000114typedef struct USBHostDevice {
115 USBDevice dev;
aliguori64838172008-08-21 19:31:10 +0000116 int fd;
117
118 uint8_t descr[1024];
119 int descr_len;
120 int configuration;
aliguori446ab122008-09-14 01:06:09 +0000121 int ninterfaces;
aliguori24772c12008-08-21 19:31:52 +0000122 int closing;
Shahar Havivib373a632010-06-16 15:16:11 +0300123 Notifier exit;
aliguori64838172008-08-21 19:31:10 +0000124
balrogb9dc0332007-10-04 22:47:34 +0000125 struct endp_data endp_table[MAX_ENDPOINTS];
Gerd Hoffmann7a8fc832011-05-16 09:13:05 +0200126 QLIST_HEAD(, AsyncURB) aurbs;
aliguori4b096fc2008-08-21 19:28:55 +0000127
aliguori4b096fc2008-08-21 19:28:55 +0000128 /* Host side address */
129 int bus_num;
130 int addr;
Gerd Hoffmann5557d822011-05-10 11:43:57 +0200131 char port[MAX_PORTLEN];
Gerd Hoffmann26a9e822009-10-26 15:56:50 +0100132 struct USBAutoFilter match;
aliguori4b096fc2008-08-21 19:28:55 +0000133
Gerd Hoffmann26a9e822009-10-26 15:56:50 +0100134 QTAILQ_ENTRY(USBHostDevice) next;
bellardbb36d472005-11-05 14:22:28 +0000135} USBHostDevice;
136
Gerd Hoffmann26a9e822009-10-26 15:56:50 +0100137static QTAILQ_HEAD(, USBHostDevice) hostdevs = QTAILQ_HEAD_INITIALIZER(hostdevs);
138
139static int usb_host_close(USBHostDevice *dev);
140static int parse_filter(const char *spec, struct USBAutoFilter *f);
141static void usb_host_auto_check(void *unused);
Hans de Goede2cc59d82010-11-10 10:06:25 +0100142static int usb_host_read_file(char *line, size_t line_size,
143 const char *device_file, const char *device_name);
Gerd Hoffmann26a9e822009-10-26 15:56:50 +0100144
aliguori64838172008-08-21 19:31:10 +0000145static int is_isoc(USBHostDevice *s, int ep)
146{
147 return s->endp_table[ep - 1].type == USBDEVFS_URB_TYPE_ISO;
148}
149
Hans de Goedea0b5fec2010-11-26 14:56:17 +0100150static int is_valid(USBHostDevice *s, int ep)
151{
152 return s->endp_table[ep - 1].type != INVALID_EP_TYPE;
153}
154
aliguori64838172008-08-21 19:31:10 +0000155static int is_halted(USBHostDevice *s, int ep)
156{
157 return s->endp_table[ep - 1].halted;
158}
159
160static void clear_halt(USBHostDevice *s, int ep)
161{
162 s->endp_table[ep - 1].halted = 0;
163}
164
165static void set_halt(USBHostDevice *s, int ep)
166{
167 s->endp_table[ep - 1].halted = 1;
168}
169
Hans de Goedebb6d5492010-11-26 19:11:03 +0100170static int is_iso_started(USBHostDevice *s, int ep)
171{
172 return s->endp_table[ep - 1].iso_started;
173}
174
175static void clear_iso_started(USBHostDevice *s, int ep)
176{
177 s->endp_table[ep - 1].iso_started = 0;
178}
179
180static void set_iso_started(USBHostDevice *s, int ep)
181{
182 s->endp_table[ep - 1].iso_started = 1;
183}
184
Hans de Goede060dc842010-11-26 11:41:08 +0100185static void set_iso_urb(USBHostDevice *s, int ep, AsyncURB *iso_urb)
186{
187 s->endp_table[ep - 1].iso_urb = iso_urb;
188}
189
190static AsyncURB *get_iso_urb(USBHostDevice *s, int ep)
191{
192 return s->endp_table[ep - 1].iso_urb;
193}
194
195static void set_iso_urb_idx(USBHostDevice *s, int ep, int i)
196{
197 s->endp_table[ep - 1].iso_urb_idx = i;
198}
199
200static int get_iso_urb_idx(USBHostDevice *s, int ep)
201{
202 return s->endp_table[ep - 1].iso_urb_idx;
203}
204
Hans de Goedebb6d5492010-11-26 19:11:03 +0100205static void set_iso_buffer_used(USBHostDevice *s, int ep, int i)
206{
207 s->endp_table[ep - 1].iso_buffer_used = i;
208}
209
210static int get_iso_buffer_used(USBHostDevice *s, int ep)
211{
212 return s->endp_table[ep - 1].iso_buffer_used;
213}
214
Gerd Hoffmann6dfcdcc2011-05-16 11:30:57 +0200215static void set_max_packet_size(USBHostDevice *s, int ep, uint8_t *descriptor)
216{
217 int raw = descriptor[4] + (descriptor[5] << 8);
218 int size, microframes;
219
220 size = raw & 0x7ff;
221 switch ((raw >> 11) & 3) {
222 case 1: microframes = 2; break;
223 case 2: microframes = 3; break;
224 default: microframes = 1; break;
225 }
226 DPRINTF("husb: max packet size: 0x%x -> %d x %d\n",
227 raw, microframes, size);
228 s->endp_table[ep - 1].max_packet_size = size * microframes;
229}
230
Hans de Goede060dc842010-11-26 11:41:08 +0100231static int get_max_packet_size(USBHostDevice *s, int ep)
232{
233 return s->endp_table[ep - 1].max_packet_size;
234}
235
David Ahern27911042010-04-24 10:26:22 -0600236/*
aliguori64838172008-08-21 19:31:10 +0000237 * Async URB state.
Hans de Goede060dc842010-11-26 11:41:08 +0100238 * We always allocate iso packet descriptors even for bulk transfers
David Ahern27911042010-04-24 10:26:22 -0600239 * to simplify allocation and casts.
aliguori64838172008-08-21 19:31:10 +0000240 */
Hans de Goede060dc842010-11-26 11:41:08 +0100241struct AsyncURB
balrogb9dc0332007-10-04 22:47:34 +0000242{
aliguori64838172008-08-21 19:31:10 +0000243 struct usbdevfs_urb urb;
Hans de Goede060dc842010-11-26 11:41:08 +0100244 struct usbdevfs_iso_packet_desc isocpd[ISO_FRAME_DESC_PER_URB];
Gerd Hoffmann7a8fc832011-05-16 09:13:05 +0200245 USBHostDevice *hdev;
246 QLIST_ENTRY(AsyncURB) next;
aliguori64838172008-08-21 19:31:10 +0000247
Hans de Goede060dc842010-11-26 11:41:08 +0100248 /* For regular async urbs */
aliguori64838172008-08-21 19:31:10 +0000249 USBPacket *packet;
Gerd Hoffmann71138532011-05-16 10:21:51 +0200250 int more; /* large transfer, more urbs follow */
Hans de Goede060dc842010-11-26 11:41:08 +0100251
252 /* For buffered iso handling */
253 int iso_frame_idx; /* -1 means in flight */
254};
aliguori64838172008-08-21 19:31:10 +0000255
Gerd Hoffmann7a8fc832011-05-16 09:13:05 +0200256static AsyncURB *async_alloc(USBHostDevice *s)
aliguori64838172008-08-21 19:31:10 +0000257{
Gerd Hoffmann7a8fc832011-05-16 09:13:05 +0200258 AsyncURB *aurb = qemu_mallocz(sizeof(AsyncURB));
259 aurb->hdev = s;
260 QLIST_INSERT_HEAD(&s->aurbs, aurb, next);
261 return aurb;
balrogb9dc0332007-10-04 22:47:34 +0000262}
263
aliguori64838172008-08-21 19:31:10 +0000264static void async_free(AsyncURB *aurb)
balrogb9dc0332007-10-04 22:47:34 +0000265{
Gerd Hoffmann7a8fc832011-05-16 09:13:05 +0200266 QLIST_REMOVE(aurb, next);
aliguori64838172008-08-21 19:31:10 +0000267 qemu_free(aurb);
268}
balrogb9dc0332007-10-04 22:47:34 +0000269
Gerd Hoffmann41c01ee2011-05-24 16:12:31 +0200270static void do_disconnect(USBHostDevice *s)
271{
272 printf("husb: device %d.%d disconnected\n",
273 s->bus_num, s->addr);
274 usb_host_close(s);
275 usb_host_auto_check(NULL);
276}
277
aliguori64838172008-08-21 19:31:10 +0000278static void async_complete(void *opaque)
279{
280 USBHostDevice *s = opaque;
281 AsyncURB *aurb;
balrogb9dc0332007-10-04 22:47:34 +0000282
aliguori64838172008-08-21 19:31:10 +0000283 while (1) {
David Ahern27911042010-04-24 10:26:22 -0600284 USBPacket *p;
aliguori64838172008-08-21 19:31:10 +0000285
David Ahern27911042010-04-24 10:26:22 -0600286 int r = ioctl(s->fd, USBDEVFS_REAPURBNDELAY, &aurb);
aliguori64838172008-08-21 19:31:10 +0000287 if (r < 0) {
David Ahern27911042010-04-24 10:26:22 -0600288 if (errno == EAGAIN) {
aliguori64838172008-08-21 19:31:10 +0000289 return;
David Ahern27911042010-04-24 10:26:22 -0600290 }
aliguori24772c12008-08-21 19:31:52 +0000291 if (errno == ENODEV && !s->closing) {
Gerd Hoffmann41c01ee2011-05-24 16:12:31 +0200292 do_disconnect(s);
aliguori64838172008-08-21 19:31:10 +0000293 return;
294 }
295
malcd0f2c4c2010-02-07 02:03:50 +0300296 DPRINTF("husb: async. reap urb failed errno %d\n", errno);
aliguori64838172008-08-21 19:31:10 +0000297 return;
balrogb9dc0332007-10-04 22:47:34 +0000298 }
aliguori64838172008-08-21 19:31:10 +0000299
David Ahern27911042010-04-24 10:26:22 -0600300 DPRINTF("husb: async completed. aurb %p status %d alen %d\n",
aliguori64838172008-08-21 19:31:10 +0000301 aurb, aurb->urb.status, aurb->urb.actual_length);
302
Hans de Goede060dc842010-11-26 11:41:08 +0100303 /* If this is a buffered iso urb mark it as complete and don't do
304 anything else (it is handled further in usb_host_handle_iso_data) */
305 if (aurb->iso_frame_idx == -1) {
306 if (aurb->urb.status == -EPIPE) {
307 set_halt(s, aurb->urb.endpoint & 0xf);
308 }
309 aurb->iso_frame_idx = 0;
310 continue;
311 }
312
313 p = aurb->packet;
314
David Ahern27911042010-04-24 10:26:22 -0600315 if (p) {
aliguori64838172008-08-21 19:31:10 +0000316 switch (aurb->urb.status) {
317 case 0:
Gerd Hoffmann71138532011-05-16 10:21:51 +0200318 p->len += aurb->urb.actual_length;
aliguori64838172008-08-21 19:31:10 +0000319 break;
320
321 case -EPIPE:
322 set_halt(s, p->devep);
David Ahern27911042010-04-24 10:26:22 -0600323 p->len = USB_RET_STALL;
324 break;
Paul Bolledcc7e252009-10-13 13:40:08 +0200325
aliguori64838172008-08-21 19:31:10 +0000326 default:
327 p->len = USB_RET_NAK;
328 break;
329 }
330
Hans de Goede50b79632011-02-02 17:36:29 +0100331 if (aurb->urb.type == USBDEVFS_URB_TYPE_CONTROL) {
332 usb_generic_async_ctrl_complete(&s->dev, p);
Gerd Hoffmann71138532011-05-16 10:21:51 +0200333 } else if (!aurb->more) {
Hans de Goede50b79632011-02-02 17:36:29 +0100334 usb_packet_complete(&s->dev, p);
335 }
David Ahern27911042010-04-24 10:26:22 -0600336 }
aliguori64838172008-08-21 19:31:10 +0000337
338 async_free(aurb);
balrogb9dc0332007-10-04 22:47:34 +0000339 }
balrogb9dc0332007-10-04 22:47:34 +0000340}
341
Gerd Hoffmanneb5e6802011-05-16 10:34:53 +0200342static void usb_host_async_cancel(USBDevice *dev, USBPacket *p)
balrogb9dc0332007-10-04 22:47:34 +0000343{
Gerd Hoffmanneb5e6802011-05-16 10:34:53 +0200344 USBHostDevice *s = DO_UPCAST(USBHostDevice, dev, dev);
Gerd Hoffmann227ebeb2011-05-16 09:20:06 +0200345 AsyncURB *aurb;
balrogb9dc0332007-10-04 22:47:34 +0000346
Gerd Hoffmann227ebeb2011-05-16 09:20:06 +0200347 QLIST_FOREACH(aurb, &s->aurbs, next) {
348 if (p != aurb->packet) {
349 continue;
350 }
balrogb9dc0332007-10-04 22:47:34 +0000351
Gerd Hoffmann227ebeb2011-05-16 09:20:06 +0200352 DPRINTF("husb: async cancel: packet %p, aurb %p\n", p, aurb);
aliguori64838172008-08-21 19:31:10 +0000353
Gerd Hoffmann227ebeb2011-05-16 09:20:06 +0200354 /* Mark it as dead (see async_complete above) */
355 aurb->packet = NULL;
356
357 int r = ioctl(s->fd, USBDEVFS_DISCARDURB, aurb);
358 if (r < 0) {
359 DPRINTF("husb: async. discard urb failed errno %d\n", errno);
360 }
balrogb9dc0332007-10-04 22:47:34 +0000361 }
balrogb9dc0332007-10-04 22:47:34 +0000362}
363
aliguori446ab122008-09-14 01:06:09 +0000364static int usb_host_claim_interfaces(USBHostDevice *dev, int configuration)
balrogb9dc0332007-10-04 22:47:34 +0000365{
Gerd Hoffmann41c01ee2011-05-24 16:12:31 +0200366 const char *op = NULL;
balrogb9dc0332007-10-04 22:47:34 +0000367 int dev_descr_len, config_descr_len;
Blue Swirld4c4e6f2010-04-25 18:23:04 +0000368 int interface, nb_interfaces;
balrogb9dc0332007-10-04 22:47:34 +0000369 int ret, i;
370
371 if (configuration == 0) /* address state - ignore */
372 return 1;
373
malcd0f2c4c2010-02-07 02:03:50 +0300374 DPRINTF("husb: claiming interfaces. config %d\n", configuration);
aliguori446ab122008-09-14 01:06:09 +0000375
balrogb9dc0332007-10-04 22:47:34 +0000376 i = 0;
377 dev_descr_len = dev->descr[0];
David Ahern27911042010-04-24 10:26:22 -0600378 if (dev_descr_len > dev->descr_len) {
balrogb9dc0332007-10-04 22:47:34 +0000379 goto fail;
David Ahern27911042010-04-24 10:26:22 -0600380 }
balrogb9dc0332007-10-04 22:47:34 +0000381
382 i += dev_descr_len;
383 while (i < dev->descr_len) {
David Ahern27911042010-04-24 10:26:22 -0600384 DPRINTF("husb: i is %d, descr_len is %d, dl %d, dt %d\n",
385 i, dev->descr_len,
balrogb9dc0332007-10-04 22:47:34 +0000386 dev->descr[i], dev->descr[i+1]);
aliguori64838172008-08-21 19:31:10 +0000387
balrogb9dc0332007-10-04 22:47:34 +0000388 if (dev->descr[i+1] != USB_DT_CONFIG) {
389 i += dev->descr[i];
390 continue;
391 }
392 config_descr_len = dev->descr[i];
393
David Ahern27911042010-04-24 10:26:22 -0600394 printf("husb: config #%d need %d\n", dev->descr[i + 5], configuration);
aliguori1f3870a2008-08-21 19:27:48 +0000395
aliguori446ab122008-09-14 01:06:09 +0000396 if (configuration < 0 || configuration == dev->descr[i + 5]) {
397 configuration = dev->descr[i + 5];
balrogb9dc0332007-10-04 22:47:34 +0000398 break;
aliguori446ab122008-09-14 01:06:09 +0000399 }
balrogb9dc0332007-10-04 22:47:34 +0000400
401 i += config_descr_len;
402 }
403
404 if (i >= dev->descr_len) {
David Ahern27911042010-04-24 10:26:22 -0600405 fprintf(stderr,
406 "husb: update iface failed. no matching configuration\n");
balrogb9dc0332007-10-04 22:47:34 +0000407 goto fail;
408 }
409 nb_interfaces = dev->descr[i + 4];
410
411#ifdef USBDEVFS_DISCONNECT
412 /* earlier Linux 2.4 do not support that */
413 {
414 struct usbdevfs_ioctl ctrl;
415 for (interface = 0; interface < nb_interfaces; interface++) {
416 ctrl.ioctl_code = USBDEVFS_DISCONNECT;
417 ctrl.ifno = interface;
Brad Hards021730f2011-04-13 19:45:32 +1000418 ctrl.data = 0;
Gerd Hoffmann41c01ee2011-05-24 16:12:31 +0200419 op = "USBDEVFS_DISCONNECT";
balrogb9dc0332007-10-04 22:47:34 +0000420 ret = ioctl(dev->fd, USBDEVFS_IOCTL, &ctrl);
421 if (ret < 0 && errno != ENODATA) {
balrogb9dc0332007-10-04 22:47:34 +0000422 goto fail;
423 }
424 }
425 }
426#endif
427
428 /* XXX: only grab if all interfaces are free */
429 for (interface = 0; interface < nb_interfaces; interface++) {
Gerd Hoffmann41c01ee2011-05-24 16:12:31 +0200430 op = "USBDEVFS_CLAIMINTERFACE";
balrogb9dc0332007-10-04 22:47:34 +0000431 ret = ioctl(dev->fd, USBDEVFS_CLAIMINTERFACE, &interface);
432 if (ret < 0) {
433 if (errno == EBUSY) {
aliguori64838172008-08-21 19:31:10 +0000434 printf("husb: update iface. device already grabbed\n");
balrogb9dc0332007-10-04 22:47:34 +0000435 } else {
aliguori64838172008-08-21 19:31:10 +0000436 perror("husb: failed to claim interface");
balrogb9dc0332007-10-04 22:47:34 +0000437 }
Gerd Hoffmann41c01ee2011-05-24 16:12:31 +0200438 goto fail;
balrogb9dc0332007-10-04 22:47:34 +0000439 }
440 }
441
aliguori64838172008-08-21 19:31:10 +0000442 printf("husb: %d interfaces claimed for configuration %d\n",
balrogb9dc0332007-10-04 22:47:34 +0000443 nb_interfaces, configuration);
balrogb9dc0332007-10-04 22:47:34 +0000444
aliguori446ab122008-09-14 01:06:09 +0000445 dev->ninterfaces = nb_interfaces;
446 dev->configuration = configuration;
447 return 1;
Gerd Hoffmann41c01ee2011-05-24 16:12:31 +0200448
449fail:
450 if (errno == ENODEV) {
451 do_disconnect(dev);
452 }
453 perror(op);
454 return 0;
aliguori446ab122008-09-14 01:06:09 +0000455}
456
457static int usb_host_release_interfaces(USBHostDevice *s)
458{
459 int ret, i;
460
malcd0f2c4c2010-02-07 02:03:50 +0300461 DPRINTF("husb: releasing interfaces\n");
aliguori446ab122008-09-14 01:06:09 +0000462
463 for (i = 0; i < s->ninterfaces; i++) {
464 ret = ioctl(s->fd, USBDEVFS_RELEASEINTERFACE, &i);
465 if (ret < 0) {
466 perror("husb: failed to release interface");
467 return 0;
468 }
469 }
470
balrogb9dc0332007-10-04 22:47:34 +0000471 return 1;
472}
473
bellard059809e2006-07-19 18:06:15 +0000474static void usb_host_handle_reset(USBDevice *dev)
bellardbb36d472005-11-05 14:22:28 +0000475{
Gerd Hoffmann26a9e822009-10-26 15:56:50 +0100476 USBHostDevice *s = DO_UPCAST(USBHostDevice, dev, dev);
aliguori64838172008-08-21 19:31:10 +0000477
malcd0f2c4c2010-02-07 02:03:50 +0300478 DPRINTF("husb: reset device %u.%u\n", s->bus_num, s->addr);
aliguori64838172008-08-21 19:31:10 +0000479
bellardbb36d472005-11-05 14:22:28 +0000480 ioctl(s->fd, USBDEVFS_RESET);
aliguori446ab122008-09-14 01:06:09 +0000481
482 usb_host_claim_interfaces(s, s->configuration);
ths5fafdf22007-09-16 21:08:06 +0000483}
bellardbb36d472005-11-05 14:22:28 +0000484
bellard059809e2006-07-19 18:06:15 +0000485static void usb_host_handle_destroy(USBDevice *dev)
486{
487 USBHostDevice *s = (USBHostDevice *)dev;
488
Gerd Hoffmann26a9e822009-10-26 15:56:50 +0100489 usb_host_close(s);
490 QTAILQ_REMOVE(&hostdevs, s, next);
Shahar Havivib373a632010-06-16 15:16:11 +0300491 qemu_remove_exit_notifier(&s->exit);
bellard059809e2006-07-19 18:06:15 +0000492}
493
balrogb9dc0332007-10-04 22:47:34 +0000494static int usb_linux_update_endp_table(USBHostDevice *s);
495
Hans de Goede060dc842010-11-26 11:41:08 +0100496/* iso data is special, we need to keep enough urbs in flight to make sure
497 that the controller never runs out of them, otherwise the device will
498 likely suffer a buffer underrun / overrun. */
499static AsyncURB *usb_host_alloc_iso(USBHostDevice *s, uint8_t ep, int in)
500{
501 AsyncURB *aurb;
502 int i, j, len = get_max_packet_size(s, ep);
503
504 aurb = qemu_mallocz(ISO_URB_COUNT * sizeof(*aurb));
505 for (i = 0; i < ISO_URB_COUNT; i++) {
506 aurb[i].urb.endpoint = ep;
507 aurb[i].urb.buffer_length = ISO_FRAME_DESC_PER_URB * len;
508 aurb[i].urb.buffer = qemu_malloc(aurb[i].urb.buffer_length);
509 aurb[i].urb.type = USBDEVFS_URB_TYPE_ISO;
510 aurb[i].urb.flags = USBDEVFS_URB_ISO_ASAP;
511 aurb[i].urb.number_of_packets = ISO_FRAME_DESC_PER_URB;
512 for (j = 0 ; j < ISO_FRAME_DESC_PER_URB; j++)
513 aurb[i].urb.iso_frame_desc[j].length = len;
514 if (in) {
515 aurb[i].urb.endpoint |= 0x80;
516 /* Mark as fully consumed (idle) */
517 aurb[i].iso_frame_idx = ISO_FRAME_DESC_PER_URB;
518 }
519 }
520 set_iso_urb(s, ep, aurb);
521
522 return aurb;
523}
524
525static void usb_host_stop_n_free_iso(USBHostDevice *s, uint8_t ep)
526{
527 AsyncURB *aurb;
528 int i, ret, killed = 0, free = 1;
529
530 aurb = get_iso_urb(s, ep);
531 if (!aurb) {
532 return;
533 }
534
535 for (i = 0; i < ISO_URB_COUNT; i++) {
536 /* in flight? */
537 if (aurb[i].iso_frame_idx == -1) {
538 ret = ioctl(s->fd, USBDEVFS_DISCARDURB, &aurb[i]);
539 if (ret < 0) {
540 printf("husb: discard isoc in urb failed errno %d\n", errno);
541 free = 0;
542 continue;
543 }
544 killed++;
545 }
546 }
547
548 /* Make sure any urbs we've killed are reaped before we free them */
549 if (killed) {
550 async_complete(s);
551 }
552
553 for (i = 0; i < ISO_URB_COUNT; i++) {
554 qemu_free(aurb[i].urb.buffer);
555 }
556
557 if (free)
558 qemu_free(aurb);
559 else
560 printf("husb: leaking iso urbs because of discard failure\n");
561 set_iso_urb(s, ep, NULL);
Hans de Goedebb6d5492010-11-26 19:11:03 +0100562 set_iso_urb_idx(s, ep, 0);
563 clear_iso_started(s, ep);
Hans de Goede060dc842010-11-26 11:41:08 +0100564}
565
566static int urb_status_to_usb_ret(int status)
567{
568 switch (status) {
569 case -EPIPE:
570 return USB_RET_STALL;
571 default:
572 return USB_RET_NAK;
573 }
574}
575
Hans de Goedebb6d5492010-11-26 19:11:03 +0100576static int usb_host_handle_iso_data(USBHostDevice *s, USBPacket *p, int in)
Hans de Goede060dc842010-11-26 11:41:08 +0100577{
578 AsyncURB *aurb;
Hans de Goedebb6d5492010-11-26 19:11:03 +0100579 int i, j, ret, max_packet_size, offset, len = 0;
Hans de Goede975f2992010-11-26 14:59:35 +0100580
581 max_packet_size = get_max_packet_size(s, p->devep);
582 if (max_packet_size == 0)
583 return USB_RET_NAK;
Hans de Goede060dc842010-11-26 11:41:08 +0100584
585 aurb = get_iso_urb(s, p->devep);
586 if (!aurb) {
Hans de Goedebb6d5492010-11-26 19:11:03 +0100587 aurb = usb_host_alloc_iso(s, p->devep, in);
Hans de Goede060dc842010-11-26 11:41:08 +0100588 }
589
590 i = get_iso_urb_idx(s, p->devep);
591 j = aurb[i].iso_frame_idx;
592 if (j >= 0 && j < ISO_FRAME_DESC_PER_URB) {
Hans de Goedebb6d5492010-11-26 19:11:03 +0100593 if (in) {
594 /* Check urb status */
595 if (aurb[i].urb.status) {
596 len = urb_status_to_usb_ret(aurb[i].urb.status);
597 /* Move to the next urb */
598 aurb[i].iso_frame_idx = ISO_FRAME_DESC_PER_URB - 1;
599 /* Check frame status */
600 } else if (aurb[i].urb.iso_frame_desc[j].status) {
601 len = urb_status_to_usb_ret(
602 aurb[i].urb.iso_frame_desc[j].status);
603 /* Check the frame fits */
604 } else if (aurb[i].urb.iso_frame_desc[j].actual_length > p->len) {
605 printf("husb: received iso data is larger then packet\n");
606 len = USB_RET_NAK;
607 /* All good copy data over */
608 } else {
609 len = aurb[i].urb.iso_frame_desc[j].actual_length;
610 memcpy(p->data,
611 aurb[i].urb.buffer +
612 j * aurb[i].urb.iso_frame_desc[0].length,
613 len);
614 }
Hans de Goede060dc842010-11-26 11:41:08 +0100615 } else {
Hans de Goedebb6d5492010-11-26 19:11:03 +0100616 len = p->len;
617 offset = (j == 0) ? 0 : get_iso_buffer_used(s, p->devep);
618
619 /* Check the frame fits */
620 if (len > max_packet_size) {
621 printf("husb: send iso data is larger then max packet size\n");
622 return USB_RET_NAK;
623 }
624
625 /* All good copy data over */
626 memcpy(aurb[i].urb.buffer + offset, p->data, len);
627 aurb[i].urb.iso_frame_desc[j].length = len;
628 offset += len;
629 set_iso_buffer_used(s, p->devep, offset);
630
631 /* Start the stream once we have buffered enough data */
632 if (!is_iso_started(s, p->devep) && i == 1 && j == 8) {
633 set_iso_started(s, p->devep);
634 }
Hans de Goede060dc842010-11-26 11:41:08 +0100635 }
636 aurb[i].iso_frame_idx++;
637 if (aurb[i].iso_frame_idx == ISO_FRAME_DESC_PER_URB) {
638 i = (i + 1) % ISO_URB_COUNT;
639 set_iso_urb_idx(s, p->devep, i);
640 }
Hans de Goedebb6d5492010-11-26 19:11:03 +0100641 } else {
642 if (in) {
643 set_iso_started(s, p->devep);
644 } else {
645 DPRINTF("hubs: iso out error no free buffer, dropping packet\n");
646 }
Hans de Goede060dc842010-11-26 11:41:08 +0100647 }
648
Hans de Goedebb6d5492010-11-26 19:11:03 +0100649 if (is_iso_started(s, p->devep)) {
650 /* (Re)-submit all fully consumed / filled urbs */
651 for (i = 0; i < ISO_URB_COUNT; i++) {
652 if (aurb[i].iso_frame_idx == ISO_FRAME_DESC_PER_URB) {
653 ret = ioctl(s->fd, USBDEVFS_SUBMITURB, &aurb[i]);
654 if (ret < 0) {
655 printf("husb error submitting iso urb %d: %d\n", i, errno);
656 if (!in || len == 0) {
657 switch(errno) {
658 case ETIMEDOUT:
659 len = USB_RET_NAK;
Stefan Weil0225e252011-05-07 22:10:53 +0200660 break;
Hans de Goedebb6d5492010-11-26 19:11:03 +0100661 case EPIPE:
662 default:
663 len = USB_RET_STALL;
664 }
Hans de Goede060dc842010-11-26 11:41:08 +0100665 }
Hans de Goedebb6d5492010-11-26 19:11:03 +0100666 break;
Hans de Goede060dc842010-11-26 11:41:08 +0100667 }
Hans de Goedebb6d5492010-11-26 19:11:03 +0100668 aurb[i].iso_frame_idx = -1;
Hans de Goede060dc842010-11-26 11:41:08 +0100669 }
Hans de Goede060dc842010-11-26 11:41:08 +0100670 }
671 }
672
673 return len;
674}
675
Hans de Goede50b79632011-02-02 17:36:29 +0100676static int usb_host_handle_data(USBDevice *dev, USBPacket *p)
bellardbb36d472005-11-05 14:22:28 +0000677{
Hans de Goede50b79632011-02-02 17:36:29 +0100678 USBHostDevice *s = DO_UPCAST(USBHostDevice, dev, dev);
aliguori64838172008-08-21 19:31:10 +0000679 struct usbdevfs_urb *urb;
aliguori446ab122008-09-14 01:06:09 +0000680 AsyncURB *aurb;
Gerd Hoffmann71138532011-05-16 10:21:51 +0200681 int ret, rem;
682 uint8_t *pbuf;
Hans de Goede060dc842010-11-26 11:41:08 +0100683 uint8_t ep;
684
Hans de Goedea0b5fec2010-11-26 14:56:17 +0100685 if (!is_valid(s, p->devep)) {
686 return USB_RET_NAK;
687 }
688
Hans de Goede060dc842010-11-26 11:41:08 +0100689 if (p->pid == USB_TOKEN_IN) {
690 ep = p->devep | 0x80;
691 } else {
692 ep = p->devep;
693 }
694
695 if (is_halted(s, p->devep)) {
696 ret = ioctl(s->fd, USBDEVFS_CLEAR_HALT, &ep);
697 if (ret < 0) {
698 DPRINTF("husb: failed to clear halt. ep 0x%x errno %d\n",
699 ep, errno);
700 return USB_RET_NAK;
701 }
702 clear_halt(s, p->devep);
703 }
704
Hans de Goedebb6d5492010-11-26 19:11:03 +0100705 if (is_isoc(s, p->devep)) {
706 return usb_host_handle_iso_data(s, p, p->pid == USB_TOKEN_IN);
707 }
bellardbb36d472005-11-05 14:22:28 +0000708
Gerd Hoffmann71138532011-05-16 10:21:51 +0200709 rem = p->len;
710 pbuf = p->data;
711 p->len = 0;
712 while (rem) {
713 aurb = async_alloc(s);
714 aurb->packet = p;
balrogb9dc0332007-10-04 22:47:34 +0000715
Gerd Hoffmann71138532011-05-16 10:21:51 +0200716 urb = &aurb->urb;
717 urb->endpoint = ep;
718 urb->type = USBDEVFS_URB_TYPE_BULK;
719 urb->usercontext = s;
720 urb->buffer = pbuf;
aliguori64838172008-08-21 19:31:10 +0000721
Gerd Hoffmann71138532011-05-16 10:21:51 +0200722 if (rem > MAX_USBFS_BUFFER_SIZE) {
723 urb->buffer_length = MAX_USBFS_BUFFER_SIZE;
724 aurb->more = 1;
725 } else {
726 urb->buffer_length = rem;
727 aurb->more = 0;
728 }
729 pbuf += urb->buffer_length;
730 rem -= urb->buffer_length;
aliguori64838172008-08-21 19:31:10 +0000731
Gerd Hoffmann71138532011-05-16 10:21:51 +0200732 ret = ioctl(s->fd, USBDEVFS_SUBMITURB, urb);
aliguori64838172008-08-21 19:31:10 +0000733
Gerd Hoffmann71138532011-05-16 10:21:51 +0200734 DPRINTF("husb: data submit: ep 0x%x, len %u, more %d, packet %p, aurb %p\n",
735 urb->endpoint, urb->buffer_length, aurb->more, p, aurb);
aliguori64838172008-08-21 19:31:10 +0000736
Gerd Hoffmann71138532011-05-16 10:21:51 +0200737 if (ret < 0) {
738 DPRINTF("husb: submit failed. errno %d\n", errno);
739 async_free(aurb);
aliguori64838172008-08-21 19:31:10 +0000740
Gerd Hoffmann71138532011-05-16 10:21:51 +0200741 switch(errno) {
742 case ETIMEDOUT:
743 return USB_RET_NAK;
744 case EPIPE:
745 default:
746 return USB_RET_STALL;
747 }
balrogb9dc0332007-10-04 22:47:34 +0000748 }
749 }
aliguori64838172008-08-21 19:31:10 +0000750
balrogb9dc0332007-10-04 22:47:34 +0000751 return USB_RET_ASYNC;
balrogb9dc0332007-10-04 22:47:34 +0000752}
753
aliguori446ab122008-09-14 01:06:09 +0000754static int ctrl_error(void)
755{
David Ahern27911042010-04-24 10:26:22 -0600756 if (errno == ETIMEDOUT) {
aliguori446ab122008-09-14 01:06:09 +0000757 return USB_RET_NAK;
David Ahern27911042010-04-24 10:26:22 -0600758 } else {
aliguori446ab122008-09-14 01:06:09 +0000759 return USB_RET_STALL;
David Ahern27911042010-04-24 10:26:22 -0600760 }
aliguori446ab122008-09-14 01:06:09 +0000761}
762
763static int usb_host_set_address(USBHostDevice *s, int addr)
764{
malcd0f2c4c2010-02-07 02:03:50 +0300765 DPRINTF("husb: ctrl set addr %u\n", addr);
aliguori446ab122008-09-14 01:06:09 +0000766 s->dev.addr = addr;
767 return 0;
768}
769
770static int usb_host_set_config(USBHostDevice *s, int config)
771{
772 usb_host_release_interfaces(s);
773
774 int ret = ioctl(s->fd, USBDEVFS_SETCONFIGURATION, &config);
David Ahern27911042010-04-24 10:26:22 -0600775
malcd0f2c4c2010-02-07 02:03:50 +0300776 DPRINTF("husb: ctrl set config %d ret %d errno %d\n", config, ret, errno);
David Ahern27911042010-04-24 10:26:22 -0600777
778 if (ret < 0) {
aliguori446ab122008-09-14 01:06:09 +0000779 return ctrl_error();
David Ahern27911042010-04-24 10:26:22 -0600780 }
aliguori446ab122008-09-14 01:06:09 +0000781 usb_host_claim_interfaces(s, config);
782 return 0;
783}
784
785static int usb_host_set_interface(USBHostDevice *s, int iface, int alt)
786{
787 struct usbdevfs_setinterface si;
Hans de Goede060dc842010-11-26 11:41:08 +0100788 int i, ret;
789
Hans de Goede3a4854b2010-11-26 15:02:16 +0100790 for (i = 1; i <= MAX_ENDPOINTS; i++) {
Hans de Goede060dc842010-11-26 11:41:08 +0100791 if (is_isoc(s, i)) {
792 usb_host_stop_n_free_iso(s, i);
793 }
794 }
aliguori446ab122008-09-14 01:06:09 +0000795
796 si.interface = iface;
797 si.altsetting = alt;
798 ret = ioctl(s->fd, USBDEVFS_SETINTERFACE, &si);
aliguori446ab122008-09-14 01:06:09 +0000799
David Ahern27911042010-04-24 10:26:22 -0600800 DPRINTF("husb: ctrl set iface %d altset %d ret %d errno %d\n",
801 iface, alt, ret, errno);
802
803 if (ret < 0) {
804 return ctrl_error();
805 }
aliguori446ab122008-09-14 01:06:09 +0000806 usb_linux_update_endp_table(s);
807 return 0;
808}
809
Hans de Goede50b79632011-02-02 17:36:29 +0100810static int usb_host_handle_control(USBDevice *dev, USBPacket *p,
811 int request, int value, int index, int length, uint8_t *data)
aliguori446ab122008-09-14 01:06:09 +0000812{
Hans de Goede50b79632011-02-02 17:36:29 +0100813 USBHostDevice *s = DO_UPCAST(USBHostDevice, dev, dev);
aliguori446ab122008-09-14 01:06:09 +0000814 struct usbdevfs_urb *urb;
815 AsyncURB *aurb;
Hans de Goede50b79632011-02-02 17:36:29 +0100816 int ret;
aliguori446ab122008-09-14 01:06:09 +0000817
David Ahern27911042010-04-24 10:26:22 -0600818 /*
aliguori446ab122008-09-14 01:06:09 +0000819 * Process certain standard device requests.
820 * These are infrequent and are processed synchronously.
821 */
aliguori446ab122008-09-14 01:06:09 +0000822
Hans de Goede50b79632011-02-02 17:36:29 +0100823 /* Note request is (bRequestType << 8) | bRequest */
malcd0f2c4c2010-02-07 02:03:50 +0300824 DPRINTF("husb: ctrl type 0x%x req 0x%x val 0x%x index %u len %u\n",
Hans de Goede50b79632011-02-02 17:36:29 +0100825 request >> 8, request & 0xff, value, index, length);
aliguori446ab122008-09-14 01:06:09 +0000826
Hans de Goede50b79632011-02-02 17:36:29 +0100827 switch (request) {
828 case DeviceOutRequest | USB_REQ_SET_ADDRESS:
829 return usb_host_set_address(s, value);
aliguori446ab122008-09-14 01:06:09 +0000830
Hans de Goede50b79632011-02-02 17:36:29 +0100831 case DeviceOutRequest | USB_REQ_SET_CONFIGURATION:
832 return usb_host_set_config(s, value & 0xff);
aliguori446ab122008-09-14 01:06:09 +0000833
Hans de Goede50b79632011-02-02 17:36:29 +0100834 case InterfaceOutRequest | USB_REQ_SET_INTERFACE:
aliguori446ab122008-09-14 01:06:09 +0000835 return usb_host_set_interface(s, index, value);
David Ahern27911042010-04-24 10:26:22 -0600836 }
aliguori446ab122008-09-14 01:06:09 +0000837
838 /* The rest are asynchronous */
839
Hans de Goede50b79632011-02-02 17:36:29 +0100840 if (length > sizeof(dev->data_buf)) {
841 fprintf(stderr, "husb: ctrl buffer too small (%d > %zu)\n",
842 length, sizeof(dev->data_buf));
malcb2e3b6e2009-09-12 03:18:18 +0400843 return USB_RET_STALL;
Jim Parisc4c0e232009-08-24 14:56:12 -0400844 }
845
Gerd Hoffmann7a8fc832011-05-16 09:13:05 +0200846 aurb = async_alloc(s);
aliguori446ab122008-09-14 01:06:09 +0000847 aurb->packet = p;
848
David Ahern27911042010-04-24 10:26:22 -0600849 /*
aliguori446ab122008-09-14 01:06:09 +0000850 * Setup ctrl transfer.
851 *
Brad Hardsa0102082011-04-13 19:45:33 +1000852 * s->ctrl is laid out such that data buffer immediately follows
aliguori446ab122008-09-14 01:06:09 +0000853 * 'req' struct which is exactly what usbdevfs expects.
David Ahern27911042010-04-24 10:26:22 -0600854 */
aliguori446ab122008-09-14 01:06:09 +0000855 urb = &aurb->urb;
856
857 urb->type = USBDEVFS_URB_TYPE_CONTROL;
858 urb->endpoint = p->devep;
859
Hans de Goede50b79632011-02-02 17:36:29 +0100860 urb->buffer = &dev->setup_buf;
861 urb->buffer_length = length + 8;
aliguori446ab122008-09-14 01:06:09 +0000862
863 urb->usercontext = s;
864
865 ret = ioctl(s->fd, USBDEVFS_SUBMITURB, urb);
866
malcd0f2c4c2010-02-07 02:03:50 +0300867 DPRINTF("husb: submit ctrl. len %u aurb %p\n", urb->buffer_length, aurb);
aliguori446ab122008-09-14 01:06:09 +0000868
869 if (ret < 0) {
malcd0f2c4c2010-02-07 02:03:50 +0300870 DPRINTF("husb: submit failed. errno %d\n", errno);
aliguori446ab122008-09-14 01:06:09 +0000871 async_free(aurb);
872
873 switch(errno) {
874 case ETIMEDOUT:
875 return USB_RET_NAK;
876 case EPIPE:
877 default:
878 return USB_RET_STALL;
879 }
880 }
881
aliguori446ab122008-09-14 01:06:09 +0000882 return USB_RET_ASYNC;
883}
884
Hans de Goede71d71bb2010-11-10 10:06:24 +0100885static int usb_linux_get_configuration(USBHostDevice *s)
balrogb9dc0332007-10-04 22:47:34 +0000886{
Hans de Goede71d71bb2010-11-10 10:06:24 +0100887 uint8_t configuration;
pbrooke41b3912008-10-28 18:22:59 +0000888 struct usb_ctrltransfer ct;
Hans de Goede71d71bb2010-11-10 10:06:24 +0100889 int ret;
balrogb9dc0332007-10-04 22:47:34 +0000890
Hans de Goede2cc59d82010-11-10 10:06:25 +0100891 if (usb_fs_type == USB_FS_SYS) {
892 char device_name[32], line[1024];
893 int configuration;
894
Gerd Hoffmann5557d822011-05-10 11:43:57 +0200895 sprintf(device_name, "%d-%s", s->bus_num, s->port);
Hans de Goede2cc59d82010-11-10 10:06:25 +0100896
897 if (!usb_host_read_file(line, sizeof(line), "bConfigurationValue",
898 device_name)) {
899 goto usbdevfs;
900 }
901 if (sscanf(line, "%d", &configuration) != 1) {
902 goto usbdevfs;
903 }
904 return configuration;
905 }
906
907usbdevfs:
balrogb9dc0332007-10-04 22:47:34 +0000908 ct.bRequestType = USB_DIR_IN;
909 ct.bRequest = USB_REQ_GET_CONFIGURATION;
910 ct.wValue = 0;
911 ct.wIndex = 0;
912 ct.wLength = 1;
913 ct.data = &configuration;
914 ct.timeout = 50;
915
916 ret = ioctl(s->fd, USBDEVFS_CONTROL, &ct);
917 if (ret < 0) {
Hans de Goede71d71bb2010-11-10 10:06:24 +0100918 perror("usb_linux_get_configuration");
919 return -1;
balrogb9dc0332007-10-04 22:47:34 +0000920 }
921
922 /* in address state */
David Ahern27911042010-04-24 10:26:22 -0600923 if (configuration == 0) {
Hans de Goede71d71bb2010-11-10 10:06:24 +0100924 return -1;
David Ahern27911042010-04-24 10:26:22 -0600925 }
balrogb9dc0332007-10-04 22:47:34 +0000926
Hans de Goede71d71bb2010-11-10 10:06:24 +0100927 return configuration;
928}
929
Hans de Goedeed3a3282010-11-24 12:50:00 +0100930static uint8_t usb_linux_get_alt_setting(USBHostDevice *s,
931 uint8_t configuration, uint8_t interface)
932{
933 uint8_t alt_setting;
934 struct usb_ctrltransfer ct;
935 int ret;
936
Hans de Goedec43831f2010-11-24 12:57:59 +0100937 if (usb_fs_type == USB_FS_SYS) {
938 char device_name[64], line[1024];
939 int alt_setting;
940
Gerd Hoffmann5557d822011-05-10 11:43:57 +0200941 sprintf(device_name, "%d-%s:%d.%d", s->bus_num, s->port,
Hans de Goedec43831f2010-11-24 12:57:59 +0100942 (int)configuration, (int)interface);
943
944 if (!usb_host_read_file(line, sizeof(line), "bAlternateSetting",
945 device_name)) {
946 goto usbdevfs;
947 }
948 if (sscanf(line, "%d", &alt_setting) != 1) {
949 goto usbdevfs;
950 }
951 return alt_setting;
952 }
953
954usbdevfs:
Hans de Goedeed3a3282010-11-24 12:50:00 +0100955 ct.bRequestType = USB_DIR_IN | USB_RECIP_INTERFACE;
956 ct.bRequest = USB_REQ_GET_INTERFACE;
957 ct.wValue = 0;
958 ct.wIndex = interface;
959 ct.wLength = 1;
960 ct.data = &alt_setting;
961 ct.timeout = 50;
962 ret = ioctl(s->fd, USBDEVFS_CONTROL, &ct);
963 if (ret < 0) {
964 /* Assume alt 0 on error */
965 return 0;
966 }
967
968 return alt_setting;
969}
970
Hans de Goede71d71bb2010-11-10 10:06:24 +0100971/* returns 1 on problem encountered or 0 for success */
972static int usb_linux_update_endp_table(USBHostDevice *s)
973{
974 uint8_t *descriptors;
975 uint8_t devep, type, configuration, alt_interface;
Hans de Goedeed3a3282010-11-24 12:50:00 +0100976 int interface, length, i;
Hans de Goede71d71bb2010-11-10 10:06:24 +0100977
Hans de Goedea0b5fec2010-11-26 14:56:17 +0100978 for (i = 0; i < MAX_ENDPOINTS; i++)
979 s->endp_table[i].type = INVALID_EP_TYPE;
980
Hans de Goede71d71bb2010-11-10 10:06:24 +0100981 i = usb_linux_get_configuration(s);
982 if (i < 0)
983 return 1;
984 configuration = i;
985
balrogb9dc0332007-10-04 22:47:34 +0000986 /* get the desired configuration, interface, and endpoint descriptors
987 * from device description */
988 descriptors = &s->descr[18];
989 length = s->descr_len - 18;
990 i = 0;
991
992 if (descriptors[i + 1] != USB_DT_CONFIG ||
993 descriptors[i + 5] != configuration) {
malcd0f2c4c2010-02-07 02:03:50 +0300994 DPRINTF("invalid descriptor data - configuration\n");
balrogb9dc0332007-10-04 22:47:34 +0000995 return 1;
996 }
997 i += descriptors[i];
998
999 while (i < length) {
1000 if (descriptors[i + 1] != USB_DT_INTERFACE ||
1001 (descriptors[i + 1] == USB_DT_INTERFACE &&
1002 descriptors[i + 4] == 0)) {
1003 i += descriptors[i];
1004 continue;
1005 }
1006
1007 interface = descriptors[i + 2];
Hans de Goedeed3a3282010-11-24 12:50:00 +01001008 alt_interface = usb_linux_get_alt_setting(s, configuration, interface);
balrogb9dc0332007-10-04 22:47:34 +00001009
1010 /* the current interface descriptor is the active interface
1011 * and has endpoints */
1012 if (descriptors[i + 3] != alt_interface) {
1013 i += descriptors[i];
1014 continue;
1015 }
1016
1017 /* advance to the endpoints */
David Ahern27911042010-04-24 10:26:22 -06001018 while (i < length && descriptors[i +1] != USB_DT_ENDPOINT) {
balrogb9dc0332007-10-04 22:47:34 +00001019 i += descriptors[i];
David Ahern27911042010-04-24 10:26:22 -06001020 }
balrogb9dc0332007-10-04 22:47:34 +00001021
1022 if (i >= length)
1023 break;
1024
1025 while (i < length) {
David Ahern27911042010-04-24 10:26:22 -06001026 if (descriptors[i + 1] != USB_DT_ENDPOINT) {
balrogb9dc0332007-10-04 22:47:34 +00001027 break;
David Ahern27911042010-04-24 10:26:22 -06001028 }
balrogb9dc0332007-10-04 22:47:34 +00001029
1030 devep = descriptors[i + 2];
1031 switch (descriptors[i + 3] & 0x3) {
1032 case 0x00:
1033 type = USBDEVFS_URB_TYPE_CONTROL;
1034 break;
1035 case 0x01:
1036 type = USBDEVFS_URB_TYPE_ISO;
Gerd Hoffmann6dfcdcc2011-05-16 11:30:57 +02001037 set_max_packet_size(s, (devep & 0xf), descriptors + i);
balrogb9dc0332007-10-04 22:47:34 +00001038 break;
1039 case 0x02:
1040 type = USBDEVFS_URB_TYPE_BULK;
1041 break;
1042 case 0x03:
1043 type = USBDEVFS_URB_TYPE_INTERRUPT;
1044 break;
Anthony Liguoriddbda432010-03-17 16:00:24 -05001045 default:
1046 DPRINTF("usb_host: malformed endpoint type\n");
1047 type = USBDEVFS_URB_TYPE_BULK;
balrogb9dc0332007-10-04 22:47:34 +00001048 }
1049 s->endp_table[(devep & 0xf) - 1].type = type;
aliguori64838172008-08-21 19:31:10 +00001050 s->endp_table[(devep & 0xf) - 1].halted = 0;
balrogb9dc0332007-10-04 22:47:34 +00001051
1052 i += descriptors[i];
1053 }
1054 }
1055 return 0;
1056}
1057
Gerd Hoffmann26a9e822009-10-26 15:56:50 +01001058static int usb_host_open(USBHostDevice *dev, int bus_num,
Gerd Hoffmann5557d822011-05-10 11:43:57 +02001059 int addr, char *port, const char *prod_name)
bellardbb36d472005-11-05 14:22:28 +00001060{
balrogb9dc0332007-10-04 22:47:34 +00001061 int fd = -1, ret;
bellardbb36d472005-11-05 14:22:28 +00001062 struct usbdevfs_connectinfo ci;
bellarda594cfb2005-11-06 16:13:29 +00001063 char buf[1024];
aliguori1f3870a2008-08-21 19:27:48 +00001064
David Ahern27911042010-04-24 10:26:22 -06001065 if (dev->fd != -1) {
Gerd Hoffmann26a9e822009-10-26 15:56:50 +01001066 goto fail;
David Ahern27911042010-04-24 10:26:22 -06001067 }
aliguori64838172008-08-21 19:31:10 +00001068 printf("husb: open device %d.%d\n", bus_num, addr);
aliguori1f3870a2008-08-21 19:27:48 +00001069
aliguori0f431522008-10-07 20:06:37 +00001070 if (!usb_host_device_path) {
1071 perror("husb: USB Host Device Path not set");
1072 goto fail;
1073 }
1074 snprintf(buf, sizeof(buf), "%s/%03d/%03d", usb_host_device_path,
bellarda594cfb2005-11-06 16:13:29 +00001075 bus_num, addr);
balrogb9dc0332007-10-04 22:47:34 +00001076 fd = open(buf, O_RDWR | O_NONBLOCK);
bellardbb36d472005-11-05 14:22:28 +00001077 if (fd < 0) {
bellarda594cfb2005-11-06 16:13:29 +00001078 perror(buf);
aliguori1f3870a2008-08-21 19:27:48 +00001079 goto fail;
bellardbb36d472005-11-05 14:22:28 +00001080 }
malcd0f2c4c2010-02-07 02:03:50 +03001081 DPRINTF("husb: opened %s\n", buf);
bellardbb36d472005-11-05 14:22:28 +00001082
Gerd Hoffmann806b6022009-08-31 14:23:59 +02001083 dev->bus_num = bus_num;
1084 dev->addr = addr;
Gerd Hoffmann5557d822011-05-10 11:43:57 +02001085 strcpy(dev->port, port);
Gerd Hoffmann22f84e72009-09-25 16:55:28 +02001086 dev->fd = fd;
Gerd Hoffmann806b6022009-08-31 14:23:59 +02001087
balrogb9dc0332007-10-04 22:47:34 +00001088 /* read the device description */
1089 dev->descr_len = read(fd, dev->descr, sizeof(dev->descr));
1090 if (dev->descr_len <= 0) {
aliguori64838172008-08-21 19:31:10 +00001091 perror("husb: reading device data failed");
bellardbb36d472005-11-05 14:22:28 +00001092 goto fail;
1093 }
ths3b46e622007-09-17 08:09:54 +00001094
balrogb9dc0332007-10-04 22:47:34 +00001095#ifdef DEBUG
bellard868bfe22005-11-13 21:53:15 +00001096 {
balrogb9dc0332007-10-04 22:47:34 +00001097 int x;
1098 printf("=== begin dumping device descriptor data ===\n");
David Ahern27911042010-04-24 10:26:22 -06001099 for (x = 0; x < dev->descr_len; x++) {
balrogb9dc0332007-10-04 22:47:34 +00001100 printf("%02x ", dev->descr[x]);
David Ahern27911042010-04-24 10:26:22 -06001101 }
balrogb9dc0332007-10-04 22:47:34 +00001102 printf("\n=== end dumping device descriptor data ===\n");
bellarda594cfb2005-11-06 16:13:29 +00001103 }
1104#endif
1105
balrogb9dc0332007-10-04 22:47:34 +00001106
David Ahern27911042010-04-24 10:26:22 -06001107 /*
1108 * Initial configuration is -1 which makes us claim first
aliguori446ab122008-09-14 01:06:09 +00001109 * available config. We used to start with 1, which does not
David Ahern27911042010-04-24 10:26:22 -06001110 * always work. I've seen devices where first config starts
aliguori446ab122008-09-14 01:06:09 +00001111 * with 2.
1112 */
David Ahern27911042010-04-24 10:26:22 -06001113 if (!usb_host_claim_interfaces(dev, -1)) {
balrogb9dc0332007-10-04 22:47:34 +00001114 goto fail;
David Ahern27911042010-04-24 10:26:22 -06001115 }
bellardbb36d472005-11-05 14:22:28 +00001116
1117 ret = ioctl(fd, USBDEVFS_CONNECTINFO, &ci);
1118 if (ret < 0) {
balrog046833e2007-10-31 00:27:50 +00001119 perror("usb_host_device_open: USBDEVFS_CONNECTINFO");
bellardbb36d472005-11-05 14:22:28 +00001120 goto fail;
1121 }
1122
aliguori64838172008-08-21 19:31:10 +00001123 printf("husb: grabbed usb device %d.%d\n", bus_num, addr);
bellardbb36d472005-11-05 14:22:28 +00001124
balrogb9dc0332007-10-04 22:47:34 +00001125 ret = usb_linux_update_endp_table(dev);
David Ahern27911042010-04-24 10:26:22 -06001126 if (ret) {
bellardbb36d472005-11-05 14:22:28 +00001127 goto fail;
David Ahern27911042010-04-24 10:26:22 -06001128 }
balrogb9dc0332007-10-04 22:47:34 +00001129
David Ahern27911042010-04-24 10:26:22 -06001130 if (ci.slow) {
bellardbb36d472005-11-05 14:22:28 +00001131 dev->dev.speed = USB_SPEED_LOW;
David Ahern27911042010-04-24 10:26:22 -06001132 } else {
bellardbb36d472005-11-05 14:22:28 +00001133 dev->dev.speed = USB_SPEED_HIGH;
David Ahern27911042010-04-24 10:26:22 -06001134 }
bellardbb36d472005-11-05 14:22:28 +00001135
David Ahern27911042010-04-24 10:26:22 -06001136 if (!prod_name || prod_name[0] == '\0') {
Markus Armbruster0fe6d122009-12-09 17:07:51 +01001137 snprintf(dev->dev.product_desc, sizeof(dev->dev.product_desc),
aliguori4b096fc2008-08-21 19:28:55 +00001138 "host:%d.%d", bus_num, addr);
David Ahern27911042010-04-24 10:26:22 -06001139 } else {
Markus Armbruster0fe6d122009-12-09 17:07:51 +01001140 pstrcpy(dev->dev.product_desc, sizeof(dev->dev.product_desc),
aliguori4b096fc2008-08-21 19:28:55 +00001141 prod_name);
David Ahern27911042010-04-24 10:26:22 -06001142 }
bellard1f6e24e2006-06-26 21:00:51 +00001143
aliguori64838172008-08-21 19:31:10 +00001144 /* USB devio uses 'write' flag to check for async completions */
1145 qemu_set_fd_handler(dev->fd, NULL, async_complete, dev);
aliguori1f3870a2008-08-21 19:27:48 +00001146
Gerd Hoffmann26a9e822009-10-26 15:56:50 +01001147 usb_device_attach(&dev->dev);
1148 return 0;
aliguori4b096fc2008-08-21 19:28:55 +00001149
balrogb9dc0332007-10-04 22:47:34 +00001150fail:
Gerd Hoffmann26a9e822009-10-26 15:56:50 +01001151 dev->fd = -1;
David Ahern27911042010-04-24 10:26:22 -06001152 if (fd != -1) {
Gerd Hoffmann806b6022009-08-31 14:23:59 +02001153 close(fd);
David Ahern27911042010-04-24 10:26:22 -06001154 }
Gerd Hoffmann26a9e822009-10-26 15:56:50 +01001155 return -1;
1156}
1157
1158static int usb_host_close(USBHostDevice *dev)
1159{
Hans de Goede060dc842010-11-26 11:41:08 +01001160 int i;
1161
David Ahern27911042010-04-24 10:26:22 -06001162 if (dev->fd == -1) {
Gerd Hoffmann26a9e822009-10-26 15:56:50 +01001163 return -1;
David Ahern27911042010-04-24 10:26:22 -06001164 }
Gerd Hoffmann26a9e822009-10-26 15:56:50 +01001165
1166 qemu_set_fd_handler(dev->fd, NULL, NULL, NULL);
1167 dev->closing = 1;
Hans de Goede3a4854b2010-11-26 15:02:16 +01001168 for (i = 1; i <= MAX_ENDPOINTS; i++) {
Hans de Goede060dc842010-11-26 11:41:08 +01001169 if (is_isoc(dev, i)) {
1170 usb_host_stop_n_free_iso(dev, i);
1171 }
1172 }
Gerd Hoffmann26a9e822009-10-26 15:56:50 +01001173 async_complete(dev);
1174 dev->closing = 0;
1175 usb_device_detach(&dev->dev);
Shahar Havivi00ff2272010-06-16 15:15:37 +03001176 ioctl(dev->fd, USBDEVFS_RESET);
Gerd Hoffmann26a9e822009-10-26 15:56:50 +01001177 close(dev->fd);
1178 dev->fd = -1;
1179 return 0;
1180}
1181
Shahar Havivib373a632010-06-16 15:16:11 +03001182static void usb_host_exit_notifier(struct Notifier* n)
1183{
1184 USBHostDevice *s = container_of(n, USBHostDevice, exit);
1185
1186 if (s->fd != -1) {
1187 ioctl(s->fd, USBDEVFS_RESET);
1188 }
1189}
1190
Gerd Hoffmann26a9e822009-10-26 15:56:50 +01001191static int usb_host_initfn(USBDevice *dev)
1192{
1193 USBHostDevice *s = DO_UPCAST(USBHostDevice, dev, dev);
1194
1195 dev->auto_attach = 0;
1196 s->fd = -1;
1197 QTAILQ_INSERT_TAIL(&hostdevs, s, next);
Shahar Havivib373a632010-06-16 15:16:11 +03001198 s->exit.notify = usb_host_exit_notifier;
1199 qemu_add_exit_notifier(&s->exit);
Gerd Hoffmann26a9e822009-10-26 15:56:50 +01001200 usb_host_auto_check(NULL);
1201 return 0;
bellardbb36d472005-11-05 14:22:28 +00001202}
1203
Gerd Hoffmann806b6022009-08-31 14:23:59 +02001204static struct USBDeviceInfo usb_host_dev_info = {
Markus Armbruster06384692009-12-09 17:07:52 +01001205 .product_desc = "USB Host Device",
Markus Armbruster556cd092009-12-09 17:07:53 +01001206 .qdev.name = "usb-host",
Gerd Hoffmann806b6022009-08-31 14:23:59 +02001207 .qdev.size = sizeof(USBHostDevice),
1208 .init = usb_host_initfn,
Hans de Goede50b79632011-02-02 17:36:29 +01001209 .handle_packet = usb_generic_handle_packet,
Gerd Hoffmanneb5e6802011-05-16 10:34:53 +02001210 .cancel_packet = usb_host_async_cancel,
Hans de Goede50b79632011-02-02 17:36:29 +01001211 .handle_data = usb_host_handle_data,
1212 .handle_control = usb_host_handle_control,
Gerd Hoffmann806b6022009-08-31 14:23:59 +02001213 .handle_reset = usb_host_handle_reset,
Gerd Hoffmann806b6022009-08-31 14:23:59 +02001214 .handle_destroy = usb_host_handle_destroy,
Gerd Hoffmann26a9e822009-10-26 15:56:50 +01001215 .usbdevice_name = "host",
1216 .usbdevice_init = usb_host_device_open,
1217 .qdev.props = (Property[]) {
1218 DEFINE_PROP_UINT32("hostbus", USBHostDevice, match.bus_num, 0),
1219 DEFINE_PROP_UINT32("hostaddr", USBHostDevice, match.addr, 0),
Gerd Hoffmann9056a292011-05-10 12:07:42 +02001220 DEFINE_PROP_STRING("hostport", USBHostDevice, match.port),
Gerd Hoffmann26a9e822009-10-26 15:56:50 +01001221 DEFINE_PROP_HEX32("vendorid", USBHostDevice, match.vendor_id, 0),
1222 DEFINE_PROP_HEX32("productid", USBHostDevice, match.product_id, 0),
1223 DEFINE_PROP_END_OF_LIST(),
1224 },
Gerd Hoffmann806b6022009-08-31 14:23:59 +02001225};
1226
1227static void usb_host_register_devices(void)
1228{
1229 usb_qdev_register(&usb_host_dev_info);
1230}
1231device_init(usb_host_register_devices)
1232
aliguori4b096fc2008-08-21 19:28:55 +00001233USBDevice *usb_host_device_open(const char *devname)
1234{
Markus Armbruster0745eb12009-11-27 13:05:53 +01001235 struct USBAutoFilter filter;
Gerd Hoffmann26a9e822009-10-26 15:56:50 +01001236 USBDevice *dev;
Gerd Hoffmann26a9e822009-10-26 15:56:50 +01001237 char *p;
1238
Markus Armbruster556cd092009-12-09 17:07:53 +01001239 dev = usb_create(NULL /* FIXME */, "usb-host");
aliguori4b096fc2008-08-21 19:28:55 +00001240
aliguori5d0c5752008-09-14 01:07:41 +00001241 if (strstr(devname, "auto:")) {
David Ahern27911042010-04-24 10:26:22 -06001242 if (parse_filter(devname, &filter) < 0) {
Gerd Hoffmann26a9e822009-10-26 15:56:50 +01001243 goto fail;
David Ahern27911042010-04-24 10:26:22 -06001244 }
Gerd Hoffmann26a9e822009-10-26 15:56:50 +01001245 } else {
1246 if ((p = strchr(devname, '.'))) {
Markus Armbruster0745eb12009-11-27 13:05:53 +01001247 filter.bus_num = strtoul(devname, NULL, 0);
1248 filter.addr = strtoul(p + 1, NULL, 0);
1249 filter.vendor_id = 0;
1250 filter.product_id = 0;
Gerd Hoffmann26a9e822009-10-26 15:56:50 +01001251 } else if ((p = strchr(devname, ':'))) {
Markus Armbruster0745eb12009-11-27 13:05:53 +01001252 filter.bus_num = 0;
1253 filter.addr = 0;
Gerd Hoffmann26a9e822009-10-26 15:56:50 +01001254 filter.vendor_id = strtoul(devname, NULL, 16);
Markus Armbruster0745eb12009-11-27 13:05:53 +01001255 filter.product_id = strtoul(p + 1, NULL, 16);
Gerd Hoffmann26a9e822009-10-26 15:56:50 +01001256 } else {
1257 goto fail;
1258 }
aliguori5d0c5752008-09-14 01:07:41 +00001259 }
1260
Markus Armbruster0745eb12009-11-27 13:05:53 +01001261 qdev_prop_set_uint32(&dev->qdev, "hostbus", filter.bus_num);
1262 qdev_prop_set_uint32(&dev->qdev, "hostaddr", filter.addr);
Gerd Hoffmann26a9e822009-10-26 15:56:50 +01001263 qdev_prop_set_uint32(&dev->qdev, "vendorid", filter.vendor_id);
1264 qdev_prop_set_uint32(&dev->qdev, "productid", filter.product_id);
Kevin Wolfbeb6f0d2010-01-15 12:56:41 +01001265 qdev_init_nofail(&dev->qdev);
Gerd Hoffmann26a9e822009-10-26 15:56:50 +01001266 return dev;
aliguori4b096fc2008-08-21 19:28:55 +00001267
Gerd Hoffmann26a9e822009-10-26 15:56:50 +01001268fail:
1269 qdev_free(&dev->qdev);
1270 return NULL;
aliguori4b096fc2008-08-21 19:28:55 +00001271}
aliguori5d0c5752008-09-14 01:07:41 +00001272
1273int usb_host_device_close(const char *devname)
1274{
Gerd Hoffmann26a9e822009-10-26 15:56:50 +01001275#if 0
aliguori5d0c5752008-09-14 01:07:41 +00001276 char product_name[PRODUCT_NAME_SZ];
1277 int bus_num, addr;
1278 USBHostDevice *s;
1279
David Ahern27911042010-04-24 10:26:22 -06001280 if (strstr(devname, "auto:")) {
aliguori5d0c5752008-09-14 01:07:41 +00001281 return usb_host_auto_del(devname);
David Ahern27911042010-04-24 10:26:22 -06001282 }
1283 if (usb_host_find_device(&bus_num, &addr, product_name,
1284 sizeof(product_name), devname) < 0) {
aliguori5d0c5752008-09-14 01:07:41 +00001285 return -1;
David Ahern27911042010-04-24 10:26:22 -06001286 }
aliguori5d0c5752008-09-14 01:07:41 +00001287 s = hostdev_find(bus_num, addr);
1288 if (s) {
Gerd Hoffmanna5d2f722009-08-31 14:24:00 +02001289 usb_device_delete_addr(s->bus_num, s->dev.addr);
aliguori5d0c5752008-09-14 01:07:41 +00001290 return 0;
1291 }
Gerd Hoffmann26a9e822009-10-26 15:56:50 +01001292#endif
aliguori5d0c5752008-09-14 01:07:41 +00001293
1294 return -1;
1295}
Gerd Hoffmanna5d2f722009-08-31 14:24:00 +02001296
bellarda594cfb2005-11-06 16:13:29 +00001297static int get_tag_value(char *buf, int buf_size,
ths5fafdf22007-09-16 21:08:06 +00001298 const char *str, const char *tag,
bellarda594cfb2005-11-06 16:13:29 +00001299 const char *stopchars)
bellardbb36d472005-11-05 14:22:28 +00001300{
bellarda594cfb2005-11-06 16:13:29 +00001301 const char *p;
1302 char *q;
1303 p = strstr(str, tag);
David Ahern27911042010-04-24 10:26:22 -06001304 if (!p) {
bellarda594cfb2005-11-06 16:13:29 +00001305 return -1;
David Ahern27911042010-04-24 10:26:22 -06001306 }
bellarda594cfb2005-11-06 16:13:29 +00001307 p += strlen(tag);
David Ahern27911042010-04-24 10:26:22 -06001308 while (qemu_isspace(*p)) {
bellarda594cfb2005-11-06 16:13:29 +00001309 p++;
David Ahern27911042010-04-24 10:26:22 -06001310 }
bellarda594cfb2005-11-06 16:13:29 +00001311 q = buf;
1312 while (*p != '\0' && !strchr(stopchars, *p)) {
David Ahern27911042010-04-24 10:26:22 -06001313 if ((q - buf) < (buf_size - 1)) {
bellarda594cfb2005-11-06 16:13:29 +00001314 *q++ = *p;
David Ahern27911042010-04-24 10:26:22 -06001315 }
bellarda594cfb2005-11-06 16:13:29 +00001316 p++;
1317 }
1318 *q = '\0';
1319 return q - buf;
1320}
bellardbb36d472005-11-05 14:22:28 +00001321
aliguori0f431522008-10-07 20:06:37 +00001322/*
1323 * Use /proc/bus/usb/devices or /dev/bus/usb/devices file to determine
1324 * host's USB devices. This is legacy support since many distributions
1325 * are moving to /sys/bus/usb
1326 */
1327static int usb_host_scan_dev(void *opaque, USBScanFunc *func)
bellarda594cfb2005-11-06 16:13:29 +00001328{
Blue Swirl660f11b2009-07-31 21:16:51 +00001329 FILE *f = NULL;
bellarda594cfb2005-11-06 16:13:29 +00001330 char line[1024];
1331 char buf[1024];
1332 int bus_num, addr, speed, device_count, class_id, product_id, vendor_id;
bellarda594cfb2005-11-06 16:13:29 +00001333 char product_name[512];
aliguori0f431522008-10-07 20:06:37 +00001334 int ret = 0;
ths3b46e622007-09-17 08:09:54 +00001335
aliguori0f431522008-10-07 20:06:37 +00001336 if (!usb_host_device_path) {
1337 perror("husb: USB Host Device Path not set");
1338 goto the_end;
bellarda594cfb2005-11-06 16:13:29 +00001339 }
aliguori0f431522008-10-07 20:06:37 +00001340 snprintf(line, sizeof(line), "%s/devices", usb_host_device_path);
1341 f = fopen(line, "r");
1342 if (!f) {
1343 perror("husb: cannot open devices file");
1344 goto the_end;
1345 }
1346
bellarda594cfb2005-11-06 16:13:29 +00001347 device_count = 0;
1348 bus_num = addr = speed = class_id = product_id = vendor_id = 0;
bellardbb36d472005-11-05 14:22:28 +00001349 for(;;) {
David Ahern27911042010-04-24 10:26:22 -06001350 if (fgets(line, sizeof(line), f) == NULL) {
bellardbb36d472005-11-05 14:22:28 +00001351 break;
David Ahern27911042010-04-24 10:26:22 -06001352 }
1353 if (strlen(line) > 0) {
bellarda594cfb2005-11-06 16:13:29 +00001354 line[strlen(line) - 1] = '\0';
David Ahern27911042010-04-24 10:26:22 -06001355 }
bellarda594cfb2005-11-06 16:13:29 +00001356 if (line[0] == 'T' && line[1] == ':') {
pbrook38ca0f62006-03-11 18:03:38 +00001357 if (device_count && (vendor_id || product_id)) {
1358 /* New device. Add the previously discovered device. */
Hans de Goede0f5160d2010-11-10 10:06:23 +01001359 ret = func(opaque, bus_num, addr, 0, class_id, vendor_id,
bellarda594cfb2005-11-06 16:13:29 +00001360 product_id, product_name, speed);
David Ahern27911042010-04-24 10:26:22 -06001361 if (ret) {
bellarda594cfb2005-11-06 16:13:29 +00001362 goto the_end;
David Ahern27911042010-04-24 10:26:22 -06001363 }
bellarda594cfb2005-11-06 16:13:29 +00001364 }
David Ahern27911042010-04-24 10:26:22 -06001365 if (get_tag_value(buf, sizeof(buf), line, "Bus=", " ") < 0) {
bellarda594cfb2005-11-06 16:13:29 +00001366 goto fail;
David Ahern27911042010-04-24 10:26:22 -06001367 }
bellarda594cfb2005-11-06 16:13:29 +00001368 bus_num = atoi(buf);
David Ahern27911042010-04-24 10:26:22 -06001369 if (get_tag_value(buf, sizeof(buf), line, "Dev#=", " ") < 0) {
bellarda594cfb2005-11-06 16:13:29 +00001370 goto fail;
David Ahern27911042010-04-24 10:26:22 -06001371 }
bellarda594cfb2005-11-06 16:13:29 +00001372 addr = atoi(buf);
David Ahern27911042010-04-24 10:26:22 -06001373 if (get_tag_value(buf, sizeof(buf), line, "Spd=", " ") < 0) {
bellarda594cfb2005-11-06 16:13:29 +00001374 goto fail;
David Ahern27911042010-04-24 10:26:22 -06001375 }
1376 if (!strcmp(buf, "480")) {
bellarda594cfb2005-11-06 16:13:29 +00001377 speed = USB_SPEED_HIGH;
David Ahern27911042010-04-24 10:26:22 -06001378 } else if (!strcmp(buf, "1.5")) {
bellarda594cfb2005-11-06 16:13:29 +00001379 speed = USB_SPEED_LOW;
David Ahern27911042010-04-24 10:26:22 -06001380 } else {
bellarda594cfb2005-11-06 16:13:29 +00001381 speed = USB_SPEED_FULL;
David Ahern27911042010-04-24 10:26:22 -06001382 }
bellarda594cfb2005-11-06 16:13:29 +00001383 product_name[0] = '\0';
1384 class_id = 0xff;
1385 device_count++;
1386 product_id = 0;
1387 vendor_id = 0;
1388 } else if (line[0] == 'P' && line[1] == ':') {
David Ahern27911042010-04-24 10:26:22 -06001389 if (get_tag_value(buf, sizeof(buf), line, "Vendor=", " ") < 0) {
bellarda594cfb2005-11-06 16:13:29 +00001390 goto fail;
David Ahern27911042010-04-24 10:26:22 -06001391 }
bellarda594cfb2005-11-06 16:13:29 +00001392 vendor_id = strtoul(buf, NULL, 16);
David Ahern27911042010-04-24 10:26:22 -06001393 if (get_tag_value(buf, sizeof(buf), line, "ProdID=", " ") < 0) {
bellarda594cfb2005-11-06 16:13:29 +00001394 goto fail;
David Ahern27911042010-04-24 10:26:22 -06001395 }
bellarda594cfb2005-11-06 16:13:29 +00001396 product_id = strtoul(buf, NULL, 16);
1397 } else if (line[0] == 'S' && line[1] == ':') {
David Ahern27911042010-04-24 10:26:22 -06001398 if (get_tag_value(buf, sizeof(buf), line, "Product=", "") < 0) {
bellarda594cfb2005-11-06 16:13:29 +00001399 goto fail;
David Ahern27911042010-04-24 10:26:22 -06001400 }
bellarda594cfb2005-11-06 16:13:29 +00001401 pstrcpy(product_name, sizeof(product_name), buf);
1402 } else if (line[0] == 'D' && line[1] == ':') {
David Ahern27911042010-04-24 10:26:22 -06001403 if (get_tag_value(buf, sizeof(buf), line, "Cls=", " (") < 0) {
bellarda594cfb2005-11-06 16:13:29 +00001404 goto fail;
David Ahern27911042010-04-24 10:26:22 -06001405 }
bellarda594cfb2005-11-06 16:13:29 +00001406 class_id = strtoul(buf, NULL, 16);
1407 }
1408 fail: ;
1409 }
pbrook38ca0f62006-03-11 18:03:38 +00001410 if (device_count && (vendor_id || product_id)) {
1411 /* Add the last device. */
Hans de Goede0f5160d2010-11-10 10:06:23 +01001412 ret = func(opaque, bus_num, addr, 0, class_id, vendor_id,
bellarda594cfb2005-11-06 16:13:29 +00001413 product_id, product_name, speed);
1414 }
1415 the_end:
David Ahern27911042010-04-24 10:26:22 -06001416 if (f) {
aliguori0f431522008-10-07 20:06:37 +00001417 fclose(f);
David Ahern27911042010-04-24 10:26:22 -06001418 }
aliguori0f431522008-10-07 20:06:37 +00001419 return ret;
1420}
1421
1422/*
1423 * Read sys file-system device file
1424 *
1425 * @line address of buffer to put file contents in
1426 * @line_size size of line
1427 * @device_file path to device file (printf format string)
1428 * @device_name device being opened (inserted into device_file)
1429 *
1430 * @return 0 failed, 1 succeeded ('line' contains data)
1431 */
David Ahern27911042010-04-24 10:26:22 -06001432static int usb_host_read_file(char *line, size_t line_size,
1433 const char *device_file, const char *device_name)
aliguori0f431522008-10-07 20:06:37 +00001434{
1435 FILE *f;
1436 int ret = 0;
1437 char filename[PATH_MAX];
1438
blueswir1b4e237a2008-12-28 15:45:20 +00001439 snprintf(filename, PATH_MAX, USBSYSBUS_PATH "/devices/%s/%s", device_name,
1440 device_file);
aliguori0f431522008-10-07 20:06:37 +00001441 f = fopen(filename, "r");
1442 if (f) {
Kirill A. Shutemov9f99cee2010-01-20 00:56:17 +01001443 ret = fgets(line, line_size, f) != NULL;
aliguori0f431522008-10-07 20:06:37 +00001444 fclose(f);
aliguori0f431522008-10-07 20:06:37 +00001445 }
1446
1447 return ret;
1448}
1449
1450/*
1451 * Use /sys/bus/usb/devices/ directory to determine host's USB
1452 * devices.
1453 *
1454 * This code is based on Robert Schiele's original patches posted to
1455 * the Novell bug-tracker https://bugzilla.novell.com/show_bug.cgi?id=241950
1456 */
1457static int usb_host_scan_sys(void *opaque, USBScanFunc *func)
1458{
Blue Swirl660f11b2009-07-31 21:16:51 +00001459 DIR *dir = NULL;
aliguori0f431522008-10-07 20:06:37 +00001460 char line[1024];
Gerd Hoffmann5557d822011-05-10 11:43:57 +02001461 int bus_num, addr, speed, class_id, product_id, vendor_id;
aliguori0f431522008-10-07 20:06:37 +00001462 int ret = 0;
Gerd Hoffmann5557d822011-05-10 11:43:57 +02001463 char port[MAX_PORTLEN];
aliguori0f431522008-10-07 20:06:37 +00001464 char product_name[512];
1465 struct dirent *de;
1466
1467 dir = opendir(USBSYSBUS_PATH "/devices");
1468 if (!dir) {
1469 perror("husb: cannot open devices directory");
1470 goto the_end;
1471 }
1472
1473 while ((de = readdir(dir))) {
1474 if (de->d_name[0] != '.' && !strchr(de->d_name, ':')) {
Gerd Hoffmann5557d822011-05-10 11:43:57 +02001475 if (sscanf(de->d_name, "%d-%7[0-9.]", &bus_num, port) < 2) {
1476 continue;
Hans de Goede0f5160d2010-11-10 10:06:23 +01001477 }
aliguori0f431522008-10-07 20:06:37 +00001478
David Ahern27911042010-04-24 10:26:22 -06001479 if (!usb_host_read_file(line, sizeof(line), "devnum", de->d_name)) {
aliguori0f431522008-10-07 20:06:37 +00001480 goto the_end;
David Ahern27911042010-04-24 10:26:22 -06001481 }
1482 if (sscanf(line, "%d", &addr) != 1) {
aliguori0f431522008-10-07 20:06:37 +00001483 goto the_end;
David Ahern27911042010-04-24 10:26:22 -06001484 }
blueswir1b4e237a2008-12-28 15:45:20 +00001485 if (!usb_host_read_file(line, sizeof(line), "bDeviceClass",
David Ahern27911042010-04-24 10:26:22 -06001486 de->d_name)) {
aliguori0f431522008-10-07 20:06:37 +00001487 goto the_end;
David Ahern27911042010-04-24 10:26:22 -06001488 }
1489 if (sscanf(line, "%x", &class_id) != 1) {
aliguori0f431522008-10-07 20:06:37 +00001490 goto the_end;
David Ahern27911042010-04-24 10:26:22 -06001491 }
aliguori0f431522008-10-07 20:06:37 +00001492
David Ahern27911042010-04-24 10:26:22 -06001493 if (!usb_host_read_file(line, sizeof(line), "idVendor",
1494 de->d_name)) {
aliguori0f431522008-10-07 20:06:37 +00001495 goto the_end;
David Ahern27911042010-04-24 10:26:22 -06001496 }
1497 if (sscanf(line, "%x", &vendor_id) != 1) {
aliguori0f431522008-10-07 20:06:37 +00001498 goto the_end;
David Ahern27911042010-04-24 10:26:22 -06001499 }
blueswir1b4e237a2008-12-28 15:45:20 +00001500 if (!usb_host_read_file(line, sizeof(line), "idProduct",
David Ahern27911042010-04-24 10:26:22 -06001501 de->d_name)) {
aliguori0f431522008-10-07 20:06:37 +00001502 goto the_end;
David Ahern27911042010-04-24 10:26:22 -06001503 }
1504 if (sscanf(line, "%x", &product_id) != 1) {
aliguori0f431522008-10-07 20:06:37 +00001505 goto the_end;
David Ahern27911042010-04-24 10:26:22 -06001506 }
blueswir1b4e237a2008-12-28 15:45:20 +00001507 if (!usb_host_read_file(line, sizeof(line), "product",
1508 de->d_name)) {
aliguori0f431522008-10-07 20:06:37 +00001509 *product_name = 0;
1510 } else {
David Ahern27911042010-04-24 10:26:22 -06001511 if (strlen(line) > 0) {
aliguori0f431522008-10-07 20:06:37 +00001512 line[strlen(line) - 1] = '\0';
David Ahern27911042010-04-24 10:26:22 -06001513 }
aliguori0f431522008-10-07 20:06:37 +00001514 pstrcpy(product_name, sizeof(product_name), line);
1515 }
1516
David Ahern27911042010-04-24 10:26:22 -06001517 if (!usb_host_read_file(line, sizeof(line), "speed", de->d_name)) {
aliguori0f431522008-10-07 20:06:37 +00001518 goto the_end;
David Ahern27911042010-04-24 10:26:22 -06001519 }
1520 if (!strcmp(line, "480\n")) {
aliguori0f431522008-10-07 20:06:37 +00001521 speed = USB_SPEED_HIGH;
David Ahern27911042010-04-24 10:26:22 -06001522 } else if (!strcmp(line, "1.5\n")) {
aliguori0f431522008-10-07 20:06:37 +00001523 speed = USB_SPEED_LOW;
David Ahern27911042010-04-24 10:26:22 -06001524 } else {
aliguori0f431522008-10-07 20:06:37 +00001525 speed = USB_SPEED_FULL;
David Ahern27911042010-04-24 10:26:22 -06001526 }
aliguori0f431522008-10-07 20:06:37 +00001527
Gerd Hoffmann5557d822011-05-10 11:43:57 +02001528 ret = func(opaque, bus_num, addr, port, class_id, vendor_id,
aliguori0f431522008-10-07 20:06:37 +00001529 product_id, product_name, speed);
David Ahern27911042010-04-24 10:26:22 -06001530 if (ret) {
aliguori0f431522008-10-07 20:06:37 +00001531 goto the_end;
David Ahern27911042010-04-24 10:26:22 -06001532 }
aliguori0f431522008-10-07 20:06:37 +00001533 }
1534 }
1535 the_end:
David Ahern27911042010-04-24 10:26:22 -06001536 if (dir) {
aliguori0f431522008-10-07 20:06:37 +00001537 closedir(dir);
David Ahern27911042010-04-24 10:26:22 -06001538 }
aliguori0f431522008-10-07 20:06:37 +00001539 return ret;
1540}
1541
1542/*
1543 * Determine how to access the host's USB devices and call the
1544 * specific support function.
1545 */
1546static int usb_host_scan(void *opaque, USBScanFunc *func)
1547{
aliguori376253e2009-03-05 23:01:23 +00001548 Monitor *mon = cur_mon;
Blue Swirl660f11b2009-07-31 21:16:51 +00001549 FILE *f = NULL;
1550 DIR *dir = NULL;
aliguori0f431522008-10-07 20:06:37 +00001551 int ret = 0;
aliguori0f431522008-10-07 20:06:37 +00001552 const char *fs_type[] = {"unknown", "proc", "dev", "sys"};
1553 char devpath[PATH_MAX];
1554
1555 /* only check the host once */
1556 if (!usb_fs_type) {
Mark McLoughlin55496242009-07-03 09:28:02 +01001557 dir = opendir(USBSYSBUS_PATH "/devices");
1558 if (dir) {
1559 /* devices found in /dev/bus/usb/ (yes - not a mistake!) */
1560 strcpy(devpath, USBDEVBUS_PATH);
1561 usb_fs_type = USB_FS_SYS;
1562 closedir(dir);
malcd0f2c4c2010-02-07 02:03:50 +03001563 DPRINTF(USBDBG_DEVOPENED, USBSYSBUS_PATH);
Mark McLoughlin55496242009-07-03 09:28:02 +01001564 goto found_devices;
1565 }
aliguori0f431522008-10-07 20:06:37 +00001566 f = fopen(USBPROCBUS_PATH "/devices", "r");
1567 if (f) {
1568 /* devices found in /proc/bus/usb/ */
1569 strcpy(devpath, USBPROCBUS_PATH);
1570 usb_fs_type = USB_FS_PROC;
1571 fclose(f);
malcd0f2c4c2010-02-07 02:03:50 +03001572 DPRINTF(USBDBG_DEVOPENED, USBPROCBUS_PATH);
aliguorif16a0db2008-10-21 16:34:20 +00001573 goto found_devices;
aliguori0f431522008-10-07 20:06:37 +00001574 }
1575 /* try additional methods if an access method hasn't been found yet */
1576 f = fopen(USBDEVBUS_PATH "/devices", "r");
aliguorif16a0db2008-10-21 16:34:20 +00001577 if (f) {
aliguori0f431522008-10-07 20:06:37 +00001578 /* devices found in /dev/bus/usb/ */
1579 strcpy(devpath, USBDEVBUS_PATH);
1580 usb_fs_type = USB_FS_DEV;
1581 fclose(f);
malcd0f2c4c2010-02-07 02:03:50 +03001582 DPRINTF(USBDBG_DEVOPENED, USBDEVBUS_PATH);
aliguorif16a0db2008-10-21 16:34:20 +00001583 goto found_devices;
aliguori0f431522008-10-07 20:06:37 +00001584 }
aliguorif16a0db2008-10-21 16:34:20 +00001585 found_devices:
aliguori22babeb2008-10-21 16:27:28 +00001586 if (!usb_fs_type) {
David Ahern27911042010-04-24 10:26:22 -06001587 if (mon) {
Gerd Hoffmanneba6fe82009-12-15 11:43:02 +01001588 monitor_printf(mon, "husb: unable to access USB devices\n");
David Ahern27911042010-04-24 10:26:22 -06001589 }
aliguorif16a0db2008-10-21 16:34:20 +00001590 return -ENOENT;
aliguori0f431522008-10-07 20:06:37 +00001591 }
1592
1593 /* the module setting (used later for opening devices) */
1594 usb_host_device_path = qemu_mallocz(strlen(devpath)+1);
aliguori1eec6142009-02-05 22:06:18 +00001595 strcpy(usb_host_device_path, devpath);
David Ahern27911042010-04-24 10:26:22 -06001596 if (mon) {
Gerd Hoffmanneba6fe82009-12-15 11:43:02 +01001597 monitor_printf(mon, "husb: using %s file-system with %s\n",
1598 fs_type[usb_fs_type], usb_host_device_path);
David Ahern27911042010-04-24 10:26:22 -06001599 }
aliguori0f431522008-10-07 20:06:37 +00001600 }
1601
1602 switch (usb_fs_type) {
1603 case USB_FS_PROC:
1604 case USB_FS_DEV:
1605 ret = usb_host_scan_dev(opaque, func);
1606 break;
1607 case USB_FS_SYS:
1608 ret = usb_host_scan_sys(opaque, func);
1609 break;
aliguorif16a0db2008-10-21 16:34:20 +00001610 default:
1611 ret = -EINVAL;
1612 break;
aliguori0f431522008-10-07 20:06:37 +00001613 }
bellarda594cfb2005-11-06 16:13:29 +00001614 return ret;
1615}
1616
aliguori4b096fc2008-08-21 19:28:55 +00001617static QEMUTimer *usb_auto_timer;
aliguori4b096fc2008-08-21 19:28:55 +00001618
Gerd Hoffmann5557d822011-05-10 11:43:57 +02001619static int usb_host_auto_scan(void *opaque, int bus_num, int addr, char *port,
Gerd Hoffmann26a9e822009-10-26 15:56:50 +01001620 int class_id, int vendor_id, int product_id,
1621 const char *product_name, int speed)
aliguori4b096fc2008-08-21 19:28:55 +00001622{
1623 struct USBAutoFilter *f;
Gerd Hoffmann26a9e822009-10-26 15:56:50 +01001624 struct USBHostDevice *s;
aliguori4b096fc2008-08-21 19:28:55 +00001625
1626 /* Ignore hubs */
1627 if (class_id == 9)
1628 return 0;
1629
Gerd Hoffmann26a9e822009-10-26 15:56:50 +01001630 QTAILQ_FOREACH(s, &hostdevs, next) {
1631 f = &s->match;
1632
David Ahern27911042010-04-24 10:26:22 -06001633 if (f->bus_num > 0 && f->bus_num != bus_num) {
aliguori4b096fc2008-08-21 19:28:55 +00001634 continue;
David Ahern27911042010-04-24 10:26:22 -06001635 }
1636 if (f->addr > 0 && f->addr != addr) {
aliguori4b096fc2008-08-21 19:28:55 +00001637 continue;
David Ahern27911042010-04-24 10:26:22 -06001638 }
Gerd Hoffmann9056a292011-05-10 12:07:42 +02001639 if (f->port != NULL && (port == NULL || strcmp(f->port, port) != 0)) {
1640 continue;
1641 }
aliguori4b096fc2008-08-21 19:28:55 +00001642
David Ahern27911042010-04-24 10:26:22 -06001643 if (f->vendor_id > 0 && f->vendor_id != vendor_id) {
aliguori4b096fc2008-08-21 19:28:55 +00001644 continue;
David Ahern27911042010-04-24 10:26:22 -06001645 }
aliguori4b096fc2008-08-21 19:28:55 +00001646
David Ahern27911042010-04-24 10:26:22 -06001647 if (f->product_id > 0 && f->product_id != product_id) {
aliguori4b096fc2008-08-21 19:28:55 +00001648 continue;
David Ahern27911042010-04-24 10:26:22 -06001649 }
aliguori4b096fc2008-08-21 19:28:55 +00001650 /* We got a match */
1651
Markus Armbruster33e66b82009-10-07 01:15:57 +02001652 /* Already attached ? */
David Ahern27911042010-04-24 10:26:22 -06001653 if (s->fd != -1) {
aliguori4b096fc2008-08-21 19:28:55 +00001654 return 0;
David Ahern27911042010-04-24 10:26:22 -06001655 }
malcd0f2c4c2010-02-07 02:03:50 +03001656 DPRINTF("husb: auto open: bus_num %d addr %d\n", bus_num, addr);
aliguori4b096fc2008-08-21 19:28:55 +00001657
Gerd Hoffmann5557d822011-05-10 11:43:57 +02001658 usb_host_open(s, bus_num, addr, port, product_name);
aliguori4b096fc2008-08-21 19:28:55 +00001659 }
1660
1661 return 0;
1662}
1663
Gerd Hoffmann26a9e822009-10-26 15:56:50 +01001664static void usb_host_auto_check(void *unused)
aliguori4b096fc2008-08-21 19:28:55 +00001665{
Gerd Hoffmann26a9e822009-10-26 15:56:50 +01001666 struct USBHostDevice *s;
1667 int unconnected = 0;
1668
aliguori4b096fc2008-08-21 19:28:55 +00001669 usb_host_scan(NULL, usb_host_auto_scan);
Gerd Hoffmann26a9e822009-10-26 15:56:50 +01001670
1671 QTAILQ_FOREACH(s, &hostdevs, next) {
David Ahern27911042010-04-24 10:26:22 -06001672 if (s->fd == -1) {
Gerd Hoffmann26a9e822009-10-26 15:56:50 +01001673 unconnected++;
David Ahern27911042010-04-24 10:26:22 -06001674 }
Gerd Hoffmann26a9e822009-10-26 15:56:50 +01001675 }
1676
1677 if (unconnected == 0) {
1678 /* nothing to watch */
David Ahern27911042010-04-24 10:26:22 -06001679 if (usb_auto_timer) {
Gerd Hoffmann26a9e822009-10-26 15:56:50 +01001680 qemu_del_timer(usb_auto_timer);
David Ahern27911042010-04-24 10:26:22 -06001681 }
Gerd Hoffmann26a9e822009-10-26 15:56:50 +01001682 return;
1683 }
1684
1685 if (!usb_auto_timer) {
Paolo Bonzini7bd427d2011-03-11 16:47:48 +01001686 usb_auto_timer = qemu_new_timer_ms(rt_clock, usb_host_auto_check, NULL);
David Ahern27911042010-04-24 10:26:22 -06001687 if (!usb_auto_timer) {
Gerd Hoffmann26a9e822009-10-26 15:56:50 +01001688 return;
David Ahern27911042010-04-24 10:26:22 -06001689 }
Gerd Hoffmann26a9e822009-10-26 15:56:50 +01001690 }
Paolo Bonzini7bd427d2011-03-11 16:47:48 +01001691 qemu_mod_timer(usb_auto_timer, qemu_get_clock_ms(rt_clock) + 2000);
aliguori4b096fc2008-08-21 19:28:55 +00001692}
1693
1694/*
aliguori5d0c5752008-09-14 01:07:41 +00001695 * Autoconnect filter
1696 * Format:
1697 * auto:bus:dev[:vid:pid]
1698 * auto:bus.dev[:vid:pid]
1699 *
1700 * bus - bus number (dec, * means any)
1701 * dev - device number (dec, * means any)
1702 * vid - vendor id (hex, * means any)
1703 * pid - product id (hex, * means any)
1704 *
1705 * See 'lsusb' output.
aliguori4b096fc2008-08-21 19:28:55 +00001706 */
aliguori5d0c5752008-09-14 01:07:41 +00001707static int parse_filter(const char *spec, struct USBAutoFilter *f)
aliguori4b096fc2008-08-21 19:28:55 +00001708{
aliguori5d0c5752008-09-14 01:07:41 +00001709 enum { BUS, DEV, VID, PID, DONE };
1710 const char *p = spec;
1711 int i;
1712
Markus Armbruster0745eb12009-11-27 13:05:53 +01001713 f->bus_num = 0;
1714 f->addr = 0;
1715 f->vendor_id = 0;
1716 f->product_id = 0;
aliguori5d0c5752008-09-14 01:07:41 +00001717
1718 for (i = BUS; i < DONE; i++) {
David Ahern27911042010-04-24 10:26:22 -06001719 p = strpbrk(p, ":.");
1720 if (!p) {
1721 break;
1722 }
aliguori5d0c5752008-09-14 01:07:41 +00001723 p++;
aliguori5d0c5752008-09-14 01:07:41 +00001724
David Ahern27911042010-04-24 10:26:22 -06001725 if (*p == '*') {
1726 continue;
1727 }
aliguori5d0c5752008-09-14 01:07:41 +00001728 switch(i) {
1729 case BUS: f->bus_num = strtol(p, NULL, 10); break;
1730 case DEV: f->addr = strtol(p, NULL, 10); break;
1731 case VID: f->vendor_id = strtol(p, NULL, 16); break;
1732 case PID: f->product_id = strtol(p, NULL, 16); break;
1733 }
aliguori4b096fc2008-08-21 19:28:55 +00001734 }
1735
aliguori5d0c5752008-09-14 01:07:41 +00001736 if (i < DEV) {
1737 fprintf(stderr, "husb: invalid auto filter spec %s\n", spec);
1738 return -1;
1739 }
1740
1741 return 0;
1742}
1743
bellarda594cfb2005-11-06 16:13:29 +00001744/**********************/
1745/* USB host device info */
bellardbb36d472005-11-05 14:22:28 +00001746
bellarda594cfb2005-11-06 16:13:29 +00001747struct usb_class_info {
1748 int class;
1749 const char *class_name;
1750};
1751
1752static const struct usb_class_info usb_class_info[] = {
1753 { USB_CLASS_AUDIO, "Audio"},
1754 { USB_CLASS_COMM, "Communication"},
1755 { USB_CLASS_HID, "HID"},
1756 { USB_CLASS_HUB, "Hub" },
1757 { USB_CLASS_PHYSICAL, "Physical" },
1758 { USB_CLASS_PRINTER, "Printer" },
1759 { USB_CLASS_MASS_STORAGE, "Storage" },
1760 { USB_CLASS_CDC_DATA, "Data" },
1761 { USB_CLASS_APP_SPEC, "Application Specific" },
1762 { USB_CLASS_VENDOR_SPEC, "Vendor Specific" },
1763 { USB_CLASS_STILL_IMAGE, "Still Image" },
balrogb9dc0332007-10-04 22:47:34 +00001764 { USB_CLASS_CSCID, "Smart Card" },
bellarda594cfb2005-11-06 16:13:29 +00001765 { USB_CLASS_CONTENT_SEC, "Content Security" },
1766 { -1, NULL }
1767};
1768
1769static const char *usb_class_str(uint8_t class)
1770{
1771 const struct usb_class_info *p;
1772 for(p = usb_class_info; p->class != -1; p++) {
David Ahern27911042010-04-24 10:26:22 -06001773 if (p->class == class) {
bellardbb36d472005-11-05 14:22:28 +00001774 break;
David Ahern27911042010-04-24 10:26:22 -06001775 }
bellardbb36d472005-11-05 14:22:28 +00001776 }
bellarda594cfb2005-11-06 16:13:29 +00001777 return p->class_name;
bellardbb36d472005-11-05 14:22:28 +00001778}
1779
Gerd Hoffmann5557d822011-05-10 11:43:57 +02001780static void usb_info_device(Monitor *mon, int bus_num, int addr, char *port,
1781 int class_id, int vendor_id, int product_id,
pbrook9596ebb2007-11-18 01:44:38 +00001782 const char *product_name,
1783 int speed)
bellardbb36d472005-11-05 14:22:28 +00001784{
bellarda594cfb2005-11-06 16:13:29 +00001785 const char *class_str, *speed_str;
1786
1787 switch(speed) {
ths5fafdf22007-09-16 21:08:06 +00001788 case USB_SPEED_LOW:
1789 speed_str = "1.5";
bellarda594cfb2005-11-06 16:13:29 +00001790 break;
ths5fafdf22007-09-16 21:08:06 +00001791 case USB_SPEED_FULL:
1792 speed_str = "12";
bellarda594cfb2005-11-06 16:13:29 +00001793 break;
ths5fafdf22007-09-16 21:08:06 +00001794 case USB_SPEED_HIGH:
1795 speed_str = "480";
bellarda594cfb2005-11-06 16:13:29 +00001796 break;
1797 default:
ths5fafdf22007-09-16 21:08:06 +00001798 speed_str = "?";
bellarda594cfb2005-11-06 16:13:29 +00001799 break;
bellardbb36d472005-11-05 14:22:28 +00001800 }
bellarda594cfb2005-11-06 16:13:29 +00001801
Gerd Hoffmann5557d822011-05-10 11:43:57 +02001802 monitor_printf(mon, " Bus %d, Addr %d, Port %s, Speed %s Mb/s\n",
1803 bus_num, addr, port, speed_str);
bellarda594cfb2005-11-06 16:13:29 +00001804 class_str = usb_class_str(class_id);
David Ahern27911042010-04-24 10:26:22 -06001805 if (class_str) {
aliguori376253e2009-03-05 23:01:23 +00001806 monitor_printf(mon, " %s:", class_str);
David Ahern27911042010-04-24 10:26:22 -06001807 } else {
aliguori376253e2009-03-05 23:01:23 +00001808 monitor_printf(mon, " Class %02x:", class_id);
David Ahern27911042010-04-24 10:26:22 -06001809 }
aliguori376253e2009-03-05 23:01:23 +00001810 monitor_printf(mon, " USB device %04x:%04x", vendor_id, product_id);
David Ahern27911042010-04-24 10:26:22 -06001811 if (product_name[0] != '\0') {
aliguori376253e2009-03-05 23:01:23 +00001812 monitor_printf(mon, ", %s", product_name);
David Ahern27911042010-04-24 10:26:22 -06001813 }
aliguori376253e2009-03-05 23:01:23 +00001814 monitor_printf(mon, "\n");
bellarda594cfb2005-11-06 16:13:29 +00001815}
1816
ths5fafdf22007-09-16 21:08:06 +00001817static int usb_host_info_device(void *opaque, int bus_num, int addr,
Gerd Hoffmann5557d822011-05-10 11:43:57 +02001818 char *path, int class_id,
ths5fafdf22007-09-16 21:08:06 +00001819 int vendor_id, int product_id,
bellarda594cfb2005-11-06 16:13:29 +00001820 const char *product_name,
1821 int speed)
1822{
Blue Swirl179da8a2009-09-07 19:00:18 +00001823 Monitor *mon = opaque;
1824
Gerd Hoffmann5557d822011-05-10 11:43:57 +02001825 usb_info_device(mon, bus_num, addr, path, class_id, vendor_id, product_id,
bellarda594cfb2005-11-06 16:13:29 +00001826 product_name, speed);
1827 return 0;
1828}
1829
aliguoriac4ffb52008-09-22 15:04:31 +00001830static void dec2str(int val, char *str, size_t size)
aliguori5d0c5752008-09-14 01:07:41 +00001831{
David Ahern27911042010-04-24 10:26:22 -06001832 if (val == 0) {
aliguoriac4ffb52008-09-22 15:04:31 +00001833 snprintf(str, size, "*");
David Ahern27911042010-04-24 10:26:22 -06001834 } else {
1835 snprintf(str, size, "%d", val);
1836 }
aliguori5d0c5752008-09-14 01:07:41 +00001837}
1838
aliguoriac4ffb52008-09-22 15:04:31 +00001839static void hex2str(int val, char *str, size_t size)
aliguori5d0c5752008-09-14 01:07:41 +00001840{
David Ahern27911042010-04-24 10:26:22 -06001841 if (val == 0) {
aliguoriac4ffb52008-09-22 15:04:31 +00001842 snprintf(str, size, "*");
David Ahern27911042010-04-24 10:26:22 -06001843 } else {
Gerd Hoffmann26a9e822009-10-26 15:56:50 +01001844 snprintf(str, size, "%04x", val);
David Ahern27911042010-04-24 10:26:22 -06001845 }
aliguori5d0c5752008-09-14 01:07:41 +00001846}
1847
aliguori376253e2009-03-05 23:01:23 +00001848void usb_host_info(Monitor *mon)
bellarda594cfb2005-11-06 16:13:29 +00001849{
aliguori5d0c5752008-09-14 01:07:41 +00001850 struct USBAutoFilter *f;
Gerd Hoffmann26a9e822009-10-26 15:56:50 +01001851 struct USBHostDevice *s;
aliguori5d0c5752008-09-14 01:07:41 +00001852
Blue Swirl179da8a2009-09-07 19:00:18 +00001853 usb_host_scan(mon, usb_host_info_device);
aliguori5d0c5752008-09-14 01:07:41 +00001854
David Ahern27911042010-04-24 10:26:22 -06001855 if (QTAILQ_EMPTY(&hostdevs)) {
Gerd Hoffmann26a9e822009-10-26 15:56:50 +01001856 return;
David Ahern27911042010-04-24 10:26:22 -06001857 }
1858
Gerd Hoffmann26a9e822009-10-26 15:56:50 +01001859 monitor_printf(mon, " Auto filters:\n");
1860 QTAILQ_FOREACH(s, &hostdevs, next) {
aliguori5d0c5752008-09-14 01:07:41 +00001861 char bus[10], addr[10], vid[10], pid[10];
Gerd Hoffmann26a9e822009-10-26 15:56:50 +01001862 f = &s->match;
aliguoriac4ffb52008-09-22 15:04:31 +00001863 dec2str(f->bus_num, bus, sizeof(bus));
1864 dec2str(f->addr, addr, sizeof(addr));
1865 hex2str(f->vendor_id, vid, sizeof(vid));
1866 hex2str(f->product_id, pid, sizeof(pid));
Gerd Hoffmann9056a292011-05-10 12:07:42 +02001867 monitor_printf(mon, " Bus %s, Addr %s, Port %s, ID %s:%s\n",
1868 bus, addr, f->port ? f->port : "*", vid, pid);
aliguori5d0c5752008-09-14 01:07:41 +00001869 }
bellardbb36d472005-11-05 14:22:28 +00001870}