blob: 9d50854919a7741c7d94c23b5028b4cfe3380162 [file] [log] [blame]
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001/*
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 Cuiaed3c612015-09-22 15:52:57 -070017#define TRACE_TAG TRANSPORT
Dan Albert76649012015-02-24 15:51:19 -080018
Dan Albert33134262015-03-19 15:21:08 -070019#include "sysdeps.h"
Dan Albert76649012015-02-24 15:51:19 -080020#include "transport.h"
21
Dan Albert055f1aa2015-02-20 17:24:58 -080022#include <ctype.h>
Dan Albert76649012015-02-24 15:51:19 -080023#include <errno.h>
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080024#include <stdio.h>
25#include <stdlib.h>
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080026#include <string.h>
Dan Albert76649012015-02-24 15:51:19 -080027#include <unistd.h>
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080028
Dan Albertc7915a32015-05-18 16:46:31 -070029#include <list>
30
Yabin Cuif4b99282015-08-27 12:03:11 -070031#include <base/logging.h>
Elliott Hughese67f1f82015-04-30 17:32:03 -070032#include <base/stringprintf.h>
Dan Albert1792c232015-05-18 13:06:53 -070033#include <base/strings.h>
Elliott Hughese67f1f82015-04-30 17:32:03 -070034
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080035#include "adb.h"
Elliott Hughese67f1f82015-04-30 17:32:03 -070036#include "adb_utils.h"
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080037
38static void transport_unref(atransport *t);
39
Dan Albertc7915a32015-05-18 16:46:31 -070040static std::list<atransport*> transport_list;
41static std::list<atransport*> pending_list;
Benoit Goby1c45ee92013-03-29 18:22:36 -070042
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080043ADB_MUTEX_DEFINE( transport_lock );
44
Todd Kennedy6fa848a2015-11-03 16:53:08 -080045const char* const kFeatureShell2 = "shell_v2";
46const char* const kFeatureCmd = "cmd";
47
Yabin Cuiaed3c612015-09-22 15:52:57 -070048static std::string dump_packet(const char* name, const char* func, apacket* p) {
David 'Digit' Turner730ff3b2011-01-06 14:11:07 +010049 unsigned command = p->msg.command;
50 int len = p->msg.data_length;
51 char cmd[9];
52 char arg0[12], arg1[12];
53 int n;
54
55 for (n = 0; n < 4; n++) {
56 int b = (command >> (n*8)) & 255;
57 if (b < 32 || b >= 127)
58 break;
59 cmd[n] = (char)b;
60 }
61 if (n == 4) {
62 cmd[4] = 0;
63 } else {
64 /* There is some non-ASCII name in the command, so dump
65 * the hexadecimal value instead */
66 snprintf(cmd, sizeof cmd, "%08x", command);
67 }
68
69 if (p->msg.arg0 < 256U)
70 snprintf(arg0, sizeof arg0, "%d", p->msg.arg0);
71 else
72 snprintf(arg0, sizeof arg0, "0x%x", p->msg.arg0);
73
74 if (p->msg.arg1 < 256U)
75 snprintf(arg1, sizeof arg1, "%d", p->msg.arg1);
76 else
77 snprintf(arg1, sizeof arg1, "0x%x", p->msg.arg1);
78
Yabin Cuiaed3c612015-09-22 15:52:57 -070079 std::string result = android::base::StringPrintf("%s: %s: [%s] arg0=%s arg1=%s (len=%d) ",
80 name, func, cmd, arg0, arg1, len);
81 result += dump_hex(p->data, len);
82 return result;
David 'Digit' Turner730ff3b2011-01-06 14:11:07 +010083}
David 'Digit' Turner730ff3b2011-01-06 14:11:07 +010084
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080085static int
David 'Digit' Turner730ff3b2011-01-06 14:11:07 +010086read_packet(int fd, const char* name, apacket** ppacket)
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080087{
Yabin Cui62641292015-07-30 19:58:10 -070088 char buff[8];
David 'Digit' Turner730ff3b2011-01-06 14:11:07 +010089 if (!name) {
90 snprintf(buff, sizeof buff, "fd=%d", fd);
91 name = buff;
92 }
Yabin Cui62641292015-07-30 19:58:10 -070093 char* p = reinterpret_cast<char*>(ppacket); /* really read a packet address */
94 int len = sizeof(apacket*);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080095 while(len > 0) {
Yabin Cui62641292015-07-30 19:58:10 -070096 int r = adb_read(fd, p, len);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080097 if(r > 0) {
98 len -= r;
Yabin Cui62641292015-07-30 19:58:10 -070099 p += r;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800100 } else {
Yabin Cui7a3f8d62015-09-02 17:44:28 -0700101 D("%s: read_packet (fd=%d), error ret=%d: %s", name, fd, r, strerror(errno));
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800102 return -1;
103 }
104 }
105
Yabin Cuiaed3c612015-09-22 15:52:57 -0700106 VLOG(TRANSPORT) << dump_packet(name, "from remote", *ppacket);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800107 return 0;
108}
109
110static int
David 'Digit' Turner730ff3b2011-01-06 14:11:07 +0100111write_packet(int fd, const char* name, apacket** ppacket)
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800112{
David 'Digit' Turner730ff3b2011-01-06 14:11:07 +0100113 char buff[8];
114 if (!name) {
115 snprintf(buff, sizeof buff, "fd=%d", fd);
116 name = buff;
117 }
Yabin Cuiaed3c612015-09-22 15:52:57 -0700118 VLOG(TRANSPORT) << dump_packet(name, "to remote", *ppacket);
Yabin Cui62641292015-07-30 19:58:10 -0700119 char* p = reinterpret_cast<char*>(ppacket); /* we really write the packet address */
120 int len = sizeof(apacket*);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800121 while(len > 0) {
Yabin Cui62641292015-07-30 19:58:10 -0700122 int r = adb_write(fd, p, len);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800123 if(r > 0) {
124 len -= r;
125 p += r;
126 } else {
Yabin Cui7a3f8d62015-09-02 17:44:28 -0700127 D("%s: write_packet (fd=%d) error ret=%d: %s", name, fd, r, strerror(errno));
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800128 return -1;
129 }
130 }
131 return 0;
132}
133
134static void transport_socket_events(int fd, unsigned events, void *_t)
135{
Dan Albertbac34742015-02-25 17:51:28 -0800136 atransport *t = reinterpret_cast<atransport*>(_t);
Yabin Cui7a3f8d62015-09-02 17:44:28 -0700137 D("transport_socket_events(fd=%d, events=%04x,...)", fd, events);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800138 if(events & FDE_READ){
139 apacket *p = 0;
David 'Digit' Turner730ff3b2011-01-06 14:11:07 +0100140 if(read_packet(fd, t->serial, &p)){
Yabin Cui7a3f8d62015-09-02 17:44:28 -0700141 D("%s: failed to read packet from transport socket on fd %d", t->serial, fd);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800142 } else {
143 handle_packet(p, (atransport *) _t);
144 }
145 }
146}
147
148void send_packet(apacket *p, atransport *t)
149{
150 unsigned char *x;
151 unsigned sum;
152 unsigned count;
153
154 p->msg.magic = p->msg.command ^ 0xffffffff;
155
156 count = p->msg.data_length;
157 x = (unsigned char *) p->data;
158 sum = 0;
159 while(count-- > 0){
160 sum += *x++;
161 }
162 p->msg.data_check = sum;
163
164 print_packet("send", p);
165
166 if (t == NULL) {
Yabin Cui7a3f8d62015-09-02 17:44:28 -0700167 D("Transport is null");
JP Abgrall408fa572011-03-16 15:57:42 -0700168 // Zap errno because print_packet() and other stuff have errno effect.
169 errno = 0;
170 fatal_errno("Transport is null");
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800171 }
172
David 'Digit' Turner730ff3b2011-01-06 14:11:07 +0100173 if(write_packet(t->transport_socket, t->serial, &p)){
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800174 fatal_errno("cannot enqueue packet on transport socket");
175 }
176}
177
Yabin Cuid6ab3c22015-08-31 11:50:24 -0700178// The transport is opened by transport_register_func before
179// the read_transport and write_transport threads are started.
180//
181// The read_transport thread issues a SYNC(1, token) message to let
182// the write_transport thread know to start things up. In the event
183// of transport IO failure, the read_transport thread will post a
184// SYNC(0,0) message to ensure shutdown.
185//
186// The transport will not actually be closed until both threads exit, but the threads
187// will kick the transport on their way out to disconnect the underlying device.
188//
189// read_transport thread reads data from a transport (representing a usb/tcp connection),
190// and makes the main thread call handle_packet().
191static void *read_transport_thread(void *_t)
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800192{
Dan Albertbac34742015-02-25 17:51:28 -0800193 atransport *t = reinterpret_cast<atransport*>(_t);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800194 apacket *p;
195
Yabin Cuid6ab3c22015-08-31 11:50:24 -0700196 adb_thread_setname(android::base::StringPrintf("<-%s",
197 (t->serial != nullptr ? t->serial : "transport")));
Yabin Cui7a3f8d62015-09-02 17:44:28 -0700198 D("%s: starting read_transport thread on fd %d, SYNC online (%d)",
David 'Digit' Turner730ff3b2011-01-06 14:11:07 +0100199 t->serial, t->fd, t->sync_token + 1);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800200 p = get_apacket();
201 p->msg.command = A_SYNC;
202 p->msg.arg0 = 1;
203 p->msg.arg1 = ++(t->sync_token);
204 p->msg.magic = A_SYNC ^ 0xffffffff;
David 'Digit' Turner730ff3b2011-01-06 14:11:07 +0100205 if(write_packet(t->fd, t->serial, &p)) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800206 put_apacket(p);
Yabin Cui7a3f8d62015-09-02 17:44:28 -0700207 D("%s: failed to write SYNC packet", t->serial);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800208 goto oops;
209 }
210
Yabin Cui7a3f8d62015-09-02 17:44:28 -0700211 D("%s: data pump started", t->serial);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800212 for(;;) {
213 p = get_apacket();
214
215 if(t->read_from_remote(p, t) == 0){
Yabin Cui7a3f8d62015-09-02 17:44:28 -0700216 D("%s: received remote packet, sending to transport",
David 'Digit' Turner730ff3b2011-01-06 14:11:07 +0100217 t->serial);
218 if(write_packet(t->fd, t->serial, &p)){
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800219 put_apacket(p);
Yabin Cui7a3f8d62015-09-02 17:44:28 -0700220 D("%s: failed to write apacket to transport", t->serial);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800221 goto oops;
222 }
223 } else {
Yabin Cui7a3f8d62015-09-02 17:44:28 -0700224 D("%s: remote read failed for transport", t->serial);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800225 put_apacket(p);
226 break;
227 }
228 }
229
Yabin Cui7a3f8d62015-09-02 17:44:28 -0700230 D("%s: SYNC offline for transport", t->serial);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800231 p = get_apacket();
232 p->msg.command = A_SYNC;
233 p->msg.arg0 = 0;
234 p->msg.arg1 = 0;
235 p->msg.magic = A_SYNC ^ 0xffffffff;
David 'Digit' Turner730ff3b2011-01-06 14:11:07 +0100236 if(write_packet(t->fd, t->serial, &p)) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800237 put_apacket(p);
Yabin Cui7a3f8d62015-09-02 17:44:28 -0700238 D("%s: failed to write SYNC apacket to transport", t->serial);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800239 }
240
241oops:
Yabin Cui7a3f8d62015-09-02 17:44:28 -0700242 D("%s: read_transport thread is exiting", t->serial);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800243 kick_transport(t);
244 transport_unref(t);
245 return 0;
246}
247
Yabin Cuid6ab3c22015-08-31 11:50:24 -0700248// write_transport thread gets packets sent by the main thread (through send_packet()),
249// and writes to a transport (representing a usb/tcp connection).
250static void *write_transport_thread(void *_t)
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800251{
Dan Albertbac34742015-02-25 17:51:28 -0800252 atransport *t = reinterpret_cast<atransport*>(_t);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800253 apacket *p;
254 int active = 0;
255
Yabin Cuid6ab3c22015-08-31 11:50:24 -0700256 adb_thread_setname(android::base::StringPrintf("->%s",
257 (t->serial != nullptr ? t->serial : "transport")));
Yabin Cui7a3f8d62015-09-02 17:44:28 -0700258 D("%s: starting write_transport thread, reading from fd %d",
David 'Digit' Turner730ff3b2011-01-06 14:11:07 +0100259 t->serial, t->fd);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800260
261 for(;;){
David 'Digit' Turner730ff3b2011-01-06 14:11:07 +0100262 if(read_packet(t->fd, t->serial, &p)) {
Yabin Cui7a3f8d62015-09-02 17:44:28 -0700263 D("%s: failed to read apacket from transport on fd %d",
David 'Digit' Turner730ff3b2011-01-06 14:11:07 +0100264 t->serial, t->fd );
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800265 break;
266 }
267 if(p->msg.command == A_SYNC){
268 if(p->msg.arg0 == 0) {
Yabin Cui7a3f8d62015-09-02 17:44:28 -0700269 D("%s: transport SYNC offline", t->serial);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800270 put_apacket(p);
271 break;
272 } else {
273 if(p->msg.arg1 == t->sync_token) {
Yabin Cui7a3f8d62015-09-02 17:44:28 -0700274 D("%s: transport SYNC online", t->serial);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800275 active = 1;
276 } else {
Yabin Cui7a3f8d62015-09-02 17:44:28 -0700277 D("%s: transport ignoring SYNC %d != %d",
David 'Digit' Turner730ff3b2011-01-06 14:11:07 +0100278 t->serial, p->msg.arg1, t->sync_token);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800279 }
280 }
281 } else {
282 if(active) {
Yabin Cui7a3f8d62015-09-02 17:44:28 -0700283 D("%s: transport got packet, sending to remote", t->serial);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800284 t->write_to_remote(p, t);
285 } else {
Yabin Cui7a3f8d62015-09-02 17:44:28 -0700286 D("%s: transport ignoring packet while offline", t->serial);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800287 }
288 }
289
290 put_apacket(p);
291 }
292
Yabin Cui7a3f8d62015-09-02 17:44:28 -0700293 D("%s: write_transport thread is exiting, fd %d", t->serial, t->fd);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800294 kick_transport(t);
295 transport_unref(t);
296 return 0;
297}
298
Yabin Cuif4b99282015-08-27 12:03:11 -0700299static void kick_transport_locked(atransport* t) {
300 CHECK(t != nullptr);
301 if (!t->kicked) {
302 t->kicked = true;
303 t->kick(t);
304 }
305}
306
307void kick_transport(atransport* t) {
308 adb_mutex_lock(&transport_lock);
309 kick_transport_locked(t);
310 adb_mutex_unlock(&transport_lock);
311}
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800312
313static int transport_registration_send = -1;
314static int transport_registration_recv = -1;
315static fdevent transport_registration_fde;
316
317
318#if ADB_HOST
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800319
320/* this adds support required by the 'track-devices' service.
321 * this is used to send the content of "list_transport" to any
322 * number of client connections that want it through a single
323 * live TCP connection
324 */
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800325struct device_tracker {
326 asocket socket;
327 int update_needed;
328 device_tracker* next;
329};
330
331/* linked list of all device trackers */
332static device_tracker* device_tracker_list;
333
334static void
335device_tracker_remove( device_tracker* tracker )
336{
337 device_tracker** pnode = &device_tracker_list;
338 device_tracker* node = *pnode;
339
340 adb_mutex_lock( &transport_lock );
341 while (node) {
342 if (node == tracker) {
343 *pnode = node->next;
344 break;
345 }
346 pnode = &node->next;
347 node = *pnode;
348 }
349 adb_mutex_unlock( &transport_lock );
350}
351
352static void
353device_tracker_close( asocket* socket )
354{
355 device_tracker* tracker = (device_tracker*) socket;
356 asocket* peer = socket->peer;
357
Yabin Cui7a3f8d62015-09-02 17:44:28 -0700358 D( "device tracker %p removed", tracker);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800359 if (peer) {
360 peer->peer = NULL;
361 peer->close(peer);
362 }
363 device_tracker_remove(tracker);
364 free(tracker);
365}
366
367static int
368device_tracker_enqueue( asocket* socket, apacket* p )
369{
370 /* you can't read from a device tracker, close immediately */
371 put_apacket(p);
372 device_tracker_close(socket);
373 return -1;
374}
375
Elliott Hughese67f1f82015-04-30 17:32:03 -0700376static int device_tracker_send(device_tracker* tracker, const std::string& string) {
377 apacket* p = get_apacket();
378 asocket* peer = tracker->socket.peer;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800379
Elliott Hughese67f1f82015-04-30 17:32:03 -0700380 snprintf(reinterpret_cast<char*>(p->data), 5, "%04x", static_cast<int>(string.size()));
381 memcpy(&p->data[4], string.data(), string.size());
382 p->len = 4 + string.size();
383 return peer->enqueue(peer, p);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800384}
385
Elliott Hughese67f1f82015-04-30 17:32:03 -0700386static void device_tracker_ready(asocket* socket) {
387 device_tracker* tracker = reinterpret_cast<device_tracker*>(socket);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800388
Elliott Hughese67f1f82015-04-30 17:32:03 -0700389 // We want to send the device list when the tracker connects
390 // for the first time, even if no update occurred.
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800391 if (tracker->update_needed > 0) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800392 tracker->update_needed = 0;
393
Elliott Hughese67f1f82015-04-30 17:32:03 -0700394 std::string transports = list_transports(false);
395 device_tracker_send(tracker, transports);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800396 }
397}
398
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800399asocket*
400create_device_tracker(void)
401{
Elliott Hughesdc3b4592015-04-21 19:39:52 -0700402 device_tracker* tracker = reinterpret_cast<device_tracker*>(calloc(1, sizeof(*tracker)));
403 if (tracker == nullptr) fatal("cannot allocate device tracker");
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800404
Yabin Cui7a3f8d62015-09-02 17:44:28 -0700405 D( "device tracker %p created", tracker);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800406
407 tracker->socket.enqueue = device_tracker_enqueue;
408 tracker->socket.ready = device_tracker_ready;
409 tracker->socket.close = device_tracker_close;
410 tracker->update_needed = 1;
411
412 tracker->next = device_tracker_list;
413 device_tracker_list = tracker;
414
415 return &tracker->socket;
416}
417
418
Elliott Hughese67f1f82015-04-30 17:32:03 -0700419// Call this function each time the transport list has changed.
420void update_transports() {
421 std::string transports = list_transports(false);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800422
Elliott Hughese67f1f82015-04-30 17:32:03 -0700423 device_tracker* tracker = device_tracker_list;
424 while (tracker != nullptr) {
425 device_tracker* next = tracker->next;
426 // This may destroy the tracker if the connection is closed.
427 device_tracker_send(tracker, transports);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800428 tracker = next;
429 }
430}
Elliott Hughese67f1f82015-04-30 17:32:03 -0700431
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800432#else
Elliott Hughese67f1f82015-04-30 17:32:03 -0700433
434void update_transports() {
435 // Nothing to do on the device side.
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800436}
Elliott Hughese67f1f82015-04-30 17:32:03 -0700437
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800438#endif // ADB_HOST
439
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800440struct tmsg
441{
442 atransport *transport;
443 int action;
444};
445
446static int
447transport_read_action(int fd, struct tmsg* m)
448{
449 char *p = (char*)m;
450 int len = sizeof(*m);
451 int r;
452
453 while(len > 0) {
454 r = adb_read(fd, p, len);
455 if(r > 0) {
456 len -= r;
457 p += r;
458 } else {
Yabin Cui7a3f8d62015-09-02 17:44:28 -0700459 D("transport_read_action: on fd %d: %s", fd, strerror(errno));
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800460 return -1;
461 }
462 }
463 return 0;
464}
465
466static int
467transport_write_action(int fd, struct tmsg* m)
468{
469 char *p = (char*)m;
470 int len = sizeof(*m);
471 int r;
472
473 while(len > 0) {
474 r = adb_write(fd, p, len);
475 if(r > 0) {
476 len -= r;
477 p += r;
478 } else {
Yabin Cui7a3f8d62015-09-02 17:44:28 -0700479 D("transport_write_action: on fd %d: %s", fd, strerror(errno));
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800480 return -1;
481 }
482 }
483 return 0;
484}
485
486static void transport_registration_func(int _fd, unsigned ev, void *data)
487{
488 tmsg m;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800489 int s[2];
490 atransport *t;
491
492 if(!(ev & FDE_READ)) {
493 return;
494 }
495
496 if(transport_read_action(_fd, &m)) {
497 fatal_errno("cannot read transport registration socket");
498 }
499
500 t = m.transport;
501
Dan Albert1792c232015-05-18 13:06:53 -0700502 if (m.action == 0) {
Yabin Cui7a3f8d62015-09-02 17:44:28 -0700503 D("transport: %s removing and free'ing %d", t->serial, t->transport_socket);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800504
505 /* IMPORTANT: the remove closes one half of the
506 ** socket pair. The close closes the other half.
507 */
508 fdevent_remove(&(t->transport_fde));
509 adb_close(t->fd);
510
511 adb_mutex_lock(&transport_lock);
Dan Albertc7915a32015-05-18 16:46:31 -0700512 transport_list.remove(t);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800513 adb_mutex_unlock(&transport_lock);
514
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800515 if (t->product)
516 free(t->product);
517 if (t->serial)
518 free(t->serial);
Scott Andersone82c2db2012-05-25 14:10:02 -0700519 if (t->model)
520 free(t->model);
521 if (t->device)
522 free(t->device);
Scott Andersone109d262012-04-20 11:21:14 -0700523 if (t->devpath)
524 free(t->devpath);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800525
Dan Albertc7915a32015-05-18 16:46:31 -0700526 delete t;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800527
528 update_transports();
529 return;
530 }
531
Mike Lockwood0927bf92009-08-08 12:37:44 -0400532 /* don't create transport threads for inaccessible devices */
Dan Albertdcd78a12015-05-18 16:43:57 -0700533 if (t->connection_state != kCsNoPerm) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800534 /* initial references are the two threads */
Mike Lockwood0927bf92009-08-08 12:37:44 -0400535 t->ref_count = 2;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800536
Dan Albertc7915a32015-05-18 16:46:31 -0700537 if (adb_socketpair(s)) {
Mike Lockwood0927bf92009-08-08 12:37:44 -0400538 fatal_errno("cannot open transport socketpair");
539 }
540
Yabin Cui7a3f8d62015-09-02 17:44:28 -0700541 D("transport: %s socketpair: (%d,%d) starting", t->serial, s[0], s[1]);
Mike Lockwood0927bf92009-08-08 12:37:44 -0400542
543 t->transport_socket = s[0];
544 t->fd = s[1];
545
Mike Lockwood0927bf92009-08-08 12:37:44 -0400546 fdevent_install(&(t->transport_fde),
547 t->transport_socket,
548 transport_socket_events,
549 t);
550
551 fdevent_set(&(t->transport_fde), FDE_READ);
552
Yabin Cuid6ab3c22015-08-31 11:50:24 -0700553 if (!adb_thread_create(write_transport_thread, t)) {
554 fatal_errno("cannot create write_transport thread");
Mike Lockwood0927bf92009-08-08 12:37:44 -0400555 }
556
Yabin Cuid6ab3c22015-08-31 11:50:24 -0700557 if (!adb_thread_create(read_transport_thread, t)) {
558 fatal_errno("cannot create read_transport thread");
Mike Lockwood0927bf92009-08-08 12:37:44 -0400559 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800560 }
561
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800562 adb_mutex_lock(&transport_lock);
Dan Albertc7915a32015-05-18 16:46:31 -0700563 pending_list.remove(t);
564 transport_list.push_front(t);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800565 adb_mutex_unlock(&transport_lock);
566
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800567 update_transports();
568}
569
570void init_transport_registration(void)
571{
572 int s[2];
573
574 if(adb_socketpair(s)){
575 fatal_errno("cannot open transport registration socketpair");
576 }
Yabin Cui7a3f8d62015-09-02 17:44:28 -0700577 D("socketpair: (%d,%d)", s[0], s[1]);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800578
579 transport_registration_send = s[0];
580 transport_registration_recv = s[1];
581
582 fdevent_install(&transport_registration_fde,
583 transport_registration_recv,
584 transport_registration_func,
585 0);
586
587 fdevent_set(&transport_registration_fde, FDE_READ);
588}
589
590/* the fdevent select pump is single threaded */
591static void register_transport(atransport *transport)
592{
593 tmsg m;
594 m.transport = transport;
595 m.action = 1;
Yabin Cui7a3f8d62015-09-02 17:44:28 -0700596 D("transport: %s registered", transport->serial);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800597 if(transport_write_action(transport_registration_send, &m)) {
598 fatal_errno("cannot write transport registration socket\n");
599 }
600}
601
602static void remove_transport(atransport *transport)
603{
604 tmsg m;
605 m.transport = transport;
606 m.action = 0;
Yabin Cui7a3f8d62015-09-02 17:44:28 -0700607 D("transport: %s removed", transport->serial);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800608 if(transport_write_action(transport_registration_send, &m)) {
609 fatal_errno("cannot write transport registration socket\n");
610 }
611}
612
613
Yabin Cuif4b99282015-08-27 12:03:11 -0700614static void transport_unref(atransport* t) {
615 CHECK(t != nullptr);
616 adb_mutex_lock(&transport_lock);
617 CHECK_GT(t->ref_count, 0u);
Mike Lockwoodcbbe79a2010-05-24 10:44:35 -0400618 t->ref_count--;
Mike Lockwoodcbbe79a2010-05-24 10:44:35 -0400619 if (t->ref_count == 0) {
Yabin Cui7a3f8d62015-09-02 17:44:28 -0700620 D("transport: %s unref (kicking and closing)", t->serial);
Yabin Cuif4b99282015-08-27 12:03:11 -0700621 kick_transport_locked(t);
Mike Lockwoodcbbe79a2010-05-24 10:44:35 -0400622 t->close(t);
623 remove_transport(t);
David 'Digit' Turner730ff3b2011-01-06 14:11:07 +0100624 } else {
Yabin Cui7a3f8d62015-09-02 17:44:28 -0700625 D("transport: %s unref (count=%zu)", t->serial, t->ref_count);
Mike Lockwoodcbbe79a2010-05-24 10:44:35 -0400626 }
Yabin Cuif4b99282015-08-27 12:03:11 -0700627 adb_mutex_unlock(&transport_lock);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800628}
629
Scott Anderson2ca3e6b2012-05-30 18:11:27 -0700630static int qual_match(const char *to_test,
Elliott Hughes09a45a12015-04-03 16:12:15 -0700631 const char *prefix, const char *qual, bool sanitize_qual)
Scott Anderson2ca3e6b2012-05-30 18:11:27 -0700632{
633 if (!to_test || !*to_test)
634 /* Return true if both the qual and to_test are null strings. */
635 return !qual || !*qual;
636
637 if (!qual)
638 return 0;
639
640 if (prefix) {
641 while (*prefix) {
642 if (*prefix++ != *to_test++)
643 return 0;
644 }
645 }
646
647 while (*qual) {
648 char ch = *qual++;
Elliott Hughes09a45a12015-04-03 16:12:15 -0700649 if (sanitize_qual && !isalnum(ch))
Scott Anderson2ca3e6b2012-05-30 18:11:27 -0700650 ch = '_';
651 if (ch != *to_test++)
652 return 0;
653 }
654
655 /* Everything matched so far. Return true if *to_test is a NUL. */
656 return !*to_test;
657}
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800658
Elliott Hughes8d28e192015-10-07 14:55:10 -0700659atransport* acquire_one_transport(TransportType type, const char* serial,
660 bool* is_ambiguous, std::string* error_out) {
661 atransport* result = nullptr;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800662
Elliott Hughes8d28e192015-10-07 14:55:10 -0700663 if (serial) {
664 *error_out = android::base::StringPrintf("device '%s' not found", serial);
665 } else if (type == kTransportLocal) {
666 *error_out = "no emulators found";
667 } else if (type == kTransportAny) {
668 *error_out = "no devices/emulators found";
669 } else {
670 *error_out = "no devices found";
671 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800672
673 adb_mutex_lock(&transport_lock);
Elliott Hughes8d28e192015-10-07 14:55:10 -0700674 for (const auto& t : transport_list) {
Dan Albertdcd78a12015-05-18 16:43:57 -0700675 if (t->connection_state == kCsNoPerm) {
Elliott Hughese2d36772015-06-23 13:00:32 -0700676 *error_out = "insufficient permissions for device";
Mike Lockwood37d31112009-08-08 13:53:16 -0400677 continue;
678 }
Mike Lockwood0927bf92009-08-08 12:37:44 -0400679
Elliott Hughes8d28e192015-10-07 14:55:10 -0700680 // Check for matching serial number.
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800681 if (serial) {
Scott Anderson2ca3e6b2012-05-30 18:11:27 -0700682 if ((t->serial && !strcmp(serial, t->serial)) ||
683 (t->devpath && !strcmp(serial, t->devpath)) ||
Elliott Hughes09a45a12015-04-03 16:12:15 -0700684 qual_match(serial, "product:", t->product, false) ||
685 qual_match(serial, "model:", t->model, true) ||
686 qual_match(serial, "device:", t->device, false)) {
Scott Anderson2ca3e6b2012-05-30 18:11:27 -0700687 if (result) {
Elliott Hughese2d36772015-06-23 13:00:32 -0700688 *error_out = "more than one device";
Elliott Hughes8d28e192015-10-07 14:55:10 -0700689 if (is_ambiguous) *is_ambiguous = true;
690 result = nullptr;
Scott Anderson2ca3e6b2012-05-30 18:11:27 -0700691 break;
692 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800693 result = t;
Scott Andersone109d262012-04-20 11:21:14 -0700694 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800695 } else {
Elliott Hughes3bd73c12015-05-05 13:10:43 -0700696 if (type == kTransportUsb && t->type == kTransportUsb) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800697 if (result) {
Elliott Hughese2d36772015-06-23 13:00:32 -0700698 *error_out = "more than one device";
Elliott Hughes8d28e192015-10-07 14:55:10 -0700699 if (is_ambiguous) *is_ambiguous = true;
700 result = nullptr;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800701 break;
702 }
703 result = t;
Elliott Hughes3bd73c12015-05-05 13:10:43 -0700704 } else if (type == kTransportLocal && t->type == kTransportLocal) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800705 if (result) {
Elliott Hughese2d36772015-06-23 13:00:32 -0700706 *error_out = "more than one emulator";
Elliott Hughes8d28e192015-10-07 14:55:10 -0700707 if (is_ambiguous) *is_ambiguous = true;
708 result = nullptr;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800709 break;
710 }
711 result = t;
Elliott Hughes3bd73c12015-05-05 13:10:43 -0700712 } else if (type == kTransportAny) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800713 if (result) {
Elliott Hughese2d36772015-06-23 13:00:32 -0700714 *error_out = "more than one device/emulator";
Elliott Hughes8d28e192015-10-07 14:55:10 -0700715 if (is_ambiguous) *is_ambiguous = true;
716 result = nullptr;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800717 break;
718 }
719 result = t;
720 }
721 }
722 }
723 adb_mutex_unlock(&transport_lock);
724
Elliott Hughes8d28e192015-10-07 14:55:10 -0700725 // Don't return unauthorized devices; the caller can't do anything with them.
726 if (result && result->connection_state == kCsUnauthorized) {
727 *error_out = "device unauthorized.\n";
728 char* ADB_VENDOR_KEYS = getenv("ADB_VENDOR_KEYS");
729 *error_out += "This adb server's $ADB_VENDOR_KEYS is ";
730 *error_out += ADB_VENDOR_KEYS ? ADB_VENDOR_KEYS : "not set";
731 *error_out += "\n";
732 *error_out += "Try 'adb kill-server' if that seems wrong.\n";
733 *error_out += "Otherwise check for a confirmation dialog on your device.";
734 result = nullptr;
735 }
Benoit Goby77e8e582013-01-15 12:36:47 -0800736
Elliott Hughes8d28e192015-10-07 14:55:10 -0700737 // Don't return offline devices; the caller can't do anything with them.
738 if (result && result->connection_state == kCsOffline) {
739 *error_out = "device offline";
740 result = nullptr;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800741 }
742
743 if (result) {
Elliott Hughese2d36772015-06-23 13:00:32 -0700744 *error_out = "success";
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800745 }
746
747 return result;
748}
749
Elliott Hughese67f1f82015-04-30 17:32:03 -0700750const char* atransport::connection_state_name() const {
751 switch (connection_state) {
Dan Albertdcd78a12015-05-18 16:43:57 -0700752 case kCsOffline: return "offline";
753 case kCsBootloader: return "bootloader";
754 case kCsDevice: return "device";
755 case kCsHost: return "host";
756 case kCsRecovery: return "recovery";
757 case kCsNoPerm: return "no permissions";
758 case kCsSideload: return "sideload";
759 case kCsUnauthorized: return "unauthorized";
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800760 default: return "unknown";
761 }
762}
763
Tamas Berghammer3d2904c2015-07-13 19:12:28 +0100764void atransport::update_version(int version, size_t payload) {
765 protocol_version = std::min(version, A_VERSION);
766 max_payload = std::min(payload, MAX_PAYLOAD);
767}
768
769int atransport::get_protocol_version() const {
770 return protocol_version;
771}
772
773size_t atransport::get_max_payload() const {
774 return max_payload;
775}
776
David Pursell4e2fd362015-09-22 10:43:08 -0700777namespace {
David Pursell0955c662015-08-31 10:42:13 -0700778
David Pursell4e2fd362015-09-22 10:43:08 -0700779constexpr char kFeatureStringDelimiter = ',';
780
781} // namespace
Dan Albert1792c232015-05-18 13:06:53 -0700782
783const FeatureSet& supported_features() {
David Pursell4e2fd362015-09-22 10:43:08 -0700784 // Local static allocation to avoid global non-POD variables.
785 static const FeatureSet* features = new FeatureSet{
Todd Kennedy6fa848a2015-11-03 16:53:08 -0800786 kFeatureShell2,
Elliott Hughes79e1c7a2015-11-06 18:05:16 -0800787 // Internal master has 'cmd'. AOSP master doesn't.
788 // kFeatureCmd
789
David Pursellbbe3d212015-09-25 08:37:13 -0700790 // Increment ADB_SERVER_VERSION whenever the feature list changes to
791 // make sure that the adb client and server features stay in sync
792 // (http://b/24370690).
David Pursell4e2fd362015-09-22 10:43:08 -0700793 };
794
795 return *features;
796}
797
798std::string FeatureSetToString(const FeatureSet& features) {
799 return android::base::Join(features, kFeatureStringDelimiter);
800}
801
802FeatureSet StringToFeatureSet(const std::string& features_string) {
David Purselld2b588e2015-09-25 13:04:21 -0700803 if (features_string.empty()) {
804 return FeatureSet();
805 }
806
David Pursell4e2fd362015-09-22 10:43:08 -0700807 auto names = android::base::Split(features_string,
808 {kFeatureStringDelimiter});
809 return FeatureSet(names.begin(), names.end());
Dan Albert1792c232015-05-18 13:06:53 -0700810}
811
David Pursell70ef7b42015-09-30 13:35:42 -0700812bool CanUseFeature(const FeatureSet& feature_set, const std::string& feature) {
813 return feature_set.count(feature) > 0 &&
814 supported_features().count(feature) > 0;
815}
816
Dan Albert1792c232015-05-18 13:06:53 -0700817bool atransport::has_feature(const std::string& feature) const {
818 return features_.count(feature) > 0;
819}
820
David Pursell4e2fd362015-09-22 10:43:08 -0700821void atransport::SetFeatures(const std::string& features_string) {
822 features_ = StringToFeatureSet(features_string);
Dan Albert1792c232015-05-18 13:06:53 -0700823}
824
Yabin Cuib3298242015-08-28 15:09:44 -0700825void atransport::AddDisconnect(adisconnect* disconnect) {
826 disconnects_.push_back(disconnect);
827}
828
829void atransport::RemoveDisconnect(adisconnect* disconnect) {
830 disconnects_.remove(disconnect);
831}
832
833void atransport::RunDisconnects() {
Elliott Hughes65fe2512015-10-07 15:59:35 -0700834 for (const auto& disconnect : disconnects_) {
Yabin Cuib3298242015-08-28 15:09:44 -0700835 disconnect->func(disconnect->opaque, this);
836 }
837 disconnects_.clear();
838}
839
Elliott Hughese67f1f82015-04-30 17:32:03 -0700840#if ADB_HOST
841
Dan Albertd99d9022015-05-06 16:48:52 -0700842static void append_transport_info(std::string* result, const char* key,
843 const char* value, bool sanitize) {
Elliott Hughese67f1f82015-04-30 17:32:03 -0700844 if (value == nullptr || *value == '\0') {
Scott Anderson2ca3e6b2012-05-30 18:11:27 -0700845 return;
Scott Anderson2ca3e6b2012-05-30 18:11:27 -0700846 }
847
Elliott Hughese67f1f82015-04-30 17:32:03 -0700848 *result += ' ';
849 *result += key;
850
851 for (const char* p = value; *p; ++p) {
852 result->push_back((!sanitize || isalnum(*p)) ? *p : '_');
853 }
Scott Anderson2ca3e6b2012-05-30 18:11:27 -0700854}
855
Dan Albertc7915a32015-05-18 16:46:31 -0700856static void append_transport(const atransport* t, std::string* result,
857 bool long_listing) {
Scott Anderson2ca3e6b2012-05-30 18:11:27 -0700858 const char* serial = t->serial;
Elliott Hughese67f1f82015-04-30 17:32:03 -0700859 if (!serial || !serial[0]) {
Dan Albertd99d9022015-05-06 16:48:52 -0700860 serial = "(no serial number)";
Elliott Hughese67f1f82015-04-30 17:32:03 -0700861 }
Scott Anderson2ca3e6b2012-05-30 18:11:27 -0700862
863 if (!long_listing) {
Elliott Hughese67f1f82015-04-30 17:32:03 -0700864 *result += serial;
865 *result += '\t';
866 *result += t->connection_state_name();
Scott Anderson2ca3e6b2012-05-30 18:11:27 -0700867 } else {
Elliott Hughese67f1f82015-04-30 17:32:03 -0700868 android::base::StringAppendF(result, "%-22s %s", serial, t->connection_state_name());
Scott Anderson2ca3e6b2012-05-30 18:11:27 -0700869
Elliott Hughese67f1f82015-04-30 17:32:03 -0700870 append_transport_info(result, "", t->devpath, false);
871 append_transport_info(result, "product:", t->product, false);
872 append_transport_info(result, "model:", t->model, true);
873 append_transport_info(result, "device:", t->device, false);
Scott Anderson2ca3e6b2012-05-30 18:11:27 -0700874 }
Elliott Hughese67f1f82015-04-30 17:32:03 -0700875 *result += '\n';
Scott Anderson2ca3e6b2012-05-30 18:11:27 -0700876}
877
Elliott Hughese67f1f82015-04-30 17:32:03 -0700878std::string list_transports(bool long_listing) {
879 std::string result;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800880 adb_mutex_lock(&transport_lock);
Elliott Hughes65fe2512015-10-07 15:59:35 -0700881 for (const auto& t : transport_list) {
Elliott Hughese67f1f82015-04-30 17:32:03 -0700882 append_transport(t, &result, long_listing);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800883 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800884 adb_mutex_unlock(&transport_lock);
Elliott Hughese67f1f82015-04-30 17:32:03 -0700885 return result;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800886}
887
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800888/* hack for osx */
Dan Albertc7915a32015-05-18 16:46:31 -0700889void close_usb_devices() {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800890 adb_mutex_lock(&transport_lock);
Elliott Hughes65fe2512015-10-07 15:59:35 -0700891 for (const auto& t : transport_list) {
Dan Albertc7915a32015-05-18 16:46:31 -0700892 if (!t->kicked) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800893 t->kicked = 1;
894 t->kick(t);
895 }
896 }
897 adb_mutex_unlock(&transport_lock);
898}
899#endif // ADB_HOST
900
Dan Albertc7915a32015-05-18 16:46:31 -0700901int register_socket_transport(int s, const char *serial, int port, int local) {
902 atransport* t = new atransport();
David 'Digit' Turner730ff3b2011-01-06 14:11:07 +0100903
904 if (!serial) {
Dan Albertc7915a32015-05-18 16:46:31 -0700905 char buf[32];
906 snprintf(buf, sizeof(buf), "T-%p", t);
907 serial = buf;
David 'Digit' Turner730ff3b2011-01-06 14:11:07 +0100908 }
Dan Albertc7915a32015-05-18 16:46:31 -0700909
Yabin Cui7a3f8d62015-09-02 17:44:28 -0700910 D("transport: %s init'ing for socket %d, on port %d", serial, s, port);
Benoit Goby1c45ee92013-03-29 18:22:36 -0700911 if (init_socket_transport(t, s, port, local) < 0) {
Dan Albertc7915a32015-05-18 16:46:31 -0700912 delete t;
Benoit Goby1c45ee92013-03-29 18:22:36 -0700913 return -1;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800914 }
Benoit Goby1c45ee92013-03-29 18:22:36 -0700915
916 adb_mutex_lock(&transport_lock);
Elliott Hughes65fe2512015-10-07 15:59:35 -0700917 for (const auto& transport : pending_list) {
Dan Albertc7915a32015-05-18 16:46:31 -0700918 if (transport->serial && strcmp(serial, transport->serial) == 0) {
Benoit Goby1c45ee92013-03-29 18:22:36 -0700919 adb_mutex_unlock(&transport_lock);
Dan Albertc7915a32015-05-18 16:46:31 -0700920 delete t;
Benoit Goby1c45ee92013-03-29 18:22:36 -0700921 return -1;
922 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800923 }
Benoit Goby1c45ee92013-03-29 18:22:36 -0700924
Elliott Hughes65fe2512015-10-07 15:59:35 -0700925 for (const auto& transport : transport_list) {
Dan Albertc7915a32015-05-18 16:46:31 -0700926 if (transport->serial && strcmp(serial, transport->serial) == 0) {
Benoit Goby1c45ee92013-03-29 18:22:36 -0700927 adb_mutex_unlock(&transport_lock);
Dan Albertc7915a32015-05-18 16:46:31 -0700928 delete t;
Benoit Goby1c45ee92013-03-29 18:22:36 -0700929 return -1;
930 }
931 }
932
Dan Albertc7915a32015-05-18 16:46:31 -0700933 pending_list.push_front(t);
Benoit Goby1c45ee92013-03-29 18:22:36 -0700934 t->serial = strdup(serial);
935 adb_mutex_unlock(&transport_lock);
936
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800937 register_transport(t);
Benoit Goby1c45ee92013-03-29 18:22:36 -0700938 return 0;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800939}
940
Mike Lockwood8cf0d592009-10-11 23:04:18 -0400941#if ADB_HOST
Dan Albertc7915a32015-05-18 16:46:31 -0700942atransport *find_transport(const char *serial) {
943 atransport* result = nullptr;
Mike Lockwood8cf0d592009-10-11 23:04:18 -0400944
945 adb_mutex_lock(&transport_lock);
Yabin Cuif4b99282015-08-27 12:03:11 -0700946 for (auto& t : transport_list) {
Dan Albertc7915a32015-05-18 16:46:31 -0700947 if (t->serial && strcmp(serial, t->serial) == 0) {
948 result = t;
Mike Lockwood8cf0d592009-10-11 23:04:18 -0400949 break;
950 }
Dan Albertc7915a32015-05-18 16:46:31 -0700951 }
Mike Lockwood8cf0d592009-10-11 23:04:18 -0400952 adb_mutex_unlock(&transport_lock);
953
Dan Albertc7915a32015-05-18 16:46:31 -0700954 return result;
Mike Lockwood8cf0d592009-10-11 23:04:18 -0400955}
956
Yabin Cuif4b99282015-08-27 12:03:11 -0700957void kick_all_tcp_devices() {
Mike Lockwood8cf0d592009-10-11 23:04:18 -0400958 adb_mutex_lock(&transport_lock);
Yabin Cuif4b99282015-08-27 12:03:11 -0700959 for (auto& t : transport_list) {
960 // TCP/IP devices have adb_port == 0.
Mike Lockwoodcbbe79a2010-05-24 10:44:35 -0400961 if (t->type == kTransportLocal && t->adb_port == 0) {
Yabin Cuid6ab3c22015-08-31 11:50:24 -0700962 // Kicking breaks the read_transport thread of this transport out of any read, then
963 // the read_transport thread will notify the main thread to make this transport
964 // offline. Then the main thread will notify the write_transport thread to exit.
Yabin Cuif4b99282015-08-27 12:03:11 -0700965 // Finally, this transport will be closed and freed in the main thread.
966 kick_transport_locked(t);
Mike Lockwoodcbbe79a2010-05-24 10:44:35 -0400967 }
Dan Albertc7915a32015-05-18 16:46:31 -0700968 }
Mike Lockwoodcbbe79a2010-05-24 10:44:35 -0400969 adb_mutex_unlock(&transport_lock);
970}
971
Mike Lockwood8cf0d592009-10-11 23:04:18 -0400972#endif
973
Dan Albertc7915a32015-05-18 16:46:31 -0700974void register_usb_transport(usb_handle* usb, const char* serial,
975 const char* devpath, unsigned writeable) {
976 atransport* t = new atransport();
977
Yabin Cui7a3f8d62015-09-02 17:44:28 -0700978 D("transport: %p init'ing for usb_handle %p (sn='%s')", t, usb,
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800979 serial ? serial : "");
Dan Albertdcd78a12015-05-18 16:43:57 -0700980 init_usb_transport(t, usb, (writeable ? kCsOffline : kCsNoPerm));
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800981 if(serial) {
982 t->serial = strdup(serial);
983 }
Dan Albertc7915a32015-05-18 16:46:31 -0700984
985 if (devpath) {
Scott Andersone109d262012-04-20 11:21:14 -0700986 t->devpath = strdup(devpath);
987 }
Benoit Goby1c45ee92013-03-29 18:22:36 -0700988
989 adb_mutex_lock(&transport_lock);
Dan Albertc7915a32015-05-18 16:46:31 -0700990 pending_list.push_front(t);
Benoit Goby1c45ee92013-03-29 18:22:36 -0700991 adb_mutex_unlock(&transport_lock);
992
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800993 register_transport(t);
994}
995
Dan Albertdcd78a12015-05-18 16:43:57 -0700996// This should only be used for transports with connection_state == kCsNoPerm.
Dan Albertc7915a32015-05-18 16:46:31 -0700997void unregister_usb_transport(usb_handle *usb) {
Mike Lockwood0927bf92009-08-08 12:37:44 -0400998 adb_mutex_lock(&transport_lock);
Dan Albertc7915a32015-05-18 16:46:31 -0700999 transport_list.remove_if([usb](atransport* t) {
1000 return t->usb == usb && t->connection_state == kCsNoPerm;
1001 });
Mike Lockwood0927bf92009-08-08 12:37:44 -04001002 adb_mutex_unlock(&transport_lock);
1003}
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001004
Tamas Berghammer3d2904c2015-07-13 19:12:28 +01001005int check_header(apacket *p, atransport *t)
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001006{
1007 if(p->msg.magic != (p->msg.command ^ 0xffffffff)) {
Yabin Cuiaed3c612015-09-22 15:52:57 -07001008 VLOG(RWX) << "check_header(): invalid magic";
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001009 return -1;
1010 }
1011
Tamas Berghammer3d2904c2015-07-13 19:12:28 +01001012 if(p->msg.data_length > t->get_max_payload()) {
Yabin Cuiaed3c612015-09-22 15:52:57 -07001013 VLOG(RWX) << "check_header(): " << p->msg.data_length << " atransport::max_payload = "
1014 << t->get_max_payload();
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001015 return -1;
1016 }
1017
1018 return 0;
1019}
1020
1021int check_data(apacket *p)
1022{
1023 unsigned count, sum;
1024 unsigned char *x;
1025
1026 count = p->msg.data_length;
1027 x = p->data;
1028 sum = 0;
1029 while(count-- > 0) {
1030 sum += *x++;
1031 }
1032
1033 if(sum != p->msg.data_check) {
1034 return -1;
1035 } else {
1036 return 0;
1037 }
1038}