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