Core: Make libusb_error_name also handle transfer status codes
[platform/upstream/libusb.git] / libusb / core.c
1 /*
2  * Core functions for libusbx
3  * Copyright © 2007-2008 Daniel Drake <dsd@gentoo.org>
4  * Copyright © 2001 Johannes Erdfelt <johannes@erdfelt.com>
5  *
6  * This library is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Lesser General Public
8  * License as published by the Free Software Foundation; either
9  * version 2.1 of the License, or (at your option) any later version.
10  *
11  * This library is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14  * Lesser General Public License for more details.
15  *
16  * You should have received a copy of the GNU Lesser General Public
17  * License along with this library; if not, write to the Free Software
18  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
19  */
20
21 #include <config.h>
22
23 #include <errno.h>
24 #include <stdarg.h>
25 #include <stdio.h>
26 #include <stdlib.h>
27 #include <string.h>
28 #include <sys/types.h>
29
30 #ifdef HAVE_SYS_TIME_H
31 #include <sys/time.h>
32 #endif
33
34 #include "libusbi.h"
35
36 #if defined(OS_LINUX)
37 const struct usbi_os_backend * const usbi_backend = &linux_usbfs_backend;
38 #elif defined(OS_DARWIN)
39 const struct usbi_os_backend * const usbi_backend = &darwin_backend;
40 #elif defined(OS_OPENBSD)
41 const struct usbi_os_backend * const usbi_backend = &openbsd_backend;
42 #elif defined(OS_WINDOWS)
43 const struct usbi_os_backend * const usbi_backend = &windows_backend;
44 #else
45 #error "Unsupported OS"
46 #endif
47
48 struct libusb_context *usbi_default_context = NULL;
49 const struct libusb_version libusb_version_internal =
50         { LIBUSB_MAJOR, LIBUSB_MINOR, LIBUSB_MICRO, LIBUSB_NANO,
51           LIBUSB_RC, "unused - please use the nano" };
52 static int default_context_refcnt = 0;
53 static usbi_mutex_static_t default_context_lock = USBI_MUTEX_INITIALIZER;
54 static struct timeval timestamp_origin = { 0, 0 };
55
56 /**
57  * \mainpage libusbx-1.0 API Reference
58  *
59  * \section intro Introduction
60  *
61  * libusbx is an open source library that allows you to communicate with USB
62  * devices from userspace. For more info, see the
63  * <a href="http://libusbx.org">libusbx homepage</a>.
64  *
65  * This documentation is aimed at application developers wishing to
66  * communicate with USB peripherals from their own software. After reviewing
67  * this documentation, feedback and questions can be sent to the
68  * <a href="http://mailing-list.libusbx.org">libusbx-devel mailing list</a>.
69  *
70  * This documentation assumes knowledge of how to operate USB devices from
71  * a software standpoint (descriptors, configurations, interfaces, endpoints,
72  * control/bulk/interrupt/isochronous transfers, etc). Full information
73  * can be found in the <a href="http://www.usb.org/developers/docs/">USB 3.0
74  * Specification</a> which is available for free download. You can probably
75  * find less verbose introductions by searching the web.
76  *
77  * \section features Library features
78  *
79  * - All transfer types supported (control/bulk/interrupt/isochronous)
80  * - 2 transfer interfaces:
81  *    -# Synchronous (simple)
82  *    -# Asynchronous (more complicated, but more powerful)
83  * - Thread safe (although the asynchronous interface means that you
84  *   usually won't need to thread)
85  * - Lightweight with lean API
86  * - Compatible with libusb-0.1 through the libusb-compat-0.1 translation layer
87  *
88  * \section gettingstarted Getting Started
89  *
90  * To begin reading the API documentation, start with the Modules page which
91  * links to the different categories of libusbx's functionality.
92  *
93  * One decision you will have to make is whether to use the synchronous
94  * or the asynchronous data transfer interface. The \ref io documentation
95  * provides some insight into this topic.
96  *
97  * Some example programs can be found in the libusbx source distribution under
98  * the "examples" subdirectory. The libusbx homepage includes a list of
99  * real-life project examples which use libusbx.
100  *
101  * \section errorhandling Error handling
102  *
103  * libusbx functions typically return 0 on success or a negative error code
104  * on failure. These negative error codes relate to LIBUSB_ERROR constants
105  * which are listed on the \ref misc "miscellaneous" documentation page.
106  *
107  * \section msglog Debug message logging
108  *
109  * libusbx uses stderr for all logging. By default, logging is set to NONE,
110  * which means that no output will be produced. However, unless the library
111  * has been compiled with logging disabled, then any application calls to
112  * libusb_set_debug(), or the setting of the environmental variable
113  * LIBUSB_DEBUG outside of the application, can result in logging being
114  * produced. Your application should therefore not close stderr, but instead
115  * direct it to the null device if its output is undesireable.
116  *
117  * The libusb_set_debug() function can be used to enable logging of certain
118  * messages. Under standard configuration, libusbx doesn't really log much
119  * so you are advised to use this function to enable all error/warning/
120  * informational messages. It will help debug problems with your software.
121  *
122  * The logged messages are unstructured. There is no one-to-one correspondence
123  * between messages being logged and success or failure return codes from
124  * libusbx functions. There is no format to the messages, so you should not
125  * try to capture or parse them. They are not and will not be localized.
126  * These messages are not intended to being passed to your application user;
127  * instead, you should interpret the error codes returned from libusbx functions
128  * and provide appropriate notification to the user. The messages are simply
129  * there to aid you as a programmer, and if you're confused because you're
130  * getting a strange error code from a libusbx function, enabling message
131  * logging may give you a suitable explanation.
132  *
133  * The LIBUSB_DEBUG environment variable can be used to enable message logging
134  * at run-time. This environment variable should be set to a log level number,
135  * which is interpreted the same as the libusb_set_debug() parameter. When this
136  * environment variable is set, the message logging verbosity level is fixed
137  * and libusb_set_debug() effectively does nothing.
138  *
139  * libusbx can be compiled without any logging functions, useful for embedded
140  * systems. In this case, libusb_set_debug() and the LIBUSB_DEBUG environment
141  * variable have no effects.
142  *
143  * libusbx can also be compiled with verbose debugging messages always. When
144  * the library is compiled in this way, all messages of all verbosities are
145  * always logged. libusb_set_debug() and the LIBUSB_DEBUG environment variable
146  * have no effects.
147  *
148  * \section remarks Other remarks
149  *
150  * libusbx does have imperfections. The \ref caveats "caveats" page attempts
151  * to document these.
152  */
153
154 /**
155  * \page caveats Caveats
156  *
157  * \section devresets Device resets
158  *
159  * The libusb_reset_device() function allows you to reset a device. If your
160  * program has to call such a function, it should obviously be aware that
161  * the reset will cause device state to change (e.g. register values may be
162  * reset).
163  *
164  * The problem is that any other program could reset the device your program
165  * is working with, at any time. libusbx does not offer a mechanism to inform
166  * you when this has happened, so if someone else resets your device it will
167  * not be clear to your own program why the device state has changed.
168  *
169  * Ultimately, this is a limitation of writing drivers in userspace.
170  * Separation from the USB stack in the underlying kernel makes it difficult
171  * for the operating system to deliver such notifications to your program.
172  * The Linux kernel USB stack allows such reset notifications to be delivered
173  * to in-kernel USB drivers, but it is not clear how such notifications could
174  * be delivered to second-class drivers that live in userspace.
175  *
176  * \section blockonly Blocking-only functionality
177  *
178  * The functionality listed below is only available through synchronous,
179  * blocking functions. There are no asynchronous/non-blocking alternatives,
180  * and no clear ways of implementing these.
181  *
182  * - Configuration activation (libusb_set_configuration())
183  * - Interface/alternate setting activation (libusb_set_interface_alt_setting())
184  * - Releasing of interfaces (libusb_release_interface())
185  * - Clearing of halt/stall condition (libusb_clear_halt())
186  * - Device resets (libusb_reset_device())
187  *
188  * \section nohotplug No hotplugging
189  *
190  * libusbx-1.0 lacks functionality for providing notifications of when devices
191  * are added or removed. This functionality is planned to be implemented
192  * in a later version of libusbx.
193  *
194  * That said, there is basic disconnection handling for open device handles:
195  *  - If there are ongoing transfers, libusbx's handle_events loop will detect
196  *    disconnections and complete ongoing transfers with the
197  *    LIBUSB_TRANSFER_NO_DEVICE status code.
198  *  - Many functions such as libusb_set_configuration() return the special
199  *    LIBUSB_ERROR_NO_DEVICE error code when the device has been disconnected.
200  *
201  * \section configsel Configuration selection and handling
202  *
203  * When libusbx presents a device handle to an application, there is a chance
204  * that the corresponding device may be in unconfigured state. For devices
205  * with multiple configurations, there is also a chance that the configuration
206  * currently selected is not the one that the application wants to use.
207  *
208  * The obvious solution is to add a call to libusb_set_configuration() early
209  * on during your device initialization routines, but there are caveats to
210  * be aware of:
211  * -# If the device is already in the desired configuration, calling
212  *    libusb_set_configuration() using the same configuration value will cause
213  *    a lightweight device reset. This may not be desirable behaviour.
214  * -# libusbx will be unable to change configuration if the device is in
215  *    another configuration and other programs or drivers have claimed
216  *    interfaces under that configuration.
217  * -# In the case where the desired configuration is already active, libusbx
218  *    may not even be able to perform a lightweight device reset. For example,
219  *    take my USB keyboard with fingerprint reader: I'm interested in driving
220  *    the fingerprint reader interface through libusbx, but the kernel's
221  *    USB-HID driver will almost always have claimed the keyboard interface.
222  *    Because the kernel has claimed an interface, it is not even possible to
223  *    perform the lightweight device reset, so libusb_set_configuration() will
224  *    fail. (Luckily the device in question only has a single configuration.)
225  *
226  * One solution to some of the above problems is to consider the currently
227  * active configuration. If the configuration we want is already active, then
228  * we don't have to select any configuration:
229 \code
230 cfg = libusb_get_configuration(dev);
231 if (cfg != desired)
232         libusb_set_configuration(dev, desired);
233 \endcode
234  *
235  * This is probably suitable for most scenarios, but is inherently racy:
236  * another application or driver may change the selected configuration
237  * <em>after</em> the libusb_get_configuration() call.
238  *
239  * Even in cases where libusb_set_configuration() succeeds, consider that other
240  * applications or drivers may change configuration after your application
241  * calls libusb_set_configuration().
242  *
243  * One possible way to lock your device into a specific configuration is as
244  * follows:
245  * -# Set the desired configuration (or use the logic above to realise that
246  *    it is already in the desired configuration)
247  * -# Claim the interface that you wish to use
248  * -# Check that the currently active configuration is the one that you want
249  *    to use.
250  *
251  * The above method works because once an interface is claimed, no application
252  * or driver is able to select another configuration.
253  *
254  * \section earlycomp Early transfer completion
255  *
256  * NOTE: This section is currently Linux-centric. I am not sure if any of these
257  * considerations apply to Darwin or other platforms.
258  *
259  * When a transfer completes early (i.e. when less data is received/sent in
260  * any one packet than the transfer buffer allows for) then libusbx is designed
261  * to terminate the transfer immediately, not transferring or receiving any
262  * more data unless other transfers have been queued by the user.
263  *
264  * On legacy platforms, libusbx is unable to do this in all situations. After
265  * the incomplete packet occurs, "surplus" data may be transferred. For recent
266  * versions of libusbx, this information is kept (the data length of the
267  * transfer is updated) and, for device-to-host transfers, any surplus data was
268  * added to the buffer. Still, this is not a nice solution because it loses the
269  * information about the end of the short packet, and the user probably wanted
270  * that surplus data to arrive in the next logical transfer.
271  *
272  *
273  * \section zlp Zero length packets
274  *
275  * - libusbx is able to send a packet of zero length to an endpoint simply by
276  * submitting a transfer of zero length.
277  * - The \ref libusb_transfer_flags::LIBUSB_TRANSFER_ADD_ZERO_PACKET
278  * "LIBUSB_TRANSFER_ADD_ZERO_PACKET" flag is currently only supported on Linux.
279  */
280
281 /**
282  * \page contexts Contexts
283  *
284  * It is possible that libusbx may be used simultaneously from two independent
285  * libraries linked into the same executable. For example, if your application
286  * has a plugin-like system which allows the user to dynamically load a range
287  * of modules into your program, it is feasible that two independently
288  * developed modules may both use libusbx.
289  *
290  * libusbx is written to allow for these multiple user scenarios. The two
291  * "instances" of libusbx will not interfere: libusb_set_debug() calls
292  * from one user will not affect the same settings for other users, other
293  * users can continue using libusbx after one of them calls libusb_exit(), etc.
294  *
295  * This is made possible through libusbx's <em>context</em> concept. When you
296  * call libusb_init(), you are (optionally) given a context. You can then pass
297  * this context pointer back into future libusbx functions.
298  *
299  * In order to keep things simple for more simplistic applications, it is
300  * legal to pass NULL to all functions requiring a context pointer (as long as
301  * you're sure no other code will attempt to use libusbx from the same process).
302  * When you pass NULL, the default context will be used. The default context
303  * is created the first time a process calls libusb_init() when no other
304  * context is alive. Contexts are destroyed during libusb_exit().
305  *
306  * The default context is reference-counted and can be shared. That means that
307  * if libusb_init(NULL) is called twice within the same process, the two
308  * users end up sharing the same context. The deinitialization and freeing of
309  * the default context will only happen when the last user calls libusb_exit().
310  * In other words, the default context is created and initialized when its
311  * reference count goes from 0 to 1, and is deinitialized and destroyed when
312  * its reference count goes from 1 to 0.
313  *
314  * You may be wondering why only a subset of libusbx functions require a
315  * context pointer in their function definition. Internally, libusbx stores
316  * context pointers in other objects (e.g. libusb_device instances) and hence
317  * can infer the context from those objects.
318  */
319
320 /**
321  * @defgroup lib Library initialization/deinitialization
322  * This page details how to initialize and deinitialize libusbx. Initialization
323  * must be performed before using any libusbx functionality, and similarly you
324  * must not call any libusbx functions after deinitialization.
325  */
326
327 /**
328  * @defgroup dev Device handling and enumeration
329  * The functionality documented below is designed to help with the following
330  * operations:
331  * - Enumerating the USB devices currently attached to the system
332  * - Choosing a device to operate from your software
333  * - Opening and closing the chosen device
334  *
335  * \section nutshell In a nutshell...
336  *
337  * The description below really makes things sound more complicated than they
338  * actually are. The following sequence of function calls will be suitable
339  * for almost all scenarios and does not require you to have such a deep
340  * understanding of the resource management issues:
341  * \code
342 // discover devices
343 libusb_device **list;
344 libusb_device *found = NULL;
345 ssize_t cnt = libusb_get_device_list(NULL, &list);
346 ssize_t i = 0;
347 int err = 0;
348 if (cnt < 0)
349         error();
350
351 for (i = 0; i < cnt; i++) {
352         libusb_device *device = list[i];
353         if (is_interesting(device)) {
354                 found = device;
355                 break;
356         }
357 }
358
359 if (found) {
360         libusb_device_handle *handle;
361
362         err = libusb_open(found, &handle);
363         if (err)
364                 error();
365         // etc
366 }
367
368 libusb_free_device_list(list, 1);
369 \endcode
370  *
371  * The two important points:
372  * - You asked libusb_free_device_list() to unreference the devices (2nd
373  *   parameter)
374  * - You opened the device before freeing the list and unreferencing the
375  *   devices
376  *
377  * If you ended up with a handle, you can now proceed to perform I/O on the
378  * device.
379  *
380  * \section devshandles Devices and device handles
381  * libusbx has a concept of a USB device, represented by the
382  * \ref libusb_device opaque type. A device represents a USB device that
383  * is currently or was previously connected to the system. Using a reference
384  * to a device, you can determine certain information about the device (e.g.
385  * you can read the descriptor data).
386  *
387  * The libusb_get_device_list() function can be used to obtain a list of
388  * devices currently connected to the system. This is known as device
389  * discovery.
390  *
391  * Just because you have a reference to a device does not mean it is
392  * necessarily usable. The device may have been unplugged, you may not have
393  * permission to operate such device, or another program or driver may be
394  * using the device.
395  *
396  * When you've found a device that you'd like to operate, you must ask
397  * libusbx to open the device using the libusb_open() function. Assuming
398  * success, libusbx then returns you a <em>device handle</em>
399  * (a \ref libusb_device_handle pointer). All "real" I/O operations then
400  * operate on the handle rather than the original device pointer.
401  *
402  * \section devref Device discovery and reference counting
403  *
404  * Device discovery (i.e. calling libusb_get_device_list()) returns a
405  * freshly-allocated list of devices. The list itself must be freed when
406  * you are done with it. libusbx also needs to know when it is OK to free
407  * the contents of the list - the devices themselves.
408  *
409  * To handle these issues, libusbx provides you with two separate items:
410  * - A function to free the list itself
411  * - A reference counting system for the devices inside
412  *
413  * New devices presented by the libusb_get_device_list() function all have a
414  * reference count of 1. You can increase and decrease reference count using
415  * libusb_ref_device() and libusb_unref_device(). A device is destroyed when
416  * its reference count reaches 0.
417  *
418  * With the above information in mind, the process of opening a device can
419  * be viewed as follows:
420  * -# Discover devices using libusb_get_device_list().
421  * -# Choose the device that you want to operate, and call libusb_open().
422  * -# Unref all devices in the discovered device list.
423  * -# Free the discovered device list.
424  *
425  * The order is important - you must not unreference the device before
426  * attempting to open it, because unreferencing it may destroy the device.
427  *
428  * For convenience, the libusb_free_device_list() function includes a
429  * parameter to optionally unreference all the devices in the list before
430  * freeing the list itself. This combines steps 3 and 4 above.
431  *
432  * As an implementation detail, libusb_open() actually adds a reference to
433  * the device in question. This is because the device remains available
434  * through the handle via libusb_get_device(). The reference is deleted during
435  * libusb_close().
436  */
437
438 /** @defgroup misc Miscellaneous */
439
440 /* we traverse usbfs without knowing how many devices we are going to find.
441  * so we create this discovered_devs model which is similar to a linked-list
442  * which grows when required. it can be freed once discovery has completed,
443  * eliminating the need for a list node in the libusb_device structure
444  * itself. */
445 #define DISCOVERED_DEVICES_SIZE_STEP 8
446
447 static struct discovered_devs *discovered_devs_alloc(void)
448 {
449         struct discovered_devs *ret =
450                 malloc(sizeof(*ret) + (sizeof(void *) * DISCOVERED_DEVICES_SIZE_STEP));
451
452         if (ret) {
453                 ret->len = 0;
454                 ret->capacity = DISCOVERED_DEVICES_SIZE_STEP;
455         }
456         return ret;
457 }
458
459 /* append a device to the discovered devices collection. may realloc itself,
460  * returning new discdevs. returns NULL on realloc failure. */
461 struct discovered_devs *discovered_devs_append(
462         struct discovered_devs *discdevs, struct libusb_device *dev)
463 {
464         size_t len = discdevs->len;
465         size_t capacity;
466
467         /* if there is space, just append the device */
468         if (len < discdevs->capacity) {
469                 discdevs->devices[len] = libusb_ref_device(dev);
470                 discdevs->len++;
471                 return discdevs;
472         }
473
474         /* exceeded capacity, need to grow */
475         usbi_dbg("need to increase capacity");
476         capacity = discdevs->capacity + DISCOVERED_DEVICES_SIZE_STEP;
477         discdevs = usbi_reallocf(discdevs,
478                 sizeof(*discdevs) + (sizeof(void *) * capacity));
479         if (discdevs) {
480                 discdevs->capacity = capacity;
481                 discdevs->devices[len] = libusb_ref_device(dev);
482                 discdevs->len++;
483         }
484
485         return discdevs;
486 }
487
488 static void discovered_devs_free(struct discovered_devs *discdevs)
489 {
490         size_t i;
491
492         for (i = 0; i < discdevs->len; i++)
493                 libusb_unref_device(discdevs->devices[i]);
494
495         free(discdevs);
496 }
497
498 /* Allocate a new device with a specific session ID. The returned device has
499  * a reference count of 1. */
500 struct libusb_device *usbi_alloc_device(struct libusb_context *ctx,
501         unsigned long session_id)
502 {
503         size_t priv_size = usbi_backend->device_priv_size;
504         struct libusb_device *dev = calloc(1, sizeof(*dev) + priv_size);
505         int r;
506
507         if (!dev)
508                 return NULL;
509
510         r = usbi_mutex_init(&dev->lock, NULL);
511         if (r) {
512                 free(dev);
513                 return NULL;
514         }
515
516         dev->ctx = ctx;
517         dev->refcnt = 1;
518         dev->session_data = session_id;
519         dev->speed = LIBUSB_SPEED_UNKNOWN;
520         memset(&dev->os_priv, 0, priv_size);
521
522         usbi_mutex_lock(&ctx->usb_devs_lock);
523         list_add(&dev->list, &ctx->usb_devs);
524         usbi_mutex_unlock(&ctx->usb_devs_lock);
525         return dev;
526 }
527
528 /* Perform some final sanity checks on a newly discovered device. If this
529  * function fails (negative return code), the device should not be added
530  * to the discovered device list. */
531 int usbi_sanitize_device(struct libusb_device *dev)
532 {
533         int r;
534         unsigned char raw_desc[DEVICE_DESC_LENGTH];
535         uint8_t num_configurations;
536         int host_endian;
537
538         r = usbi_backend->get_device_descriptor(dev, raw_desc, &host_endian);
539         if (r < 0)
540                 return r;
541
542         num_configurations = raw_desc[DEVICE_DESC_LENGTH - 1];
543         if (num_configurations > USB_MAXCONFIG) {
544                 usbi_err(DEVICE_CTX(dev), "too many configurations");
545                 return LIBUSB_ERROR_IO;
546         } else if (0 == num_configurations)
547                 usbi_dbg("zero configurations, maybe an unauthorized device");
548
549         dev->num_configurations = num_configurations;
550         return 0;
551 }
552
553 /* Examine libusbx's internal list of known devices, looking for one with
554  * a specific session ID. Returns the matching device if it was found, and
555  * NULL otherwise. */
556 struct libusb_device *usbi_get_device_by_session_id(struct libusb_context *ctx,
557         unsigned long session_id)
558 {
559         struct libusb_device *dev;
560         struct libusb_device *ret = NULL;
561
562         usbi_mutex_lock(&ctx->usb_devs_lock);
563         list_for_each_entry(dev, &ctx->usb_devs, list, struct libusb_device)
564                 if (dev->session_data == session_id) {
565                         ret = dev;
566                         break;
567                 }
568         usbi_mutex_unlock(&ctx->usb_devs_lock);
569
570         return ret;
571 }
572
573 /** @ingroup dev
574  * Returns a list of USB devices currently attached to the system. This is
575  * your entry point into finding a USB device to operate.
576  *
577  * You are expected to unreference all the devices when you are done with
578  * them, and then free the list with libusb_free_device_list(). Note that
579  * libusb_free_device_list() can unref all the devices for you. Be careful
580  * not to unreference a device you are about to open until after you have
581  * opened it.
582  *
583  * This return value of this function indicates the number of devices in
584  * the resultant list. The list is actually one element larger, as it is
585  * NULL-terminated.
586  *
587  * \param ctx the context to operate on, or NULL for the default context
588  * \param list output location for a list of devices. Must be later freed with
589  * libusb_free_device_list().
590  * \returns the number of devices in the outputted list, or any
591  * \ref libusb_error according to errors encountered by the backend.
592  */
593 ssize_t API_EXPORTED libusb_get_device_list(libusb_context *ctx,
594         libusb_device ***list)
595 {
596         struct discovered_devs *discdevs = discovered_devs_alloc();
597         struct libusb_device **ret;
598         int r = 0;
599         ssize_t i, len;
600         USBI_GET_CONTEXT(ctx);
601         usbi_dbg("");
602
603         if (!discdevs)
604                 return LIBUSB_ERROR_NO_MEM;
605
606         r = usbi_backend->get_device_list(ctx, &discdevs);
607         if (r < 0) {
608                 len = r;
609                 goto out;
610         }
611
612         /* convert discovered_devs into a list */
613         len = discdevs->len;
614         ret = calloc(len + 1, sizeof(struct libusb_device *));
615         if (!ret) {
616                 len = LIBUSB_ERROR_NO_MEM;
617                 goto out;
618         }
619
620         ret[len] = NULL;
621         for (i = 0; i < len; i++) {
622                 struct libusb_device *dev = discdevs->devices[i];
623                 ret[i] = libusb_ref_device(dev);
624         }
625         *list = ret;
626
627 out:
628         discovered_devs_free(discdevs);
629         return len;
630 }
631
632 /** \ingroup dev
633  * Frees a list of devices previously discovered using
634  * libusb_get_device_list(). If the unref_devices parameter is set, the
635  * reference count of each device in the list is decremented by 1.
636  * \param list the list to free
637  * \param unref_devices whether to unref the devices in the list
638  */
639 void API_EXPORTED libusb_free_device_list(libusb_device **list,
640         int unref_devices)
641 {
642         if (!list)
643                 return;
644
645         if (unref_devices) {
646                 int i = 0;
647                 struct libusb_device *dev;
648
649                 while ((dev = list[i++]) != NULL)
650                         libusb_unref_device(dev);
651         }
652         free(list);
653 }
654
655 /** \ingroup dev
656  * Get the number of the bus that a device is connected to.
657  * \param dev a device
658  * \returns the bus number
659  */
660 uint8_t API_EXPORTED libusb_get_bus_number(libusb_device *dev)
661 {
662         return dev->bus_number;
663 }
664
665 /** \ingroup dev
666  * Get the number of the port that a device is connected to
667  * \param dev a device
668  * \returns the port number (0 if not available)
669  */
670 uint8_t API_EXPORTED libusb_get_port_number(libusb_device *dev)
671 {
672         return dev->port_number;
673 }
674
675 /** \ingroup dev
676  * Get the list of all port numbers from root for the specified device
677  * \param dev a device
678  * \param path the array that should contain the port numbers
679  * \param path_len the maximum length of the array. As per the USB 3.0
680  * specs, the current maximum limit for the depth is 7.
681  * \returns the number of elements filled
682  * \returns LIBUSB_ERROR_OVERFLOW if the array is too small
683  */
684 int API_EXPORTED libusb_get_port_path(libusb_context *ctx, libusb_device *dev, uint8_t* path, uint8_t path_len)
685 {
686         int i = path_len;
687         ssize_t r;
688         struct libusb_device **devs = NULL;
689
690         /* The device needs to be open, else the parents may have been destroyed */
691         r = libusb_get_device_list(ctx, &devs);
692         if (r < 0)
693                 return (int)r;
694
695         while(dev) {
696                 // HCDs can be listed as devices and would have port #0
697                 // TODO: see how the other backends want to implement HCDs as parents
698                 if (dev->port_number == 0)
699                         break;
700                 i--;
701                 if (i < 0) {
702                         libusb_free_device_list(devs, 1);
703                         return LIBUSB_ERROR_OVERFLOW;
704                 }
705                 path[i] = dev->port_number;
706                 dev = dev->parent_dev;
707         }
708         libusb_free_device_list(devs, 1);
709         memmove(path, &path[i], path_len-i);
710         return path_len-i;
711 }
712
713 /** \ingroup dev
714  * Get the the parent from the specified device [EXPERIMENTAL]
715  * \param dev a device
716  * \returns the device parent or NULL if not available
717  * You should issue a libusb_get_device_list() before calling this
718  * function and make sure that you only access the parent before issuing
719  * libusb_free_device_list(). The reason is that libusbx currently does
720  * not maintain a permanent list of device instances, and therefore can
721  * only guarantee that parents are fully instantiated within a 
722  * libusb_get_device_list() - libusb_free_device_list() block.
723  */
724 DEFAULT_VISIBILITY
725 libusb_device * LIBUSB_CALL libusb_get_parent(libusb_device *dev)
726 {
727         return dev->parent_dev;
728 }
729
730 /** \ingroup dev
731  * Get the address of the device on the bus it is connected to.
732  * \param dev a device
733  * \returns the device address
734  */
735 uint8_t API_EXPORTED libusb_get_device_address(libusb_device *dev)
736 {
737         return dev->device_address;
738 }
739
740 /** \ingroup dev
741  * Get the negotiated connection speed for a device.
742  * \param dev a device
743  * \returns a \ref libusb_speed code, where LIBUSB_SPEED_UNKNOWN means that
744  * the OS doesn't know or doesn't support returning the negotiated speed.
745  */
746 int API_EXPORTED libusb_get_device_speed(libusb_device *dev)
747 {
748         return dev->speed;
749 }
750
751 static const struct libusb_endpoint_descriptor *find_endpoint(
752         struct libusb_config_descriptor *config, unsigned char endpoint)
753 {
754         int iface_idx;
755         for (iface_idx = 0; iface_idx < config->bNumInterfaces; iface_idx++) {
756                 const struct libusb_interface *iface = &config->interface[iface_idx];
757                 int altsetting_idx;
758
759                 for (altsetting_idx = 0; altsetting_idx < iface->num_altsetting;
760                                 altsetting_idx++) {
761                         const struct libusb_interface_descriptor *altsetting
762                                 = &iface->altsetting[altsetting_idx];
763                         int ep_idx;
764
765                         for (ep_idx = 0; ep_idx < altsetting->bNumEndpoints; ep_idx++) {
766                                 const struct libusb_endpoint_descriptor *ep =
767                                         &altsetting->endpoint[ep_idx];
768                                 if (ep->bEndpointAddress == endpoint)
769                                         return ep;
770                         }
771                 }
772         }
773         return NULL;
774 }
775
776 /** \ingroup dev
777  * Convenience function to retrieve the wMaxPacketSize value for a particular
778  * endpoint in the active device configuration.
779  *
780  * This function was originally intended to be of assistance when setting up
781  * isochronous transfers, but a design mistake resulted in this function
782  * instead. It simply returns the wMaxPacketSize value without considering
783  * its contents. If you're dealing with isochronous transfers, you probably
784  * want libusb_get_max_iso_packet_size() instead.
785  *
786  * \param dev a device
787  * \param endpoint address of the endpoint in question
788  * \returns the wMaxPacketSize value
789  * \returns LIBUSB_ERROR_NOT_FOUND if the endpoint does not exist
790  * \returns LIBUSB_ERROR_OTHER on other failure
791  */
792 int API_EXPORTED libusb_get_max_packet_size(libusb_device *dev,
793         unsigned char endpoint)
794 {
795         struct libusb_config_descriptor *config;
796         const struct libusb_endpoint_descriptor *ep;
797         int r;
798
799         r = libusb_get_active_config_descriptor(dev, &config);
800         if (r < 0) {
801                 usbi_err(DEVICE_CTX(dev),
802                         "could not retrieve active config descriptor");
803                 return LIBUSB_ERROR_OTHER;
804         }
805
806         ep = find_endpoint(config, endpoint);
807         if (!ep)
808                 return LIBUSB_ERROR_NOT_FOUND;
809
810         r = ep->wMaxPacketSize;
811         libusb_free_config_descriptor(config);
812         return r;
813 }
814
815 /** \ingroup dev
816  * Calculate the maximum packet size which a specific endpoint is capable is
817  * sending or receiving in the duration of 1 microframe
818  *
819  * Only the active configution is examined. The calculation is based on the
820  * wMaxPacketSize field in the endpoint descriptor as described in section
821  * 9.6.6 in the USB 2.0 specifications.
822  *
823  * If acting on an isochronous or interrupt endpoint, this function will
824  * multiply the value found in bits 0:10 by the number of transactions per
825  * microframe (determined by bits 11:12). Otherwise, this function just
826  * returns the numeric value found in bits 0:10.
827  *
828  * This function is useful for setting up isochronous transfers, for example
829  * you might pass the return value from this function to
830  * libusb_set_iso_packet_lengths() in order to set the length field of every
831  * isochronous packet in a transfer.
832  *
833  * Since v1.0.3.
834  *
835  * \param dev a device
836  * \param endpoint address of the endpoint in question
837  * \returns the maximum packet size which can be sent/received on this endpoint
838  * \returns LIBUSB_ERROR_NOT_FOUND if the endpoint does not exist
839  * \returns LIBUSB_ERROR_OTHER on other failure
840  */
841 int API_EXPORTED libusb_get_max_iso_packet_size(libusb_device *dev,
842         unsigned char endpoint)
843 {
844         struct libusb_config_descriptor *config;
845         const struct libusb_endpoint_descriptor *ep;
846         enum libusb_transfer_type ep_type;
847         uint16_t val;
848         int r;
849
850         r = libusb_get_active_config_descriptor(dev, &config);
851         if (r < 0) {
852                 usbi_err(DEVICE_CTX(dev),
853                         "could not retrieve active config descriptor");
854                 return LIBUSB_ERROR_OTHER;
855         }
856
857         ep = find_endpoint(config, endpoint);
858         if (!ep)
859                 return LIBUSB_ERROR_NOT_FOUND;
860
861         val = ep->wMaxPacketSize;
862         ep_type = (enum libusb_transfer_type) (ep->bmAttributes & 0x3);
863         libusb_free_config_descriptor(config);
864
865         r = val & 0x07ff;
866         if (ep_type == LIBUSB_TRANSFER_TYPE_ISOCHRONOUS
867                         || ep_type == LIBUSB_TRANSFER_TYPE_INTERRUPT)
868                 r *= (1 + ((val >> 11) & 3));
869         return r;
870 }
871
872 /** \ingroup dev
873  * Increment the reference count of a device.
874  * \param dev the device to reference
875  * \returns the same device
876  */
877 DEFAULT_VISIBILITY
878 libusb_device * LIBUSB_CALL libusb_ref_device(libusb_device *dev)
879 {
880         usbi_mutex_lock(&dev->lock);
881         dev->refcnt++;
882         usbi_mutex_unlock(&dev->lock);
883         return dev;
884 }
885
886 /** \ingroup dev
887  * Decrement the reference count of a device. If the decrement operation
888  * causes the reference count to reach zero, the device shall be destroyed.
889  * \param dev the device to unreference
890  */
891 void API_EXPORTED libusb_unref_device(libusb_device *dev)
892 {
893         int refcnt;
894
895         if (!dev)
896                 return;
897
898         usbi_mutex_lock(&dev->lock);
899         refcnt = --dev->refcnt;
900         usbi_mutex_unlock(&dev->lock);
901
902         if (refcnt == 0) {
903                 usbi_dbg("destroy device %d.%d", dev->bus_number, dev->device_address);
904
905                 if (usbi_backend->destroy_device)
906                         usbi_backend->destroy_device(dev);
907
908                 usbi_mutex_lock(&dev->ctx->usb_devs_lock);
909                 list_del(&dev->list);
910                 usbi_mutex_unlock(&dev->ctx->usb_devs_lock);
911
912                 usbi_mutex_destroy(&dev->lock);
913                 free(dev);
914         }
915 }
916
917 /*
918  * Interrupt the iteration of the event handling thread, so that it picks
919  * up the new fd.
920  */
921 void usbi_fd_notification(struct libusb_context *ctx)
922 {
923         unsigned char dummy = 1;
924         ssize_t r;
925
926         if (ctx == NULL)
927                 return;
928
929         /* record that we are messing with poll fds */
930         usbi_mutex_lock(&ctx->pollfd_modify_lock);
931         ctx->pollfd_modify++;
932         usbi_mutex_unlock(&ctx->pollfd_modify_lock);
933
934         /* write some data on control pipe to interrupt event handlers */
935         r = usbi_write(ctx->ctrl_pipe[1], &dummy, sizeof(dummy));
936         if (r <= 0) {
937                 usbi_warn(ctx, "internal signalling write failed");
938                 usbi_mutex_lock(&ctx->pollfd_modify_lock);
939                 ctx->pollfd_modify--;
940                 usbi_mutex_unlock(&ctx->pollfd_modify_lock);
941                 return;
942         }
943
944         /* take event handling lock */
945         libusb_lock_events(ctx);
946
947         /* read the dummy data */
948         r = usbi_read(ctx->ctrl_pipe[0], &dummy, sizeof(dummy));
949         if (r <= 0)
950                 usbi_warn(ctx, "internal signalling read failed");
951
952         /* we're done with modifying poll fds */
953         usbi_mutex_lock(&ctx->pollfd_modify_lock);
954         ctx->pollfd_modify--;
955         usbi_mutex_unlock(&ctx->pollfd_modify_lock);
956
957         /* Release event handling lock and wake up event waiters */
958         libusb_unlock_events(ctx);
959 }
960
961 /** \ingroup dev
962  * Open a device and obtain a device handle. A handle allows you to perform
963  * I/O on the device in question.
964  *
965  * Internally, this function adds a reference to the device and makes it
966  * available to you through libusb_get_device(). This reference is removed
967  * during libusb_close().
968  *
969  * This is a non-blocking function; no requests are sent over the bus.
970  *
971  * \param dev the device to open
972  * \param handle output location for the returned device handle pointer. Only
973  * populated when the return code is 0.
974  * \returns 0 on success
975  * \returns LIBUSB_ERROR_NO_MEM on memory allocation failure
976  * \returns LIBUSB_ERROR_ACCESS if the user has insufficient permissions
977  * \returns LIBUSB_ERROR_NO_DEVICE if the device has been disconnected
978  * \returns another LIBUSB_ERROR code on other failure
979  */
980 int API_EXPORTED libusb_open(libusb_device *dev,
981         libusb_device_handle **handle)
982 {
983         struct libusb_context *ctx = DEVICE_CTX(dev);
984         struct libusb_device_handle *_handle;
985         size_t priv_size = usbi_backend->device_handle_priv_size;
986         int r;
987         usbi_dbg("open %d.%d", dev->bus_number, dev->device_address);
988
989         _handle = malloc(sizeof(*_handle) + priv_size);
990         if (!_handle)
991                 return LIBUSB_ERROR_NO_MEM;
992
993         r = usbi_mutex_init(&_handle->lock, NULL);
994         if (r) {
995                 free(_handle);
996                 return LIBUSB_ERROR_OTHER;
997         }
998
999         _handle->dev = libusb_ref_device(dev);
1000         _handle->claimed_interfaces = 0;
1001         memset(&_handle->os_priv, 0, priv_size);
1002
1003         r = usbi_backend->open(_handle);
1004         if (r < 0) {
1005                 usbi_dbg("could not open device: %s", libusb_error_name(r));
1006                 libusb_unref_device(dev);
1007                 usbi_mutex_destroy(&_handle->lock);
1008                 free(_handle);
1009                 return r;
1010         }
1011
1012         usbi_mutex_lock(&ctx->open_devs_lock);
1013         list_add(&_handle->list, &ctx->open_devs);
1014         usbi_mutex_unlock(&ctx->open_devs_lock);
1015         *handle = _handle;
1016
1017         /* At this point, we want to interrupt any existing event handlers so
1018          * that they realise the addition of the new device's poll fd. One
1019          * example when this is desirable is if the user is running a separate
1020          * dedicated libusbx events handling thread, which is running with a long
1021          * or infinite timeout. We want to interrupt that iteration of the loop,
1022          * so that it picks up the new fd, and then continues. */
1023         usbi_fd_notification(ctx);
1024
1025         return 0;
1026 }
1027
1028 /** \ingroup dev
1029  * Convenience function for finding a device with a particular
1030  * <tt>idVendor</tt>/<tt>idProduct</tt> combination. This function is intended
1031  * for those scenarios where you are using libusbx to knock up a quick test
1032  * application - it allows you to avoid calling libusb_get_device_list() and
1033  * worrying about traversing/freeing the list.
1034  *
1035  * This function has limitations and is hence not intended for use in real
1036  * applications: if multiple devices have the same IDs it will only
1037  * give you the first one, etc.
1038  *
1039  * \param ctx the context to operate on, or NULL for the default context
1040  * \param vendor_id the idVendor value to search for
1041  * \param product_id the idProduct value to search for
1042  * \returns a handle for the first found device, or NULL on error or if the
1043  * device could not be found. */
1044 DEFAULT_VISIBILITY
1045 libusb_device_handle * LIBUSB_CALL libusb_open_device_with_vid_pid(
1046         libusb_context *ctx, uint16_t vendor_id, uint16_t product_id)
1047 {
1048         struct libusb_device **devs;
1049         struct libusb_device *found = NULL;
1050         struct libusb_device *dev;
1051         struct libusb_device_handle *handle = NULL;
1052         size_t i = 0;
1053         int r;
1054
1055         if (libusb_get_device_list(ctx, &devs) < 0)
1056                 return NULL;
1057
1058         while ((dev = devs[i++]) != NULL) {
1059                 struct libusb_device_descriptor desc;
1060                 r = libusb_get_device_descriptor(dev, &desc);
1061                 if (r < 0)
1062                         goto out;
1063                 if (desc.idVendor == vendor_id && desc.idProduct == product_id) {
1064                         found = dev;
1065                         break;
1066                 }
1067         }
1068
1069         if (found) {
1070                 r = libusb_open(found, &handle);
1071                 if (r < 0)
1072                         handle = NULL;
1073         }
1074
1075 out:
1076         libusb_free_device_list(devs, 1);
1077         return handle;
1078 }
1079
1080 static void do_close(struct libusb_context *ctx,
1081         struct libusb_device_handle *dev_handle)
1082 {
1083         struct usbi_transfer *itransfer;
1084         struct usbi_transfer *tmp;
1085
1086         libusb_lock_events(ctx);
1087
1088         /* remove any transfers in flight that are for this device */
1089         usbi_mutex_lock(&ctx->flying_transfers_lock);
1090
1091         /* safe iteration because transfers may be being deleted */
1092         list_for_each_entry_safe(itransfer, tmp, &ctx->flying_transfers, list, struct usbi_transfer) {
1093                 struct libusb_transfer *transfer =
1094                         USBI_TRANSFER_TO_LIBUSB_TRANSFER(itransfer);
1095
1096                 if (transfer->dev_handle != dev_handle)
1097                         continue;
1098
1099                 if (!(itransfer->flags & USBI_TRANSFER_DEVICE_DISAPPEARED)) {
1100                         usbi_err(ctx, "Device handle closed while transfer was still being processed, but the device is still connected as far as we know");
1101
1102                         if (itransfer->flags & USBI_TRANSFER_CANCELLING)
1103                                 usbi_warn(ctx, "A cancellation for an in-flight transfer hasn't completed but closing the device handle");
1104                         else
1105                                 usbi_err(ctx, "A cancellation hasn't even been scheduled on the transfer for which the device is closing");
1106                 }
1107
1108                 /* remove from the list of in-flight transfers and make sure
1109                  * we don't accidentally use the device handle in the future
1110                  * (or that such accesses will be easily caught and identified as a crash)
1111                  */
1112                 usbi_mutex_lock(&itransfer->lock);
1113                 list_del(&itransfer->list);
1114                 transfer->dev_handle = NULL;
1115                 usbi_mutex_unlock(&itransfer->lock);
1116
1117                 /* it is up to the user to free up the actual transfer struct.  this is
1118                  * just making sure that we don't attempt to process the transfer after
1119                  * the device handle is invalid
1120                  */
1121                 usbi_dbg("Removed transfer %p from the in-flight list because device handle %p closed",
1122                          transfer, dev_handle);
1123         }
1124         usbi_mutex_unlock(&ctx->flying_transfers_lock);
1125
1126         libusb_unlock_events(ctx);
1127
1128         usbi_mutex_lock(&ctx->open_devs_lock);
1129         list_del(&dev_handle->list);
1130         usbi_mutex_unlock(&ctx->open_devs_lock);
1131
1132         usbi_backend->close(dev_handle);
1133         libusb_unref_device(dev_handle->dev);
1134         usbi_mutex_destroy(&dev_handle->lock);
1135         free(dev_handle);
1136 }
1137
1138 /** \ingroup dev
1139  * Close a device handle. Should be called on all open handles before your
1140  * application exits.
1141  *
1142  * Internally, this function destroys the reference that was added by
1143  * libusb_open() on the given device.
1144  *
1145  * This is a non-blocking function; no requests are sent over the bus.
1146  *
1147  * \param dev_handle the handle to close
1148  */
1149 void API_EXPORTED libusb_close(libusb_device_handle *dev_handle)
1150 {
1151         struct libusb_context *ctx;
1152         unsigned char dummy = 1;
1153         ssize_t r;
1154
1155         if (!dev_handle)
1156                 return;
1157         usbi_dbg("");
1158
1159         ctx = HANDLE_CTX(dev_handle);
1160
1161         /* Similarly to libusb_open(), we want to interrupt all event handlers
1162          * at this point. More importantly, we want to perform the actual close of
1163          * the device while holding the event handling lock (preventing any other
1164          * thread from doing event handling) because we will be removing a file
1165          * descriptor from the polling loop. */
1166
1167         /* record that we are messing with poll fds */
1168         usbi_mutex_lock(&ctx->pollfd_modify_lock);
1169         ctx->pollfd_modify++;
1170         usbi_mutex_unlock(&ctx->pollfd_modify_lock);
1171
1172         /* write some data on control pipe to interrupt event handlers */
1173         r = usbi_write(ctx->ctrl_pipe[1], &dummy, sizeof(dummy));
1174         if (r <= 0) {
1175                 usbi_warn(ctx, "internal signalling write failed, closing anyway");
1176                 do_close(ctx, dev_handle);
1177                 usbi_mutex_lock(&ctx->pollfd_modify_lock);
1178                 ctx->pollfd_modify--;
1179                 usbi_mutex_unlock(&ctx->pollfd_modify_lock);
1180                 return;
1181         }
1182
1183         /* take event handling lock */
1184         libusb_lock_events(ctx);
1185
1186         /* read the dummy data */
1187         r = usbi_read(ctx->ctrl_pipe[0], &dummy, sizeof(dummy));
1188         if (r <= 0)
1189                 usbi_warn(ctx, "internal signalling read failed, closing anyway");
1190
1191         /* Close the device */
1192         do_close(ctx, dev_handle);
1193
1194         /* we're done with modifying poll fds */
1195         usbi_mutex_lock(&ctx->pollfd_modify_lock);
1196         ctx->pollfd_modify--;
1197         usbi_mutex_unlock(&ctx->pollfd_modify_lock);
1198
1199         /* Release event handling lock and wake up event waiters */
1200         libusb_unlock_events(ctx);
1201 }
1202
1203 /** \ingroup dev
1204  * Get the underlying device for a handle. This function does not modify
1205  * the reference count of the returned device, so do not feel compelled to
1206  * unreference it when you are done.
1207  * \param dev_handle a device handle
1208  * \returns the underlying device
1209  */
1210 DEFAULT_VISIBILITY
1211 libusb_device * LIBUSB_CALL libusb_get_device(libusb_device_handle *dev_handle)
1212 {
1213         return dev_handle->dev;
1214 }
1215
1216 /** \ingroup dev
1217  * Determine the bConfigurationValue of the currently active configuration.
1218  *
1219  * You could formulate your own control request to obtain this information,
1220  * but this function has the advantage that it may be able to retrieve the
1221  * information from operating system caches (no I/O involved).
1222  *
1223  * If the OS does not cache this information, then this function will block
1224  * while a control transfer is submitted to retrieve the information.
1225  *
1226  * This function will return a value of 0 in the <tt>config</tt> output
1227  * parameter if the device is in unconfigured state.
1228  *
1229  * \param dev a device handle
1230  * \param config output location for the bConfigurationValue of the active
1231  * configuration (only valid for return code 0)
1232  * \returns 0 on success
1233  * \returns LIBUSB_ERROR_NO_DEVICE if the device has been disconnected
1234  * \returns another LIBUSB_ERROR code on other failure
1235  */
1236 int API_EXPORTED libusb_get_configuration(libusb_device_handle *dev,
1237         int *config)
1238 {
1239         int r = LIBUSB_ERROR_NOT_SUPPORTED;
1240
1241         usbi_dbg("");
1242         if (usbi_backend->get_configuration)
1243                 r = usbi_backend->get_configuration(dev, config);
1244
1245         if (r == LIBUSB_ERROR_NOT_SUPPORTED) {
1246                 uint8_t tmp = 0;
1247                 usbi_dbg("falling back to control message");
1248                 r = libusb_control_transfer(dev, LIBUSB_ENDPOINT_IN,
1249                         LIBUSB_REQUEST_GET_CONFIGURATION, 0, 0, &tmp, 1, 1000);
1250                 if (r == 0) {
1251                         usbi_err(HANDLE_CTX(dev), "zero bytes returned in ctrl transfer?");
1252                         r = LIBUSB_ERROR_IO;
1253                 } else if (r == 1) {
1254                         r = 0;
1255                         *config = tmp;
1256                 } else {
1257                         usbi_dbg("control failed, error %d", r);
1258                 }
1259         }
1260
1261         if (r == 0)
1262                 usbi_dbg("active config %d", *config);
1263
1264         return r;
1265 }
1266
1267 /** \ingroup dev
1268  * Set the active configuration for a device.
1269  *
1270  * The operating system may or may not have already set an active
1271  * configuration on the device. It is up to your application to ensure the
1272  * correct configuration is selected before you attempt to claim interfaces
1273  * and perform other operations.
1274  *
1275  * If you call this function on a device already configured with the selected
1276  * configuration, then this function will act as a lightweight device reset:
1277  * it will issue a SET_CONFIGURATION request using the current configuration,
1278  * causing most USB-related device state to be reset (altsetting reset to zero,
1279  * endpoint halts cleared, toggles reset).
1280  *
1281  * You cannot change/reset configuration if your application has claimed
1282  * interfaces - you should free them with libusb_release_interface() first.
1283  * You cannot change/reset configuration if other applications or drivers have
1284  * claimed interfaces.
1285  *
1286  * A configuration value of -1 will put the device in unconfigured state.
1287  * The USB specifications state that a configuration value of 0 does this,
1288  * however buggy devices exist which actually have a configuration 0.
1289  *
1290  * You should always use this function rather than formulating your own
1291  * SET_CONFIGURATION control request. This is because the underlying operating
1292  * system needs to know when such changes happen.
1293  *
1294  * This is a blocking function.
1295  *
1296  * \param dev a device handle
1297  * \param configuration the bConfigurationValue of the configuration you
1298  * wish to activate, or -1 if you wish to put the device in unconfigured state
1299  * \returns 0 on success
1300  * \returns LIBUSB_ERROR_NOT_FOUND if the requested configuration does not exist
1301  * \returns LIBUSB_ERROR_BUSY if interfaces are currently claimed
1302  * \returns LIBUSB_ERROR_NO_DEVICE if the device has been disconnected
1303  * \returns another LIBUSB_ERROR code on other failure
1304  */
1305 int API_EXPORTED libusb_set_configuration(libusb_device_handle *dev,
1306         int configuration)
1307 {
1308         usbi_dbg("configuration %d", configuration);
1309         return usbi_backend->set_configuration(dev, configuration);
1310 }
1311
1312 /** \ingroup dev
1313  * Claim an interface on a given device handle. You must claim the interface
1314  * you wish to use before you can perform I/O on any of its endpoints.
1315  *
1316  * It is legal to attempt to claim an already-claimed interface, in which
1317  * case libusbx just returns 0 without doing anything.
1318  *
1319  * Claiming of interfaces is a purely logical operation; it does not cause
1320  * any requests to be sent over the bus. Interface claiming is used to
1321  * instruct the underlying operating system that your application wishes
1322  * to take ownership of the interface.
1323  *
1324  * This is a non-blocking function.
1325  *
1326  * \param dev a device handle
1327  * \param interface_number the <tt>bInterfaceNumber</tt> of the interface you
1328  * wish to claim
1329  * \returns 0 on success
1330  * \returns LIBUSB_ERROR_NOT_FOUND if the requested interface does not exist
1331  * \returns LIBUSB_ERROR_BUSY if another program or driver has claimed the
1332  * interface
1333  * \returns LIBUSB_ERROR_NO_DEVICE if the device has been disconnected
1334  * \returns a LIBUSB_ERROR code on other failure
1335  */
1336 int API_EXPORTED libusb_claim_interface(libusb_device_handle *dev,
1337         int interface_number)
1338 {
1339         int r = 0;
1340
1341         usbi_dbg("interface %d", interface_number);
1342         if (interface_number >= USB_MAXINTERFACES)
1343                 return LIBUSB_ERROR_INVALID_PARAM;
1344
1345         usbi_mutex_lock(&dev->lock);
1346         if (dev->claimed_interfaces & (1 << interface_number))
1347                 goto out;
1348
1349         r = usbi_backend->claim_interface(dev, interface_number);
1350         if (r == 0)
1351                 dev->claimed_interfaces |= 1 << interface_number;
1352
1353 out:
1354         usbi_mutex_unlock(&dev->lock);
1355         return r;
1356 }
1357
1358 /** \ingroup dev
1359  * Release an interface previously claimed with libusb_claim_interface(). You
1360  * should release all claimed interfaces before closing a device handle.
1361  *
1362  * This is a blocking function. A SET_INTERFACE control request will be sent
1363  * to the device, resetting interface state to the first alternate setting.
1364  *
1365  * \param dev a device handle
1366  * \param interface_number the <tt>bInterfaceNumber</tt> of the
1367  * previously-claimed interface
1368  * \returns 0 on success
1369  * \returns LIBUSB_ERROR_NOT_FOUND if the interface was not claimed
1370  * \returns LIBUSB_ERROR_NO_DEVICE if the device has been disconnected
1371  * \returns another LIBUSB_ERROR code on other failure
1372  */
1373 int API_EXPORTED libusb_release_interface(libusb_device_handle *dev,
1374         int interface_number)
1375 {
1376         int r;
1377
1378         usbi_dbg("interface %d", interface_number);
1379         if (interface_number >= USB_MAXINTERFACES)
1380                 return LIBUSB_ERROR_INVALID_PARAM;
1381
1382         usbi_mutex_lock(&dev->lock);
1383         if (!(dev->claimed_interfaces & (1 << interface_number))) {
1384                 r = LIBUSB_ERROR_NOT_FOUND;
1385                 goto out;
1386         }
1387
1388         r = usbi_backend->release_interface(dev, interface_number);
1389         if (r == 0)
1390                 dev->claimed_interfaces &= ~(1 << interface_number);
1391
1392 out:
1393         usbi_mutex_unlock(&dev->lock);
1394         return r;
1395 }
1396
1397 /** \ingroup dev
1398  * Activate an alternate setting for an interface. The interface must have
1399  * been previously claimed with libusb_claim_interface().
1400  *
1401  * You should always use this function rather than formulating your own
1402  * SET_INTERFACE control request. This is because the underlying operating
1403  * system needs to know when such changes happen.
1404  *
1405  * This is a blocking function.
1406  *
1407  * \param dev a device handle
1408  * \param interface_number the <tt>bInterfaceNumber</tt> of the
1409  * previously-claimed interface
1410  * \param alternate_setting the <tt>bAlternateSetting</tt> of the alternate
1411  * setting to activate
1412  * \returns 0 on success
1413  * \returns LIBUSB_ERROR_NOT_FOUND if the interface was not claimed, or the
1414  * requested alternate setting does not exist
1415  * \returns LIBUSB_ERROR_NO_DEVICE if the device has been disconnected
1416  * \returns another LIBUSB_ERROR code on other failure
1417  */
1418 int API_EXPORTED libusb_set_interface_alt_setting(libusb_device_handle *dev,
1419         int interface_number, int alternate_setting)
1420 {
1421         usbi_dbg("interface %d altsetting %d",
1422                 interface_number, alternate_setting);
1423         if (interface_number >= USB_MAXINTERFACES)
1424                 return LIBUSB_ERROR_INVALID_PARAM;
1425
1426         usbi_mutex_lock(&dev->lock);
1427         if (!(dev->claimed_interfaces & (1 << interface_number))) {
1428                 usbi_mutex_unlock(&dev->lock);
1429                 return LIBUSB_ERROR_NOT_FOUND;
1430         }
1431         usbi_mutex_unlock(&dev->lock);
1432
1433         return usbi_backend->set_interface_altsetting(dev, interface_number,
1434                 alternate_setting);
1435 }
1436
1437 /** \ingroup dev
1438  * Clear the halt/stall condition for an endpoint. Endpoints with halt status
1439  * are unable to receive or transmit data until the halt condition is stalled.
1440  *
1441  * You should cancel all pending transfers before attempting to clear the halt
1442  * condition.
1443  *
1444  * This is a blocking function.
1445  *
1446  * \param dev a device handle
1447  * \param endpoint the endpoint to clear halt status
1448  * \returns 0 on success
1449  * \returns LIBUSB_ERROR_NOT_FOUND if the endpoint does not exist
1450  * \returns LIBUSB_ERROR_NO_DEVICE if the device has been disconnected
1451  * \returns another LIBUSB_ERROR code on other failure
1452  */
1453 int API_EXPORTED libusb_clear_halt(libusb_device_handle *dev,
1454         unsigned char endpoint)
1455 {
1456         usbi_dbg("endpoint %x", endpoint);
1457         return usbi_backend->clear_halt(dev, endpoint);
1458 }
1459
1460 /** \ingroup dev
1461  * Perform a USB port reset to reinitialize a device. The system will attempt
1462  * to restore the previous configuration and alternate settings after the
1463  * reset has completed.
1464  *
1465  * If the reset fails, the descriptors change, or the previous state cannot be
1466  * restored, the device will appear to be disconnected and reconnected. This
1467  * means that the device handle is no longer valid (you should close it) and
1468  * rediscover the device. A return code of LIBUSB_ERROR_NOT_FOUND indicates
1469  * when this is the case.
1470  *
1471  * This is a blocking function which usually incurs a noticeable delay.
1472  *
1473  * \param dev a handle of the device to reset
1474  * \returns 0 on success
1475  * \returns LIBUSB_ERROR_NOT_FOUND if re-enumeration is required, or if the
1476  * device has been disconnected
1477  * \returns another LIBUSB_ERROR code on other failure
1478  */
1479 int API_EXPORTED libusb_reset_device(libusb_device_handle *dev)
1480 {
1481         usbi_dbg("");
1482         return usbi_backend->reset_device(dev);
1483 }
1484
1485 /** \ingroup dev
1486  * Determine if a kernel driver is active on an interface. If a kernel driver
1487  * is active, you cannot claim the interface, and libusbx will be unable to
1488  * perform I/O.
1489  *
1490  * This functionality is not available on Windows.
1491  *
1492  * \param dev a device handle
1493  * \param interface_number the interface to check
1494  * \returns 0 if no kernel driver is active
1495  * \returns 1 if a kernel driver is active
1496  * \returns LIBUSB_ERROR_NO_DEVICE if the device has been disconnected
1497  * \returns LIBUSB_ERROR_NOT_SUPPORTED on platforms where the functionality
1498  * is not available
1499  * \returns another LIBUSB_ERROR code on other failure
1500  * \see libusb_detach_kernel_driver()
1501  */
1502 int API_EXPORTED libusb_kernel_driver_active(libusb_device_handle *dev,
1503         int interface_number)
1504 {
1505         usbi_dbg("interface %d", interface_number);
1506         if (usbi_backend->kernel_driver_active)
1507                 return usbi_backend->kernel_driver_active(dev, interface_number);
1508         else
1509                 return LIBUSB_ERROR_NOT_SUPPORTED;
1510 }
1511
1512 /** \ingroup dev
1513  * Detach a kernel driver from an interface. If successful, you will then be
1514  * able to claim the interface and perform I/O.
1515  *
1516  * This functionality is not available on Darwin or Windows.
1517  *
1518  * Note that libusbx itself also talks to the device through a special kernel
1519  * driver, if this driver is already attached to the device, this call will
1520  * not detach it and return LIBUSB_ERROR_NOT_FOUND.
1521  *
1522  * \param dev a device handle
1523  * \param interface_number the interface to detach the driver from
1524  * \returns 0 on success
1525  * \returns LIBUSB_ERROR_NOT_FOUND if no kernel driver was active
1526  * \returns LIBUSB_ERROR_INVALID_PARAM if the interface does not exist
1527  * \returns LIBUSB_ERROR_NO_DEVICE if the device has been disconnected
1528  * \returns LIBUSB_ERROR_NOT_SUPPORTED on platforms where the functionality
1529  * is not available
1530  * \returns another LIBUSB_ERROR code on other failure
1531  * \see libusb_kernel_driver_active()
1532  */
1533 int API_EXPORTED libusb_detach_kernel_driver(libusb_device_handle *dev,
1534         int interface_number)
1535 {
1536         usbi_dbg("interface %d", interface_number);
1537         if (usbi_backend->detach_kernel_driver)
1538                 return usbi_backend->detach_kernel_driver(dev, interface_number);
1539         else
1540                 return LIBUSB_ERROR_NOT_SUPPORTED;
1541 }
1542
1543 /** \ingroup dev
1544  * Re-attach an interface's kernel driver, which was previously detached
1545  * using libusb_detach_kernel_driver(). This call is only effective on
1546  * Linux and returns LIBUSB_ERROR_NOT_SUPPORTED on all other platforms.
1547  *
1548  * This functionality is not available on Darwin or Windows.
1549  *
1550  * \param dev a device handle
1551  * \param interface_number the interface to attach the driver from
1552  * \returns 0 on success
1553  * \returns LIBUSB_ERROR_NOT_FOUND if no kernel driver was active
1554  * \returns LIBUSB_ERROR_INVALID_PARAM if the interface does not exist
1555  * \returns LIBUSB_ERROR_NO_DEVICE if the device has been disconnected
1556  * \returns LIBUSB_ERROR_NOT_SUPPORTED on platforms where the functionality
1557  * is not available
1558  * \returns LIBUSB_ERROR_BUSY if the driver cannot be attached because the
1559  * interface is claimed by a program or driver
1560  * \returns another LIBUSB_ERROR code on other failure
1561  * \see libusb_kernel_driver_active()
1562  */
1563 int API_EXPORTED libusb_attach_kernel_driver(libusb_device_handle *dev,
1564         int interface_number)
1565 {
1566         usbi_dbg("interface %d", interface_number);
1567         if (usbi_backend->attach_kernel_driver)
1568                 return usbi_backend->attach_kernel_driver(dev, interface_number);
1569         else
1570                 return LIBUSB_ERROR_NOT_SUPPORTED;
1571 }
1572
1573 /** \ingroup lib
1574  * Set log message verbosity.
1575  *
1576  * The default level is LIBUSB_LOG_LEVEL_NONE, which means no messages are ever
1577  * printed. If you choose to increase the message verbosity level, ensure
1578  * that your application does not close the stdout/stderr file descriptors.
1579  *
1580  * You are advised to use level LIBUSB_LOG_LEVEL_WARNING. libusbx is conservative
1581  * with its message logging and most of the time, will only log messages that
1582  * explain error conditions and other oddities. This will help you debug
1583  * your software.
1584  *
1585  * If the LIBUSB_DEBUG environment variable was set when libusbx was
1586  * initialized, this function does nothing: the message verbosity is fixed
1587  * to the value in the environment variable.
1588  *
1589  * If libusbx was compiled without any message logging, this function does
1590  * nothing: you'll never get any messages.
1591  *
1592  * If libusbx was compiled with verbose debug message logging, this function
1593  * does nothing: you'll always get messages from all levels.
1594  *
1595  * \param ctx the context to operate on, or NULL for the default context
1596  * \param level debug level to set
1597  */
1598 void API_EXPORTED libusb_set_debug(libusb_context *ctx, int level)
1599 {
1600         USBI_GET_CONTEXT(ctx);
1601         if (!ctx->debug_fixed)
1602                 ctx->debug = level;
1603 }
1604
1605 /** \ingroup lib
1606  * Initialize libusb. This function must be called before calling any other
1607  * libusbx function.
1608  *
1609  * If you do not provide an output location for a context pointer, a default
1610  * context will be created. If there was already a default context, it will
1611  * be reused (and nothing will be initialized/reinitialized).
1612  *
1613  * \param context Optional output location for context pointer.
1614  * Only valid on return code 0.
1615  * \returns 0 on success, or a LIBUSB_ERROR code on failure
1616  * \see contexts
1617  */
1618 int API_EXPORTED libusb_init(libusb_context **context)
1619 {
1620         char *dbg;
1621         struct libusb_context *ctx;
1622         int r = 0;
1623
1624         usbi_mutex_static_lock(&default_context_lock);
1625
1626         if (!timestamp_origin.tv_sec) {
1627                 usbi_gettimeofday(&timestamp_origin, NULL);
1628         }
1629
1630         if (!context && usbi_default_context) {
1631                 usbi_dbg("reusing default context");
1632                 default_context_refcnt++;
1633                 usbi_mutex_static_unlock(&default_context_lock);
1634                 return 0;
1635         }
1636
1637         ctx = calloc(1, sizeof(*ctx));
1638         if (!ctx) {
1639                 r = LIBUSB_ERROR_NO_MEM;
1640                 goto err_unlock;
1641         }
1642
1643 #ifdef ENABLE_DEBUG_LOGGING
1644         ctx->debug = LIBUSB_LOG_LEVEL_DEBUG;
1645 #endif
1646
1647         dbg = getenv("LIBUSB_DEBUG");
1648         if (dbg) {
1649                 ctx->debug = atoi(dbg);
1650                 if (ctx->debug)
1651                         ctx->debug_fixed = 1;
1652         }
1653
1654         /* default context should be initialized before calling usbi_dbg */
1655         if (!usbi_default_context) {
1656                 usbi_default_context = ctx;
1657                 usbi_dbg("created default context");
1658         }
1659
1660         usbi_dbg("libusbx v%d.%d.%d.%d", libusb_version_internal.major, libusb_version_internal.minor,
1661                 libusb_version_internal.micro, libusb_version_internal.nano);
1662
1663         if (usbi_backend->init) {
1664                 r = usbi_backend->init(ctx);
1665                 if (r)
1666                         goto err_free_ctx;
1667         }
1668
1669         usbi_mutex_init(&ctx->usb_devs_lock, NULL);
1670         usbi_mutex_init(&ctx->open_devs_lock, NULL);
1671         list_init(&ctx->usb_devs);
1672         list_init(&ctx->open_devs);
1673
1674         r = usbi_io_init(ctx);
1675         if (r < 0) {
1676                 if (usbi_backend->exit)
1677                         usbi_backend->exit();
1678                 goto err_destroy_mutex;
1679         }
1680
1681         if (context) {
1682                 *context = ctx;
1683         } else if (!usbi_default_context) {
1684                 usbi_dbg("created default context");
1685                 usbi_default_context = ctx;
1686                 default_context_refcnt++;
1687         }
1688         usbi_mutex_static_unlock(&default_context_lock);
1689
1690         return 0;
1691
1692 err_destroy_mutex:
1693         usbi_mutex_destroy(&ctx->open_devs_lock);
1694         usbi_mutex_destroy(&ctx->usb_devs_lock);
1695 err_free_ctx:
1696         free(ctx);
1697 err_unlock:
1698         usbi_mutex_static_unlock(&default_context_lock);
1699         return r;
1700 }
1701
1702 /** \ingroup lib
1703  * Deinitialize libusb. Should be called after closing all open devices and
1704  * before your application terminates.
1705  * \param ctx the context to deinitialize, or NULL for the default context
1706  */
1707 void API_EXPORTED libusb_exit(struct libusb_context *ctx)
1708 {
1709         usbi_dbg("");
1710         USBI_GET_CONTEXT(ctx);
1711
1712         /* if working with default context, only actually do the deinitialization
1713          * if we're the last user */
1714         if (ctx == usbi_default_context) {
1715                 usbi_mutex_static_lock(&default_context_lock);
1716                 if (--default_context_refcnt > 0) {
1717                         usbi_dbg("not destroying default context");
1718                         usbi_mutex_static_unlock(&default_context_lock);
1719                         return;
1720                 }
1721                 usbi_dbg("destroying default context");
1722                 usbi_default_context = NULL;
1723                 usbi_mutex_static_unlock(&default_context_lock);
1724         }
1725
1726         /* a little sanity check. doesn't bother with open_devs locking because
1727          * unless there is an application bug, nobody will be accessing this. */
1728         if (!list_empty(&ctx->open_devs))
1729                 usbi_warn(ctx, "application left some devices open");
1730
1731         usbi_io_exit(ctx);
1732         if (usbi_backend->exit)
1733                 usbi_backend->exit();
1734
1735         usbi_mutex_destroy(&ctx->open_devs_lock);
1736         usbi_mutex_destroy(&ctx->usb_devs_lock);
1737         free(ctx);
1738 }
1739
1740 /** \ingroup misc
1741  * Check at runtime if the loaded library has a given capability.
1742  *
1743  * \param capability the \ref libusb_capability to check for
1744  * \returns 1 if the running library has the capability, 0 otherwise
1745  */
1746 int API_EXPORTED libusb_has_capability(uint32_t capability)
1747 {
1748         switch (capability) {
1749         case LIBUSB_CAP_HAS_CAPABILITY:
1750                 return 1;
1751         }
1752         return 0;
1753 }
1754
1755 /* this is defined in libusbi.h if needed */
1756 #ifdef LIBUSB_GETTIMEOFDAY_WIN32
1757 /*
1758  * gettimeofday
1759  * Implementation according to:
1760  * The Open Group Base Specifications Issue 6
1761  * IEEE Std 1003.1, 2004 Edition
1762  */
1763
1764 /*
1765  *  THIS SOFTWARE IS NOT COPYRIGHTED
1766  *
1767  *  This source code is offered for use in the public domain. You may
1768  *  use, modify or distribute it freely.
1769  *
1770  *  This code is distributed in the hope that it will be useful but
1771  *  WITHOUT ANY WARRANTY. ALL WARRANTIES, EXPRESS OR IMPLIED ARE HEREBY
1772  *  DISCLAIMED. This includes but is not limited to warranties of
1773  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
1774  *
1775  *  Contributed by:
1776  *  Danny Smith <dannysmith@users.sourceforge.net>
1777  */
1778
1779 /* Offset between 1/1/1601 and 1/1/1970 in 100 nanosec units */
1780 #define _W32_FT_OFFSET (116444736000000000)
1781
1782 int usbi_gettimeofday(struct timeval *tp, void *tzp)
1783 {
1784         union {
1785                 unsigned __int64 ns100; /* Time since 1 Jan 1601, in 100ns units */
1786                 FILETIME ft;
1787         } _now;
1788         UNUSED(tzp);
1789
1790         if(tp) {
1791                 GetSystemTimeAsFileTime (&_now.ft);
1792                 tp->tv_usec=(long)((_now.ns100 / 10) % 1000000 );
1793                 tp->tv_sec= (long)((_now.ns100 - _W32_FT_OFFSET) / 10000000);
1794         }
1795         /* Always return 0 as per Open Group Base Specifications Issue 6.
1796            Do not set errno on error.  */
1797         return 0;
1798 }
1799 #endif
1800
1801 void usbi_log_v(struct libusb_context *ctx, enum libusb_log_level level,
1802         const char *function, const char *format, va_list args)
1803 {
1804         const char *prefix = "";
1805         struct timeval now;
1806         int global_debug;
1807         static int has_debug_header_been_displayed = 0;
1808
1809 #ifdef ENABLE_DEBUG_LOGGING
1810         global_debug = 1;
1811         UNUSED(ctx);
1812 #else
1813         USBI_GET_CONTEXT(ctx);
1814         if (ctx == NULL)
1815                 return;
1816         global_debug = (ctx->debug == LIBUSB_LOG_LEVEL_DEBUG);
1817         if (!ctx->debug)
1818                 return;
1819         if (level == LIBUSB_LOG_LEVEL_WARNING && ctx->debug < LIBUSB_LOG_LEVEL_WARNING)
1820                 return;
1821         if (level == LIBUSB_LOG_LEVEL_INFO && ctx->debug < LIBUSB_LOG_LEVEL_INFO)
1822                 return;
1823         if (level == LIBUSB_LOG_LEVEL_DEBUG && ctx->debug < LIBUSB_LOG_LEVEL_DEBUG)
1824                 return;
1825 #endif
1826
1827         usbi_gettimeofday(&now, NULL);
1828         if ((global_debug) && (!has_debug_header_been_displayed)) {
1829                 has_debug_header_been_displayed = 1;
1830                 fprintf(stderr, "[timestamp] [threadID] facility level [function call] <message>\n");
1831                 fprintf(stderr, "--------------------------------------------------------------------------------\n");
1832         }
1833         if (now.tv_usec < timestamp_origin.tv_usec) {
1834                 now.tv_sec--;
1835                 now.tv_usec += 1000000;
1836         }
1837         now.tv_sec -= timestamp_origin.tv_sec;
1838         now.tv_usec -= timestamp_origin.tv_usec;
1839
1840         switch (level) {
1841         case LIBUSB_LOG_LEVEL_INFO:
1842                 prefix = "info";
1843                 break;
1844         case LIBUSB_LOG_LEVEL_WARNING:
1845                 prefix = "warning";
1846                 break;
1847         case LIBUSB_LOG_LEVEL_ERROR:
1848                 prefix = "error";
1849                 break;
1850         case LIBUSB_LOG_LEVEL_DEBUG:
1851                 prefix = "debug";
1852                 break;
1853         case LIBUSB_LOG_LEVEL_NONE:
1854                 break;
1855         default:
1856                 prefix = "unknown";
1857                 break;
1858         }
1859
1860         if (global_debug) {
1861                 fprintf(stderr, "[%2d.%06d] [%08x] libusbx: %s [%s] ",
1862                         (int)now.tv_sec, (int)now.tv_usec, usbi_get_tid(), prefix, function);
1863         } else {
1864                 fprintf(stderr, "libusbx: %s [%s] ", prefix, function);
1865         }
1866
1867         vfprintf(stderr, format, args);
1868
1869         fprintf(stderr, "\n");
1870 }
1871
1872 void usbi_log(struct libusb_context *ctx, enum libusb_log_level level,
1873         const char *function, const char *format, ...)
1874 {
1875         va_list args;
1876
1877         va_start (args, format);
1878         usbi_log_v(ctx, level, function, format, args);
1879         va_end (args);
1880 }
1881
1882 /** \ingroup misc
1883  * Returns a constant NULL-terminated string with the ASCII name of a libusb
1884  * error or transfer status code. The caller must not free() the returned
1885  * string.
1886  *
1887  * \param error_code The \ref libusb_error or libusb_transfer_status code to
1888  * return the name of.
1889  * \returns The error name, or the string **UNKNOWN** if the value of
1890  * error_code is not a known error / status code.
1891  */
1892 DEFAULT_VISIBILITY const char * LIBUSB_CALL libusb_error_name(int error_code)
1893 {
1894         switch (error_code) {
1895         case LIBUSB_ERROR_IO:
1896                 return "LIBUSB_ERROR_IO";
1897         case LIBUSB_ERROR_INVALID_PARAM:
1898                 return "LIBUSB_ERROR_INVALID_PARAM";
1899         case LIBUSB_ERROR_ACCESS:
1900                 return "LIBUSB_ERROR_ACCESS";
1901         case LIBUSB_ERROR_NO_DEVICE:
1902                 return "LIBUSB_ERROR_NO_DEVICE";
1903         case LIBUSB_ERROR_NOT_FOUND:
1904                 return "LIBUSB_ERROR_NOT_FOUND";
1905         case LIBUSB_ERROR_BUSY:
1906                 return "LIBUSB_ERROR_BUSY";
1907         case LIBUSB_ERROR_TIMEOUT:
1908                 return "LIBUSB_ERROR_TIMEOUT";
1909         case LIBUSB_ERROR_OVERFLOW:
1910                 return "LIBUSB_ERROR_OVERFLOW";
1911         case LIBUSB_ERROR_PIPE:
1912                 return "LIBUSB_ERROR_PIPE";
1913         case LIBUSB_ERROR_INTERRUPTED:
1914                 return "LIBUSB_ERROR_INTERRUPTED";
1915         case LIBUSB_ERROR_NO_MEM:
1916                 return "LIBUSB_ERROR_NO_MEM";
1917         case LIBUSB_ERROR_NOT_SUPPORTED:
1918                 return "LIBUSB_ERROR_NOT_SUPPORTED";
1919         case LIBUSB_ERROR_OTHER:
1920                 return "LIBUSB_ERROR_OTHER";
1921
1922         case LIBUSB_TRANSFER_ERROR:
1923                 return "LIBUSB_TRANSFER_ERROR";
1924         case LIBUSB_TRANSFER_TIMED_OUT:
1925                 return "LIBUSB_TRANSFER_TIMED_OUT";
1926         case LIBUSB_TRANSFER_CANCELLED:
1927                 return "LIBUSB_TRANSFER_CANCELLED";
1928         case LIBUSB_TRANSFER_STALL:
1929                 return "LIBUSB_TRANSFER_STALL";
1930         case LIBUSB_TRANSFER_NO_DEVICE:
1931                 return "LIBUSB_TRANSFER_NO_DEVICE";
1932         case LIBUSB_TRANSFER_OVERFLOW:
1933                 return "LIBUSB_TRANSFER_OVERFLOW";
1934
1935         case 0:
1936                 return "LIBUSB_SUCCESS / LIBUSB_TRANSFER_COMPLETED";
1937         default:
1938                 return "**UNKNOWN**";
1939         }
1940 }
1941
1942 /** \ingroup misc
1943  * Returns a pointer to const struct libusb_version with the version
1944  * (major, minor, micro, nano and rc) of the running library.
1945  */
1946 DEFAULT_VISIBILITY
1947 const struct libusb_version * LIBUSB_CALL libusb_get_version(void)
1948 {
1949         return &libusb_version_internal;
1950 }