Core: Add HID and kernel detach capability detection for all backends
[libusbx.git] / libusb / libusbi.h
blobed95d43a340154ea80443a17ff9867b617387b20
1 /*
2 * Internal header for libusbx
3 * Copyright © 2007-2009 Daniel Drake <dsd@gentoo.org>
4 * Copyright © 2001 Johannes Erdfelt <johannes@erdfelt.com>
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.
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.
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
21 #ifndef LIBUSBI_H
22 #define LIBUSBI_H
24 #include "config.h"
26 #include <stddef.h>
27 #include <stdint.h>
28 #include <time.h>
29 #include <stdarg.h>
30 #ifdef HAVE_POLL_H
31 #include <poll.h>
32 #endif
34 #ifdef HAVE_MISSING_H
35 #include "missing.h"
36 #endif
37 #include "libusb.h"
38 #include "version.h"
40 /* Inside the libusbx code, mark all public functions as follows:
41 * return_type API_EXPORTED function_name(params) { ... }
42 * But if the function returns a pointer, mark it as follows:
43 * DEFAULT_VISIBILITY return_type * LIBUSB_CALL function_name(params) { ... }
44 * In the libusbx public header, mark all declarations as:
45 * return_type LIBUSB_CALL function_name(params);
47 #define API_EXPORTED LIBUSB_CALL DEFAULT_VISIBILITY
49 #define DEVICE_DESC_LENGTH 18
51 #define USB_MAXENDPOINTS 32
52 #define USB_MAXINTERFACES 32
53 #define USB_MAXCONFIG 8
55 /* Backend specific capabilities */
56 #define USBI_CAP_HAS_HID_ACCESS 0x00010000
57 #define USBI_CAP_SUPPORTS_DETACH_KERNEL_DRIVER 0x00020000
59 /* The following is used to silence warnings for unused variables */
60 #define UNUSED(var) do { (void)(var); } while(0)
62 struct list_head {
63 struct list_head *prev, *next;
66 /* Get an entry from the list
67 * ptr - the address of this list_head element in "type"
68 * type - the data type that contains "member"
69 * member - the list_head element in "type"
71 #define list_entry(ptr, type, member) \
72 ((type *)((uintptr_t)(ptr) - (uintptr_t)offsetof(type, member)))
74 /* Get each entry from a list
75 * pos - A structure pointer has a "member" element
76 * head - list head
77 * member - the list_head element in "pos"
78 * type - the type of the first parameter
80 #define list_for_each_entry(pos, head, member, type) \
81 for (pos = list_entry((head)->next, type, member); \
82 &pos->member != (head); \
83 pos = list_entry(pos->member.next, type, member))
85 #define list_for_each_entry_safe(pos, n, head, member, type) \
86 for (pos = list_entry((head)->next, type, member), \
87 n = list_entry(pos->member.next, type, member); \
88 &pos->member != (head); \
89 pos = n, n = list_entry(n->member.next, type, member))
91 #define list_empty(entry) ((entry)->next == (entry))
93 static inline void list_init(struct list_head *entry)
95 entry->prev = entry->next = entry;
98 static inline void list_add(struct list_head *entry, struct list_head *head)
100 entry->next = head->next;
101 entry->prev = head;
103 head->next->prev = entry;
104 head->next = entry;
107 static inline void list_add_tail(struct list_head *entry,
108 struct list_head *head)
110 entry->next = head;
111 entry->prev = head->prev;
113 head->prev->next = entry;
114 head->prev = entry;
117 static inline void list_del(struct list_head *entry)
119 entry->next->prev = entry->prev;
120 entry->prev->next = entry->next;
121 entry->next = entry->prev = NULL;
124 static inline void *usbi_reallocf(void *ptr, size_t size)
126 void *ret = realloc(ptr, size);
127 if (!ret)
128 free(ptr);
129 return ret;
132 #define container_of(ptr, type, member) ({ \
133 const typeof( ((type *)0)->member ) *mptr = (ptr); \
134 (type *)( (char *)mptr - offsetof(type,member) );})
136 #define MIN(a, b) ((a) < (b) ? (a) : (b))
137 #define MAX(a, b) ((a) > (b) ? (a) : (b))
139 #define TIMESPEC_IS_SET(ts) ((ts)->tv_sec != 0 || (ts)->tv_nsec != 0)
141 void usbi_log(struct libusb_context *ctx, enum libusb_log_level level,
142 const char *function, const char *format, ...);
144 void usbi_log_v(struct libusb_context *ctx, enum libusb_log_level level,
145 const char *function, const char *format, va_list args);
147 #if !defined(_MSC_VER) || _MSC_VER >= 1400
149 #ifdef ENABLE_LOGGING
150 #define _usbi_log(ctx, level, ...) usbi_log(ctx, level, __FUNCTION__, __VA_ARGS__)
151 #define usbi_dbg(...) _usbi_log(NULL, LIBUSB_LOG_LEVEL_DEBUG, __VA_ARGS__)
152 #else
153 #define _usbi_log(ctx, level, ...) do { (void)(ctx); } while(0)
154 #define usbi_dbg(...) do {} while(0)
155 #endif
157 #define usbi_info(ctx, ...) _usbi_log(ctx, LIBUSB_LOG_LEVEL_INFO, __VA_ARGS__)
158 #define usbi_warn(ctx, ...) _usbi_log(ctx, LIBUSB_LOG_LEVEL_WARNING, __VA_ARGS__)
159 #define usbi_err(ctx, ...) _usbi_log(ctx, LIBUSB_LOG_LEVEL_ERROR, __VA_ARGS__)
161 #else /* !defined(_MSC_VER) || _MSC_VER >= 1400 */
163 #ifdef ENABLE_LOGGING
164 #define LOG_BODY(ctxt, level) \
166 va_list args; \
167 va_start (args, format); \
168 usbi_log_v(ctxt, level, "", format, args); \
169 va_end(args); \
171 #else
172 #define LOG_BODY(ctxt, level) do { (void)(ctxt); } while(0)
173 #endif
175 static inline void usbi_info(struct libusb_context *ctx, const char *format,
176 ...)
177 LOG_BODY(ctx,LIBUSB_LOG_LEVEL_INFO)
178 static inline void usbi_warn(struct libusb_context *ctx, const char *format,
179 ...)
180 LOG_BODY(ctx,LIBUSB_LOG_LEVEL_WARNING)
181 static inline void usbi_err( struct libusb_context *ctx, const char *format,
182 ...)
183 LOG_BODY(ctx,LIBUSB_LOG_LEVEL_ERROR)
185 static inline void usbi_dbg(const char *format, ...)
186 LOG_BODY(NULL,LIBUSB_LOG_LEVEL_DEBUG)
188 #endif /* !defined(_MSC_VER) || _MSC_VER >= 1400 */
190 #define USBI_GET_CONTEXT(ctx) if (!(ctx)) (ctx) = usbi_default_context
191 #define DEVICE_CTX(dev) ((dev)->ctx)
192 #define HANDLE_CTX(handle) (DEVICE_CTX((handle)->dev))
193 #define TRANSFER_CTX(transfer) (HANDLE_CTX((transfer)->dev_handle))
194 #define ITRANSFER_CTX(transfer) \
195 (TRANSFER_CTX(USBI_TRANSFER_TO_LIBUSB_TRANSFER(transfer)))
197 #define IS_EPIN(ep) (0 != ((ep) & LIBUSB_ENDPOINT_IN))
198 #define IS_EPOUT(ep) (!IS_EPIN(ep))
199 #define IS_XFERIN(xfer) (0 != ((xfer)->endpoint & LIBUSB_ENDPOINT_IN))
200 #define IS_XFEROUT(xfer) (!IS_XFERIN(xfer))
202 /* Internal abstraction for thread synchronization */
203 #if defined(THREADS_POSIX)
204 #include "os/threads_posix.h"
205 #elif defined(OS_WINDOWS) || defined(OS_WINCE)
206 #include <os/threads_windows.h>
207 #endif
209 extern struct libusb_context *usbi_default_context;
211 struct libusb_context {
212 int debug;
213 int debug_fixed;
215 /* internal control pipe, used for interrupting event handling when
216 * something needs to modify poll fds. */
217 int ctrl_pipe[2];
219 struct list_head usb_devs;
220 usbi_mutex_t usb_devs_lock;
222 /* A list of open handles. Backends are free to traverse this if required.
224 struct list_head open_devs;
225 usbi_mutex_t open_devs_lock;
227 /* this is a list of in-flight transfer handles, sorted by timeout
228 * expiration. URBs to timeout the soonest are placed at the beginning of
229 * the list, URBs that will time out later are placed after, and urbs with
230 * infinite timeout are always placed at the very end. */
231 struct list_head flying_transfers;
232 usbi_mutex_t flying_transfers_lock;
234 /* list of poll fds */
235 struct list_head pollfds;
236 usbi_mutex_t pollfds_lock;
238 /* a counter that is set when we want to interrupt event handling, in order
239 * to modify the poll fd set. and a lock to protect it. */
240 unsigned int pollfd_modify;
241 usbi_mutex_t pollfd_modify_lock;
243 /* user callbacks for pollfd changes */
244 libusb_pollfd_added_cb fd_added_cb;
245 libusb_pollfd_removed_cb fd_removed_cb;
246 void *fd_cb_user_data;
248 /* ensures that only one thread is handling events at any one time */
249 usbi_mutex_t events_lock;
251 /* used to see if there is an active thread doing event handling */
252 int event_handler_active;
254 /* used to wait for event completion in threads other than the one that is
255 * event handling */
256 usbi_mutex_t event_waiters_lock;
257 usbi_cond_t event_waiters_cond;
259 #ifdef USBI_TIMERFD_AVAILABLE
260 /* used for timeout handling, if supported by OS.
261 * this timerfd is maintained to trigger on the next pending timeout */
262 int timerfd;
263 #endif
266 #ifdef USBI_TIMERFD_AVAILABLE
267 #define usbi_using_timerfd(ctx) ((ctx)->timerfd >= 0)
268 #else
269 #define usbi_using_timerfd(ctx) (0)
270 #endif
272 struct libusb_device {
273 /* lock protects refcnt, everything else is finalized at initialization
274 * time */
275 usbi_mutex_t lock;
276 int refcnt;
278 struct libusb_context *ctx;
280 uint8_t bus_number;
281 uint8_t port_number;
282 struct libusb_device* parent_dev;
283 uint8_t device_address;
284 uint8_t num_configurations;
285 enum libusb_speed speed;
287 struct list_head list;
288 unsigned long session_data;
289 unsigned char os_priv[0];
292 struct libusb_device_handle {
293 /* lock protects claimed_interfaces */
294 usbi_mutex_t lock;
295 unsigned long claimed_interfaces;
297 struct list_head list;
298 struct libusb_device *dev;
299 unsigned char os_priv[0];
302 enum {
303 USBI_CLOCK_MONOTONIC,
304 USBI_CLOCK_REALTIME
307 /* in-memory transfer layout:
309 * 1. struct usbi_transfer
310 * 2. struct libusb_transfer (which includes iso packets) [variable size]
311 * 3. os private data [variable size]
313 * from a libusb_transfer, you can get the usbi_transfer by rewinding the
314 * appropriate number of bytes.
315 * the usbi_transfer includes the number of allocated packets, so you can
316 * determine the size of the transfer and hence the start and length of the
317 * OS-private data.
320 struct usbi_transfer {
321 int num_iso_packets;
322 struct list_head list;
323 struct timeval timeout;
324 int transferred;
325 uint8_t flags;
327 /* this lock is held during libusb_submit_transfer() and
328 * libusb_cancel_transfer() (allowing the OS backend to prevent duplicate
329 * cancellation, submission-during-cancellation, etc). the OS backend
330 * should also take this lock in the handle_events path, to prevent the user
331 * cancelling the transfer from another thread while you are processing
332 * its completion (presumably there would be races within your OS backend
333 * if this were possible). */
334 usbi_mutex_t lock;
337 enum usbi_transfer_flags {
338 /* The transfer has timed out */
339 USBI_TRANSFER_TIMED_OUT = 1 << 0,
341 /* Set by backend submit_transfer() if the OS handles timeout */
342 USBI_TRANSFER_OS_HANDLES_TIMEOUT = 1 << 1,
344 /* Cancellation was requested via libusb_cancel_transfer() */
345 USBI_TRANSFER_CANCELLING = 1 << 2,
347 /* Operation on the transfer failed because the device disappeared */
348 USBI_TRANSFER_DEVICE_DISAPPEARED = 1 << 3,
350 /* Set by backend submit_transfer() if the fds in use have been updated */
351 USBI_TRANSFER_UPDATED_FDS = 1 << 4,
354 #define USBI_TRANSFER_TO_LIBUSB_TRANSFER(transfer) \
355 ((struct libusb_transfer *)(((unsigned char *)(transfer)) \
356 + sizeof(struct usbi_transfer)))
357 #define LIBUSB_TRANSFER_TO_USBI_TRANSFER(transfer) \
358 ((struct usbi_transfer *)(((unsigned char *)(transfer)) \
359 - sizeof(struct usbi_transfer)))
361 static inline void *usbi_transfer_get_os_priv(struct usbi_transfer *transfer)
363 return ((unsigned char *)transfer) + sizeof(struct usbi_transfer)
364 + sizeof(struct libusb_transfer)
365 + (transfer->num_iso_packets
366 * sizeof(struct libusb_iso_packet_descriptor));
369 /* bus structures */
371 /* All standard descriptors have these 2 fields in common */
372 struct usb_descriptor_header {
373 uint8_t bLength;
374 uint8_t bDescriptorType;
377 /* shared data and functions */
379 int usbi_io_init(struct libusb_context *ctx);
380 void usbi_io_exit(struct libusb_context *ctx);
382 struct libusb_device *usbi_alloc_device(struct libusb_context *ctx,
383 unsigned long session_id);
384 struct libusb_device *usbi_get_device_by_session_id(struct libusb_context *ctx,
385 unsigned long session_id);
386 int usbi_sanitize_device(struct libusb_device *dev);
387 void usbi_handle_disconnect(struct libusb_device_handle *handle);
389 int usbi_handle_transfer_completion(struct usbi_transfer *itransfer,
390 enum libusb_transfer_status status);
391 int usbi_handle_transfer_cancellation(struct usbi_transfer *transfer);
393 int usbi_parse_descriptor(unsigned char *source, const char *descriptor,
394 void *dest, int host_endian);
395 int usbi_get_config_index_by_value(struct libusb_device *dev,
396 uint8_t bConfigurationValue, int *idx);
398 /* Internal abstraction for poll (needs struct usbi_transfer on Windows) */
399 #if defined(OS_LINUX) || defined(OS_DARWIN) || defined(OS_OPENBSD)
400 #include <unistd.h>
401 #include "os/poll_posix.h"
402 #elif defined(OS_WINDOWS) || defined(OS_WINCE)
403 #include <os/poll_windows.h>
404 #endif
406 #if (defined(OS_WINDOWS) || defined(OS_WINCE)) && !defined(__GCC__)
407 #undef HAVE_GETTIMEOFDAY
408 int usbi_gettimeofday(struct timeval *tp, void *tzp);
409 #define LIBUSB_GETTIMEOFDAY_WIN32
410 #define HAVE_USBI_GETTIMEOFDAY
411 #else
412 #ifdef HAVE_GETTIMEOFDAY
413 #define usbi_gettimeofday(tv, tz) gettimeofday((tv), (tz))
414 #define HAVE_USBI_GETTIMEOFDAY
415 #endif
416 #endif
418 struct usbi_pollfd {
419 /* must come first */
420 struct libusb_pollfd pollfd;
422 struct list_head list;
425 int usbi_add_pollfd(struct libusb_context *ctx, int fd, short events);
426 void usbi_remove_pollfd(struct libusb_context *ctx, int fd);
427 void usbi_fd_notification(struct libusb_context *ctx);
429 /* device discovery */
431 /* we traverse usbfs without knowing how many devices we are going to find.
432 * so we create this discovered_devs model which is similar to a linked-list
433 * which grows when required. it can be freed once discovery has completed,
434 * eliminating the need for a list node in the libusb_device structure
435 * itself. */
436 struct discovered_devs {
437 size_t len;
438 size_t capacity;
439 struct libusb_device *devices[0];
442 struct discovered_devs *discovered_devs_append(
443 struct discovered_devs *discdevs, struct libusb_device *dev);
445 /* OS abstraction */
447 /* This is the interface that OS backends need to implement.
448 * All fields are mandatory, except ones explicitly noted as optional. */
449 struct usbi_os_backend {
450 /* A human-readable name for your backend, e.g. "Linux usbfs" */
451 const char *name;
453 /* Binary mask for backend specific capabilities */
454 uint32_t caps;
456 /* Perform initialization of your backend. You might use this function
457 * to determine specific capabilities of the system, allocate required
458 * data structures for later, etc.
460 * This function is called when a libusbx user initializes the library
461 * prior to use.
463 * Return 0 on success, or a LIBUSB_ERROR code on failure.
465 int (*init)(struct libusb_context *ctx);
467 /* Deinitialization. Optional. This function should destroy anything
468 * that was set up by init.
470 * This function is called when the user deinitializes the library.
472 void (*exit)(void);
474 /* Enumerate all the USB devices on the system, returning them in a list
475 * of discovered devices.
477 * Your implementation should enumerate all devices on the system,
478 * regardless of whether they have been seen before or not.
480 * When you have found a device, compute a session ID for it. The session
481 * ID should uniquely represent that particular device for that particular
482 * connection session since boot (i.e. if you disconnect and reconnect a
483 * device immediately after, it should be assigned a different session ID).
484 * If your OS cannot provide a unique session ID as described above,
485 * presenting a session ID of (bus_number << 8 | device_address) should
486 * be sufficient. Bus numbers and device addresses wrap and get reused,
487 * but that is an unlikely case.
489 * After computing a session ID for a device, call
490 * usbi_get_device_by_session_id(). This function checks if libusbx already
491 * knows about the device, and if so, it provides you with a libusb_device
492 * structure for it.
494 * If usbi_get_device_by_session_id() returns NULL, it is time to allocate
495 * a new device structure for the device. Call usbi_alloc_device() to
496 * obtain a new libusb_device structure with reference count 1. Populate
497 * the bus_number and device_address attributes of the new device, and
498 * perform any other internal backend initialization you need to do. At
499 * this point, you should be ready to provide device descriptors and so
500 * on through the get_*_descriptor functions. Finally, call
501 * usbi_sanitize_device() to perform some final sanity checks on the
502 * device. Assuming all of the above succeeded, we can now continue.
503 * If any of the above failed, remember to unreference the device that
504 * was returned by usbi_alloc_device().
506 * At this stage we have a populated libusb_device structure (either one
507 * that was found earlier, or one that we have just allocated and
508 * populated). This can now be added to the discovered devices list
509 * using discovered_devs_append(). Note that discovered_devs_append()
510 * may reallocate the list, returning a new location for it, and also
511 * note that reallocation can fail. Your backend should handle these
512 * error conditions appropriately.
514 * This function should not generate any bus I/O and should not block.
515 * If I/O is required (e.g. reading the active configuration value), it is
516 * OK to ignore these suggestions :)
518 * This function is executed when the user wishes to retrieve a list
519 * of USB devices connected to the system.
521 * Return 0 on success, or a LIBUSB_ERROR code on failure.
523 int (*get_device_list)(struct libusb_context *ctx,
524 struct discovered_devs **discdevs);
526 /* Open a device for I/O and other USB operations. The device handle
527 * is preallocated for you, you can retrieve the device in question
528 * through handle->dev.
530 * Your backend should allocate any internal resources required for I/O
531 * and other operations so that those operations can happen (hopefully)
532 * without hiccup. This is also a good place to inform libusbx that it
533 * should monitor certain file descriptors related to this device -
534 * see the usbi_add_pollfd() function.
536 * This function should not generate any bus I/O and should not block.
538 * This function is called when the user attempts to obtain a device
539 * handle for a device.
541 * Return:
542 * - 0 on success
543 * - LIBUSB_ERROR_ACCESS if the user has insufficient permissions
544 * - LIBUSB_ERROR_NO_DEVICE if the device has been disconnected since
545 * discovery
546 * - another LIBUSB_ERROR code on other failure
548 * Do not worry about freeing the handle on failed open, the upper layers
549 * do this for you.
551 int (*open)(struct libusb_device_handle *handle);
553 /* Close a device such that the handle cannot be used again. Your backend
554 * should destroy any resources that were allocated in the open path.
555 * This may also be a good place to call usbi_remove_pollfd() to inform
556 * libusbx of any file descriptors associated with this device that should
557 * no longer be monitored.
559 * This function is called when the user closes a device handle.
561 void (*close)(struct libusb_device_handle *handle);
563 /* Retrieve the device descriptor from a device.
565 * The descriptor should be retrieved from memory, NOT via bus I/O to the
566 * device. This means that you may have to cache it in a private structure
567 * during get_device_list enumeration. Alternatively, you may be able
568 * to retrieve it from a kernel interface (some Linux setups can do this)
569 * still without generating bus I/O.
571 * This function is expected to write DEVICE_DESC_LENGTH (18) bytes into
572 * buffer, which is guaranteed to be big enough.
574 * This function is called when sanity-checking a device before adding
575 * it to the list of discovered devices, and also when the user requests
576 * to read the device descriptor.
578 * This function is expected to return the descriptor in bus-endian format
579 * (LE). If it returns the multi-byte values in host-endian format,
580 * set the host_endian output parameter to "1".
582 * Return 0 on success or a LIBUSB_ERROR code on failure.
584 int (*get_device_descriptor)(struct libusb_device *device,
585 unsigned char *buffer, int *host_endian);
587 /* Get the ACTIVE configuration descriptor for a device.
589 * The descriptor should be retrieved from memory, NOT via bus I/O to the
590 * device. This means that you may have to cache it in a private structure
591 * during get_device_list enumeration. You may also have to keep track
592 * of which configuration is active when the user changes it.
594 * This function is expected to write len bytes of data into buffer, which
595 * is guaranteed to be big enough. If you can only do a partial write,
596 * return an error code.
598 * This function is expected to return the descriptor in bus-endian format
599 * (LE). If it returns the multi-byte values in host-endian format,
600 * set the host_endian output parameter to "1".
602 * Return:
603 * - 0 on success
604 * - LIBUSB_ERROR_NOT_FOUND if the device is in unconfigured state
605 * - another LIBUSB_ERROR code on other failure
607 int (*get_active_config_descriptor)(struct libusb_device *device,
608 unsigned char *buffer, size_t len, int *host_endian);
610 /* Get a specific configuration descriptor for a device.
612 * The descriptor should be retrieved from memory, NOT via bus I/O to the
613 * device. This means that you may have to cache it in a private structure
614 * during get_device_list enumeration.
616 * The requested descriptor is expressed as a zero-based index (i.e. 0
617 * indicates that we are requesting the first descriptor). The index does
618 * not (necessarily) equal the bConfigurationValue of the configuration
619 * being requested.
621 * This function is expected to write len bytes of data into buffer, which
622 * is guaranteed to be big enough. If you can only do a partial write,
623 * return an error code.
625 * This function is expected to return the descriptor in bus-endian format
626 * (LE). If it returns the multi-byte values in host-endian format,
627 * set the host_endian output parameter to "1".
629 * Return 0 on success or a LIBUSB_ERROR code on failure.
631 int (*get_config_descriptor)(struct libusb_device *device,
632 uint8_t config_index, unsigned char *buffer, size_t len,
633 int *host_endian);
635 /* Get the bConfigurationValue for the active configuration for a device.
636 * Optional. This should only be implemented if you can retrieve it from
637 * cache (don't generate I/O).
639 * If you cannot retrieve this from cache, either do not implement this
640 * function, or return LIBUSB_ERROR_NOT_SUPPORTED. This will cause
641 * libusbx to retrieve the information through a standard control transfer.
643 * This function must be non-blocking.
644 * Return:
645 * - 0 on success
646 * - LIBUSB_ERROR_NO_DEVICE if the device has been disconnected since it
647 * was opened
648 * - LIBUSB_ERROR_NOT_SUPPORTED if the value cannot be retrieved without
649 * blocking
650 * - another LIBUSB_ERROR code on other failure.
652 int (*get_configuration)(struct libusb_device_handle *handle, int *config);
654 /* Set the active configuration for a device.
656 * A configuration value of -1 should put the device in unconfigured state.
658 * This function can block.
660 * Return:
661 * - 0 on success
662 * - LIBUSB_ERROR_NOT_FOUND if the configuration does not exist
663 * - LIBUSB_ERROR_BUSY if interfaces are currently claimed (and hence
664 * configuration cannot be changed)
665 * - LIBUSB_ERROR_NO_DEVICE if the device has been disconnected since it
666 * was opened
667 * - another LIBUSB_ERROR code on other failure.
669 int (*set_configuration)(struct libusb_device_handle *handle, int config);
671 /* Claim an interface. When claimed, the application can then perform
672 * I/O to an interface's endpoints.
674 * This function should not generate any bus I/O and should not block.
675 * Interface claiming is a logical operation that simply ensures that
676 * no other drivers/applications are using the interface, and after
677 * claiming, no other drivers/applicatiosn can use the interface because
678 * we now "own" it.
680 * Return:
681 * - 0 on success
682 * - LIBUSB_ERROR_NOT_FOUND if the interface does not exist
683 * - LIBUSB_ERROR_BUSY if the interface is in use by another driver/app
684 * - LIBUSB_ERROR_NO_DEVICE if the device has been disconnected since it
685 * was opened
686 * - another LIBUSB_ERROR code on other failure
688 int (*claim_interface)(struct libusb_device_handle *handle, int interface_number);
690 /* Release a previously claimed interface.
692 * This function should also generate a SET_INTERFACE control request,
693 * resetting the alternate setting of that interface to 0. It's OK for
694 * this function to block as a result.
696 * You will only ever be asked to release an interface which was
697 * successfully claimed earlier.
699 * Return:
700 * - 0 on success
701 * - LIBUSB_ERROR_NO_DEVICE if the device has been disconnected since it
702 * was opened
703 * - another LIBUSB_ERROR code on other failure
705 int (*release_interface)(struct libusb_device_handle *handle, int interface_number);
707 /* Set the alternate setting for an interface.
709 * You will only ever be asked to set the alternate setting for an
710 * interface which was successfully claimed earlier.
712 * It's OK for this function to block.
714 * Return:
715 * - 0 on success
716 * - LIBUSB_ERROR_NOT_FOUND if the alternate setting does not exist
717 * - LIBUSB_ERROR_NO_DEVICE if the device has been disconnected since it
718 * was opened
719 * - another LIBUSB_ERROR code on other failure
721 int (*set_interface_altsetting)(struct libusb_device_handle *handle,
722 int interface_number, int altsetting);
724 /* Clear a halt/stall condition on an endpoint.
726 * It's OK for this function to block.
728 * Return:
729 * - 0 on success
730 * - LIBUSB_ERROR_NOT_FOUND if the endpoint does not exist
731 * - LIBUSB_ERROR_NO_DEVICE if the device has been disconnected since it
732 * was opened
733 * - another LIBUSB_ERROR code on other failure
735 int (*clear_halt)(struct libusb_device_handle *handle,
736 unsigned char endpoint);
738 /* Perform a USB port reset to reinitialize a device.
740 * If possible, the handle should still be usable after the reset
741 * completes, assuming that the device descriptors did not change during
742 * reset and all previous interface state can be restored.
744 * If something changes, or you cannot easily locate/verify the resetted
745 * device, return LIBUSB_ERROR_NOT_FOUND. This prompts the application
746 * to close the old handle and re-enumerate the device.
748 * Return:
749 * - 0 on success
750 * - LIBUSB_ERROR_NOT_FOUND if re-enumeration is required, or if the device
751 * has been disconnected since it was opened
752 * - another LIBUSB_ERROR code on other failure
754 int (*reset_device)(struct libusb_device_handle *handle);
756 /* Determine if a kernel driver is active on an interface. Optional.
758 * The presence of a kernel driver on an interface indicates that any
759 * calls to claim_interface would fail with the LIBUSB_ERROR_BUSY code.
761 * Return:
762 * - 0 if no driver is active
763 * - 1 if a driver is active
764 * - LIBUSB_ERROR_NO_DEVICE if the device has been disconnected since it
765 * was opened
766 * - another LIBUSB_ERROR code on other failure
768 int (*kernel_driver_active)(struct libusb_device_handle *handle,
769 int interface_number);
771 /* Detach a kernel driver from an interface. Optional.
773 * After detaching a kernel driver, the interface should be available
774 * for claim.
776 * Return:
777 * - 0 on success
778 * - LIBUSB_ERROR_NOT_FOUND if no kernel driver was active
779 * - LIBUSB_ERROR_INVALID_PARAM if the interface does not exist
780 * - LIBUSB_ERROR_NO_DEVICE if the device has been disconnected since it
781 * was opened
782 * - another LIBUSB_ERROR code on other failure
784 int (*detach_kernel_driver)(struct libusb_device_handle *handle,
785 int interface_number);
787 /* Attach a kernel driver to an interface. Optional.
789 * Reattach a kernel driver to the device.
791 * Return:
792 * - 0 on success
793 * - LIBUSB_ERROR_NOT_FOUND if no kernel driver was active
794 * - LIBUSB_ERROR_INVALID_PARAM if the interface does not exist
795 * - LIBUSB_ERROR_NO_DEVICE if the device has been disconnected since it
796 * was opened
797 * - LIBUSB_ERROR_BUSY if a program or driver has claimed the interface,
798 * preventing reattachment
799 * - another LIBUSB_ERROR code on other failure
801 int (*attach_kernel_driver)(struct libusb_device_handle *handle,
802 int interface_number);
804 /* Destroy a device. Optional.
806 * This function is called when the last reference to a device is
807 * destroyed. It should free any resources allocated in the get_device_list
808 * path.
810 void (*destroy_device)(struct libusb_device *dev);
812 /* Submit a transfer. Your implementation should take the transfer,
813 * morph it into whatever form your platform requires, and submit it
814 * asynchronously.
816 * This function must not block.
818 * Return:
819 * - 0 on success
820 * - LIBUSB_ERROR_NO_DEVICE if the device has been disconnected
821 * - another LIBUSB_ERROR code on other failure
823 int (*submit_transfer)(struct usbi_transfer *itransfer);
825 /* Cancel a previously submitted transfer.
827 * This function must not block. The transfer cancellation must complete
828 * later, resulting in a call to usbi_handle_transfer_cancellation()
829 * from the context of handle_events.
831 int (*cancel_transfer)(struct usbi_transfer *itransfer);
833 /* Clear a transfer as if it has completed or cancelled, but do not
834 * report any completion/cancellation to the library. You should free
835 * all private data from the transfer as if you were just about to report
836 * completion or cancellation.
838 * This function might seem a bit out of place. It is used when libusbx
839 * detects a disconnected device - it calls this function for all pending
840 * transfers before reporting completion (with the disconnect code) to
841 * the user. Maybe we can improve upon this internal interface in future.
843 void (*clear_transfer_priv)(struct usbi_transfer *itransfer);
845 /* Handle any pending events. This involves monitoring any active
846 * transfers and processing their completion or cancellation.
848 * The function is passed an array of pollfd structures (size nfds)
849 * as a result of the poll() system call. The num_ready parameter
850 * indicates the number of file descriptors that have reported events
851 * (i.e. the poll() return value). This should be enough information
852 * for you to determine which actions need to be taken on the currently
853 * active transfers.
855 * For any cancelled transfers, call usbi_handle_transfer_cancellation().
856 * For completed transfers, call usbi_handle_transfer_completion().
857 * For control/bulk/interrupt transfers, populate the "transferred"
858 * element of the appropriate usbi_transfer structure before calling the
859 * above functions. For isochronous transfers, populate the status and
860 * transferred fields of the iso packet descriptors of the transfer.
862 * This function should also be able to detect disconnection of the
863 * device, reporting that situation with usbi_handle_disconnect().
865 * When processing an event related to a transfer, you probably want to
866 * take usbi_transfer.lock to prevent races. See the documentation for
867 * the usbi_transfer structure.
869 * Return 0 on success, or a LIBUSB_ERROR code on failure.
871 int (*handle_events)(struct libusb_context *ctx,
872 struct pollfd *fds, POLL_NFDS_TYPE nfds, int num_ready);
874 /* Get time from specified clock. At least two clocks must be implemented
875 by the backend: USBI_CLOCK_REALTIME, and USBI_CLOCK_MONOTONIC.
877 Description of clocks:
878 USBI_CLOCK_REALTIME : clock returns time since system epoch.
879 USBI_CLOCK_MONOTONIC: clock returns time since unspecified start
880 time (usually boot).
882 int (*clock_gettime)(int clkid, struct timespec *tp);
884 #ifdef USBI_TIMERFD_AVAILABLE
885 /* clock ID of the clock that should be used for timerfd */
886 clockid_t (*get_timerfd_clockid)(void);
887 #endif
889 /* Number of bytes to reserve for per-device private backend data.
890 * This private data area is accessible through the "os_priv" field of
891 * struct libusb_device. */
892 size_t device_priv_size;
894 /* Number of bytes to reserve for per-handle private backend data.
895 * This private data area is accessible through the "os_priv" field of
896 * struct libusb_device. */
897 size_t device_handle_priv_size;
899 /* Number of bytes to reserve for per-transfer private backend data.
900 * This private data area is accessible by calling
901 * usbi_transfer_get_os_priv() on the appropriate usbi_transfer instance.
903 size_t transfer_priv_size;
905 /* Mumber of additional bytes for os_priv for each iso packet.
906 * Can your backend use this? */
907 /* FIXME: linux can't use this any more. if other OS's cannot either,
908 * then remove this */
909 size_t add_iso_packet_size;
912 extern const struct usbi_os_backend * const usbi_backend;
914 extern const struct usbi_os_backend linux_usbfs_backend;
915 extern const struct usbi_os_backend darwin_backend;
916 extern const struct usbi_os_backend openbsd_backend;
917 extern const struct usbi_os_backend windows_backend;
918 extern const struct usbi_os_backend wince_backend;
920 #endif