blob: df1b134bffc67cdc5bf59150fd93dfd5131c93d3 [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 SERVICES
Dan Albertdb6fe642015-03-19 15:21:08 -070018
19#include "sysdeps.h"
20
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -080021#include <errno.h>
Dan Albertb302d122015-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 Hughesf55ead92015-12-04 22:00:26 -080034#include <android-base/file.h>
David Pursella17d2722016-01-21 08:40:59 -080035#include <android-base/parsenetaddress.h>
Elliott Hughesf55ead92015-12-04 22:00:26 -080036#include <android-base/stringprintf.h>
37#include <android-base/strings.h>
Elliott Hughes43df1092015-07-23 17:12:58 -070038#include <cutils/sockets.h>
Elliott Hughese4b64792015-04-17 20:11:08 -070039
Dan Albertb302d122015-02-24 15:51:19 -080040#if !ADB_HOST
Elliott Hughes8b249d22016-09-23 15:40:03 -070041#include <android-base/properties.h>
Tao Baoa8c21dc2017-01-05 18:01:01 -080042#include <bootloader_message/bootloader_message.h>
Mark Salyzync75f65f2016-03-28 15:52:13 -070043#include <cutils/android_reboot.h>
44#include <private/android_logger.h>
Dan Albertb302d122015-02-24 15:51:19 -080045#endif
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -080046
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -080047#include "adb.h"
Dan Albert66a91b02015-02-24 21:26:58 -080048#include "adb_io.h"
Elliott Hughes09ccf1f2015-07-18 12:21:30 -070049#include "adb_utils.h"
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -080050#include "file_sync_service.h"
Elliott Hughesdedf7672015-03-16 21:58:32 +000051#include "remount_service.h"
David Pursell22fc5e92015-09-30 13:35:42 -070052#include "services.h"
David Pursell4f344bb2015-08-28 15:08:49 -070053#include "shell_service.h"
Josh Gao4a5a95d2016-08-24 18:38:44 -070054#include "socket_spec.h"
Josh Gaoc1fab362016-02-19 10:42:40 -080055#include "sysdeps.h"
Dan Albertb302d122015-02-24 15:51:19 -080056#include "transport.h"
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -080057
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -080058struct stinfo {
59 void (*func)(int fd, void *cookie);
60 int fd;
61 void *cookie;
62};
63
Josh Gao7d405252016-02-12 14:31:15 -080064static void service_bootstrap_func(void* x) {
Dan Albertf30d73c2015-02-25 17:51:28 -080065 stinfo* sti = reinterpret_cast<stinfo*>(x);
Siva Velusamy2669cf92015-08-28 16:37:29 -070066 adb_thread_setname(android::base::StringPrintf("service %d", sti->fd));
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -080067 sti->func(sti->fd, sti->cookie);
68 free(sti);
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -080069}
70
Benoit Goby12dc3692013-02-20 15:04:53 -080071#if !ADB_HOST
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -080072
Elliott Hughesfb596842015-05-01 17:04:38 -070073void restart_root_service(int fd, void *cookie) {
The Android Open Source Project9c753402009-03-13 13:04:37 -070074 if (getuid() == 0) {
Elliott Hughesfb596842015-05-01 17:04:38 -070075 WriteFdExactly(fd, "adbd is already running as root\n");
The Android Open Source Project9c753402009-03-13 13:04:37 -070076 adb_close(fd);
77 } else {
Mark Salyzync75f65f2016-03-28 15:52:13 -070078 if (!__android_log_is_debuggable()) {
Elliott Hughesfb596842015-05-01 17:04:38 -070079 WriteFdExactly(fd, "adbd cannot run as root in production builds\n");
Mike Lockwood26b88e32009-08-24 15:58:40 -070080 adb_close(fd);
The Android Open Source Project9c753402009-03-13 13:04:37 -070081 return;
82 }
83
Elliott Hughes8b249d22016-09-23 15:40:03 -070084 android::base::SetProperty("service.adb.root", "1");
Elliott Hughesfb596842015-05-01 17:04:38 -070085 WriteFdExactly(fd, "restarting adbd as root\n");
The Android Open Source Project9c753402009-03-13 13:04:37 -070086 adb_close(fd);
The Android Open Source Project9c753402009-03-13 13:04:37 -070087 }
88}
89
Elliott Hughesfb596842015-05-01 17:04:38 -070090void restart_unroot_service(int fd, void *cookie) {
Dan Pasanenfb787d92014-10-06 12:57:20 -050091 if (getuid() != 0) {
Elliott Hughesfb596842015-05-01 17:04:38 -070092 WriteFdExactly(fd, "adbd not running as root\n");
Dan Pasanenfb787d92014-10-06 12:57:20 -050093 adb_close(fd);
94 } else {
Elliott Hughes8b249d22016-09-23 15:40:03 -070095 android::base::SetProperty("service.adb.root", "0");
Elliott Hughesfb596842015-05-01 17:04:38 -070096 WriteFdExactly(fd, "restarting adbd as non root\n");
Dan Pasanenfb787d92014-10-06 12:57:20 -050097 adb_close(fd);
98 }
99}
100
Elliott Hughesfb596842015-05-01 17:04:38 -0700101void restart_tcp_service(int fd, void *cookie) {
Elliott Hughes9c0d9402014-01-16 10:53:11 -0800102 int port = (int) (uintptr_t) cookie;
Mike Lockwood26b88e32009-08-24 15:58:40 -0700103 if (port <= 0) {
Elliott Hughesfb596842015-05-01 17:04:38 -0700104 WriteFdFmt(fd, "invalid port %d\n", port);
Mike Lockwood26b88e32009-08-24 15:58:40 -0700105 adb_close(fd);
106 return;
107 }
108
Elliott Hughes8b249d22016-09-23 15:40:03 -0700109 android::base::SetProperty("service.adb.tcp.port", android::base::StringPrintf("%d", port));
Elliott Hughesfb596842015-05-01 17:04:38 -0700110 WriteFdFmt(fd, "restarting in TCP mode port: %d\n", port);
Mike Lockwood26b88e32009-08-24 15:58:40 -0700111 adb_close(fd);
Mike Lockwood26b88e32009-08-24 15:58:40 -0700112}
113
Elliott Hughesfb596842015-05-01 17:04:38 -0700114void restart_usb_service(int fd, void *cookie) {
Elliott Hughes8b249d22016-09-23 15:40:03 -0700115 android::base::SetProperty("service.adb.tcp.port", "0");
Elliott Hughesfb596842015-05-01 17:04:38 -0700116 WriteFdExactly(fd, "restarting in USB mode\n");
Mike Lockwood26b88e32009-08-24 15:58:40 -0700117 adb_close(fd);
Mike Lockwood26b88e32009-08-24 15:58:40 -0700118}
119
Tao Bao0db67642015-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 Bao0db67642015-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 Hughes88b4c852015-04-30 17:32:03 -0700133 WriteFdExactly(fd, "'adb root' is required for 'adb reboot sideload'.\n");
Tao Bao0db67642015-03-29 11:22:34 -0700134 return false;
135 }
136
Tao Baoa8c21dc2017-01-05 18:01:01 -0800137 const std::vector<std::string> options = {
138 auto_reboot ? "--sideload_auto_reboot" : "--sideload"
139 };
140 std::string err;
141 if (!write_bootloader_message(options, &err)) {
142 D("Failed to set bootloader message: %s", err.c_str());
Tao Bao0db67642015-03-29 11:22:34 -0700143 return false;
144 }
145
146 reboot_arg = "recovery";
147 }
Mike Lockwood12a35ea2009-08-04 20:37:51 -0400148
149 sync();
Mike Lockwoodd49e9eb2010-02-24 16:07:23 -0500150
Elliott Hughes8b249d22016-09-23 15:40:03 -0700151 std::string reboot_string = android::base::StringPrintf("reboot,%s", reboot_arg);
152 if (!android::base::SetProperty(ANDROID_RB_PROPERTY, reboot_string)) {
153 WriteFdFmt(fd, "reboot (%s) failed\n", reboot_string.c_str());
Tao Bao0db67642015-03-29 11:22:34 -0700154 return false;
Mike Lockwood12a35ea2009-08-04 20:37:51 -0400155 }
Tao Bao0db67642015-03-29 11:22:34 -0700156
157 return true;
158}
159
160void reboot_service(int fd, void* arg)
161{
162 if (reboot_service_impl(fd, static_cast<const char*>(arg))) {
163 // Don't return early. Give the reboot command time to take effect
164 // to avoid messing up scripts which do "adb reboot && adb wait-for-device"
Elliott Hughes7cf35752015-04-17 17:03:59 -0700165 while (true) {
Tao Bao0db67642015-03-29 11:22:34 -0700166 pause();
167 }
168 }
169
Mike Lockwood1a855ae2009-09-19 16:52:58 -0400170 free(arg);
Mike Lockwood12a35ea2009-08-04 20:37:51 -0400171 adb_close(fd);
172}
173
Yabin Cuid78ed222016-04-05 13:50:44 -0700174static void reconnect_service(int fd, void* arg) {
175 WriteFdExactly(fd, "done");
176 adb_close(fd);
177 atransport* t = static_cast<atransport*>(arg);
178 kick_transport(t);
179}
180
Yabin Cuidf852632015-10-30 18:37:26 -0700181int reverse_service(const char* command) {
182 int s[2];
183 if (adb_socketpair(s)) {
184 PLOG(ERROR) << "cannot create service socket pair.";
185 return -1;
David 'Digit' Turner963a4492013-03-21 21:07:42 +0100186 }
Yabin Cuidf852632015-10-30 18:37:26 -0700187 VLOG(SERVICES) << "service socketpair: " << s[0] << ", " << s[1];
188 if (handle_forward_request(command, kTransportAny, nullptr, s[1]) < 0) {
189 SendFail(s[1], "not a reverse forwarding command");
190 }
191 adb_close(s[1]);
192 return s[0];
David 'Digit' Turner963a4492013-03-21 21:07:42 +0100193}
194
David Pursella07dbad2015-09-22 10:43:08 -0700195// Shell service string can look like:
David Pursell22fc5e92015-09-30 13:35:42 -0700196// shell[,arg1,arg2,...]:[command]
David Pursella07dbad2015-09-22 10:43:08 -0700197static int ShellService(const std::string& args, const atransport* transport) {
198 size_t delimiter_index = args.find(':');
199 if (delimiter_index == std::string::npos) {
200 LOG(ERROR) << "No ':' found in shell service arguments: " << args;
201 return -1;
202 }
David Pursell22fc5e92015-09-30 13:35:42 -0700203
David Pursella07dbad2015-09-22 10:43:08 -0700204 const std::string service_args = args.substr(0, delimiter_index);
205 const std::string command = args.substr(delimiter_index + 1);
206
David Pursell22fc5e92015-09-30 13:35:42 -0700207 // Defaults:
208 // PTY for interactive, raw for non-interactive.
209 // No protocol.
Elliott Hughesff444562015-11-16 10:55:34 -0800210 // $TERM set to "dumb".
David Pursell22fc5e92015-09-30 13:35:42 -0700211 SubprocessType type(command.empty() ? SubprocessType::kPty
212 : SubprocessType::kRaw);
213 SubprocessProtocol protocol = SubprocessProtocol::kNone;
Elliott Hughesff444562015-11-16 10:55:34 -0800214 std::string terminal_type = "dumb";
David Pursella07dbad2015-09-22 10:43:08 -0700215
David Pursell22fc5e92015-09-30 13:35:42 -0700216 for (const std::string& arg : android::base::Split(service_args, ",")) {
217 if (arg == kShellServiceArgRaw) {
218 type = SubprocessType::kRaw;
219 } else if (arg == kShellServiceArgPty) {
220 type = SubprocessType::kPty;
221 } else if (arg == kShellServiceArgShellProtocol) {
222 protocol = SubprocessProtocol::kShell;
Elliott Hughesff444562015-11-16 10:55:34 -0800223 } else if (android::base::StartsWith(arg, "TERM=")) {
224 terminal_type = arg.substr(5);
225 } else if (!arg.empty()) {
226 // This is not an error to allow for future expansion.
227 LOG(WARNING) << "Ignoring unknown shell service argument: " << arg;
David Pursell22fc5e92015-09-30 13:35:42 -0700228 }
229 }
David Pursella07dbad2015-09-22 10:43:08 -0700230
Elliott Hughesff444562015-11-16 10:55:34 -0800231 return StartSubprocess(command.c_str(), terminal_type.c_str(), type, protocol);
David Pursella07dbad2015-09-22 10:43:08 -0700232}
233
234#endif // !ADB_HOST
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800235
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800236static int create_service_thread(void (*func)(int, void *), void *cookie)
237{
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800238 int s[2];
Dan Albertf30d73c2015-02-25 17:51:28 -0800239 if (adb_socketpair(s)) {
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800240 printf("cannot create service socket pair\n");
241 return -1;
242 }
Yabin Cui815ad882015-09-02 17:44:28 -0700243 D("socketpair: (%d,%d)", s[0], s[1]);
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800244
Dan Albertf30d73c2015-02-25 17:51:28 -0800245 stinfo* sti = reinterpret_cast<stinfo*>(malloc(sizeof(stinfo)));
246 if (sti == nullptr) {
247 fatal("cannot allocate stinfo");
248 }
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800249 sti->func = func;
250 sti->cookie = cookie;
251 sti->fd = s[1];
252
Elliott Hughesf2517142015-05-05 13:41:21 -0700253 if (!adb_thread_create(service_bootstrap_func, sti)) {
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800254 free(sti);
255 adb_close(s[0]);
256 adb_close(s[1]);
257 printf("cannot create service thread\n");
258 return -1;
259 }
260
Yabin Cui815ad882015-09-02 17:44:28 -0700261 D("service thread started, %d:%d",s[0], s[1]);
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800262 return s[0];
263}
264
David Pursell8da19a42015-08-31 10:42:13 -0700265int service_to_fd(const char* name, const atransport* transport) {
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800266 int ret = -1;
267
Josh Gao4a5a95d2016-08-24 18:38:44 -0700268 if (is_socket_spec(name)) {
269 std::string error;
270 ret = socket_spec_connect(name, &error);
271 if (ret < 0) {
272 LOG(ERROR) << "failed to connect to socket '" << name << "': " << error;
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800273 }
Benoit Goby12dc3692013-02-20 15:04:53 -0800274#if !ADB_HOST
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800275 } else if(!strncmp("dev:", name, 4)) {
Nick Kralevich777523e2014-07-18 20:57:35 -0700276 ret = unix_open(name + 4, O_RDWR | O_CLOEXEC);
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800277 } else if(!strncmp(name, "framebuffer:", 12)) {
278 ret = create_service_thread(framebuffer_service, 0);
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800279 } else if (!strncmp(name, "jdwp:", 5)) {
280 ret = create_jdwp_connection_fd(atoi(name+5));
David Pursella07dbad2015-09-22 10:43:08 -0700281 } else if(!strncmp(name, "shell", 5)) {
282 ret = ShellService(name + 5, transport);
Yabin Cui5fe6d0d2015-08-11 13:40:42 -0700283 } else if(!strncmp(name, "exec:", 5)) {
Elliott Hughesff444562015-11-16 10:55:34 -0800284 ret = StartSubprocess(name + 5, nullptr, SubprocessType::kRaw, SubprocessProtocol::kNone);
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800285 } else if(!strncmp(name, "sync:", 5)) {
286 ret = create_service_thread(file_sync_service, NULL);
287 } else if(!strncmp(name, "remount:", 8)) {
288 ret = create_service_thread(remount_service, NULL);
Mike Lockwood12a35ea2009-08-04 20:37:51 -0400289 } else if(!strncmp(name, "reboot:", 7)) {
Mike Lockwood1a855ae2009-09-19 16:52:58 -0400290 void* arg = strdup(name + 7);
Jeff Sharkeyc52ec1a2014-05-26 18:30:43 -0700291 if (arg == NULL) return -1;
Mike Lockwood1a855ae2009-09-19 16:52:58 -0400292 ret = create_service_thread(reboot_service, arg);
The Android Open Source Project9c753402009-03-13 13:04:37 -0700293 } else if(!strncmp(name, "root:", 5)) {
294 ret = create_service_thread(restart_root_service, NULL);
Dan Pasanenfb787d92014-10-06 12:57:20 -0500295 } else if(!strncmp(name, "unroot:", 7)) {
296 ret = create_service_thread(restart_unroot_service, NULL);
Christopher Tate73779122011-04-21 12:53:28 -0700297 } else if(!strncmp(name, "backup:", 7)) {
David Pursell4f344bb2015-08-28 15:08:49 -0700298 ret = StartSubprocess(android::base::StringPrintf("/system/bin/bu backup %s",
299 (name + 7)).c_str(),
Elliott Hughesff444562015-11-16 10:55:34 -0800300 nullptr, SubprocessType::kRaw, SubprocessProtocol::kNone);
Elliott Hughesb628cb12015-08-03 10:38:08 -0700301 } else if(!strncmp(name, "restore:", 8)) {
Elliott Hughesff444562015-11-16 10:55:34 -0800302 ret = StartSubprocess("/system/bin/bu restore", nullptr, SubprocessType::kRaw,
David Pursell8da19a42015-08-31 10:42:13 -0700303 SubprocessProtocol::kNone);
Mike Lockwood26b88e32009-08-24 15:58:40 -0700304 } else if(!strncmp(name, "tcpip:", 6)) {
305 int port;
Spencer Low29a029c2015-01-25 17:38:36 -0800306 if (sscanf(name + 6, "%d", &port) != 1) {
Elliott Hughesd94e8ba2015-07-21 16:13:40 -0700307 return -1;
Mike Lockwood26b88e32009-08-24 15:58:40 -0700308 }
Elliott Hughes9c0d9402014-01-16 10:53:11 -0800309 ret = create_service_thread(restart_tcp_service, (void *) (uintptr_t) port);
Mike Lockwood26b88e32009-08-24 15:58:40 -0700310 } else if(!strncmp(name, "usb:", 4)) {
311 ret = create_service_thread(restart_usb_service, NULL);
David 'Digit' Turner963a4492013-03-21 21:07:42 +0100312 } else if (!strncmp(name, "reverse:", 8)) {
Yabin Cuidf852632015-10-30 18:37:26 -0700313 ret = reverse_service(name + 8);
Paul Lawrence5f356482014-10-09 14:22:49 +0000314 } else if(!strncmp(name, "disable-verity:", 15)) {
Paul Lawrence8ba2b022014-12-03 15:31:57 -0800315 ret = create_service_thread(set_verity_enabled_state_service, (void*)0);
316 } else if(!strncmp(name, "enable-verity:", 15)) {
317 ret = create_service_thread(set_verity_enabled_state_service, (void*)1);
Yabin Cuid78ed222016-04-05 13:50:44 -0700318 } else if (!strcmp(name, "reconnect")) {
319 ret = create_service_thread(reconnect_service, const_cast<atransport*>(transport));
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800320#endif
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800321 }
322 if (ret >= 0) {
323 close_on_exec(ret);
324 }
325 return ret;
326}
327
328#if ADB_HOST
329struct state_info {
Elliott Hughes3aec2ba2015-05-05 13:10:43 -0700330 TransportType transport_type;
Leo Sartre6cd9bc32015-11-27 18:56:48 +0100331 std::string serial;
Dan Albert9a50f4c2015-05-18 16:43:57 -0700332 ConnectionState state;
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800333};
334
Leo Sartre6cd9bc32015-11-27 18:56:48 +0100335static void wait_for_state(int fd, void* data) {
336 std::unique_ptr<state_info> sinfo(reinterpret_cast<state_info*>(data));
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800337
Yabin Cui815ad882015-09-02 17:44:28 -0700338 D("wait_for_state %d", sinfo->state);
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800339
Elliott Hughes67943d12015-10-07 14:55:10 -0700340 while (true) {
341 bool is_ambiguous = false;
342 std::string error = "unknown error";
Leo Sartre66831322016-01-05 12:06:05 +0100343 const char* serial = sinfo->serial.length() ? sinfo->serial.c_str() : NULL;
344 atransport* t = acquire_one_transport(sinfo->transport_type, serial, &is_ambiguous, &error);
Josh Gao071328d2016-04-13 12:18:58 -0700345 if (t != nullptr && (sinfo->state == kCsAny || sinfo->state == t->connection_state)) {
Elliott Hughes67943d12015-10-07 14:55:10 -0700346 SendOkay(fd);
347 break;
348 } else if (!is_ambiguous) {
Josh Gaoc1fab362016-02-19 10:42:40 -0800349 adb_pollfd pfd = {.fd = fd, .events = POLLIN };
350 int rc = adb_poll(&pfd, 1, 1000);
351 if (rc < 0) {
352 SendFail(fd, error);
353 break;
354 } else if (rc > 0 && (pfd.revents & POLLHUP) != 0) {
355 // The other end of the socket is closed, probably because the other side was
356 // terminated, bail out.
357 break;
358 }
359
Elliott Hughes67943d12015-10-07 14:55:10 -0700360 // Try again...
361 } else {
362 SendFail(fd, error);
363 break;
364 }
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800365 }
366
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800367 adb_close(fd);
Yabin Cui815ad882015-09-02 17:44:28 -0700368 D("wait_for_state is done");
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800369}
Benoit Goby3f9f9ce2013-03-29 18:22:36 -0700370
Elliott Hughes09ccf1f2015-07-18 12:21:30 -0700371static void connect_device(const std::string& address, std::string* response) {
372 if (address.empty()) {
373 *response = "empty address";
Elliott Hughes88b4c852015-04-30 17:32:03 -0700374 return;
Benoit Goby3f9f9ce2013-03-29 18:22:36 -0700375 }
376
Elliott Hughes09ccf1f2015-07-18 12:21:30 -0700377 std::string serial;
378 std::string host;
Elliott Hughes88b4c852015-04-30 17:32:03 -0700379 int port = DEFAULT_ADB_LOCAL_TRANSPORT_PORT;
David Pursella17d2722016-01-21 08:40:59 -0800380 if (!android::base::ParseNetAddress(address, &host, &port, &serial, response)) {
Benoit Goby3f9f9ce2013-03-29 18:22:36 -0700381 return;
382 }
383
Elliott Hughes43df1092015-07-23 17:12:58 -0700384 std::string error;
385 int fd = network_connect(host.c_str(), port, SOCK_STREAM, 10, &error);
Elliott Hughes09ccf1f2015-07-18 12:21:30 -0700386 if (fd == -1) {
387 *response = android::base::StringPrintf("unable to connect to %s: %s",
Elliott Hughes43df1092015-07-23 17:12:58 -0700388 serial.c_str(), error.c_str());
Elliott Hughes09ccf1f2015-07-18 12:21:30 -0700389 return;
390 }
391
Yabin Cui815ad882015-09-02 17:44:28 -0700392 D("client: connected %s remote on fd %d", serial.c_str(), fd);
Benoit Goby3f9f9ce2013-03-29 18:22:36 -0700393 close_on_exec(fd);
394 disable_tcp_nagle(fd);
395
David Pursellc25a34e2016-02-22 14:27:23 -0800396 // Send a TCP keepalive ping to the device every second so we can detect disconnects.
397 if (!set_tcp_keepalive(fd, 1)) {
398 D("warning: failed to configure TCP keepalives (%s)", strerror(errno));
399 }
400
Elliott Hughes88b4c852015-04-30 17:32:03 -0700401 int ret = register_socket_transport(fd, serial.c_str(), port, 0);
Benoit Goby3f9f9ce2013-03-29 18:22:36 -0700402 if (ret < 0) {
403 adb_close(fd);
Elliott Hughes88b4c852015-04-30 17:32:03 -0700404 *response = android::base::StringPrintf("already connected to %s", serial.c_str());
Benoit Goby3f9f9ce2013-03-29 18:22:36 -0700405 } else {
Elliott Hughes88b4c852015-04-30 17:32:03 -0700406 *response = android::base::StringPrintf("connected to %s", serial.c_str());
Benoit Goby3f9f9ce2013-03-29 18:22:36 -0700407 }
408}
409
Elliott Hughes88b4c852015-04-30 17:32:03 -0700410void connect_emulator(const std::string& port_spec, std::string* response) {
411 std::vector<std::string> pieces = android::base::Split(port_spec, ",");
412 if (pieces.size() != 2) {
413 *response = android::base::StringPrintf("unable to parse '%s' as <console port>,<adb port>",
414 port_spec.c_str());
Benoit Goby3f9f9ce2013-03-29 18:22:36 -0700415 return;
416 }
417
Elliott Hughes88b4c852015-04-30 17:32:03 -0700418 int console_port = strtol(pieces[0].c_str(), NULL, 0);
419 int adb_port = strtol(pieces[1].c_str(), NULL, 0);
420 if (console_port <= 0 || adb_port <= 0) {
421 *response = android::base::StringPrintf("Invalid port numbers: %s", port_spec.c_str());
Benoit Goby3f9f9ce2013-03-29 18:22:36 -0700422 return;
423 }
424
Elliott Hughes88b4c852015-04-30 17:32:03 -0700425 // Check if the emulator is already known.
426 // Note: There's a small but harmless race condition here: An emulator not
427 // present just yet could be registered by another invocation right
428 // after doing this check here. However, local_connect protects
429 // against double-registration too. From here, a better error message
430 // can be produced. In the case of the race condition, the very specific
431 // error message won't be shown, but the data doesn't get corrupted.
Benoit Goby3f9f9ce2013-03-29 18:22:36 -0700432 atransport* known_emulator = find_emulator_transport_by_adb_port(adb_port);
Elliott Hughes88b4c852015-04-30 17:32:03 -0700433 if (known_emulator != nullptr) {
434 *response = android::base::StringPrintf("Emulator already registered on port %d", adb_port);
Benoit Goby3f9f9ce2013-03-29 18:22:36 -0700435 return;
436 }
437
Elliott Hughes88b4c852015-04-30 17:32:03 -0700438 // Check if more emulators can be registered. Similar unproblematic
439 // race condition as above.
Benoit Goby3f9f9ce2013-03-29 18:22:36 -0700440 int candidate_slot = get_available_local_transport_index();
441 if (candidate_slot < 0) {
Elliott Hughes88b4c852015-04-30 17:32:03 -0700442 *response = "Cannot accept more emulators";
Benoit Goby3f9f9ce2013-03-29 18:22:36 -0700443 return;
444 }
445
Elliott Hughes88b4c852015-04-30 17:32:03 -0700446 // Preconditions met, try to connect to the emulator.
Elliott Hughes43df1092015-07-23 17:12:58 -0700447 std::string error;
448 if (!local_connect_arbitrary_ports(console_port, adb_port, &error)) {
Elliott Hughes88b4c852015-04-30 17:32:03 -0700449 *response = android::base::StringPrintf("Connected to emulator on ports %d,%d",
450 console_port, adb_port);
Benoit Goby3f9f9ce2013-03-29 18:22:36 -0700451 } else {
Elliott Hughes43df1092015-07-23 17:12:58 -0700452 *response = android::base::StringPrintf("Could not connect to emulator on ports %d,%d: %s",
453 console_port, adb_port, error.c_str());
Benoit Goby3f9f9ce2013-03-29 18:22:36 -0700454 }
455}
456
Alan Jeone6959b72014-10-16 17:05:25 +0900457static void connect_service(int fd, void* data) {
458 char* host = reinterpret_cast<char*>(data);
Elliott Hughes88b4c852015-04-30 17:32:03 -0700459 std::string response;
Benoit Goby3f9f9ce2013-03-29 18:22:36 -0700460 if (!strncmp(host, "emu:", 4)) {
Elliott Hughes88b4c852015-04-30 17:32:03 -0700461 connect_emulator(host + 4, &response);
Benoit Goby3f9f9ce2013-03-29 18:22:36 -0700462 } else {
Elliott Hughes88b4c852015-04-30 17:32:03 -0700463 connect_device(host, &response);
Benoit Goby3f9f9ce2013-03-29 18:22:36 -0700464 }
Alan Jeone6959b72014-10-16 17:05:25 +0900465 free(host);
Benoit Goby3f9f9ce2013-03-29 18:22:36 -0700466
467 // Send response for emulator and device
Elliott Hughes88b4c852015-04-30 17:32:03 -0700468 SendProtocolString(fd, response);
Benoit Goby3f9f9ce2013-03-29 18:22:36 -0700469 adb_close(fd);
470}
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800471#endif
472
473#if ADB_HOST
Elliott Hughesb628cb12015-08-03 10:38:08 -0700474asocket* host_service_to_socket(const char* name, const char* serial) {
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800475 if (!strcmp(name,"track-devices")) {
476 return create_device_tracker();
Leo Sartre6cd9bc32015-11-27 18:56:48 +0100477 } else if (android::base::StartsWith(name, "wait-for-")) {
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800478 name += strlen("wait-for-");
479
Leo Sartre6cd9bc32015-11-27 18:56:48 +0100480 std::unique_ptr<state_info> sinfo(new state_info);
481 if (sinfo == nullptr) {
482 fprintf(stderr, "couldn't allocate state_info: %s", strerror(errno));
483 return nullptr;
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800484 }
485
Leo Sartre6cd9bc32015-11-27 18:56:48 +0100486 if (serial) sinfo->serial = serial;
487
488 if (android::base::StartsWith(name, "local")) {
489 name += strlen("local");
490 sinfo->transport_type = kTransportLocal;
491 } else if (android::base::StartsWith(name, "usb")) {
492 name += strlen("usb");
493 sinfo->transport_type = kTransportUsb;
494 } else if (android::base::StartsWith(name, "any")) {
495 name += strlen("any");
496 sinfo->transport_type = kTransportAny;
497 } else {
498 return nullptr;
499 }
500
501 if (!strcmp(name, "-device")) {
502 sinfo->state = kCsDevice;
503 } else if (!strcmp(name, "-recovery")) {
504 sinfo->state = kCsRecovery;
505 } else if (!strcmp(name, "-sideload")) {
506 sinfo->state = kCsSideload;
507 } else if (!strcmp(name, "-bootloader")) {
508 sinfo->state = kCsBootloader;
Josh Gao071328d2016-04-13 12:18:58 -0700509 } else if (!strcmp(name, "-any")) {
510 sinfo->state = kCsAny;
Leo Sartre6cd9bc32015-11-27 18:56:48 +0100511 } else {
512 return nullptr;
513 }
514
515 int fd = create_service_thread(wait_for_state, sinfo.release());
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800516 return create_local_socket(fd);
Benoit Goby3f9f9ce2013-03-29 18:22:36 -0700517 } else if (!strncmp(name, "connect:", 8)) {
Alan Jeone6959b72014-10-16 17:05:25 +0900518 char* host = strdup(name + 8);
519 int fd = create_service_thread(connect_service, host);
Benoit Goby3f9f9ce2013-03-29 18:22:36 -0700520 return create_local_socket(fd);
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800521 }
522 return NULL;
523}
524#endif /* ADB_HOST */