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