blob: a94b41efa6a012dacbb021acc47dd3ec039e9814 [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 Albert33134262015-03-19 15:21:08 -070018
19#include "sysdeps.h"
20#include "transport.h"
21
Dan Albert76649012015-02-24 15:51:19 -080022#include <errno.h>
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080023#include <stdio.h>
24#include <stdlib.h>
25#include <string.h>
Dan Albert76649012015-02-24 15:51:19 -080026#include <sys/types.h>
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080027
Pirama Arumuga Nainar7eaef8a2016-09-06 13:34:42 -070028#include <condition_variable>
Josh Gao0cd3ae12016-09-21 12:37:10 -070029#include <mutex>
Yabin Cuib74c6492016-04-29 16:53:52 -070030#include <vector>
31
Elliott Hughes4f713192015-12-04 22:00:26 -080032#include <android-base/stringprintf.h>
Elliott Hughes381cfa92015-07-23 17:12:58 -070033#include <cutils/sockets.h>
Elliott Hughesab52c182015-05-01 17:04:38 -070034
Dan Albert76649012015-02-24 15:51:19 -080035#if !ADB_HOST
Elliott Hughesffdec182016-09-23 15:40:03 -070036#include <android-base/properties.h>
Dan Albert76649012015-02-24 15:51:19 -080037#endif
Dan Albert33134262015-03-19 15:21:08 -070038
39#include "adb.h"
40#include "adb_io.h"
Elliott Hughes381cfa92015-07-23 17:12:58 -070041#include "adb_utils.h"
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080042
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080043#if ADB_HOST
Josh Gao9fe74262016-05-06 02:37:24 -070044
45// Android Wear has been using port 5601 in all of its documentation/tooling,
46// but we search for emulators on ports [5554, 5555 + ADB_LOCAL_TRANSPORT_MAX].
47// Avoid stomping on their port by limiting the number of emulators that can be
48// connected.
49#define ADB_LOCAL_TRANSPORT_MAX 16
50
Josh Gao0cd3ae12016-09-21 12:37:10 -070051static std::mutex& local_transports_lock = *new std::mutex();
Josh Gao9fe74262016-05-06 02:37:24 -070052
Stefan Hilzingerd9d1ca42010-04-26 10:17:43 +010053/* we keep a list of opened transports. The atransport struct knows to which
54 * local transport it is connected. The list is used to detect when we're
55 * trying to connect twice to a given local transport.
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080056 */
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080057static atransport* local_transports[ ADB_LOCAL_TRANSPORT_MAX ];
58#endif /* ADB_HOST */
59
60static int remote_read(apacket *p, atransport *t)
61{
Dan Albertcc731cc2015-02-24 21:26:58 -080062 if(!ReadFdExactly(t->sfd, &p->msg, sizeof(amessage))){
Yabin Cui7a3f8d62015-09-02 17:44:28 -070063 D("remote local: read terminated (message)");
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080064 return -1;
65 }
66
Tamas Berghammer3d2904c2015-07-13 19:12:28 +010067 if(check_header(p, t)) {
Yabin Cui7a3f8d62015-09-02 17:44:28 -070068 D("bad header: terminated (data)");
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080069 return -1;
70 }
71
Dan Albertcc731cc2015-02-24 21:26:58 -080072 if(!ReadFdExactly(t->sfd, p->data, p->msg.data_length)){
Yabin Cui7a3f8d62015-09-02 17:44:28 -070073 D("remote local: terminated (data)");
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080074 return -1;
75 }
76
77 if(check_data(p)) {
Yabin Cui7a3f8d62015-09-02 17:44:28 -070078 D("bad data: terminated (data)");
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080079 return -1;
80 }
81
82 return 0;
83}
84
85static int remote_write(apacket *p, atransport *t)
86{
87 int length = p->msg.data_length;
88
Dan Albertcc731cc2015-02-24 21:26:58 -080089 if(!WriteFdExactly(t->sfd, &p->msg, sizeof(amessage) + length)) {
Yabin Cui7a3f8d62015-09-02 17:44:28 -070090 D("remote local: write terminated");
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080091 return -1;
92 }
93
94 return 0;
95}
96
Yabin Cuib74c6492016-04-29 16:53:52 -070097bool local_connect(int port) {
Elliott Hughes381cfa92015-07-23 17:12:58 -070098 std::string dummy;
Yabin Cuib74c6492016-04-29 16:53:52 -070099 return local_connect_arbitrary_ports(port-1, port, &dummy) == 0;
Stefan Hilzingerd9d1ca42010-04-26 10:17:43 +0100100}
101
Elliott Hughes381cfa92015-07-23 17:12:58 -0700102int local_connect_arbitrary_ports(int console_port, int adb_port, std::string* error) {
103 int fd = -1;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800104
105#if ADB_HOST
Yabin Cui0e2c1942015-07-31 14:10:54 -0700106 if (find_emulator_transport_by_adb_port(adb_port) != nullptr) {
107 return -1;
108 }
109
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800110 const char *host = getenv("ADBHOST");
111 if (host) {
Elliott Hughes381cfa92015-07-23 17:12:58 -0700112 fd = network_connect(host, adb_port, SOCK_STREAM, 0, error);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800113 }
114#endif
115 if (fd < 0) {
Spencer Low5200c662015-07-30 23:07:55 -0700116 fd = network_loopback_client(adb_port, SOCK_STREAM, error);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800117 }
118
119 if (fd >= 0) {
Yabin Cui7a3f8d62015-09-02 17:44:28 -0700120 D("client: connected on remote on fd %d", fd);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800121 close_on_exec(fd);
122 disable_tcp_nagle(fd);
Elliott Hughesab52c182015-05-01 17:04:38 -0700123 std::string serial = android::base::StringPrintf("emulator-%d", console_port);
Yabin Cui0e2c1942015-07-31 14:10:54 -0700124 if (register_socket_transport(fd, serial.c_str(), adb_port, 1) == 0) {
125 return 0;
126 }
127 adb_close(fd);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800128 }
129 return -1;
130}
131
Yabin Cui661327e2015-08-11 13:40:42 -0700132#if ADB_HOST
Yabin Cuib74c6492016-04-29 16:53:52 -0700133
134static void PollAllLocalPortsForEmulator() {
135 int port = DEFAULT_ADB_LOCAL_TRANSPORT_PORT;
136 int count = ADB_LOCAL_TRANSPORT_MAX;
137
138 // Try to connect to any number of running emulator instances.
139 for ( ; count > 0; count--, port += 2 ) {
140 local_connect(port);
141 }
142}
143
144// Retry the disconnected local port for 60 times, and sleep 1 second between two retries.
145constexpr uint32_t LOCAL_PORT_RETRY_COUNT = 60;
146constexpr uint32_t LOCAL_PORT_RETRY_INTERVAL_IN_MS = 1000;
147
148struct RetryPort {
149 int port;
150 uint32_t retry_count;
151};
152
153// Retry emulators just kicked.
154static std::vector<RetryPort>& retry_ports = *new std::vector<RetryPort>;
155std::mutex &retry_ports_lock = *new std::mutex;
156std::condition_variable &retry_ports_cond = *new std::condition_variable;
157
Josh Gaod9db09c2016-02-12 14:31:15 -0800158static void client_socket_thread(void* x) {
Siva Velusamy49ee7cf2015-08-28 16:37:29 -0700159 adb_thread_setname("client_socket_thread");
Yabin Cui7a3f8d62015-09-02 17:44:28 -0700160 D("transport: client_socket_thread() starting");
Yabin Cuib74c6492016-04-29 16:53:52 -0700161 PollAllLocalPortsForEmulator();
Yabin Cui0e2c1942015-07-31 14:10:54 -0700162 while (true) {
Yabin Cuib74c6492016-04-29 16:53:52 -0700163 std::vector<RetryPort> ports;
164 // Collect retry ports.
165 {
166 std::unique_lock<std::mutex> lock(retry_ports_lock);
167 while (retry_ports.empty()) {
168 retry_ports_cond.wait(lock);
169 }
170 retry_ports.swap(ports);
Yabin Cui0e2c1942015-07-31 14:10:54 -0700171 }
Yabin Cuib74c6492016-04-29 16:53:52 -0700172 // Sleep here instead of the end of loop, because if we immediately try to reconnect
173 // the emulator just kicked, the adbd on the emulator may not have time to remove the
174 // just kicked transport.
175 adb_sleep_ms(LOCAL_PORT_RETRY_INTERVAL_IN_MS);
176
177 // Try connecting retry ports.
178 std::vector<RetryPort> next_ports;
179 for (auto& port : ports) {
180 VLOG(TRANSPORT) << "retry port " << port.port << ", last retry_count "
181 << port.retry_count;
182 if (local_connect(port.port)) {
183 VLOG(TRANSPORT) << "retry port " << port.port << " successfully";
184 continue;
185 }
186 if (--port.retry_count > 0) {
187 next_ports.push_back(port);
188 } else {
189 VLOG(TRANSPORT) << "stop retrying port " << port.port;
190 }
191 }
192
193 // Copy back left retry ports.
194 {
195 std::unique_lock<std::mutex> lock(retry_ports_lock);
196 retry_ports.insert(retry_ports.end(), next_ports.begin(), next_ports.end());
197 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800198 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800199}
200
Yabin Cui661327e2015-08-11 13:40:42 -0700201#else // ADB_HOST
202
Josh Gaod9db09c2016-02-12 14:31:15 -0800203static void server_socket_thread(void* arg) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800204 int serverfd, fd;
Elliott Hughesccecf142014-01-16 10:53:11 -0800205 int port = (int) (uintptr_t) arg;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800206
Siva Velusamy49ee7cf2015-08-28 16:37:29 -0700207 adb_thread_setname("server socket");
Yabin Cui7a3f8d62015-09-02 17:44:28 -0700208 D("transport: server_socket_thread() starting");
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800209 serverfd = -1;
210 for(;;) {
211 if(serverfd == -1) {
Spencer Low5200c662015-07-30 23:07:55 -0700212 std::string error;
213 serverfd = network_inaddr_any_server(port, SOCK_STREAM, &error);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800214 if(serverfd < 0) {
Yabin Cui7a3f8d62015-09-02 17:44:28 -0700215 D("server: cannot bind socket yet: %s", error.c_str());
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800216 adb_sleep_ms(1000);
217 continue;
218 }
219 close_on_exec(serverfd);
220 }
221
Yabin Cui7a3f8d62015-09-02 17:44:28 -0700222 D("server: trying to get new connection from %d", port);
Josh Gao78e1eb12016-08-23 15:41:56 -0700223 fd = adb_socket_accept(serverfd, nullptr, nullptr);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800224 if(fd >= 0) {
Yabin Cui7a3f8d62015-09-02 17:44:28 -0700225 D("server: new connection on fd %d", fd);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800226 close_on_exec(fd);
227 disable_tcp_nagle(fd);
Yabin Cui01401822016-05-17 15:14:25 -0700228 if (register_socket_transport(fd, "host", port, 1) != 0) {
229 adb_close(fd);
230 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800231 }
232 }
Yabin Cui7a3f8d62015-09-02 17:44:28 -0700233 D("transport: server_socket_thread() exiting");
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800234}
235
Vladimir Chtchetkinec4f37ee2011-12-13 12:19:29 -0800236/* This is relevant only for ADB daemon running inside the emulator. */
Vladimir Chtchetkinec13daef2011-12-09 15:49:47 -0800237/*
238 * Redefine open and write for qemu_pipe.h that contains inlined references
David 'Digit' Turnerc7b098c2016-06-16 17:05:52 +0200239 * to those routines. We will redefine them back after qemu_pipe.h inclusion.
Vladimir Chtchetkinec13daef2011-12-09 15:49:47 -0800240 */
241#undef open
David 'Digit' Turnerc7b098c2016-06-16 17:05:52 +0200242#undef read
Vladimir Chtchetkinec13daef2011-12-09 15:49:47 -0800243#undef write
244#define open adb_open
David 'Digit' Turnerc7b098c2016-06-16 17:05:52 +0200245#define read adb_read
Vladimir Chtchetkinec13daef2011-12-09 15:49:47 -0800246#define write adb_write
David 'Digit' Turnerc7b098c2016-06-16 17:05:52 +0200247#include <system/qemu_pipe.h>
Vladimir Chtchetkinec13daef2011-12-09 15:49:47 -0800248#undef open
David 'Digit' Turnerc7b098c2016-06-16 17:05:52 +0200249#undef read
Vladimir Chtchetkinec13daef2011-12-09 15:49:47 -0800250#undef write
251#define open ___xxx_open
David 'Digit' Turnerc7b098c2016-06-16 17:05:52 +0200252#define read ___xxx_read
Vladimir Chtchetkinec13daef2011-12-09 15:49:47 -0800253#define write ___xxx_write
254
255/* A worker thread that monitors host connections, and registers a transport for
256 * every new host connection. This thread replaces server_socket_thread on
257 * condition that adbd daemon runs inside the emulator, and emulator uses QEMUD
258 * pipe to communicate with adbd daemon inside the guest. This is done in order
259 * to provide more robust communication channel between ADB host and guest. The
260 * main issue with server_socket_thread approach is that it runs on top of TCP,
261 * and thus is sensitive to network disruptions. For instance, the
262 * ConnectionManager may decide to reset all network connections, in which case
263 * the connection between ADB host and guest will be lost. To make ADB traffic
264 * independent from the network, we use here 'adb' QEMUD service to transfer data
265 * between the host, and the guest. See external/qemu/android/adb-*.* that
266 * implements the emulator's side of the protocol. Another advantage of using
267 * QEMUD approach is that ADB will be up much sooner, since it doesn't depend
268 * anymore on network being set up.
269 * The guest side of the protocol contains the following phases:
270 * - Connect with adb QEMUD service. In this phase a handle to 'adb' QEMUD service
271 * is opened, and it becomes clear whether or not emulator supports that
272 * protocol.
273 * - Wait for the ADB host to create connection with the guest. This is done by
274 * sending an 'accept' request to the adb QEMUD service, and waiting on
275 * response.
276 * - When new ADB host connection is accepted, the connection with adb QEMUD
277 * service is registered as the transport, and a 'start' request is sent to the
278 * adb QEMUD service, indicating that the guest is ready to receive messages.
279 * Note that the guest will ignore messages sent down from the emulator before
280 * the transport registration is completed. That's why we need to send the
281 * 'start' request after the transport is registered.
282 */
Josh Gaod9db09c2016-02-12 14:31:15 -0800283static void qemu_socket_thread(void* arg) {
284 /* 'accept' request to the adb QEMUD service. */
285 static const char _accept_req[] = "accept";
286 /* 'start' request to the adb QEMUD service. */
287 static const char _start_req[] = "start";
288 /* 'ok' reply from the adb QEMUD service. */
289 static const char _ok_resp[] = "ok";
Vladimir Chtchetkinec13daef2011-12-09 15:49:47 -0800290
Elliott Hughesccecf142014-01-16 10:53:11 -0800291 const int port = (int) (uintptr_t) arg;
bohu8ac1b042016-02-29 13:13:19 -0800292 int fd;
Vladimir Chtchetkinec13daef2011-12-09 15:49:47 -0800293 char tmp[256];
294 char con_name[32];
295
Siva Velusamy49ee7cf2015-08-28 16:37:29 -0700296 adb_thread_setname("qemu socket");
Yabin Cui7a3f8d62015-09-02 17:44:28 -0700297 D("transport: qemu_socket_thread() starting");
Vladimir Chtchetkinec13daef2011-12-09 15:49:47 -0800298
299 /* adb QEMUD service connection request. */
David 'Digit' Turnerc7b098c2016-06-16 17:05:52 +0200300 snprintf(con_name, sizeof(con_name), "pipe:qemud:adb:%d", port);
Vladimir Chtchetkinec13daef2011-12-09 15:49:47 -0800301
302 /* Connect to the adb QEMUD service. */
303 fd = qemu_pipe_open(con_name);
304 if (fd < 0) {
305 /* This could be an older version of the emulator, that doesn't
306 * implement adb QEMUD service. Fall back to the old TCP way. */
Yabin Cui7a3f8d62015-09-02 17:44:28 -0700307 D("adb service is not available. Falling back to TCP socket.");
Elliott Hughes9b0f3542015-05-05 13:41:21 -0700308 adb_thread_create(server_socket_thread, arg);
Josh Gaod9db09c2016-02-12 14:31:15 -0800309 return;
Vladimir Chtchetkinec13daef2011-12-09 15:49:47 -0800310 }
311
312 for(;;) {
313 /*
314 * Wait till the host creates a new connection.
315 */
316
317 /* Send the 'accept' request. */
bohu8ac1b042016-02-29 13:13:19 -0800318 if (WriteFdExactly(fd, _accept_req, strlen(_accept_req))) {
Vladimir Chtchetkinec13daef2011-12-09 15:49:47 -0800319 /* Wait for the response. In the response we expect 'ok' on success,
320 * or 'ko' on failure. */
bohu8ac1b042016-02-29 13:13:19 -0800321 if (!ReadFdExactly(fd, tmp, 2) || memcmp(tmp, _ok_resp, 2)) {
Yabin Cui7a3f8d62015-09-02 17:44:28 -0700322 D("Accepting ADB host connection has failed.");
Vladimir Chtchetkinec13daef2011-12-09 15:49:47 -0800323 adb_close(fd);
324 } else {
325 /* Host is connected. Register the transport, and start the
326 * exchange. */
Prathmesh Prabhu251d46e2016-03-09 13:51:30 -0800327 std::string serial = android::base::StringPrintf("host-%d", fd);
Yabin Cui01401822016-05-17 15:14:25 -0700328 if (register_socket_transport(fd, serial.c_str(), port, 1) != 0 ||
329 !WriteFdExactly(fd, _start_req, strlen(_start_req))) {
bohu8ac1b042016-02-29 13:13:19 -0800330 adb_close(fd);
331 }
Vladimir Chtchetkinec13daef2011-12-09 15:49:47 -0800332 }
333
334 /* Prepare for accepting of the next ADB host connection. */
335 fd = qemu_pipe_open(con_name);
336 if (fd < 0) {
Yabin Cui7a3f8d62015-09-02 17:44:28 -0700337 D("adb service become unavailable.");
Josh Gaod9db09c2016-02-12 14:31:15 -0800338 return;
Vladimir Chtchetkinec13daef2011-12-09 15:49:47 -0800339 }
340 } else {
Yabin Cui7a3f8d62015-09-02 17:44:28 -0700341 D("Unable to send the '%s' request to ADB service.", _accept_req);
Josh Gaod9db09c2016-02-12 14:31:15 -0800342 return;
Vladimir Chtchetkinec13daef2011-12-09 15:49:47 -0800343 }
344 }
Yabin Cui7a3f8d62015-09-02 17:44:28 -0700345 D("transport: qemu_socket_thread() exiting");
Josh Gaod9db09c2016-02-12 14:31:15 -0800346 return;
Vladimir Chtchetkinec13daef2011-12-09 15:49:47 -0800347}
Vladimir Chtchetkinec4f37ee2011-12-13 12:19:29 -0800348#endif // !ADB_HOST
Vladimir Chtchetkinec13daef2011-12-09 15:49:47 -0800349
Mike Lockwoodff196702009-08-24 15:58:40 -0700350void local_init(int port)
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800351{
Josh Gaod9db09c2016-02-12 14:31:15 -0800352 adb_thread_func_t func;
Yabin Cui661327e2015-08-11 13:40:42 -0700353 const char* debug_name = "";
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800354
Vladimir Chtchetkinec4f37ee2011-12-13 12:19:29 -0800355#if ADB_HOST
Yabin Cui661327e2015-08-11 13:40:42 -0700356 func = client_socket_thread;
357 debug_name = "client";
Vladimir Chtchetkinec4f37ee2011-12-13 12:19:29 -0800358#else
Elliott Hughesffdec182016-09-23 15:40:03 -0700359 // For the adbd daemon in the system image we need to distinguish
360 // between the device, and the emulator.
361 if (android::base::GetBoolProperty("ro.kernel.qemu", false)) {
362 // Running inside the emulator: use QEMUD pipe as the transport.
Yabin Cui661327e2015-08-11 13:40:42 -0700363 func = qemu_socket_thread;
364 } else {
Elliott Hughesffdec182016-09-23 15:40:03 -0700365 // Running inside the device: use TCP socket as the transport.
Yabin Cui661327e2015-08-11 13:40:42 -0700366 func = server_socket_thread;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800367 }
Yabin Cui661327e2015-08-11 13:40:42 -0700368 debug_name = "server";
369#endif // !ADB_HOST
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800370
Yabin Cui7a3f8d62015-09-02 17:44:28 -0700371 D("transport: local %s init", debug_name);
Elliott Hughes9b0f3542015-05-05 13:41:21 -0700372 if (!adb_thread_create(func, (void *) (uintptr_t) port)) {
Yabin Cui661327e2015-08-11 13:40:42 -0700373 fatal_errno("cannot create local socket %s thread", debug_name);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800374 }
375}
376
377static void remote_kick(atransport *t)
378{
379 int fd = t->sfd;
380 t->sfd = -1;
Mike Lockwood8cf0d592009-10-11 23:04:18 -0400381 adb_shutdown(fd);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800382 adb_close(fd);
383
384#if ADB_HOST
Yabin Cui661327e2015-08-11 13:40:42 -0700385 int nn;
Josh Gao0cd3ae12016-09-21 12:37:10 -0700386 std::lock_guard<std::mutex> lock(local_transports_lock);
Yabin Cui661327e2015-08-11 13:40:42 -0700387 for (nn = 0; nn < ADB_LOCAL_TRANSPORT_MAX; nn++) {
388 if (local_transports[nn] == t) {
389 local_transports[nn] = NULL;
390 break;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800391 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800392 }
393#endif
394}
395
396static void remote_close(atransport *t)
397{
Spencer Low3abd31d2015-06-09 12:32:17 -0700398 int fd = t->sfd;
399 if (fd != -1) {
400 t->sfd = -1;
401 adb_close(fd);
402 }
Yabin Cuib74c6492016-04-29 16:53:52 -0700403#if ADB_HOST
404 int local_port;
405 if (t->GetLocalPortForEmulator(&local_port)) {
406 VLOG(TRANSPORT) << "remote_close, local_port = " << local_port;
407 std::unique_lock<std::mutex> lock(retry_ports_lock);
408 RetryPort port;
409 port.port = local_port;
410 port.retry_count = LOCAL_PORT_RETRY_COUNT;
411 retry_ports.push_back(port);
412 retry_ports_cond.notify_one();
413 }
414#endif
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800415}
416
Stefan Hilzingerd9d1ca42010-04-26 10:17:43 +0100417
418#if ADB_HOST
419/* Only call this function if you already hold local_transports_lock. */
Yabin Cuib74c6492016-04-29 16:53:52 -0700420static atransport* find_emulator_transport_by_adb_port_locked(int adb_port)
Stefan Hilzingerd9d1ca42010-04-26 10:17:43 +0100421{
422 int i;
423 for (i = 0; i < ADB_LOCAL_TRANSPORT_MAX; i++) {
Yabin Cuib74c6492016-04-29 16:53:52 -0700424 int local_port;
425 if (local_transports[i] && local_transports[i]->GetLocalPortForEmulator(&local_port)) {
426 if (local_port == adb_port) {
427 return local_transports[i];
428 }
Stefan Hilzingerd9d1ca42010-04-26 10:17:43 +0100429 }
430 }
431 return NULL;
432}
433
434atransport* find_emulator_transport_by_adb_port(int adb_port)
435{
Josh Gao0cd3ae12016-09-21 12:37:10 -0700436 std::lock_guard<std::mutex> lock(local_transports_lock);
Stefan Hilzingerd9d1ca42010-04-26 10:17:43 +0100437 atransport* result = find_emulator_transport_by_adb_port_locked(adb_port);
Stefan Hilzingerd9d1ca42010-04-26 10:17:43 +0100438 return result;
439}
440
441/* Only call this function if you already hold local_transports_lock. */
442int get_available_local_transport_index_locked()
443{
444 int i;
445 for (i = 0; i < ADB_LOCAL_TRANSPORT_MAX; i++) {
446 if (local_transports[i] == NULL) {
447 return i;
448 }
449 }
450 return -1;
451}
452
453int get_available_local_transport_index()
454{
Josh Gao0cd3ae12016-09-21 12:37:10 -0700455 std::lock_guard<std::mutex> lock(local_transports_lock);
Stefan Hilzingerd9d1ca42010-04-26 10:17:43 +0100456 int result = get_available_local_transport_index_locked();
Stefan Hilzingerd9d1ca42010-04-26 10:17:43 +0100457 return result;
458}
459#endif
460
461int init_socket_transport(atransport *t, int s, int adb_port, int local)
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800462{
463 int fail = 0;
464
Yabin Cuia28918c2016-04-18 11:22:34 -0700465 t->SetKickFunction(remote_kick);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800466 t->close = remote_close;
467 t->read_from_remote = remote_read;
468 t->write_to_remote = remote_write;
469 t->sfd = s;
470 t->sync_token = 1;
Dan Albertdcd78a12015-05-18 16:43:57 -0700471 t->connection_state = kCsOffline;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800472 t->type = kTransportLocal;
473
474#if ADB_HOST
Yabin Cui661327e2015-08-11 13:40:42 -0700475 if (local) {
Josh Gao0cd3ae12016-09-21 12:37:10 -0700476 std::lock_guard<std::mutex> lock(local_transports_lock);
477 t->SetLocalPortForEmulator(adb_port);
478 atransport* existing_transport = find_emulator_transport_by_adb_port_locked(adb_port);
479 int index = get_available_local_transport_index_locked();
480 if (existing_transport != NULL) {
481 D("local transport for port %d already registered (%p)?", adb_port, existing_transport);
482 fail = -1;
483 } else if (index < 0) {
484 // Too many emulators.
485 D("cannot register more emulators. Maximum is %d", ADB_LOCAL_TRANSPORT_MAX);
486 fail = -1;
487 } else {
488 local_transports[index] = t;
489 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800490 }
491#endif
492 return fail;
493}