blob: 92010c0e0bb4fbb4e9ebe84ad13ff09597d38bc2 [file] [log] [blame]
The Android Open Source Project9ca14dc2009-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 Cui19bec5b2015-09-22 15:52:57 -070017#define TRACE_TAG TRANSPORT
Dan Albertdb6fe642015-03-19 15:21:08 -070018
19#include "sysdeps.h"
20#include "transport.h"
21
Dan Albertb302d122015-02-24 15:51:19 -080022#include <errno.h>
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -080023#include <stdio.h>
24#include <stdlib.h>
25#include <string.h>
Dan Albertb302d122015-02-24 15:51:19 -080026#include <sys/types.h>
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -080027
Elliott Hughes73925982016-11-15 12:37:32 -080028#include <chrono>
Pirama Arumuga Nainarbd4d4e12016-09-06 13:34:42 -070029#include <condition_variable>
Josh Gaoe7daf572016-09-21 12:37:10 -070030#include <mutex>
Elliott Hughes73925982016-11-15 12:37:32 -080031#include <thread>
Yabin Cuif401ead2016-04-29 16:53:52 -070032#include <vector>
33
Elliott Hughesf55ead92015-12-04 22:00:26 -080034#include <android-base/stringprintf.h>
Elliott Hughes43df1092015-07-23 17:12:58 -070035#include <cutils/sockets.h>
Elliott Hughesfb596842015-05-01 17:04:38 -070036
Dan Albertb302d122015-02-24 15:51:19 -080037#if !ADB_HOST
Elliott Hughes8b249d22016-09-23 15:40:03 -070038#include <android-base/properties.h>
Dan Albertb302d122015-02-24 15:51:19 -080039#endif
Dan Albertdb6fe642015-03-19 15:21:08 -070040
41#include "adb.h"
42#include "adb_io.h"
Elliott Hughes43df1092015-07-23 17:12:58 -070043#include "adb_utils.h"
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -080044
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -080045#if ADB_HOST
Josh Gao89513a52016-05-06 02:37:24 -070046
47// Android Wear has been using port 5601 in all of its documentation/tooling,
48// but we search for emulators on ports [5554, 5555 + ADB_LOCAL_TRANSPORT_MAX].
49// Avoid stomping on their port by limiting the number of emulators that can be
50// connected.
51#define ADB_LOCAL_TRANSPORT_MAX 16
52
Josh Gaoe7daf572016-09-21 12:37:10 -070053static std::mutex& local_transports_lock = *new std::mutex();
Josh Gao89513a52016-05-06 02:37:24 -070054
Stefan Hilzinger1ec03422010-04-26 10:17:43 +010055/* we keep a list of opened transports. The atransport struct knows to which
56 * local transport it is connected. The list is used to detect when we're
57 * trying to connect twice to a given local transport.
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -080058 */
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -080059static atransport* local_transports[ ADB_LOCAL_TRANSPORT_MAX ];
60#endif /* ADB_HOST */
61
62static int remote_read(apacket *p, atransport *t)
63{
Dan Albert66a91b02015-02-24 21:26:58 -080064 if(!ReadFdExactly(t->sfd, &p->msg, sizeof(amessage))){
Yabin Cui815ad882015-09-02 17:44:28 -070065 D("remote local: read terminated (message)");
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -080066 return -1;
67 }
68
Tamas Berghammera1c60c02015-07-13 19:12:28 +010069 if(check_header(p, t)) {
Yabin Cui815ad882015-09-02 17:44:28 -070070 D("bad header: terminated (data)");
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -080071 return -1;
72 }
73
Dan Albert66a91b02015-02-24 21:26:58 -080074 if(!ReadFdExactly(t->sfd, p->data, p->msg.data_length)){
Yabin Cui815ad882015-09-02 17:44:28 -070075 D("remote local: terminated (data)");
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -080076 return -1;
77 }
78
79 if(check_data(p)) {
Yabin Cui815ad882015-09-02 17:44:28 -070080 D("bad data: terminated (data)");
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -080081 return -1;
82 }
83
84 return 0;
85}
86
87static int remote_write(apacket *p, atransport *t)
88{
89 int length = p->msg.data_length;
90
Dan Albert66a91b02015-02-24 21:26:58 -080091 if(!WriteFdExactly(t->sfd, &p->msg, sizeof(amessage) + length)) {
Yabin Cui815ad882015-09-02 17:44:28 -070092 D("remote local: write terminated");
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -080093 return -1;
94 }
95
96 return 0;
97}
98
Yabin Cuif401ead2016-04-29 16:53:52 -070099bool local_connect(int port) {
Elliott Hughes43df1092015-07-23 17:12:58 -0700100 std::string dummy;
Yabin Cuif401ead2016-04-29 16:53:52 -0700101 return local_connect_arbitrary_ports(port-1, port, &dummy) == 0;
Stefan Hilzinger1ec03422010-04-26 10:17:43 +0100102}
103
Elliott Hughes43df1092015-07-23 17:12:58 -0700104int local_connect_arbitrary_ports(int console_port, int adb_port, std::string* error) {
105 int fd = -1;
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800106
107#if ADB_HOST
Lingfeng Yang5edb12b2016-10-06 12:22:55 -0700108 if (find_emulator_transport_by_adb_port(adb_port) != nullptr ||
109 find_emulator_transport_by_console_port(console_port) != nullptr) {
Yabin Cuid802bcf2015-07-31 14:10:54 -0700110 return -1;
111 }
112
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800113 const char *host = getenv("ADBHOST");
114 if (host) {
Elliott Hughes43df1092015-07-23 17:12:58 -0700115 fd = network_connect(host, adb_port, SOCK_STREAM, 0, error);
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800116 }
117#endif
118 if (fd < 0) {
Spencer Low753d4852015-07-30 23:07:55 -0700119 fd = network_loopback_client(adb_port, SOCK_STREAM, error);
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800120 }
121
122 if (fd >= 0) {
Yabin Cui815ad882015-09-02 17:44:28 -0700123 D("client: connected on remote on fd %d", fd);
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800124 close_on_exec(fd);
125 disable_tcp_nagle(fd);
Lingfeng Yang5edb12b2016-10-06 12:22:55 -0700126 std::string serial = getEmulatorSerialString(console_port);
Yabin Cuid802bcf2015-07-31 14:10:54 -0700127 if (register_socket_transport(fd, serial.c_str(), adb_port, 1) == 0) {
128 return 0;
129 }
130 adb_close(fd);
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800131 }
132 return -1;
133}
134
Yabin Cui5fe6d0d2015-08-11 13:40:42 -0700135#if ADB_HOST
Yabin Cuif401ead2016-04-29 16:53:52 -0700136
137static void PollAllLocalPortsForEmulator() {
138 int port = DEFAULT_ADB_LOCAL_TRANSPORT_PORT;
139 int count = ADB_LOCAL_TRANSPORT_MAX;
140
141 // Try to connect to any number of running emulator instances.
142 for ( ; count > 0; count--, port += 2 ) {
143 local_connect(port);
144 }
145}
146
147// Retry the disconnected local port for 60 times, and sleep 1 second between two retries.
148constexpr uint32_t LOCAL_PORT_RETRY_COUNT = 60;
Elliott Hughes73925982016-11-15 12:37:32 -0800149constexpr auto LOCAL_PORT_RETRY_INTERVAL = std::chrono::seconds(1);
Yabin Cuif401ead2016-04-29 16:53:52 -0700150
151struct RetryPort {
152 int port;
153 uint32_t retry_count;
154};
155
156// Retry emulators just kicked.
157static std::vector<RetryPort>& retry_ports = *new std::vector<RetryPort>;
158std::mutex &retry_ports_lock = *new std::mutex;
159std::condition_variable &retry_ports_cond = *new std::condition_variable;
160
Josh Gao382ea6e2016-02-12 14:31:15 -0800161static void client_socket_thread(void* x) {
Siva Velusamy2669cf92015-08-28 16:37:29 -0700162 adb_thread_setname("client_socket_thread");
Yabin Cui815ad882015-09-02 17:44:28 -0700163 D("transport: client_socket_thread() starting");
Yabin Cuif401ead2016-04-29 16:53:52 -0700164 PollAllLocalPortsForEmulator();
Yabin Cuid802bcf2015-07-31 14:10:54 -0700165 while (true) {
Yabin Cuif401ead2016-04-29 16:53:52 -0700166 std::vector<RetryPort> ports;
167 // Collect retry ports.
168 {
169 std::unique_lock<std::mutex> lock(retry_ports_lock);
170 while (retry_ports.empty()) {
171 retry_ports_cond.wait(lock);
172 }
173 retry_ports.swap(ports);
Yabin Cuid802bcf2015-07-31 14:10:54 -0700174 }
Yabin Cuif401ead2016-04-29 16:53:52 -0700175 // Sleep here instead of the end of loop, because if we immediately try to reconnect
176 // the emulator just kicked, the adbd on the emulator may not have time to remove the
177 // just kicked transport.
Elliott Hughes73925982016-11-15 12:37:32 -0800178 std::this_thread::sleep_for(LOCAL_PORT_RETRY_INTERVAL);
Yabin Cuif401ead2016-04-29 16:53:52 -0700179
180 // Try connecting retry ports.
181 std::vector<RetryPort> next_ports;
182 for (auto& port : ports) {
183 VLOG(TRANSPORT) << "retry port " << port.port << ", last retry_count "
184 << port.retry_count;
185 if (local_connect(port.port)) {
186 VLOG(TRANSPORT) << "retry port " << port.port << " successfully";
187 continue;
188 }
189 if (--port.retry_count > 0) {
190 next_ports.push_back(port);
191 } else {
192 VLOG(TRANSPORT) << "stop retrying port " << port.port;
193 }
194 }
195
196 // Copy back left retry ports.
197 {
198 std::unique_lock<std::mutex> lock(retry_ports_lock);
199 retry_ports.insert(retry_ports.end(), next_ports.begin(), next_ports.end());
200 }
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800201 }
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800202}
203
Yabin Cui5fe6d0d2015-08-11 13:40:42 -0700204#else // ADB_HOST
205
Josh Gao382ea6e2016-02-12 14:31:15 -0800206static void server_socket_thread(void* arg) {
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800207 int serverfd, fd;
Elliott Hughes9c0d9402014-01-16 10:53:11 -0800208 int port = (int) (uintptr_t) arg;
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800209
Siva Velusamy2669cf92015-08-28 16:37:29 -0700210 adb_thread_setname("server socket");
Yabin Cui815ad882015-09-02 17:44:28 -0700211 D("transport: server_socket_thread() starting");
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800212 serverfd = -1;
213 for(;;) {
214 if(serverfd == -1) {
Spencer Low753d4852015-07-30 23:07:55 -0700215 std::string error;
216 serverfd = network_inaddr_any_server(port, SOCK_STREAM, &error);
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800217 if(serverfd < 0) {
Yabin Cui815ad882015-09-02 17:44:28 -0700218 D("server: cannot bind socket yet: %s", error.c_str());
Elliott Hughes73925982016-11-15 12:37:32 -0800219 std::this_thread::sleep_for(std::chrono::seconds(1));
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800220 continue;
221 }
222 close_on_exec(serverfd);
223 }
224
Yabin Cui815ad882015-09-02 17:44:28 -0700225 D("server: trying to get new connection from %d", port);
Josh Gao782d8d42016-08-23 15:41:56 -0700226 fd = adb_socket_accept(serverfd, nullptr, nullptr);
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800227 if(fd >= 0) {
Yabin Cui815ad882015-09-02 17:44:28 -0700228 D("server: new connection on fd %d", fd);
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800229 close_on_exec(fd);
230 disable_tcp_nagle(fd);
Tao Wu1b29a3f2016-10-21 15:43:57 -0700231 std::string serial = android::base::StringPrintf("host-%d", fd);
232 if (register_socket_transport(fd, serial.c_str(), port, 1) != 0) {
Yabin Cuic7221782016-05-17 15:14:25 -0700233 adb_close(fd);
234 }
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800235 }
236 }
Yabin Cui815ad882015-09-02 17:44:28 -0700237 D("transport: server_socket_thread() exiting");
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800238}
239
Vladimir Chtchetkine4bdc7762011-12-13 12:19:29 -0800240/* This is relevant only for ADB daemon running inside the emulator. */
Vladimir Chtchetkine7c9339d2011-12-09 15:49:47 -0800241/*
242 * Redefine open and write for qemu_pipe.h that contains inlined references
David 'Digit' Turnerb82031f2016-06-16 17:05:52 +0200243 * to those routines. We will redefine them back after qemu_pipe.h inclusion.
Vladimir Chtchetkine7c9339d2011-12-09 15:49:47 -0800244 */
245#undef open
David 'Digit' Turnerb82031f2016-06-16 17:05:52 +0200246#undef read
Vladimir Chtchetkine7c9339d2011-12-09 15:49:47 -0800247#undef write
248#define open adb_open
David 'Digit' Turnerb82031f2016-06-16 17:05:52 +0200249#define read adb_read
Vladimir Chtchetkine7c9339d2011-12-09 15:49:47 -0800250#define write adb_write
David 'Digit' Turnerb82031f2016-06-16 17:05:52 +0200251#include <system/qemu_pipe.h>
Vladimir Chtchetkine7c9339d2011-12-09 15:49:47 -0800252#undef open
David 'Digit' Turnerb82031f2016-06-16 17:05:52 +0200253#undef read
Vladimir Chtchetkine7c9339d2011-12-09 15:49:47 -0800254#undef write
255#define open ___xxx_open
David 'Digit' Turnerb82031f2016-06-16 17:05:52 +0200256#define read ___xxx_read
Vladimir Chtchetkine7c9339d2011-12-09 15:49:47 -0800257#define write ___xxx_write
258
259/* A worker thread that monitors host connections, and registers a transport for
260 * every new host connection. This thread replaces server_socket_thread on
261 * condition that adbd daemon runs inside the emulator, and emulator uses QEMUD
262 * pipe to communicate with adbd daemon inside the guest. This is done in order
263 * to provide more robust communication channel between ADB host and guest. The
264 * main issue with server_socket_thread approach is that it runs on top of TCP,
265 * and thus is sensitive to network disruptions. For instance, the
266 * ConnectionManager may decide to reset all network connections, in which case
267 * the connection between ADB host and guest will be lost. To make ADB traffic
268 * independent from the network, we use here 'adb' QEMUD service to transfer data
269 * between the host, and the guest. See external/qemu/android/adb-*.* that
270 * implements the emulator's side of the protocol. Another advantage of using
271 * QEMUD approach is that ADB will be up much sooner, since it doesn't depend
272 * anymore on network being set up.
273 * The guest side of the protocol contains the following phases:
274 * - Connect with adb QEMUD service. In this phase a handle to 'adb' QEMUD service
275 * is opened, and it becomes clear whether or not emulator supports that
276 * protocol.
277 * - Wait for the ADB host to create connection with the guest. This is done by
278 * sending an 'accept' request to the adb QEMUD service, and waiting on
279 * response.
280 * - When new ADB host connection is accepted, the connection with adb QEMUD
281 * service is registered as the transport, and a 'start' request is sent to the
282 * adb QEMUD service, indicating that the guest is ready to receive messages.
283 * Note that the guest will ignore messages sent down from the emulator before
284 * the transport registration is completed. That's why we need to send the
285 * 'start' request after the transport is registered.
286 */
Josh Gao382ea6e2016-02-12 14:31:15 -0800287static void qemu_socket_thread(void* arg) {
288 /* 'accept' request to the adb QEMUD service. */
289 static const char _accept_req[] = "accept";
290 /* 'start' request to the adb QEMUD service. */
291 static const char _start_req[] = "start";
292 /* 'ok' reply from the adb QEMUD service. */
293 static const char _ok_resp[] = "ok";
Vladimir Chtchetkine7c9339d2011-12-09 15:49:47 -0800294
Elliott Hughes9c0d9402014-01-16 10:53:11 -0800295 const int port = (int) (uintptr_t) arg;
bohuf4ae8fa2016-02-29 13:13:19 -0800296 int fd;
Vladimir Chtchetkine7c9339d2011-12-09 15:49:47 -0800297 char tmp[256];
298 char con_name[32];
299
Siva Velusamy2669cf92015-08-28 16:37:29 -0700300 adb_thread_setname("qemu socket");
Yabin Cui815ad882015-09-02 17:44:28 -0700301 D("transport: qemu_socket_thread() starting");
Vladimir Chtchetkine7c9339d2011-12-09 15:49:47 -0800302
303 /* adb QEMUD service connection request. */
David 'Digit' Turnerb82031f2016-06-16 17:05:52 +0200304 snprintf(con_name, sizeof(con_name), "pipe:qemud:adb:%d", port);
Vladimir Chtchetkine7c9339d2011-12-09 15:49:47 -0800305
306 /* Connect to the adb QEMUD service. */
307 fd = qemu_pipe_open(con_name);
308 if (fd < 0) {
309 /* This could be an older version of the emulator, that doesn't
310 * implement adb QEMUD service. Fall back to the old TCP way. */
Yabin Cui815ad882015-09-02 17:44:28 -0700311 D("adb service is not available. Falling back to TCP socket.");
Elliott Hughesf2517142015-05-05 13:41:21 -0700312 adb_thread_create(server_socket_thread, arg);
Josh Gao382ea6e2016-02-12 14:31:15 -0800313 return;
Vladimir Chtchetkine7c9339d2011-12-09 15:49:47 -0800314 }
315
316 for(;;) {
317 /*
318 * Wait till the host creates a new connection.
319 */
320
321 /* Send the 'accept' request. */
bohuf4ae8fa2016-02-29 13:13:19 -0800322 if (WriteFdExactly(fd, _accept_req, strlen(_accept_req))) {
Vladimir Chtchetkine7c9339d2011-12-09 15:49:47 -0800323 /* Wait for the response. In the response we expect 'ok' on success,
324 * or 'ko' on failure. */
bohuf4ae8fa2016-02-29 13:13:19 -0800325 if (!ReadFdExactly(fd, tmp, 2) || memcmp(tmp, _ok_resp, 2)) {
Yabin Cui815ad882015-09-02 17:44:28 -0700326 D("Accepting ADB host connection has failed.");
Vladimir Chtchetkine7c9339d2011-12-09 15:49:47 -0800327 adb_close(fd);
328 } else {
329 /* Host is connected. Register the transport, and start the
330 * exchange. */
Prathmesh Prabhuefa49792016-03-09 13:51:30 -0800331 std::string serial = android::base::StringPrintf("host-%d", fd);
Yabin Cuic7221782016-05-17 15:14:25 -0700332 if (register_socket_transport(fd, serial.c_str(), port, 1) != 0 ||
333 !WriteFdExactly(fd, _start_req, strlen(_start_req))) {
bohuf4ae8fa2016-02-29 13:13:19 -0800334 adb_close(fd);
335 }
Vladimir Chtchetkine7c9339d2011-12-09 15:49:47 -0800336 }
337
338 /* Prepare for accepting of the next ADB host connection. */
339 fd = qemu_pipe_open(con_name);
340 if (fd < 0) {
Yabin Cui815ad882015-09-02 17:44:28 -0700341 D("adb service become unavailable.");
Josh Gao382ea6e2016-02-12 14:31:15 -0800342 return;
Vladimir Chtchetkine7c9339d2011-12-09 15:49:47 -0800343 }
344 } else {
Yabin Cui815ad882015-09-02 17:44:28 -0700345 D("Unable to send the '%s' request to ADB service.", _accept_req);
Josh Gao382ea6e2016-02-12 14:31:15 -0800346 return;
Vladimir Chtchetkine7c9339d2011-12-09 15:49:47 -0800347 }
348 }
Yabin Cui815ad882015-09-02 17:44:28 -0700349 D("transport: qemu_socket_thread() exiting");
Josh Gao382ea6e2016-02-12 14:31:15 -0800350 return;
Vladimir Chtchetkine7c9339d2011-12-09 15:49:47 -0800351}
Vladimir Chtchetkine4bdc7762011-12-13 12:19:29 -0800352#endif // !ADB_HOST
Vladimir Chtchetkine7c9339d2011-12-09 15:49:47 -0800353
Mike Lockwood26b88e32009-08-24 15:58:40 -0700354void local_init(int port)
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800355{
Josh Gao382ea6e2016-02-12 14:31:15 -0800356 adb_thread_func_t func;
Yabin Cui5fe6d0d2015-08-11 13:40:42 -0700357 const char* debug_name = "";
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800358
Vladimir Chtchetkine4bdc7762011-12-13 12:19:29 -0800359#if ADB_HOST
Yabin Cui5fe6d0d2015-08-11 13:40:42 -0700360 func = client_socket_thread;
361 debug_name = "client";
Vladimir Chtchetkine4bdc7762011-12-13 12:19:29 -0800362#else
Elliott Hughes8b249d22016-09-23 15:40:03 -0700363 // For the adbd daemon in the system image we need to distinguish
364 // between the device, and the emulator.
365 if (android::base::GetBoolProperty("ro.kernel.qemu", false)) {
366 // Running inside the emulator: use QEMUD pipe as the transport.
Yabin Cui5fe6d0d2015-08-11 13:40:42 -0700367 func = qemu_socket_thread;
368 } else {
Elliott Hughes8b249d22016-09-23 15:40:03 -0700369 // Running inside the device: use TCP socket as the transport.
Yabin Cui5fe6d0d2015-08-11 13:40:42 -0700370 func = server_socket_thread;
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800371 }
Yabin Cui5fe6d0d2015-08-11 13:40:42 -0700372 debug_name = "server";
373#endif // !ADB_HOST
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800374
Yabin Cui815ad882015-09-02 17:44:28 -0700375 D("transport: local %s init", debug_name);
Elliott Hughesf2517142015-05-05 13:41:21 -0700376 if (!adb_thread_create(func, (void *) (uintptr_t) port)) {
Yabin Cui5fe6d0d2015-08-11 13:40:42 -0700377 fatal_errno("cannot create local socket %s thread", debug_name);
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800378 }
379}
380
381static void remote_kick(atransport *t)
382{
383 int fd = t->sfd;
384 t->sfd = -1;
Mike Lockwood81ffe172009-10-11 23:04:18 -0400385 adb_shutdown(fd);
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800386 adb_close(fd);
387
388#if ADB_HOST
Yabin Cui5fe6d0d2015-08-11 13:40:42 -0700389 int nn;
Josh Gaoe7daf572016-09-21 12:37:10 -0700390 std::lock_guard<std::mutex> lock(local_transports_lock);
Yabin Cui5fe6d0d2015-08-11 13:40:42 -0700391 for (nn = 0; nn < ADB_LOCAL_TRANSPORT_MAX; nn++) {
392 if (local_transports[nn] == t) {
393 local_transports[nn] = NULL;
394 break;
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800395 }
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800396 }
397#endif
398}
399
400static void remote_close(atransport *t)
401{
Spencer Low6f38e232015-06-09 12:32:17 -0700402 int fd = t->sfd;
403 if (fd != -1) {
404 t->sfd = -1;
405 adb_close(fd);
406 }
Yabin Cuif401ead2016-04-29 16:53:52 -0700407#if ADB_HOST
408 int local_port;
409 if (t->GetLocalPortForEmulator(&local_port)) {
410 VLOG(TRANSPORT) << "remote_close, local_port = " << local_port;
411 std::unique_lock<std::mutex> lock(retry_ports_lock);
412 RetryPort port;
413 port.port = local_port;
414 port.retry_count = LOCAL_PORT_RETRY_COUNT;
415 retry_ports.push_back(port);
416 retry_ports_cond.notify_one();
417 }
418#endif
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800419}
420
Stefan Hilzinger1ec03422010-04-26 10:17:43 +0100421
422#if ADB_HOST
423/* Only call this function if you already hold local_transports_lock. */
Yabin Cuif401ead2016-04-29 16:53:52 -0700424static atransport* find_emulator_transport_by_adb_port_locked(int adb_port)
Stefan Hilzinger1ec03422010-04-26 10:17:43 +0100425{
426 int i;
427 for (i = 0; i < ADB_LOCAL_TRANSPORT_MAX; i++) {
Yabin Cuif401ead2016-04-29 16:53:52 -0700428 int local_port;
429 if (local_transports[i] && local_transports[i]->GetLocalPortForEmulator(&local_port)) {
430 if (local_port == adb_port) {
431 return local_transports[i];
432 }
Stefan Hilzinger1ec03422010-04-26 10:17:43 +0100433 }
434 }
435 return NULL;
436}
437
Lingfeng Yang5edb12b2016-10-06 12:22:55 -0700438std::string getEmulatorSerialString(int console_port)
439{
440 return android::base::StringPrintf("emulator-%d", console_port);
441}
442
Stefan Hilzinger1ec03422010-04-26 10:17:43 +0100443atransport* find_emulator_transport_by_adb_port(int adb_port)
444{
Josh Gaoe7daf572016-09-21 12:37:10 -0700445 std::lock_guard<std::mutex> lock(local_transports_lock);
Stefan Hilzinger1ec03422010-04-26 10:17:43 +0100446 atransport* result = find_emulator_transport_by_adb_port_locked(adb_port);
Stefan Hilzinger1ec03422010-04-26 10:17:43 +0100447 return result;
448}
449
Lingfeng Yang5edb12b2016-10-06 12:22:55 -0700450atransport* find_emulator_transport_by_console_port(int console_port)
451{
452 return find_transport(getEmulatorSerialString(console_port).c_str());
453}
454
455
Stefan Hilzinger1ec03422010-04-26 10:17:43 +0100456/* Only call this function if you already hold local_transports_lock. */
457int get_available_local_transport_index_locked()
458{
459 int i;
460 for (i = 0; i < ADB_LOCAL_TRANSPORT_MAX; i++) {
461 if (local_transports[i] == NULL) {
462 return i;
463 }
464 }
465 return -1;
466}
467
468int get_available_local_transport_index()
469{
Josh Gaoe7daf572016-09-21 12:37:10 -0700470 std::lock_guard<std::mutex> lock(local_transports_lock);
Stefan Hilzinger1ec03422010-04-26 10:17:43 +0100471 int result = get_available_local_transport_index_locked();
Stefan Hilzinger1ec03422010-04-26 10:17:43 +0100472 return result;
473}
474#endif
475
476int init_socket_transport(atransport *t, int s, int adb_port, int local)
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800477{
478 int fail = 0;
479
Yabin Cuiefc525a2016-04-18 11:22:34 -0700480 t->SetKickFunction(remote_kick);
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800481 t->close = remote_close;
482 t->read_from_remote = remote_read;
483 t->write_to_remote = remote_write;
484 t->sfd = s;
485 t->sync_token = 1;
Dan Albert9a50f4c2015-05-18 16:43:57 -0700486 t->connection_state = kCsOffline;
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800487 t->type = kTransportLocal;
488
489#if ADB_HOST
Yabin Cui5fe6d0d2015-08-11 13:40:42 -0700490 if (local) {
Josh Gaoe7daf572016-09-21 12:37:10 -0700491 std::lock_guard<std::mutex> lock(local_transports_lock);
492 t->SetLocalPortForEmulator(adb_port);
493 atransport* existing_transport = find_emulator_transport_by_adb_port_locked(adb_port);
494 int index = get_available_local_transport_index_locked();
495 if (existing_transport != NULL) {
496 D("local transport for port %d already registered (%p)?", adb_port, existing_transport);
497 fail = -1;
498 } else if (index < 0) {
499 // Too many emulators.
500 D("cannot register more emulators. Maximum is %d", ADB_LOCAL_TRANSPORT_MAX);
501 fail = -1;
502 } else {
503 local_transports[index] = t;
504 }
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800505 }
506#endif
507 return fail;
508}