blob: 67e8e414bb2812d5b94567fed1dc9fa471135ee2 [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
41#include "cutils/android_reboot.h"
42#include "cutils/properties.h"
43#endif
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080044
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080045#include "adb.h"
Dan Albertcc731cc2015-02-24 21:26:58 -080046#include "adb_io.h"
Elliott Hughes3d5f60d2015-07-18 12:21:30 -070047#include "adb_utils.h"
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080048#include "file_sync_service.h"
Elliott Hughesec7a6672015-03-16 21:58:32 +000049#include "remount_service.h"
David Pursell70ef7b42015-09-30 13:35:42 -070050#include "services.h"
David Pursell80f67022015-08-28 15:08:49 -070051#include "shell_service.h"
Josh Gao09855472016-02-19 10:42:40 -080052#include "sysdeps.h"
Dan Albert76649012015-02-24 15:51:19 -080053#include "transport.h"
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080054
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080055struct stinfo {
56 void (*func)(int fd, void *cookie);
57 int fd;
58 void *cookie;
59};
60
Josh Gaob5fea142016-02-12 14:31:15 -080061static void service_bootstrap_func(void* x) {
Dan Albertbac34742015-02-25 17:51:28 -080062 stinfo* sti = reinterpret_cast<stinfo*>(x);
Siva Velusamy49ee7cf2015-08-28 16:37:29 -070063 adb_thread_setname(android::base::StringPrintf("service %d", sti->fd));
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080064 sti->func(sti->fd, sti->cookie);
65 free(sti);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080066}
67
Benoit Goby9470c2f2013-02-20 15:04:53 -080068#if !ADB_HOST
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080069
Elliott Hughesab52c182015-05-01 17:04:38 -070070void restart_root_service(int fd, void *cookie) {
The Android Open Source Projecte037fd72009-03-13 13:04:37 -070071 if (getuid() == 0) {
Elliott Hughesab52c182015-05-01 17:04:38 -070072 WriteFdExactly(fd, "adbd is already running as root\n");
The Android Open Source Projecte037fd72009-03-13 13:04:37 -070073 adb_close(fd);
74 } else {
Elliott Hughesab52c182015-05-01 17:04:38 -070075 char value[PROPERTY_VALUE_MAX];
The Android Open Source Projecte037fd72009-03-13 13:04:37 -070076 property_get("ro.debuggable", value, "");
77 if (strcmp(value, "1") != 0) {
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
Benoit Goby7941cf82012-03-16 14:44:17 -070083 property_set("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 {
94 property_set("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 Hughesab52c182015-05-01 17:04:38 -0700108 char value[PROPERTY_VALUE_MAX];
Mike Lockwoodff196702009-08-24 15:58:40 -0700109 snprintf(value, sizeof(value), "%d", port);
110 property_set("service.adb.tcp.port", value);
Elliott Hughesab52c182015-05-01 17:04:38 -0700111 WriteFdFmt(fd, "restarting in TCP mode port: %d\n", port);
Mike Lockwoodff196702009-08-24 15:58:40 -0700112 adb_close(fd);
Mike Lockwoodff196702009-08-24 15:58:40 -0700113}
114
Elliott Hughesab52c182015-05-01 17:04:38 -0700115void restart_usb_service(int fd, void *cookie) {
Mike Lockwoodff196702009-08-24 15:58:40 -0700116 property_set("service.adb.tcp.port", "0");
Elliott Hughesab52c182015-05-01 17:04:38 -0700117 WriteFdExactly(fd, "restarting in USB mode\n");
Mike Lockwoodff196702009-08-24 15:58:40 -0700118 adb_close(fd);
Mike Lockwoodff196702009-08-24 15:58:40 -0700119}
120
Tao Bao175b7bb2015-03-29 11:22:34 -0700121static bool reboot_service_impl(int fd, const char* arg) {
122 const char* reboot_arg = arg;
123 bool auto_reboot = false;
124
125 if (strcmp(reboot_arg, "sideload-auto-reboot") == 0) {
126 auto_reboot = true;
127 reboot_arg = "sideload";
128 }
129
Tao Bao175b7bb2015-03-29 11:22:34 -0700130 // It reboots into sideload mode by setting "--sideload" or "--sideload_auto_reboot"
131 // in the command file.
132 if (strcmp(reboot_arg, "sideload") == 0) {
133 if (getuid() != 0) {
Elliott Hughese67f1f82015-04-30 17:32:03 -0700134 WriteFdExactly(fd, "'adb root' is required for 'adb reboot sideload'.\n");
Tao Bao175b7bb2015-03-29 11:22:34 -0700135 return false;
136 }
137
138 const char* const recovery_dir = "/cache/recovery";
139 const char* const command_file = "/cache/recovery/command";
140 // Ensure /cache/recovery exists.
141 if (adb_mkdir(recovery_dir, 0770) == -1 && errno != EEXIST) {
Yabin Cui7a3f8d62015-09-02 17:44:28 -0700142 D("Failed to create directory '%s': %s", recovery_dir, strerror(errno));
Tao Bao175b7bb2015-03-29 11:22:34 -0700143 return false;
144 }
145
146 bool write_status = android::base::WriteStringToFile(
147 auto_reboot ? "--sideload_auto_reboot" : "--sideload", command_file);
148 if (!write_status) {
149 return false;
150 }
151
152 reboot_arg = "recovery";
153 }
Mike Lockwoodee156622009-08-04 20:37:51 -0400154
155 sync();
Mike Lockwoodd969faa2010-02-24 16:07:23 -0500156
Tao Bao175b7bb2015-03-29 11:22:34 -0700157 char property_val[PROPERTY_VALUE_MAX];
158 int ret = snprintf(property_val, sizeof(property_val), "reboot,%s", reboot_arg);
159 if (ret >= static_cast<int>(sizeof(property_val))) {
Elliott Hughesab52c182015-05-01 17:04:38 -0700160 WriteFdFmt(fd, "reboot string too long: %d\n", ret);
Tao Bao175b7bb2015-03-29 11:22:34 -0700161 return false;
Nick Kralevichca8e66a2013-04-18 12:20:02 -0700162 }
163
164 ret = property_set(ANDROID_RB_PROPERTY, property_val);
Mike Lockwoodee156622009-08-04 20:37:51 -0400165 if (ret < 0) {
Elliott Hughesab52c182015-05-01 17:04:38 -0700166 WriteFdFmt(fd, "reboot failed: %d\n", ret);
Tao Bao175b7bb2015-03-29 11:22:34 -0700167 return false;
Mike Lockwoodee156622009-08-04 20:37:51 -0400168 }
Tao Bao175b7bb2015-03-29 11:22:34 -0700169
170 return true;
171}
172
173void reboot_service(int fd, void* arg)
174{
175 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 Cuifbfa8402015-10-30 18:37:26 -0700187int reverse_service(const char* command) {
188 int s[2];
189 if (adb_socketpair(s)) {
190 PLOG(ERROR) << "cannot create service socket pair.";
191 return -1;
David 'Digit' Turner25258692013-03-21 21:07:42 +0100192 }
Yabin Cuifbfa8402015-10-30 18:37:26 -0700193 VLOG(SERVICES) << "service socketpair: " << s[0] << ", " << s[1];
194 if (handle_forward_request(command, kTransportAny, nullptr, s[1]) < 0) {
195 SendFail(s[1], "not a reverse forwarding command");
196 }
197 adb_close(s[1]);
198 return s[0];
David 'Digit' Turner25258692013-03-21 21:07:42 +0100199}
200
David Pursell4e2fd362015-09-22 10:43:08 -0700201// Shell service string can look like:
David Pursell70ef7b42015-09-30 13:35:42 -0700202// shell[,arg1,arg2,...]:[command]
David Pursell4e2fd362015-09-22 10:43:08 -0700203static int ShellService(const std::string& args, const atransport* transport) {
204 size_t delimiter_index = args.find(':');
205 if (delimiter_index == std::string::npos) {
206 LOG(ERROR) << "No ':' found in shell service arguments: " << args;
207 return -1;
208 }
David Pursell70ef7b42015-09-30 13:35:42 -0700209
David Pursell4e2fd362015-09-22 10:43:08 -0700210 const std::string service_args = args.substr(0, delimiter_index);
211 const std::string command = args.substr(delimiter_index + 1);
212
David Pursell70ef7b42015-09-30 13:35:42 -0700213 // Defaults:
214 // PTY for interactive, raw for non-interactive.
215 // No protocol.
Elliott Hughes18ddf5c2015-11-16 10:55:34 -0800216 // $TERM set to "dumb".
David Pursell70ef7b42015-09-30 13:35:42 -0700217 SubprocessType type(command.empty() ? SubprocessType::kPty
218 : SubprocessType::kRaw);
219 SubprocessProtocol protocol = SubprocessProtocol::kNone;
Elliott Hughes18ddf5c2015-11-16 10:55:34 -0800220 std::string terminal_type = "dumb";
David Pursell4e2fd362015-09-22 10:43:08 -0700221
David Pursell70ef7b42015-09-30 13:35:42 -0700222 for (const std::string& arg : android::base::Split(service_args, ",")) {
223 if (arg == kShellServiceArgRaw) {
224 type = SubprocessType::kRaw;
225 } else if (arg == kShellServiceArgPty) {
226 type = SubprocessType::kPty;
227 } else if (arg == kShellServiceArgShellProtocol) {
228 protocol = SubprocessProtocol::kShell;
Elliott Hughes18ddf5c2015-11-16 10:55:34 -0800229 } else if (android::base::StartsWith(arg, "TERM=")) {
230 terminal_type = arg.substr(5);
231 } else if (!arg.empty()) {
232 // This is not an error to allow for future expansion.
233 LOG(WARNING) << "Ignoring unknown shell service argument: " << arg;
David Pursell70ef7b42015-09-30 13:35:42 -0700234 }
235 }
David Pursell4e2fd362015-09-22 10:43:08 -0700236
Elliott Hughes18ddf5c2015-11-16 10:55:34 -0800237 return StartSubprocess(command.c_str(), terminal_type.c_str(), type, protocol);
David Pursell4e2fd362015-09-22 10:43:08 -0700238}
239
240#endif // !ADB_HOST
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800241
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800242static int create_service_thread(void (*func)(int, void *), void *cookie)
243{
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800244 int s[2];
Dan Albertbac34742015-02-25 17:51:28 -0800245 if (adb_socketpair(s)) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800246 printf("cannot create service socket pair\n");
247 return -1;
248 }
Yabin Cui7a3f8d62015-09-02 17:44:28 -0700249 D("socketpair: (%d,%d)", s[0], s[1]);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800250
Dan Albertbac34742015-02-25 17:51:28 -0800251 stinfo* sti = reinterpret_cast<stinfo*>(malloc(sizeof(stinfo)));
252 if (sti == nullptr) {
253 fatal("cannot allocate stinfo");
254 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800255 sti->func = func;
256 sti->cookie = cookie;
257 sti->fd = s[1];
258
Elliott Hughes9b0f3542015-05-05 13:41:21 -0700259 if (!adb_thread_create(service_bootstrap_func, sti)) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800260 free(sti);
261 adb_close(s[0]);
262 adb_close(s[1]);
263 printf("cannot create service thread\n");
264 return -1;
265 }
266
Yabin Cui7a3f8d62015-09-02 17:44:28 -0700267 D("service thread started, %d:%d",s[0], s[1]);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800268 return s[0];
269}
270
David Pursell0955c662015-08-31 10:42:13 -0700271int service_to_fd(const char* name, const atransport* transport) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800272 int ret = -1;
273
274 if(!strncmp(name, "tcp:", 4)) {
275 int port = atoi(name + 4);
276 name = strchr(name + 4, ':');
277 if(name == 0) {
Spencer Low5200c662015-07-30 23:07:55 -0700278 std::string error;
279 ret = network_loopback_client(port, SOCK_STREAM, &error);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800280 if (ret >= 0)
281 disable_tcp_nagle(ret);
282 } else {
283#if ADB_HOST
Elliott Hughes381cfa92015-07-23 17:12:58 -0700284 std::string error;
285 ret = network_connect(name + 1, port, SOCK_STREAM, 0, &error);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800286#else
287 return -1;
288#endif
289 }
Elliott Hughesadbf4422015-07-29 17:45:24 -0700290#if !defined(_WIN32) /* winsock doesn't implement unix domain sockets */
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800291 } else if(!strncmp(name, "local:", 6)) {
292 ret = socket_local_client(name + 6,
293 ANDROID_SOCKET_NAMESPACE_RESERVED, SOCK_STREAM);
294 } else if(!strncmp(name, "localreserved:", 14)) {
295 ret = socket_local_client(name + 14,
296 ANDROID_SOCKET_NAMESPACE_RESERVED, SOCK_STREAM);
297 } else if(!strncmp(name, "localabstract:", 14)) {
298 ret = socket_local_client(name + 14,
299 ANDROID_SOCKET_NAMESPACE_ABSTRACT, SOCK_STREAM);
300 } else if(!strncmp(name, "localfilesystem:", 16)) {
301 ret = socket_local_client(name + 16,
302 ANDROID_SOCKET_NAMESPACE_FILESYSTEM, SOCK_STREAM);
303#endif
Benoit Goby9470c2f2013-02-20 15:04:53 -0800304#if !ADB_HOST
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800305 } else if(!strncmp("dev:", name, 4)) {
Nick Kralevichfe8d7f42014-07-18 20:57:35 -0700306 ret = unix_open(name + 4, O_RDWR | O_CLOEXEC);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800307 } else if(!strncmp(name, "framebuffer:", 12)) {
308 ret = create_service_thread(framebuffer_service, 0);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800309 } else if (!strncmp(name, "jdwp:", 5)) {
310 ret = create_jdwp_connection_fd(atoi(name+5));
David Pursell4e2fd362015-09-22 10:43:08 -0700311 } else if(!strncmp(name, "shell", 5)) {
312 ret = ShellService(name + 5, transport);
Yabin Cui661327e2015-08-11 13:40:42 -0700313 } else if(!strncmp(name, "exec:", 5)) {
Elliott Hughes18ddf5c2015-11-16 10:55:34 -0800314 ret = StartSubprocess(name + 5, nullptr, SubprocessType::kRaw, SubprocessProtocol::kNone);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800315 } else if(!strncmp(name, "sync:", 5)) {
316 ret = create_service_thread(file_sync_service, NULL);
317 } else if(!strncmp(name, "remount:", 8)) {
318 ret = create_service_thread(remount_service, NULL);
Mike Lockwoodee156622009-08-04 20:37:51 -0400319 } else if(!strncmp(name, "reboot:", 7)) {
Mike Lockwoodb6b40072009-09-19 16:52:58 -0400320 void* arg = strdup(name + 7);
Jeff Sharkey5d9d4342014-05-26 18:30:43 -0700321 if (arg == NULL) return -1;
Mike Lockwoodb6b40072009-09-19 16:52:58 -0400322 ret = create_service_thread(reboot_service, arg);
The Android Open Source Projecte037fd72009-03-13 13:04:37 -0700323 } else if(!strncmp(name, "root:", 5)) {
324 ret = create_service_thread(restart_root_service, NULL);
Dan Pasanen98858812014-10-06 12:57:20 -0500325 } else if(!strncmp(name, "unroot:", 7)) {
326 ret = create_service_thread(restart_unroot_service, NULL);
Christopher Tated2f54152011-04-21 12:53:28 -0700327 } else if(!strncmp(name, "backup:", 7)) {
David Pursell80f67022015-08-28 15:08:49 -0700328 ret = StartSubprocess(android::base::StringPrintf("/system/bin/bu backup %s",
329 (name + 7)).c_str(),
Elliott Hughes18ddf5c2015-11-16 10:55:34 -0800330 nullptr, SubprocessType::kRaw, SubprocessProtocol::kNone);
Elliott Hughesaa245492015-08-03 10:38:08 -0700331 } else if(!strncmp(name, "restore:", 8)) {
Elliott Hughes18ddf5c2015-11-16 10:55:34 -0800332 ret = StartSubprocess("/system/bin/bu restore", nullptr, SubprocessType::kRaw,
David Pursell0955c662015-08-31 10:42:13 -0700333 SubprocessProtocol::kNone);
Mike Lockwoodff196702009-08-24 15:58:40 -0700334 } else if(!strncmp(name, "tcpip:", 6)) {
335 int port;
Spencer Low943ef232015-01-25 17:38:36 -0800336 if (sscanf(name + 6, "%d", &port) != 1) {
Elliott Hughes19d80b82015-07-21 16:13:40 -0700337 return -1;
Mike Lockwoodff196702009-08-24 15:58:40 -0700338 }
Elliott Hughesccecf142014-01-16 10:53:11 -0800339 ret = create_service_thread(restart_tcp_service, (void *) (uintptr_t) port);
Mike Lockwoodff196702009-08-24 15:58:40 -0700340 } else if(!strncmp(name, "usb:", 4)) {
341 ret = create_service_thread(restart_usb_service, NULL);
David 'Digit' Turner25258692013-03-21 21:07:42 +0100342 } else if (!strncmp(name, "reverse:", 8)) {
Yabin Cuifbfa8402015-10-30 18:37:26 -0700343 ret = reverse_service(name + 8);
Paul Lawrenceec900bb2014-10-09 14:22:49 +0000344 } else if(!strncmp(name, "disable-verity:", 15)) {
Paul Lawrence982089d2014-12-03 15:31:57 -0800345 ret = create_service_thread(set_verity_enabled_state_service, (void*)0);
346 } else if(!strncmp(name, "enable-verity:", 15)) {
347 ret = create_service_thread(set_verity_enabled_state_service, (void*)1);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800348#endif
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800349 }
350 if (ret >= 0) {
351 close_on_exec(ret);
352 }
353 return ret;
354}
355
356#if ADB_HOST
357struct state_info {
Elliott Hughes3bd73c12015-05-05 13:10:43 -0700358 TransportType transport_type;
Leo Sartre1fbc9db2015-11-27 18:56:48 +0100359 std::string serial;
Dan Albertdcd78a12015-05-18 16:43:57 -0700360 ConnectionState state;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800361};
362
Leo Sartre1fbc9db2015-11-27 18:56:48 +0100363static void wait_for_state(int fd, void* data) {
364 std::unique_ptr<state_info> sinfo(reinterpret_cast<state_info*>(data));
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800365
Yabin Cui7a3f8d62015-09-02 17:44:28 -0700366 D("wait_for_state %d", sinfo->state);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800367
Elliott Hughes8d28e192015-10-07 14:55:10 -0700368 while (true) {
369 bool is_ambiguous = false;
370 std::string error = "unknown error";
Leo Sartre94e07762016-01-05 12:06:05 +0100371 const char* serial = sinfo->serial.length() ? sinfo->serial.c_str() : NULL;
372 atransport* t = acquire_one_transport(sinfo->transport_type, serial, &is_ambiguous, &error);
Josh Gao86441c32016-04-13 12:18:58 -0700373 if (t != nullptr && (sinfo->state == kCsAny || sinfo->state == t->connection_state)) {
Elliott Hughes8d28e192015-10-07 14:55:10 -0700374 SendOkay(fd);
375 break;
376 } else if (!is_ambiguous) {
Josh Gao09855472016-02-19 10:42:40 -0800377 adb_pollfd pfd = {.fd = fd, .events = POLLIN };
378 int rc = adb_poll(&pfd, 1, 1000);
379 if (rc < 0) {
380 SendFail(fd, error);
381 break;
382 } else if (rc > 0 && (pfd.revents & POLLHUP) != 0) {
383 // The other end of the socket is closed, probably because the other side was
384 // terminated, bail out.
385 break;
386 }
387
Elliott Hughes8d28e192015-10-07 14:55:10 -0700388 // Try again...
389 } else {
390 SendFail(fd, error);
391 break;
392 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800393 }
394
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800395 adb_close(fd);
Yabin Cui7a3f8d62015-09-02 17:44:28 -0700396 D("wait_for_state is done");
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800397}
Benoit Goby1c45ee92013-03-29 18:22:36 -0700398
Elliott Hughes3d5f60d2015-07-18 12:21:30 -0700399static void connect_device(const std::string& address, std::string* response) {
400 if (address.empty()) {
401 *response = "empty address";
Elliott Hughese67f1f82015-04-30 17:32:03 -0700402 return;
Benoit Goby1c45ee92013-03-29 18:22:36 -0700403 }
404
Elliott Hughes3d5f60d2015-07-18 12:21:30 -0700405 std::string serial;
406 std::string host;
Elliott Hughese67f1f82015-04-30 17:32:03 -0700407 int port = DEFAULT_ADB_LOCAL_TRANSPORT_PORT;
David Pursell706955f2016-01-21 08:40:59 -0800408 if (!android::base::ParseNetAddress(address, &host, &port, &serial, response)) {
Benoit Goby1c45ee92013-03-29 18:22:36 -0700409 return;
410 }
411
Elliott Hughes381cfa92015-07-23 17:12:58 -0700412 std::string error;
413 int fd = network_connect(host.c_str(), port, SOCK_STREAM, 10, &error);
Elliott Hughes3d5f60d2015-07-18 12:21:30 -0700414 if (fd == -1) {
415 *response = android::base::StringPrintf("unable to connect to %s: %s",
Elliott Hughes381cfa92015-07-23 17:12:58 -0700416 serial.c_str(), error.c_str());
Elliott Hughes3d5f60d2015-07-18 12:21:30 -0700417 return;
418 }
419
Yabin Cui7a3f8d62015-09-02 17:44:28 -0700420 D("client: connected %s remote on fd %d", serial.c_str(), fd);
Benoit Goby1c45ee92013-03-29 18:22:36 -0700421 close_on_exec(fd);
422 disable_tcp_nagle(fd);
423
David Pursellbfd95032016-02-22 14:27:23 -0800424 // Send a TCP keepalive ping to the device every second so we can detect disconnects.
425 if (!set_tcp_keepalive(fd, 1)) {
426 D("warning: failed to configure TCP keepalives (%s)", strerror(errno));
427 }
428
Elliott Hughese67f1f82015-04-30 17:32:03 -0700429 int ret = register_socket_transport(fd, serial.c_str(), port, 0);
Benoit Goby1c45ee92013-03-29 18:22:36 -0700430 if (ret < 0) {
431 adb_close(fd);
Elliott Hughese67f1f82015-04-30 17:32:03 -0700432 *response = android::base::StringPrintf("already connected to %s", serial.c_str());
Benoit Goby1c45ee92013-03-29 18:22:36 -0700433 } else {
Elliott Hughese67f1f82015-04-30 17:32:03 -0700434 *response = android::base::StringPrintf("connected to %s", serial.c_str());
Benoit Goby1c45ee92013-03-29 18:22:36 -0700435 }
436}
437
Elliott Hughese67f1f82015-04-30 17:32:03 -0700438void connect_emulator(const std::string& port_spec, std::string* response) {
439 std::vector<std::string> pieces = android::base::Split(port_spec, ",");
440 if (pieces.size() != 2) {
441 *response = android::base::StringPrintf("unable to parse '%s' as <console port>,<adb port>",
442 port_spec.c_str());
Benoit Goby1c45ee92013-03-29 18:22:36 -0700443 return;
444 }
445
Elliott Hughese67f1f82015-04-30 17:32:03 -0700446 int console_port = strtol(pieces[0].c_str(), NULL, 0);
447 int adb_port = strtol(pieces[1].c_str(), NULL, 0);
448 if (console_port <= 0 || adb_port <= 0) {
449 *response = android::base::StringPrintf("Invalid port numbers: %s", port_spec.c_str());
Benoit Goby1c45ee92013-03-29 18:22:36 -0700450 return;
451 }
452
Elliott Hughese67f1f82015-04-30 17:32:03 -0700453 // Check if the emulator is already known.
454 // Note: There's a small but harmless race condition here: An emulator not
455 // present just yet could be registered by another invocation right
456 // after doing this check here. However, local_connect protects
457 // against double-registration too. From here, a better error message
458 // can be produced. In the case of the race condition, the very specific
459 // error message won't be shown, but the data doesn't get corrupted.
Benoit Goby1c45ee92013-03-29 18:22:36 -0700460 atransport* known_emulator = find_emulator_transport_by_adb_port(adb_port);
Elliott Hughese67f1f82015-04-30 17:32:03 -0700461 if (known_emulator != nullptr) {
462 *response = android::base::StringPrintf("Emulator already registered on port %d", adb_port);
Benoit Goby1c45ee92013-03-29 18:22:36 -0700463 return;
464 }
465
Elliott Hughese67f1f82015-04-30 17:32:03 -0700466 // Check if more emulators can be registered. Similar unproblematic
467 // race condition as above.
Benoit Goby1c45ee92013-03-29 18:22:36 -0700468 int candidate_slot = get_available_local_transport_index();
469 if (candidate_slot < 0) {
Elliott Hughese67f1f82015-04-30 17:32:03 -0700470 *response = "Cannot accept more emulators";
Benoit Goby1c45ee92013-03-29 18:22:36 -0700471 return;
472 }
473
Elliott Hughese67f1f82015-04-30 17:32:03 -0700474 // Preconditions met, try to connect to the emulator.
Elliott Hughes381cfa92015-07-23 17:12:58 -0700475 std::string error;
476 if (!local_connect_arbitrary_ports(console_port, adb_port, &error)) {
Elliott Hughese67f1f82015-04-30 17:32:03 -0700477 *response = android::base::StringPrintf("Connected to emulator on ports %d,%d",
478 console_port, adb_port);
Benoit Goby1c45ee92013-03-29 18:22:36 -0700479 } else {
Elliott Hughes381cfa92015-07-23 17:12:58 -0700480 *response = android::base::StringPrintf("Could not connect to emulator on ports %d,%d: %s",
481 console_port, adb_port, error.c_str());
Benoit Goby1c45ee92013-03-29 18:22:36 -0700482 }
483}
484
Alan Jeon4af3c402014-10-16 17:05:25 +0900485static void connect_service(int fd, void* data) {
486 char* host = reinterpret_cast<char*>(data);
Elliott Hughese67f1f82015-04-30 17:32:03 -0700487 std::string response;
Benoit Goby1c45ee92013-03-29 18:22:36 -0700488 if (!strncmp(host, "emu:", 4)) {
Elliott Hughese67f1f82015-04-30 17:32:03 -0700489 connect_emulator(host + 4, &response);
Benoit Goby1c45ee92013-03-29 18:22:36 -0700490 } else {
Elliott Hughese67f1f82015-04-30 17:32:03 -0700491 connect_device(host, &response);
Benoit Goby1c45ee92013-03-29 18:22:36 -0700492 }
Alan Jeon4af3c402014-10-16 17:05:25 +0900493 free(host);
Benoit Goby1c45ee92013-03-29 18:22:36 -0700494
495 // Send response for emulator and device
Elliott Hughese67f1f82015-04-30 17:32:03 -0700496 SendProtocolString(fd, response);
Benoit Goby1c45ee92013-03-29 18:22:36 -0700497 adb_close(fd);
498}
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800499#endif
500
501#if ADB_HOST
Elliott Hughesaa245492015-08-03 10:38:08 -0700502asocket* host_service_to_socket(const char* name, const char* serial) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800503 if (!strcmp(name,"track-devices")) {
504 return create_device_tracker();
Leo Sartre1fbc9db2015-11-27 18:56:48 +0100505 } else if (android::base::StartsWith(name, "wait-for-")) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800506 name += strlen("wait-for-");
507
Leo Sartre1fbc9db2015-11-27 18:56:48 +0100508 std::unique_ptr<state_info> sinfo(new state_info);
509 if (sinfo == nullptr) {
510 fprintf(stderr, "couldn't allocate state_info: %s", strerror(errno));
511 return nullptr;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800512 }
513
Leo Sartre1fbc9db2015-11-27 18:56:48 +0100514 if (serial) sinfo->serial = serial;
515
516 if (android::base::StartsWith(name, "local")) {
517 name += strlen("local");
518 sinfo->transport_type = kTransportLocal;
519 } else if (android::base::StartsWith(name, "usb")) {
520 name += strlen("usb");
521 sinfo->transport_type = kTransportUsb;
522 } else if (android::base::StartsWith(name, "any")) {
523 name += strlen("any");
524 sinfo->transport_type = kTransportAny;
525 } else {
526 return nullptr;
527 }
528
529 if (!strcmp(name, "-device")) {
530 sinfo->state = kCsDevice;
531 } else if (!strcmp(name, "-recovery")) {
532 sinfo->state = kCsRecovery;
533 } else if (!strcmp(name, "-sideload")) {
534 sinfo->state = kCsSideload;
535 } else if (!strcmp(name, "-bootloader")) {
536 sinfo->state = kCsBootloader;
Josh Gao86441c32016-04-13 12:18:58 -0700537 } else if (!strcmp(name, "-any")) {
538 sinfo->state = kCsAny;
Leo Sartre1fbc9db2015-11-27 18:56:48 +0100539 } else {
540 return nullptr;
541 }
542
543 int fd = create_service_thread(wait_for_state, sinfo.release());
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800544 return create_local_socket(fd);
Benoit Goby1c45ee92013-03-29 18:22:36 -0700545 } else if (!strncmp(name, "connect:", 8)) {
Alan Jeon4af3c402014-10-16 17:05:25 +0900546 char* host = strdup(name + 8);
547 int fd = create_service_thread(connect_service, host);
Benoit Goby1c45ee92013-03-29 18:22:36 -0700548 return create_local_socket(fd);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800549 }
550 return NULL;
551}
552#endif /* ADB_HOST */