• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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 
17 #define TRACE_TAG TRANSPORT
18 
19 #include <memory>
20 
21 #include "sysdeps.h"
22 #include "transport.h"
23 
24 #include <stdio.h>
25 #include <stdlib.h>
26 #include <string.h>
27 
28 #include "adb.h"
29 
30 #if ADB_HOST
31 
32 #if defined(__APPLE__)
33 #define CHECK_PACKET_OVERFLOW 0
34 #else
35 #define CHECK_PACKET_OVERFLOW 1
36 #endif
37 
38 // Call usb_read using a buffer having a multiple of usb_get_max_packet_size() bytes
39 // to avoid overflow. See http://libusb.sourceforge.net/api-1.0/packetoverflow.html.
UsbReadMessage(usb_handle * h,amessage * msg)40 static int UsbReadMessage(usb_handle* h, amessage* msg) {
41     D("UsbReadMessage");
42 
43 #if CHECK_PACKET_OVERFLOW
44     size_t usb_packet_size = usb_get_max_packet_size(h);
45     CHECK_GE(usb_packet_size, sizeof(*msg));
46     CHECK_LT(usb_packet_size, 4096ULL);
47 
48     char buffer[4096];
49     int n = usb_read(h, buffer, usb_packet_size);
50     if (n != sizeof(*msg)) {
51         D("usb_read returned unexpected length %d (expected %zu)", n, sizeof(*msg));
52         return -1;
53     }
54     memcpy(msg, buffer, sizeof(*msg));
55     return n;
56 #else
57     return usb_read(h, msg, sizeof(*msg));
58 #endif
59 }
60 
61 // Call usb_read using a buffer having a multiple of usb_get_max_packet_size() bytes
62 // to avoid overflow. See http://libusb.sourceforge.net/api-1.0/packetoverflow.html.
UsbReadPayload(usb_handle * h,apacket * p)63 static int UsbReadPayload(usb_handle* h, apacket* p) {
64     D("UsbReadPayload(%d)", p->msg.data_length);
65 
66     if (p->msg.data_length > MAX_PAYLOAD) {
67         return -1;
68     }
69 
70 #if CHECK_PACKET_OVERFLOW
71     size_t usb_packet_size = usb_get_max_packet_size(h);
72 
73     // Round the data length up to the nearest packet size boundary.
74     // The device won't send a zero packet for packet size aligned payloads,
75     // so don't read any more packets than needed.
76     size_t len = p->msg.data_length;
77     size_t rem_size = len % usb_packet_size;
78     if (rem_size) {
79         len += usb_packet_size - rem_size;
80     }
81 
82     p->payload.resize(len);
83     int rc = usb_read(h, &p->payload[0], p->payload.size());
84     if (rc != static_cast<int>(p->msg.data_length)) {
85         return -1;
86     }
87 
88     p->payload.resize(rc);
89     return rc;
90 #else
91     p->payload.resize(p->msg.data_length);
92     return usb_read(h, &p->payload[0], p->payload.size());
93 #endif
94 }
95 
remote_read(apacket * p,usb_handle * usb)96 static int remote_read(apacket* p, usb_handle* usb) {
97     int n = UsbReadMessage(usb, &p->msg);
98     if (n < 0) {
99         D("remote usb: read terminated (message)");
100         return -1;
101     }
102     if (static_cast<size_t>(n) != sizeof(p->msg)) {
103         D("remote usb: read received unexpected header length %d", n);
104         return -1;
105     }
106     if (p->msg.data_length) {
107         n = UsbReadPayload(usb, p);
108         if (n < 0) {
109             D("remote usb: terminated (data)");
110             return -1;
111         }
112         if (static_cast<uint32_t>(n) != p->msg.data_length) {
113             D("remote usb: read payload failed (need %u bytes, give %d bytes), skip it",
114               p->msg.data_length, n);
115             return -1;
116         }
117     }
118     return 0;
119 }
120 
121 #else
122 
123 // On Android devices, we rely on the kernel to provide buffered read.
124 // So we can recover automatically from EOVERFLOW.
remote_read(apacket * p,usb_handle * usb)125 static int remote_read(apacket* p, usb_handle* usb) {
126     if (usb_read(usb, &p->msg, sizeof(amessage)) != sizeof(amessage)) {
127         PLOG(ERROR) << "remote usb: read terminated (message)";
128         return -1;
129     }
130 
131     if (p->msg.data_length) {
132         if (p->msg.data_length > MAX_PAYLOAD) {
133             PLOG(ERROR) << "remote usb: read overflow (data length = " << p->msg.data_length << ")";
134             return -1;
135         }
136 
137         p->payload.resize(p->msg.data_length);
138         if (usb_read(usb, &p->payload[0], p->payload.size())
139                 != static_cast<int>(p->payload.size())) {
140             PLOG(ERROR) << "remote usb: terminated (data)";
141             return -1;
142         }
143     }
144 
145     return 0;
146 }
147 #endif
148 
~UsbConnection()149 UsbConnection::~UsbConnection() {
150     usb_close(handle_);
151 }
152 
Read(apacket * packet)153 bool UsbConnection::Read(apacket* packet) {
154     int rc = remote_read(packet, handle_);
155     return rc == 0;
156 }
157 
Write(apacket * packet)158 bool UsbConnection::Write(apacket* packet) {
159     int size = packet->msg.data_length;
160 
161     if (usb_write(handle_, &packet->msg, sizeof(packet->msg)) != sizeof(packet->msg)) {
162         PLOG(ERROR) << "remote usb: 1 - write terminated";
163         return false;
164     }
165 
166     if (packet->msg.data_length != 0 && usb_write(handle_, packet->payload.data(), size) != size) {
167         PLOG(ERROR) << "remote usb: 2 - write terminated";
168         return false;
169     }
170 
171     return true;
172 }
173 
Reset()174 void UsbConnection::Reset() {
175     usb_reset(handle_);
176     usb_kick(handle_);
177 }
178 
Close()179 void UsbConnection::Close() {
180     usb_kick(handle_);
181 }
182 
init_usb_transport(atransport * t,usb_handle * h)183 void init_usb_transport(atransport* t, usb_handle* h) {
184     D("transport: usb");
185     auto connection = std::make_unique<UsbConnection>(h);
186     t->SetConnection(std::make_unique<BlockingConnectionAdapter>(std::move(connection)));
187     t->type = kTransportUsb;
188     t->SetUsbHandle(h);
189 }
190 
is_adb_interface(int usb_class,int usb_subclass,int usb_protocol)191 int is_adb_interface(int usb_class, int usb_subclass, int usb_protocol) {
192     return (usb_class == ADB_CLASS && usb_subclass == ADB_SUBCLASS && usb_protocol == ADB_PROTOCOL);
193 }
194 
should_use_libusb()195 bool should_use_libusb() {
196 #if !ADB_HOST
197     return false;
198 #else
199     static bool enable = getenv("ADB_LIBUSB") && strcmp(getenv("ADB_LIBUSB"), "1") == 0;
200     return enable;
201 #endif
202 }
203