Windows: Add new API calls to DLL .def file
[libusbx.git] / libusb / libusbi.h
blob41a6ba1faab1468daa6a0f2de7ee3e8c60df5ca2
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 #include <libusb.h>
35 #include "version.h"
37 /* Inside the libusbx code, mark all public functions as follows:
38 * return_type API_EXPORTED function_name(params) { ... }
39 * But if the function returns a pointer, mark it as follows:
40 * DEFAULT_VISIBILITY return_type * LIBUSB_CALL function_name(params) { ... }
41 * In the libusbx public header, mark all declarations as:
42 * return_type LIBUSB_CALL function_name(params);
44 #define API_EXPORTED LIBUSB_CALL DEFAULT_VISIBILITY
46 #define DEVICE_DESC_LENGTH 18
48 #define USB_MAXENDPOINTS 32
49 #define USB_MAXINTERFACES 32
50 #define USB_MAXCONFIG 8
52 struct list_head {
53 struct list_head *prev, *next;
56 /* Get an entry from the list
57 * ptr - the address of this list_head element in "type"
58 * type - the data type that contains "member"
59 * member - the list_head element in "type"
61 #define list_entry(ptr, type, member) \
62 ((type *)((uintptr_t)(ptr) - (uintptr_t)(&((type *)0L)->member)))
64 /* Get each entry from a list
65 * pos - A structure pointer has a "member" element
66 * head - list head
67 * member - the list_head element in "pos"
68 * type - the type of the first parameter
70 #define list_for_each_entry(pos, head, member, type) \
71 for (pos = list_entry((head)->next, type, member); \
72 &pos->member != (head); \
73 pos = list_entry(pos->member.next, type, member))
75 #define list_for_each_entry_safe(pos, n, head, member, type) \
76 for (pos = list_entry((head)->next, type, member), \
77 n = list_entry(pos->member.next, type, member); \
78 &pos->member != (head); \
79 pos = n, n = list_entry(n->member.next, type, member))
81 #define list_empty(entry) ((entry)->next == (entry))
83 static inline void list_init(struct list_head *entry)
85 entry->prev = entry->next = entry;
88 static inline void list_add(struct list_head *entry, struct list_head *head)
90 entry->next = head->next;
91 entry->prev = head;
93 head->next->prev = entry;
94 head->next = entry;
97 static inline void list_add_tail(struct list_head *entry,
98 struct list_head *head)
100 entry->next = head;
101 entry->prev = head->prev;
103 head->prev->next = entry;
104 head->prev = entry;
107 static inline void list_del(struct list_head *entry)
109 entry->next->prev = entry->prev;
110 entry->prev->next = entry->next;
113 #define container_of(ptr, type, member) ({ \
114 const typeof( ((type *)0)->member ) *mptr = (ptr); \
115 (type *)( (char *)mptr - offsetof(type,member) );})
117 #define MIN(a, b) ((a) < (b) ? (a) : (b))
118 #define MAX(a, b) ((a) > (b) ? (a) : (b))
120 #define TIMESPEC_IS_SET(ts) ((ts)->tv_sec != 0 || (ts)->tv_nsec != 0)
122 void usbi_log(struct libusb_context *ctx, enum usbi_log_level level,
123 const char *function, const char *format, ...);
125 void usbi_log_v(struct libusb_context *ctx, enum usbi_log_level level,
126 const char *function, const char *format, va_list args);
128 #if !defined(_MSC_VER) || _MSC_VER >= 1400
130 #ifdef ENABLE_LOGGING
131 #define _usbi_log(ctx, level, ...) usbi_log(ctx, level, __FUNCTION__, __VA_ARGS__)
132 #else
133 #define _usbi_log(ctx, level, ...) do { (void)(ctx); } while(0)
134 #endif
136 #ifdef ENABLE_DEBUG_LOGGING
137 #define usbi_dbg(...) _usbi_log(NULL, LOG_LEVEL_DEBUG, __VA_ARGS__)
138 #else
139 #define usbi_dbg(...) do {} while(0)
140 #endif
142 #define usbi_info(ctx, ...) _usbi_log(ctx, LOG_LEVEL_INFO, __VA_ARGS__)
143 #define usbi_warn(ctx, ...) _usbi_log(ctx, LOG_LEVEL_WARNING, __VA_ARGS__)
144 #define usbi_err(ctx, ...) _usbi_log(ctx, LOG_LEVEL_ERROR, __VA_ARGS__)
146 #else /* !defined(_MSC_VER) || _MSC_VER >= 1400 */
148 #ifdef ENABLE_LOGGING
149 #define LOG_BODY(ctxt, level) \
151 va_list args; \
152 va_start (args, format); \
153 usbi_log_v(ctxt, level, "", format, args); \
154 va_end(args); \
156 #else
157 #define LOG_BODY(ctxt, level) do { (void)(ctxt); } while(0)
158 #endif
160 static inline void usbi_info(struct libusb_context *ctx, const char *format,
161 ...)
162 LOG_BODY(ctx,LOG_LEVEL_INFO)
163 static inline void usbi_warn(struct libusb_context *ctx, const char *format,
164 ...)
165 LOG_BODY(ctx,LOG_LEVEL_WARNING)
166 static inline void usbi_err( struct libusb_context *ctx, const char *format,
167 ...)
168 LOG_BODY(ctx,LOG_LEVEL_ERROR)
170 static inline void usbi_dbg(const char *format, ...)
171 #ifdef ENABLE_DEBUG_LOGGING
172 LOG_BODY(NULL,LOG_LEVEL_DEBUG)
173 #else
175 #endif
177 #endif /* !defined(_MSC_VER) || _MSC_VER >= 1400 */
179 #define USBI_GET_CONTEXT(ctx) if (!(ctx)) (ctx) = usbi_default_context
180 #define DEVICE_CTX(dev) ((dev)->ctx)
181 #define HANDLE_CTX(handle) (DEVICE_CTX((handle)->dev))
182 #define TRANSFER_CTX(transfer) (HANDLE_CTX((transfer)->dev_handle))
183 #define ITRANSFER_CTX(transfer) \
184 (TRANSFER_CTX(USBI_TRANSFER_TO_LIBUSB_TRANSFER(transfer)))
186 #define IS_EPIN(ep) (0 != ((ep) & LIBUSB_ENDPOINT_IN))
187 #define IS_EPOUT(ep) (!IS_EPIN(ep))
188 #define IS_XFERIN(xfer) (0 != ((xfer)->endpoint & LIBUSB_ENDPOINT_IN))
189 #define IS_XFEROUT(xfer) (!IS_XFERIN(xfer))
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
198 #if defined(OS_LINUX) || defined(OS_DARWIN) || defined(OS_OPENBSD)
199 #include <unistd.h>
200 #include <os/poll_posix.h>
201 #elif defined(OS_WINDOWS)
202 #include <os/poll_windows.h>
203 #endif
205 #if defined(OS_WINDOWS) && !defined(__GCC__)
206 #undef HAVE_GETTIMEOFDAY
207 int usbi_gettimeofday(struct timeval *tp, void *tzp);
208 #define LIBUSB_GETTIMEOFDAY_WIN32
209 #define HAVE_USBI_GETTIMEOFDAY
210 #else
211 #ifdef HAVE_GETTIMEOFDAY
212 #define usbi_gettimeofday(tv, tz) gettimeofday((tv), (tz))
213 #define HAVE_USBI_GETTIMEOFDAY
214 #endif
215 #endif
217 extern struct libusb_context *usbi_default_context;
219 struct libusb_context {
220 int debug;
221 int debug_fixed;
223 /* internal control pipe, used for interrupting event handling when
224 * something needs to modify poll fds. */
225 int ctrl_pipe[2];
227 struct list_head usb_devs;
228 usbi_mutex_t usb_devs_lock;
230 /* A list of open handles. Backends are free to traverse this if required.
232 struct list_head open_devs;
233 usbi_mutex_t open_devs_lock;
235 /* this is a list of in-flight transfer handles, sorted by timeout
236 * expiration. URBs to timeout the soonest are placed at the beginning of
237 * the list, URBs that will time out later are placed after, and urbs with
238 * infinite timeout are always placed at the very end. */
239 struct list_head flying_transfers;
240 usbi_mutex_t flying_transfers_lock;
242 /* list of poll fds */
243 struct list_head pollfds;
244 usbi_mutex_t pollfds_lock;
246 /* a counter that is set when we want to interrupt event handling, in order
247 * to modify the poll fd set. and a lock to protect it. */
248 unsigned int pollfd_modify;
249 usbi_mutex_t pollfd_modify_lock;
251 /* user callbacks for pollfd changes */
252 libusb_pollfd_added_cb fd_added_cb;
253 libusb_pollfd_removed_cb fd_removed_cb;
254 void *fd_cb_user_data;
256 /* ensures that only one thread is handling events at any one time */
257 usbi_mutex_t events_lock;
259 /* used to see if there is an active thread doing event handling */
260 int event_handler_active;
262 /* used to wait for event completion in threads other than the one that is
263 * event handling */
264 usbi_mutex_t event_waiters_lock;
265 usbi_cond_t event_waiters_cond;
267 #ifdef USBI_TIMERFD_AVAILABLE
268 /* used for timeout handling, if supported by OS.
269 * this timerfd is maintained to trigger on the next pending timeout */
270 int timerfd;
271 #endif
274 #ifdef USBI_TIMERFD_AVAILABLE
275 #define usbi_using_timerfd(ctx) ((ctx)->timerfd >= 0)
276 #else
277 #define usbi_using_timerfd(ctx) (0)
278 #endif
280 struct libusb_device {
281 /* lock protects refcnt, everything else is finalized at initialization
282 * time */
283 usbi_mutex_t lock;
284 int refcnt;
286 struct libusb_context *ctx;
288 uint8_t bus_number;
289 uint8_t port_number;
290 struct libusb_device* parent_dev;
291 uint8_t device_address;
292 uint8_t num_configurations;
293 enum libusb_speed speed;
295 struct list_head list;
296 unsigned long session_data;
297 unsigned char os_priv[0];
300 struct libusb_device_handle {
301 /* lock protects claimed_interfaces */
302 usbi_mutex_t lock;
303 unsigned long claimed_interfaces;
305 struct list_head list;
306 struct libusb_device *dev;
307 unsigned char os_priv[0];
310 enum {
311 USBI_CLOCK_MONOTONIC,
312 USBI_CLOCK_REALTIME
315 /* in-memory transfer layout:
317 * 1. struct usbi_transfer
318 * 2. struct libusb_transfer (which includes iso packets) [variable size]
319 * 3. os private data [variable size]
321 * from a libusb_transfer, you can get the usbi_transfer by rewinding the
322 * appropriate number of bytes.
323 * the usbi_transfer includes the number of allocated packets, so you can
324 * determine the size of the transfer and hence the start and length of the
325 * OS-private data.
328 struct usbi_transfer {
329 int num_iso_packets;
330 struct list_head list;
331 struct timeval timeout;
332 int transferred;
333 uint8_t flags;
335 /* this lock is held during libusb_submit_transfer() and
336 * libusb_cancel_transfer() (allowing the OS backend to prevent duplicate
337 * cancellation, submission-during-cancellation, etc). the OS backend
338 * should also take this lock in the handle_events path, to prevent the user
339 * cancelling the transfer from another thread while you are processing
340 * its completion (presumably there would be races within your OS backend
341 * if this were possible). */
342 usbi_mutex_t lock;
345 enum usbi_transfer_flags {
346 /* The transfer has timed out */
347 USBI_TRANSFER_TIMED_OUT = 1 << 0,
349 /* Set by backend submit_transfer() if the OS handles timeout */
350 USBI_TRANSFER_OS_HANDLES_TIMEOUT = 1 << 1,
352 /* Cancellation was requested via libusb_cancel_transfer() */
353 USBI_TRANSFER_CANCELLING = 1 << 2,
355 /* Operation on the transfer failed because the device disappeared */
356 USBI_TRANSFER_DEVICE_DISAPPEARED = 1 << 3,
358 /* Set by backend submit_transfer() if the fds in use have been updated */
359 USBI_TRANSFER_UPDATED_FDS = 1 << 4,
362 #define USBI_TRANSFER_TO_LIBUSB_TRANSFER(transfer) \
363 ((struct libusb_transfer *)(((unsigned char *)(transfer)) \
364 + sizeof(struct usbi_transfer)))
365 #define LIBUSB_TRANSFER_TO_USBI_TRANSFER(transfer) \
366 ((struct usbi_transfer *)(((unsigned char *)(transfer)) \
367 - sizeof(struct usbi_transfer)))
369 static inline void *usbi_transfer_get_os_priv(struct usbi_transfer *transfer)
371 return ((unsigned char *)transfer) + sizeof(struct usbi_transfer)
372 + sizeof(struct libusb_transfer)
373 + (transfer->num_iso_packets
374 * sizeof(struct libusb_iso_packet_descriptor));
377 /* bus structures */
379 /* All standard descriptors have these 2 fields in common */
380 struct usb_descriptor_header {
381 uint8_t bLength;
382 uint8_t bDescriptorType;
385 /* shared data and functions */
387 int usbi_io_init(struct libusb_context *ctx);
388 void usbi_io_exit(struct libusb_context *ctx);
390 struct libusb_device *usbi_alloc_device(struct libusb_context *ctx,
391 unsigned long session_id);
392 struct libusb_device *usbi_get_device_by_session_id(struct libusb_context *ctx,
393 unsigned long session_id);
394 int usbi_sanitize_device(struct libusb_device *dev);
395 void usbi_handle_disconnect(struct libusb_device_handle *handle);
397 int usbi_handle_transfer_completion(struct usbi_transfer *itransfer,
398 enum libusb_transfer_status status);
399 int usbi_handle_transfer_cancellation(struct usbi_transfer *transfer);
401 int usbi_parse_descriptor(unsigned char *source, const char *descriptor,
402 void *dest, int host_endian);
403 int usbi_get_config_index_by_value(struct libusb_device *dev,
404 uint8_t bConfigurationValue, int *idx);
406 /* polling */
408 struct usbi_pollfd {
409 /* must come first */
410 struct libusb_pollfd pollfd;
412 struct list_head list;
415 int usbi_add_pollfd(struct libusb_context *ctx, int fd, short events);
416 void usbi_remove_pollfd(struct libusb_context *ctx, int fd);
417 void usbi_fd_notification(struct libusb_context *ctx);
419 /* device discovery */
421 /* we traverse usbfs without knowing how many devices we are going to find.
422 * so we create this discovered_devs model which is similar to a linked-list
423 * which grows when required. it can be freed once discovery has completed,
424 * eliminating the need for a list node in the libusb_device structure
425 * itself. */
426 struct discovered_devs {
427 size_t len;
428 size_t capacity;
429 struct libusb_device *devices[0];
432 struct discovered_devs *discovered_devs_append(
433 struct discovered_devs *discdevs, struct libusb_device *dev);
435 /* OS abstraction */
437 /* This is the interface that OS backends need to implement.
438 * All fields are mandatory, except ones explicitly noted as optional. */
439 struct usbi_os_backend {
440 /* A human-readable name for your backend, e.g. "Linux usbfs" */
441 const char *name;
443 /* Perform initialization of your backend. You might use this function
444 * to determine specific capabilities of the system, allocate required
445 * data structures for later, etc.
447 * This function is called when a libusbx user initializes the library
448 * prior to use.
450 * Return 0 on success, or a LIBUSB_ERROR code on failure.
452 int (*init)(struct libusb_context *ctx);
454 /* Deinitialization. Optional. This function should destroy anything
455 * that was set up by init.
457 * This function is called when the user deinitializes the library.
459 void (*exit)(void);
461 /* Enumerate all the USB devices on the system, returning them in a list
462 * of discovered devices.
464 * Your implementation should enumerate all devices on the system,
465 * regardless of whether they have been seen before or not.
467 * When you have found a device, compute a session ID for it. The session
468 * ID should uniquely represent that particular device for that particular
469 * connection session since boot (i.e. if you disconnect and reconnect a
470 * device immediately after, it should be assigned a different session ID).
471 * If your OS cannot provide a unique session ID as described above,
472 * presenting a session ID of (bus_number << 8 | device_address) should
473 * be sufficient. Bus numbers and device addresses wrap and get reused,
474 * but that is an unlikely case.
476 * After computing a session ID for a device, call
477 * usbi_get_device_by_session_id(). This function checks if libusbx already
478 * knows about the device, and if so, it provides you with a libusb_device
479 * structure for it.
481 * If usbi_get_device_by_session_id() returns NULL, it is time to allocate
482 * a new device structure for the device. Call usbi_alloc_device() to
483 * obtain a new libusb_device structure with reference count 1. Populate
484 * the bus_number and device_address attributes of the new device, and
485 * perform any other internal backend initialization you need to do. At
486 * this point, you should be ready to provide device descriptors and so
487 * on through the get_*_descriptor functions. Finally, call
488 * usbi_sanitize_device() to perform some final sanity checks on the
489 * device. Assuming all of the above succeeded, we can now continue.
490 * If any of the above failed, remember to unreference the device that
491 * was returned by usbi_alloc_device().
493 * At this stage we have a populated libusb_device structure (either one
494 * that was found earlier, or one that we have just allocated and
495 * populated). This can now be added to the discovered devices list
496 * using discovered_devs_append(). Note that discovered_devs_append()
497 * may reallocate the list, returning a new location for it, and also
498 * note that reallocation can fail. Your backend should handle these
499 * error conditions appropriately.
501 * This function should not generate any bus I/O and should not block.
502 * If I/O is required (e.g. reading the active configuration value), it is
503 * OK to ignore these suggestions :)
505 * This function is executed when the user wishes to retrieve a list
506 * of USB devices connected to the system.
508 * Return 0 on success, or a LIBUSB_ERROR code on failure.
510 int (*get_device_list)(struct libusb_context *ctx,
511 struct discovered_devs **discdevs);
513 /* Open a device for I/O and other USB operations. The device handle
514 * is preallocated for you, you can retrieve the device in question
515 * through handle->dev.
517 * Your backend should allocate any internal resources required for I/O
518 * and other operations so that those operations can happen (hopefully)
519 * without hiccup. This is also a good place to inform libusbx that it
520 * should monitor certain file descriptors related to this device -
521 * see the usbi_add_pollfd() function.
523 * This function should not generate any bus I/O and should not block.
525 * This function is called when the user attempts to obtain a device
526 * handle for a device.
528 * Return:
529 * - 0 on success
530 * - LIBUSB_ERROR_ACCESS if the user has insufficient permissions
531 * - LIBUSB_ERROR_NO_DEVICE if the device has been disconnected since
532 * discovery
533 * - another LIBUSB_ERROR code on other failure
535 * Do not worry about freeing the handle on failed open, the upper layers
536 * do this for you.
538 int (*open)(struct libusb_device_handle *handle);
540 /* Close a device such that the handle cannot be used again. Your backend
541 * should destroy any resources that were allocated in the open path.
542 * This may also be a good place to call usbi_remove_pollfd() to inform
543 * libusbx of any file descriptors associated with this device that should
544 * no longer be monitored.
546 * This function is called when the user closes a device handle.
548 void (*close)(struct libusb_device_handle *handle);
550 /* Retrieve the device descriptor from a device.
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. Alternatively, you may be able
555 * to retrieve it from a kernel interface (some Linux setups can do this)
556 * still without generating bus I/O.
558 * This function is expected to write DEVICE_DESC_LENGTH (18) bytes into
559 * buffer, which is guaranteed to be big enough.
561 * This function is called when sanity-checking a device before adding
562 * it to the list of discovered devices, and also when the user requests
563 * to read the device descriptor.
565 * This function is expected to return the descriptor in bus-endian format
566 * (LE). If it returns the multi-byte values in host-endian format,
567 * set the host_endian output parameter to "1".
569 * Return 0 on success or a LIBUSB_ERROR code on failure.
571 int (*get_device_descriptor)(struct libusb_device *device,
572 unsigned char *buffer, int *host_endian);
574 /* Get the ACTIVE configuration descriptor for a device.
576 * The descriptor should be retrieved from memory, NOT via bus I/O to the
577 * device. This means that you may have to cache it in a private structure
578 * during get_device_list enumeration. You may also have to keep track
579 * of which configuration is active when the user changes it.
581 * This function is expected to write len bytes of data into buffer, which
582 * is guaranteed to be big enough. If you can only do a partial write,
583 * return an error code.
585 * This function is expected to return the descriptor in bus-endian format
586 * (LE). If it returns the multi-byte values in host-endian format,
587 * set the host_endian output parameter to "1".
589 * Return:
590 * - 0 on success
591 * - LIBUSB_ERROR_NOT_FOUND if the device is in unconfigured state
592 * - another LIBUSB_ERROR code on other failure
594 int (*get_active_config_descriptor)(struct libusb_device *device,
595 unsigned char *buffer, size_t len, int *host_endian);
597 /* Get a specific configuration descriptor for a device.
599 * The descriptor should be retrieved from memory, NOT via bus I/O to the
600 * device. This means that you may have to cache it in a private structure
601 * during get_device_list enumeration.
603 * The requested descriptor is expressed as a zero-based index (i.e. 0
604 * indicates that we are requesting the first descriptor). The index does
605 * not (necessarily) equal the bConfigurationValue of the configuration
606 * being requested.
608 * This function is expected to write len bytes of data into buffer, which
609 * is guaranteed to be big enough. If you can only do a partial write,
610 * return an error code.
612 * This function is expected to return the descriptor in bus-endian format
613 * (LE). If it returns the multi-byte values in host-endian format,
614 * set the host_endian output parameter to "1".
616 * Return 0 on success or a LIBUSB_ERROR code on failure.
618 int (*get_config_descriptor)(struct libusb_device *device,
619 uint8_t config_index, unsigned char *buffer, size_t len,
620 int *host_endian);
622 /* Get the bConfigurationValue for the active configuration for a device.
623 * Optional. This should only be implemented if you can retrieve it from
624 * cache (don't generate I/O).
626 * If you cannot retrieve this from cache, either do not implement this
627 * function, or return LIBUSB_ERROR_NOT_SUPPORTED. This will cause
628 * libusbx to retrieve the information through a standard control transfer.
630 * This function must be non-blocking.
631 * Return:
632 * - 0 on success
633 * - LIBUSB_ERROR_NO_DEVICE if the device has been disconnected since it
634 * was opened
635 * - LIBUSB_ERROR_NOT_SUPPORTED if the value cannot be retrieved without
636 * blocking
637 * - another LIBUSB_ERROR code on other failure.
639 int (*get_configuration)(struct libusb_device_handle *handle, int *config);
641 /* Set the active configuration for a device.
643 * A configuration value of -1 should put the device in unconfigured state.
645 * This function can block.
647 * Return:
648 * - 0 on success
649 * - LIBUSB_ERROR_NOT_FOUND if the configuration does not exist
650 * - LIBUSB_ERROR_BUSY if interfaces are currently claimed (and hence
651 * configuration cannot be changed)
652 * - LIBUSB_ERROR_NO_DEVICE if the device has been disconnected since it
653 * was opened
654 * - another LIBUSB_ERROR code on other failure.
656 int (*set_configuration)(struct libusb_device_handle *handle, int config);
658 /* Claim an interface. When claimed, the application can then perform
659 * I/O to an interface's endpoints.
661 * This function should not generate any bus I/O and should not block.
662 * Interface claiming is a logical operation that simply ensures that
663 * no other drivers/applications are using the interface, and after
664 * claiming, no other drivers/applicatiosn can use the interface because
665 * we now "own" it.
667 * Return:
668 * - 0 on success
669 * - LIBUSB_ERROR_NOT_FOUND if the interface does not exist
670 * - LIBUSB_ERROR_BUSY if the interface is in use by another driver/app
671 * - LIBUSB_ERROR_NO_DEVICE if the device has been disconnected since it
672 * was opened
673 * - another LIBUSB_ERROR code on other failure
675 int (*claim_interface)(struct libusb_device_handle *handle, int interface_number);
677 /* Release a previously claimed interface.
679 * This function should also generate a SET_INTERFACE control request,
680 * resetting the alternate setting of that interface to 0. It's OK for
681 * this function to block as a result.
683 * You will only ever be asked to release an interface which was
684 * successfully claimed earlier.
686 * Return:
687 * - 0 on success
688 * - LIBUSB_ERROR_NO_DEVICE if the device has been disconnected since it
689 * was opened
690 * - another LIBUSB_ERROR code on other failure
692 int (*release_interface)(struct libusb_device_handle *handle, int interface_number);
694 /* Set the alternate setting for an interface.
696 * You will only ever be asked to set the alternate setting for an
697 * interface which was successfully claimed earlier.
699 * It's OK for this function to block.
701 * Return:
702 * - 0 on success
703 * - LIBUSB_ERROR_NOT_FOUND if the alternate setting does not exist
704 * - LIBUSB_ERROR_NO_DEVICE if the device has been disconnected since it
705 * was opened
706 * - another LIBUSB_ERROR code on other failure
708 int (*set_interface_altsetting)(struct libusb_device_handle *handle,
709 int interface_number, int altsetting);
711 /* Clear a halt/stall condition on an endpoint.
713 * It's OK for this function to block.
715 * Return:
716 * - 0 on success
717 * - LIBUSB_ERROR_NOT_FOUND if the endpoint does not exist
718 * - LIBUSB_ERROR_NO_DEVICE if the device has been disconnected since it
719 * was opened
720 * - another LIBUSB_ERROR code on other failure
722 int (*clear_halt)(struct libusb_device_handle *handle,
723 unsigned char endpoint);
725 /* Perform a USB port reset to reinitialize a device.
727 * If possible, the handle should still be usable after the reset
728 * completes, assuming that the device descriptors did not change during
729 * reset and all previous interface state can be restored.
731 * If something changes, or you cannot easily locate/verify the resetted
732 * device, return LIBUSB_ERROR_NOT_FOUND. This prompts the application
733 * to close the old handle and re-enumerate the device.
735 * Return:
736 * - 0 on success
737 * - LIBUSB_ERROR_NOT_FOUND if re-enumeration is required, or if the device
738 * has been disconnected since it was opened
739 * - another LIBUSB_ERROR code on other failure
741 int (*reset_device)(struct libusb_device_handle *handle);
743 /* Determine if a kernel driver is active on an interface. Optional.
745 * The presence of a kernel driver on an interface indicates that any
746 * calls to claim_interface would fail with the LIBUSB_ERROR_BUSY code.
748 * Return:
749 * - 0 if no driver is active
750 * - 1 if a driver is active
751 * - LIBUSB_ERROR_NO_DEVICE if the device has been disconnected since it
752 * was opened
753 * - another LIBUSB_ERROR code on other failure
755 int (*kernel_driver_active)(struct libusb_device_handle *handle,
756 int interface_number);
758 /* Detach a kernel driver from an interface. Optional.
760 * After detaching a kernel driver, the interface should be available
761 * for claim.
763 * Return:
764 * - 0 on success
765 * - LIBUSB_ERROR_NOT_FOUND if no kernel driver was active
766 * - LIBUSB_ERROR_INVALID_PARAM if the interface does not exist
767 * - LIBUSB_ERROR_NO_DEVICE if the device has been disconnected since it
768 * was opened
769 * - another LIBUSB_ERROR code on other failure
771 int (*detach_kernel_driver)(struct libusb_device_handle *handle,
772 int interface_number);
774 /* Attach a kernel driver to an interface. Optional.
776 * Reattach a kernel driver to the device.
778 * Return:
779 * - 0 on success
780 * - LIBUSB_ERROR_NOT_FOUND if no kernel driver was active
781 * - LIBUSB_ERROR_INVALID_PARAM if the interface does not exist
782 * - LIBUSB_ERROR_NO_DEVICE if the device has been disconnected since it
783 * was opened
784 * - LIBUSB_ERROR_BUSY if a program or driver has claimed the interface,
785 * preventing reattachment
786 * - another LIBUSB_ERROR code on other failure
788 int (*attach_kernel_driver)(struct libusb_device_handle *handle,
789 int interface_number);
791 /* Destroy a device. Optional.
793 * This function is called when the last reference to a device is
794 * destroyed. It should free any resources allocated in the get_device_list
795 * path.
797 void (*destroy_device)(struct libusb_device *dev);
799 /* Submit a transfer. Your implementation should take the transfer,
800 * morph it into whatever form your platform requires, and submit it
801 * asynchronously.
803 * This function must not block.
805 * Return:
806 * - 0 on success
807 * - LIBUSB_ERROR_NO_DEVICE if the device has been disconnected
808 * - another LIBUSB_ERROR code on other failure
810 int (*submit_transfer)(struct usbi_transfer *itransfer);
812 /* Cancel a previously submitted transfer.
814 * This function must not block. The transfer cancellation must complete
815 * later, resulting in a call to usbi_handle_transfer_cancellation()
816 * from the context of handle_events.
818 int (*cancel_transfer)(struct usbi_transfer *itransfer);
820 /* Clear a transfer as if it has completed or cancelled, but do not
821 * report any completion/cancellation to the library. You should free
822 * all private data from the transfer as if you were just about to report
823 * completion or cancellation.
825 * This function might seem a bit out of place. It is used when libusbx
826 * detects a disconnected device - it calls this function for all pending
827 * transfers before reporting completion (with the disconnect code) to
828 * the user. Maybe we can improve upon this internal interface in future.
830 void (*clear_transfer_priv)(struct usbi_transfer *itransfer);
832 /* Handle any pending events. This involves monitoring any active
833 * transfers and processing their completion or cancellation.
835 * The function is passed an array of pollfd structures (size nfds)
836 * as a result of the poll() system call. The num_ready parameter
837 * indicates the number of file descriptors that have reported events
838 * (i.e. the poll() return value). This should be enough information
839 * for you to determine which actions need to be taken on the currently
840 * active transfers.
842 * For any cancelled transfers, call usbi_handle_transfer_cancellation().
843 * For completed transfers, call usbi_handle_transfer_completion().
844 * For control/bulk/interrupt transfers, populate the "transferred"
845 * element of the appropriate usbi_transfer structure before calling the
846 * above functions. For isochronous transfers, populate the status and
847 * transferred fields of the iso packet descriptors of the transfer.
849 * This function should also be able to detect disconnection of the
850 * device, reporting that situation with usbi_handle_disconnect().
852 * When processing an event related to a transfer, you probably want to
853 * take usbi_transfer.lock to prevent races. See the documentation for
854 * the usbi_transfer structure.
856 * Return 0 on success, or a LIBUSB_ERROR code on failure.
858 int (*handle_events)(struct libusb_context *ctx,
859 struct pollfd *fds, POLL_NFDS_TYPE nfds, int num_ready);
861 /* Get time from specified clock. At least two clocks must be implemented
862 by the backend: USBI_CLOCK_REALTIME, and USBI_CLOCK_MONOTONIC.
864 Description of clocks:
865 USBI_CLOCK_REALTIME : clock returns time since system epoch.
866 USBI_CLOCK_MONOTONIC: clock returns time since unspecified start
867 time (usually boot).
869 int (*clock_gettime)(int clkid, struct timespec *tp);
871 #ifdef USBI_TIMERFD_AVAILABLE
872 /* clock ID of the clock that should be used for timerfd */
873 clockid_t (*get_timerfd_clockid)(void);
874 #endif
876 /* Number of bytes to reserve for per-device private backend data.
877 * This private data area is accessible through the "os_priv" field of
878 * struct libusb_device. */
879 size_t device_priv_size;
881 /* Number of bytes to reserve for per-handle private backend data.
882 * This private data area is accessible through the "os_priv" field of
883 * struct libusb_device. */
884 size_t device_handle_priv_size;
886 /* Number of bytes to reserve for per-transfer private backend data.
887 * This private data area is accessible by calling
888 * usbi_transfer_get_os_priv() on the appropriate usbi_transfer instance.
890 size_t transfer_priv_size;
892 /* Mumber of additional bytes for os_priv for each iso packet.
893 * Can your backend use this? */
894 /* FIXME: linux can't use this any more. if other OS's cannot either,
895 * then remove this */
896 size_t add_iso_packet_size;
899 extern const struct usbi_os_backend * const usbi_backend;
901 extern const struct usbi_os_backend linux_usbfs_backend;
902 extern const struct usbi_os_backend darwin_backend;
903 extern const struct usbi_os_backend openbsd_backend;
904 extern const struct usbi_os_backend windows_backend;
906 #endif