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