blob: 3dab5ac17e3029f41cfe9b077838e16e758bd983 [file] [log] [blame]
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001/*
2 * Copyright (C) 2008 The Android Open Source Project
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above copyright
11 * notice, this list of conditions and the following disclaimer in
Anatol Pomazau5ae3f932012-02-28 07:21:08 -080012 * the documentation and/or other materials provided with the
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080013 * distribution.
14 *
15 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
16 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
17 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
18 * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
19 * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
20 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
21 * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
Anatol Pomazau5ae3f932012-02-28 07:21:08 -080022 * OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080023 * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
24 * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
25 * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
26 * SUCH DAMAGE.
27 */
28
29#include <windows.h>
30#include <winerror.h>
31#include <errno.h>
32#include <usb100.h>
33#include <adb_api.h>
34#include <stdio.h>
Christopher Ferris67a7a4a2014-11-06 14:34:24 -080035#include <stdlib.h>
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080036
David Pursell0b156632015-10-30 11:22:01 -070037#include <memory>
38#include <string>
39
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080040#include "usb.h"
41
42//#define TRACE_USB 1
43#if TRACE_USB
44#define DBG(x...) fprintf(stderr, x)
45#else
46#define DBG(x...)
47#endif
48
David Krause913eb8b2011-03-08 14:10:16 +080049#define MAX_USBFS_BULK_SIZE (1024 * 1024)
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080050
51/** Structure usb_handle describes our connection to the usb device via
52 AdbWinApi.dll. This structure is returned from usb_open() routine and
53 is expected in each subsequent call that is accessing the device.
54*/
55struct usb_handle {
56 /// Handle to USB interface
57 ADBAPIHANDLE adb_interface;
Anatol Pomazau5ae3f932012-02-28 07:21:08 -080058
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080059 /// Handle to USB read pipe (endpoint)
60 ADBAPIHANDLE adb_read_pipe;
Anatol Pomazau5ae3f932012-02-28 07:21:08 -080061
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080062 /// Handle to USB write pipe (endpoint)
63 ADBAPIHANDLE adb_write_pipe;
Anatol Pomazau5ae3f932012-02-28 07:21:08 -080064
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080065 /// Interface name
David Pursell0b156632015-10-30 11:22:01 -070066 std::string interface_name;
67};
68
69class WindowsUsbTransport : public Transport {
70 public:
71 WindowsUsbTransport(std::unique_ptr<usb_handle> handle) : handle_(std::move(handle)) {}
72 ~WindowsUsbTransport() override = default;
73
74 ssize_t Read(void* data, size_t len) override;
75 ssize_t Write(const void* data, size_t len) override;
76 int Close() override;
77
78 private:
79 std::unique_ptr<usb_handle> handle_;
80
81 DISALLOW_COPY_AND_ASSIGN(WindowsUsbTransport);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080082};
83
84/// Class ID assigned to the device by androidusb.sys
85static const GUID usb_class_id = ANDROID_USB_CLASS_ID;
86
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080087/// Checks if interface (device) matches certain criteria
88int recognized_device(usb_handle* handle, ifc_match_func callback);
89
90/// Opens usb interface (device) by interface (device) name.
David Pursell0b156632015-10-30 11:22:01 -070091std::unique_ptr<usb_handle> do_usb_open(const wchar_t* interface_name);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080092
93/// Cleans up opened usb handle
94void usb_cleanup_handle(usb_handle* handle);
95
96/// Cleans up (but don't close) opened usb handle
97void usb_kick(usb_handle* handle);
98
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080099
David Pursell0b156632015-10-30 11:22:01 -0700100std::unique_ptr<usb_handle> do_usb_open(const wchar_t* interface_name) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800101 // Allocate our handle
David Pursell0b156632015-10-30 11:22:01 -0700102 std::unique_ptr<usb_handle> ret(new usb_handle);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800103
104 // Create interface.
105 ret->adb_interface = AdbCreateInterfaceByName(interface_name);
106
David Pursell0b156632015-10-30 11:22:01 -0700107 if (nullptr == ret->adb_interface) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800108 errno = GetLastError();
David Pursell0b156632015-10-30 11:22:01 -0700109 return nullptr;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800110 }
111
112 // Open read pipe (endpoint)
113 ret->adb_read_pipe =
114 AdbOpenDefaultBulkReadEndpoint(ret->adb_interface,
115 AdbOpenAccessTypeReadWrite,
116 AdbOpenSharingModeReadWrite);
David Pursell0b156632015-10-30 11:22:01 -0700117 if (nullptr != ret->adb_read_pipe) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800118 // Open write pipe (endpoint)
119 ret->adb_write_pipe =
120 AdbOpenDefaultBulkWriteEndpoint(ret->adb_interface,
121 AdbOpenAccessTypeReadWrite,
122 AdbOpenSharingModeReadWrite);
David Pursell0b156632015-10-30 11:22:01 -0700123 if (nullptr != ret->adb_write_pipe) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800124 // Save interface name
125 unsigned long name_len = 0;
126
127 // First get expected name length
128 AdbGetInterfaceName(ret->adb_interface,
David Pursell0b156632015-10-30 11:22:01 -0700129 nullptr,
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800130 &name_len,
131 true);
132 if (0 != name_len) {
David Pursell0b156632015-10-30 11:22:01 -0700133 // Now save the name
134 ret->interface_name.resize(name_len);
135 if (AdbGetInterfaceName(ret->adb_interface,
136 &ret->interface_name[0],
137 &name_len,
138 true)) {
139 // We're done at this point
140 return ret;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800141 }
142 }
143 }
144 }
145
146 // Something went wrong.
147 errno = GetLastError();
David Pursell0b156632015-10-30 11:22:01 -0700148 usb_cleanup_handle(ret.get());
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800149 SetLastError(errno);
150
David Pursell0b156632015-10-30 11:22:01 -0700151 return nullptr;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800152}
153
David Pursell0b156632015-10-30 11:22:01 -0700154ssize_t WindowsUsbTransport::Write(const void* data, size_t len) {
Jiebing Libbb79812012-08-07 14:29:21 +0800155 unsigned long time_out = 5000;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800156 unsigned long written = 0;
157 unsigned count = 0;
158 int ret;
159
160 DBG("usb_write %d\n", len);
David Pursell0b156632015-10-30 11:22:01 -0700161 if (nullptr != handle_) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800162 // Perform write
163 while(len > 0) {
David Krause913eb8b2011-03-08 14:10:16 +0800164 int xfer = (len > MAX_USBFS_BULK_SIZE) ? MAX_USBFS_BULK_SIZE : len;
David Pursell0b156632015-10-30 11:22:01 -0700165 ret = AdbWriteEndpointSync(handle_->adb_write_pipe, const_cast<void*>(data), xfer,
166 &written, time_out);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800167 errno = GetLastError();
168 DBG("AdbWriteEndpointSync returned %d, errno: %d\n", ret, errno);
169 if (ret == 0) {
170 // assume ERROR_INVALID_HANDLE indicates we are disconnected
171 if (errno == ERROR_INVALID_HANDLE)
David Pursell0b156632015-10-30 11:22:01 -0700172 usb_kick(handle_.get());
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800173 return -1;
174 }
175
176 count += written;
177 len -= written;
Mark Salyzyn5957c1f2014-04-30 14:05:28 -0700178 data = (const char *)data + written;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800179
180 if (len == 0)
181 return count;
182 }
183 } else {
184 DBG("usb_write NULL handle\n");
185 SetLastError(ERROR_INVALID_HANDLE);
186 }
187
188 DBG("usb_write failed: %d\n", errno);
189
190 return -1;
191}
192
David Pursell0b156632015-10-30 11:22:01 -0700193ssize_t WindowsUsbTransport::Read(void* data, size_t len) {
Jiebing Libbb79812012-08-07 14:29:21 +0800194 unsigned long time_out = 0;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800195 unsigned long read = 0;
196 int ret;
197
198 DBG("usb_read %d\n", len);
David Pursell0b156632015-10-30 11:22:01 -0700199 if (nullptr != handle_) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800200 while (1) {
David Krause913eb8b2011-03-08 14:10:16 +0800201 int xfer = (len > MAX_USBFS_BULK_SIZE) ? MAX_USBFS_BULK_SIZE : len;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800202
David Pursell0b156632015-10-30 11:22:01 -0700203 ret = AdbReadEndpointSync(handle_->adb_read_pipe, data, xfer, &read, time_out);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800204 errno = GetLastError();
205 DBG("usb_read got: %ld, expected: %d, errno: %d\n", read, xfer, errno);
206 if (ret) {
207 return read;
Jiebing Libbb79812012-08-07 14:29:21 +0800208 } else {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800209 // assume ERROR_INVALID_HANDLE indicates we are disconnected
210 if (errno == ERROR_INVALID_HANDLE)
David Pursell0b156632015-10-30 11:22:01 -0700211 usb_kick(handle_.get());
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800212 break;
213 }
214 // else we timed out - try again
215 }
216 } else {
217 DBG("usb_read NULL handle\n");
218 SetLastError(ERROR_INVALID_HANDLE);
219 }
220
221 DBG("usb_read failed: %d\n", errno);
222
223 return -1;
224}
225
226void usb_cleanup_handle(usb_handle* handle) {
227 if (NULL != handle) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800228 if (NULL != handle->adb_write_pipe)
229 AdbCloseHandle(handle->adb_write_pipe);
230 if (NULL != handle->adb_read_pipe)
231 AdbCloseHandle(handle->adb_read_pipe);
232 if (NULL != handle->adb_interface)
233 AdbCloseHandle(handle->adb_interface);
234
David Pursell0b156632015-10-30 11:22:01 -0700235 handle->interface_name.clear();
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800236 handle->adb_write_pipe = NULL;
237 handle->adb_read_pipe = NULL;
238 handle->adb_interface = NULL;
239 }
240}
241
242void usb_kick(usb_handle* handle) {
243 if (NULL != handle) {
244 usb_cleanup_handle(handle);
245 } else {
246 SetLastError(ERROR_INVALID_HANDLE);
247 errno = ERROR_INVALID_HANDLE;
248 }
249}
250
David Pursell0b156632015-10-30 11:22:01 -0700251int WindowsUsbTransport::Close() {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800252 DBG("usb_close\n");
253
David Pursell0b156632015-10-30 11:22:01 -0700254 if (nullptr != handle_) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800255 // Cleanup handle
David Pursell0b156632015-10-30 11:22:01 -0700256 usb_cleanup_handle(handle_.get());
257 handle_.reset();
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800258 }
259
260 return 0;
261}
262
263int recognized_device(usb_handle* handle, ifc_match_func callback) {
264 struct usb_ifc_info info;
265 USB_DEVICE_DESCRIPTOR device_desc;
266 USB_INTERFACE_DESCRIPTOR interf_desc;
267
268 if (NULL == handle)
269 return 0;
270
271 // Check vendor and product id first
272 if (!AdbGetUsbDeviceDescriptor(handle->adb_interface,
273 &device_desc)) {
274 return 0;
275 }
276
277 // Then check interface properties
278 if (!AdbGetUsbInterfaceDescriptor(handle->adb_interface,
279 &interf_desc)) {
280 return 0;
281 }
282
283 // Must have two endpoints
284 if (2 != interf_desc.bNumEndpoints) {
285 return 0;
286 }
287
288 info.dev_vendor = device_desc.idVendor;
289 info.dev_product = device_desc.idProduct;
290 info.dev_class = device_desc.bDeviceClass;
291 info.dev_subclass = device_desc.bDeviceSubClass;
292 info.dev_protocol = device_desc.bDeviceProtocol;
293 info.ifc_class = interf_desc.bInterfaceClass;
294 info.ifc_subclass = interf_desc.bInterfaceSubClass;
295 info.ifc_protocol = interf_desc.bInterfaceProtocol;
Elliott Hughesb4add9b2009-10-06 18:07:49 -0700296 info.writable = 1;
Anatol Pomazau5ae3f932012-02-28 07:21:08 -0800297
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800298 // read serial number (if there is one)
299 unsigned long serial_number_len = sizeof(info.serial_number);
300 if (!AdbGetSerialNumber(handle->adb_interface, info.serial_number,
301 &serial_number_len, true)) {
302 info.serial_number[0] = 0;
303 }
304
Scott Anderson13081c62012-04-06 12:39:30 -0700305 info.device_path[0] = 0;
306
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800307 if (callback(&info) == 0) {
308 return 1;
309 }
310
311 return 0;
312}
313
David Pursell0b156632015-10-30 11:22:01 -0700314static std::unique_ptr<usb_handle> find_usb_device(ifc_match_func callback) {
315 std::unique_ptr<usb_handle> handle;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800316 char entry_buffer[2048];
317 char interf_name[2048];
318 AdbInterfaceInfo* next_interface = (AdbInterfaceInfo*)(&entry_buffer[0]);
319 unsigned long entry_buffer_size = sizeof(entry_buffer);
320 char* copy_name;
321
322 // Enumerate all present and active interfaces.
323 ADBAPIHANDLE enum_handle =
324 AdbEnumInterfaces(usb_class_id, true, true, true);
325
326 if (NULL == enum_handle)
327 return NULL;
328
329 while (AdbNextInterface(enum_handle, next_interface, &entry_buffer_size)) {
330 // TODO(vchtchetkine): FIXME - temp hack converting wchar_t into char.
331 // It would be better to change AdbNextInterface so it will return
332 // interface name as single char string.
333 const wchar_t* wchar_name = next_interface->device_name;
334 for(copy_name = interf_name;
335 L'\0' != *wchar_name;
336 wchar_name++, copy_name++) {
337 *copy_name = (char)(*wchar_name);
338 }
339 *copy_name = '\0';
340
341 handle = do_usb_open(next_interface->device_name);
342 if (NULL != handle) {
343 // Lets see if this interface (device) belongs to us
David Pursell0b156632015-10-30 11:22:01 -0700344 if (recognized_device(handle.get(), callback)) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800345 // found it!
346 break;
347 } else {
David Pursell0b156632015-10-30 11:22:01 -0700348 usb_cleanup_handle(handle.get());
349 handle.reset();
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800350 }
351 }
352
353 entry_buffer_size = sizeof(entry_buffer);
354 }
355
356 AdbCloseHandle(enum_handle);
357 return handle;
358}
359
David Pursell0b156632015-10-30 11:22:01 -0700360Transport* usb_open(ifc_match_func callback)
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800361{
David Pursell0b156632015-10-30 11:22:01 -0700362 std::unique_ptr<usb_handle> handle = find_usb_device(callback);
363 return handle ? new WindowsUsbTransport(std::move(handle)) : nullptr;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800364}