| The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 1 | /* | 
|  | 2 | * Copyright (C) 2007 The Android Open Source Project | 
|  | 3 | * | 
|  | 4 | * Licensed under the Apache License, Version 2.0 (the "License"); | 
|  | 5 | * you may not use this file except in compliance with the License. | 
|  | 6 | * You may obtain a copy of the License at | 
|  | 7 | * | 
|  | 8 | *      http://www.apache.org/licenses/LICENSE-2.0 | 
|  | 9 | * | 
|  | 10 | * Unless required by applicable law or agreed to in writing, software | 
|  | 11 | * distributed under the License is distributed on an "AS IS" BASIS, | 
|  | 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | 
|  | 13 | * See the License for the specific language governing permissions and | 
|  | 14 | * limitations under the License. | 
|  | 15 | */ | 
|  | 16 |  | 
| Yabin Cui | aed3c61 | 2015-09-22 15:52:57 -0700 | [diff] [blame] | 17 | #define TRACE_TAG USB | 
| Dan Albert | 3313426 | 2015-03-19 15:21:08 -0700 | [diff] [blame] | 18 |  | 
|  | 19 | #include "sysdeps.h" | 
|  | 20 |  | 
| The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 21 | #include <CoreFoundation/CoreFoundation.h> | 
|  | 22 |  | 
|  | 23 | #include <IOKit/IOKitLib.h> | 
|  | 24 | #include <IOKit/IOCFPlugIn.h> | 
|  | 25 | #include <IOKit/usb/IOUSBLib.h> | 
|  | 26 | #include <IOKit/IOMessage.h> | 
|  | 27 | #include <mach/mach_port.h> | 
|  | 28 |  | 
| Dan Albert | 7447dd0 | 2015-04-16 19:20:40 -0700 | [diff] [blame] | 29 | #include <inttypes.h> | 
| The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 30 | #include <stdio.h> | 
|  | 31 |  | 
| Yabin Cui | 48d4c0c | 2016-03-25 13:55:07 -0700 | [diff] [blame] | 32 | #include <atomic> | 
| Elliott Hughes | dbe91ee | 2016-11-15 12:37:32 -0800 | [diff] [blame] | 33 | #include <chrono> | 
| Yabin Cui | 48d4c0c | 2016-03-25 13:55:07 -0700 | [diff] [blame] | 34 | #include <memory> | 
|  | 35 | #include <mutex> | 
| Elliott Hughes | dbe91ee | 2016-11-15 12:37:32 -0800 | [diff] [blame] | 36 | #include <thread> | 
| Yabin Cui | 48d4c0c | 2016-03-25 13:55:07 -0700 | [diff] [blame] | 37 | #include <vector> | 
|  | 38 |  | 
| Elliott Hughes | 4f71319 | 2015-12-04 22:00:26 -0800 | [diff] [blame] | 39 | #include <android-base/logging.h> | 
|  | 40 | #include <android-base/stringprintf.h> | 
| Siva Velusamy | 743883b | 2015-08-18 17:53:16 -0700 | [diff] [blame] | 41 |  | 
| The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 42 | #include "adb.h" | 
| Dan Albert | dc0f8ec | 2015-02-25 10:26:17 -0800 | [diff] [blame] | 43 | #include "transport.h" | 
| The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 44 |  | 
| Elliott Hughes | dbe91ee | 2016-11-15 12:37:32 -0800 | [diff] [blame] | 45 | using namespace std::chrono_literals; | 
|  | 46 |  | 
| The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 47 | struct usb_handle | 
|  | 48 | { | 
| Siva Velusamy | d8b48a6 | 2015-08-13 08:48:06 -0700 | [diff] [blame] | 49 | UInt8 bulkIn; | 
|  | 50 | UInt8 bulkOut; | 
|  | 51 | IOUSBInterfaceInterface190** interface; | 
| Siva Velusamy | d8b48a6 | 2015-08-13 08:48:06 -0700 | [diff] [blame] | 52 | unsigned int zero_mask; | 
| Yabin Cui | 48d4c0c | 2016-03-25 13:55:07 -0700 | [diff] [blame] | 53 |  | 
|  | 54 | // For garbage collecting disconnected devices. | 
|  | 55 | bool mark; | 
|  | 56 | std::string devpath; | 
|  | 57 | std::atomic<bool> dead; | 
|  | 58 |  | 
|  | 59 | usb_handle() : bulkIn(0), bulkOut(0), interface(nullptr), | 
|  | 60 | zero_mask(0), mark(false), dead(false) { | 
|  | 61 | } | 
| The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 62 | }; | 
|  | 63 |  | 
| Yabin Cui | 48d4c0c | 2016-03-25 13:55:07 -0700 | [diff] [blame] | 64 | static std::atomic<bool> usb_inited_flag; | 
| The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 65 |  | 
| Yabin Cui | 48d4c0c | 2016-03-25 13:55:07 -0700 | [diff] [blame] | 66 | static auto& g_usb_handles_mutex = *new std::mutex(); | 
|  | 67 | static auto& g_usb_handles = *new std::vector<std::unique_ptr<usb_handle>>(); | 
| The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 68 |  | 
| Yabin Cui | 48d4c0c | 2016-03-25 13:55:07 -0700 | [diff] [blame] | 69 | static bool IsKnownDevice(const std::string& devpath) { | 
|  | 70 | std::lock_guard<std::mutex> lock_guard(g_usb_handles_mutex); | 
|  | 71 | for (auto& usb : g_usb_handles) { | 
|  | 72 | if (usb->devpath == devpath) { | 
|  | 73 | // Set mark flag to indicate this device is still alive. | 
|  | 74 | usb->mark = true; | 
|  | 75 | return true; | 
|  | 76 | } | 
| The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 77 | } | 
| Yabin Cui | 48d4c0c | 2016-03-25 13:55:07 -0700 | [diff] [blame] | 78 | return false; | 
|  | 79 | } | 
| The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 80 |  | 
| Yabin Cui | 48d4c0c | 2016-03-25 13:55:07 -0700 | [diff] [blame] | 81 | static void usb_kick_locked(usb_handle* handle); | 
| Al Sutton | 8e01cc6 | 2014-11-21 12:21:12 +0000 | [diff] [blame] | 82 |  | 
| Yabin Cui | 48d4c0c | 2016-03-25 13:55:07 -0700 | [diff] [blame] | 83 | static void KickDisconnectedDevices() { | 
|  | 84 | std::lock_guard<std::mutex> lock_guard(g_usb_handles_mutex); | 
|  | 85 | for (auto& usb : g_usb_handles) { | 
|  | 86 | if (!usb->mark) { | 
|  | 87 | usb_kick_locked(usb.get()); | 
|  | 88 | } else { | 
|  | 89 | usb->mark = false; | 
|  | 90 | } | 
|  | 91 | } | 
|  | 92 | } | 
| Al Sutton | 8e01cc6 | 2014-11-21 12:21:12 +0000 | [diff] [blame] | 93 |  | 
| Yabin Cui | 48d4c0c | 2016-03-25 13:55:07 -0700 | [diff] [blame] | 94 | static void AddDevice(std::unique_ptr<usb_handle> handle) { | 
|  | 95 | handle->mark = true; | 
|  | 96 | std::lock_guard<std::mutex> lock(g_usb_handles_mutex); | 
|  | 97 | g_usb_handles.push_back(std::move(handle)); | 
|  | 98 | } | 
|  | 99 |  | 
|  | 100 | static void AndroidInterfaceAdded(io_iterator_t iterator); | 
|  | 101 | static std::unique_ptr<usb_handle> CheckInterface(IOUSBInterfaceInterface190 **iface, | 
|  | 102 | UInt16 vendor, UInt16 product); | 
|  | 103 |  | 
|  | 104 | static bool FindUSBDevices() { | 
|  | 105 | // Create the matching dictionary to find the Android device's adb interface. | 
|  | 106 | CFMutableDictionaryRef matchingDict = IOServiceMatching(kIOUSBInterfaceClassName); | 
|  | 107 | if (!matchingDict) { | 
|  | 108 | LOG(ERROR) << "couldn't create USB matching dictionary"; | 
|  | 109 | return false; | 
|  | 110 | } | 
|  | 111 | // Create an iterator for all I/O Registry objects that match the dictionary. | 
|  | 112 | io_iterator_t iter = 0; | 
|  | 113 | kern_return_t kr = IOServiceGetMatchingServices(kIOMasterPortDefault, matchingDict, &iter); | 
|  | 114 | if (kr != KERN_SUCCESS) { | 
|  | 115 | LOG(ERROR) << "failed to get matching services"; | 
|  | 116 | return false; | 
|  | 117 | } | 
|  | 118 | // Iterate over all matching objects. | 
|  | 119 | AndroidInterfaceAdded(iter); | 
|  | 120 | IOObjectRelease(iter); | 
|  | 121 | return true; | 
| The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 122 | } | 
|  | 123 |  | 
|  | 124 | static void | 
| Yabin Cui | 48d4c0c | 2016-03-25 13:55:07 -0700 | [diff] [blame] | 125 | AndroidInterfaceAdded(io_iterator_t iterator) | 
| The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 126 | { | 
|  | 127 | kern_return_t            kr; | 
|  | 128 | io_service_t             usbDevice; | 
| Dima Zavin | 3fd82b8 | 2009-05-08 18:25:58 -0700 | [diff] [blame] | 129 | io_service_t             usbInterface; | 
| The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 130 | IOCFPlugInInterface      **plugInInterface = NULL; | 
| Dima Zavin | 3fd82b8 | 2009-05-08 18:25:58 -0700 | [diff] [blame] | 131 | IOUSBInterfaceInterface220  **iface = NULL; | 
|  | 132 | IOUSBDeviceInterface197  **dev = NULL; | 
| The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 133 | HRESULT                  result; | 
|  | 134 | SInt32                   score; | 
| Elliott Hughes | 62077d3 | 2015-08-25 17:48:12 -0700 | [diff] [blame] | 135 | uint32_t                 locationId; | 
| Dan Albert | 7447dd0 | 2015-04-16 19:20:40 -0700 | [diff] [blame] | 136 | UInt8                    if_class, subclass, protocol; | 
| The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 137 | UInt16                   vendor; | 
|  | 138 | UInt16                   product; | 
|  | 139 | UInt8                    serialIndex; | 
|  | 140 | char                     serial[256]; | 
| Yabin Cui | 48d4c0c | 2016-03-25 13:55:07 -0700 | [diff] [blame] | 141 | std::string devpath; | 
| The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 142 |  | 
| Dima Zavin | 3fd82b8 | 2009-05-08 18:25:58 -0700 | [diff] [blame] | 143 | while ((usbInterface = IOIteratorNext(iterator))) { | 
|  | 144 | //* Create an intermediate interface plugin | 
|  | 145 | kr = IOCreatePlugInInterfaceForService(usbInterface, | 
|  | 146 | kIOUSBInterfaceUserClientTypeID, | 
|  | 147 | kIOCFPlugInInterfaceID, | 
|  | 148 | &plugInInterface, &score); | 
|  | 149 | IOObjectRelease(usbInterface); | 
|  | 150 | if ((kIOReturnSuccess != kr) || (!plugInInterface)) { | 
| Siva Velusamy | 743883b | 2015-08-18 17:53:16 -0700 | [diff] [blame] | 151 | LOG(ERROR) << "Unable to create an interface plug-in (" << std::hex << kr << ")"; | 
| Dima Zavin | 3fd82b8 | 2009-05-08 18:25:58 -0700 | [diff] [blame] | 152 | continue; | 
|  | 153 | } | 
|  | 154 |  | 
|  | 155 | //* This gets us the interface object | 
| Dan Albert | 7447dd0 | 2015-04-16 19:20:40 -0700 | [diff] [blame] | 156 | result = (*plugInInterface)->QueryInterface( | 
|  | 157 | plugInInterface, | 
|  | 158 | CFUUIDGetUUIDBytes(kIOUSBInterfaceInterfaceID), (LPVOID*)&iface); | 
| Dima Zavin | 3fd82b8 | 2009-05-08 18:25:58 -0700 | [diff] [blame] | 159 | //* We only needed the plugin to get the interface, so discard it | 
|  | 160 | (*plugInInterface)->Release(plugInInterface); | 
|  | 161 | if (result || !iface) { | 
| Siva Velusamy | 743883b | 2015-08-18 17:53:16 -0700 | [diff] [blame] | 162 | LOG(ERROR) << "Couldn't query the interface (" << std::hex << result << ")"; | 
| Dima Zavin | 3fd82b8 | 2009-05-08 18:25:58 -0700 | [diff] [blame] | 163 | continue; | 
|  | 164 | } | 
|  | 165 |  | 
| Dan Albert | 7447dd0 | 2015-04-16 19:20:40 -0700 | [diff] [blame] | 166 | kr = (*iface)->GetInterfaceClass(iface, &if_class); | 
| Al Sutton | 8e01cc6 | 2014-11-21 12:21:12 +0000 | [diff] [blame] | 167 | kr = (*iface)->GetInterfaceSubClass(iface, &subclass); | 
|  | 168 | kr = (*iface)->GetInterfaceProtocol(iface, &protocol); | 
| Dan Albert | 7447dd0 | 2015-04-16 19:20:40 -0700 | [diff] [blame] | 169 | if(if_class != ADB_CLASS || subclass != ADB_SUBCLASS || protocol != ADB_PROTOCOL) { | 
| Al Sutton | 8e01cc6 | 2014-11-21 12:21:12 +0000 | [diff] [blame] | 170 | // Ignore non-ADB devices. | 
| Siva Velusamy | 743883b | 2015-08-18 17:53:16 -0700 | [diff] [blame] | 171 | LOG(DEBUG) << "Ignoring interface with incorrect class/subclass/protocol - " << if_class | 
|  | 172 | << ", " << subclass << ", " << protocol; | 
| Al Sutton | 8e01cc6 | 2014-11-21 12:21:12 +0000 | [diff] [blame] | 173 | (*iface)->Release(iface); | 
|  | 174 | continue; | 
|  | 175 | } | 
|  | 176 |  | 
| Dima Zavin | 3fd82b8 | 2009-05-08 18:25:58 -0700 | [diff] [blame] | 177 | //* this gets us an ioservice, with which we will find the actual | 
|  | 178 | //* device; after getting a plugin, and querying the interface, of | 
|  | 179 | //* course. | 
|  | 180 | //* Gotta love OS X | 
|  | 181 | kr = (*iface)->GetDevice(iface, &usbDevice); | 
|  | 182 | if (kIOReturnSuccess != kr || !usbDevice) { | 
| Siva Velusamy | 743883b | 2015-08-18 17:53:16 -0700 | [diff] [blame] | 183 | LOG(ERROR) << "Couldn't grab device from interface (" << std::hex << kr << ")"; | 
| Josh Gao | b6a2f59 | 2016-09-27 12:35:55 -0700 | [diff] [blame] | 184 | (*iface)->Release(iface); | 
| Dima Zavin | 3fd82b8 | 2009-05-08 18:25:58 -0700 | [diff] [blame] | 185 | continue; | 
|  | 186 | } | 
|  | 187 |  | 
|  | 188 | plugInInterface = NULL; | 
|  | 189 | score = 0; | 
|  | 190 | //* create an intermediate device plugin | 
| The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 191 | kr = IOCreatePlugInInterfaceForService(usbDevice, | 
|  | 192 | kIOUSBDeviceUserClientTypeID, | 
|  | 193 | kIOCFPlugInInterfaceID, | 
|  | 194 | &plugInInterface, &score); | 
| Dima Zavin | 3fd82b8 | 2009-05-08 18:25:58 -0700 | [diff] [blame] | 195 | //* only needed this to find the plugin | 
|  | 196 | (void)IOObjectRelease(usbDevice); | 
| The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 197 | if ((kIOReturnSuccess != kr) || (!plugInInterface)) { | 
| Siva Velusamy | 743883b | 2015-08-18 17:53:16 -0700 | [diff] [blame] | 198 | LOG(ERROR) << "Unable to create a device plug-in (" << std::hex << kr << ")"; | 
| Josh Gao | b6a2f59 | 2016-09-27 12:35:55 -0700 | [diff] [blame] | 199 | (*iface)->Release(iface); | 
| Dima Zavin | 3fd82b8 | 2009-05-08 18:25:58 -0700 | [diff] [blame] | 200 | continue; | 
| The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 201 | } | 
|  | 202 |  | 
| The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 203 | result = (*plugInInterface)->QueryInterface(plugInInterface, | 
| Dan Albert | 7447dd0 | 2015-04-16 19:20:40 -0700 | [diff] [blame] | 204 | CFUUIDGetUUIDBytes(kIOUSBDeviceInterfaceID), (LPVOID*)&dev); | 
| Dima Zavin | 3fd82b8 | 2009-05-08 18:25:58 -0700 | [diff] [blame] | 205 | //* only needed this to query the plugin | 
|  | 206 | (*plugInInterface)->Release(plugInInterface); | 
| The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 207 | if (result || !dev) { | 
| Siva Velusamy | 743883b | 2015-08-18 17:53:16 -0700 | [diff] [blame] | 208 | LOG(ERROR) << "Couldn't create a device interface (" << std::hex << result << ")"; | 
| Josh Gao | b6a2f59 | 2016-09-27 12:35:55 -0700 | [diff] [blame] | 209 | (*iface)->Release(iface); | 
| Dima Zavin | 3fd82b8 | 2009-05-08 18:25:58 -0700 | [diff] [blame] | 210 | continue; | 
| The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 211 | } | 
|  | 212 |  | 
| Dima Zavin | 3fd82b8 | 2009-05-08 18:25:58 -0700 | [diff] [blame] | 213 | //* Now after all that, we actually have a ref to the device and | 
|  | 214 | //* the interface that matched our criteria | 
| The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 215 | kr = (*dev)->GetDeviceVendor(dev, &vendor); | 
|  | 216 | kr = (*dev)->GetDeviceProduct(dev, &product); | 
| Scott Anderson | e109d26 | 2012-04-20 11:21:14 -0700 | [diff] [blame] | 217 | kr = (*dev)->GetLocationID(dev, &locationId); | 
| Yabin Cui | 48d4c0c | 2016-03-25 13:55:07 -0700 | [diff] [blame] | 218 | if (kr == KERN_SUCCESS) { | 
|  | 219 | devpath = android::base::StringPrintf("usb:%" PRIu32 "X", locationId); | 
|  | 220 | if (IsKnownDevice(devpath)) { | 
| Josh Gao | b6a2f59 | 2016-09-27 12:35:55 -0700 | [diff] [blame] | 221 | (*dev)->Release(dev); | 
|  | 222 | (*iface)->Release(iface); | 
| Yabin Cui | 48d4c0c | 2016-03-25 13:55:07 -0700 | [diff] [blame] | 223 | continue; | 
|  | 224 | } | 
| Scott Anderson | e109d26 | 2012-04-20 11:21:14 -0700 | [diff] [blame] | 225 | } | 
| The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 226 | kr = (*dev)->USBGetSerialNumberStringIndex(dev, &serialIndex); | 
|  | 227 |  | 
| Siva Velusamy | 743883b | 2015-08-18 17:53:16 -0700 | [diff] [blame] | 228 | if (serialIndex > 0) { | 
|  | 229 | IOUSBDevRequest req; | 
|  | 230 | UInt16          buffer[256]; | 
|  | 231 | UInt16          languages[128]; | 
| The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 232 |  | 
| Siva Velusamy | 743883b | 2015-08-18 17:53:16 -0700 | [diff] [blame] | 233 | memset(languages, 0, sizeof(languages)); | 
| The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 234 |  | 
| Siva Velusamy | 743883b | 2015-08-18 17:53:16 -0700 | [diff] [blame] | 235 | req.bmRequestType = | 
|  | 236 | USBmakebmRequestType(kUSBIn, kUSBStandard, kUSBDevice); | 
|  | 237 | req.bRequest = kUSBRqGetDescriptor; | 
|  | 238 | req.wValue = (kUSBStringDesc << 8) | 0; | 
|  | 239 | req.wIndex = 0; | 
|  | 240 | req.pData = languages; | 
|  | 241 | req.wLength = sizeof(languages); | 
|  | 242 | kr = (*dev)->DeviceRequest(dev, &req); | 
| The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 243 |  | 
| Siva Velusamy | 743883b | 2015-08-18 17:53:16 -0700 | [diff] [blame] | 244 | if (kr == kIOReturnSuccess && req.wLenDone > 0) { | 
| Guang Zhu | 1a1f818 | 2009-08-06 17:21:52 -0700 | [diff] [blame] | 245 |  | 
| Siva Velusamy | 743883b | 2015-08-18 17:53:16 -0700 | [diff] [blame] | 246 | int langCount = (req.wLenDone - 2) / 2, lang; | 
| Guang Zhu | 1a1f818 | 2009-08-06 17:21:52 -0700 | [diff] [blame] | 247 |  | 
| Siva Velusamy | 743883b | 2015-08-18 17:53:16 -0700 | [diff] [blame] | 248 | for (lang = 1; lang <= langCount; lang++) { | 
| Guang Zhu | 1a1f818 | 2009-08-06 17:21:52 -0700 | [diff] [blame] | 249 |  | 
| Siva Velusamy | 743883b | 2015-08-18 17:53:16 -0700 | [diff] [blame] | 250 | memset(buffer, 0, sizeof(buffer)); | 
|  | 251 | memset(&req, 0, sizeof(req)); | 
| Guang Zhu | 1a1f818 | 2009-08-06 17:21:52 -0700 | [diff] [blame] | 252 |  | 
| Siva Velusamy | 743883b | 2015-08-18 17:53:16 -0700 | [diff] [blame] | 253 | req.bmRequestType = | 
|  | 254 | USBmakebmRequestType(kUSBIn, kUSBStandard, kUSBDevice); | 
|  | 255 | req.bRequest = kUSBRqGetDescriptor; | 
|  | 256 | req.wValue = (kUSBStringDesc << 8) | serialIndex; | 
|  | 257 | req.wIndex = languages[lang]; | 
|  | 258 | req.pData = buffer; | 
|  | 259 | req.wLength = sizeof(buffer); | 
|  | 260 | kr = (*dev)->DeviceRequest(dev, &req); | 
| Guang Zhu | 1a1f818 | 2009-08-06 17:21:52 -0700 | [diff] [blame] | 261 |  | 
| Siva Velusamy | 743883b | 2015-08-18 17:53:16 -0700 | [diff] [blame] | 262 | if (kr == kIOReturnSuccess && req.wLenDone > 0) { | 
|  | 263 | int i, count; | 
| Guang Zhu | 1a1f818 | 2009-08-06 17:21:52 -0700 | [diff] [blame] | 264 |  | 
| Siva Velusamy | 743883b | 2015-08-18 17:53:16 -0700 | [diff] [blame] | 265 | // skip first word, and copy the rest to the serial string, | 
|  | 266 | // changing shorts to bytes. | 
|  | 267 | count = (req.wLenDone - 1) / 2; | 
|  | 268 | for (i = 0; i < count; i++) | 
|  | 269 | serial[i] = buffer[i + 1]; | 
|  | 270 | serial[i] = 0; | 
|  | 271 | break; | 
|  | 272 | } | 
|  | 273 | } | 
|  | 274 | } | 
|  | 275 | } | 
|  | 276 |  | 
| Dima Zavin | 3fd82b8 | 2009-05-08 18:25:58 -0700 | [diff] [blame] | 277 | (*dev)->Release(dev); | 
| The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 278 |  | 
| Yabin Cui | 48d4c0c | 2016-03-25 13:55:07 -0700 | [diff] [blame] | 279 | VLOG(USB) << android::base::StringPrintf("Found vid=%04x pid=%04x serial=%s\n", | 
| Siva Velusamy | 743883b | 2015-08-18 17:53:16 -0700 | [diff] [blame] | 280 | vendor, product, serial); | 
| Yabin Cui | 48d4c0c | 2016-03-25 13:55:07 -0700 | [diff] [blame] | 281 | if (devpath.empty()) { | 
|  | 282 | devpath = serial; | 
|  | 283 | } | 
|  | 284 | if (IsKnownDevice(devpath)) { | 
|  | 285 | (*iface)->USBInterfaceClose(iface); | 
| Dima Zavin | 3fd82b8 | 2009-05-08 18:25:58 -0700 | [diff] [blame] | 286 | (*iface)->Release(iface); | 
|  | 287 | continue; | 
| The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 288 | } | 
|  | 289 |  | 
| Yabin Cui | 48d4c0c | 2016-03-25 13:55:07 -0700 | [diff] [blame] | 290 | std::unique_ptr<usb_handle> handle = CheckInterface((IOUSBInterfaceInterface190**)iface, | 
|  | 291 | vendor, product); | 
|  | 292 | if (handle == nullptr) { | 
|  | 293 | LOG(ERROR) << "Could not find device interface"; | 
|  | 294 | (*iface)->Release(iface); | 
|  | 295 | continue; | 
| The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 296 | } | 
| Yabin Cui | 48d4c0c | 2016-03-25 13:55:07 -0700 | [diff] [blame] | 297 | handle->devpath = devpath; | 
|  | 298 | usb_handle* handle_p = handle.get(); | 
|  | 299 | VLOG(USB) << "Add usb device " << serial; | 
|  | 300 | AddDevice(std::move(handle)); | 
|  | 301 | register_usb_transport(handle_p, serial, devpath.c_str(), 1); | 
| The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 302 | } | 
|  | 303 | } | 
|  | 304 |  | 
| Siva Velusamy | d8b48a6 | 2015-08-13 08:48:06 -0700 | [diff] [blame] | 305 | // Used to clear both the endpoints before starting. | 
|  | 306 | // When adb quits, we might clear the host endpoint but not the device. | 
|  | 307 | // So we make sure both sides are clear before starting up. | 
|  | 308 | static bool ClearPipeStallBothEnds(IOUSBInterfaceInterface190** interface, UInt8 bulkEp) { | 
|  | 309 | IOReturn rc = (*interface)->ClearPipeStallBothEnds(interface, bulkEp); | 
|  | 310 | if (rc != kIOReturnSuccess) { | 
| Siva Velusamy | 743883b | 2015-08-18 17:53:16 -0700 | [diff] [blame] | 311 | LOG(ERROR) << "Could not clear pipe stall both ends: " << std::hex << rc; | 
| Siva Velusamy | d8b48a6 | 2015-08-13 08:48:06 -0700 | [diff] [blame] | 312 | return false; | 
|  | 313 | } | 
|  | 314 | return true; | 
|  | 315 | } | 
|  | 316 |  | 
| Dima Zavin | 3fd82b8 | 2009-05-08 18:25:58 -0700 | [diff] [blame] | 317 | //* TODO: simplify this further since we only register to get ADB interface | 
|  | 318 | //* subclass+protocol events | 
| Yabin Cui | 48d4c0c | 2016-03-25 13:55:07 -0700 | [diff] [blame] | 319 | static std::unique_ptr<usb_handle> | 
| Siva Velusamy | d8b48a6 | 2015-08-13 08:48:06 -0700 | [diff] [blame] | 320 | CheckInterface(IOUSBInterfaceInterface190 **interface, UInt16 vendor, UInt16 product) | 
| The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 321 | { | 
| Yabin Cui | 48d4c0c | 2016-03-25 13:55:07 -0700 | [diff] [blame] | 322 | std::unique_ptr<usb_handle> handle; | 
| Elliott Hughes | 2d4f852 | 2015-08-13 15:01:18 -0700 | [diff] [blame] | 323 | IOReturn kr; | 
|  | 324 | UInt8 interfaceNumEndpoints, interfaceClass, interfaceSubClass, interfaceProtocol; | 
|  | 325 | UInt8 endpoint; | 
| The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 326 |  | 
| Dima Zavin | 3fd82b8 | 2009-05-08 18:25:58 -0700 | [diff] [blame] | 327 | //* Now open the interface.  This will cause the pipes associated with | 
|  | 328 | //* the endpoints in the interface descriptor to be instantiated | 
|  | 329 | kr = (*interface)->USBInterfaceOpen(interface); | 
| The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 330 | if (kr != kIOReturnSuccess) { | 
| Siva Velusamy | 743883b | 2015-08-18 17:53:16 -0700 | [diff] [blame] | 331 | LOG(ERROR) << "Could not open interface: " << std::hex << kr; | 
| The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 332 | return NULL; | 
|  | 333 | } | 
|  | 334 |  | 
| Dima Zavin | 3fd82b8 | 2009-05-08 18:25:58 -0700 | [diff] [blame] | 335 | //* Get the number of endpoints associated with this interface | 
|  | 336 | kr = (*interface)->GetNumEndpoints(interface, &interfaceNumEndpoints); | 
|  | 337 | if (kr != kIOReturnSuccess) { | 
| Siva Velusamy | 743883b | 2015-08-18 17:53:16 -0700 | [diff] [blame] | 338 | LOG(ERROR) << "Unable to get number of endpoints: " << std::hex << kr; | 
| Dima Zavin | 3fd82b8 | 2009-05-08 18:25:58 -0700 | [diff] [blame] | 339 | goto err_get_num_ep; | 
| The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 340 | } | 
|  | 341 |  | 
| Dima Zavin | 3fd82b8 | 2009-05-08 18:25:58 -0700 | [diff] [blame] | 342 | //* Get interface class, subclass and protocol | 
|  | 343 | if ((*interface)->GetInterfaceClass(interface, &interfaceClass) != kIOReturnSuccess || | 
|  | 344 | (*interface)->GetInterfaceSubClass(interface, &interfaceSubClass) != kIOReturnSuccess || | 
|  | 345 | (*interface)->GetInterfaceProtocol(interface, &interfaceProtocol) != kIOReturnSuccess) { | 
| Siva Velusamy | 743883b | 2015-08-18 17:53:16 -0700 | [diff] [blame] | 346 | LOG(ERROR) << "Unable to get interface class, subclass and protocol"; | 
| Dima Zavin | 3fd82b8 | 2009-05-08 18:25:58 -0700 | [diff] [blame] | 347 | goto err_get_interface_class; | 
|  | 348 | } | 
|  | 349 |  | 
|  | 350 | //* check to make sure interface class, subclass and protocol match ADB | 
|  | 351 | //* avoid opening mass storage endpoints | 
| Josh Gao | 30186df | 2016-09-26 21:18:58 -0700 | [diff] [blame] | 352 | if (!is_adb_interface(interfaceClass, interfaceSubClass, interfaceProtocol)) { | 
| Dima Zavin | 3fd82b8 | 2009-05-08 18:25:58 -0700 | [diff] [blame] | 353 | goto err_bad_adb_interface; | 
| Siva Velusamy | d8b48a6 | 2015-08-13 08:48:06 -0700 | [diff] [blame] | 354 | } | 
| Dima Zavin | 3fd82b8 | 2009-05-08 18:25:58 -0700 | [diff] [blame] | 355 |  | 
| Yabin Cui | 48d4c0c | 2016-03-25 13:55:07 -0700 | [diff] [blame] | 356 | handle.reset(new usb_handle); | 
|  | 357 | if (handle == nullptr) { | 
|  | 358 | goto err_bad_adb_interface; | 
|  | 359 | } | 
| Dima Zavin | 3fd82b8 | 2009-05-08 18:25:58 -0700 | [diff] [blame] | 360 |  | 
|  | 361 | //* Iterate over the endpoints for this interface and find the first | 
|  | 362 | //* bulk in/out pipes available.  These will be our read/write pipes. | 
| Elliott Hughes | 2d4f852 | 2015-08-13 15:01:18 -0700 | [diff] [blame] | 363 | for (endpoint = 1; endpoint <= interfaceNumEndpoints; endpoint++) { | 
| Dima Zavin | 3fd82b8 | 2009-05-08 18:25:58 -0700 | [diff] [blame] | 364 | UInt8   transferType; | 
|  | 365 | UInt16  maxPacketSize; | 
|  | 366 | UInt8   interval; | 
|  | 367 | UInt8   number; | 
|  | 368 | UInt8   direction; | 
|  | 369 |  | 
|  | 370 | kr = (*interface)->GetPipeProperties(interface, endpoint, &direction, | 
|  | 371 | &number, &transferType, &maxPacketSize, &interval); | 
| Siva Velusamy | d8b48a6 | 2015-08-13 08:48:06 -0700 | [diff] [blame] | 372 | if (kr != kIOReturnSuccess) { | 
| Siva Velusamy | 743883b | 2015-08-18 17:53:16 -0700 | [diff] [blame] | 373 | LOG(ERROR) << "FindDeviceInterface - could not get pipe properties: " | 
|  | 374 | << std::hex << kr; | 
| Dima Zavin | 3fd82b8 | 2009-05-08 18:25:58 -0700 | [diff] [blame] | 375 | goto err_get_pipe_props; | 
|  | 376 | } | 
| Siva Velusamy | d8b48a6 | 2015-08-13 08:48:06 -0700 | [diff] [blame] | 377 |  | 
|  | 378 | if (kUSBBulk != transferType) continue; | 
|  | 379 |  | 
|  | 380 | if (kUSBIn == direction) { | 
|  | 381 | handle->bulkIn = endpoint; | 
|  | 382 | if (!ClearPipeStallBothEnds(interface, handle->bulkIn)) goto err_get_pipe_props; | 
|  | 383 | } | 
|  | 384 |  | 
|  | 385 | if (kUSBOut == direction) { | 
|  | 386 | handle->bulkOut = endpoint; | 
|  | 387 | if (!ClearPipeStallBothEnds(interface, handle->bulkOut)) goto err_get_pipe_props; | 
|  | 388 | } | 
|  | 389 |  | 
|  | 390 | handle->zero_mask = maxPacketSize - 1; | 
| Dima Zavin | 3fd82b8 | 2009-05-08 18:25:58 -0700 | [diff] [blame] | 391 | } | 
|  | 392 |  | 
|  | 393 | handle->interface = interface; | 
| The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 394 | return handle; | 
| Dima Zavin | 3fd82b8 | 2009-05-08 18:25:58 -0700 | [diff] [blame] | 395 |  | 
|  | 396 | err_get_pipe_props: | 
| Dima Zavin | 3fd82b8 | 2009-05-08 18:25:58 -0700 | [diff] [blame] | 397 | err_bad_adb_interface: | 
|  | 398 | err_get_interface_class: | 
|  | 399 | err_get_num_ep: | 
|  | 400 | (*interface)->USBInterfaceClose(interface); | 
| Yabin Cui | 48d4c0c | 2016-03-25 13:55:07 -0700 | [diff] [blame] | 401 | return nullptr; | 
| The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 402 | } | 
|  | 403 |  | 
| Yabin Cui | 48d4c0c | 2016-03-25 13:55:07 -0700 | [diff] [blame] | 404 | std::mutex& operate_device_lock = *new std::mutex(); | 
|  | 405 |  | 
| Josh Gao | b5fea14 | 2016-02-12 14:31:15 -0800 | [diff] [blame] | 406 | static void RunLoopThread(void* unused) { | 
| Siva Velusamy | 49ee7cf | 2015-08-28 16:37:29 -0700 | [diff] [blame] | 407 | adb_thread_setname("RunLoop"); | 
| The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 408 |  | 
| Yabin Cui | 48d4c0c | 2016-03-25 13:55:07 -0700 | [diff] [blame] | 409 | VLOG(USB) << "RunLoopThread started"; | 
|  | 410 | while (true) { | 
|  | 411 | { | 
|  | 412 | std::lock_guard<std::mutex> lock_guard(operate_device_lock); | 
|  | 413 | FindUSBDevices(); | 
|  | 414 | KickDisconnectedDevices(); | 
|  | 415 | } | 
|  | 416 | // Signal the parent that we are running | 
|  | 417 | usb_inited_flag = true; | 
| Elliott Hughes | dbe91ee | 2016-11-15 12:37:32 -0800 | [diff] [blame] | 418 | std::this_thread::sleep_for(1s); | 
| Yabin Cui | 48d4c0c | 2016-03-25 13:55:07 -0700 | [diff] [blame] | 419 | } | 
|  | 420 | VLOG(USB) << "RunLoopThread done"; | 
| The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 421 | } | 
|  | 422 |  | 
| Dan Albert | c89e0cc | 2015-05-08 16:13:53 -0700 | [diff] [blame] | 423 | static void usb_cleanup() { | 
| Yabin Cui | 48d4c0c | 2016-03-25 13:55:07 -0700 | [diff] [blame] | 424 | VLOG(USB) << "usb_cleanup"; | 
|  | 425 | // Wait until usb operations in RunLoopThread finish, and prevent further operations. | 
|  | 426 | operate_device_lock.lock(); | 
| Dan Albert | c89e0cc | 2015-05-08 16:13:53 -0700 | [diff] [blame] | 427 | close_usb_devices(); | 
| Dan Albert | c89e0cc | 2015-05-08 16:13:53 -0700 | [diff] [blame] | 428 | } | 
| The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 429 |  | 
| Elliott Hughes | 9b0f354 | 2015-05-05 13:41:21 -0700 | [diff] [blame] | 430 | void usb_init() { | 
| Dan Albert | c89e0cc | 2015-05-08 16:13:53 -0700 | [diff] [blame] | 431 | static bool initialized = false; | 
|  | 432 | if (!initialized) { | 
|  | 433 | atexit(usb_cleanup); | 
|  | 434 |  | 
| Yabin Cui | 48d4c0c | 2016-03-25 13:55:07 -0700 | [diff] [blame] | 435 | usb_inited_flag = false; | 
| The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 436 |  | 
| Elliott Hughes | 9b0f354 | 2015-05-05 13:41:21 -0700 | [diff] [blame] | 437 | if (!adb_thread_create(RunLoopThread, nullptr)) { | 
| Yabin Cui | d6ab3c2 | 2015-08-31 11:50:24 -0700 | [diff] [blame] | 438 | fatal_errno("cannot create RunLoop thread"); | 
| Elliott Hughes | 9b0f354 | 2015-05-05 13:41:21 -0700 | [diff] [blame] | 439 | } | 
| The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 440 |  | 
|  | 441 | // Wait for initialization to finish | 
| Yabin Cui | 48d4c0c | 2016-03-25 13:55:07 -0700 | [diff] [blame] | 442 | while (!usb_inited_flag) { | 
| Elliott Hughes | dbe91ee | 2016-11-15 12:37:32 -0800 | [diff] [blame] | 443 | std::this_thread::sleep_for(100ms); | 
| Yabin Cui | 48d4c0c | 2016-03-25 13:55:07 -0700 | [diff] [blame] | 444 | } | 
| The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 445 |  | 
| Dan Albert | c89e0cc | 2015-05-08 16:13:53 -0700 | [diff] [blame] | 446 | initialized = true; | 
| The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 447 | } | 
|  | 448 | } | 
|  | 449 |  | 
| The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 450 | int usb_write(usb_handle *handle, const void *buf, int len) | 
|  | 451 | { | 
|  | 452 | IOReturn    result; | 
|  | 453 |  | 
|  | 454 | if (!len) | 
|  | 455 | return 0; | 
|  | 456 |  | 
| Yabin Cui | 48d4c0c | 2016-03-25 13:55:07 -0700 | [diff] [blame] | 457 | if (!handle || handle->dead) | 
| The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 458 | return -1; | 
|  | 459 |  | 
|  | 460 | if (NULL == handle->interface) { | 
| Siva Velusamy | 743883b | 2015-08-18 17:53:16 -0700 | [diff] [blame] | 461 | LOG(ERROR) << "usb_write interface was null"; | 
| The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 462 | return -1; | 
|  | 463 | } | 
|  | 464 |  | 
|  | 465 | if (0 == handle->bulkOut) { | 
| Siva Velusamy | 743883b | 2015-08-18 17:53:16 -0700 | [diff] [blame] | 466 | LOG(ERROR) << "bulkOut endpoint not assigned"; | 
| The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 467 | return -1; | 
|  | 468 | } | 
|  | 469 |  | 
|  | 470 | result = | 
| Siva Velusamy | 743883b | 2015-08-18 17:53:16 -0700 | [diff] [blame] | 471 | (*handle->interface)->WritePipe(handle->interface, handle->bulkOut, (void *)buf, len); | 
| The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 472 |  | 
|  | 473 | if ((result == 0) && (handle->zero_mask)) { | 
|  | 474 | /* we need 0-markers and our transfer */ | 
|  | 475 | if(!(len & handle->zero_mask)) { | 
|  | 476 | result = | 
|  | 477 | (*handle->interface)->WritePipe( | 
|  | 478 | handle->interface, handle->bulkOut, (void *)buf, 0); | 
|  | 479 | } | 
|  | 480 | } | 
|  | 481 |  | 
|  | 482 | if (0 == result) | 
|  | 483 | return 0; | 
|  | 484 |  | 
| Siva Velusamy | 743883b | 2015-08-18 17:53:16 -0700 | [diff] [blame] | 485 | LOG(ERROR) << "usb_write failed with status: " << std::hex << result; | 
| The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 486 | return -1; | 
|  | 487 | } | 
|  | 488 |  | 
|  | 489 | int usb_read(usb_handle *handle, void *buf, int len) | 
|  | 490 | { | 
|  | 491 | IOReturn result; | 
|  | 492 | UInt32  numBytes = len; | 
|  | 493 |  | 
|  | 494 | if (!len) { | 
|  | 495 | return 0; | 
|  | 496 | } | 
|  | 497 |  | 
| Yabin Cui | 48d4c0c | 2016-03-25 13:55:07 -0700 | [diff] [blame] | 498 | if (!handle || handle->dead) { | 
| The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 499 | return -1; | 
|  | 500 | } | 
|  | 501 |  | 
|  | 502 | if (NULL == handle->interface) { | 
| Siva Velusamy | 743883b | 2015-08-18 17:53:16 -0700 | [diff] [blame] | 503 | LOG(ERROR) << "usb_read interface was null"; | 
| The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 504 | return -1; | 
|  | 505 | } | 
|  | 506 |  | 
|  | 507 | if (0 == handle->bulkIn) { | 
| Siva Velusamy | 743883b | 2015-08-18 17:53:16 -0700 | [diff] [blame] | 508 | LOG(ERROR) << "bulkIn endpoint not assigned"; | 
| The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 509 | return -1; | 
|  | 510 | } | 
|  | 511 |  | 
| Esteban de la Canal | 9dd83dc | 2014-09-11 11:02:17 -0700 | [diff] [blame] | 512 | result = (*handle->interface)->ReadPipe(handle->interface, handle->bulkIn, buf, &numBytes); | 
| The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 513 |  | 
| Esteban de la Canal | 9dd83dc | 2014-09-11 11:02:17 -0700 | [diff] [blame] | 514 | if (kIOUSBPipeStalled == result) { | 
| Siva Velusamy | 743883b | 2015-08-18 17:53:16 -0700 | [diff] [blame] | 515 | LOG(ERROR) << "Pipe stalled, clearing stall.\n"; | 
| Esteban de la Canal | 9dd83dc | 2014-09-11 11:02:17 -0700 | [diff] [blame] | 516 | (*handle->interface)->ClearPipeStall(handle->interface, handle->bulkIn); | 
|  | 517 | result = (*handle->interface)->ReadPipe(handle->interface, handle->bulkIn, buf, &numBytes); | 
|  | 518 | } | 
|  | 519 |  | 
|  | 520 | if (kIOReturnSuccess == result) | 
| The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 521 | return 0; | 
|  | 522 | else { | 
| Siva Velusamy | 743883b | 2015-08-18 17:53:16 -0700 | [diff] [blame] | 523 | LOG(ERROR) << "usb_read failed with status: " << std::hex << result; | 
| The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 524 | } | 
|  | 525 |  | 
|  | 526 | return -1; | 
|  | 527 | } | 
|  | 528 |  | 
|  | 529 | int usb_close(usb_handle *handle) | 
|  | 530 | { | 
| Yabin Cui | 48d4c0c | 2016-03-25 13:55:07 -0700 | [diff] [blame] | 531 | std::lock_guard<std::mutex> lock(g_usb_handles_mutex); | 
|  | 532 | for (auto it = g_usb_handles.begin(); it != g_usb_handles.end(); ++it) { | 
|  | 533 | if ((*it).get() == handle) { | 
|  | 534 | g_usb_handles.erase(it); | 
|  | 535 | break; | 
|  | 536 | } | 
|  | 537 | } | 
| The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 538 | return 0; | 
|  | 539 | } | 
|  | 540 |  | 
| Yabin Cui | 48d4c0c | 2016-03-25 13:55:07 -0700 | [diff] [blame] | 541 | static void usb_kick_locked(usb_handle *handle) | 
| The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 542 | { | 
| Siva Velusamy | 743883b | 2015-08-18 17:53:16 -0700 | [diff] [blame] | 543 | LOG(INFO) << "Kicking handle"; | 
| The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 544 | /* release the interface */ | 
| Dima Zavin | 3fd82b8 | 2009-05-08 18:25:58 -0700 | [diff] [blame] | 545 | if (!handle) | 
|  | 546 | return; | 
|  | 547 |  | 
| Yabin Cui | 48d4c0c | 2016-03-25 13:55:07 -0700 | [diff] [blame] | 548 | if (!handle->dead) | 
| The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 549 | { | 
| Yabin Cui | 48d4c0c | 2016-03-25 13:55:07 -0700 | [diff] [blame] | 550 | handle->dead = true; | 
| The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 551 | (*handle->interface)->USBInterfaceClose(handle->interface); | 
|  | 552 | (*handle->interface)->Release(handle->interface); | 
| The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 553 | } | 
|  | 554 | } | 
| Yabin Cui | 48d4c0c | 2016-03-25 13:55:07 -0700 | [diff] [blame] | 555 |  | 
|  | 556 | void usb_kick(usb_handle *handle) { | 
|  | 557 | // Use the lock to avoid multiple thread kicking the device at the same time. | 
|  | 558 | std::lock_guard<std::mutex> lock_guard(g_usb_handles_mutex); | 
|  | 559 | usb_kick_locked(handle); | 
|  | 560 | } |