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