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