Core: Prefix LOG_LEVEL_ with LIBUSB_ to avoid conflicts
[platform/upstream/libusb.git] / libusb / libusbi.h
1 /*
2  * Internal header for libusbx
3  * Copyright © 2007-2009 Daniel Drake <dsd@gentoo.org>
4  * Copyright © 2001 Johannes Erdfelt <johannes@erdfelt.com>
5  *
6  * This library is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Lesser General Public
8  * License as published by the Free Software Foundation; either
9  * version 2.1 of the License, or (at your option) any later version.
10  *
11  * This library is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14  * Lesser General Public License for more details.
15  *
16  * You should have received a copy of the GNU Lesser General Public
17  * License along with this library; if not, write to the Free Software
18  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
19  */
20
21 #ifndef LIBUSBI_H
22 #define LIBUSBI_H
23
24 #include <config.h>
25
26 #include <stddef.h>
27 #include <stdint.h>
28 #include <time.h>
29 #include <stdarg.h>
30 #ifdef HAVE_POLL_H
31 #include <poll.h>
32 #endif
33
34 #include <libusb.h>
35 #include "version.h"
36
37 /* Inside the libusbx code, mark all public functions as follows:
38  *   return_type API_EXPORTED function_name(params) { ... }
39  * But if the function returns a pointer, mark it as follows:
40  *   DEFAULT_VISIBILITY return_type * LIBUSB_CALL function_name(params) { ... }
41  * In the libusbx public header, mark all declarations as:
42  *   return_type LIBUSB_CALL function_name(params);
43  */
44 #define API_EXPORTED LIBUSB_CALL DEFAULT_VISIBILITY
45
46 #define DEVICE_DESC_LENGTH              18
47
48 #define USB_MAXENDPOINTS        32
49 #define USB_MAXINTERFACES       32
50 #define USB_MAXCONFIG           8
51
52 /* The following is used to silence warnings for unused variables */
53 #define UNUSED(var)                     (void)sizeof(var)
54
55 struct list_head {
56         struct list_head *prev, *next;
57 };
58
59 /* Get an entry from the list
60  *      ptr - the address of this list_head element in "type"
61  *      type - the data type that contains "member"
62  *      member - the list_head element in "type"
63  */
64 #define list_entry(ptr, type, member) \
65         ((type *)((uintptr_t)(ptr) - (uintptr_t)(&((type *)0L)->member)))
66
67 /* Get each entry from a list
68  *      pos - A structure pointer has a "member" element
69  *      head - list head
70  *      member - the list_head element in "pos"
71  *      type - the type of the first parameter
72  */
73 #define list_for_each_entry(pos, head, member, type)                    \
74         for (pos = list_entry((head)->next, type, member);                      \
75                  &pos->member != (head);                                                                \
76                  pos = list_entry(pos->member.next, type, member))
77
78 #define list_for_each_entry_safe(pos, n, head, member, type)    \
79         for (pos = list_entry((head)->next, type, member),                      \
80                  n = list_entry(pos->member.next, type, member);                \
81                  &pos->member != (head);                                                                \
82                  pos = n, n = list_entry(n->member.next, type, member))
83
84 #define list_empty(entry) ((entry)->next == (entry))
85
86 static inline void list_init(struct list_head *entry)
87 {
88         entry->prev = entry->next = entry;
89 }
90
91 static inline void list_add(struct list_head *entry, struct list_head *head)
92 {
93         entry->next = head->next;
94         entry->prev = head;
95
96         head->next->prev = entry;
97         head->next = entry;
98 }
99
100 static inline void list_add_tail(struct list_head *entry,
101         struct list_head *head)
102 {
103         entry->next = head;
104         entry->prev = head->prev;
105
106         head->prev->next = entry;
107         head->prev = entry;
108 }
109
110 static inline void list_del(struct list_head *entry)
111 {
112         entry->next->prev = entry->prev;
113         entry->prev->next = entry->next;
114 }
115
116 static inline void *usbi_reallocf(void *ptr, size_t size)
117 {
118         void *ret = realloc(ptr, size);
119         if (!ret)
120                 free(ptr);
121         return ret;
122 }
123
124 #define container_of(ptr, type, member) ({                      \
125         const typeof( ((type *)0)->member ) *mptr = (ptr);    \
126         (type *)( (char *)mptr - offsetof(type,member) );})
127
128 #define MIN(a, b)       ((a) < (b) ? (a) : (b))
129 #define MAX(a, b)       ((a) > (b) ? (a) : (b))
130
131 #define TIMESPEC_IS_SET(ts) ((ts)->tv_sec != 0 || (ts)->tv_nsec != 0)
132
133 void usbi_log(struct libusb_context *ctx, enum libusb_log_level level,
134         const char *function, const char *format, ...);
135
136 void usbi_log_v(struct libusb_context *ctx, enum libusb_log_level level,
137         const char *function, const char *format, va_list args);
138
139 #if !defined(_MSC_VER) || _MSC_VER >= 1400
140
141 #ifdef ENABLE_LOGGING
142 #define _usbi_log(ctx, level, ...) usbi_log(ctx, level, __FUNCTION__, __VA_ARGS__)
143 #define usbi_dbg(...) _usbi_log(NULL, LIBUSB_LOG_LEVEL_DEBUG, __VA_ARGS__)
144 #else
145 #define _usbi_log(ctx, level, ...) do { (void)(ctx); } while(0)
146 #define usbi_dbg(...) do {} while(0)
147 #endif
148
149 #define usbi_info(ctx, ...) _usbi_log(ctx, LIBUSB_LOG_LEVEL_INFO, __VA_ARGS__)
150 #define usbi_warn(ctx, ...) _usbi_log(ctx, LIBUSB_LOG_LEVEL_WARNING, __VA_ARGS__)
151 #define usbi_err(ctx, ...) _usbi_log(ctx, LIBUSB_LOG_LEVEL_ERROR, __VA_ARGS__)
152
153 #else /* !defined(_MSC_VER) || _MSC_VER >= 1400 */
154
155 #ifdef ENABLE_LOGGING
156 #define LOG_BODY(ctxt, level) \
157 {                             \
158         va_list args;             \
159         va_start (args, format);  \
160         usbi_log_v(ctxt, level, "", format, args); \
161         va_end(args);             \
162 }
163 #else
164 #define LOG_BODY(ctxt, level) do { (void)(ctxt); } while(0)
165 #endif
166
167 static inline void usbi_info(struct libusb_context *ctx, const char *format,
168         ...)
169         LOG_BODY(ctx,LIBUSB_LOG_LEVEL_INFO)
170 static inline void usbi_warn(struct libusb_context *ctx, const char *format,
171         ...)
172         LOG_BODY(ctx,LIBUSB_LOG_LEVEL_WARNING)
173 static inline void usbi_err( struct libusb_context *ctx, const char *format,
174         ...)
175         LOG_BODY(ctx,LIBUSB_LOG_LEVEL_ERROR)
176
177 static inline void usbi_dbg(const char *format, ...)
178         LOG_BODY(NULL,LIBUSB_LOG_LEVEL_DEBUG)
179
180 #endif /* !defined(_MSC_VER) || _MSC_VER >= 1400 */
181
182 #define USBI_GET_CONTEXT(ctx) if (!(ctx)) (ctx) = usbi_default_context
183 #define DEVICE_CTX(dev) ((dev)->ctx)
184 #define HANDLE_CTX(handle) (DEVICE_CTX((handle)->dev))
185 #define TRANSFER_CTX(transfer) (HANDLE_CTX((transfer)->dev_handle))
186 #define ITRANSFER_CTX(transfer) \
187         (TRANSFER_CTX(USBI_TRANSFER_TO_LIBUSB_TRANSFER(transfer)))
188
189 #define IS_EPIN(ep) (0 != ((ep) & LIBUSB_ENDPOINT_IN))
190 #define IS_EPOUT(ep) (!IS_EPIN(ep))
191 #define IS_XFERIN(xfer) (0 != ((xfer)->endpoint & LIBUSB_ENDPOINT_IN))
192 #define IS_XFEROUT(xfer) (!IS_XFERIN(xfer))
193
194 /* Internal abstractions for thread synchronization and poll */
195 #if defined(THREADS_POSIX)
196 #include <os/threads_posix.h>
197 #elif defined(OS_WINDOWS)
198 #include <os/threads_windows.h>
199 #endif
200
201 #if defined(OS_LINUX) || defined(OS_DARWIN) || defined(OS_OPENBSD)
202 #include <unistd.h>
203 #include <os/poll_posix.h>
204 #elif defined(OS_WINDOWS)
205 #include <os/poll_windows.h>
206 #endif
207
208 #if defined(OS_WINDOWS) && !defined(__GCC__)
209 #undef HAVE_GETTIMEOFDAY
210 int usbi_gettimeofday(struct timeval *tp, void *tzp);
211 #define LIBUSB_GETTIMEOFDAY_WIN32
212 #define HAVE_USBI_GETTIMEOFDAY
213 #else
214 #ifdef HAVE_GETTIMEOFDAY
215 #define usbi_gettimeofday(tv, tz) gettimeofday((tv), (tz))
216 #define HAVE_USBI_GETTIMEOFDAY
217 #endif
218 #endif
219
220 extern struct libusb_context *usbi_default_context;
221
222 struct libusb_context {
223         int debug;
224         int debug_fixed;
225
226         /* internal control pipe, used for interrupting event handling when
227          * something needs to modify poll fds. */
228         int ctrl_pipe[2];
229
230         struct list_head usb_devs;
231         usbi_mutex_t usb_devs_lock;
232
233         /* A list of open handles. Backends are free to traverse this if required.
234          */
235         struct list_head open_devs;
236         usbi_mutex_t open_devs_lock;
237
238         /* this is a list of in-flight transfer handles, sorted by timeout
239          * expiration. URBs to timeout the soonest are placed at the beginning of
240          * the list, URBs that will time out later are placed after, and urbs with
241          * infinite timeout are always placed at the very end. */
242         struct list_head flying_transfers;
243         usbi_mutex_t flying_transfers_lock;
244
245         /* list of poll fds */
246         struct list_head pollfds;
247         usbi_mutex_t pollfds_lock;
248
249         /* a counter that is set when we want to interrupt event handling, in order
250          * to modify the poll fd set. and a lock to protect it. */
251         unsigned int pollfd_modify;
252         usbi_mutex_t pollfd_modify_lock;
253
254         /* user callbacks for pollfd changes */
255         libusb_pollfd_added_cb fd_added_cb;
256         libusb_pollfd_removed_cb fd_removed_cb;
257         void *fd_cb_user_data;
258
259         /* ensures that only one thread is handling events at any one time */
260         usbi_mutex_t events_lock;
261
262         /* used to see if there is an active thread doing event handling */
263         int event_handler_active;
264
265         /* used to wait for event completion in threads other than the one that is
266          * event handling */
267         usbi_mutex_t event_waiters_lock;
268         usbi_cond_t event_waiters_cond;
269
270 #ifdef USBI_TIMERFD_AVAILABLE
271         /* used for timeout handling, if supported by OS.
272          * this timerfd is maintained to trigger on the next pending timeout */
273         int timerfd;
274 #endif
275 };
276
277 #ifdef USBI_TIMERFD_AVAILABLE
278 #define usbi_using_timerfd(ctx) ((ctx)->timerfd >= 0)
279 #else
280 #define usbi_using_timerfd(ctx) (0)
281 #endif
282
283 struct libusb_device {
284         /* lock protects refcnt, everything else is finalized at initialization
285          * time */
286         usbi_mutex_t lock;
287         int refcnt;
288
289         struct libusb_context *ctx;
290
291         uint8_t bus_number;
292         uint8_t port_number;
293         struct libusb_device* parent_dev;
294         uint8_t device_address;
295         uint8_t num_configurations;
296         enum libusb_speed speed;
297
298         struct list_head list;
299         unsigned long session_data;
300         unsigned char os_priv[0];
301 };
302
303 struct libusb_device_handle {
304         /* lock protects claimed_interfaces */
305         usbi_mutex_t lock;
306         unsigned long claimed_interfaces;
307
308         struct list_head list;
309         struct libusb_device *dev;
310         unsigned char os_priv[0];
311 };
312
313 enum {
314   USBI_CLOCK_MONOTONIC,
315   USBI_CLOCK_REALTIME
316 };
317
318 /* in-memory transfer layout:
319  *
320  * 1. struct usbi_transfer
321  * 2. struct libusb_transfer (which includes iso packets) [variable size]
322  * 3. os private data [variable size]
323  *
324  * from a libusb_transfer, you can get the usbi_transfer by rewinding the
325  * appropriate number of bytes.
326  * the usbi_transfer includes the number of allocated packets, so you can
327  * determine the size of the transfer and hence the start and length of the
328  * OS-private data.
329  */
330
331 struct usbi_transfer {
332         int num_iso_packets;
333         struct list_head list;
334         struct timeval timeout;
335         int transferred;
336         uint8_t flags;
337
338         /* this lock is held during libusb_submit_transfer() and
339          * libusb_cancel_transfer() (allowing the OS backend to prevent duplicate
340          * cancellation, submission-during-cancellation, etc). the OS backend
341          * should also take this lock in the handle_events path, to prevent the user
342          * cancelling the transfer from another thread while you are processing
343          * its completion (presumably there would be races within your OS backend
344          * if this were possible). */
345         usbi_mutex_t lock;
346 };
347
348 enum usbi_transfer_flags {
349         /* The transfer has timed out */
350         USBI_TRANSFER_TIMED_OUT = 1 << 0,
351
352         /* Set by backend submit_transfer() if the OS handles timeout */
353         USBI_TRANSFER_OS_HANDLES_TIMEOUT = 1 << 1,
354
355         /* Cancellation was requested via libusb_cancel_transfer() */
356         USBI_TRANSFER_CANCELLING = 1 << 2,
357
358         /* Operation on the transfer failed because the device disappeared */
359         USBI_TRANSFER_DEVICE_DISAPPEARED = 1 << 3,
360
361         /* Set by backend submit_transfer() if the fds in use have been updated */
362         USBI_TRANSFER_UPDATED_FDS = 1 << 4,
363 };
364
365 #define USBI_TRANSFER_TO_LIBUSB_TRANSFER(transfer) \
366         ((struct libusb_transfer *)(((unsigned char *)(transfer)) \
367                 + sizeof(struct usbi_transfer)))
368 #define LIBUSB_TRANSFER_TO_USBI_TRANSFER(transfer) \
369         ((struct usbi_transfer *)(((unsigned char *)(transfer)) \
370                 - sizeof(struct usbi_transfer)))
371
372 static inline void *usbi_transfer_get_os_priv(struct usbi_transfer *transfer)
373 {
374         return ((unsigned char *)transfer) + sizeof(struct usbi_transfer)
375                 + sizeof(struct libusb_transfer)
376                 + (transfer->num_iso_packets
377                         * sizeof(struct libusb_iso_packet_descriptor));
378 }
379
380 /* bus structures */
381
382 /* All standard descriptors have these 2 fields in common */
383 struct usb_descriptor_header {
384         uint8_t  bLength;
385         uint8_t  bDescriptorType;
386 };
387
388 /* shared data and functions */
389
390 int usbi_io_init(struct libusb_context *ctx);
391 void usbi_io_exit(struct libusb_context *ctx);
392
393 struct libusb_device *usbi_alloc_device(struct libusb_context *ctx,
394         unsigned long session_id);
395 struct libusb_device *usbi_get_device_by_session_id(struct libusb_context *ctx,
396         unsigned long session_id);
397 int usbi_sanitize_device(struct libusb_device *dev);
398 void usbi_handle_disconnect(struct libusb_device_handle *handle);
399
400 int usbi_handle_transfer_completion(struct usbi_transfer *itransfer,
401         enum libusb_transfer_status status);
402 int usbi_handle_transfer_cancellation(struct usbi_transfer *transfer);
403
404 int usbi_parse_descriptor(unsigned char *source, const char *descriptor,
405         void *dest, int host_endian);
406 int usbi_get_config_index_by_value(struct libusb_device *dev,
407         uint8_t bConfigurationValue, int *idx);
408
409 /* polling */
410
411 struct usbi_pollfd {
412         /* must come first */
413         struct libusb_pollfd pollfd;
414
415         struct list_head list;
416 };
417
418 int usbi_add_pollfd(struct libusb_context *ctx, int fd, short events);
419 void usbi_remove_pollfd(struct libusb_context *ctx, int fd);
420 void usbi_fd_notification(struct libusb_context *ctx);
421
422 /* device discovery */
423
424 /* we traverse usbfs without knowing how many devices we are going to find.
425  * so we create this discovered_devs model which is similar to a linked-list
426  * which grows when required. it can be freed once discovery has completed,
427  * eliminating the need for a list node in the libusb_device structure
428  * itself. */
429 struct discovered_devs {
430         size_t len;
431         size_t capacity;
432         struct libusb_device *devices[0];
433 };
434
435 struct discovered_devs *discovered_devs_append(
436         struct discovered_devs *discdevs, struct libusb_device *dev);
437
438 /* OS abstraction */
439
440 /* This is the interface that OS backends need to implement.
441  * All fields are mandatory, except ones explicitly noted as optional. */
442 struct usbi_os_backend {
443         /* A human-readable name for your backend, e.g. "Linux usbfs" */
444         const char *name;
445
446         /* Perform initialization of your backend. You might use this function
447          * to determine specific capabilities of the system, allocate required
448          * data structures for later, etc.
449          *
450          * This function is called when a libusbx user initializes the library
451          * prior to use.
452          *
453          * Return 0 on success, or a LIBUSB_ERROR code on failure.
454          */
455         int (*init)(struct libusb_context *ctx);
456
457         /* Deinitialization. Optional. This function should destroy anything
458          * that was set up by init.
459          *
460          * This function is called when the user deinitializes the library.
461          */
462         void (*exit)(void);
463
464         /* Enumerate all the USB devices on the system, returning them in a list
465          * of discovered devices.
466          *
467          * Your implementation should enumerate all devices on the system,
468          * regardless of whether they have been seen before or not.
469          *
470          * When you have found a device, compute a session ID for it. The session
471          * ID should uniquely represent that particular device for that particular
472          * connection session since boot (i.e. if you disconnect and reconnect a
473          * device immediately after, it should be assigned a different session ID).
474          * If your OS cannot provide a unique session ID as described above,
475          * presenting a session ID of (bus_number << 8 | device_address) should
476          * be sufficient. Bus numbers and device addresses wrap and get reused,
477          * but that is an unlikely case.
478          *
479          * After computing a session ID for a device, call
480          * usbi_get_device_by_session_id(). This function checks if libusbx already
481          * knows about the device, and if so, it provides you with a libusb_device
482          * structure for it.
483          *
484          * If usbi_get_device_by_session_id() returns NULL, it is time to allocate
485          * a new device structure for the device. Call usbi_alloc_device() to
486          * obtain a new libusb_device structure with reference count 1. Populate
487          * the bus_number and device_address attributes of the new device, and
488          * perform any other internal backend initialization you need to do. At
489          * this point, you should be ready to provide device descriptors and so
490          * on through the get_*_descriptor functions. Finally, call
491          * usbi_sanitize_device() to perform some final sanity checks on the
492          * device. Assuming all of the above succeeded, we can now continue.
493          * If any of the above failed, remember to unreference the device that
494          * was returned by usbi_alloc_device().
495          *
496          * At this stage we have a populated libusb_device structure (either one
497          * that was found earlier, or one that we have just allocated and
498          * populated). This can now be added to the discovered devices list
499          * using discovered_devs_append(). Note that discovered_devs_append()
500          * may reallocate the list, returning a new location for it, and also
501          * note that reallocation can fail. Your backend should handle these
502          * error conditions appropriately.
503          *
504          * This function should not generate any bus I/O and should not block.
505          * If I/O is required (e.g. reading the active configuration value), it is
506          * OK to ignore these suggestions :)
507          *
508          * This function is executed when the user wishes to retrieve a list
509          * of USB devices connected to the system.
510          *
511          * Return 0 on success, or a LIBUSB_ERROR code on failure.
512          */
513         int (*get_device_list)(struct libusb_context *ctx,
514                 struct discovered_devs **discdevs);
515
516         /* Open a device for I/O and other USB operations. The device handle
517          * is preallocated for you, you can retrieve the device in question
518          * through handle->dev.
519          *
520          * Your backend should allocate any internal resources required for I/O
521          * and other operations so that those operations can happen (hopefully)
522          * without hiccup. This is also a good place to inform libusbx that it
523          * should monitor certain file descriptors related to this device -
524          * see the usbi_add_pollfd() function.
525          *
526          * This function should not generate any bus I/O and should not block.
527          *
528          * This function is called when the user attempts to obtain a device
529          * handle for a device.
530          *
531          * Return:
532          * - 0 on success
533          * - LIBUSB_ERROR_ACCESS if the user has insufficient permissions
534          * - LIBUSB_ERROR_NO_DEVICE if the device has been disconnected since
535          *   discovery
536          * - another LIBUSB_ERROR code on other failure
537          *
538          * Do not worry about freeing the handle on failed open, the upper layers
539          * do this for you.
540          */
541         int (*open)(struct libusb_device_handle *handle);
542
543         /* Close a device such that the handle cannot be used again. Your backend
544          * should destroy any resources that were allocated in the open path.
545          * This may also be a good place to call usbi_remove_pollfd() to inform
546          * libusbx of any file descriptors associated with this device that should
547          * no longer be monitored.
548          *
549          * This function is called when the user closes a device handle.
550          */
551         void (*close)(struct libusb_device_handle *handle);
552
553         /* Retrieve the device descriptor from a device.
554          *
555          * The descriptor should be retrieved from memory, NOT via bus I/O to the
556          * device. This means that you may have to cache it in a private structure
557          * during get_device_list enumeration. Alternatively, you may be able
558          * to retrieve it from a kernel interface (some Linux setups can do this)
559          * still without generating bus I/O.
560          *
561          * This function is expected to write DEVICE_DESC_LENGTH (18) bytes into
562          * buffer, which is guaranteed to be big enough.
563          *
564          * This function is called when sanity-checking a device before adding
565          * it to the list of discovered devices, and also when the user requests
566          * to read the device descriptor.
567          *
568          * This function is expected to return the descriptor in bus-endian format
569          * (LE). If it returns the multi-byte values in host-endian format,
570          * set the host_endian output parameter to "1".
571          *
572          * Return 0 on success or a LIBUSB_ERROR code on failure.
573          */
574         int (*get_device_descriptor)(struct libusb_device *device,
575                 unsigned char *buffer, int *host_endian);
576
577         /* Get the ACTIVE configuration descriptor for a device.
578          *
579          * The descriptor should be retrieved from memory, NOT via bus I/O to the
580          * device. This means that you may have to cache it in a private structure
581          * during get_device_list enumeration. You may also have to keep track
582          * of which configuration is active when the user changes it.
583          *
584          * This function is expected to write len bytes of data into buffer, which
585          * is guaranteed to be big enough. If you can only do a partial write,
586          * return an error code.
587          *
588          * This function is expected to return the descriptor in bus-endian format
589          * (LE). If it returns the multi-byte values in host-endian format,
590          * set the host_endian output parameter to "1".
591          *
592          * Return:
593          * - 0 on success
594          * - LIBUSB_ERROR_NOT_FOUND if the device is in unconfigured state
595          * - another LIBUSB_ERROR code on other failure
596          */
597         int (*get_active_config_descriptor)(struct libusb_device *device,
598                 unsigned char *buffer, size_t len, int *host_endian);
599
600         /* Get a specific configuration descriptor for a device.
601          *
602          * The descriptor should be retrieved from memory, NOT via bus I/O to the
603          * device. This means that you may have to cache it in a private structure
604          * during get_device_list enumeration.
605          *
606          * The requested descriptor is expressed as a zero-based index (i.e. 0
607          * indicates that we are requesting the first descriptor). The index does
608          * not (necessarily) equal the bConfigurationValue of the configuration
609          * being requested.
610          *
611          * This function is expected to write len bytes of data into buffer, which
612          * is guaranteed to be big enough. If you can only do a partial write,
613          * return an error code.
614          *
615          * This function is expected to return the descriptor in bus-endian format
616          * (LE). If it returns the multi-byte values in host-endian format,
617          * set the host_endian output parameter to "1".
618          *
619          * Return 0 on success or a LIBUSB_ERROR code on failure.
620          */
621         int (*get_config_descriptor)(struct libusb_device *device,
622                 uint8_t config_index, unsigned char *buffer, size_t len,
623                 int *host_endian);
624
625         /* Get the bConfigurationValue for the active configuration for a device.
626          * Optional. This should only be implemented if you can retrieve it from
627          * cache (don't generate I/O).
628          *
629          * If you cannot retrieve this from cache, either do not implement this
630          * function, or return LIBUSB_ERROR_NOT_SUPPORTED. This will cause
631          * libusbx to retrieve the information through a standard control transfer.
632          *
633          * This function must be non-blocking.
634          * Return:
635          * - 0 on success
636          * - LIBUSB_ERROR_NO_DEVICE if the device has been disconnected since it
637          *   was opened
638          * - LIBUSB_ERROR_NOT_SUPPORTED if the value cannot be retrieved without
639          *   blocking
640          * - another LIBUSB_ERROR code on other failure.
641          */
642         int (*get_configuration)(struct libusb_device_handle *handle, int *config);
643
644         /* Set the active configuration for a device.
645          *
646          * A configuration value of -1 should put the device in unconfigured state.
647          *
648          * This function can block.
649          *
650          * Return:
651          * - 0 on success
652          * - LIBUSB_ERROR_NOT_FOUND if the configuration does not exist
653          * - LIBUSB_ERROR_BUSY if interfaces are currently claimed (and hence
654          *   configuration cannot be changed)
655          * - LIBUSB_ERROR_NO_DEVICE if the device has been disconnected since it
656          *   was opened
657          * - another LIBUSB_ERROR code on other failure.
658          */
659         int (*set_configuration)(struct libusb_device_handle *handle, int config);
660
661         /* Claim an interface. When claimed, the application can then perform
662          * I/O to an interface's endpoints.
663          *
664          * This function should not generate any bus I/O and should not block.
665          * Interface claiming is a logical operation that simply ensures that
666          * no other drivers/applications are using the interface, and after
667          * claiming, no other drivers/applicatiosn can use the interface because
668          * we now "own" it.
669          *
670          * Return:
671          * - 0 on success
672          * - LIBUSB_ERROR_NOT_FOUND if the interface does not exist
673          * - LIBUSB_ERROR_BUSY if the interface is in use by another driver/app
674          * - LIBUSB_ERROR_NO_DEVICE if the device has been disconnected since it
675          *   was opened
676          * - another LIBUSB_ERROR code on other failure
677          */
678         int (*claim_interface)(struct libusb_device_handle *handle, int interface_number);
679
680         /* Release a previously claimed interface.
681          *
682          * This function should also generate a SET_INTERFACE control request,
683          * resetting the alternate setting of that interface to 0. It's OK for
684          * this function to block as a result.
685          *
686          * You will only ever be asked to release an interface which was
687          * successfully claimed earlier.
688          *
689          * Return:
690          * - 0 on success
691          * - LIBUSB_ERROR_NO_DEVICE if the device has been disconnected since it
692          *   was opened
693          * - another LIBUSB_ERROR code on other failure
694          */
695         int (*release_interface)(struct libusb_device_handle *handle, int interface_number);
696
697         /* Set the alternate setting for an interface.
698          *
699          * You will only ever be asked to set the alternate setting for an
700          * interface which was successfully claimed earlier.
701          *
702          * It's OK for this function to block.
703          *
704          * Return:
705          * - 0 on success
706          * - LIBUSB_ERROR_NOT_FOUND if the alternate setting does not exist
707          * - LIBUSB_ERROR_NO_DEVICE if the device has been disconnected since it
708          *   was opened
709          * - another LIBUSB_ERROR code on other failure
710          */
711         int (*set_interface_altsetting)(struct libusb_device_handle *handle,
712                 int interface_number, int altsetting);
713
714         /* Clear a halt/stall condition on an endpoint.
715          *
716          * It's OK for this function to block.
717          *
718          * Return:
719          * - 0 on success
720          * - LIBUSB_ERROR_NOT_FOUND if the endpoint does not exist
721          * - LIBUSB_ERROR_NO_DEVICE if the device has been disconnected since it
722          *   was opened
723          * - another LIBUSB_ERROR code on other failure
724          */
725         int (*clear_halt)(struct libusb_device_handle *handle,
726                 unsigned char endpoint);
727
728         /* Perform a USB port reset to reinitialize a device.
729          *
730          * If possible, the handle should still be usable after the reset
731          * completes, assuming that the device descriptors did not change during
732          * reset and all previous interface state can be restored.
733          *
734          * If something changes, or you cannot easily locate/verify the resetted
735          * device, return LIBUSB_ERROR_NOT_FOUND. This prompts the application
736          * to close the old handle and re-enumerate the device.
737          *
738          * Return:
739          * - 0 on success
740          * - LIBUSB_ERROR_NOT_FOUND if re-enumeration is required, or if the device
741          *   has been disconnected since it was opened
742          * - another LIBUSB_ERROR code on other failure
743          */
744         int (*reset_device)(struct libusb_device_handle *handle);
745
746         /* Determine if a kernel driver is active on an interface. Optional.
747          *
748          * The presence of a kernel driver on an interface indicates that any
749          * calls to claim_interface would fail with the LIBUSB_ERROR_BUSY code.
750          *
751          * Return:
752          * - 0 if no driver is active
753          * - 1 if a driver is active
754          * - LIBUSB_ERROR_NO_DEVICE if the device has been disconnected since it
755          *   was opened
756          * - another LIBUSB_ERROR code on other failure
757          */
758         int (*kernel_driver_active)(struct libusb_device_handle *handle,
759                 int interface_number);
760
761         /* Detach a kernel driver from an interface. Optional.
762          *
763          * After detaching a kernel driver, the interface should be available
764          * for claim.
765          *
766          * Return:
767          * - 0 on success
768          * - LIBUSB_ERROR_NOT_FOUND if no kernel driver was active
769          * - LIBUSB_ERROR_INVALID_PARAM if the interface does not exist
770          * - LIBUSB_ERROR_NO_DEVICE if the device has been disconnected since it
771          *   was opened
772          * - another LIBUSB_ERROR code on other failure
773          */
774         int (*detach_kernel_driver)(struct libusb_device_handle *handle,
775                 int interface_number);
776
777         /* Attach a kernel driver to an interface. Optional.
778          *
779          * Reattach a kernel driver to the device.
780          *
781          * Return:
782          * - 0 on success
783          * - LIBUSB_ERROR_NOT_FOUND if no kernel driver was active
784          * - LIBUSB_ERROR_INVALID_PARAM if the interface does not exist
785          * - LIBUSB_ERROR_NO_DEVICE if the device has been disconnected since it
786          *   was opened
787          * - LIBUSB_ERROR_BUSY if a program or driver has claimed the interface,
788          *   preventing reattachment
789          * - another LIBUSB_ERROR code on other failure
790          */
791         int (*attach_kernel_driver)(struct libusb_device_handle *handle,
792                 int interface_number);
793
794         /* Destroy a device. Optional.
795          *
796          * This function is called when the last reference to a device is
797          * destroyed. It should free any resources allocated in the get_device_list
798          * path.
799          */
800         void (*destroy_device)(struct libusb_device *dev);
801
802         /* Submit a transfer. Your implementation should take the transfer,
803          * morph it into whatever form your platform requires, and submit it
804          * asynchronously.
805          *
806          * This function must not block.
807          *
808          * Return:
809          * - 0 on success
810          * - LIBUSB_ERROR_NO_DEVICE if the device has been disconnected
811          * - another LIBUSB_ERROR code on other failure
812          */
813         int (*submit_transfer)(struct usbi_transfer *itransfer);
814
815         /* Cancel a previously submitted transfer.
816          *
817          * This function must not block. The transfer cancellation must complete
818          * later, resulting in a call to usbi_handle_transfer_cancellation()
819          * from the context of handle_events.
820          */
821         int (*cancel_transfer)(struct usbi_transfer *itransfer);
822
823         /* Clear a transfer as if it has completed or cancelled, but do not
824          * report any completion/cancellation to the library. You should free
825          * all private data from the transfer as if you were just about to report
826          * completion or cancellation.
827          *
828          * This function might seem a bit out of place. It is used when libusbx
829          * detects a disconnected device - it calls this function for all pending
830          * transfers before reporting completion (with the disconnect code) to
831          * the user. Maybe we can improve upon this internal interface in future.
832          */
833         void (*clear_transfer_priv)(struct usbi_transfer *itransfer);
834
835         /* Handle any pending events. This involves monitoring any active
836          * transfers and processing their completion or cancellation.
837          *
838          * The function is passed an array of pollfd structures (size nfds)
839          * as a result of the poll() system call. The num_ready parameter
840          * indicates the number of file descriptors that have reported events
841          * (i.e. the poll() return value). This should be enough information
842          * for you to determine which actions need to be taken on the currently
843          * active transfers.
844          *
845          * For any cancelled transfers, call usbi_handle_transfer_cancellation().
846          * For completed transfers, call usbi_handle_transfer_completion().
847          * For control/bulk/interrupt transfers, populate the "transferred"
848          * element of the appropriate usbi_transfer structure before calling the
849          * above functions. For isochronous transfers, populate the status and
850          * transferred fields of the iso packet descriptors of the transfer.
851          *
852          * This function should also be able to detect disconnection of the
853          * device, reporting that situation with usbi_handle_disconnect().
854          *
855          * When processing an event related to a transfer, you probably want to
856          * take usbi_transfer.lock to prevent races. See the documentation for
857          * the usbi_transfer structure.
858          *
859          * Return 0 on success, or a LIBUSB_ERROR code on failure.
860          */
861         int (*handle_events)(struct libusb_context *ctx,
862                 struct pollfd *fds, POLL_NFDS_TYPE nfds, int num_ready);
863
864         /* Get time from specified clock. At least two clocks must be implemented
865            by the backend: USBI_CLOCK_REALTIME, and USBI_CLOCK_MONOTONIC.
866
867            Description of clocks:
868              USBI_CLOCK_REALTIME : clock returns time since system epoch.
869              USBI_CLOCK_MONOTONIC: clock returns time since unspecified start
870                                      time (usually boot).
871          */
872         int (*clock_gettime)(int clkid, struct timespec *tp);
873
874 #ifdef USBI_TIMERFD_AVAILABLE
875         /* clock ID of the clock that should be used for timerfd */
876         clockid_t (*get_timerfd_clockid)(void);
877 #endif
878
879         /* Number of bytes to reserve for per-device private backend data.
880          * This private data area is accessible through the "os_priv" field of
881          * struct libusb_device. */
882         size_t device_priv_size;
883
884         /* Number of bytes to reserve for per-handle private backend data.
885          * This private data area is accessible through the "os_priv" field of
886          * struct libusb_device. */
887         size_t device_handle_priv_size;
888
889         /* Number of bytes to reserve for per-transfer private backend data.
890          * This private data area is accessible by calling
891          * usbi_transfer_get_os_priv() on the appropriate usbi_transfer instance.
892          */
893         size_t transfer_priv_size;
894
895         /* Mumber of additional bytes for os_priv for each iso packet.
896          * Can your backend use this? */
897         /* FIXME: linux can't use this any more. if other OS's cannot either,
898          * then remove this */
899         size_t add_iso_packet_size;
900 };
901
902 extern const struct usbi_os_backend * const usbi_backend;
903
904 extern const struct usbi_os_backend linux_usbfs_backend;
905 extern const struct usbi_os_backend darwin_backend;
906 extern const struct usbi_os_backend openbsd_backend;
907 extern const struct usbi_os_backend windows_backend;
908
909 #endif