blob: d0494ec02ce0bc4abceb9828f8efc03d67051b19 [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
Dan Albert33134262015-03-19 15:21:08 -070017#define TRACE_TAG TRACE_SERVICES
18
19#include "sysdeps.h"
20
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080021#include <errno.h>
Dan Albert76649012015-02-24 15:51:19 -080022#include <stddef.h>
23#include <stdio.h>
24#include <stdlib.h>
25#include <string.h>
26
27#ifndef _WIN32
28#include <netdb.h>
29#include <netinet/in.h>
30#include <sys/ioctl.h>
31#include <unistd.h>
32#endif
33
Elliott Hughese67f1f82015-04-30 17:32:03 -070034#include <base/file.h>
Elliott Hughes6c34bba2015-04-17 20:11:08 -070035#include <base/stringprintf.h>
Elliott Hughese67f1f82015-04-30 17:32:03 -070036#include <base/strings.h>
Elliott Hughes381cfa92015-07-23 17:12:58 -070037#include <cutils/sockets.h>
Elliott Hughes6c34bba2015-04-17 20:11:08 -070038
Dan Albert76649012015-02-24 15:51:19 -080039#if !ADB_HOST
40#include "cutils/android_reboot.h"
41#include "cutils/properties.h"
42#endif
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080043
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080044#include "adb.h"
Dan Albertcc731cc2015-02-24 21:26:58 -080045#include "adb_io.h"
Elliott Hughes3d5f60d2015-07-18 12:21:30 -070046#include "adb_utils.h"
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080047#include "file_sync_service.h"
Elliott Hughesec7a6672015-03-16 21:58:32 +000048#include "remount_service.h"
David Pursell80f67022015-08-28 15:08:49 -070049#include "shell_service.h"
Dan Albert76649012015-02-24 15:51:19 -080050#include "transport.h"
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080051
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080052struct stinfo {
53 void (*func)(int fd, void *cookie);
54 int fd;
55 void *cookie;
56};
57
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080058void *service_bootstrap_func(void *x)
59{
Dan Albertbac34742015-02-25 17:51:28 -080060 stinfo* sti = reinterpret_cast<stinfo*>(x);
Siva Velusamy49ee7cf2015-08-28 16:37:29 -070061 adb_thread_setname(android::base::StringPrintf("service %d", sti->fd));
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080062 sti->func(sti->fd, sti->cookie);
63 free(sti);
64 return 0;
65}
66
Benoit Goby9470c2f2013-02-20 15:04:53 -080067#if !ADB_HOST
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080068
Elliott Hughesab52c182015-05-01 17:04:38 -070069void restart_root_service(int fd, void *cookie) {
The Android Open Source Projecte037fd72009-03-13 13:04:37 -070070 if (getuid() == 0) {
Elliott Hughesab52c182015-05-01 17:04:38 -070071 WriteFdExactly(fd, "adbd is already running as root\n");
The Android Open Source Projecte037fd72009-03-13 13:04:37 -070072 adb_close(fd);
73 } else {
Elliott Hughesab52c182015-05-01 17:04:38 -070074 char value[PROPERTY_VALUE_MAX];
The Android Open Source Projecte037fd72009-03-13 13:04:37 -070075 property_get("ro.debuggable", value, "");
76 if (strcmp(value, "1") != 0) {
Elliott Hughesab52c182015-05-01 17:04:38 -070077 WriteFdExactly(fd, "adbd cannot run as root in production builds\n");
Mike Lockwoodff196702009-08-24 15:58:40 -070078 adb_close(fd);
The Android Open Source Projecte037fd72009-03-13 13:04:37 -070079 return;
80 }
81
Benoit Goby7941cf82012-03-16 14:44:17 -070082 property_set("service.adb.root", "1");
Elliott Hughesab52c182015-05-01 17:04:38 -070083 WriteFdExactly(fd, "restarting adbd as root\n");
The Android Open Source Projecte037fd72009-03-13 13:04:37 -070084 adb_close(fd);
The Android Open Source Projecte037fd72009-03-13 13:04:37 -070085 }
86}
87
Elliott Hughesab52c182015-05-01 17:04:38 -070088void restart_unroot_service(int fd, void *cookie) {
Dan Pasanen98858812014-10-06 12:57:20 -050089 if (getuid() != 0) {
Elliott Hughesab52c182015-05-01 17:04:38 -070090 WriteFdExactly(fd, "adbd not running as root\n");
Dan Pasanen98858812014-10-06 12:57:20 -050091 adb_close(fd);
92 } else {
93 property_set("service.adb.root", "0");
Elliott Hughesab52c182015-05-01 17:04:38 -070094 WriteFdExactly(fd, "restarting adbd as non root\n");
Dan Pasanen98858812014-10-06 12:57:20 -050095 adb_close(fd);
96 }
97}
98
Elliott Hughesab52c182015-05-01 17:04:38 -070099void restart_tcp_service(int fd, void *cookie) {
Elliott Hughesccecf142014-01-16 10:53:11 -0800100 int port = (int) (uintptr_t) cookie;
Mike Lockwoodff196702009-08-24 15:58:40 -0700101 if (port <= 0) {
Elliott Hughesab52c182015-05-01 17:04:38 -0700102 WriteFdFmt(fd, "invalid port %d\n", port);
Mike Lockwoodff196702009-08-24 15:58:40 -0700103 adb_close(fd);
104 return;
105 }
106
Elliott Hughesab52c182015-05-01 17:04:38 -0700107 char value[PROPERTY_VALUE_MAX];
Mike Lockwoodff196702009-08-24 15:58:40 -0700108 snprintf(value, sizeof(value), "%d", port);
109 property_set("service.adb.tcp.port", value);
Elliott Hughesab52c182015-05-01 17:04:38 -0700110 WriteFdFmt(fd, "restarting in TCP mode port: %d\n", port);
Mike Lockwoodff196702009-08-24 15:58:40 -0700111 adb_close(fd);
Mike Lockwoodff196702009-08-24 15:58:40 -0700112}
113
Elliott Hughesab52c182015-05-01 17:04:38 -0700114void restart_usb_service(int fd, void *cookie) {
Mike Lockwoodff196702009-08-24 15:58:40 -0700115 property_set("service.adb.tcp.port", "0");
Elliott Hughesab52c182015-05-01 17:04:38 -0700116 WriteFdExactly(fd, "restarting in USB mode\n");
Mike Lockwoodff196702009-08-24 15:58:40 -0700117 adb_close(fd);
Mike Lockwoodff196702009-08-24 15:58:40 -0700118}
119
Tao Bao175b7bb2015-03-29 11:22:34 -0700120static bool reboot_service_impl(int fd, const char* arg) {
121 const char* reboot_arg = arg;
122 bool auto_reboot = false;
123
124 if (strcmp(reboot_arg, "sideload-auto-reboot") == 0) {
125 auto_reboot = true;
126 reboot_arg = "sideload";
127 }
128
Tao Bao175b7bb2015-03-29 11:22:34 -0700129 // It reboots into sideload mode by setting "--sideload" or "--sideload_auto_reboot"
130 // in the command file.
131 if (strcmp(reboot_arg, "sideload") == 0) {
132 if (getuid() != 0) {
Elliott Hughese67f1f82015-04-30 17:32:03 -0700133 WriteFdExactly(fd, "'adb root' is required for 'adb reboot sideload'.\n");
Tao Bao175b7bb2015-03-29 11:22:34 -0700134 return false;
135 }
136
137 const char* const recovery_dir = "/cache/recovery";
138 const char* const command_file = "/cache/recovery/command";
139 // Ensure /cache/recovery exists.
140 if (adb_mkdir(recovery_dir, 0770) == -1 && errno != EEXIST) {
Yabin Cui7a3f8d62015-09-02 17:44:28 -0700141 D("Failed to create directory '%s': %s", recovery_dir, strerror(errno));
Tao Bao175b7bb2015-03-29 11:22:34 -0700142 return false;
143 }
144
145 bool write_status = android::base::WriteStringToFile(
146 auto_reboot ? "--sideload_auto_reboot" : "--sideload", command_file);
147 if (!write_status) {
148 return false;
149 }
150
151 reboot_arg = "recovery";
152 }
Mike Lockwoodee156622009-08-04 20:37:51 -0400153
154 sync();
Mike Lockwoodd969faa2010-02-24 16:07:23 -0500155
Tao Bao175b7bb2015-03-29 11:22:34 -0700156 char property_val[PROPERTY_VALUE_MAX];
157 int ret = snprintf(property_val, sizeof(property_val), "reboot,%s", reboot_arg);
158 if (ret >= static_cast<int>(sizeof(property_val))) {
Elliott Hughesab52c182015-05-01 17:04:38 -0700159 WriteFdFmt(fd, "reboot string too long: %d\n", ret);
Tao Bao175b7bb2015-03-29 11:22:34 -0700160 return false;
Nick Kralevichca8e66a2013-04-18 12:20:02 -0700161 }
162
163 ret = property_set(ANDROID_RB_PROPERTY, property_val);
Mike Lockwoodee156622009-08-04 20:37:51 -0400164 if (ret < 0) {
Elliott Hughesab52c182015-05-01 17:04:38 -0700165 WriteFdFmt(fd, "reboot failed: %d\n", ret);
Tao Bao175b7bb2015-03-29 11:22:34 -0700166 return false;
Mike Lockwoodee156622009-08-04 20:37:51 -0400167 }
Tao Bao175b7bb2015-03-29 11:22:34 -0700168
169 return true;
170}
171
172void reboot_service(int fd, void* arg)
173{
174 if (reboot_service_impl(fd, static_cast<const char*>(arg))) {
175 // Don't return early. Give the reboot command time to take effect
176 // to avoid messing up scripts which do "adb reboot && adb wait-for-device"
Elliott Hughesa7090b92015-04-17 17:03:59 -0700177 while (true) {
Tao Bao175b7bb2015-03-29 11:22:34 -0700178 pause();
179 }
180 }
181
Mike Lockwoodb6b40072009-09-19 16:52:58 -0400182 free(arg);
Mike Lockwoodee156622009-08-04 20:37:51 -0400183 adb_close(fd);
184}
185
David 'Digit' Turner25258692013-03-21 21:07:42 +0100186void reverse_service(int fd, void* arg)
187{
Dan Albertbac34742015-02-25 17:51:28 -0800188 const char* command = reinterpret_cast<const char*>(arg);
David 'Digit' Turner25258692013-03-21 21:07:42 +0100189
190 if (handle_forward_request(command, kTransportAny, NULL, fd) < 0) {
Elliott Hughese67f1f82015-04-30 17:32:03 -0700191 SendFail(fd, "not a reverse forwarding command");
David 'Digit' Turner25258692013-03-21 21:07:42 +0100192 }
193 free(arg);
194 adb_close(fd);
195}
196
David Pursell4e2fd362015-09-22 10:43:08 -0700197// Shell service string can look like:
198// shell[args]:[command]
199// Currently the only supported args are -T (force raw) and -t (force PTY).
200static int ShellService(const std::string& args, const atransport* transport) {
201 size_t delimiter_index = args.find(':');
202 if (delimiter_index == std::string::npos) {
203 LOG(ERROR) << "No ':' found in shell service arguments: " << args;
204 return -1;
205 }
206 const std::string service_args = args.substr(0, delimiter_index);
207 const std::string command = args.substr(delimiter_index + 1);
208
209 SubprocessType type;
210 if (service_args.empty()) {
211 // Default: use PTY for interactive, raw for non-interactive.
212 type = (command.empty() ? SubprocessType::kPty : SubprocessType::kRaw);
213 } else if (service_args == "-T") {
214 type = SubprocessType::kRaw;
215 } else if (service_args == "-t") {
216 type = SubprocessType::kPty;
217 } else {
218 LOG(ERROR) << "Unsupported shell service arguments: " << args;
219 return -1;
220 }
221
222 SubprocessProtocol protocol =
223 (transport->CanUseFeature(kFeatureShell2) ? SubprocessProtocol::kShell
224 : SubprocessProtocol::kNone);
225
226 return StartSubprocess(command.c_str(), type, protocol);
227}
228
229#endif // !ADB_HOST
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800230
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800231static int create_service_thread(void (*func)(int, void *), void *cookie)
232{
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800233 int s[2];
Dan Albertbac34742015-02-25 17:51:28 -0800234 if (adb_socketpair(s)) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800235 printf("cannot create service socket pair\n");
236 return -1;
237 }
Yabin Cui7a3f8d62015-09-02 17:44:28 -0700238 D("socketpair: (%d,%d)", s[0], s[1]);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800239
Dan Albertbac34742015-02-25 17:51:28 -0800240 stinfo* sti = reinterpret_cast<stinfo*>(malloc(sizeof(stinfo)));
241 if (sti == nullptr) {
242 fatal("cannot allocate stinfo");
243 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800244 sti->func = func;
245 sti->cookie = cookie;
246 sti->fd = s[1];
247
Elliott Hughes9b0f3542015-05-05 13:41:21 -0700248 if (!adb_thread_create(service_bootstrap_func, sti)) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800249 free(sti);
250 adb_close(s[0]);
251 adb_close(s[1]);
252 printf("cannot create service thread\n");
253 return -1;
254 }
255
Yabin Cui7a3f8d62015-09-02 17:44:28 -0700256 D("service thread started, %d:%d",s[0], s[1]);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800257 return s[0];
258}
259
David Pursell0955c662015-08-31 10:42:13 -0700260int service_to_fd(const char* name, const atransport* transport) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800261 int ret = -1;
262
263 if(!strncmp(name, "tcp:", 4)) {
264 int port = atoi(name + 4);
265 name = strchr(name + 4, ':');
266 if(name == 0) {
Spencer Low5200c662015-07-30 23:07:55 -0700267 std::string error;
268 ret = network_loopback_client(port, SOCK_STREAM, &error);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800269 if (ret >= 0)
270 disable_tcp_nagle(ret);
271 } else {
272#if ADB_HOST
Elliott Hughes381cfa92015-07-23 17:12:58 -0700273 std::string error;
274 ret = network_connect(name + 1, port, SOCK_STREAM, 0, &error);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800275#else
276 return -1;
277#endif
278 }
Elliott Hughesadbf4422015-07-29 17:45:24 -0700279#if !defined(_WIN32) /* winsock doesn't implement unix domain sockets */
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800280 } else if(!strncmp(name, "local:", 6)) {
281 ret = socket_local_client(name + 6,
282 ANDROID_SOCKET_NAMESPACE_RESERVED, SOCK_STREAM);
283 } else if(!strncmp(name, "localreserved:", 14)) {
284 ret = socket_local_client(name + 14,
285 ANDROID_SOCKET_NAMESPACE_RESERVED, SOCK_STREAM);
286 } else if(!strncmp(name, "localabstract:", 14)) {
287 ret = socket_local_client(name + 14,
288 ANDROID_SOCKET_NAMESPACE_ABSTRACT, SOCK_STREAM);
289 } else if(!strncmp(name, "localfilesystem:", 16)) {
290 ret = socket_local_client(name + 16,
291 ANDROID_SOCKET_NAMESPACE_FILESYSTEM, SOCK_STREAM);
292#endif
Benoit Goby9470c2f2013-02-20 15:04:53 -0800293#if !ADB_HOST
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800294 } else if(!strncmp("dev:", name, 4)) {
Nick Kralevichfe8d7f42014-07-18 20:57:35 -0700295 ret = unix_open(name + 4, O_RDWR | O_CLOEXEC);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800296 } else if(!strncmp(name, "framebuffer:", 12)) {
297 ret = create_service_thread(framebuffer_service, 0);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800298 } else if (!strncmp(name, "jdwp:", 5)) {
299 ret = create_jdwp_connection_fd(atoi(name+5));
David Pursell4e2fd362015-09-22 10:43:08 -0700300 } else if(!strncmp(name, "shell", 5)) {
301 ret = ShellService(name + 5, transport);
Yabin Cui661327e2015-08-11 13:40:42 -0700302 } else if(!strncmp(name, "exec:", 5)) {
David Pursell0955c662015-08-31 10:42:13 -0700303 ret = StartSubprocess(name + 5, SubprocessType::kRaw,
304 SubprocessProtocol::kNone);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800305 } else if(!strncmp(name, "sync:", 5)) {
306 ret = create_service_thread(file_sync_service, NULL);
307 } else if(!strncmp(name, "remount:", 8)) {
308 ret = create_service_thread(remount_service, NULL);
Mike Lockwoodee156622009-08-04 20:37:51 -0400309 } else if(!strncmp(name, "reboot:", 7)) {
Mike Lockwoodb6b40072009-09-19 16:52:58 -0400310 void* arg = strdup(name + 7);
Jeff Sharkey5d9d4342014-05-26 18:30:43 -0700311 if (arg == NULL) return -1;
Mike Lockwoodb6b40072009-09-19 16:52:58 -0400312 ret = create_service_thread(reboot_service, arg);
The Android Open Source Projecte037fd72009-03-13 13:04:37 -0700313 } else if(!strncmp(name, "root:", 5)) {
314 ret = create_service_thread(restart_root_service, NULL);
Dan Pasanen98858812014-10-06 12:57:20 -0500315 } else if(!strncmp(name, "unroot:", 7)) {
316 ret = create_service_thread(restart_unroot_service, NULL);
Christopher Tated2f54152011-04-21 12:53:28 -0700317 } else if(!strncmp(name, "backup:", 7)) {
David Pursell80f67022015-08-28 15:08:49 -0700318 ret = StartSubprocess(android::base::StringPrintf("/system/bin/bu backup %s",
319 (name + 7)).c_str(),
David Pursell0955c662015-08-31 10:42:13 -0700320 SubprocessType::kRaw, SubprocessProtocol::kNone);
Elliott Hughesaa245492015-08-03 10:38:08 -0700321 } else if(!strncmp(name, "restore:", 8)) {
David Pursell0955c662015-08-31 10:42:13 -0700322 ret = StartSubprocess("/system/bin/bu restore", SubprocessType::kRaw,
323 SubprocessProtocol::kNone);
Mike Lockwoodff196702009-08-24 15:58:40 -0700324 } else if(!strncmp(name, "tcpip:", 6)) {
325 int port;
Spencer Low943ef232015-01-25 17:38:36 -0800326 if (sscanf(name + 6, "%d", &port) != 1) {
Elliott Hughes19d80b82015-07-21 16:13:40 -0700327 return -1;
Mike Lockwoodff196702009-08-24 15:58:40 -0700328 }
Elliott Hughesccecf142014-01-16 10:53:11 -0800329 ret = create_service_thread(restart_tcp_service, (void *) (uintptr_t) port);
Mike Lockwoodff196702009-08-24 15:58:40 -0700330 } else if(!strncmp(name, "usb:", 4)) {
331 ret = create_service_thread(restart_usb_service, NULL);
David 'Digit' Turner25258692013-03-21 21:07:42 +0100332 } else if (!strncmp(name, "reverse:", 8)) {
333 char* cookie = strdup(name + 8);
334 if (cookie == NULL) {
335 ret = -1;
336 } else {
337 ret = create_service_thread(reverse_service, cookie);
338 if (ret < 0) {
339 free(cookie);
340 }
341 }
Paul Lawrenceec900bb2014-10-09 14:22:49 +0000342 } else if(!strncmp(name, "disable-verity:", 15)) {
Paul Lawrence982089d2014-12-03 15:31:57 -0800343 ret = create_service_thread(set_verity_enabled_state_service, (void*)0);
344 } else if(!strncmp(name, "enable-verity:", 15)) {
345 ret = create_service_thread(set_verity_enabled_state_service, (void*)1);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800346#endif
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800347 }
348 if (ret >= 0) {
349 close_on_exec(ret);
350 }
351 return ret;
352}
353
354#if ADB_HOST
355struct state_info {
Elliott Hughes3bd73c12015-05-05 13:10:43 -0700356 TransportType transport_type;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800357 char* serial;
Dan Albertdcd78a12015-05-18 16:43:57 -0700358 ConnectionState state;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800359};
360
361static void wait_for_state(int fd, void* cookie)
362{
Dan Albertbac34742015-02-25 17:51:28 -0800363 state_info* sinfo = reinterpret_cast<state_info*>(cookie);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800364
Yabin Cui7a3f8d62015-09-02 17:44:28 -0700365 D("wait_for_state %d", sinfo->state);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800366
Elliott Hughes7be29c82015-04-16 22:54:44 -0700367 std::string error_msg = "unknown error";
Elliott Hughes3bd73c12015-05-05 13:10:43 -0700368 atransport* t = acquire_one_transport(sinfo->state, sinfo->transport_type, sinfo->serial,
369 &error_msg);
Elliott Hughese2d36772015-06-23 13:00:32 -0700370 if (t != nullptr) {
Elliott Hughese67f1f82015-04-30 17:32:03 -0700371 SendOkay(fd);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800372 } else {
Elliott Hughese67f1f82015-04-30 17:32:03 -0700373 SendFail(fd, error_msg);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800374 }
375
376 if (sinfo->serial)
377 free(sinfo->serial);
378 free(sinfo);
379 adb_close(fd);
Yabin Cui7a3f8d62015-09-02 17:44:28 -0700380 D("wait_for_state is done");
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800381}
Benoit Goby1c45ee92013-03-29 18:22:36 -0700382
Elliott Hughes3d5f60d2015-07-18 12:21:30 -0700383static void connect_device(const std::string& address, std::string* response) {
384 if (address.empty()) {
385 *response = "empty address";
Elliott Hughese67f1f82015-04-30 17:32:03 -0700386 return;
Benoit Goby1c45ee92013-03-29 18:22:36 -0700387 }
388
Elliott Hughes3d5f60d2015-07-18 12:21:30 -0700389 std::string serial;
390 std::string host;
Elliott Hughese67f1f82015-04-30 17:32:03 -0700391 int port = DEFAULT_ADB_LOCAL_TRANSPORT_PORT;
Elliott Hughes3d5f60d2015-07-18 12:21:30 -0700392 if (!parse_host_and_port(address, &serial, &host, &port, response)) {
Benoit Goby1c45ee92013-03-29 18:22:36 -0700393 return;
394 }
395
Elliott Hughes381cfa92015-07-23 17:12:58 -0700396 std::string error;
397 int fd = network_connect(host.c_str(), port, SOCK_STREAM, 10, &error);
Elliott Hughes3d5f60d2015-07-18 12:21:30 -0700398 if (fd == -1) {
399 *response = android::base::StringPrintf("unable to connect to %s: %s",
Elliott Hughes381cfa92015-07-23 17:12:58 -0700400 serial.c_str(), error.c_str());
Elliott Hughes3d5f60d2015-07-18 12:21:30 -0700401 return;
402 }
403
Yabin Cui7a3f8d62015-09-02 17:44:28 -0700404 D("client: connected %s remote on fd %d", serial.c_str(), fd);
Benoit Goby1c45ee92013-03-29 18:22:36 -0700405 close_on_exec(fd);
406 disable_tcp_nagle(fd);
407
Elliott Hughese67f1f82015-04-30 17:32:03 -0700408 int ret = register_socket_transport(fd, serial.c_str(), port, 0);
Benoit Goby1c45ee92013-03-29 18:22:36 -0700409 if (ret < 0) {
410 adb_close(fd);
Elliott Hughese67f1f82015-04-30 17:32:03 -0700411 *response = android::base::StringPrintf("already connected to %s", serial.c_str());
Benoit Goby1c45ee92013-03-29 18:22:36 -0700412 } else {
Elliott Hughese67f1f82015-04-30 17:32:03 -0700413 *response = android::base::StringPrintf("connected to %s", serial.c_str());
Benoit Goby1c45ee92013-03-29 18:22:36 -0700414 }
415}
416
Elliott Hughese67f1f82015-04-30 17:32:03 -0700417void connect_emulator(const std::string& port_spec, std::string* response) {
418 std::vector<std::string> pieces = android::base::Split(port_spec, ",");
419 if (pieces.size() != 2) {
420 *response = android::base::StringPrintf("unable to parse '%s' as <console port>,<adb port>",
421 port_spec.c_str());
Benoit Goby1c45ee92013-03-29 18:22:36 -0700422 return;
423 }
424
Elliott Hughese67f1f82015-04-30 17:32:03 -0700425 int console_port = strtol(pieces[0].c_str(), NULL, 0);
426 int adb_port = strtol(pieces[1].c_str(), NULL, 0);
427 if (console_port <= 0 || adb_port <= 0) {
428 *response = android::base::StringPrintf("Invalid port numbers: %s", port_spec.c_str());
Benoit Goby1c45ee92013-03-29 18:22:36 -0700429 return;
430 }
431
Elliott Hughese67f1f82015-04-30 17:32:03 -0700432 // Check if the emulator is already known.
433 // Note: There's a small but harmless race condition here: An emulator not
434 // present just yet could be registered by another invocation right
435 // after doing this check here. However, local_connect protects
436 // against double-registration too. From here, a better error message
437 // can be produced. In the case of the race condition, the very specific
438 // error message won't be shown, but the data doesn't get corrupted.
Benoit Goby1c45ee92013-03-29 18:22:36 -0700439 atransport* known_emulator = find_emulator_transport_by_adb_port(adb_port);
Elliott Hughese67f1f82015-04-30 17:32:03 -0700440 if (known_emulator != nullptr) {
441 *response = android::base::StringPrintf("Emulator already registered on port %d", adb_port);
Benoit Goby1c45ee92013-03-29 18:22:36 -0700442 return;
443 }
444
Elliott Hughese67f1f82015-04-30 17:32:03 -0700445 // Check if more emulators can be registered. Similar unproblematic
446 // race condition as above.
Benoit Goby1c45ee92013-03-29 18:22:36 -0700447 int candidate_slot = get_available_local_transport_index();
448 if (candidate_slot < 0) {
Elliott Hughese67f1f82015-04-30 17:32:03 -0700449 *response = "Cannot accept more emulators";
Benoit Goby1c45ee92013-03-29 18:22:36 -0700450 return;
451 }
452
Elliott Hughese67f1f82015-04-30 17:32:03 -0700453 // Preconditions met, try to connect to the emulator.
Elliott Hughes381cfa92015-07-23 17:12:58 -0700454 std::string error;
455 if (!local_connect_arbitrary_ports(console_port, adb_port, &error)) {
Elliott Hughese67f1f82015-04-30 17:32:03 -0700456 *response = android::base::StringPrintf("Connected to emulator on ports %d,%d",
457 console_port, adb_port);
Benoit Goby1c45ee92013-03-29 18:22:36 -0700458 } else {
Elliott Hughes381cfa92015-07-23 17:12:58 -0700459 *response = android::base::StringPrintf("Could not connect to emulator on ports %d,%d: %s",
460 console_port, adb_port, error.c_str());
Benoit Goby1c45ee92013-03-29 18:22:36 -0700461 }
462}
463
Alan Jeon4af3c402014-10-16 17:05:25 +0900464static void connect_service(int fd, void* data) {
465 char* host = reinterpret_cast<char*>(data);
Elliott Hughese67f1f82015-04-30 17:32:03 -0700466 std::string response;
Benoit Goby1c45ee92013-03-29 18:22:36 -0700467 if (!strncmp(host, "emu:", 4)) {
Elliott Hughese67f1f82015-04-30 17:32:03 -0700468 connect_emulator(host + 4, &response);
Benoit Goby1c45ee92013-03-29 18:22:36 -0700469 } else {
Elliott Hughese67f1f82015-04-30 17:32:03 -0700470 connect_device(host, &response);
Benoit Goby1c45ee92013-03-29 18:22:36 -0700471 }
Alan Jeon4af3c402014-10-16 17:05:25 +0900472 free(host);
Benoit Goby1c45ee92013-03-29 18:22:36 -0700473
474 // Send response for emulator and device
Elliott Hughese67f1f82015-04-30 17:32:03 -0700475 SendProtocolString(fd, response);
Benoit Goby1c45ee92013-03-29 18:22:36 -0700476 adb_close(fd);
477}
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800478#endif
479
480#if ADB_HOST
Elliott Hughesaa245492015-08-03 10:38:08 -0700481asocket* host_service_to_socket(const char* name, const char* serial) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800482 if (!strcmp(name,"track-devices")) {
483 return create_device_tracker();
484 } else if (!strncmp(name, "wait-for-", strlen("wait-for-"))) {
Dan Albertbac34742015-02-25 17:51:28 -0800485 auto sinfo = reinterpret_cast<state_info*>(malloc(sizeof(state_info)));
Elliott Hughesdc3b4592015-04-21 19:39:52 -0700486 if (sinfo == nullptr) {
487 fprintf(stderr, "couldn't allocate state_info: %s", strerror(errno));
488 return NULL;
489 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800490
491 if (serial)
492 sinfo->serial = strdup(serial);
493 else
494 sinfo->serial = NULL;
495
496 name += strlen("wait-for-");
497
498 if (!strncmp(name, "local", strlen("local"))) {
Elliott Hughes3bd73c12015-05-05 13:10:43 -0700499 sinfo->transport_type = kTransportLocal;
Dan Albertdcd78a12015-05-18 16:43:57 -0700500 sinfo->state = kCsDevice;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800501 } else if (!strncmp(name, "usb", strlen("usb"))) {
Elliott Hughes3bd73c12015-05-05 13:10:43 -0700502 sinfo->transport_type = kTransportUsb;
Dan Albertdcd78a12015-05-18 16:43:57 -0700503 sinfo->state = kCsDevice;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800504 } else if (!strncmp(name, "any", strlen("any"))) {
Elliott Hughes3bd73c12015-05-05 13:10:43 -0700505 sinfo->transport_type = kTransportAny;
Dan Albertdcd78a12015-05-18 16:43:57 -0700506 sinfo->state = kCsDevice;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800507 } else {
Alan Jeon4af3c402014-10-16 17:05:25 +0900508 if (sinfo->serial) {
509 free(sinfo->serial);
510 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800511 free(sinfo);
512 return NULL;
513 }
514
515 int fd = create_service_thread(wait_for_state, sinfo);
516 return create_local_socket(fd);
Benoit Goby1c45ee92013-03-29 18:22:36 -0700517 } else if (!strncmp(name, "connect:", 8)) {
Alan Jeon4af3c402014-10-16 17:05:25 +0900518 char* host = strdup(name + 8);
519 int fd = create_service_thread(connect_service, host);
Benoit Goby1c45ee92013-03-29 18:22:36 -0700520 return create_local_socket(fd);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800521 }
522 return NULL;
523}
524#endif /* ADB_HOST */