2022-01-25 05:56:12 +08:00
|
|
|
#include "usb.h"
|
|
|
|
|
|
|
|
#include <assert.h>
|
|
|
|
|
|
|
|
#include "util/log.h"
|
|
|
|
|
2022-01-26 02:40:51 +08:00
|
|
|
static char *
|
|
|
|
read_string(libusb_device_handle *handle, uint8_t desc_index) {
|
|
|
|
char buffer[128];
|
|
|
|
int result =
|
|
|
|
libusb_get_string_descriptor_ascii(handle, desc_index,
|
|
|
|
(unsigned char *) buffer,
|
|
|
|
sizeof(buffer));
|
|
|
|
if (result < 0) {
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
assert((size_t) result <= sizeof(buffer));
|
|
|
|
|
|
|
|
// When non-negative, 'result' contains the number of bytes written
|
|
|
|
char *s = malloc(result + 1);
|
|
|
|
memcpy(s, buffer, result);
|
|
|
|
s[result] = '\0';
|
|
|
|
return s;
|
|
|
|
}
|
|
|
|
|
2022-01-25 05:56:12 +08:00
|
|
|
static bool
|
2022-01-27 05:02:24 +08:00
|
|
|
accept_device(libusb_device *device, const char *serial,
|
|
|
|
struct sc_usb_device *out) {
|
2022-01-25 05:56:12 +08:00
|
|
|
// Do not log any USB error in this function, it is expected that many USB
|
|
|
|
// devices available on the computer have permission restrictions
|
|
|
|
|
|
|
|
struct libusb_device_descriptor desc;
|
|
|
|
int result = libusb_get_device_descriptor(device, &desc);
|
|
|
|
if (result < 0 || !desc.iSerialNumber) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
libusb_device_handle *handle;
|
|
|
|
result = libusb_open(device, &handle);
|
|
|
|
if (result < 0) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2022-01-26 02:40:51 +08:00
|
|
|
char *device_serial = read_string(handle, desc.iSerialNumber);
|
|
|
|
if (!device_serial) {
|
2022-01-27 05:02:24 +08:00
|
|
|
libusb_close(handle);
|
2022-01-25 05:56:12 +08:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2022-01-27 05:15:23 +08:00
|
|
|
if (serial) {
|
|
|
|
// Filter by serial
|
|
|
|
bool matches = !strcmp(serial, device_serial);
|
|
|
|
if (!matches) {
|
|
|
|
free(device_serial);
|
|
|
|
libusb_close(handle);
|
|
|
|
return false;
|
|
|
|
}
|
2022-01-27 05:02:24 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
out->device = libusb_ref_device(device);
|
|
|
|
out->serial = device_serial;
|
|
|
|
out->vid = desc.idVendor;
|
|
|
|
out->pid = desc.idProduct;
|
|
|
|
out->manufacturer = read_string(handle, desc.iManufacturer);
|
|
|
|
out->product = read_string(handle, desc.iProduct);
|
|
|
|
|
|
|
|
libusb_close(handle);
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
sc_usb_device_destroy(struct sc_usb_device *usb_device) {
|
2022-02-06 02:07:53 +08:00
|
|
|
if (usb_device->device) {
|
|
|
|
libusb_unref_device(usb_device->device);
|
|
|
|
}
|
2022-01-27 05:02:24 +08:00
|
|
|
free(usb_device->serial);
|
|
|
|
free(usb_device->manufacturer);
|
|
|
|
free(usb_device->product);
|
2022-01-25 05:56:12 +08:00
|
|
|
}
|
|
|
|
|
2022-02-06 02:07:53 +08:00
|
|
|
void
|
|
|
|
sc_usb_device_move(struct sc_usb_device *dst, struct sc_usb_device *src) {
|
|
|
|
*dst = *src;
|
|
|
|
src->device = NULL;
|
|
|
|
src->serial = NULL;
|
|
|
|
src->manufacturer = NULL;
|
|
|
|
src->product = NULL;
|
|
|
|
}
|
|
|
|
|
2022-01-27 05:08:55 +08:00
|
|
|
void
|
2022-02-06 01:09:02 +08:00
|
|
|
sc_usb_devices_destroy_all(struct sc_usb_device *usb_devices, size_t count) {
|
2022-01-27 05:08:55 +08:00
|
|
|
for (size_t i = 0; i < count; ++i) {
|
|
|
|
sc_usb_device_destroy(&usb_devices[i]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-02-06 02:12:59 +08:00
|
|
|
static ssize_t
|
2022-01-27 05:08:55 +08:00
|
|
|
sc_usb_find_devices(struct sc_usb *usb, const char *serial,
|
|
|
|
struct sc_usb_device *devices, size_t len) {
|
2022-01-25 05:56:12 +08:00
|
|
|
libusb_device **list;
|
2022-01-27 04:42:26 +08:00
|
|
|
ssize_t count = libusb_get_device_list(usb->context, &list);
|
2022-01-25 05:56:12 +08:00
|
|
|
if (count < 0) {
|
2022-02-07 19:56:25 +08:00
|
|
|
LOGE("List USB devices: libusb error: %s", libusb_strerror(count));
|
2022-01-27 05:08:55 +08:00
|
|
|
return -1;
|
2022-01-25 05:56:12 +08:00
|
|
|
}
|
|
|
|
|
2022-01-27 05:08:55 +08:00
|
|
|
size_t idx = 0;
|
|
|
|
for (size_t i = 0; i < (size_t) count && idx < len; ++i) {
|
2022-01-25 05:56:12 +08:00
|
|
|
libusb_device *device = list[i];
|
|
|
|
|
2022-01-27 05:08:55 +08:00
|
|
|
if (accept_device(device, serial, &devices[idx])) {
|
|
|
|
++idx;
|
2022-01-25 05:56:12 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
libusb_free_device_list(list, 1);
|
2022-01-27 05:08:55 +08:00
|
|
|
return idx;
|
2022-01-25 05:56:12 +08:00
|
|
|
}
|
|
|
|
|
2022-02-06 02:12:59 +08:00
|
|
|
bool
|
|
|
|
sc_usb_select_device(struct sc_usb *usb, const char *serial,
|
|
|
|
struct sc_usb_device *out_device) {
|
|
|
|
struct sc_usb_device usb_devices[16];
|
|
|
|
ssize_t count = sc_usb_find_devices(usb, serial, usb_devices,
|
|
|
|
ARRAY_LEN(usb_devices));
|
|
|
|
if (count == -1) {
|
|
|
|
LOGE("Could not list USB devices");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (count == 0) {
|
|
|
|
if (serial) {
|
|
|
|
LOGE("Could not find USB device %s", serial);
|
|
|
|
} else {
|
|
|
|
LOGE("Could not find any USB device");
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (count > 1) {
|
|
|
|
if (serial) {
|
|
|
|
LOGE("Multiple (%" SC_PRIsizet ") USB devices with serial %s:",
|
|
|
|
count, serial);
|
|
|
|
} else {
|
|
|
|
LOGE("Multiple (%" SC_PRIsizet ") USB devices:", count);
|
|
|
|
}
|
|
|
|
for (size_t i = 0; i < (size_t) count; ++i) {
|
|
|
|
struct sc_usb_device *d = &usb_devices[i];
|
|
|
|
LOGE(" %-18s (%04" PRIx16 ":%04" PRIx16 ") %s %s",
|
|
|
|
d->serial, d->vid, d->pid, d->manufacturer, d->product);
|
|
|
|
}
|
|
|
|
LOGE("Select a device via -s (--serial)");
|
|
|
|
sc_usb_devices_destroy_all(usb_devices, count);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
assert(count == 1);
|
|
|
|
// Move usb_devices[0] into out_device (do not destroy usb_devices[0])
|
|
|
|
*out_device = usb_devices[0];
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2022-01-25 05:56:12 +08:00
|
|
|
bool
|
2022-01-26 02:10:23 +08:00
|
|
|
sc_usb_init(struct sc_usb *usb) {
|
|
|
|
usb->handle = NULL;
|
|
|
|
return libusb_init(&usb->context) == LIBUSB_SUCCESS;
|
|
|
|
}
|
2022-01-27 04:38:28 +08:00
|
|
|
|
2022-01-26 02:10:23 +08:00
|
|
|
void
|
|
|
|
sc_usb_destroy(struct sc_usb *usb) {
|
|
|
|
libusb_exit(usb->context);
|
|
|
|
}
|
|
|
|
|
2022-01-25 03:02:05 +08:00
|
|
|
static int
|
|
|
|
sc_usb_libusb_callback(libusb_context *ctx, libusb_device *device,
|
|
|
|
libusb_hotplug_event event, void *userdata) {
|
|
|
|
(void) ctx;
|
|
|
|
(void) device;
|
|
|
|
(void) event;
|
|
|
|
|
|
|
|
struct sc_usb *usb = userdata;
|
|
|
|
|
|
|
|
libusb_device *dev = libusb_get_device(usb->handle);
|
|
|
|
assert(dev);
|
|
|
|
if (dev != device) {
|
|
|
|
// Not the connected device
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
assert(usb->cbs && usb->cbs->on_disconnected);
|
|
|
|
usb->cbs->on_disconnected(usb, usb->cbs_userdata);
|
|
|
|
|
|
|
|
// Do not automatically deregister the callback by returning 1. Instead,
|
|
|
|
// manually deregister to interrupt libusb_handle_events() from the libusb
|
|
|
|
// event thread: <https://stackoverflow.com/a/60119225/1987178>
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
run_libusb_event_handler(void *data) {
|
|
|
|
struct sc_usb *usb = data;
|
|
|
|
while (!atomic_load(&usb->stopped)) {
|
|
|
|
// Interrupted by events or by libusb_hotplug_deregister_callback()
|
|
|
|
libusb_handle_events(usb->context);
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static bool
|
|
|
|
sc_usb_register_callback(struct sc_usb *usb) {
|
|
|
|
if (!libusb_has_capability(LIBUSB_CAP_HAS_HOTPLUG)) {
|
|
|
|
LOGW("libusb does not have hotplug capability");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
libusb_device *device = libusb_get_device(usb->handle);
|
|
|
|
assert(device);
|
|
|
|
|
|
|
|
struct libusb_device_descriptor desc;
|
|
|
|
int result = libusb_get_device_descriptor(device, &desc);
|
|
|
|
if (result < 0) {
|
2022-02-07 19:56:25 +08:00
|
|
|
LOGE("Device descriptor: libusb error: %s", libusb_strerror(result));
|
2022-01-25 03:02:05 +08:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
int events = LIBUSB_HOTPLUG_EVENT_DEVICE_LEFT;
|
|
|
|
int flags = LIBUSB_HOTPLUG_NO_FLAGS;
|
|
|
|
int vendor_id = desc.idVendor;
|
|
|
|
int product_id = desc.idProduct;
|
|
|
|
int dev_class = LIBUSB_HOTPLUG_MATCH_ANY;
|
|
|
|
result = libusb_hotplug_register_callback(usb->context, events, flags,
|
|
|
|
vendor_id, product_id, dev_class,
|
|
|
|
sc_usb_libusb_callback, usb,
|
|
|
|
&usb->callback_handle);
|
|
|
|
if (result < 0) {
|
2022-02-07 19:56:25 +08:00
|
|
|
LOGE("Register hotplog callback: libusb error: %s",
|
|
|
|
libusb_strerror(result));
|
2022-01-25 03:02:05 +08:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
usb->has_callback_handle = true;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2022-01-26 02:10:23 +08:00
|
|
|
bool
|
2022-01-25 03:02:05 +08:00
|
|
|
sc_usb_connect(struct sc_usb *usb, libusb_device *device,
|
|
|
|
const struct sc_usb_callbacks *cbs, void *cbs_userdata) {
|
2022-02-07 20:01:49 +08:00
|
|
|
int result = libusb_open(device, &usb->handle);
|
|
|
|
if (result < 0) {
|
2022-02-07 20:10:53 +08:00
|
|
|
LOGE("Open USB device: libusb error: %s", libusb_strerror(result));
|
2022-01-25 05:56:12 +08:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2022-01-25 03:02:05 +08:00
|
|
|
usb->has_callback_handle = false;
|
|
|
|
usb->has_libusb_event_thread = false;
|
|
|
|
|
|
|
|
// If cbs is set, then cbs->on_disconnected must be set
|
|
|
|
assert(!cbs || cbs->on_disconnected);
|
|
|
|
usb->cbs = cbs;
|
|
|
|
usb->cbs_userdata = cbs_userdata;
|
|
|
|
|
|
|
|
if (cbs) {
|
|
|
|
atomic_init(&usb->stopped, false);
|
|
|
|
if (sc_usb_register_callback(usb)) {
|
|
|
|
// Create a thread to process libusb events, so that device
|
|
|
|
// disconnection could be detected immediately
|
|
|
|
usb->has_libusb_event_thread =
|
|
|
|
sc_thread_create(&usb->libusb_event_thread,
|
|
|
|
run_libusb_event_handler, "scrcpy-usbev", usb);
|
|
|
|
if (!usb->has_libusb_event_thread) {
|
|
|
|
LOGW("Libusb event thread handler could not be created, USB "
|
|
|
|
"device disconnection might not be detected immediately");
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
LOGW("Could not register USB device disconnection callback");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-01-25 05:56:12 +08:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2022-01-26 02:10:23 +08:00
|
|
|
sc_usb_disconnect(struct sc_usb *usb) {
|
2022-01-25 05:56:12 +08:00
|
|
|
libusb_close(usb->handle);
|
|
|
|
}
|
2022-01-25 03:02:05 +08:00
|
|
|
|
|
|
|
void
|
|
|
|
sc_usb_stop(struct sc_usb *usb) {
|
|
|
|
if (usb->has_callback_handle) {
|
|
|
|
atomic_store(&usb->stopped, true);
|
|
|
|
libusb_hotplug_deregister_callback(usb->context, usb->callback_handle);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
sc_usb_join(struct sc_usb *usb) {
|
|
|
|
if (usb->has_libusb_event_thread) {
|
|
|
|
sc_thread_join(&usb->libusb_event_thread, NULL);
|
|
|
|
}
|
|
|
|
}
|