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