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