blob: 9e40bd3ac9183411f155cbc37c2dce328f95b186 [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
Josh Gaoe1dacfc2017-04-12 17:00:49 -070034#include <thread>
35
Elliott Hughes4f713192015-12-04 22:00:26 -080036#include <android-base/file.h>
David Pursell706955f2016-01-21 08:40:59 -080037#include <android-base/parsenetaddress.h>
Elliott Hughes4f713192015-12-04 22:00:26 -080038#include <android-base/stringprintf.h>
39#include <android-base/strings.h>
Elliott Hughes381cfa92015-07-23 17:12:58 -070040#include <cutils/sockets.h>
Elliott Hughes6c34bba2015-04-17 20:11:08 -070041
Dan Albert76649012015-02-24 15:51:19 -080042#if !ADB_HOST
Elliott Hughesffdec182016-09-23 15:40:03 -070043#include <android-base/properties.h>
Tao Bao40e0ec92017-01-05 18:01:01 -080044#include <bootloader_message/bootloader_message.h>
Mark Salyzyn97787a02016-03-28 15:52:13 -070045#include <cutils/android_reboot.h>
Steven Morelandd73be1b2017-04-13 23:48:57 -070046#include <log/log_properties.h>
Dan Albert76649012015-02-24 15:51:19 -080047#endif
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080048
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080049#include "adb.h"
Dan Albertcc731cc2015-02-24 21:26:58 -080050#include "adb_io.h"
Elliott Hughes3d5f60d2015-07-18 12:21:30 -070051#include "adb_utils.h"
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080052#include "file_sync_service.h"
Elliott Hughesec7a6672015-03-16 21:58:32 +000053#include "remount_service.h"
David Pursell70ef7b42015-09-30 13:35:42 -070054#include "services.h"
David Pursell80f67022015-08-28 15:08:49 -070055#include "shell_service.h"
Josh Gaocfb21412016-08-24 18:38:44 -070056#include "socket_spec.h"
Josh Gao09855472016-02-19 10:42:40 -080057#include "sysdeps.h"
Dan Albert76649012015-02-24 15:51:19 -080058#include "transport.h"
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080059
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080060struct stinfo {
Josh Gaobcadc772017-09-28 16:29:53 -070061 const char* service_name;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080062 void (*func)(int fd, void *cookie);
63 int fd;
64 void *cookie;
65};
66
Josh Gaob5fea142016-02-12 14:31:15 -080067static void service_bootstrap_func(void* x) {
Dan Albertbac34742015-02-25 17:51:28 -080068 stinfo* sti = reinterpret_cast<stinfo*>(x);
Josh Gaobcadc772017-09-28 16:29:53 -070069 adb_thread_setname(android::base::StringPrintf("%s svc %d", sti->service_name, sti->fd));
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080070 sti->func(sti->fd, sti->cookie);
71 free(sti);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080072}
73
Benoit Goby9470c2f2013-02-20 15:04:53 -080074#if !ADB_HOST
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080075
Elliott Hughesab52c182015-05-01 17:04:38 -070076void restart_root_service(int fd, void *cookie) {
The Android Open Source Projecte037fd72009-03-13 13:04:37 -070077 if (getuid() == 0) {
Elliott Hughesab52c182015-05-01 17:04:38 -070078 WriteFdExactly(fd, "adbd is already running as root\n");
The Android Open Source Projecte037fd72009-03-13 13:04:37 -070079 adb_close(fd);
80 } else {
Mark Salyzyn97787a02016-03-28 15:52:13 -070081 if (!__android_log_is_debuggable()) {
Elliott Hughesab52c182015-05-01 17:04:38 -070082 WriteFdExactly(fd, "adbd cannot run as root in production builds\n");
Mike Lockwoodff196702009-08-24 15:58:40 -070083 adb_close(fd);
The Android Open Source Projecte037fd72009-03-13 13:04:37 -070084 return;
85 }
86
Steve Kondik2d365192012-01-14 17:04:22 -080087 int root_access = android::base::GetIntProperty("persist.sys.root_access", 0);
88 std::string build_type = android::base::GetProperty("ro.build.type", "");
89
90 if (build_type != "eng" && (root_access & 2) != 2) {
91 WriteFdExactly(fd, "root access is disabled by system setting - "
92 "enable in Settings -> System -> Developer options\n");
93 adb_close(fd);
94 return;
95 }
96
Elliott Hughesffdec182016-09-23 15:40:03 -070097 android::base::SetProperty("service.adb.root", "1");
Elliott Hughesab52c182015-05-01 17:04:38 -070098 WriteFdExactly(fd, "restarting adbd as root\n");
The Android Open Source Projecte037fd72009-03-13 13:04:37 -070099 adb_close(fd);
The Android Open Source Projecte037fd72009-03-13 13:04:37 -0700100 }
101}
102
Elliott Hughesab52c182015-05-01 17:04:38 -0700103void restart_unroot_service(int fd, void *cookie) {
Dan Pasanen98858812014-10-06 12:57:20 -0500104 if (getuid() != 0) {
Elliott Hughesab52c182015-05-01 17:04:38 -0700105 WriteFdExactly(fd, "adbd not running as root\n");
Dan Pasanen98858812014-10-06 12:57:20 -0500106 adb_close(fd);
107 } else {
Elliott Hughesffdec182016-09-23 15:40:03 -0700108 android::base::SetProperty("service.adb.root", "0");
Elliott Hughesab52c182015-05-01 17:04:38 -0700109 WriteFdExactly(fd, "restarting adbd as non root\n");
Dan Pasanen98858812014-10-06 12:57:20 -0500110 adb_close(fd);
111 }
112}
113
Elliott Hughesab52c182015-05-01 17:04:38 -0700114void restart_tcp_service(int fd, void *cookie) {
Elliott Hughesccecf142014-01-16 10:53:11 -0800115 int port = (int) (uintptr_t) cookie;
Mike Lockwoodff196702009-08-24 15:58:40 -0700116 if (port <= 0) {
Elliott Hughesab52c182015-05-01 17:04:38 -0700117 WriteFdFmt(fd, "invalid port %d\n", port);
Mike Lockwoodff196702009-08-24 15:58:40 -0700118 adb_close(fd);
119 return;
120 }
121
Elliott Hughesffdec182016-09-23 15:40:03 -0700122 android::base::SetProperty("service.adb.tcp.port", android::base::StringPrintf("%d", port));
Elliott Hughesab52c182015-05-01 17:04:38 -0700123 WriteFdFmt(fd, "restarting in TCP mode port: %d\n", port);
Mike Lockwoodff196702009-08-24 15:58:40 -0700124 adb_close(fd);
Mike Lockwoodff196702009-08-24 15:58:40 -0700125}
126
Elliott Hughesab52c182015-05-01 17:04:38 -0700127void restart_usb_service(int fd, void *cookie) {
Elliott Hughesffdec182016-09-23 15:40:03 -0700128 android::base::SetProperty("service.adb.tcp.port", "0");
Elliott Hughesab52c182015-05-01 17:04:38 -0700129 WriteFdExactly(fd, "restarting in USB mode\n");
Mike Lockwoodff196702009-08-24 15:58:40 -0700130 adb_close(fd);
Mike Lockwoodff196702009-08-24 15:58:40 -0700131}
132
Tao Bao175b7bb2015-03-29 11:22:34 -0700133static bool reboot_service_impl(int fd, const char* arg) {
134 const char* reboot_arg = arg;
135 bool auto_reboot = false;
136
137 if (strcmp(reboot_arg, "sideload-auto-reboot") == 0) {
138 auto_reboot = true;
139 reboot_arg = "sideload";
140 }
141
Tao Bao175b7bb2015-03-29 11:22:34 -0700142 // It reboots into sideload mode by setting "--sideload" or "--sideload_auto_reboot"
143 // in the command file.
144 if (strcmp(reboot_arg, "sideload") == 0) {
145 if (getuid() != 0) {
Elliott Hughese67f1f82015-04-30 17:32:03 -0700146 WriteFdExactly(fd, "'adb root' is required for 'adb reboot sideload'.\n");
Tao Bao175b7bb2015-03-29 11:22:34 -0700147 return false;
148 }
149
Tao Bao40e0ec92017-01-05 18:01:01 -0800150 const std::vector<std::string> options = {
151 auto_reboot ? "--sideload_auto_reboot" : "--sideload"
152 };
153 std::string err;
154 if (!write_bootloader_message(options, &err)) {
155 D("Failed to set bootloader message: %s", err.c_str());
Tao Bao175b7bb2015-03-29 11:22:34 -0700156 return false;
157 }
158
159 reboot_arg = "recovery";
160 }
Mike Lockwoodee156622009-08-04 20:37:51 -0400161
162 sync();
Mike Lockwoodd969faa2010-02-24 16:07:23 -0500163
Mark Salyzyn277eca12017-09-11 15:22:57 -0700164 if (!reboot_arg || !reboot_arg[0]) reboot_arg = "adb";
Elliott Hughesffdec182016-09-23 15:40:03 -0700165 std::string reboot_string = android::base::StringPrintf("reboot,%s", reboot_arg);
166 if (!android::base::SetProperty(ANDROID_RB_PROPERTY, reboot_string)) {
167 WriteFdFmt(fd, "reboot (%s) failed\n", reboot_string.c_str());
Tao Bao175b7bb2015-03-29 11:22:34 -0700168 return false;
Mike Lockwoodee156622009-08-04 20:37:51 -0400169 }
Tao Bao175b7bb2015-03-29 11:22:34 -0700170
171 return true;
172}
173
Josh Gaobcadc772017-09-28 16:29:53 -0700174void reboot_service(int fd, void* arg) {
Tao Bao175b7bb2015-03-29 11:22:34 -0700175 if (reboot_service_impl(fd, static_cast<const char*>(arg))) {
176 // Don't return early. Give the reboot command time to take effect
177 // to avoid messing up scripts which do "adb reboot && adb wait-for-device"
Elliott Hughesa7090b92015-04-17 17:03:59 -0700178 while (true) {
Tao Bao175b7bb2015-03-29 11:22:34 -0700179 pause();
180 }
181 }
182
Mike Lockwoodb6b40072009-09-19 16:52:58 -0400183 free(arg);
Mike Lockwoodee156622009-08-04 20:37:51 -0400184 adb_close(fd);
185}
186
Yabin Cui1f4ec192016-04-05 13:50:44 -0700187static void reconnect_service(int fd, void* arg) {
188 WriteFdExactly(fd, "done");
189 adb_close(fd);
190 atransport* t = static_cast<atransport*>(arg);
191 kick_transport(t);
192}
193
Josh Gaoa98aab22018-04-13 12:17:03 -0700194int reverse_service(const char* command, atransport* transport) {
Yabin Cuifbfa8402015-10-30 18:37:26 -0700195 int s[2];
196 if (adb_socketpair(s)) {
197 PLOG(ERROR) << "cannot create service socket pair.";
198 return -1;
David 'Digit' Turner25258692013-03-21 21:07:42 +0100199 }
Yabin Cuifbfa8402015-10-30 18:37:26 -0700200 VLOG(SERVICES) << "service socketpair: " << s[0] << ", " << s[1];
Josh Gaoa98aab22018-04-13 12:17:03 -0700201 if (handle_forward_request(command, transport, s[1]) < 0) {
Yabin Cuifbfa8402015-10-30 18:37:26 -0700202 SendFail(s[1], "not a reverse forwarding command");
203 }
204 adb_close(s[1]);
205 return s[0];
David 'Digit' Turner25258692013-03-21 21:07:42 +0100206}
207
David Pursell4e2fd362015-09-22 10:43:08 -0700208// Shell service string can look like:
David Pursell70ef7b42015-09-30 13:35:42 -0700209// shell[,arg1,arg2,...]:[command]
David Pursell4e2fd362015-09-22 10:43:08 -0700210static int ShellService(const std::string& args, const atransport* transport) {
211 size_t delimiter_index = args.find(':');
212 if (delimiter_index == std::string::npos) {
213 LOG(ERROR) << "No ':' found in shell service arguments: " << args;
214 return -1;
215 }
David Pursell70ef7b42015-09-30 13:35:42 -0700216
David Pursell4e2fd362015-09-22 10:43:08 -0700217 const std::string service_args = args.substr(0, delimiter_index);
218 const std::string command = args.substr(delimiter_index + 1);
219
David Pursell70ef7b42015-09-30 13:35:42 -0700220 // Defaults:
221 // PTY for interactive, raw for non-interactive.
222 // No protocol.
Elliott Hughes18ddf5c2015-11-16 10:55:34 -0800223 // $TERM set to "dumb".
David Pursell70ef7b42015-09-30 13:35:42 -0700224 SubprocessType type(command.empty() ? SubprocessType::kPty
225 : SubprocessType::kRaw);
226 SubprocessProtocol protocol = SubprocessProtocol::kNone;
Elliott Hughes18ddf5c2015-11-16 10:55:34 -0800227 std::string terminal_type = "dumb";
David Pursell4e2fd362015-09-22 10:43:08 -0700228
David Pursell70ef7b42015-09-30 13:35:42 -0700229 for (const std::string& arg : android::base::Split(service_args, ",")) {
230 if (arg == kShellServiceArgRaw) {
231 type = SubprocessType::kRaw;
232 } else if (arg == kShellServiceArgPty) {
233 type = SubprocessType::kPty;
234 } else if (arg == kShellServiceArgShellProtocol) {
235 protocol = SubprocessProtocol::kShell;
Elliott Hughes18ddf5c2015-11-16 10:55:34 -0800236 } else if (android::base::StartsWith(arg, "TERM=")) {
237 terminal_type = arg.substr(5);
238 } else if (!arg.empty()) {
239 // This is not an error to allow for future expansion.
240 LOG(WARNING) << "Ignoring unknown shell service argument: " << arg;
David Pursell70ef7b42015-09-30 13:35:42 -0700241 }
242 }
David Pursell4e2fd362015-09-22 10:43:08 -0700243
Elliott Hughes18ddf5c2015-11-16 10:55:34 -0800244 return StartSubprocess(command.c_str(), terminal_type.c_str(), type, protocol);
David Pursell4e2fd362015-09-22 10:43:08 -0700245}
246
247#endif // !ADB_HOST
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800248
Josh Gaobcadc772017-09-28 16:29:53 -0700249static int create_service_thread(const char* service_name, void (*func)(int, void*), void* cookie) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800250 int s[2];
Dan Albertbac34742015-02-25 17:51:28 -0800251 if (adb_socketpair(s)) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800252 printf("cannot create service socket pair\n");
253 return -1;
254 }
Yabin Cui7a3f8d62015-09-02 17:44:28 -0700255 D("socketpair: (%d,%d)", s[0], s[1]);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800256
Jerry Zhang2f8c60b2017-02-10 17:45:27 -0800257#if !ADB_HOST
258 if (func == &file_sync_service) {
259 // Set file sync service socket to maximum size
260 int max_buf = LINUX_MAX_SOCKET_SIZE;
261 adb_setsockopt(s[0], SOL_SOCKET, SO_SNDBUF, &max_buf, sizeof(max_buf));
262 adb_setsockopt(s[1], SOL_SOCKET, SO_SNDBUF, &max_buf, sizeof(max_buf));
263 }
264#endif // !ADB_HOST
265
Dan Albertbac34742015-02-25 17:51:28 -0800266 stinfo* sti = reinterpret_cast<stinfo*>(malloc(sizeof(stinfo)));
267 if (sti == nullptr) {
268 fatal("cannot allocate stinfo");
269 }
Josh Gaobcadc772017-09-28 16:29:53 -0700270 sti->service_name = service_name;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800271 sti->func = func;
272 sti->cookie = cookie;
273 sti->fd = s[1];
274
Josh Gaoe1dacfc2017-04-12 17:00:49 -0700275 std::thread(service_bootstrap_func, sti).detach();
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800276
Yabin Cui7a3f8d62015-09-02 17:44:28 -0700277 D("service thread started, %d:%d",s[0], s[1]);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800278 return s[0];
279}
280
Josh Gaoa98aab22018-04-13 12:17:03 -0700281int service_to_fd(const char* name, atransport* transport) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800282 int ret = -1;
283
Josh Gaocfb21412016-08-24 18:38:44 -0700284 if (is_socket_spec(name)) {
285 std::string error;
286 ret = socket_spec_connect(name, &error);
287 if (ret < 0) {
288 LOG(ERROR) << "failed to connect to socket '" << name << "': " << error;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800289 }
Benoit Goby9470c2f2013-02-20 15:04:53 -0800290#if !ADB_HOST
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800291 } else if(!strncmp("dev:", name, 4)) {
Nick Kralevichfe8d7f42014-07-18 20:57:35 -0700292 ret = unix_open(name + 4, O_RDWR | O_CLOEXEC);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800293 } else if(!strncmp(name, "framebuffer:", 12)) {
Josh Gaobcadc772017-09-28 16:29:53 -0700294 ret = create_service_thread("fb", framebuffer_service, nullptr);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800295 } else if (!strncmp(name, "jdwp:", 5)) {
296 ret = create_jdwp_connection_fd(atoi(name+5));
David Pursell4e2fd362015-09-22 10:43:08 -0700297 } else if(!strncmp(name, "shell", 5)) {
298 ret = ShellService(name + 5, transport);
Yabin Cui661327e2015-08-11 13:40:42 -0700299 } else if(!strncmp(name, "exec:", 5)) {
Elliott Hughes18ddf5c2015-11-16 10:55:34 -0800300 ret = StartSubprocess(name + 5, nullptr, SubprocessType::kRaw, SubprocessProtocol::kNone);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800301 } else if(!strncmp(name, "sync:", 5)) {
Josh Gaobcadc772017-09-28 16:29:53 -0700302 ret = create_service_thread("sync", file_sync_service, nullptr);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800303 } else if(!strncmp(name, "remount:", 8)) {
Josh Gaobcadc772017-09-28 16:29:53 -0700304 ret = create_service_thread("remount", remount_service, nullptr);
Mike Lockwoodee156622009-08-04 20:37:51 -0400305 } else if(!strncmp(name, "reboot:", 7)) {
Mike Lockwoodb6b40072009-09-19 16:52:58 -0400306 void* arg = strdup(name + 7);
Jeff Sharkey5d9d4342014-05-26 18:30:43 -0700307 if (arg == NULL) return -1;
Josh Gaobcadc772017-09-28 16:29:53 -0700308 ret = create_service_thread("reboot", reboot_service, arg);
George Burgess IVcb2449f2018-02-17 21:43:55 -0800309 if (ret < 0) free(arg);
The Android Open Source Projecte037fd72009-03-13 13:04:37 -0700310 } else if(!strncmp(name, "root:", 5)) {
Josh Gaobcadc772017-09-28 16:29:53 -0700311 ret = create_service_thread("root", restart_root_service, nullptr);
Dan Pasanen98858812014-10-06 12:57:20 -0500312 } else if(!strncmp(name, "unroot:", 7)) {
Josh Gaobcadc772017-09-28 16:29:53 -0700313 ret = create_service_thread("unroot", restart_unroot_service, nullptr);
Christopher Tated2f54152011-04-21 12:53:28 -0700314 } else if(!strncmp(name, "backup:", 7)) {
David Pursell80f67022015-08-28 15:08:49 -0700315 ret = StartSubprocess(android::base::StringPrintf("/system/bin/bu backup %s",
316 (name + 7)).c_str(),
Elliott Hughes18ddf5c2015-11-16 10:55:34 -0800317 nullptr, SubprocessType::kRaw, SubprocessProtocol::kNone);
Elliott Hughesaa245492015-08-03 10:38:08 -0700318 } else if(!strncmp(name, "restore:", 8)) {
Elliott Hughes18ddf5c2015-11-16 10:55:34 -0800319 ret = StartSubprocess("/system/bin/bu restore", nullptr, SubprocessType::kRaw,
David Pursell0955c662015-08-31 10:42:13 -0700320 SubprocessProtocol::kNone);
Mike Lockwoodff196702009-08-24 15:58:40 -0700321 } else if(!strncmp(name, "tcpip:", 6)) {
322 int port;
Spencer Low943ef232015-01-25 17:38:36 -0800323 if (sscanf(name + 6, "%d", &port) != 1) {
Elliott Hughes19d80b82015-07-21 16:13:40 -0700324 return -1;
Mike Lockwoodff196702009-08-24 15:58:40 -0700325 }
Josh Gaobcadc772017-09-28 16:29:53 -0700326 ret = create_service_thread("tcp", restart_tcp_service, reinterpret_cast<void*>(port));
Mike Lockwoodff196702009-08-24 15:58:40 -0700327 } else if(!strncmp(name, "usb:", 4)) {
Josh Gaobcadc772017-09-28 16:29:53 -0700328 ret = create_service_thread("usb", restart_usb_service, nullptr);
David 'Digit' Turner25258692013-03-21 21:07:42 +0100329 } else if (!strncmp(name, "reverse:", 8)) {
Josh Gaoa98aab22018-04-13 12:17:03 -0700330 ret = reverse_service(name + 8, transport);
Paul Lawrenceec900bb2014-10-09 14:22:49 +0000331 } else if(!strncmp(name, "disable-verity:", 15)) {
Josh Gaobcadc772017-09-28 16:29:53 -0700332 ret = create_service_thread("verity-on", set_verity_enabled_state_service,
333 reinterpret_cast<void*>(0));
Paul Lawrence982089d2014-12-03 15:31:57 -0800334 } else if(!strncmp(name, "enable-verity:", 15)) {
Josh Gaobcadc772017-09-28 16:29:53 -0700335 ret = create_service_thread("verity-off", set_verity_enabled_state_service,
336 reinterpret_cast<void*>(1));
Yabin Cui1f4ec192016-04-05 13:50:44 -0700337 } else if (!strcmp(name, "reconnect")) {
Josh Gaoa98aab22018-04-13 12:17:03 -0700338 ret = create_service_thread("reconnect", reconnect_service, transport);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800339#endif
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800340 }
341 if (ret >= 0) {
342 close_on_exec(ret);
343 }
344 return ret;
345}
346
347#if ADB_HOST
348struct state_info {
Elliott Hughes3bd73c12015-05-05 13:10:43 -0700349 TransportType transport_type;
Leo Sartre1fbc9db2015-11-27 18:56:48 +0100350 std::string serial;
Josh Gaob122b172017-08-16 16:57:01 -0700351 TransportId transport_id;
Dan Albertdcd78a12015-05-18 16:43:57 -0700352 ConnectionState state;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800353};
354
Leo Sartre1fbc9db2015-11-27 18:56:48 +0100355static void wait_for_state(int fd, void* data) {
356 std::unique_ptr<state_info> sinfo(reinterpret_cast<state_info*>(data));
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800357
Yabin Cui7a3f8d62015-09-02 17:44:28 -0700358 D("wait_for_state %d", sinfo->state);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800359
Elliott Hughes8d28e192015-10-07 14:55:10 -0700360 while (true) {
361 bool is_ambiguous = false;
362 std::string error = "unknown error";
Leo Sartre94e07762016-01-05 12:06:05 +0100363 const char* serial = sinfo->serial.length() ? sinfo->serial.c_str() : NULL;
Josh Gaob122b172017-08-16 16:57:01 -0700364 atransport* t = acquire_one_transport(sinfo->transport_type, serial, sinfo->transport_id,
365 &is_ambiguous, &error);
Yabin Cuib5e11412017-03-10 16:01:01 -0800366 if (t != nullptr && (sinfo->state == kCsAny || sinfo->state == t->GetConnectionState())) {
Elliott Hughes8d28e192015-10-07 14:55:10 -0700367 SendOkay(fd);
368 break;
369 } else if (!is_ambiguous) {
Josh Gao09855472016-02-19 10:42:40 -0800370 adb_pollfd pfd = {.fd = fd, .events = POLLIN };
371 int rc = adb_poll(&pfd, 1, 1000);
372 if (rc < 0) {
373 SendFail(fd, error);
374 break;
375 } else if (rc > 0 && (pfd.revents & POLLHUP) != 0) {
376 // The other end of the socket is closed, probably because the other side was
377 // terminated, bail out.
378 break;
379 }
380
Elliott Hughes8d28e192015-10-07 14:55:10 -0700381 // Try again...
382 } else {
383 SendFail(fd, error);
384 break;
385 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800386 }
387
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800388 adb_close(fd);
Yabin Cui7a3f8d62015-09-02 17:44:28 -0700389 D("wait_for_state is done");
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800390}
Benoit Goby1c45ee92013-03-29 18:22:36 -0700391
Elliott Hughese67f1f82015-04-30 17:32:03 -0700392void connect_emulator(const std::string& port_spec, std::string* response) {
393 std::vector<std::string> pieces = android::base::Split(port_spec, ",");
394 if (pieces.size() != 2) {
395 *response = android::base::StringPrintf("unable to parse '%s' as <console port>,<adb port>",
396 port_spec.c_str());
Benoit Goby1c45ee92013-03-29 18:22:36 -0700397 return;
398 }
399
Elliott Hughese67f1f82015-04-30 17:32:03 -0700400 int console_port = strtol(pieces[0].c_str(), NULL, 0);
401 int adb_port = strtol(pieces[1].c_str(), NULL, 0);
402 if (console_port <= 0 || adb_port <= 0) {
403 *response = android::base::StringPrintf("Invalid port numbers: %s", port_spec.c_str());
Benoit Goby1c45ee92013-03-29 18:22:36 -0700404 return;
405 }
406
Elliott Hughese67f1f82015-04-30 17:32:03 -0700407 // Check if the emulator is already known.
408 // Note: There's a small but harmless race condition here: An emulator not
409 // present just yet could be registered by another invocation right
410 // after doing this check here. However, local_connect protects
411 // against double-registration too. From here, a better error message
412 // can be produced. In the case of the race condition, the very specific
413 // error message won't be shown, but the data doesn't get corrupted.
Benoit Goby1c45ee92013-03-29 18:22:36 -0700414 atransport* known_emulator = find_emulator_transport_by_adb_port(adb_port);
Elliott Hughese67f1f82015-04-30 17:32:03 -0700415 if (known_emulator != nullptr) {
416 *response = android::base::StringPrintf("Emulator already registered on port %d", adb_port);
Benoit Goby1c45ee92013-03-29 18:22:36 -0700417 return;
418 }
419
Elliott Hughese67f1f82015-04-30 17:32:03 -0700420 // Preconditions met, try to connect to the emulator.
Elliott Hughes381cfa92015-07-23 17:12:58 -0700421 std::string error;
422 if (!local_connect_arbitrary_ports(console_port, adb_port, &error)) {
Elliott Hughese67f1f82015-04-30 17:32:03 -0700423 *response = android::base::StringPrintf("Connected to emulator on ports %d,%d",
424 console_port, adb_port);
Benoit Goby1c45ee92013-03-29 18:22:36 -0700425 } else {
Elliott Hughes381cfa92015-07-23 17:12:58 -0700426 *response = android::base::StringPrintf("Could not connect to emulator on ports %d,%d: %s",
427 console_port, adb_port, error.c_str());
Benoit Goby1c45ee92013-03-29 18:22:36 -0700428 }
429}
430
Alan Jeon4af3c402014-10-16 17:05:25 +0900431static void connect_service(int fd, void* data) {
432 char* host = reinterpret_cast<char*>(data);
Elliott Hughese67f1f82015-04-30 17:32:03 -0700433 std::string response;
Benoit Goby1c45ee92013-03-29 18:22:36 -0700434 if (!strncmp(host, "emu:", 4)) {
Elliott Hughese67f1f82015-04-30 17:32:03 -0700435 connect_emulator(host + 4, &response);
Benoit Goby1c45ee92013-03-29 18:22:36 -0700436 } else {
Elliott Hughese67f1f82015-04-30 17:32:03 -0700437 connect_device(host, &response);
Benoit Goby1c45ee92013-03-29 18:22:36 -0700438 }
Alan Jeon4af3c402014-10-16 17:05:25 +0900439 free(host);
Benoit Goby1c45ee92013-03-29 18:22:36 -0700440
441 // Send response for emulator and device
Elliott Hughese67f1f82015-04-30 17:32:03 -0700442 SendProtocolString(fd, response);
Benoit Goby1c45ee92013-03-29 18:22:36 -0700443 adb_close(fd);
444}
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800445#endif
446
447#if ADB_HOST
Josh Gaob122b172017-08-16 16:57:01 -0700448asocket* host_service_to_socket(const char* name, const char* serial, TransportId transport_id) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800449 if (!strcmp(name,"track-devices")) {
Josh Gaob0c18022017-08-14 18:57:54 -0700450 return create_device_tracker(false);
451 } else if (!strcmp(name, "track-devices-l")) {
452 return create_device_tracker(true);
Leo Sartre1fbc9db2015-11-27 18:56:48 +0100453 } else if (android::base::StartsWith(name, "wait-for-")) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800454 name += strlen("wait-for-");
455
Leo Sartre1fbc9db2015-11-27 18:56:48 +0100456 std::unique_ptr<state_info> sinfo(new state_info);
457 if (sinfo == nullptr) {
458 fprintf(stderr, "couldn't allocate state_info: %s", strerror(errno));
459 return nullptr;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800460 }
461
Leo Sartre1fbc9db2015-11-27 18:56:48 +0100462 if (serial) sinfo->serial = serial;
Josh Gaob122b172017-08-16 16:57:01 -0700463 sinfo->transport_id = transport_id;
Leo Sartre1fbc9db2015-11-27 18:56:48 +0100464
465 if (android::base::StartsWith(name, "local")) {
466 name += strlen("local");
467 sinfo->transport_type = kTransportLocal;
468 } else if (android::base::StartsWith(name, "usb")) {
469 name += strlen("usb");
470 sinfo->transport_type = kTransportUsb;
471 } else if (android::base::StartsWith(name, "any")) {
472 name += strlen("any");
473 sinfo->transport_type = kTransportAny;
474 } else {
475 return nullptr;
476 }
477
478 if (!strcmp(name, "-device")) {
479 sinfo->state = kCsDevice;
480 } else if (!strcmp(name, "-recovery")) {
481 sinfo->state = kCsRecovery;
482 } else if (!strcmp(name, "-sideload")) {
483 sinfo->state = kCsSideload;
484 } else if (!strcmp(name, "-bootloader")) {
485 sinfo->state = kCsBootloader;
Josh Gao86441c32016-04-13 12:18:58 -0700486 } else if (!strcmp(name, "-any")) {
487 sinfo->state = kCsAny;
Leo Sartre1fbc9db2015-11-27 18:56:48 +0100488 } else {
489 return nullptr;
490 }
491
Josh Gaobcadc772017-09-28 16:29:53 -0700492 int fd = create_service_thread("wait", wait_for_state, sinfo.get());
Ting-Yuan Huangf26cf6d2017-08-15 15:07:21 -0700493 if (fd != -1) {
494 sinfo.release();
495 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800496 return create_local_socket(fd);
Benoit Goby1c45ee92013-03-29 18:22:36 -0700497 } else if (!strncmp(name, "connect:", 8)) {
Alan Jeon4af3c402014-10-16 17:05:25 +0900498 char* host = strdup(name + 8);
Josh Gaobcadc772017-09-28 16:29:53 -0700499 int fd = create_service_thread("connect", connect_service, host);
Ting-Yuan Huangf26cf6d2017-08-15 15:07:21 -0700500 if (fd == -1) {
501 free(host);
502 }
Benoit Goby1c45ee92013-03-29 18:22:36 -0700503 return create_local_socket(fd);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800504 }
505 return NULL;
506}
507#endif /* ADB_HOST */