Pause event handling while opening and closing devices
[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 /* in-memory transfer layout:
222  *
223  * 1. struct usbi_transfer
224  * 2. struct libusb_transfer (which includes iso packets) [variable size]
225  * 3. os private data [variable size]
226  *
227  * from a libusb_transfer, you can get the usbi_transfer by rewinding the
228  * appropriate number of bytes.
229  * the usbi_transfer includes the number of allocated packets, so you can
230  * determine the size of the transfer and hence the start and length of the
231  * OS-private data.
232  */
233
234 struct usbi_transfer {
235         int num_iso_packets;
236         struct list_head list;
237         struct timeval timeout;
238         int transferred;
239         uint8_t flags;
240 };
241
242 #define __USBI_TRANSFER_TO_LIBUSB_TRANSFER(transfer) \
243         ((struct libusb_transfer *)(((void *)(transfer)) \
244                 + sizeof(struct usbi_transfer)))
245 #define __LIBUSB_TRANSFER_TO_USBI_TRANSFER(transfer) \
246         ((struct usbi_transfer *)(((void *)(transfer)) \
247                 - sizeof(struct usbi_transfer)))
248
249 static inline void *usbi_transfer_get_os_priv(struct usbi_transfer *transfer)
250 {
251         return ((void *)transfer) + sizeof(struct usbi_transfer)
252                 + sizeof(struct libusb_transfer)
253                 + (transfer->num_iso_packets
254                         * sizeof(struct libusb_iso_packet_descriptor));
255 }
256
257 /* bus structures */
258
259 /* All standard descriptors have these 2 fields in common */
260 struct usb_descriptor_header {
261         uint8_t  bLength;
262         uint8_t  bDescriptorType;
263 };
264
265 /* shared data and functions */
266
267 int usbi_io_init(struct libusb_context *ctx);
268 void usbi_io_exit(struct libusb_context *ctx);
269
270 struct libusb_device *usbi_alloc_device(struct libusb_context *ctx,
271         unsigned long session_id);
272 struct libusb_device *usbi_get_device_by_session_id(struct libusb_context *ctx,
273         unsigned long session_id);
274 int usbi_sanitize_device(struct libusb_device *dev);
275 void usbi_handle_disconnect(struct libusb_device_handle *handle);
276
277 void usbi_handle_transfer_completion(struct usbi_transfer *itransfer,
278         enum libusb_transfer_status status);
279 void usbi_handle_transfer_cancellation(struct usbi_transfer *transfer);
280
281 int usbi_parse_descriptor(unsigned char *source, char *descriptor, void *dest,
282         int host_endian);
283 int usbi_get_config_index_by_value(struct libusb_device *dev,
284         uint8_t bConfigurationValue, int *idx);
285
286 /* polling */
287
288 struct usbi_pollfd {
289         /* must come first */
290         struct libusb_pollfd pollfd;
291
292         struct list_head list;
293 };
294
295 int usbi_add_pollfd(struct libusb_context *ctx, int fd, short events);
296 void usbi_remove_pollfd(struct libusb_context *ctx, int fd);
297
298 /* device discovery */
299
300 /* we traverse usbfs without knowing how many devices we are going to find.
301  * so we create this discovered_devs model which is similar to a linked-list
302  * which grows when required. it can be freed once discovery has completed,
303  * eliminating the need for a list node in the libusb_device structure
304  * itself. */
305 struct discovered_devs {
306         size_t len;
307         size_t capacity;
308         struct libusb_device *devices[0];
309 };
310
311 struct discovered_devs *discovered_devs_append(
312         struct discovered_devs *discdevs, struct libusb_device *dev);
313
314 /* OS abstraction */
315
316 /* This is the interface that OS backends need to implement.
317  * All fields are mandatory, except ones explicitly noted as optional. */
318 struct usbi_os_backend {
319         /* A human-readable name for your backend, e.g. "Linux usbfs" */
320         const char *name;
321
322         /* Perform initialization of your backend. You might use this function
323          * to determine specific capabilities of the system, allocate required
324          * data structures for later, etc.
325          *
326          * This function is called when a libusb user initializes the library
327          * prior to use.
328          *
329          * Return 0 on success, or a LIBUSB_ERROR code on failure.
330          */
331         int (*init)(struct libusb_context *ctx);
332
333         /* Deinitialization. Optional. This function should destroy anything
334          * that was set up by init.
335          *
336          * This function is called when the user deinitializes the library.
337          */
338         void (*exit)(void);
339
340         /* Enumerate all the USB devices on the system, returning them in a list
341          * of discovered devices.
342          *
343          * Your implementation should enumerate all devices on the system,
344          * regardless of whether they have been seen before or not.
345          *
346          * When you have found a device, compute a session ID for it. The session
347          * ID should uniquely represent that particular device for that particular
348          * connection session since boot (i.e. if you disconnect and reconnect a
349          * device immediately after, it should be assigned a different session ID).
350          * If your OS cannot provide a unique session ID as described above,
351          * presenting a session ID of (bus_number << 8 | device_address) should
352          * be sufficient. Bus numbers and device addresses wrap and get reused,
353          * but that is an unlikely case.
354          *
355          * After computing a session ID for a device, call
356          * usbi_get_device_by_session_id(). This function checks if libusb already
357          * knows about the device, and if so, it provides you with a libusb_device
358          * structure for it.
359          *
360          * If usbi_get_device_by_session_id() returns NULL, it is time to allocate
361          * a new device structure for the device. Call usbi_alloc_device() to
362          * obtain a new libusb_device structure with reference count 1. Populate
363          * the bus_number and device_address attributes of the new device, and
364          * perform any other internal backend initialization you need to do. At
365          * this point, you should be ready to provide device descriptors and so
366          * on through the get_*_descriptor functions. Finally, call
367          * usbi_sanitize_device() to perform some final sanity checks on the
368          * device. Assuming all of the above succeeded, we can now continue.
369          * If any of the above failed, remember to unreference the device that
370          * was returned by usbi_alloc_device().
371          *
372          * At this stage we have a populated libusb_device structure (either one
373          * that was found earlier, or one that we have just allocated and
374          * populated). This can now be added to the discovered devices list
375          * using discovered_devs_append(). Note that discovered_devs_append()
376          * may reallocate the list, returning a new location for it, and also
377          * note that reallocation can fail. Your backend should handle these
378          * error conditions appropriately.
379          *
380          * This function should not generate any bus I/O and should not block.
381          * If I/O is required (e.g. reading the active configuration value), it is
382          * OK to ignore these suggestions :)
383          *
384          * This function is executed when the user wishes to retrieve a list
385          * of USB devices connected to the system.
386          *
387          * Return 0 on success, or a LIBUSB_ERROR code on failure.
388          */
389         int (*get_device_list)(struct libusb_context *ctx,
390                 struct discovered_devs **discdevs);
391
392         /* Open a device for I/O and other USB operations. The device handle
393          * is preallocated for you, you can retrieve the device in question
394          * through handle->dev.
395          *
396          * Your backend should allocate any internal resources required for I/O
397          * and other operations so that those operations can happen (hopefully)
398          * without hiccup. This is also a good place to inform libusb that it
399          * should monitor certain file descriptors related to this device -
400          * see the usbi_add_pollfd() function.
401          *
402          * This function should not generate any bus I/O and should not block.
403          *
404          * This function is called when the user attempts to obtain a device
405          * handle for a device.
406          *
407          * Return:
408          * - 0 on success
409          * - LIBUSB_ERROR_ACCESS if the user has insufficient permissions
410          * - LIBUSB_ERROR_NO_DEVICE if the device has been disconnected since
411          *   discovery
412          * - another LIBUSB_ERROR code on other failure
413          *
414          * Do not worry about freeing the handle on failed open, the upper layers
415          * do this for you.
416          */
417         int (*open)(struct libusb_device_handle *handle);
418
419         /* Close a device such that the handle cannot be used again. Your backend
420          * should destroy any resources that were allocated in the open path.
421          * This may also be a good place to call usbi_remove_pollfd() to inform
422          * libusb of any file descriptors associated with this device that should
423          * no longer be monitored.
424          *
425          * This function is called when the user closes a device handle.
426          */
427         void (*close)(struct libusb_device_handle *handle);
428
429         /* Retrieve the device descriptor from a device.
430          *
431          * The descriptor should be retrieved from memory, NOT via bus I/O to the
432          * device. This means that you may have to cache it in a private structure
433          * during get_device_list enumeration. Alternatively, you may be able
434          * to retrieve it from a kernel interface (some Linux setups can do this)
435          * still without generating bus I/O.
436          *
437          * This function is expected to write DEVICE_DESC_LENGTH (18) bytes into
438          * buffer, which is guaranteed to be big enough.
439          *
440          * This function is called when sanity-checking a device before adding
441          * it to the list of discovered devices, and also when the user requests
442          * to read the device descriptor.
443          *
444          * This function is expected to return the descriptor in bus-endian format
445          * (LE). If it returns the multi-byte values in host-endian format,
446          * set the host_endian output parameter to "1".
447          *
448          * Return 0 on success or a LIBUSB_ERROR code on failure.
449          */
450         int (*get_device_descriptor)(struct libusb_device *device,
451                 unsigned char *buffer, int *host_endian);
452
453         /* Get the ACTIVE configuration descriptor for a device.
454          *
455          * The descriptor should be retrieved from memory, NOT via bus I/O to the
456          * device. This means that you may have to cache it in a private structure
457          * during get_device_list enumeration. You may also have to keep track
458          * of which configuration is active when the user changes it.
459          *
460          * This function is expected to write len bytes of data into buffer, which
461          * is guaranteed to be big enough. If you can only do a partial write,
462          * return an error code.
463          *
464          * This function is expected to return the descriptor in bus-endian format
465          * (LE). If it returns the multi-byte values in host-endian format,
466          * set the host_endian output parameter to "1".
467          *
468          * Return:
469          * - 0 on success
470          * - LIBUSB_ERROR_NOT_FOUND if the device is in unconfigured state
471          * - another LIBUSB_ERROR code on other failure
472          */
473         int (*get_active_config_descriptor)(struct libusb_device *device,
474                 unsigned char *buffer, size_t len, int *host_endian);
475
476         /* Get a specific configuration descriptor for a device.
477          *
478          * The descriptor should be retrieved from memory, NOT via bus I/O to the
479          * device. This means that you may have to cache it in a private structure
480          * during get_device_list enumeration.
481          *
482          * The requested descriptor is expressed as a zero-based index (i.e. 0
483          * indicates that we are requesting the first descriptor). The index does
484          * not (necessarily) equal the bConfigurationValue of the configuration
485          * being requested.
486          *
487          * This function is expected to write len bytes of data into buffer, which
488          * is guaranteed to be big enough. If you can only do a partial write,
489          * return an error code.
490          *
491          * This function is expected to return the descriptor in bus-endian format
492          * (LE). If it returns the multi-byte values in host-endian format,
493          * set the host_endian output parameter to "1".
494          *
495          * Return 0 on success or a LIBUSB_ERROR code on failure.
496          */
497         int (*get_config_descriptor)(struct libusb_device *device,
498                 uint8_t config_index, unsigned char *buffer, size_t len,
499                 int *host_endian);
500
501         /* Get the bConfigurationValue for the active configuration for a device.
502          * Optional. This should only be implemented if you can retrieve it from
503          * cache (don't generate I/O).
504          *
505          * If you cannot retrieve this from cache, either do not implement this
506          * function, or return LIBUSB_ERROR_NOT_SUPPORTED. This will cause
507          * libusb to retrieve the information through a standard control transfer.
508          *
509          * This function must be non-blocking.
510          * Return:
511          * - 0 on success
512          * - LIBUSB_ERROR_NO_DEVICE if the device has been disconnected since it
513          *   was opened
514          * - LIBUSB_ERROR_NOT_SUPPORTED if the value cannot be retrieved without
515          *   blocking
516          * - another LIBUSB_ERROR code on other failure.
517          */
518         int (*get_configuration)(struct libusb_device_handle *handle, int *config);
519
520         /* Set the active configuration for a device.
521          *
522          * A configuration value of -1 should put the device in unconfigured state.
523          *
524          * This function can block.
525          *
526          * Return:
527          * - 0 on success
528          * - LIBUSB_ERROR_NOT_FOUND if the configuration does not exist
529          * - LIBUSB_ERROR_BUSY if interfaces are currently claimed (and hence
530          *   configuration cannot be changed)
531          * - LIBUSB_ERROR_NO_DEVICE if the device has been disconnected since it
532          *   was opened
533          * - another LIBUSB_ERROR code on other failure.
534          */
535         int (*set_configuration)(struct libusb_device_handle *handle, int config);
536
537         /* Claim an interface. When claimed, the application can then perform
538          * I/O to an interface's endpoints.
539          *
540          * This function should not generate any bus I/O and should not block.
541          * Interface claiming is a logical operation that simply ensures that
542          * no other drivers/applications are using the interface, and after
543          * claiming, no other drivers/applicatiosn can use the interface because
544          * we now "own" it.
545          *
546          * Return:
547          * - 0 on success
548          * - LIBUSB_ERROR_NOT_FOUND if the interface does not exist
549          * - LIBUSB_ERROR_BUSY if the interface is in use by another driver/app
550          * - LIBUSB_ERROR_NO_DEVICE if the device has been disconnected since it
551          *   was opened
552          * - another LIBUSB_ERROR code on other failure
553          */
554         int (*claim_interface)(struct libusb_device_handle *handle, int iface);
555
556         /* Release a previously claimed interface.
557          *
558          * This function should also generate a SET_INTERFACE control request,
559          * resetting the alternate setting of that interface to 0. It's OK for
560          * this function to block as a result.
561          *
562          * You will only ever be asked to release an interface which was
563          * successfully claimed earlier.
564          *
565          * Return:
566          * - 0 on success
567          * - LIBUSB_ERROR_NO_DEVICE if the device has been disconnected since it
568          *   was opened
569          * - another LIBUSB_ERROR code on other failure
570          */
571         int (*release_interface)(struct libusb_device_handle *handle, int iface);
572
573         /* Set the alternate setting for an interface.
574          *
575          * You will only ever be asked to set the alternate setting for an
576          * interface which was successfully claimed earlier.
577          *
578          * It's OK for this function to block.
579          *
580          * Return:
581          * - 0 on success
582          * - LIBUSB_ERROR_NOT_FOUND if the alternate setting does not exist
583          * - LIBUSB_ERROR_NO_DEVICE if the device has been disconnected since it
584          *   was opened
585          * - another LIBUSB_ERROR code on other failure
586          */
587         int (*set_interface_altsetting)(struct libusb_device_handle *handle,
588                 int iface, int altsetting);
589
590         /* Clear a halt/stall condition on an endpoint.
591          *
592          * It's OK for this function to block.
593          *
594          * Return:
595          * - 0 on success
596          * - LIBUSB_ERROR_NOT_FOUND if the endpoint 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 (*clear_halt)(struct libusb_device_handle *handle,
602                 unsigned char endpoint);
603
604         /* Perform a USB port reset to reinitialize a device.
605          *
606          * If possible, the handle should still be usable after the reset
607          * completes, assuming that the device descriptors did not change during
608          * reset and all previous interface state can be restored.
609          *
610          * If something changes, or you cannot easily locate/verify the resetted
611          * device, return LIBUSB_ERROR_NOT_FOUND. This prompts the application
612          * to close the old handle and re-enumerate the device.
613          *
614          * Return:
615          * - 0 on success
616          * - LIBUSB_ERROR_NOT_FOUND if re-enumeration is required, or if the device
617          *   has been disconnected since it was opened
618          * - another LIBUSB_ERROR code on other failure
619          */
620         int (*reset_device)(struct libusb_device_handle *handle);
621
622         /* Determine if a kernel driver is active on an interface. Optional.
623          *
624          * The presence of a kernel driver on an interface indicates that any
625          * calls to claim_interface would fail with the LIBUSB_ERROR_BUSY code.
626          *
627          * Return:
628          * - 0 if no driver is active
629          * - 1 if a driver is active
630          * - LIBUSB_ERROR_NO_DEVICE if the device has been disconnected since it
631          *   was opened
632          * - another LIBUSB_ERROR code on other failure
633          */
634         int (*kernel_driver_active)(struct libusb_device_handle *handle,
635                 int interface);
636         
637         /* Detach a kernel driver from an interface. Optional.
638          *
639          * After detaching a kernel driver, the interface should be available
640          * for claim.
641          *
642          * Return:
643          * - 0 on success
644          * - LIBUSB_ERROR_NOT_FOUND if no kernel driver was active
645          * - LIBUSB_ERROR_INVALID_PARAM if the interface does not exist
646          * - LIBUSB_ERROR_NO_DEVICE if the device has been disconnected since it
647          *   was opened
648          * - another LIBUSB_ERROR code on other failure
649          */
650         int (*detach_kernel_driver)(struct libusb_device_handle *handle,
651                 int interface);
652
653         /* Attach a kernel driver to an interface. Optional.
654          *
655          * Reattach a kernel driver to the device.
656          *
657          * Return:
658          * - 0 on success
659          * - LIBUSB_ERROR_NOT_FOUND if no kernel driver was active
660          * - LIBUSB_ERROR_INVALID_PARAM if the interface does not exist
661          * - LIBUSB_ERROR_NO_DEVICE if the device has been disconnected since it
662          *   was opened
663          * - LIBUSB_ERROR_BUSY if a program or driver has claimed the interface,
664          *   preventing reattachment
665          * - another LIBUSB_ERROR code on other failure
666          */
667         int (*attach_kernel_driver)(struct libusb_device_handle *handle,
668                 int interface);
669
670         /* Destroy a device. Optional.
671          *
672          * This function is called when the last reference to a device is
673          * destroyed. It should free any resources allocated in the get_device_list
674          * path.
675          */
676         void (*destroy_device)(struct libusb_device *dev);
677
678         /* Submit a transfer. Your implementation should take the transfer,
679          * morph it into whatever form your platform requires, and submit it
680          * asynchronously.
681          *
682          * This function must not block.
683          *
684          * Return:
685          * - 0 on success
686          * - LIBUSB_ERROR_NO_DEVICE if the device has been disconnected
687          * - another LIBUSB_ERROR code on other failure
688          */
689         int (*submit_transfer)(struct usbi_transfer *itransfer);
690
691         /* Cancel a previously submitted transfer.
692          *
693          * This function must not block. The transfer cancellation must complete
694          * later, resulting in a call to usbi_handle_transfer_cancellation()
695          * from the context of handle_events.
696          */
697         int (*cancel_transfer)(struct usbi_transfer *itransfer);
698
699         /* Clear a transfer as if it has completed or cancelled, but do not
700          * report any completion/cancellation to the library. You should free
701          * all private data from the transfer as if you were just about to report
702          * completion or cancellation.
703          *
704          * This function might seem a bit out of place. It is used when libusb
705          * detects a disconnected device - it calls this function for all pending
706          * transfers before reporting completion (with the disconnect code) to
707          * the user. Maybe we can improve upon this internal interface in future.
708          */
709         void (*clear_transfer_priv)(struct usbi_transfer *itransfer);
710
711         /* Handle any pending events. This involves monitoring any active
712          * transfers and processing their completion or cancellation.
713          *
714          * The function is passed an array of pollfd structures (size nfds)
715          * as a result of the poll() system call. The num_ready parameter
716          * indicates the number of file descriptors that have reported events
717          * (i.e. the poll() return value). This should be enough information
718          * for you to determine which actions need to be taken on the currently
719          * active transfers.
720          *
721          * For any cancelled transfers, call usbi_handle_transfer_cancellation().
722          * For completed transfers, call usbi_handle_transfer_completion().
723          * For control/bulk/interrupt transfers, populate the "transferred"
724          * element of the appropriate usbi_transfer structure before calling the
725          * above functions. For isochronous transfers, populate the status and
726          * transferred fields of the iso packet descriptors of the transfer.
727          *
728          * This function should also be able to detect disconnection of the
729          * device, reporting that situation with usbi_handle_disconnect().
730          *
731          * Return 0 on success, or a LIBUSB_ERROR code on failure.
732          */
733         int (*handle_events)(struct libusb_context *ctx,
734                 struct pollfd *fds, nfds_t nfds, int num_ready);
735
736         /* Number of bytes to reserve for per-device private backend data.
737          * This private data area is accessible through the "os_priv" field of
738          * struct libusb_device. */
739         size_t device_priv_size;
740
741         /* Number of bytes to reserve for per-handle private backend data.
742          * This private data area is accessible through the "os_priv" field of
743          * struct libusb_device. */
744         size_t device_handle_priv_size;
745
746         /* Number of bytes to reserve for per-transfer private backend data.
747          * This private data area is accessible by calling
748          * usbi_transfer_get_os_priv() on the appropriate usbi_transfer instance.
749          */
750         size_t transfer_priv_size;
751
752         /* Mumber of additional bytes for os_priv for each iso packet.
753          * Can your backend use this? */
754         /* FIXME: linux can't use this any more. if other OS's cannot either,
755          * then remove this */
756         size_t add_iso_packet_size;
757 };
758
759 extern const struct usbi_os_backend * const usbi_backend;
760
761 extern const struct usbi_os_backend linux_usbfs_backend;
762
763 #endif
764