blob: 2fbc15a26299c7c4a2533e834a613843d6725c09 [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 SERVICES
Dan Albert33134262015-03-19 15:21:08 -070018
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 Hughes4f713192015-12-04 22:00:26 -080034#include <android-base/file.h>
David Pursell706955f2016-01-21 08:40:59 -080035#include <android-base/parsenetaddress.h>
Elliott Hughes4f713192015-12-04 22:00:26 -080036#include <android-base/stringprintf.h>
37#include <android-base/strings.h>
Elliott Hughes381cfa92015-07-23 17:12:58 -070038#include <cutils/sockets.h>
Elliott Hughes6c34bba2015-04-17 20:11:08 -070039
Dan Albert76649012015-02-24 15:51:19 -080040#if !ADB_HOST
Elliott Hughesffdec182016-09-23 15:40:03 -070041#include <android-base/properties.h>
Mark Salyzyn97787a02016-03-28 15:52:13 -070042#include <cutils/android_reboot.h>
43#include <private/android_logger.h>
Dan Albert76649012015-02-24 15:51:19 -080044#endif
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080045
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080046#include "adb.h"
Dan Albertcc731cc2015-02-24 21:26:58 -080047#include "adb_io.h"
Elliott Hughes3d5f60d2015-07-18 12:21:30 -070048#include "adb_utils.h"
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080049#include "file_sync_service.h"
Elliott Hughesec7a6672015-03-16 21:58:32 +000050#include "remount_service.h"
David Pursell70ef7b42015-09-30 13:35:42 -070051#include "services.h"
David Pursell80f67022015-08-28 15:08:49 -070052#include "shell_service.h"
Josh Gaocfb21412016-08-24 18:38:44 -070053#include "socket_spec.h"
Josh Gao09855472016-02-19 10:42:40 -080054#include "sysdeps.h"
Dan Albert76649012015-02-24 15:51:19 -080055#include "transport.h"
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080056
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080057struct stinfo {
58 void (*func)(int fd, void *cookie);
59 int fd;
60 void *cookie;
61};
62
Josh Gaob5fea142016-02-12 14:31:15 -080063static void service_bootstrap_func(void* x) {
Dan Albertbac34742015-02-25 17:51:28 -080064 stinfo* sti = reinterpret_cast<stinfo*>(x);
Siva Velusamy49ee7cf2015-08-28 16:37:29 -070065 adb_thread_setname(android::base::StringPrintf("service %d", sti->fd));
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080066 sti->func(sti->fd, sti->cookie);
67 free(sti);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080068}
69
Benoit Goby9470c2f2013-02-20 15:04:53 -080070#if !ADB_HOST
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080071
Elliott Hughesab52c182015-05-01 17:04:38 -070072void restart_root_service(int fd, void *cookie) {
The Android Open Source Projecte037fd72009-03-13 13:04:37 -070073 if (getuid() == 0) {
Elliott Hughesab52c182015-05-01 17:04:38 -070074 WriteFdExactly(fd, "adbd is already running as root\n");
The Android Open Source Projecte037fd72009-03-13 13:04:37 -070075 adb_close(fd);
76 } else {
Mark Salyzyn97787a02016-03-28 15:52:13 -070077 if (!__android_log_is_debuggable()) {
Elliott Hughesab52c182015-05-01 17:04:38 -070078 WriteFdExactly(fd, "adbd cannot run as root in production builds\n");
Mike Lockwoodff196702009-08-24 15:58:40 -070079 adb_close(fd);
The Android Open Source Projecte037fd72009-03-13 13:04:37 -070080 return;
81 }
82
Elliott Hughesffdec182016-09-23 15:40:03 -070083 android::base::SetProperty("service.adb.root", "1");
Elliott Hughesab52c182015-05-01 17:04:38 -070084 WriteFdExactly(fd, "restarting adbd as root\n");
The Android Open Source Projecte037fd72009-03-13 13:04:37 -070085 adb_close(fd);
The Android Open Source Projecte037fd72009-03-13 13:04:37 -070086 }
87}
88
Elliott Hughesab52c182015-05-01 17:04:38 -070089void restart_unroot_service(int fd, void *cookie) {
Dan Pasanen98858812014-10-06 12:57:20 -050090 if (getuid() != 0) {
Elliott Hughesab52c182015-05-01 17:04:38 -070091 WriteFdExactly(fd, "adbd not running as root\n");
Dan Pasanen98858812014-10-06 12:57:20 -050092 adb_close(fd);
93 } else {
Elliott Hughesffdec182016-09-23 15:40:03 -070094 android::base::SetProperty("service.adb.root", "0");
Elliott Hughesab52c182015-05-01 17:04:38 -070095 WriteFdExactly(fd, "restarting adbd as non root\n");
Dan Pasanen98858812014-10-06 12:57:20 -050096 adb_close(fd);
97 }
98}
99
Elliott Hughesab52c182015-05-01 17:04:38 -0700100void restart_tcp_service(int fd, void *cookie) {
Elliott Hughesccecf142014-01-16 10:53:11 -0800101 int port = (int) (uintptr_t) cookie;
Mike Lockwoodff196702009-08-24 15:58:40 -0700102 if (port <= 0) {
Elliott Hughesab52c182015-05-01 17:04:38 -0700103 WriteFdFmt(fd, "invalid port %d\n", port);
Mike Lockwoodff196702009-08-24 15:58:40 -0700104 adb_close(fd);
105 return;
106 }
107
Elliott Hughesffdec182016-09-23 15:40:03 -0700108 android::base::SetProperty("service.adb.tcp.port", android::base::StringPrintf("%d", port));
Elliott Hughesab52c182015-05-01 17:04:38 -0700109 WriteFdFmt(fd, "restarting in TCP mode port: %d\n", port);
Mike Lockwoodff196702009-08-24 15:58:40 -0700110 adb_close(fd);
Mike Lockwoodff196702009-08-24 15:58:40 -0700111}
112
Elliott Hughesab52c182015-05-01 17:04:38 -0700113void restart_usb_service(int fd, void *cookie) {
Elliott Hughesffdec182016-09-23 15:40:03 -0700114 android::base::SetProperty("service.adb.tcp.port", "0");
Elliott Hughesab52c182015-05-01 17:04:38 -0700115 WriteFdExactly(fd, "restarting in USB mode\n");
Mike Lockwoodff196702009-08-24 15:58:40 -0700116 adb_close(fd);
Mike Lockwoodff196702009-08-24 15:58:40 -0700117}
118
Tao Bao175b7bb2015-03-29 11:22:34 -0700119static bool reboot_service_impl(int fd, const char* arg) {
120 const char* reboot_arg = arg;
121 bool auto_reboot = false;
122
123 if (strcmp(reboot_arg, "sideload-auto-reboot") == 0) {
124 auto_reboot = true;
125 reboot_arg = "sideload";
126 }
127
Tao Bao175b7bb2015-03-29 11:22:34 -0700128 // It reboots into sideload mode by setting "--sideload" or "--sideload_auto_reboot"
129 // in the command file.
130 if (strcmp(reboot_arg, "sideload") == 0) {
131 if (getuid() != 0) {
Elliott Hughese67f1f82015-04-30 17:32:03 -0700132 WriteFdExactly(fd, "'adb root' is required for 'adb reboot sideload'.\n");
Tao Bao175b7bb2015-03-29 11:22:34 -0700133 return false;
134 }
135
136 const char* const recovery_dir = "/cache/recovery";
137 const char* const command_file = "/cache/recovery/command";
138 // Ensure /cache/recovery exists.
139 if (adb_mkdir(recovery_dir, 0770) == -1 && errno != EEXIST) {
Yabin Cui7a3f8d62015-09-02 17:44:28 -0700140 D("Failed to create directory '%s': %s", recovery_dir, strerror(errno));
Tao Bao175b7bb2015-03-29 11:22:34 -0700141 return false;
142 }
143
144 bool write_status = android::base::WriteStringToFile(
145 auto_reboot ? "--sideload_auto_reboot" : "--sideload", command_file);
146 if (!write_status) {
147 return false;
148 }
149
150 reboot_arg = "recovery";
151 }
Mike Lockwoodee156622009-08-04 20:37:51 -0400152
153 sync();
Mike Lockwoodd969faa2010-02-24 16:07:23 -0500154
Elliott Hughesffdec182016-09-23 15:40:03 -0700155 std::string reboot_string = android::base::StringPrintf("reboot,%s", reboot_arg);
156 if (!android::base::SetProperty(ANDROID_RB_PROPERTY, reboot_string)) {
157 WriteFdFmt(fd, "reboot (%s) failed\n", reboot_string.c_str());
Tao Bao175b7bb2015-03-29 11:22:34 -0700158 return false;
Mike Lockwoodee156622009-08-04 20:37:51 -0400159 }
Tao Bao175b7bb2015-03-29 11:22:34 -0700160
161 return true;
162}
163
164void reboot_service(int fd, void* arg)
165{
166 if (reboot_service_impl(fd, static_cast<const char*>(arg))) {
167 // Don't return early. Give the reboot command time to take effect
168 // to avoid messing up scripts which do "adb reboot && adb wait-for-device"
Elliott Hughesa7090b92015-04-17 17:03:59 -0700169 while (true) {
Tao Bao175b7bb2015-03-29 11:22:34 -0700170 pause();
171 }
172 }
173
Mike Lockwoodb6b40072009-09-19 16:52:58 -0400174 free(arg);
Mike Lockwoodee156622009-08-04 20:37:51 -0400175 adb_close(fd);
176}
177
Yabin Cui1f4ec192016-04-05 13:50:44 -0700178static void reconnect_service(int fd, void* arg) {
179 WriteFdExactly(fd, "done");
180 adb_close(fd);
181 atransport* t = static_cast<atransport*>(arg);
182 kick_transport(t);
183}
184
Yabin Cuifbfa8402015-10-30 18:37:26 -0700185int reverse_service(const char* command) {
186 int s[2];
187 if (adb_socketpair(s)) {
188 PLOG(ERROR) << "cannot create service socket pair.";
189 return -1;
David 'Digit' Turner25258692013-03-21 21:07:42 +0100190 }
Yabin Cuifbfa8402015-10-30 18:37:26 -0700191 VLOG(SERVICES) << "service socketpair: " << s[0] << ", " << s[1];
192 if (handle_forward_request(command, kTransportAny, nullptr, s[1]) < 0) {
193 SendFail(s[1], "not a reverse forwarding command");
194 }
195 adb_close(s[1]);
196 return s[0];
David 'Digit' Turner25258692013-03-21 21:07:42 +0100197}
198
David Pursell4e2fd362015-09-22 10:43:08 -0700199// Shell service string can look like:
David Pursell70ef7b42015-09-30 13:35:42 -0700200// shell[,arg1,arg2,...]:[command]
David Pursell4e2fd362015-09-22 10:43:08 -0700201static int ShellService(const std::string& args, const atransport* transport) {
202 size_t delimiter_index = args.find(':');
203 if (delimiter_index == std::string::npos) {
204 LOG(ERROR) << "No ':' found in shell service arguments: " << args;
205 return -1;
206 }
David Pursell70ef7b42015-09-30 13:35:42 -0700207
David Pursell4e2fd362015-09-22 10:43:08 -0700208 const std::string service_args = args.substr(0, delimiter_index);
209 const std::string command = args.substr(delimiter_index + 1);
210
David Pursell70ef7b42015-09-30 13:35:42 -0700211 // Defaults:
212 // PTY for interactive, raw for non-interactive.
213 // No protocol.
Elliott Hughes18ddf5c2015-11-16 10:55:34 -0800214 // $TERM set to "dumb".
David Pursell70ef7b42015-09-30 13:35:42 -0700215 SubprocessType type(command.empty() ? SubprocessType::kPty
216 : SubprocessType::kRaw);
217 SubprocessProtocol protocol = SubprocessProtocol::kNone;
Elliott Hughes18ddf5c2015-11-16 10:55:34 -0800218 std::string terminal_type = "dumb";
David Pursell4e2fd362015-09-22 10:43:08 -0700219
David Pursell70ef7b42015-09-30 13:35:42 -0700220 for (const std::string& arg : android::base::Split(service_args, ",")) {
221 if (arg == kShellServiceArgRaw) {
222 type = SubprocessType::kRaw;
223 } else if (arg == kShellServiceArgPty) {
224 type = SubprocessType::kPty;
225 } else if (arg == kShellServiceArgShellProtocol) {
226 protocol = SubprocessProtocol::kShell;
Elliott Hughes18ddf5c2015-11-16 10:55:34 -0800227 } else if (android::base::StartsWith(arg, "TERM=")) {
228 terminal_type = arg.substr(5);
229 } else if (!arg.empty()) {
230 // This is not an error to allow for future expansion.
231 LOG(WARNING) << "Ignoring unknown shell service argument: " << arg;
David Pursell70ef7b42015-09-30 13:35:42 -0700232 }
233 }
David Pursell4e2fd362015-09-22 10:43:08 -0700234
Elliott Hughes18ddf5c2015-11-16 10:55:34 -0800235 return StartSubprocess(command.c_str(), terminal_type.c_str(), type, protocol);
David Pursell4e2fd362015-09-22 10:43:08 -0700236}
237
238#endif // !ADB_HOST
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800239
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800240static int create_service_thread(void (*func)(int, void *), void *cookie)
241{
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800242 int s[2];
Dan Albertbac34742015-02-25 17:51:28 -0800243 if (adb_socketpair(s)) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800244 printf("cannot create service socket pair\n");
245 return -1;
246 }
Yabin Cui7a3f8d62015-09-02 17:44:28 -0700247 D("socketpair: (%d,%d)", s[0], s[1]);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800248
Dan Albertbac34742015-02-25 17:51:28 -0800249 stinfo* sti = reinterpret_cast<stinfo*>(malloc(sizeof(stinfo)));
250 if (sti == nullptr) {
251 fatal("cannot allocate stinfo");
252 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800253 sti->func = func;
254 sti->cookie = cookie;
255 sti->fd = s[1];
256
Elliott Hughes9b0f3542015-05-05 13:41:21 -0700257 if (!adb_thread_create(service_bootstrap_func, sti)) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800258 free(sti);
259 adb_close(s[0]);
260 adb_close(s[1]);
261 printf("cannot create service thread\n");
262 return -1;
263 }
264
Yabin Cui7a3f8d62015-09-02 17:44:28 -0700265 D("service thread started, %d:%d",s[0], s[1]);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800266 return s[0];
267}
268
David Pursell0955c662015-08-31 10:42:13 -0700269int service_to_fd(const char* name, const atransport* transport) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800270 int ret = -1;
271
Josh Gaocfb21412016-08-24 18:38:44 -0700272 if (is_socket_spec(name)) {
273 std::string error;
274 ret = socket_spec_connect(name, &error);
275 if (ret < 0) {
276 LOG(ERROR) << "failed to connect to socket '" << name << "': " << error;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800277 }
Benoit Goby9470c2f2013-02-20 15:04:53 -0800278#if !ADB_HOST
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800279 } else if(!strncmp("dev:", name, 4)) {
Nick Kralevichfe8d7f42014-07-18 20:57:35 -0700280 ret = unix_open(name + 4, O_RDWR | O_CLOEXEC);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800281 } else if(!strncmp(name, "framebuffer:", 12)) {
282 ret = create_service_thread(framebuffer_service, 0);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800283 } else if (!strncmp(name, "jdwp:", 5)) {
284 ret = create_jdwp_connection_fd(atoi(name+5));
David Pursell4e2fd362015-09-22 10:43:08 -0700285 } else if(!strncmp(name, "shell", 5)) {
286 ret = ShellService(name + 5, transport);
Yabin Cui661327e2015-08-11 13:40:42 -0700287 } else if(!strncmp(name, "exec:", 5)) {
Elliott Hughes18ddf5c2015-11-16 10:55:34 -0800288 ret = StartSubprocess(name + 5, nullptr, SubprocessType::kRaw, SubprocessProtocol::kNone);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800289 } else if(!strncmp(name, "sync:", 5)) {
290 ret = create_service_thread(file_sync_service, NULL);
291 } else if(!strncmp(name, "remount:", 8)) {
292 ret = create_service_thread(remount_service, NULL);
Mike Lockwoodee156622009-08-04 20:37:51 -0400293 } else if(!strncmp(name, "reboot:", 7)) {
Mike Lockwoodb6b40072009-09-19 16:52:58 -0400294 void* arg = strdup(name + 7);
Jeff Sharkey5d9d4342014-05-26 18:30:43 -0700295 if (arg == NULL) return -1;
Mike Lockwoodb6b40072009-09-19 16:52:58 -0400296 ret = create_service_thread(reboot_service, arg);
The Android Open Source Projecte037fd72009-03-13 13:04:37 -0700297 } else if(!strncmp(name, "root:", 5)) {
298 ret = create_service_thread(restart_root_service, NULL);
Dan Pasanen98858812014-10-06 12:57:20 -0500299 } else if(!strncmp(name, "unroot:", 7)) {
300 ret = create_service_thread(restart_unroot_service, NULL);
Christopher Tated2f54152011-04-21 12:53:28 -0700301 } else if(!strncmp(name, "backup:", 7)) {
David Pursell80f67022015-08-28 15:08:49 -0700302 ret = StartSubprocess(android::base::StringPrintf("/system/bin/bu backup %s",
303 (name + 7)).c_str(),
Elliott Hughes18ddf5c2015-11-16 10:55:34 -0800304 nullptr, SubprocessType::kRaw, SubprocessProtocol::kNone);
Elliott Hughesaa245492015-08-03 10:38:08 -0700305 } else if(!strncmp(name, "restore:", 8)) {
Elliott Hughes18ddf5c2015-11-16 10:55:34 -0800306 ret = StartSubprocess("/system/bin/bu restore", nullptr, SubprocessType::kRaw,
David Pursell0955c662015-08-31 10:42:13 -0700307 SubprocessProtocol::kNone);
Mike Lockwoodff196702009-08-24 15:58:40 -0700308 } else if(!strncmp(name, "tcpip:", 6)) {
309 int port;
Spencer Low943ef232015-01-25 17:38:36 -0800310 if (sscanf(name + 6, "%d", &port) != 1) {
Elliott Hughes19d80b82015-07-21 16:13:40 -0700311 return -1;
Mike Lockwoodff196702009-08-24 15:58:40 -0700312 }
Elliott Hughesccecf142014-01-16 10:53:11 -0800313 ret = create_service_thread(restart_tcp_service, (void *) (uintptr_t) port);
Mike Lockwoodff196702009-08-24 15:58:40 -0700314 } else if(!strncmp(name, "usb:", 4)) {
315 ret = create_service_thread(restart_usb_service, NULL);
David 'Digit' Turner25258692013-03-21 21:07:42 +0100316 } else if (!strncmp(name, "reverse:", 8)) {
Yabin Cuifbfa8402015-10-30 18:37:26 -0700317 ret = reverse_service(name + 8);
Paul Lawrenceec900bb2014-10-09 14:22:49 +0000318 } else if(!strncmp(name, "disable-verity:", 15)) {
Paul Lawrence982089d2014-12-03 15:31:57 -0800319 ret = create_service_thread(set_verity_enabled_state_service, (void*)0);
320 } else if(!strncmp(name, "enable-verity:", 15)) {
321 ret = create_service_thread(set_verity_enabled_state_service, (void*)1);
Yabin Cui1f4ec192016-04-05 13:50:44 -0700322 } else if (!strcmp(name, "reconnect")) {
323 ret = create_service_thread(reconnect_service, const_cast<atransport*>(transport));
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800324#endif
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800325 }
326 if (ret >= 0) {
327 close_on_exec(ret);
328 }
329 return ret;
330}
331
332#if ADB_HOST
333struct state_info {
Elliott Hughes3bd73c12015-05-05 13:10:43 -0700334 TransportType transport_type;
Leo Sartre1fbc9db2015-11-27 18:56:48 +0100335 std::string serial;
Dan Albertdcd78a12015-05-18 16:43:57 -0700336 ConnectionState state;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800337};
338
Leo Sartre1fbc9db2015-11-27 18:56:48 +0100339static void wait_for_state(int fd, void* data) {
340 std::unique_ptr<state_info> sinfo(reinterpret_cast<state_info*>(data));
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800341
Yabin Cui7a3f8d62015-09-02 17:44:28 -0700342 D("wait_for_state %d", sinfo->state);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800343
Elliott Hughes8d28e192015-10-07 14:55:10 -0700344 while (true) {
345 bool is_ambiguous = false;
346 std::string error = "unknown error";
Leo Sartre94e07762016-01-05 12:06:05 +0100347 const char* serial = sinfo->serial.length() ? sinfo->serial.c_str() : NULL;
348 atransport* t = acquire_one_transport(sinfo->transport_type, serial, &is_ambiguous, &error);
Josh Gao86441c32016-04-13 12:18:58 -0700349 if (t != nullptr && (sinfo->state == kCsAny || sinfo->state == t->connection_state)) {
Elliott Hughes8d28e192015-10-07 14:55:10 -0700350 SendOkay(fd);
351 break;
352 } else if (!is_ambiguous) {
Josh Gao09855472016-02-19 10:42:40 -0800353 adb_pollfd pfd = {.fd = fd, .events = POLLIN };
354 int rc = adb_poll(&pfd, 1, 1000);
355 if (rc < 0) {
356 SendFail(fd, error);
357 break;
358 } else if (rc > 0 && (pfd.revents & POLLHUP) != 0) {
359 // The other end of the socket is closed, probably because the other side was
360 // terminated, bail out.
361 break;
362 }
363
Elliott Hughes8d28e192015-10-07 14:55:10 -0700364 // Try again...
365 } else {
366 SendFail(fd, error);
367 break;
368 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800369 }
370
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800371 adb_close(fd);
Yabin Cui7a3f8d62015-09-02 17:44:28 -0700372 D("wait_for_state is done");
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800373}
Benoit Goby1c45ee92013-03-29 18:22:36 -0700374
Elliott Hughes3d5f60d2015-07-18 12:21:30 -0700375static void connect_device(const std::string& address, std::string* response) {
376 if (address.empty()) {
377 *response = "empty address";
Elliott Hughese67f1f82015-04-30 17:32:03 -0700378 return;
Benoit Goby1c45ee92013-03-29 18:22:36 -0700379 }
380
Elliott Hughes3d5f60d2015-07-18 12:21:30 -0700381 std::string serial;
382 std::string host;
Elliott Hughese67f1f82015-04-30 17:32:03 -0700383 int port = DEFAULT_ADB_LOCAL_TRANSPORT_PORT;
David Pursell706955f2016-01-21 08:40:59 -0800384 if (!android::base::ParseNetAddress(address, &host, &port, &serial, response)) {
Benoit Goby1c45ee92013-03-29 18:22:36 -0700385 return;
386 }
387
Elliott Hughes381cfa92015-07-23 17:12:58 -0700388 std::string error;
389 int fd = network_connect(host.c_str(), port, SOCK_STREAM, 10, &error);
Elliott Hughes3d5f60d2015-07-18 12:21:30 -0700390 if (fd == -1) {
391 *response = android::base::StringPrintf("unable to connect to %s: %s",
Elliott Hughes381cfa92015-07-23 17:12:58 -0700392 serial.c_str(), error.c_str());
Elliott Hughes3d5f60d2015-07-18 12:21:30 -0700393 return;
394 }
395
Yabin Cui7a3f8d62015-09-02 17:44:28 -0700396 D("client: connected %s remote on fd %d", serial.c_str(), fd);
Benoit Goby1c45ee92013-03-29 18:22:36 -0700397 close_on_exec(fd);
398 disable_tcp_nagle(fd);
399
David Pursellbfd95032016-02-22 14:27:23 -0800400 // Send a TCP keepalive ping to the device every second so we can detect disconnects.
401 if (!set_tcp_keepalive(fd, 1)) {
402 D("warning: failed to configure TCP keepalives (%s)", strerror(errno));
403 }
404
Elliott Hughese67f1f82015-04-30 17:32:03 -0700405 int ret = register_socket_transport(fd, serial.c_str(), port, 0);
Benoit Goby1c45ee92013-03-29 18:22:36 -0700406 if (ret < 0) {
407 adb_close(fd);
Elliott Hughese67f1f82015-04-30 17:32:03 -0700408 *response = android::base::StringPrintf("already connected to %s", serial.c_str());
Benoit Goby1c45ee92013-03-29 18:22:36 -0700409 } else {
Elliott Hughese67f1f82015-04-30 17:32:03 -0700410 *response = android::base::StringPrintf("connected to %s", serial.c_str());
Benoit Goby1c45ee92013-03-29 18:22:36 -0700411 }
412}
413
Elliott Hughese67f1f82015-04-30 17:32:03 -0700414void connect_emulator(const std::string& port_spec, std::string* response) {
415 std::vector<std::string> pieces = android::base::Split(port_spec, ",");
416 if (pieces.size() != 2) {
417 *response = android::base::StringPrintf("unable to parse '%s' as <console port>,<adb port>",
418 port_spec.c_str());
Benoit Goby1c45ee92013-03-29 18:22:36 -0700419 return;
420 }
421
Elliott Hughese67f1f82015-04-30 17:32:03 -0700422 int console_port = strtol(pieces[0].c_str(), NULL, 0);
423 int adb_port = strtol(pieces[1].c_str(), NULL, 0);
424 if (console_port <= 0 || adb_port <= 0) {
425 *response = android::base::StringPrintf("Invalid port numbers: %s", port_spec.c_str());
Benoit Goby1c45ee92013-03-29 18:22:36 -0700426 return;
427 }
428
Elliott Hughese67f1f82015-04-30 17:32:03 -0700429 // Check if the emulator is already known.
430 // Note: There's a small but harmless race condition here: An emulator not
431 // present just yet could be registered by another invocation right
432 // after doing this check here. However, local_connect protects
433 // against double-registration too. From here, a better error message
434 // can be produced. In the case of the race condition, the very specific
435 // error message won't be shown, but the data doesn't get corrupted.
Benoit Goby1c45ee92013-03-29 18:22:36 -0700436 atransport* known_emulator = find_emulator_transport_by_adb_port(adb_port);
Elliott Hughese67f1f82015-04-30 17:32:03 -0700437 if (known_emulator != nullptr) {
438 *response = android::base::StringPrintf("Emulator already registered on port %d", adb_port);
Benoit Goby1c45ee92013-03-29 18:22:36 -0700439 return;
440 }
441
Elliott Hughese67f1f82015-04-30 17:32:03 -0700442 // Check if more emulators can be registered. Similar unproblematic
443 // race condition as above.
Benoit Goby1c45ee92013-03-29 18:22:36 -0700444 int candidate_slot = get_available_local_transport_index();
445 if (candidate_slot < 0) {
Elliott Hughese67f1f82015-04-30 17:32:03 -0700446 *response = "Cannot accept more emulators";
Benoit Goby1c45ee92013-03-29 18:22:36 -0700447 return;
448 }
449
Elliott Hughese67f1f82015-04-30 17:32:03 -0700450 // Preconditions met, try to connect to the emulator.
Elliott Hughes381cfa92015-07-23 17:12:58 -0700451 std::string error;
452 if (!local_connect_arbitrary_ports(console_port, adb_port, &error)) {
Elliott Hughese67f1f82015-04-30 17:32:03 -0700453 *response = android::base::StringPrintf("Connected to emulator on ports %d,%d",
454 console_port, adb_port);
Benoit Goby1c45ee92013-03-29 18:22:36 -0700455 } else {
Elliott Hughes381cfa92015-07-23 17:12:58 -0700456 *response = android::base::StringPrintf("Could not connect to emulator on ports %d,%d: %s",
457 console_port, adb_port, error.c_str());
Benoit Goby1c45ee92013-03-29 18:22:36 -0700458 }
459}
460
Alan Jeon4af3c402014-10-16 17:05:25 +0900461static void connect_service(int fd, void* data) {
462 char* host = reinterpret_cast<char*>(data);
Elliott Hughese67f1f82015-04-30 17:32:03 -0700463 std::string response;
Benoit Goby1c45ee92013-03-29 18:22:36 -0700464 if (!strncmp(host, "emu:", 4)) {
Elliott Hughese67f1f82015-04-30 17:32:03 -0700465 connect_emulator(host + 4, &response);
Benoit Goby1c45ee92013-03-29 18:22:36 -0700466 } else {
Elliott Hughese67f1f82015-04-30 17:32:03 -0700467 connect_device(host, &response);
Benoit Goby1c45ee92013-03-29 18:22:36 -0700468 }
Alan Jeon4af3c402014-10-16 17:05:25 +0900469 free(host);
Benoit Goby1c45ee92013-03-29 18:22:36 -0700470
471 // Send response for emulator and device
Elliott Hughese67f1f82015-04-30 17:32:03 -0700472 SendProtocolString(fd, response);
Benoit Goby1c45ee92013-03-29 18:22:36 -0700473 adb_close(fd);
474}
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800475#endif
476
477#if ADB_HOST
Elliott Hughesaa245492015-08-03 10:38:08 -0700478asocket* host_service_to_socket(const char* name, const char* serial) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800479 if (!strcmp(name,"track-devices")) {
480 return create_device_tracker();
Leo Sartre1fbc9db2015-11-27 18:56:48 +0100481 } else if (android::base::StartsWith(name, "wait-for-")) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800482 name += strlen("wait-for-");
483
Leo Sartre1fbc9db2015-11-27 18:56:48 +0100484 std::unique_ptr<state_info> sinfo(new state_info);
485 if (sinfo == nullptr) {
486 fprintf(stderr, "couldn't allocate state_info: %s", strerror(errno));
487 return nullptr;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800488 }
489
Leo Sartre1fbc9db2015-11-27 18:56:48 +0100490 if (serial) sinfo->serial = serial;
491
492 if (android::base::StartsWith(name, "local")) {
493 name += strlen("local");
494 sinfo->transport_type = kTransportLocal;
495 } else if (android::base::StartsWith(name, "usb")) {
496 name += strlen("usb");
497 sinfo->transport_type = kTransportUsb;
498 } else if (android::base::StartsWith(name, "any")) {
499 name += strlen("any");
500 sinfo->transport_type = kTransportAny;
501 } else {
502 return nullptr;
503 }
504
505 if (!strcmp(name, "-device")) {
506 sinfo->state = kCsDevice;
507 } else if (!strcmp(name, "-recovery")) {
508 sinfo->state = kCsRecovery;
509 } else if (!strcmp(name, "-sideload")) {
510 sinfo->state = kCsSideload;
511 } else if (!strcmp(name, "-bootloader")) {
512 sinfo->state = kCsBootloader;
Josh Gao86441c32016-04-13 12:18:58 -0700513 } else if (!strcmp(name, "-any")) {
514 sinfo->state = kCsAny;
Leo Sartre1fbc9db2015-11-27 18:56:48 +0100515 } else {
516 return nullptr;
517 }
518
519 int fd = create_service_thread(wait_for_state, sinfo.release());
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800520 return create_local_socket(fd);
Benoit Goby1c45ee92013-03-29 18:22:36 -0700521 } else if (!strncmp(name, "connect:", 8)) {
Alan Jeon4af3c402014-10-16 17:05:25 +0900522 char* host = strdup(name + 8);
523 int fd = create_service_thread(connect_service, host);
Benoit Goby1c45ee92013-03-29 18:22:36 -0700524 return create_local_socket(fd);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800525 }
526 return NULL;
527}
528#endif /* ADB_HOST */