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