unrooted_android.c 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300
  1. /*
  2. * libusb example program for reading out USB descriptors on unrooted Android
  3. * (based on testlibusb.c)
  4. *
  5. * Copyright 2020-2021 Peter Stoiber
  6. *
  7. * This library is free software; you can redistribute it and/or
  8. * modify it under the terms of the GNU Lesser General Public
  9. * License as published by the Free Software Foundation; either
  10. * version 2.1 of the License, or (at your option) any later version.
  11. *
  12. * This library is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  15. * Lesser General Public License for more details.
  16. *
  17. * You should have received a copy of the GNU Lesser General Public
  18. * License along with this library; if not, write to the Free Software
  19. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  20. *
  21. * Please contact the author if you need another license.
  22. * This Repository is provided "as is", without warranties of any kind.
  23. */
  24. /*
  25. * This example creates a shared object which can be accessed over JNA or JNI from Java or Kotlin in Android.
  26. * Hint: If you are using Android Studio, set the "Debug type" to "Java Only" to receive debug messages.
  27. */
  28. /*
  29. * Usage:
  30. * First, you have to connect your USB device from the Java side.
  31. * Use the android.hardware.usb class to find the USB device, claim the interfaces, and open the usb_device_connection
  32. * Obtain the native File Descriptor --> usb_device_connection.getFileDescriptor()
  33. * Pass the received int value to the unrooted_usb_description method of this code (over JNA)
  34. */
  35. /*
  36. * libusb can only be included in Android projects using NDK for now. (CMake is not supported at the moment)
  37. * Clone the libusb git repo into your Android project and include the Android.mk file in your build.gradle.
  38. */
  39. /*
  40. Example JNA Approach:
  41. public interface unrooted_sample extends Library {
  42. public static final unrooted_sample INSTANCE = Native.load("unrooted_android", unrooted_sample.class);
  43. public int unrooted_usb_description (int fileDescriptor);
  44. }
  45. unrooted_sample.INSTANCE.unrooted_usb_description( usbDeviceConnection.getFileDescriptor());
  46. */
  47. #include <jni.h>
  48. #include <string.h>
  49. #include "unrooted_android.h"
  50. #include "libusb.h"
  51. #include <android/log.h>
  52. #define LOG_TAG "LibUsb"
  53. #define LOGD(...) __android_log_print(ANDROID_LOG_DEBUG, LOG_TAG, __VA_ARGS__)
  54. int verbose = 0;
  55. static void print_endpoint_comp(const struct libusb_ss_endpoint_companion_descriptor *ep_comp)
  56. {
  57. LOGD(" USB 3.0 Endpoint Companion:\n");
  58. LOGD(" bMaxBurst: %u\n", ep_comp->bMaxBurst);
  59. LOGD(" bmAttributes: %02xh\n", ep_comp->bmAttributes);
  60. LOGD(" wBytesPerInterval: %u\n", ep_comp->wBytesPerInterval);
  61. }
  62. static void print_endpoint(const struct libusb_endpoint_descriptor *endpoint)
  63. {
  64. int i, ret;
  65. LOGD(" Endpoint:\n");
  66. LOGD(" bEndpointAddress: %02xh\n", endpoint->bEndpointAddress);
  67. LOGD(" bmAttributes: %02xh\n", endpoint->bmAttributes);
  68. LOGD(" wMaxPacketSize: %u\n", endpoint->wMaxPacketSize);
  69. LOGD(" bInterval: %u\n", endpoint->bInterval);
  70. LOGD(" bRefresh: %u\n", endpoint->bRefresh);
  71. LOGD(" bSynchAddress: %u\n", endpoint->bSynchAddress);
  72. for (i = 0; i < endpoint->extra_length;) {
  73. if (LIBUSB_DT_SS_ENDPOINT_COMPANION == endpoint->extra[i + 1]) {
  74. struct libusb_ss_endpoint_companion_descriptor *ep_comp;
  75. ret = libusb_get_ss_endpoint_companion_descriptor(NULL, endpoint, &ep_comp);
  76. if (LIBUSB_SUCCESS != ret)
  77. continue;
  78. print_endpoint_comp(ep_comp);
  79. libusb_free_ss_endpoint_companion_descriptor(ep_comp);
  80. }
  81. i += endpoint->extra[i];
  82. }
  83. }
  84. static void print_altsetting(const struct libusb_interface_descriptor *interface)
  85. {
  86. uint8_t i;
  87. LOGD(" Interface:\n");
  88. LOGD(" bInterfaceNumber: %u\n", interface->bInterfaceNumber);
  89. LOGD(" bAlternateSetting: %u\n", interface->bAlternateSetting);
  90. LOGD(" bNumEndpoints: %u\n", interface->bNumEndpoints);
  91. LOGD(" bInterfaceClass: %u\n", interface->bInterfaceClass);
  92. LOGD(" bInterfaceSubClass: %u\n", interface->bInterfaceSubClass);
  93. LOGD(" bInterfaceProtocol: %u\n", interface->bInterfaceProtocol);
  94. LOGD(" iInterface: %u\n", interface->iInterface);
  95. for (i = 0; i < interface->bNumEndpoints; i++)
  96. print_endpoint(&interface->endpoint[i]);
  97. }
  98. static void print_2_0_ext_cap(struct libusb_usb_2_0_extension_descriptor *usb_2_0_ext_cap)
  99. {
  100. LOGD(" USB 2.0 Extension Capabilities:\n");
  101. LOGD(" bDevCapabilityType: %u\n", usb_2_0_ext_cap->bDevCapabilityType);
  102. LOGD(" bmAttributes: %08xh\n", usb_2_0_ext_cap->bmAttributes);
  103. }
  104. static void print_ss_usb_cap(struct libusb_ss_usb_device_capability_descriptor *ss_usb_cap)
  105. {
  106. LOGD(" USB 3.0 Capabilities:\n");
  107. LOGD(" bDevCapabilityType: %u\n", ss_usb_cap->bDevCapabilityType);
  108. LOGD(" bmAttributes: %02xh\n", ss_usb_cap->bmAttributes);
  109. LOGD(" wSpeedSupported: %u\n", ss_usb_cap->wSpeedSupported);
  110. LOGD(" bFunctionalitySupport: %u\n", ss_usb_cap->bFunctionalitySupport);
  111. LOGD(" bU1devExitLat: %u\n", ss_usb_cap->bU1DevExitLat);
  112. LOGD(" bU2devExitLat: %u\n", ss_usb_cap->bU2DevExitLat);
  113. }
  114. static void print_bos(libusb_device_handle *handle)
  115. {
  116. struct libusb_bos_descriptor *bos;
  117. uint8_t i;
  118. int ret;
  119. ret = libusb_get_bos_descriptor(handle, &bos);
  120. if (ret < 0)
  121. return;
  122. LOGD(" Binary Object Store (BOS):\n");
  123. LOGD(" wTotalLength: %u\n", bos->wTotalLength);
  124. LOGD(" bNumDeviceCaps: %u\n", bos->bNumDeviceCaps);
  125. for (i = 0; i < bos->bNumDeviceCaps; i++) {
  126. struct libusb_bos_dev_capability_descriptor *dev_cap = bos->dev_capability[i];
  127. if (dev_cap->bDevCapabilityType == LIBUSB_BT_USB_2_0_EXTENSION) {
  128. struct libusb_usb_2_0_extension_descriptor *usb_2_0_extension;
  129. ret = libusb_get_usb_2_0_extension_descriptor(NULL, dev_cap, &usb_2_0_extension);
  130. if (ret < 0)
  131. return;
  132. print_2_0_ext_cap(usb_2_0_extension);
  133. libusb_free_usb_2_0_extension_descriptor(usb_2_0_extension);
  134. } else if (dev_cap->bDevCapabilityType == LIBUSB_BT_SS_USB_DEVICE_CAPABILITY) {
  135. struct libusb_ss_usb_device_capability_descriptor *ss_dev_cap;
  136. ret = libusb_get_ss_usb_device_capability_descriptor(NULL, dev_cap, &ss_dev_cap);
  137. if (ret < 0)
  138. return;
  139. print_ss_usb_cap(ss_dev_cap);
  140. libusb_free_ss_usb_device_capability_descriptor(ss_dev_cap);
  141. }
  142. }
  143. libusb_free_bos_descriptor(bos);
  144. }
  145. static void print_interface(const struct libusb_interface *interface)
  146. {
  147. int i;
  148. for (i = 0; i < interface->num_altsetting; i++)
  149. print_altsetting(&interface->altsetting[i]);
  150. }
  151. static void print_configuration(struct libusb_config_descriptor *config)
  152. {
  153. uint8_t i;
  154. LOGD(" Configuration:\n");
  155. LOGD(" wTotalLength: %u\n", config->wTotalLength);
  156. LOGD(" bNumInterfaces: %u\n", config->bNumInterfaces);
  157. LOGD(" bConfigurationValue: %u\n", config->bConfigurationValue);
  158. LOGD(" iConfiguration: %u\n", config->iConfiguration);
  159. LOGD(" bmAttributes: %02xh\n", config->bmAttributes);
  160. LOGD(" MaxPower: %u\n", config->MaxPower);
  161. for (i = 0; i < config->bNumInterfaces; i++)
  162. print_interface(&config->interface[i]);
  163. }
  164. static void print_device(libusb_device *dev, libusb_device_handle *handle)
  165. {
  166. struct libusb_device_descriptor desc;
  167. unsigned char string[256];
  168. const char *speed;
  169. int ret;
  170. uint8_t i;
  171. switch (libusb_get_device_speed(dev)) {
  172. case LIBUSB_SPEED_LOW: speed = "1.5M"; break;
  173. case LIBUSB_SPEED_FULL: speed = "12M"; break;
  174. case LIBUSB_SPEED_HIGH: speed = "480M"; break;
  175. case LIBUSB_SPEED_SUPER: speed = "5G"; break;
  176. case LIBUSB_SPEED_SUPER_PLUS: speed = "10G"; break;
  177. default: speed = "Unknown";
  178. }
  179. ret = libusb_get_device_descriptor(dev, &desc);
  180. if (ret < 0) {
  181. LOGD("failed to get device descriptor");
  182. return;
  183. }
  184. LOGD("Dev (bus %u, device %u): %04X - %04X speed: %s\n",
  185. libusb_get_bus_number(dev), libusb_get_device_address(dev),
  186. desc.idVendor, desc.idProduct, speed);
  187. if (!handle)
  188. libusb_open(dev, &handle);
  189. if (handle) {
  190. if (desc.iManufacturer) {
  191. ret = libusb_get_string_descriptor_ascii(handle, desc.iManufacturer, string, sizeof(string));
  192. if (ret > 0)
  193. LOGD(" Manufacturer: %s\n", (char *)string);
  194. }
  195. if (desc.iProduct) {
  196. ret = libusb_get_string_descriptor_ascii(handle, desc.iProduct, string, sizeof(string));
  197. if (ret > 0)
  198. LOGD(" Product: %s\n", (char *)string);
  199. }
  200. if (desc.iSerialNumber && verbose) {
  201. ret = libusb_get_string_descriptor_ascii(handle, desc.iSerialNumber, string, sizeof(string));
  202. if (ret > 0)
  203. LOGD(" Serial Number: %s\n", (char *)string);
  204. }
  205. }
  206. if (verbose) {
  207. for (i = 0; i < desc.bNumConfigurations; i++) {
  208. struct libusb_config_descriptor *config;
  209. ret = libusb_get_config_descriptor(dev, i, &config);
  210. if (LIBUSB_SUCCESS != ret) {
  211. LOGD(" Couldn't retrieve descriptors\n");
  212. continue;
  213. }
  214. print_configuration(config);
  215. libusb_free_config_descriptor(config);
  216. }
  217. if (handle && desc.bcdUSB >= 0x0201)
  218. print_bos(handle);
  219. }
  220. if (handle)
  221. libusb_close(handle);
  222. }
  223. /* fileDescriptor = the native file descriptor obtained in Java and transferred to native over JNA, for example */
  224. int unrooted_usb_description(int fileDescriptor)
  225. {
  226. libusb_context *ctx = NULL;
  227. libusb_device_handle *devh = NULL;
  228. int r = 0;
  229. verbose = 1;
  230. r = libusb_set_option(NULL, LIBUSB_OPTION_NO_DEVICE_DISCOVERY, NULL);
  231. if (r != LIBUSB_SUCCESS) {
  232. LOGD("libusb_set_option failed: %d\n", r);
  233. return -1;
  234. }
  235. r = libusb_init(&ctx);
  236. if (r < 0) {
  237. LOGD("libusb_init failed: %d\n", r);
  238. return r;
  239. }
  240. r = libusb_wrap_sys_device(ctx, (intptr_t)fileDescriptor, &devh);
  241. if (r < 0) {
  242. LOGD("libusb_wrap_sys_device failed: %d\n", r);
  243. return r;
  244. } else if (devh == NULL) {
  245. LOGD("libusb_wrap_sys_device returned invalid handle\n");
  246. return r;
  247. }
  248. print_device(libusb_get_device(devh), devh);
  249. return r;
  250. }