2012-08-05 06:55:24 -04:00
|
|
|
$OpenBSD: patch-libusb_os_openbsd_usb_c,v 1.2 2012/08/05 10:55:24 mpi Exp $
|
2012-06-19 16:45:00 -04:00
|
|
|
|
|
|
|
Add support for non ugen(4) attached devices through usb(4) buses.
|
|
|
|
|
|
|
|
--- libusb/os/openbsd_usb.c.orig Fri Apr 20 08:44:27 2012
|
2012-08-05 06:55:24 -04:00
|
|
|
+++ libusb/os/openbsd_usb.c Thu Aug 2 23:06:22 2012
|
2012-06-19 16:45:00 -04:00
|
|
|
@@ -1,5 +1,5 @@
|
|
|
|
/*
|
|
|
|
- * Copyright (c) 2011 Martin Pieuchot <mpi@openbsd.org>
|
|
|
|
+ * Copyright (c) 2011-2012 Martin Pieuchot <mpi@openbsd.org>
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
@@ -32,8 +32,8 @@
|
|
|
|
#include "libusbi.h"
|
|
|
|
|
|
|
|
struct device_priv {
|
|
|
|
- char devnode[16];
|
|
|
|
- int fd;
|
|
|
|
+ char *devname; /* name of the ugen(4) node */
|
|
|
|
+ int fd; /* device file descriptor */
|
|
|
|
|
|
|
|
unsigned char *cdesc; /* active config descriptor */
|
|
|
|
usb_device_descriptor_t ddesc; /* usb device descriptor */
|
|
|
|
@@ -87,6 +87,13 @@ static int _sync_control_transfer(struct usbi_transfer
|
|
|
|
static int _sync_gen_transfer(struct usbi_transfer *);
|
|
|
|
static int _access_endpoint(struct libusb_transfer *);
|
|
|
|
|
|
|
|
+static int _bus_open(int);
|
|
|
|
+static int _bus_get_config(int, int, int *);
|
|
|
|
+static int _bus_get_device_desc(int, int, usb_device_descriptor_t *);
|
|
|
|
+static int _bus_get_full_desc(int, int, int, int, void *);
|
|
|
|
+static int _bus_get_config_desc(int, int, int, usb_config_descriptor_t *);
|
|
|
|
+
|
|
|
|
+
|
|
|
|
const struct usbi_os_backend openbsd_backend = {
|
|
|
|
"Synchronous OpenBSD backend",
|
|
|
|
NULL, /* init() */
|
2012-08-05 06:55:24 -04:00
|
|
|
@@ -128,75 +135,102 @@ const struct usbi_os_backend openbsd_backend = {
|
2012-06-19 16:45:00 -04:00
|
|
|
0, /* add_iso_packet_size */
|
|
|
|
};
|
|
|
|
|
|
|
|
+#define DEVPATH "/dev/"
|
|
|
|
+#define USBDEV DEVPATH "usb"
|
|
|
|
+
|
|
|
|
int
|
|
|
|
obsd_get_device_list(struct libusb_context * ctx,
|
|
|
|
struct discovered_devs **discdevs)
|
|
|
|
{
|
|
|
|
+ struct discovered_devs *dd;
|
|
|
|
struct libusb_device *dev;
|
|
|
|
struct device_priv *dpriv;
|
|
|
|
struct usb_device_info di;
|
|
|
|
unsigned long session_id;
|
|
|
|
- char devnode[16];
|
|
|
|
- int fd, err, i;
|
|
|
|
+ char devices[USB_MAX_DEVICES];
|
|
|
|
+ char busnode[16];
|
2012-08-05 06:55:24 -04:00
|
|
|
+ char *udevname;
|
|
|
|
+ int fd, addr, i, j;
|
2012-06-19 16:45:00 -04:00
|
|
|
|
|
|
|
usbi_dbg("");
|
|
|
|
|
|
|
|
- /* Only ugen(4) is supported */
|
|
|
|
- for (i = 0; i < USB_MAX_DEVICES; i++) {
|
|
|
|
- /* Control endpoint is always .00 */
|
|
|
|
- snprintf(devnode, sizeof(devnode), "/dev/ugen%d.00", i);
|
|
|
|
+ for (i = 0; i < 8; i++) {
|
|
|
|
+ snprintf(busnode, sizeof(busnode), USBDEV "%d", i);
|
|
|
|
|
|
|
|
- if ((fd = open(devnode, O_RDONLY)) < 0) {
|
|
|
|
+ if ((fd = open(busnode, O_RDWR)) < 0) {
|
|
|
|
if (errno != ENOENT && errno != ENXIO)
|
|
|
|
- usbi_err(ctx, "could not open %s", devnode);
|
|
|
|
+ usbi_err(ctx, "could not open %s", busnode);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
- if (ioctl(fd, USB_GET_DEVICEINFO, &di) < 0)
|
|
|
|
- continue;
|
|
|
|
+ bzero(devices, sizeof(devices));
|
|
|
|
+ for (addr = 1; addr < USB_MAX_DEVICES; addr++) {
|
|
|
|
+ if (devices[addr])
|
|
|
|
+ continue;
|
|
|
|
|
|
|
|
- session_id = (di.udi_bus << 8 | di.udi_addr);
|
|
|
|
- dev = usbi_get_device_by_session_id(ctx, session_id);
|
|
|
|
+ di.udi_addr = addr;
|
|
|
|
+ if (ioctl(fd, USB_DEVICEINFO, &di) < 0)
|
|
|
|
+ continue;
|
|
|
|
|
|
|
|
- if (dev == NULL) {
|
|
|
|
- dev = usbi_alloc_device(ctx, session_id);
|
|
|
|
- if (dev == NULL)
|
|
|
|
- return (LIBUSB_ERROR_NO_MEM);
|
2012-08-05 06:55:24 -04:00
|
|
|
+ /*
|
|
|
|
+ * XXX If ugen(4) is attached to the USB device
|
|
|
|
+ * it will be used.
|
|
|
|
+ */
|
|
|
|
+ udevname = NULL;
|
|
|
|
+ for (j = 0; j < USB_MAX_DEVNAMES; j++)
|
|
|
|
+ if (!strncmp("ugen", di.udi_devnames[j], 4)) {
|
|
|
|
+ udevname = strdup(di.udi_devnames[j]);
|
|
|
|
+ break;
|
|
|
|
+ }
|
2012-06-19 16:45:00 -04:00
|
|
|
|
|
|
|
- dev->bus_number = di.udi_bus;
|
|
|
|
- dev->device_address = di.udi_addr;
|
|
|
|
- dev->speed = di.udi_speed;
|
2012-08-05 06:55:24 -04:00
|
|
|
+ session_id = (di.udi_bus << 8 | di.udi_addr);
|
|
|
|
+ dev = usbi_get_device_by_session_id(ctx, session_id);
|
|
|
|
|
|
|
|
- dpriv = (struct device_priv *)dev->os_priv;
|
|
|
|
- strlcpy(dpriv->devnode, devnode, sizeof(devnode));
|
|
|
|
- dpriv->fd = -1;
|
2012-06-19 16:45:00 -04:00
|
|
|
+ if (dev == NULL) {
|
|
|
|
+ dev = usbi_alloc_device(ctx, session_id);
|
|
|
|
+ if (dev == NULL) {
|
|
|
|
+ close(fd);
|
|
|
|
+ return (LIBUSB_ERROR_NO_MEM);
|
|
|
|
+ }
|
|
|
|
|
|
|
|
- if (ioctl(fd, USB_GET_DEVICE_DESC, &dpriv->ddesc) < 0) {
|
|
|
|
- err = errno;
|
|
|
|
- goto error;
|
2012-08-05 06:55:24 -04:00
|
|
|
+ dev->bus_number = di.udi_bus;
|
|
|
|
+ dev->device_address = di.udi_addr;
|
|
|
|
+ dev->speed = di.udi_speed;
|
|
|
|
+
|
2012-06-19 16:45:00 -04:00
|
|
|
+ dpriv = (struct device_priv *)dev->os_priv;
|
|
|
|
+ dpriv->fd = -1;
|
|
|
|
+ dpriv->cdesc = NULL;
|
2012-08-05 06:55:24 -04:00
|
|
|
+ dpriv->devname = udevname;
|
2012-06-19 16:45:00 -04:00
|
|
|
+
|
|
|
|
+ if (_bus_get_device_desc(fd, addr, &dpriv->ddesc)) {
|
|
|
|
+ libusb_unref_device(dev);
|
|
|
|
+ continue;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ /* XXX Assume the active config is at index 0 */
|
|
|
|
+ if (_cache_active_config_descriptor(dev, 0)) {
|
|
|
|
+ libusb_unref_device(dev);
|
|
|
|
+ continue;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ if (usbi_sanitize_device(dev))
|
|
|
|
+ libusb_unref_device(dev);
|
|
|
|
}
|
|
|
|
|
|
|
|
- dpriv->cdesc = NULL;
|
|
|
|
- if (_cache_active_config_descriptor(dev, fd)) {
|
|
|
|
- err = errno;
|
|
|
|
- goto error;
|
|
|
|
+ dd = discovered_devs_append(*discdevs, dev);
|
|
|
|
+ if (dd == NULL) {
|
|
|
|
+ close(fd);
|
|
|
|
+ return (LIBUSB_ERROR_NO_MEM);
|
|
|
|
}
|
|
|
|
|
|
|
|
- if ((err = usbi_sanitize_device(dev)))
|
|
|
|
- goto error;
|
|
|
|
+ *discdevs = dd;
|
|
|
|
+ devices[addr] = 1;
|
|
|
|
}
|
|
|
|
- close(fd);
|
|
|
|
|
|
|
|
- if (discovered_devs_append(*discdevs, dev) == NULL)
|
|
|
|
- return (LIBUSB_ERROR_NO_MEM);
|
|
|
|
+ close(fd);
|
|
|
|
}
|
|
|
|
|
|
|
|
return (LIBUSB_SUCCESS);
|
|
|
|
-
|
|
|
|
-error:
|
|
|
|
- close(fd);
|
|
|
|
- libusb_unref_device(dev);
|
|
|
|
- return _errno_to_libusb(err);
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
2012-08-05 06:55:24 -04:00
|
|
|
@@ -204,16 +238,22 @@ obsd_open(struct libusb_device_handle *handle)
|
2012-06-19 16:45:00 -04:00
|
|
|
{
|
|
|
|
struct handle_priv *hpriv = (struct handle_priv *)handle->os_priv;
|
|
|
|
struct device_priv *dpriv = (struct device_priv *)handle->dev->os_priv;
|
|
|
|
+ char devnode[16];
|
|
|
|
|
|
|
|
- dpriv->fd = open(dpriv->devnode, O_RDWR);
|
|
|
|
- if (dpriv->fd < 0) {
|
|
|
|
- dpriv->fd = open(dpriv->devnode, O_RDONLY);
|
|
|
|
+ if (dpriv->devname) {
|
|
|
|
+ /*
|
|
|
|
+ * Only open ugen(4) attached devices read-write, all
|
|
|
|
+ * read-only operations are done through the bus node.
|
|
|
|
+ */
|
|
|
|
+ snprintf(devnode, sizeof(devnode), DEVPATH "%s.00",
|
|
|
|
+ dpriv->devname);
|
|
|
|
+ dpriv->fd = open(devnode, O_RDWR);
|
|
|
|
if (dpriv->fd < 0)
|
|
|
|
return _errno_to_libusb(errno);
|
|
|
|
+
|
|
|
|
+ usbi_dbg("open %s: fd %d", devnode, dpriv->fd);
|
|
|
|
}
|
|
|
|
|
|
|
|
- usbi_dbg("open %s: fd %d", dpriv->devnode, dpriv->fd);
|
|
|
|
-
|
|
|
|
if (pipe(hpriv->pipe) < 0)
|
|
|
|
return _errno_to_libusb(errno);
|
|
|
|
|
2012-08-05 06:55:24 -04:00
|
|
|
@@ -226,10 +266,12 @@ obsd_close(struct libusb_device_handle *handle)
|
2012-06-19 16:45:00 -04:00
|
|
|
struct handle_priv *hpriv = (struct handle_priv *)handle->os_priv;
|
|
|
|
struct device_priv *dpriv = (struct device_priv *)handle->dev->os_priv;
|
|
|
|
|
|
|
|
- usbi_dbg("close: fd %d", dpriv->fd);
|
|
|
|
+ if (dpriv->devname) {
|
|
|
|
+ usbi_dbg("close: fd %d", dpriv->fd);
|
|
|
|
|
|
|
|
- close(dpriv->fd);
|
|
|
|
- dpriv->fd = -1;
|
|
|
|
+ close(dpriv->fd);
|
|
|
|
+ dpriv->fd = -1;
|
|
|
|
+ }
|
|
|
|
|
|
|
|
usbi_remove_pollfd(HANDLE_CTX(handle), hpriv->pipe[0]);
|
|
|
|
|
2012-08-05 06:55:24 -04:00
|
|
|
@@ -275,35 +317,20 @@ int
|
2012-06-19 16:45:00 -04:00
|
|
|
obsd_get_config_descriptor(struct libusb_device *dev, uint8_t idx,
|
|
|
|
unsigned char *buf, size_t len, int *host_endian)
|
|
|
|
{
|
|
|
|
- struct device_priv *dpriv = (struct device_priv *)dev->os_priv;
|
|
|
|
- struct usb_full_desc ufd;
|
|
|
|
int fd, err;
|
|
|
|
|
|
|
|
+ if ((fd = _bus_open(dev->bus_number)) < 0)
|
|
|
|
+ return _errno_to_libusb(errno);
|
|
|
|
+
|
|
|
|
usbi_dbg("index %d, len %d", idx, len);
|
|
|
|
|
|
|
|
- /* A config descriptor may be requested before opening the device */
|
|
|
|
- if (dpriv->fd >= 0) {
|
|
|
|
- fd = dpriv->fd;
|
|
|
|
- } else {
|
|
|
|
- fd = open(dpriv->devnode, O_RDONLY);
|
|
|
|
- if (fd < 0)
|
|
|
|
- return _errno_to_libusb(errno);
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- ufd.ufd_config_index = idx;
|
|
|
|
- ufd.ufd_size = len;
|
|
|
|
- ufd.ufd_data = buf;
|
|
|
|
-
|
|
|
|
- if ((ioctl(fd, USB_GET_FULL_DESC, &ufd)) < 0) {
|
|
|
|
+ if (_bus_get_full_desc(fd, dev->device_address, idx, len, buf)) {
|
|
|
|
err = errno;
|
|
|
|
- if (dpriv->fd < 0)
|
|
|
|
- close(fd);
|
|
|
|
+ close(fd);
|
|
|
|
return _errno_to_libusb(err);
|
|
|
|
}
|
|
|
|
+ close(fd);
|
|
|
|
|
|
|
|
- if (dpriv->fd < 0)
|
|
|
|
- close(fd);
|
|
|
|
-
|
|
|
|
*host_endian = 0;
|
|
|
|
|
|
|
|
return (LIBUSB_SUCCESS);
|
2012-08-05 06:55:24 -04:00
|
|
|
@@ -312,15 +339,20 @@ obsd_get_config_descriptor(struct libusb_device *dev,
|
2012-06-19 16:45:00 -04:00
|
|
|
int
|
2012-08-05 06:55:24 -04:00
|
|
|
obsd_get_configuration(struct libusb_device_handle *handle, int *config)
|
2012-06-19 16:45:00 -04:00
|
|
|
{
|
|
|
|
- struct device_priv *dpriv = (struct device_priv *)handle->dev->os_priv;
|
|
|
|
+ int fd, err;
|
|
|
|
|
|
|
|
- usbi_dbg("");
|
|
|
|
-
|
|
|
|
- if (ioctl(dpriv->fd, USB_GET_CONFIG, config) < 0)
|
|
|
|
+ if ((fd = _bus_open(handle->dev->bus_number)) < 0)
|
|
|
|
return _errno_to_libusb(errno);
|
|
|
|
|
|
|
|
- usbi_dbg("configuration %d", *config);
|
2012-08-05 06:55:24 -04:00
|
|
|
+ if (_bus_get_config(fd, handle->dev->device_address, config)) {
|
2012-06-19 16:45:00 -04:00
|
|
|
+ err = errno;
|
|
|
|
+ close(fd);
|
|
|
|
+ return _errno_to_libusb(err);
|
|
|
|
+ }
|
|
|
|
+ close(fd);
|
|
|
|
|
2012-08-05 06:55:24 -04:00
|
|
|
+ usbi_dbg("bConfigurationValue %d", *config);
|
2012-06-19 16:45:00 -04:00
|
|
|
+
|
|
|
|
return (LIBUSB_SUCCESS);
|
|
|
|
}
|
|
|
|
|
2012-08-05 06:55:24 -04:00
|
|
|
@@ -328,13 +360,23 @@ int
|
|
|
|
obsd_set_configuration(struct libusb_device_handle *handle, int config)
|
2012-06-19 16:45:00 -04:00
|
|
|
{
|
|
|
|
struct device_priv *dpriv = (struct device_priv *)handle->dev->os_priv;
|
2012-08-05 06:55:24 -04:00
|
|
|
+ int idx;
|
2012-06-19 16:45:00 -04:00
|
|
|
|
|
|
|
- usbi_dbg("configuration %d", config);
|
|
|
|
+ if (dpriv->devname == NULL)
|
|
|
|
+ return (LIBUSB_ERROR_NOT_SUPPORTED);
|
|
|
|
|
2012-08-05 06:55:24 -04:00
|
|
|
+ usbi_dbg("bConfigurationValue %d", config);
|
2012-06-19 16:45:00 -04:00
|
|
|
+
|
2012-08-05 06:55:24 -04:00
|
|
|
if (ioctl(dpriv->fd, USB_SET_CONFIG, &config) < 0)
|
2012-06-19 16:45:00 -04:00
|
|
|
return _errno_to_libusb(errno);
|
|
|
|
|
|
|
|
- return _cache_active_config_descriptor(handle->dev, dpriv->fd);
|
2012-08-05 06:55:24 -04:00
|
|
|
+ /*
|
|
|
|
+ * XXX Instead of assuming that the index is at bConfigurationValue
|
|
|
|
+ * minus one, we should iterate against the possible configurations.
|
|
|
|
+ */
|
|
|
|
+ idx = config - 1;
|
|
|
|
+
|
2012-06-19 16:45:00 -04:00
|
|
|
+ return _cache_active_config_descriptor(handle->dev, idx);
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
2012-08-05 06:55:24 -04:00
|
|
|
@@ -369,6 +411,9 @@ obsd_set_interface_altsetting(struct libusb_device_han
|
2012-06-19 16:45:00 -04:00
|
|
|
struct device_priv *dpriv = (struct device_priv *)handle->dev->os_priv;
|
|
|
|
struct usb_alt_interface intf;
|
|
|
|
|
|
|
|
+ if (dpriv->devname == NULL)
|
|
|
|
+ return (LIBUSB_ERROR_NOT_SUPPORTED);
|
|
|
|
+
|
|
|
|
usbi_dbg("iface %d, setting %d", iface, altsetting);
|
|
|
|
|
|
|
|
memset(&intf, 0, sizeof(intf));
|
2012-08-05 06:55:24 -04:00
|
|
|
@@ -385,19 +430,27 @@ obsd_set_interface_altsetting(struct libusb_device_han
|
2012-06-19 16:45:00 -04:00
|
|
|
int
|
|
|
|
obsd_clear_halt(struct libusb_device_handle *handle, unsigned char endpoint)
|
|
|
|
{
|
|
|
|
- struct device_priv *dpriv = (struct device_priv *)handle->dev->os_priv;
|
|
|
|
struct usb_ctl_request req;
|
|
|
|
+ int fd, err;
|
|
|
|
|
|
|
|
+ if ((fd = _bus_open(handle->dev->bus_number)) < 0)
|
|
|
|
+ return _errno_to_libusb(errno);
|
|
|
|
+
|
|
|
|
usbi_dbg("");
|
|
|
|
|
|
|
|
+ req.ucr_addr = handle->dev->device_address;
|
|
|
|
req.ucr_request.bmRequestType = UT_WRITE_ENDPOINT;
|
|
|
|
req.ucr_request.bRequest = UR_CLEAR_FEATURE;
|
|
|
|
USETW(req.ucr_request.wValue, UF_ENDPOINT_HALT);
|
|
|
|
USETW(req.ucr_request.wIndex, endpoint);
|
|
|
|
USETW(req.ucr_request.wLength, 0);
|
|
|
|
|
|
|
|
- if (ioctl(dpriv->fd, USB_DO_REQUEST, &req) < 0)
|
|
|
|
- return _errno_to_libusb(errno);
|
|
|
|
+ if (ioctl(fd, USB_REQUEST, &req) < 0) {
|
|
|
|
+ err = errno;
|
|
|
|
+ close(fd);
|
|
|
|
+ return _errno_to_libusb(err);
|
|
|
|
+ }
|
|
|
|
+ close(fd);
|
|
|
|
|
|
|
|
return (LIBUSB_SUCCESS);
|
|
|
|
}
|
2012-08-05 06:55:24 -04:00
|
|
|
@@ -418,6 +471,7 @@ obsd_destroy_device(struct libusb_device *dev)
|
2012-06-19 16:45:00 -04:00
|
|
|
usbi_dbg("");
|
|
|
|
|
|
|
|
free(dpriv->cdesc);
|
|
|
|
+ free(dpriv->devname);
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
2012-08-05 06:55:24 -04:00
|
|
|
@@ -557,6 +611,8 @@ obsd_clock_gettime(int clkid, struct timespec *tp)
|
2012-06-19 16:45:00 -04:00
|
|
|
int
|
|
|
|
_errno_to_libusb(int err)
|
|
|
|
{
|
|
|
|
+ usbi_dbg("error: %s (%d)", strerror(err), err);
|
|
|
|
+
|
|
|
|
switch (err) {
|
|
|
|
case EIO:
|
|
|
|
return (LIBUSB_ERROR_IO);
|
2012-08-05 06:55:24 -04:00
|
|
|
@@ -566,52 +622,52 @@ _errno_to_libusb(int err)
|
2012-06-19 16:45:00 -04:00
|
|
|
return (LIBUSB_ERROR_NO_DEVICE);
|
|
|
|
case ENOMEM:
|
|
|
|
return (LIBUSB_ERROR_NO_MEM);
|
|
|
|
+ case ETIMEDOUT:
|
|
|
|
+ return (LIBUSB_ERROR_TIMEOUT);
|
|
|
|
}
|
|
|
|
|
|
|
|
- usbi_dbg("error: %s", strerror(err));
|
|
|
|
-
|
|
|
|
return (LIBUSB_ERROR_OTHER);
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
-_cache_active_config_descriptor(struct libusb_device *dev, int fd)
|
|
|
|
+_cache_active_config_descriptor(struct libusb_device *dev, int idx)
|
|
|
|
{
|
|
|
|
struct device_priv *dpriv = (struct device_priv *)dev->os_priv;
|
|
|
|
- struct usb_config_desc ucd;
|
|
|
|
- struct usb_full_desc ufd;
|
|
|
|
+ usb_config_descriptor_t cdesc;
|
|
|
|
unsigned char* buf;
|
|
|
|
- int len;
|
|
|
|
+ int fd, len, err;
|
|
|
|
|
|
|
|
- usbi_dbg("fd %d", fd);
|
|
|
|
+ if ((fd = _bus_open(dev->bus_number)) < 0)
|
|
|
|
+ return _errno_to_libusb(errno);
|
|
|
|
|
|
|
|
- ucd.ucd_config_index = USB_CURRENT_CONFIG_INDEX;
|
|
|
|
+ usbi_dbg("fd %d, addr %d", fd, dev->device_address);
|
|
|
|
|
|
|
|
- if ((ioctl(fd, USB_GET_CONFIG_DESC, &ucd)) < 0)
|
|
|
|
+ if (_bus_get_config_desc(fd, dev->device_address, idx, &cdesc)) {
|
|
|
|
+ err = errno;
|
|
|
|
+ close(fd);
|
|
|
|
return _errno_to_libusb(errno);
|
|
|
|
+ }
|
|
|
|
|
|
|
|
- usbi_dbg("active bLength %d", ucd.ucd_desc.bLength);
|
|
|
|
+ usbi_dbg("active bLength %d", cdesc.bLength);
|
|
|
|
|
|
|
|
- len = UGETW(ucd.ucd_desc.wTotalLength);
|
|
|
|
+ len = UGETW(cdesc.wTotalLength);
|
|
|
|
buf = malloc(len);
|
|
|
|
if (buf == NULL)
|
|
|
|
return (LIBUSB_ERROR_NO_MEM);
|
|
|
|
|
|
|
|
- ufd.ufd_config_index = ucd.ucd_config_index;
|
|
|
|
- ufd.ufd_size = len;
|
|
|
|
- ufd.ufd_data = buf;
|
|
|
|
-
|
|
|
|
- usbi_dbg("index %d, len %d", ufd.ufd_config_index, len);
|
|
|
|
-
|
|
|
|
- if ((ioctl(fd, USB_GET_FULL_DESC, &ufd)) < 0) {
|
|
|
|
+ if (_bus_get_full_desc(fd, dev->device_address, idx, len, buf)) {
|
|
|
|
+ err = errno;
|
|
|
|
+ close(fd);
|
|
|
|
free(buf);
|
|
|
|
- return _errno_to_libusb(errno);
|
|
|
|
+ return _errno_to_libusb(err);
|
|
|
|
}
|
|
|
|
+ close(fd);
|
|
|
|
|
|
|
|
if (dpriv->cdesc)
|
|
|
|
free(dpriv->cdesc);
|
|
|
|
dpriv->cdesc = buf;
|
|
|
|
|
|
|
|
- return (0);
|
|
|
|
+ return (LIBUSB_SUCCESS);
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
2012-08-05 06:55:24 -04:00
|
|
|
@@ -626,12 +682,13 @@ _sync_control_transfer(struct usbi_transfer *itransfer
|
2012-06-19 16:45:00 -04:00
|
|
|
dpriv = (struct device_priv *)transfer->dev_handle->dev->os_priv;
|
|
|
|
setup = (struct libusb_control_setup *)transfer->buffer;
|
|
|
|
|
|
|
|
- usbi_dbg("type %d request %d value %d index %d length %d timeout %d",
|
|
|
|
+ usbi_dbg("type %x request %x value %x index %d length %d timeout %d",
|
|
|
|
setup->bmRequestType, setup->bRequest,
|
|
|
|
libusb_le16_to_cpu(setup->wValue),
|
|
|
|
libusb_le16_to_cpu(setup->wIndex),
|
|
|
|
libusb_le16_to_cpu(setup->wLength), transfer->timeout);
|
|
|
|
|
|
|
|
+ req.ucr_addr = transfer->dev_handle->dev->device_address;
|
|
|
|
req.ucr_request.bmRequestType = setup->bmRequestType;
|
|
|
|
req.ucr_request.bRequest = setup->bRequest;
|
|
|
|
/* Don't use USETW, libusb already deals with the endianness */
|
2012-08-05 06:55:24 -04:00
|
|
|
@@ -643,12 +700,31 @@ _sync_control_transfer(struct usbi_transfer *itransfer
|
2012-06-19 16:45:00 -04:00
|
|
|
if ((transfer->flags & LIBUSB_TRANSFER_SHORT_NOT_OK) == 0)
|
|
|
|
req.ucr_flags = USBD_SHORT_XFER_OK;
|
|
|
|
|
|
|
|
- if ((ioctl(dpriv->fd, USB_SET_TIMEOUT, &transfer->timeout)) < 0)
|
|
|
|
- return _errno_to_libusb(errno);
|
|
|
|
+ if (dpriv->devname == NULL) {
|
|
|
|
+ /*
|
|
|
|
+ * XXX If the device is not attached to ugen(4) it is
|
|
|
|
+ * XXX still possible to submit a control transfer but
|
|
|
|
+ * XXX with the default timeout only.
|
|
|
|
+ */
|
|
|
|
+ int fd, err;
|
|
|
|
|
|
|
|
- if ((ioctl(dpriv->fd, USB_DO_REQUEST, &req)) < 0)
|
|
|
|
- return _errno_to_libusb(errno);
|
|
|
|
+ if ((fd = _bus_open(transfer->dev_handle->dev->bus_number)) < 0)
|
|
|
|
+ return _errno_to_libusb(errno);
|
|
|
|
|
|
|
|
+ if ((ioctl(fd, USB_REQUEST, &req)) < 0) {
|
|
|
|
+ err = errno;
|
|
|
|
+ close(fd);
|
|
|
|
+ return _errno_to_libusb(err);
|
|
|
|
+ }
|
|
|
|
+ close(fd);
|
|
|
|
+ } else {
|
|
|
|
+ if ((ioctl(dpriv->fd, USB_SET_TIMEOUT, &transfer->timeout)) < 0)
|
|
|
|
+ return _errno_to_libusb(errno);
|
|
|
|
+
|
|
|
|
+ if ((ioctl(dpriv->fd, USB_DO_REQUEST, &req)) < 0)
|
|
|
|
+ return _errno_to_libusb(errno);
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
itransfer->transferred = req.ucr_actlen;
|
|
|
|
|
|
|
|
usbi_dbg("transferred %d", itransfer->transferred);
|
2012-08-05 06:55:24 -04:00
|
|
|
@@ -661,7 +737,7 @@ _access_endpoint(struct libusb_transfer *transfer)
|
2012-06-19 16:45:00 -04:00
|
|
|
{
|
|
|
|
struct handle_priv *hpriv;
|
|
|
|
struct device_priv *dpriv;
|
|
|
|
- char *s, devnode[16];
|
|
|
|
+ char devnode[16];
|
|
|
|
int fd, endpt;
|
|
|
|
mode_t mode;
|
|
|
|
|
2012-08-05 06:55:24 -04:00
|
|
|
@@ -674,10 +750,9 @@ _access_endpoint(struct libusb_transfer *transfer)
|
2012-06-19 16:45:00 -04:00
|
|
|
usbi_dbg("endpoint %d mode %d", endpt, mode);
|
|
|
|
|
|
|
|
if (hpriv->endpoints[endpt] < 0) {
|
|
|
|
- /* Pick the right node given the control one */
|
|
|
|
- strlcpy(devnode, dpriv->devnode, sizeof(devnode));
|
|
|
|
- s = strchr(devnode, '.');
|
|
|
|
- snprintf(s, 4, ".%02d", endpt);
|
|
|
|
+ /* Pick the right endpoint node */
|
|
|
|
+ snprintf(devnode, sizeof(devnode), DEVPATH "%s.%02d",
|
|
|
|
+ dpriv->devname, endpt);
|
|
|
|
|
|
|
|
/* We may need to read/write to the same endpoint later. */
|
|
|
|
if (((fd = open(devnode, O_RDWR)) < 0) && (errno == ENXIO))
|
2012-08-05 06:55:24 -04:00
|
|
|
@@ -694,10 +769,15 @@ int
|
2012-06-19 16:45:00 -04:00
|
|
|
_sync_gen_transfer(struct usbi_transfer *itransfer)
|
|
|
|
{
|
|
|
|
struct libusb_transfer *transfer;
|
|
|
|
+ struct device_priv *dpriv;
|
|
|
|
int fd, nr = 1;
|
|
|
|
|
|
|
|
transfer = USBI_TRANSFER_TO_LIBUSB_TRANSFER(itransfer);
|
|
|
|
+ dpriv = (struct device_priv *)transfer->dev_handle->dev->os_priv;
|
|
|
|
|
|
|
|
+ if (dpriv->devname == NULL)
|
|
|
|
+ return (LIBUSB_ERROR_NOT_SUPPORTED);
|
|
|
|
+
|
|
|
|
/*
|
|
|
|
* Bulk, Interrupt or Isochronous transfer depends on the
|
|
|
|
* endpoint and thus the node to open.
|
2012-08-05 06:55:24 -04:00
|
|
|
@@ -724,4 +804,87 @@ _sync_gen_transfer(struct usbi_transfer *itransfer)
|
2012-06-19 16:45:00 -04:00
|
|
|
itransfer->transferred = nr;
|
|
|
|
|
|
|
|
return (0);
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+int
|
|
|
|
+_bus_open(int number)
|
|
|
|
+{
|
|
|
|
+ char busnode[16];
|
|
|
|
+
|
|
|
|
+ snprintf(busnode, sizeof(busnode), USBDEV "%d", number);
|
|
|
|
+
|
|
|
|
+ return open(busnode, O_RDWR);
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+int
|
|
|
|
+_bus_get_config(int fd, int addr, int *config)
|
|
|
|
+{
|
|
|
|
+ struct usb_ctl_request req;
|
|
|
|
+ uint8_t conf;
|
|
|
|
+ int err;
|
|
|
|
+
|
|
|
|
+ usbi_dbg("");
|
|
|
|
+
|
|
|
|
+ req.ucr_addr = addr;
|
|
|
|
+ req.ucr_request.bmRequestType = UT_READ_DEVICE;
|
|
|
|
+ req.ucr_request.bRequest = UR_GET_CONFIG;
|
|
|
|
+ USETW(req.ucr_request.wValue, 0);
|
|
|
|
+ USETW(req.ucr_request.wIndex, 0);
|
|
|
|
+ USETW(req.ucr_request.wLength, 1);
|
|
|
|
+ req.ucr_data = &conf;
|
|
|
|
+ req.ucr_flags = 0;
|
|
|
|
+
|
|
|
|
+ err = ioctl(fd, USB_REQUEST, &req);
|
|
|
|
+
|
|
|
|
+ *config = conf;
|
|
|
|
+
|
|
|
|
+ return (err);
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+static int
|
|
|
|
+_bus_get_desc(int fd, int addr, uint8_t type, uint8_t idx, int len, void *desc)
|
|
|
|
+{
|
|
|
|
+ struct usb_ctl_request req;
|
|
|
|
+
|
|
|
|
+ usbi_dbg("addr %d type %d index %d len %d", addr, type, idx, len);
|
|
|
|
+
|
|
|
|
+ req.ucr_addr = addr;
|
|
|
|
+ req.ucr_request.bmRequestType = UT_READ_DEVICE;
|
|
|
|
+ req.ucr_request.bRequest = UR_GET_DESCRIPTOR;
|
|
|
|
+ USETW2(req.ucr_request.wValue, type, idx);
|
|
|
|
+ USETW(req.ucr_request.wIndex, 0);
|
|
|
|
+ USETW(req.ucr_request.wLength, len);
|
|
|
|
+ req.ucr_data = desc;
|
|
|
|
+ req.ucr_flags = 0;
|
|
|
|
+
|
2012-08-05 06:55:24 -04:00
|
|
|
+ if (ioctl(fd, USB_REQUEST, &req) < 0)
|
|
|
|
+ return _errno_to_libusb(errno);
|
|
|
|
+
|
|
|
|
+ return (0);
|
2012-06-19 16:45:00 -04:00
|
|
|
+}
|
|
|
|
+
|
|
|
|
+int
|
|
|
|
+_bus_get_device_desc(int fd, int addr, usb_device_descriptor_t *ddesc)
|
|
|
|
+{
|
|
|
|
+ usbi_dbg("");
|
|
|
|
+
|
|
|
|
+ return _bus_get_desc(fd, addr, UDESC_DEVICE, 0,
|
|
|
|
+ USB_DEVICE_DESCRIPTOR_SIZE, ddesc);
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+int
|
|
|
|
+_bus_get_config_desc(int fd, int addr, int idx, usb_config_descriptor_t *cdesc)
|
|
|
|
+{
|
|
|
|
+ usbi_dbg("config index %d", idx);
|
|
|
|
+
|
|
|
|
+ return _bus_get_desc(fd, addr, UDESC_CONFIG, idx,
|
|
|
|
+ USB_CONFIG_DESCRIPTOR_SIZE, cdesc);
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+int
|
|
|
|
+_bus_get_full_desc(int fd, int addr, int idx, int size, void *desc)
|
|
|
|
+{
|
|
|
|
+ usbi_dbg("config index %d size %d", idx, size);
|
|
|
|
+
|
|
|
|
+ return _bus_get_desc(fd, addr, UDESC_CONFIG, idx, size, desc);
|
|
|
|
}
|