]> sigrok.org Git - libsigrok.git/blame - src/usb.c
USB: Handle the case of a callback removing its event source
[libsigrok.git] / src / usb.c
CommitLineData
0c632d36 1/*
50985c20 2 * This file is part of the libsigrok project.
0c632d36
UH
3 *
4 * Copyright (C) 2012 Uwe Hermann <uwe@hermann-uwe.de>
5 * Copyright (C) 2012 Bert Vermeulen <bert@biot.com>
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
20 */
21
22#include <stdlib.h>
db156e54 23#include <memory.h>
0c632d36
UH
24#include <glib.h>
25#include <libusb.h>
c1aae900 26#include <libsigrok/libsigrok.h>
0c632d36
UH
27#include "libsigrok-internal.h"
28
1953564a 29/* SR_CONF_CONN takes one of these: */
1eb0a0df 30#define CONN_USB_VIDPID "^([0-9a-z]{4})\\.([0-9a-z]{4})$"
0c632d36
UH
31#define CONN_USB_BUSADDR "^(\\d+)\\.(\\d+)$"
32
3544f848 33#define LOG_PREFIX "usb"
0c632d36 34
7ae6a758
BV
35/**
36 * Find USB devices according to a connection string.
37 *
38 * @param usb_ctx libusb context to use while scanning.
39 * @param conn Connection string specifying the device(s) to match. This
40 * can be of the form "<bus>.<address>", or "<vendorid>.<productid>".
41 *
42 * @return A GSList of struct sr_usb_dev_inst, with bus and address fields
43 * matching the device that matched the connection string. The GSList and
44 * its contents must be freed by the caller.
45 */
46SR_PRIV GSList *sr_usb_find(libusb_context *usb_ctx, const char *conn)
0c632d36 47{
7ae6a758 48 struct sr_usb_dev_inst *usb;
0c632d36
UH
49 struct libusb_device **devlist;
50 struct libusb_device_descriptor des;
51 GSList *devices;
52 GRegex *reg;
53 GMatchInfo *match;
54 int vid, pid, bus, addr, b, a, ret, i;
55 char *mstr;
56
57 vid = pid = bus = addr = 0;
58 reg = g_regex_new(CONN_USB_VIDPID, 0, 0, NULL);
59 if (g_regex_match(reg, conn, 0, &match)) {
e7f378fd 60 if ((mstr = g_match_info_fetch(match, 1)))
0c632d36 61 vid = strtoul(mstr, NULL, 16);
0c632d36
UH
62 g_free(mstr);
63
e7f378fd 64 if ((mstr = g_match_info_fetch(match, 2)))
0c632d36 65 pid = strtoul(mstr, NULL, 16);
0c632d36
UH
66 g_free(mstr);
67 sr_dbg("Trying to find USB device with VID:PID = %04x:%04x.",
68 vid, pid);
69 } else {
70 g_match_info_unref(match);
71 g_regex_unref(reg);
72 reg = g_regex_new(CONN_USB_BUSADDR, 0, 0, NULL);
73 if (g_regex_match(reg, conn, 0, &match)) {
e7f378fd 74 if ((mstr = g_match_info_fetch(match, 1)))
1eb0a0df 75 bus = strtoul(mstr, NULL, 10);
0c632d36
UH
76 g_free(mstr);
77
e7f378fd 78 if ((mstr = g_match_info_fetch(match, 2)))
1eb0a0df 79 addr = strtoul(mstr, NULL, 10);
0c632d36
UH
80 g_free(mstr);
81 sr_dbg("Trying to find USB device with bus.address = "
82 "%d.%d.", bus, addr);
83 }
84 }
85 g_match_info_unref(match);
86 g_regex_unref(reg);
87
88 if (vid + pid + bus + addr == 0) {
e7f378fd 89 sr_err("Neither VID:PID nor bus.address was specified.");
0c632d36
UH
90 return NULL;
91 }
92
93 if (bus > 64) {
94 sr_err("Invalid bus specified: %d.", bus);
95 return NULL;
96 }
97
98 if (addr > 127) {
99 sr_err("Invalid address specified: %d.", addr);
100 return NULL;
101 }
102
103 /* Looks like a valid USB device specification, but is it connected? */
104 devices = NULL;
105 libusb_get_device_list(usb_ctx, &devlist);
106 for (i = 0; devlist[i]; i++) {
107 if ((ret = libusb_get_device_descriptor(devlist[i], &des))) {
d4928d71
PS
108 sr_err("Failed to get device descriptor: %s.",
109 libusb_error_name(ret));
0c632d36
UH
110 continue;
111 }
112
7ae6a758 113 if (vid + pid && (des.idVendor != vid || des.idProduct != pid))
0c632d36 114 continue;
0c632d36 115
7ae6a758
BV
116 b = libusb_get_bus_number(devlist[i]);
117 a = libusb_get_device_address(devlist[i]);
118 if (bus + addr && (b != bus || a != addr))
0c632d36 119 continue;
0c632d36
UH
120
121 sr_dbg("Found USB device (VID:PID = %04x:%04x, bus.address = "
122 "%d.%d).", des.idVendor, des.idProduct, b, a);
123
7ae6a758
BV
124 usb = sr_usb_dev_inst_new(libusb_get_bus_number(devlist[i]),
125 libusb_get_device_address(devlist[i]), NULL);
126 devices = g_slist_append(devices, usb);
0c632d36
UH
127 }
128 libusb_free_device_list(devlist, 1);
129
130 sr_dbg("Found %d device(s).", g_slist_length(devices));
131
132 return devices;
133}
134
135SR_PRIV int sr_usb_open(libusb_context *usb_ctx, struct sr_usb_dev_inst *usb)
136{
137 struct libusb_device **devlist;
138 struct libusb_device_descriptor des;
139 int ret, r, cnt, i, a, b;
140
c5f1a021 141 sr_dbg("Trying to open USB device %d.%d.", usb->bus, usb->address);
0c632d36
UH
142
143 if ((cnt = libusb_get_device_list(usb_ctx, &devlist)) < 0) {
144 sr_err("Failed to retrieve device list: %s.",
145 libusb_error_name(cnt));
146 return SR_ERR;
147 }
148
149 ret = SR_ERR;
150 for (i = 0; i < cnt; i++) {
151 if ((r = libusb_get_device_descriptor(devlist[i], &des)) < 0) {
152 sr_err("Failed to get device descriptor: %s.",
153 libusb_error_name(r));
154 continue;
155 }
156
157 b = libusb_get_bus_number(devlist[i]);
158 a = libusb_get_device_address(devlist[i]);
c5f1a021 159 if (b != usb->bus || a != usb->address)
0c632d36 160 continue;
0c632d36
UH
161
162 if ((r = libusb_open(devlist[i], &usb->devhdl)) < 0) {
163 sr_err("Failed to open device: %s.",
164 libusb_error_name(r));
165 break;
166 }
167
168 sr_dbg("Opened USB device (VID:PID = %04x:%04x, bus.address = "
169 "%d.%d).", des.idVendor, des.idProduct, b, a);
170
171 ret = SR_OK;
172 break;
173 }
174
175 libusb_free_device_list(devlist, 1);
176
177 return ret;
178}
6c60facc 179
67e95ed3
BV
180SR_PRIV void sr_usb_close(struct sr_usb_dev_inst *usb)
181{
182 libusb_close(usb->devhdl);
183 usb->devhdl = NULL;
184 sr_dbg("Closed USB device %d.%d.", usb->bus, usb->address);
185}
186
358c4ed5
DE
187#ifdef G_OS_WIN32
188/*
189 * USB callback wrapper run when the main loop is idle.
190 */
dcc94340 191static int usb_callback(int fd, int revents, void *cb_data)
5321ac6b 192{
358c4ed5
DE
193 int64_t start_time, stop_time, due, timeout;
194 struct timeval tv;
195 struct sr_context *ctx;
5321ac6b
ML
196 int ret;
197
358c4ed5
DE
198 (void)fd;
199 (void)revents;
200 ctx = cb_data;
34ea7f96 201
358c4ed5 202 start_time = g_get_monotonic_time();
358c4ed5 203 due = ctx->usb_due;
5321ac6b 204
5a7d8dac
DE
205 if (due > start_time) {
206 timeout = due - start_time;
207 tv.tv_sec = timeout / G_USEC_PER_SEC;
208 tv.tv_usec = timeout % G_USEC_PER_SEC;
209
210 sr_spew("libusb_handle_events enter: %g ms timeout",
211 1e-3 * timeout);
212
213 ret = libusb_handle_events_timeout_completed(ctx->libusb_ctx,
214 (ctx->usb_timeout < 0) ? NULL : &tv, NULL);
215 if (ret != 0) {
216 /* Warn but still invoke the callback, to give
217 * the driver a chance to deal with the problem.
218 */
219 sr_warn("Error handling libusb event (%s)",
220 libusb_error_name(ret));
221 }
222 stop_time = g_get_monotonic_time();
358c4ed5 223
5a7d8dac
DE
224 sr_spew("libusb_handle_events leave: %g ms elapsed",
225 1e-3 * (stop_time - start_time));
226 /*
227 * The event source may have been removed by the driver's
228 * libusb transfer callback. Skip the callback in that case.
358c4ed5 229 */
5a7d8dac
DE
230 if (!ctx->usb_source_present)
231 return TRUE;
232 } else {
233 /* Timeout already expired on entry.
234 */
235 stop_time = start_time;
358c4ed5 236
5a7d8dac
DE
237 sr_spew("libusb_handle_events skipped");
238 }
358c4ed5
DE
239
240 if (ctx->usb_timeout >= 0)
241 ctx->usb_due = stop_time + ctx->usb_timeout;
242 /*
5a7d8dac
DE
243 * Run the registered callback to execute any follow-up activity
244 * to libusb's event handling.
358c4ed5
DE
245 */
246 return ctx->usb_cb(-1, (stop_time < due) ? G_IO_IN : 0,
247 ctx->usb_cb_data);
5321ac6b
ML
248}
249#endif
250
102f1239
BV
251SR_PRIV int usb_source_add(struct sr_session *session, struct sr_context *ctx,
252 int timeout, sr_receive_data_callback cb, void *cb_data)
6c60facc 253{
92248e78
DE
254 int ret;
255
6640324f
ML
256 if (ctx->usb_source_present) {
257 sr_err("A USB event source is already present.");
258 return SR_ERR;
259 }
260
358c4ed5
DE
261#ifdef G_OS_WIN32
262 if (timeout >= 0) {
263 ctx->usb_timeout = INT64_C(1000) * timeout;
264 ctx->usb_due = g_get_monotonic_time() + ctx->usb_timeout;
265 } else {
266 ctx->usb_timeout = -1;
267 ctx->usb_due = INT64_MAX;
268 }
5321ac6b
ML
269 ctx->usb_cb = cb;
270 ctx->usb_cb_data = cb_data;
358c4ed5
DE
271 /*
272 * TODO: Install an idle source which will fire permanently, and block
273 * in a wrapper callback until any libusb events have been processed.
274 * This will have to do for now, until we implement a proper way to
275 * deal with libusb events on Windows.
276 */
5a7d8dac
DE
277 ret = sr_session_source_add_internal(session, NULL, 0,
278 0, &usb_callback, ctx, (gintptr)ctx->libusb_ctx);
6c60facc
ML
279#else
280 const struct libusb_pollfd **lupfd;
92248e78
DE
281 GPollFD *pollfds;
282 int i;
283 int num_fds = 0;
6c60facc
ML
284
285 lupfd = libusb_get_pollfds(ctx->libusb_ctx);
92248e78
DE
286 if (!lupfd || !lupfd[0]) {
287 free(lupfd);
288 sr_err("Failed to get libusb file descriptors.");
289 return SR_ERR;
290 }
291 while (lupfd[num_fds])
292 ++num_fds;
293 pollfds = g_new(GPollFD, num_fds);
294
295 for (i = 0; i < num_fds; ++i) {
296 pollfds[i].fd = lupfd[i]->fd;
297 pollfds[i].events = lupfd[i]->events;
298 pollfds[i].revents = 0;
62d7945f 299 }
6c60facc 300 free(lupfd);
92248e78
DE
301 ret = sr_session_source_add_internal(session, pollfds, num_fds,
302 timeout, cb, cb_data, (gintptr)ctx->libusb_ctx);
303 g_free(pollfds);
5321ac6b 304#endif
92248e78 305 ctx->usb_source_present = (ret == SR_OK);
6c60facc 306
92248e78 307 return ret;
6c60facc
ML
308}
309
102f1239 310SR_PRIV int usb_source_remove(struct sr_session *session, struct sr_context *ctx)
6c60facc 311{
5a7d8dac 312 return sr_session_source_remove_internal(session,
92248e78 313 (gintptr)ctx->libusb_ctx);
6c60facc 314}
db156e54 315
76bc5f63 316SR_PRIV int usb_get_port_path(libusb_device *dev, char *path, int path_len)
db156e54 317{
76bc5f63
AJ
318 uint8_t port_numbers[8];
319 int i, n, len;
320
19643b96
UJ
321/*
322 * FreeBSD requires that devices prior to calling libusb_get_port_numbers()
323 * have been opened with libusb_open().
324 */
325#ifdef __FreeBSD__
326 struct libusb_device_handle *devh;
327 if (libusb_open(dev, &devh) != 0)
328 return SR_ERR;
329#endif
76bc5f63 330 n = libusb_get_port_numbers(dev, port_numbers, sizeof(port_numbers));
19643b96
UJ
331#ifdef __FreeBSD__
332 libusb_close(devh);
333#endif
76bc5f63 334
19643b96
UJ
335/* Workaround FreeBSD libusb_get_port_numbers() returning 0. */
336#ifdef __FreeBSD__
337 if (n == 0) {
338 port_numbers[0] = libusb_get_device_address(dev);
339 n = 1;
340 }
341#endif
2f004b4b
VP
342 if (n < 1)
343 return SR_ERR;
344
76bc5f63
AJ
345 len = snprintf(path, path_len, "usb/%d-%d",
346 libusb_get_bus_number(dev), port_numbers[0]);
db156e54 347
76bc5f63
AJ
348 for (i = 1; i < n; i++)
349 len += snprintf(path+len, path_len-len, ".%d", port_numbers[i]);
db156e54
SA
350
351 return SR_OK;
352}