usb/173666: [USB, LIBUSB] usb_reset() behavior different between GNU/Linux and FreeBSD
Xiaofan Chen
xiaofanc at gmail.com
Sat Dec 22 10:17:18 UTC 2012
On Fri, Dec 21, 2012 at 3:38 PM, Hans Petter Selasky <hselasky at c2i.net> wrote:
> If you look in the old libusb-0.1 code you'll see something different I think.
> Could you check that?
Not much differences in reality. I believe it is a document bug for the
libusb-0.1.
Both old libusb-0.1 code and libusb-1.0 use the same IOCTL under Linux
and the behavior should be similar.
Please refer to the following code listing and take note even though
the name of the IOCTL is different but they are the same if you
look at the defines.
On the other hand, libusb-win32's usb_reset will cause re-enumeration.
>From libusb-0.1.12 source (linux.c)
int usb_reset(usb_dev_handle *dev)
{
int ret;
ret = ioctl(dev->fd, IOCTL_USB_RESET, NULL);
if (ret)
USB_ERROR_STR(-errno, "could not reset: %s", strerror(errno));
return 0;
}
>From libusb.org libusb.git (libusb-1.0) souce:
static int op_reset_device(struct libusb_device_handle *handle)
{
int fd = _device_handle_priv(handle)->fd;
int i, r, ret = 0;
/* Doing a device reset will cause the usbfs driver to get unbound
from any interfaces it is bound to. By voluntarily unbinding
the usbfs driver ourself, we stop the kernel from rebinding
the interface after reset (which would end up with the interface
getting bound to the in kernel driver if any). */
for (i = 0; i < USB_MAXINTERFACES; i++) {
if (handle->claimed_interfaces & (1L << i)) {
op_release_interface(handle, i);
}
}
usbi_mutex_lock(&handle->lock);
r = ioctl(fd, IOCTL_USBFS_RESET, NULL);
if (r) {
if (errno == ENODEV) {
ret = LIBUSB_ERROR_NOT_FOUND;
goto out;
}
usbi_err(HANDLE_CTX(handle),
"reset failed error %d errno %d", r, errno);
ret = LIBUSB_ERROR_OTHER;
goto out;
}
/* And re-claim any interfaces which were claimed before the reset */
for (i = 0; i < USB_MAXINTERFACES; i++) {
if (handle->claimed_interfaces & (1L << i)) {
r = op_claim_interface(handle, i);
if (r) {
usbi_warn(HANDLE_CTX(handle),
"failed to re-claim interface %d after reset", i);
handle->claimed_interfaces &= ~(1L << i);
}
}
}
out:
usbi_mutex_unlock(&handle->lock);
return ret;
}
--
Xiaofan
More information about the freebsd-usb
mailing list