1 /*
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
12 * the documentation and/or other materials provided with the
13 * 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
22 * OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
23 * 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>
35 #include <stdlib.h>
36
37 #include <memory>
38 #include <string>
39
40 #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
49 #define MAX_USBFS_BULK_SIZE (1024 * 1024)
50
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 */
55 struct usb_handle {
56 /// Handle to USB interface
57 ADBAPIHANDLE adb_interface;
58
59 /// Handle to USB read pipe (endpoint)
60 ADBAPIHANDLE adb_read_pipe;
61
62 /// Handle to USB write pipe (endpoint)
63 ADBAPIHANDLE adb_write_pipe;
64
65 /// Interface name
66 std::string interface_name;
67 };
68
69 class WindowsUsbTransport : public UsbTransport {
70 public:
WindowsUsbTransport(std::unique_ptr<usb_handle> handle)71 WindowsUsbTransport(std::unique_ptr<usb_handle> handle) : handle_(std::move(handle)) {}
72 ~WindowsUsbTransport() override;
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 int Reset() override;
78
79 private:
80 std::unique_ptr<usb_handle> handle_;
81
82 DISALLOW_COPY_AND_ASSIGN(WindowsUsbTransport);
83 };
84
85 /// Class ID assigned to the device by androidusb.sys
86 static const GUID usb_class_id = ANDROID_USB_CLASS_ID;
87
88 /// Checks if interface (device) matches certain criteria
89 int recognized_device(usb_handle* handle, ifc_match_func callback);
90
91 /// Opens usb interface (device) by interface (device) name.
92 std::unique_ptr<usb_handle> do_usb_open(const wchar_t* interface_name);
93
94 /// Cleans up opened usb handle
95 void usb_cleanup_handle(usb_handle* handle);
96
97 /// Cleans up (but don't close) opened usb handle
98 void usb_kick(usb_handle* handle);
99
100
do_usb_open(const wchar_t * interface_name)101 std::unique_ptr<usb_handle> do_usb_open(const wchar_t* interface_name) {
102 // Allocate our handle
103 std::unique_ptr<usb_handle> ret(new usb_handle);
104
105 // Create interface.
106 ret->adb_interface = AdbCreateInterfaceByName(interface_name);
107
108 if (nullptr == ret->adb_interface) {
109 errno = GetLastError();
110 DBG("failed to open interface %S\n", interface_name);
111 return nullptr;
112 }
113
114 // Open read pipe (endpoint)
115 ret->adb_read_pipe =
116 AdbOpenDefaultBulkReadEndpoint(ret->adb_interface,
117 AdbOpenAccessTypeReadWrite,
118 AdbOpenSharingModeReadWrite);
119 if (nullptr != ret->adb_read_pipe) {
120 // Open write pipe (endpoint)
121 ret->adb_write_pipe =
122 AdbOpenDefaultBulkWriteEndpoint(ret->adb_interface,
123 AdbOpenAccessTypeReadWrite,
124 AdbOpenSharingModeReadWrite);
125 if (nullptr != ret->adb_write_pipe) {
126 // Save interface name
127 unsigned long name_len = 0;
128
129 // First get expected name length
130 AdbGetInterfaceName(ret->adb_interface,
131 nullptr,
132 &name_len,
133 true);
134 if (0 != name_len) {
135 // Now save the name
136 ret->interface_name.resize(name_len);
137 if (AdbGetInterfaceName(ret->adb_interface,
138 &ret->interface_name[0],
139 &name_len,
140 true)) {
141 // We're done at this point
142 return ret;
143 }
144 }
145 }
146 }
147
148 // Something went wrong.
149 errno = GetLastError();
150 usb_cleanup_handle(ret.get());
151 SetLastError(errno);
152
153 return nullptr;
154 }
155
Write(const void * data,size_t len)156 ssize_t WindowsUsbTransport::Write(const void* data, size_t len) {
157 unsigned long time_out = 5000;
158 unsigned long written = 0;
159 unsigned count = 0;
160 int ret;
161
162 DBG("usb_write %zu\n", len);
163 if (nullptr != handle_) {
164 // Perform write
165 while(len > 0) {
166 int xfer = (len > MAX_USBFS_BULK_SIZE) ? MAX_USBFS_BULK_SIZE : len;
167 ret = AdbWriteEndpointSync(handle_->adb_write_pipe, const_cast<void*>(data), xfer,
168 &written, time_out);
169 errno = GetLastError();
170 DBG("AdbWriteEndpointSync returned %d, errno: %d\n", ret, errno);
171 if (ret == 0) {
172 // assume ERROR_INVALID_HANDLE indicates we are disconnected
173 if (errno == ERROR_INVALID_HANDLE)
174 usb_kick(handle_.get());
175 return -1;
176 }
177
178 count += written;
179 len -= written;
180 data = (const char *)data + written;
181
182 if (len == 0)
183 return count;
184 }
185 } else {
186 DBG("usb_write NULL handle\n");
187 SetLastError(ERROR_INVALID_HANDLE);
188 }
189
190 DBG("usb_write failed: %d\n", errno);
191
192 return -1;
193 }
194
Read(void * data,size_t len)195 ssize_t WindowsUsbTransport::Read(void* data, size_t len) {
196 unsigned long time_out = 0;
197 unsigned long read = 0;
198 size_t count = 0;
199 int ret;
200
201 DBG("usb_read %zu\n", len);
202 if (nullptr != handle_) {
203 while (len > 0) {
204 size_t xfer = (len > MAX_USBFS_BULK_SIZE) ? MAX_USBFS_BULK_SIZE : len;
205
206 ret = AdbReadEndpointSync(handle_->adb_read_pipe, data, xfer, &read, time_out);
207 errno = GetLastError();
208 DBG("usb_read got: %lu, expected: %zu, errno: %d\n", read, xfer, errno);
209 if (ret == 0) {
210 // assume ERROR_INVALID_HANDLE indicates we are disconnected
211 if (errno == ERROR_INVALID_HANDLE)
212 usb_kick(handle_.get());
213 break;
214 }
215 count += read;
216 len -= read;
217 data = (char*)data + read;
218
219 if (xfer != read || len == 0) return count;
220 }
221 } else {
222 DBG("usb_read NULL handle\n");
223 SetLastError(ERROR_INVALID_HANDLE);
224 }
225
226 DBG("usb_read failed: %d\n", errno);
227
228 return -1;
229 }
230
usb_cleanup_handle(usb_handle * handle)231 void usb_cleanup_handle(usb_handle* handle) {
232 if (NULL != handle) {
233 if (NULL != handle->adb_write_pipe)
234 AdbCloseHandle(handle->adb_write_pipe);
235 if (NULL != handle->adb_read_pipe)
236 AdbCloseHandle(handle->adb_read_pipe);
237 if (NULL != handle->adb_interface)
238 AdbCloseHandle(handle->adb_interface);
239
240 handle->interface_name.clear();
241 handle->adb_write_pipe = NULL;
242 handle->adb_read_pipe = NULL;
243 handle->adb_interface = NULL;
244 }
245 }
246
usb_kick(usb_handle * handle)247 void usb_kick(usb_handle* handle) {
248 if (NULL != handle) {
249 usb_cleanup_handle(handle);
250 } else {
251 SetLastError(ERROR_INVALID_HANDLE);
252 errno = ERROR_INVALID_HANDLE;
253 }
254 }
255
~WindowsUsbTransport()256 WindowsUsbTransport::~WindowsUsbTransport() {
257 Close();
258 }
259
Close()260 int WindowsUsbTransport::Close() {
261 DBG("usb_close\n");
262
263 if (nullptr != handle_) {
264 // Cleanup handle
265 usb_cleanup_handle(handle_.get());
266 handle_.reset();
267 }
268
269 return 0;
270 }
271
Reset()272 int WindowsUsbTransport::Reset() {
273 DBG("usb_reset currently unsupported\n\n");
274 // TODO, this is a bit complicated since it is using ADB
275 return -1;
276 }
277
recognized_device(usb_handle * handle,ifc_match_func callback)278 int recognized_device(usb_handle* handle, ifc_match_func callback) {
279 struct usb_ifc_info info;
280 USB_DEVICE_DESCRIPTOR device_desc;
281 USB_INTERFACE_DESCRIPTOR interf_desc;
282
283 if (NULL == handle)
284 return 0;
285
286 // Check vendor and product id first
287 if (!AdbGetUsbDeviceDescriptor(handle->adb_interface, &device_desc)) {
288 DBG("skipping device %x:%x\n", device_desc.idVendor, device_desc.idProduct);
289 return 0;
290 }
291
292 // Then check interface properties
293 if (!AdbGetUsbInterfaceDescriptor(handle->adb_interface, &interf_desc)) {
294 DBG("skipping device %x:%x, failed to find interface\n", device_desc.idVendor,
295 device_desc.idProduct);
296 return 0;
297 }
298
299 // Must have two endpoints
300 if (2 != interf_desc.bNumEndpoints) {
301 DBG("skipping device %x:%x, incorrect number of endpoints\n", device_desc.idVendor,
302 device_desc.idProduct);
303 return 0;
304 }
305
306 info.dev_vendor = device_desc.idVendor;
307 info.dev_product = device_desc.idProduct;
308 info.dev_class = device_desc.bDeviceClass;
309 info.dev_subclass = device_desc.bDeviceSubClass;
310 info.dev_protocol = device_desc.bDeviceProtocol;
311 info.ifc_class = interf_desc.bInterfaceClass;
312 info.ifc_subclass = interf_desc.bInterfaceSubClass;
313 info.ifc_protocol = interf_desc.bInterfaceProtocol;
314 info.writable = 1;
315
316 // read serial number (if there is one)
317 unsigned long serial_number_len = sizeof(info.serial_number);
318 if (!AdbGetSerialNumber(handle->adb_interface, info.serial_number,
319 &serial_number_len, true)) {
320 info.serial_number[0] = 0;
321 }
322
323 info.device_path[0] = 0;
324
325 if (callback(&info) == 0) {
326 DBG("skipping device %x:%x, not selected by callback\n", device_desc.idVendor,
327 device_desc.idProduct);
328 return 1;
329 }
330
331 DBG("found device %x:%x (%s)\n", device_desc.idVendor, device_desc.idProduct,
332 info.serial_number);
333 return 0;
334 }
335
find_usb_device(ifc_match_func callback)336 static std::unique_ptr<usb_handle> find_usb_device(ifc_match_func callback) {
337 std::unique_ptr<usb_handle> handle;
338 char entry_buffer[2048];
339 char interf_name[2048];
340 AdbInterfaceInfo* next_interface = (AdbInterfaceInfo*)(&entry_buffer[0]);
341 unsigned long entry_buffer_size = sizeof(entry_buffer);
342 char* copy_name;
343
344 // Enumerate all present and active interfaces.
345 ADBAPIHANDLE enum_handle =
346 AdbEnumInterfaces(usb_class_id, true, true, true);
347
348 if (NULL == enum_handle)
349 return NULL;
350
351 while (AdbNextInterface(enum_handle, next_interface, &entry_buffer_size)) {
352 // TODO(vchtchetkine): FIXME - temp hack converting wchar_t into char.
353 // It would be better to change AdbNextInterface so it will return
354 // interface name as single char string.
355 const wchar_t* wchar_name = next_interface->device_name;
356 for(copy_name = interf_name;
357 L'\0' != *wchar_name;
358 wchar_name++, copy_name++) {
359 *copy_name = (char)(*wchar_name);
360 }
361 *copy_name = '\0';
362
363 DBG("attempting to open interface %S\n", next_interface->device_name);
364 handle = do_usb_open(next_interface->device_name);
365 if (NULL != handle) {
366 // Lets see if this interface (device) belongs to us
367 if (recognized_device(handle.get(), callback)) {
368 // found it!
369 break;
370 } else {
371 usb_cleanup_handle(handle.get());
372 handle.reset();
373 }
374 }
375
376 entry_buffer_size = sizeof(entry_buffer);
377 }
378
379 AdbCloseHandle(enum_handle);
380 return handle;
381 }
382
usb_open(ifc_match_func callback,uint32_t)383 UsbTransport* usb_open(ifc_match_func callback, uint32_t) {
384 std::unique_ptr<usb_handle> handle = find_usb_device(callback);
385 return handle ? new WindowsUsbTransport(std::move(handle)) : nullptr;
386 }
387