1.\" 2.\" Copyright (c) 2009 Sylvestre Gallon 3.\" 4.\" All rights reserved. 5.\" 6.\" Redistribution and use in source and binary forms, with or without 7.\" modification, are permitted provided that the following conditions 8.\" are met: 9.\" 1. Redistributions of source code must retain the above copyright 10.\" notice, this list of conditions and the following disclaimer. 11.\" 2. Redistributions in binary form must reproduce the above copyright 12.\" notice, this list of conditions and the following disclaimer in the 13.\" documentation and/or other materials provided with the distribution. 14.\" 15.\" THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND 16.\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 17.\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 18.\" ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE 19.\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 20.\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 21.\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 22.\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 23.\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 24.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 25.\" SUCH DAMAGE. 26.\" 27.\" $FreeBSD$ 28.\" 29.Dd February 25, 2012 30.Dt LIBUSB 3 31.Os 32.Sh NAME 33.Nm libusb 34.Nd "USB access library" 35.Sh LIBRARY 36USB access library 37.Pq libusb, -lusb 38.Sh SYNOPSIS 39.In libusb.h 40.Sh DESCRIPTION 41The 42.Nm 43library contains interfaces for directly managing a usb device. 44The current implementation supports v1.0 of the libusb API. 45.Sh LIBRARY INITIALISATION / DEINITIALISATION 46.Ft int 47.Fn libusb_init libusb_context **ctx 48This function initialises libusb. 49It must be called at the beginning 50of the program, before other libusb routines are used. 51This function returns 0 on success or LIBUSB_ERROR on 52failure. 53.Pp 54.Ft void 55.Fn libusb_exit "libusb_context *ctx" 56Deinitialise libusb. 57Must be called at the end of the application. 58Other libusb routines may not be called after this function. 59.Pp 60.Ft const char * 61.Fn libusb_strerror "int code" 62Get the ASCII representation of the error given by the 63.Fa code 64argument. 65This function does not return NULL. 66.Pp 67.Ft const char * 68.Fn libusb_error_name "int code" 69Get the ASCII representation of the error enum given by the 70.Fa code 71argument. 72This function does not return NULL. 73.Pp 74.Ft void 75.Fn libusb_set_debug "libusb_context *ctx" "int level" 76Set the debug level to 77.Fa level . 78.Pp 79.Ft ssize_t 80.Fn libusb_get_device_list "libusb_context *ctx" "libusb_device ***list" 81Populate 82.Fa list 83with the list of usb devices available, adding a reference to each 84device in the list. 85All the list entries created by this 86function must have their reference counter 87decremented when you are done with them, 88and the list itself must be freed. 89This 90function returns the number of devices in the list or a LIBUSB_ERROR code. 91.Pp 92.Ft void 93.Fn libusb_free_device_list "libusb_device **list" "int unref_devices" 94Free the list of devices discovered by libusb_get_device_list. 95If 96.Fa unref_device 97is set to 1 all devices in the list have their reference 98counter decremented once. 99.Pp 100.Ft uint8_t 101.Fn libusb_get_bus_number "libusb_device *dev" 102Returns the number of the bus contained by the device 103.Fa dev. 104.Pp 105.Ft uint8_t 106.Fn libusb_get_device_address "libusb_device *dev" 107Returns the device_address contained by the device 108.Fa dev. 109.Pp 110.Ft enum libusb_speed 111.Fn libusb_get_device_speed "libusb_device *dev" 112Returns the wire speed at which the device is connected. 113See the LIBUSB_SPEED_XXX enums for more information. 114LIBUSB_SPEED_UNKNOWN is returned in case of unknown wire speed. 115.Pp 116.Ft int 117.Fn libusb_get_max_packet_size "libusb_device *dev" "unsigned char endpoint" 118Returns the wMaxPacketSize value on success, LIBUSB_ERROR_NOT_FOUND if the 119endpoint does not exist and LIBUSB_ERROR_OTHERS on other failure. 120.Pp 121.Ft libusb_device * 122.Fn libusb_ref_device "libusb_device *dev" 123Increment the reference counter of the device 124.Fa dev. 125.Pp 126.Ft void 127.Fn libusb_unref_device "libusb_device *dev" 128Decrement the reference counter of the device 129.Fa dev. 130.Pp 131.Ft int 132.Fn libusb_open "libusb_device *dev" "libusb_device_handle **devh" 133Open a device and obtain a device_handle. 134Returns 0 on success, 135LIBUSB_ERROR_NO_MEM on memory allocation problems, LIBUSB_ERROR_ACCESS 136on permissions problems, LIBUSB_ERROR_NO_DEVICE if the device has been 137disconnected and a LIBUSB_ERROR code on other errors. 138.Pp 139.Ft libusb_device_handle * 140.Fn libusb_open_device_with_vid_pid "libusb_context *ctx" "uint16_t vid" "uint16_t pid" 141A convenience function to open a device by vendor and product IDs 142.Fa vid 143and 144.Fa pid. 145Returns NULL on error. 146.Pp 147.Ft void 148.Fn libusb_close "libusb_device_handle *devh" 149Close a device handle. 150.Pp 151.Ft libusb_device * 152.Fn libusb_get_device "libusb_device_handle *devh" 153Get the device contained by devh. 154Returns NULL on error. 155.Pp 156.Ft int 157.Fn libusb_get_configuration "libusb_device_handle *devh" "int *config" 158Returns the bConfiguration value of the current configuration. 159Returns 0 160on success, LIBUSB_ERROR_NO_DEVICE if the device has been disconnected 161and a LIBUSB_ERROR code on error. 162.Pp 163.Ft int 164.Fn libusb_set_configuration "libusb_device_handle *devh" "int config" 165Set the active configuration to 166.Fa config 167for the device contained by 168.Fa devh. 169This function returns 0 on success, LIBUSB_ERROR_NOT_FOUND if the requested 170configuration does not exist, LIBUSB_ERROR_BUSY if the interfaces are currently 171claimed, LIBUSB_ERROR_NO_DEVICE if the device has been disconnected and a 172LIBUSB_ERROR code on failure. 173.Pp 174.Ft int 175.Fn libusb_claim_interface "libusb_device_handle *devh" "int interface_number" 176Claim an interface in a given libusb_handle 177.Fa devh. 178This is a non-blocking function. 179It returns 0 on success, LIBUSB_ERROR_NOT_FOUND 180if the requested interface does not exist, LIBUSB_ERROR_BUSY if a program or 181driver has claimed the interface, LIBUSB_ERROR_NO_DEVICE if the device has 182been disconnected and a LIBUSB_ERROR code on failure. 183.Pp 184.Ft int 185.Fn libusb_release_interface "libusb_device_handle *devh" "int interface_number" 186This function releases an interface. 187All the claimed interfaces on a device must be released 188before closing the device. 189Returns 0 on success, LIBUSB_ERROR_NOT_FOUND if the 190interface was not claimed, LIBUSB_ERROR_NO_DEVICE if the device has been 191disconnected and LIBUSB_ERROR on failure. 192.Pp 193.Ft int 194.Fn libusb_set_interface_alt_setting "libusb_device_handle *dev" "int interface_number" "int alternate_setting" 195Activate an alternate setting for an interface. 196Returns 0 on success, 197LIBUSB_ERROR_NOT_FOUND if the interface was not claimed or the requested 198setting does not exist, LIBUSB_ERROR_NO_DEVICE if the device has been 199disconnected and a LIBUSB_ERROR code on failure. 200.Pp 201.Ft int 202.Fn libusb_clear_halt "libusb_device_handle *devh" "unsigned char endpoint" 203Clear an halt/stall for a endpoint. 204Returns 0 on success, LIBUSB_ERROR_NOT_FOUND 205if the endpoint does not exist, LIBUSB_ERROR_NO_DEVICE if the device has been 206disconnected and a LIBUSB_ERROR code on failure. 207.Pp 208.Ft int 209.Fn libusb_reset_device "libusb_device_handle *devh" 210Perform an USB port reset for an usb device. 211Returns 0 on success, 212LIBUSB_ERROR_NOT_FOUND if re-enumeration is required or if the device has 213been disconnected and a LIBUSB_ERROR code on failure. 214.Pp 215.Ft int 216.Fn libusb_check_connected "libusb_device_handle *devh" 217Test if the USB device is still connected. 218Returns 0 on success, 219LIBUSB_ERROR_NO_DEVICE if it has been disconnected and a LIBUSB_ERROR 220code on failure. 221.Pp 222.Ft int 223.Fn libusb_kernel_driver_active "libusb_device_handle *devh" "int interface" 224Determine if a driver is active on a interface. 225Returns 0 if no kernel driver is active 226and 1 if a kernel driver is active, LIBUSB_ERROR_NO_DEVICE 227if the device has been disconnected and a LIBUSB_ERROR code on failure. 228.Pp 229.Ft int 230.Fn libusb_get_driver "libusb_device_handle *devh" "int interface" "char *name" "int namelen" 231or 232.Ft int 233.Fn libusb_get_driver_np "libusb_device_handle *devh" "int interface" "char *name" "int namelen" 234Copy the name of the driver attached to the given 235.Fa device 236and 237.Fa interface 238into the buffer 239.Fa name 240of length 241.Fa namelen . 242Returns 0 on success, LIBUSB_ERROR_NOT_FOUND if no kernel driver is attached 243to the given interface and LIBUSB_ERROR_INVALID_PARAM if the interface does 244not exist. 245This function is non-portable. 246The buffer pointed to by 247.Fa name 248is only zero terminated on success. 249.Pp 250.Ft int 251.Fn libusb_detach_kernel_driver "libusb_device_handle *devh" "int interface" 252or 253.Ft int 254.Fn libusb_detach_kernel_driver_np "libusb_device_handle *devh" "int interface" 255Detach a kernel driver from an interface. 256This is needed to claim an interface already claimed by a kernel driver. 257Returns 0 on success, LIBUSB_ERROR_NOT_FOUND if no kernel driver was active, 258LIBUSB_ERROR_INVALID_PARAM if the interface does not exist, 259LIBUSB_ERROR_NO_DEVICE if the device has been disconnected 260and a LIBUSB_ERROR code on failure. 261This function is non-portable. 262.Pp 263.Ft int 264.Fn libusb_attach_kernel_driver "libusb_device_handle *devh" "int interface" 265Re-attach an interface kernel driver that was previously detached. 266Returns 0 on success, 267LIBUSB_ERROR_INVALID_PARAM if the interface does not exist, 268LIBUSB_ERROR_NO_DEVICE 269if the device has been disconnected, LIBUSB_ERROR_BUSY if the driver cannot be 270attached because the interface is claimed by a program or driver and a 271LIBUSB_ERROR code on failure. 272.Sh USB DESCRIPTORS 273.Ft int 274.Fn libusb_get_device_descriptor "libusb_device *dev" "libusb_device_descriptor *desc" 275Get the USB device descriptor for the device 276.Fa dev. 277This is a non-blocking function. 278Returns 0 on success and a LIBUSB_ERROR code on 279failure. 280.Pp 281.Ft int 282.Fn libsub_get_active_config_descriptor "libusb_device *dev" "struct libusb_config_descriptor **config" 283Get the USB configuration descriptor for the active configuration. 284Returns 0 on 285success, LIBUSB_ERROR_NOT_FOUND if the device is in 286an unconfigured state 287and a LIBUSB_ERROR code on error. 288.Pp 289.Ft int 290.Fn libusb_get_config_descriptor "libusb_device *dev" "uint8_t config_index" "libusb_config_descriptor **config" 291Get a USB configuration descriptor based on its index 292.Fa idx. 293Returns 0 on success, LIBUSB_ERROR_NOT_FOUND if the configuration does not exist 294and a LIBUSB_ERROR code on error. 295.Pp 296.Ft int 297.Fn libusb_get_config_descriptor_by_value "libusb_device *dev" "uint8 bConfigurationValue" "libusb_config_descriptor **config" 298Get a USB configuration descriptor with a specific bConfigurationValue. 299This is 300a non-blocking function which does not send a request through the device. 301Returns 0 302on success, LIBUSB_ERROR_NOT_FOUND if the configuration 303does not exist and a 304LIBUSB_ERROR code on failure. 305.Pp 306.Ft void 307.Fn libusb_free_config_descriptor "libusb_config_descriptor *config" 308Free a configuration descriptor. 309.Pp 310.Ft int 311.Fn libusb_get_string_descriptor_ascii "libusb_device_handle *devh" "uint8_t desc_idx" "unsigned char *data" "int length" 312Retrieve a string descriptor in C style ASCII. 313Returns the positive number of bytes in the resulting ASCII string 314on success and a LIBUSB_ERROR code on failure. 315.Pp 316.Ft int 317.Fn libusb_parse_ss_endpoint_comp "const void *buf" "int len" "libusb_ss_endpoint_companion_descriptor **ep_comp" 318This function parses the USB 3.0 endpoint companion descriptor in host endian format pointed to by 319.Fa buf 320and having a length of 321.Fa len. 322Typically these arguments are the extra and extra_length fields of the 323endpoint descriptor. 324On success the pointer to resulting descriptor is stored at the location given by 325.Fa ep_comp. 326Returns zero on success and a LIBUSB_ERROR code on failure. 327On success the parsed USB 3.0 endpoint companion descriptor must be 328freed using the libusb_free_ss_endpoint_comp function. 329.Pp 330.Ft void 331.Fn libusb_free_ss_endpoint_comp "libusb_ss_endpoint_companion_descriptor *ep_comp" 332This function is NULL safe and frees a parsed USB 3.0 endpoint companion descriptor. 333.Pp 334.Ft int 335.Fn libusb_parse_bos_descriptor "const void *buf" "int len" "libusb_bos_descriptor **bos" 336This function parses a Binary Object Store, BOS, descriptor into host endian format pointed to by 337.Fa buf 338and having a length of 339.Fa len. 340On success the pointer to resulting descriptor is stored at the location given by 341.Fa bos. 342Returns zero on success and a LIBUSB_ERROR code on failure. 343On success the parsed BOS descriptor must be freed using the 344libusb_free_bos_descriptor function. 345.Pp 346.Ft void 347.Fn libusb_free_bos_descriptor "libusb_bos_descriptor *bos" 348This function is NULL safe and frees a parsed BOS descriptor. 349.Sh USB ASYNCHRONOUS I/O 350.Ft struct libusb_transfer * 351.Fn libusb_alloc_transfer "int iso_packets" 352Allocate a transfer with the number of isochronous packet descriptors 353specified by 354.Fa iso_packets . 355Returns NULL on error. 356.Pp 357.Ft void 358.Fn libusb_free_transfer "struct libusb_transfer *tr" 359Free a transfer. 360.Pp 361.Ft int 362.Fn libusb_submit_transfer "struct libusb_transfer *tr" 363This function will submit a transfer and returns immediately. 364Returns 0 on success, LIBUSB_ERROR_NO_DEVICE if 365the device has been disconnected and a 366LIBUSB_ERROR code on other failure. 367.Pp 368.Ft int 369.Fn libusb_cancel_transfer "struct libusb_transfer *tr" 370This function asynchronously cancels a transfer. 371Returns 0 on success and a LIBUSB_ERROR code on failure. 372.Sh USB SYNCHRONOUS I/O 373.Ft int 374.Fn libusb_control_transfer "libusb_device_handle *devh" "uint8_t bmRequestType" "uint8_t bRequest" "uint16_t wValue" "uint16_t wIndex" "unsigned char *data" "uint16_t wLength" "unsigned int timeout" 375Perform a USB control transfer. 376Returns the actual number of bytes 377transferred on success, in the range from and including zero up to and 378including 379.Fa wLength . 380On error a LIBUSB_ERROR code is returned, for example 381LIBUSB_ERROR_TIMEOUT if the transfer timed out, LIBUSB_ERROR_PIPE if the 382control request was not supported, LIBUSB_ERROR_NO_DEVICE if the 383device has been disconnected and another LIBUSB_ERROR code on other failures. 384The LIBUSB_ERROR codes are all negative. 385.Pp 386.Ft int 387.Fn libusb_bulk_transfer "struct libusb_device_handle *devh" "unsigned char endpoint" "unsigned char *data" "int length" "int *transferred" "unsigned int timeout" 388Perform an USB bulk transfer. 389A timeout value of zero means no timeout. 390The timeout value is given in milliseconds. 391Returns 0 on success, LIBUSB_ERROR_TIMEOUT 392if the transfer timed out, LIBUSB_ERROR_PIPE if the control request was not 393supported, LIBUSB_ERROR_OVERFLOW if the device offered more data, 394LIBUSB_ERROR_NO_DEVICE if the device has been disconnected and 395a LIBUSB_ERROR code on other failure. 396.Pp 397.Ft int 398.Fn libusb_interrupt_transfer "struct libusb_device_handle *devh" "unsigned char endpoint" "unsigned char *data" "int length" "int *transferred" "unsigned int timeout" 399Perform an USB Interrupt transfer. 400A timeout value of zero means no timeout. 401The timeout value is given in milliseconds. 402Returns 0 on success, LIBUSB_ERROR_TIMEOUT 403if the transfer timed out, LIBUSB_ERROR_PIPE if the control request was not 404supported, LIBUSB_ERROR_OVERFLOW if the device offered more data, 405LIBUSB_ERROR_NO_DEVICE if the device has been disconnected and 406a LIBUSB_ERROR code on other failure. 407.Sh USB EVENTS 408.Ft int 409.Fn libusb_try_lock_events "libusb_context *ctx" 410Try to acquire the event handling lock. 411Returns 0 if the lock was obtained and 1 if not. 412.Pp 413.Ft void 414.Fn libusb_lock_events "libusb_context *ctx" 415Acquire the event handling lock. 416This function is blocking. 417.Pp 418.Ft void 419.Fn libusb_unlock_events "libusb_context *ctx" 420Release the event handling lock. 421This will wake up any thread blocked 422on 423.Fn libusb_wait_for_event . 424.Pp 425.Ft int 426.Fn libusb_event_handling_ok "libusb_context *ctx" 427Determine if it still OK for this thread to be doing event handling. 428Returns 1 429if event handling can start or continue. 430Returns 0 if this thread must give up 431the events lock. 432.Pp 433.Ft int 434.Fn libusb_event_handler_active "libusb_context *ctx" 435Determine if an active thread is handling events. 436Returns 1 if there is a thread handling events and 0 if there 437are no threads currently handling events. 438.Pp 439.Ft void 440.Fn libusb_lock_event_waiters "libusb_context *ctx" 441Acquire the event_waiters lock. 442This lock is designed to be obtained in the 443situation where you want to be aware when events are completed, but some other 444thread is event handling so calling libusb_handle_events() is not allowed. 445.Pp 446.Ft void 447.Fn libusb_unlock_event_waiters "libusb_context *ctx" 448Release the event_waiters lock. 449.Pp 450.Ft int 451.Fn libusb_wait_for_event "libusb_context *ctx" "struct timeval *tv" 452Wait for another thread to signal completion of an event. 453Must be called 454with the event waiters lock held, see libusb_lock_event_waiters(). 455This will 456block until the timeout expires or a transfer completes or a thread releases 457the event handling lock through libusb_unlock_events(). 458Returns 0 after a 459transfer completes or another thread stops event handling, and 1 if the 460timeout expired. 461.Pp 462.Ft int 463.Fn libusb_handle_events_timeout "libusb_context *ctx" "struct timeval *tv" 464Handle any pending events by checking if timeouts have expired and by 465checking the set of file descriptors for activity. 466Returns 0 on success, or a 467LIBUSB_ERROR code on failure. 468.Pp 469.Ft int 470.Fn libusb_handle_events "libusb_context *ctx" 471Handle any pending events in blocking mode with a sensible timeout. 472Returns 0 473on success and a LIBUSB_ERROR code on failure. 474.Pp 475.Ft int 476.Fn libusb_handle_events_locked "libusb_context *ctx" "struct timeval *tv" 477Handle any pending events by polling file descriptors, without checking if 478another thread is already doing so. 479Must be called with the event lock held. 480.Pp 481.Ft int 482.Fn libusb_get_next_timeout "libusb_context *ctx" "struct timeval *tv" 483Determine the next internal timeout that libusb needs to handle. 484Returns 0 485if there are no pending timeouts, 1 if a timeout was returned, or a LIBUSB_ERROR 486code on failure. 487.Pp 488.Ft void 489.Fn libusb_set_pollfd_notifiers "libusb_context *ctx" "libusb_pollfd_added_cb added_cb" "libusb_pollfd_removed_cb remove_cb" "void *user_data" 490Register notification functions for file descriptor additions/removals. 491These functions will be invoked for every new or removed file descriptor 492that libusb uses as an event source. 493.Pp 494.Ft const struct libusb_pollfd ** 495.Fn libusb_get_pollfds "libusb_context *ctx" 496Retrive a list of file descriptors that should be polled by your main loop as 497libusb event sources. 498Returns a NULL-terminated list on success or NULL on failure. 499.Sh LIBUSB VERSION 0.1 COMPATIBILITY 500The library is also compliant with LibUSB version 0.1.12. 501.Pp 502.Fn usb_open 503.Fn usb_close 504.Fn usb_get_string 505.Fn usb_get_string_simple 506.Fn usb_get_descriptor_by_endpoint 507.Fn usb_get_descriptor 508.Fn usb_parse_descriptor 509.Fn usb_parse_configuration 510.Fn usb_destroy_configuration 511.Fn usb_fetch_and_parse_descriptors 512.Fn usb_bulk_write 513.Fn usb_bulk_read 514.Fn usb_interrupt_write 515.Fn usb_interrupt_read 516.Fn usb_control_msg 517.Fn usb_set_configuration 518.Fn usb_claim_interface 519.Fn usb_release_interface 520.Fn usb_set_altinterface 521.Fn usb_resetep 522.Fn usb_clear_halt 523.Fn usb_reset 524.Fn usb_strerror 525.Fn usb_init 526.Fn usb_set_debug 527.Fn usb_find_busses 528.Fn usb_find_devices 529.Fn usb_device 530.Fn usb_get_busses 531.Fn usb_check_connected 532.Fn usb_get_driver_np 533.Fn usb_detach_kernel_driver_np 534.Sh SEE ALSO 535.Xr libusb20 3 , 536.Xr usb 4 , 537.Xr usbconfig 8 , 538.Xr usbdump 8 539.Pp 540.Pa http://libusb.sourceforge.net/ 541.Sh HISTORY 542.Nm 543support first appeared in 544.Fx 8.0 . 545