blob: ac672f0f2457704a71acb08e408040bfb04c4373 [file] [log] [blame]
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -08001/*
2 * Copyright (C) 2007 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
Dan Albert33134262015-03-19 15:21:08 -070017#define TRACE_TAG TRACE_SERVICES
18
19#include "sysdeps.h"
20
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080021#include <errno.h>
Dan Albert76649012015-02-24 15:51:19 -080022#include <stddef.h>
23#include <stdio.h>
24#include <stdlib.h>
25#include <string.h>
26
Dan Albert569a1302015-05-15 12:56:23 -070027#if !ADB_HOST
28#include <pty.h>
29#include <termios.h>
30#endif
31
Dan Albert76649012015-02-24 15:51:19 -080032#ifndef _WIN32
33#include <netdb.h>
34#include <netinet/in.h>
35#include <sys/ioctl.h>
36#include <unistd.h>
37#endif
38
Elliott Hughese67f1f82015-04-30 17:32:03 -070039#include <base/file.h>
Elliott Hughes6c34bba2015-04-17 20:11:08 -070040#include <base/stringprintf.h>
Elliott Hughese67f1f82015-04-30 17:32:03 -070041#include <base/strings.h>
Elliott Hughes381cfa92015-07-23 17:12:58 -070042#include <cutils/sockets.h>
Elliott Hughes6c34bba2015-04-17 20:11:08 -070043
Dan Albert76649012015-02-24 15:51:19 -080044#if !ADB_HOST
45#include "cutils/android_reboot.h"
46#include "cutils/properties.h"
47#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"
Dan Albert76649012015-02-24 15:51:19 -080054#include "transport.h"
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080055
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080056struct stinfo {
57 void (*func)(int fd, void *cookie);
58 int fd;
59 void *cookie;
60};
61
David Purselld4093f12015-08-10 12:52:16 -070062enum class SubprocessType {
63 kPty,
64 kRaw,
65};
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080066
67void *service_bootstrap_func(void *x)
68{
Dan Albertbac34742015-02-25 17:51:28 -080069 stinfo* sti = reinterpret_cast<stinfo*>(x);
Siva Velusamy49ee7cf2015-08-28 16:37:29 -070070 adb_thread_setname(android::base::StringPrintf("service %d", sti->fd));
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080071 sti->func(sti->fd, sti->cookie);
72 free(sti);
73 return 0;
74}
75
Benoit Goby9470c2f2013-02-20 15:04:53 -080076#if !ADB_HOST
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080077
Elliott Hughesab52c182015-05-01 17:04:38 -070078void restart_root_service(int fd, void *cookie) {
The Android Open Source Projecte037fd72009-03-13 13:04:37 -070079 if (getuid() == 0) {
Elliott Hughesab52c182015-05-01 17:04:38 -070080 WriteFdExactly(fd, "adbd is already running as root\n");
The Android Open Source Projecte037fd72009-03-13 13:04:37 -070081 adb_close(fd);
82 } else {
Elliott Hughesab52c182015-05-01 17:04:38 -070083 char value[PROPERTY_VALUE_MAX];
The Android Open Source Projecte037fd72009-03-13 13:04:37 -070084 property_get("ro.debuggable", value, "");
85 if (strcmp(value, "1") != 0) {
Elliott Hughesab52c182015-05-01 17:04:38 -070086 WriteFdExactly(fd, "adbd cannot run as root in production builds\n");
Mike Lockwoodff196702009-08-24 15:58:40 -070087 adb_close(fd);
The Android Open Source Projecte037fd72009-03-13 13:04:37 -070088 return;
89 }
90
Benoit Goby7941cf82012-03-16 14:44:17 -070091 property_set("service.adb.root", "1");
Elliott Hughesab52c182015-05-01 17:04:38 -070092 WriteFdExactly(fd, "restarting adbd as root\n");
The Android Open Source Projecte037fd72009-03-13 13:04:37 -070093 adb_close(fd);
The Android Open Source Projecte037fd72009-03-13 13:04:37 -070094 }
95}
96
Elliott Hughesab52c182015-05-01 17:04:38 -070097void restart_unroot_service(int fd, void *cookie) {
Dan Pasanen98858812014-10-06 12:57:20 -050098 if (getuid() != 0) {
Elliott Hughesab52c182015-05-01 17:04:38 -070099 WriteFdExactly(fd, "adbd not running as root\n");
Dan Pasanen98858812014-10-06 12:57:20 -0500100 adb_close(fd);
101 } else {
102 property_set("service.adb.root", "0");
Elliott Hughesab52c182015-05-01 17:04:38 -0700103 WriteFdExactly(fd, "restarting adbd as non root\n");
Dan Pasanen98858812014-10-06 12:57:20 -0500104 adb_close(fd);
105 }
106}
107
Elliott Hughesab52c182015-05-01 17:04:38 -0700108void restart_tcp_service(int fd, void *cookie) {
Elliott Hughesccecf142014-01-16 10:53:11 -0800109 int port = (int) (uintptr_t) cookie;
Mike Lockwoodff196702009-08-24 15:58:40 -0700110 if (port <= 0) {
Elliott Hughesab52c182015-05-01 17:04:38 -0700111 WriteFdFmt(fd, "invalid port %d\n", port);
Mike Lockwoodff196702009-08-24 15:58:40 -0700112 adb_close(fd);
113 return;
114 }
115
Elliott Hughesab52c182015-05-01 17:04:38 -0700116 char value[PROPERTY_VALUE_MAX];
Mike Lockwoodff196702009-08-24 15:58:40 -0700117 snprintf(value, sizeof(value), "%d", port);
118 property_set("service.adb.tcp.port", value);
Elliott Hughesab52c182015-05-01 17:04:38 -0700119 WriteFdFmt(fd, "restarting in TCP mode port: %d\n", port);
Mike Lockwoodff196702009-08-24 15:58:40 -0700120 adb_close(fd);
Mike Lockwoodff196702009-08-24 15:58:40 -0700121}
122
Elliott Hughesab52c182015-05-01 17:04:38 -0700123void restart_usb_service(int fd, void *cookie) {
Mike Lockwoodff196702009-08-24 15:58:40 -0700124 property_set("service.adb.tcp.port", "0");
Elliott Hughesab52c182015-05-01 17:04:38 -0700125 WriteFdExactly(fd, "restarting in USB mode\n");
Mike Lockwoodff196702009-08-24 15:58:40 -0700126 adb_close(fd);
Mike Lockwoodff196702009-08-24 15:58:40 -0700127}
128
Tao Bao175b7bb2015-03-29 11:22:34 -0700129static bool reboot_service_impl(int fd, const char* arg) {
130 const char* reboot_arg = arg;
131 bool auto_reboot = false;
132
133 if (strcmp(reboot_arg, "sideload-auto-reboot") == 0) {
134 auto_reboot = true;
135 reboot_arg = "sideload";
136 }
137
Tao Bao175b7bb2015-03-29 11:22:34 -0700138 // It reboots into sideload mode by setting "--sideload" or "--sideload_auto_reboot"
139 // in the command file.
140 if (strcmp(reboot_arg, "sideload") == 0) {
141 if (getuid() != 0) {
Elliott Hughese67f1f82015-04-30 17:32:03 -0700142 WriteFdExactly(fd, "'adb root' is required for 'adb reboot sideload'.\n");
Tao Bao175b7bb2015-03-29 11:22:34 -0700143 return false;
144 }
145
146 const char* const recovery_dir = "/cache/recovery";
147 const char* const command_file = "/cache/recovery/command";
148 // Ensure /cache/recovery exists.
149 if (adb_mkdir(recovery_dir, 0770) == -1 && errno != EEXIST) {
Yabin Cui7a3f8d62015-09-02 17:44:28 -0700150 D("Failed to create directory '%s': %s", recovery_dir, strerror(errno));
Tao Bao175b7bb2015-03-29 11:22:34 -0700151 return false;
152 }
153
154 bool write_status = android::base::WriteStringToFile(
155 auto_reboot ? "--sideload_auto_reboot" : "--sideload", command_file);
156 if (!write_status) {
157 return false;
158 }
159
160 reboot_arg = "recovery";
161 }
Mike Lockwoodee156622009-08-04 20:37:51 -0400162
163 sync();
Mike Lockwoodd969faa2010-02-24 16:07:23 -0500164
Tao Bao175b7bb2015-03-29 11:22:34 -0700165 char property_val[PROPERTY_VALUE_MAX];
166 int ret = snprintf(property_val, sizeof(property_val), "reboot,%s", reboot_arg);
167 if (ret >= static_cast<int>(sizeof(property_val))) {
Elliott Hughesab52c182015-05-01 17:04:38 -0700168 WriteFdFmt(fd, "reboot string too long: %d\n", ret);
Tao Bao175b7bb2015-03-29 11:22:34 -0700169 return false;
Nick Kralevichca8e66a2013-04-18 12:20:02 -0700170 }
171
172 ret = property_set(ANDROID_RB_PROPERTY, property_val);
Mike Lockwoodee156622009-08-04 20:37:51 -0400173 if (ret < 0) {
Elliott Hughesab52c182015-05-01 17:04:38 -0700174 WriteFdFmt(fd, "reboot failed: %d\n", ret);
Tao Bao175b7bb2015-03-29 11:22:34 -0700175 return false;
Mike Lockwoodee156622009-08-04 20:37:51 -0400176 }
Tao Bao175b7bb2015-03-29 11:22:34 -0700177
178 return true;
179}
180
181void reboot_service(int fd, void* arg)
182{
183 if (reboot_service_impl(fd, static_cast<const char*>(arg))) {
184 // Don't return early. Give the reboot command time to take effect
185 // to avoid messing up scripts which do "adb reboot && adb wait-for-device"
Elliott Hughesa7090b92015-04-17 17:03:59 -0700186 while (true) {
Tao Bao175b7bb2015-03-29 11:22:34 -0700187 pause();
188 }
189 }
190
Mike Lockwoodb6b40072009-09-19 16:52:58 -0400191 free(arg);
Mike Lockwoodee156622009-08-04 20:37:51 -0400192 adb_close(fd);
193}
194
David 'Digit' Turner25258692013-03-21 21:07:42 +0100195void reverse_service(int fd, void* arg)
196{
Dan Albertbac34742015-02-25 17:51:28 -0800197 const char* command = reinterpret_cast<const char*>(arg);
David 'Digit' Turner25258692013-03-21 21:07:42 +0100198
199 if (handle_forward_request(command, kTransportAny, NULL, fd) < 0) {
Elliott Hughese67f1f82015-04-30 17:32:03 -0700200 SendFail(fd, "not a reverse forwarding command");
David 'Digit' Turner25258692013-03-21 21:07:42 +0100201 }
202 free(arg);
203 adb_close(fd);
204}
205
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800206#endif
207
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800208static int create_service_thread(void (*func)(int, void *), void *cookie)
209{
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800210 int s[2];
Dan Albertbac34742015-02-25 17:51:28 -0800211 if (adb_socketpair(s)) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800212 printf("cannot create service socket pair\n");
213 return -1;
214 }
Yabin Cui7a3f8d62015-09-02 17:44:28 -0700215 D("socketpair: (%d,%d)", s[0], s[1]);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800216
Dan Albertbac34742015-02-25 17:51:28 -0800217 stinfo* sti = reinterpret_cast<stinfo*>(malloc(sizeof(stinfo)));
218 if (sti == nullptr) {
219 fatal("cannot allocate stinfo");
220 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800221 sti->func = func;
222 sti->cookie = cookie;
223 sti->fd = s[1];
224
Elliott Hughes9b0f3542015-05-05 13:41:21 -0700225 if (!adb_thread_create(service_bootstrap_func, sti)) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800226 free(sti);
227 adb_close(s[0]);
228 adb_close(s[1]);
229 printf("cannot create service thread\n");
230 return -1;
231 }
232
Yabin Cui7a3f8d62015-09-02 17:44:28 -0700233 D("service thread started, %d:%d",s[0], s[1]);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800234 return s[0];
235}
236
JP Abgrall408fa572011-03-16 15:57:42 -0700237#if !ADB_HOST
Jeff Sharkey5d9d4342014-05-26 18:30:43 -0700238
239static void init_subproc_child()
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800240{
Jeff Sharkey5d9d4342014-05-26 18:30:43 -0700241 setsid();
242
Rom Lemarchand07ce7ca2014-06-20 16:30:54 -0700243 // Set OOM score adjustment to prevent killing
Nick Kralevichfe8d7f42014-07-18 20:57:35 -0700244 int fd = adb_open("/proc/self/oom_score_adj", O_WRONLY | O_CLOEXEC);
Jeff Sharkey5d9d4342014-05-26 18:30:43 -0700245 if (fd >= 0) {
246 adb_write(fd, "0", 1);
247 adb_close(fd);
248 } else {
Yabin Cui7a3f8d62015-09-02 17:44:28 -0700249 D("adb: unable to update oom_score_adj");
Jeff Sharkey5d9d4342014-05-26 18:30:43 -0700250 }
251}
252
Dan Albert569a1302015-05-15 12:56:23 -0700253#if !ADB_HOST
254static int create_subproc_pty(const char* cmd, const char* arg0,
255 const char* arg1, pid_t* pid) {
Yabin Cui7a3f8d62015-09-02 17:44:28 -0700256 D("create_subproc_pty(cmd=%s, arg0=%s, arg1=%s)", cmd, arg0, arg1);
Dan Albert569a1302015-05-15 12:56:23 -0700257 char pts_name[PATH_MAX];
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800258 int ptm;
Dan Albert569a1302015-05-15 12:56:23 -0700259 *pid = forkpty(&ptm, pts_name, nullptr, nullptr);
260 if (*pid == -1) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800261 printf("- fork failed: %s -\n", strerror(errno));
Spencer Low6ac5d7d2015-05-22 20:09:06 -0700262 unix_close(ptm);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800263 return -1;
264 }
265
Jeff Sharkey5d9d4342014-05-26 18:30:43 -0700266 if (*pid == 0) {
267 init_subproc_child();
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800268
Dan Albert569a1302015-05-15 12:56:23 -0700269 int pts = unix_open(pts_name, O_RDWR | O_CLOEXEC);
270 if (pts == -1) {
271 fprintf(stderr, "child failed to open pseudo-term slave %s: %s\n",
272 pts_name, strerror(errno));
Spencer Low6ac5d7d2015-05-22 20:09:06 -0700273 unix_close(ptm);
JP Abgrall408fa572011-03-16 15:57:42 -0700274 exit(-1);
275 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800276
Dan Albert569a1302015-05-15 12:56:23 -0700277 // arg0 is "-c" in batch mode and "-" in interactive mode.
278 if (strcmp(arg0, "-c") == 0) {
279 termios tattr;
280 if (tcgetattr(pts, &tattr) == -1) {
281 fprintf(stderr, "tcgetattr failed: %s\n", strerror(errno));
Spencer Low6ac5d7d2015-05-22 20:09:06 -0700282 unix_close(pts);
283 unix_close(ptm);
Dan Albert569a1302015-05-15 12:56:23 -0700284 exit(-1);
285 }
286
287 cfmakeraw(&tattr);
288 if (tcsetattr(pts, TCSADRAIN, &tattr) == -1) {
289 fprintf(stderr, "tcsetattr failed: %s\n", strerror(errno));
Spencer Low6ac5d7d2015-05-22 20:09:06 -0700290 unix_close(pts);
291 unix_close(ptm);
Dan Albert569a1302015-05-15 12:56:23 -0700292 exit(-1);
293 }
294 }
295
Jeff Sharkey5d9d4342014-05-26 18:30:43 -0700296 dup2(pts, STDIN_FILENO);
297 dup2(pts, STDOUT_FILENO);
298 dup2(pts, STDERR_FILENO);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800299
Spencer Low6ac5d7d2015-05-22 20:09:06 -0700300 unix_close(pts);
301 unix_close(ptm);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800302
Dan Albert569a1302015-05-15 12:56:23 -0700303 execl(cmd, cmd, arg0, arg1, nullptr);
JP Abgrall408fa572011-03-16 15:57:42 -0700304 fprintf(stderr, "- exec '%s' failed: %s (%d) -\n",
305 cmd, strerror(errno), errno);
306 exit(-1);
307 } else {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800308 return ptm;
309 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800310}
Dan Albert569a1302015-05-15 12:56:23 -0700311#endif // !ADB_HOST
Jeff Sharkey5d9d4342014-05-26 18:30:43 -0700312
313static int create_subproc_raw(const char *cmd, const char *arg0, const char *arg1, pid_t *pid)
314{
Yabin Cui7a3f8d62015-09-02 17:44:28 -0700315 D("create_subproc_raw(cmd=%s, arg0=%s, arg1=%s)", cmd, arg0, arg1);
Yabin Cuie77b6a02014-11-11 09:24:11 -0800316#if defined(_WIN32)
Jeff Sharkey5d9d4342014-05-26 18:30:43 -0700317 fprintf(stderr, "error: create_subproc_raw not implemented on Win32 (%s %s %s)\n", cmd, arg0, arg1);
318 return -1;
Yabin Cuie77b6a02014-11-11 09:24:11 -0800319#else
Jeff Sharkey5d9d4342014-05-26 18:30:43 -0700320
321 // 0 is parent socket, 1 is child socket
322 int sv[2];
leozwangcbf02672014-08-15 09:51:27 -0700323 if (adb_socketpair(sv) < 0) {
Jeff Sharkey5d9d4342014-05-26 18:30:43 -0700324 printf("[ cannot create socket pair - %s ]\n", strerror(errno));
325 return -1;
326 }
Yabin Cui7a3f8d62015-09-02 17:44:28 -0700327 D("socketpair: (%d,%d)", sv[0], sv[1]);
Jeff Sharkey5d9d4342014-05-26 18:30:43 -0700328
329 *pid = fork();
330 if (*pid < 0) {
331 printf("- fork failed: %s -\n", strerror(errno));
332 adb_close(sv[0]);
333 adb_close(sv[1]);
334 return -1;
335 }
336
337 if (*pid == 0) {
338 adb_close(sv[0]);
339 init_subproc_child();
340
Jeff Sharkey5d9d4342014-05-26 18:30:43 -0700341 dup2(sv[1], STDIN_FILENO);
342 dup2(sv[1], STDOUT_FILENO);
Jeff Sharkey960df972014-06-09 17:30:57 -0700343 dup2(sv[1], STDERR_FILENO);
344
Jeff Sharkey5d9d4342014-05-26 18:30:43 -0700345 adb_close(sv[1]);
346
347 execl(cmd, cmd, arg0, arg1, NULL);
348 fprintf(stderr, "- exec '%s' failed: %s (%d) -\n",
349 cmd, strerror(errno), errno);
350 exit(-1);
351 } else {
352 adb_close(sv[1]);
353 return sv[0];
354 }
Yabin Cuie77b6a02014-11-11 09:24:11 -0800355#endif /* !defined(_WIN32) */
Jeff Sharkey5d9d4342014-05-26 18:30:43 -0700356}
JP Abgrall408fa572011-03-16 15:57:42 -0700357#endif /* !ABD_HOST */
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800358
359#if ADB_HOST
360#define SHELL_COMMAND "/bin/sh"
361#else
362#define SHELL_COMMAND "/system/bin/sh"
363#endif
364
JP Abgrall408fa572011-03-16 15:57:42 -0700365#if !ADB_HOST
366static void subproc_waiter_service(int fd, void *cookie)
367{
Elliott Hughesccecf142014-01-16 10:53:11 -0800368 pid_t pid = (pid_t) (uintptr_t) cookie;
JP Abgrall408fa572011-03-16 15:57:42 -0700369
Yabin Cui7a3f8d62015-09-02 17:44:28 -0700370 D("entered. fd=%d of pid=%d", fd, pid);
Elliott Hughesa7090b92015-04-17 17:03:59 -0700371 while (true) {
JP Abgrall408fa572011-03-16 15:57:42 -0700372 int status;
373 pid_t p = waitpid(pid, &status, 0);
374 if (p == pid) {
Yabin Cui7a3f8d62015-09-02 17:44:28 -0700375 D("fd=%d, post waitpid(pid=%d) status=%04x", fd, p, status);
JP Abgrall408fa572011-03-16 15:57:42 -0700376 if (WIFSIGNALED(status)) {
Yabin Cui7a3f8d62015-09-02 17:44:28 -0700377 D("*** Killed by signal %d", WTERMSIG(status));
JP Abgrall408fa572011-03-16 15:57:42 -0700378 break;
379 } else if (!WIFEXITED(status)) {
Yabin Cui7a3f8d62015-09-02 17:44:28 -0700380 D("*** Didn't exit!!. status %d", status);
JP Abgrall408fa572011-03-16 15:57:42 -0700381 break;
382 } else if (WEXITSTATUS(status) >= 0) {
Yabin Cui7a3f8d62015-09-02 17:44:28 -0700383 D("*** Exit code %d", WEXITSTATUS(status));
JP Abgrall408fa572011-03-16 15:57:42 -0700384 break;
385 }
386 }
JP Abgrall408fa572011-03-16 15:57:42 -0700387 }
Yabin Cui7a3f8d62015-09-02 17:44:28 -0700388 D("shell exited fd=%d of pid=%d err=%d", fd, pid, errno);
JP Abgrall408fa572011-03-16 15:57:42 -0700389 if (SHELL_EXIT_NOTIFY_FD >=0) {
390 int res;
Dan Albertcc731cc2015-02-24 21:26:58 -0800391 res = WriteFdExactly(SHELL_EXIT_NOTIFY_FD, &fd, sizeof(fd)) ? 0 : -1;
Yabin Cui7a3f8d62015-09-02 17:44:28 -0700392 D("notified shell exit via fd=%d for pid=%d res=%d errno=%d",
JP Abgrall408fa572011-03-16 15:57:42 -0700393 SHELL_EXIT_NOTIFY_FD, pid, res, errno);
394 }
395}
396
David Purselld4093f12015-08-10 12:52:16 -0700397// Starts a subprocess and spawns a thread to wait for the subprocess to finish
398// and trigger the necessary cleanup.
399//
400// |name| is the command to execute in the subprocess; empty string will start
401// an interactive session.
402// |type| selects between a PTY or raw subprocess.
403//
404// Returns an open file descriptor tied to the subprocess stdin/stdout/stderr.
405static int create_subproc_thread(const char *name, SubprocessType type) {
Jeff Sharkey5d9d4342014-05-26 18:30:43 -0700406 const char *arg0, *arg1;
David Purselld4093f12015-08-10 12:52:16 -0700407 if (*name == '\0') {
408 arg0 = "-";
409 arg1 = nullptr;
JP Abgrall408fa572011-03-16 15:57:42 -0700410 } else {
David Purselld4093f12015-08-10 12:52:16 -0700411 arg0 = "-c";
412 arg1 = name;
JP Abgrall408fa572011-03-16 15:57:42 -0700413 }
Jeff Sharkey5d9d4342014-05-26 18:30:43 -0700414
Elliott Hughes3bd73c12015-05-05 13:10:43 -0700415 pid_t pid = -1;
416 int ret_fd;
David Purselld4093f12015-08-10 12:52:16 -0700417 if (type == SubprocessType::kPty) {
Jeff Sharkey5d9d4342014-05-26 18:30:43 -0700418 ret_fd = create_subproc_pty(SHELL_COMMAND, arg0, arg1, &pid);
Elliott Hughes3bd73c12015-05-05 13:10:43 -0700419 } else {
Jeff Sharkey5d9d4342014-05-26 18:30:43 -0700420 ret_fd = create_subproc_raw(SHELL_COMMAND, arg0, arg1, &pid);
Jeff Sharkey5d9d4342014-05-26 18:30:43 -0700421 }
Yabin Cui7a3f8d62015-09-02 17:44:28 -0700422 D("create_subproc ret_fd=%d pid=%d", ret_fd, pid);
JP Abgrall408fa572011-03-16 15:57:42 -0700423
Dan Albertbac34742015-02-25 17:51:28 -0800424 stinfo* sti = reinterpret_cast<stinfo*>(malloc(sizeof(stinfo)));
JP Abgrall408fa572011-03-16 15:57:42 -0700425 if(sti == 0) fatal("cannot allocate stinfo");
426 sti->func = subproc_waiter_service;
Elliott Hughesccecf142014-01-16 10:53:11 -0800427 sti->cookie = (void*) (uintptr_t) pid;
JP Abgrall408fa572011-03-16 15:57:42 -0700428 sti->fd = ret_fd;
429
Elliott Hughes9b0f3542015-05-05 13:41:21 -0700430 if (!adb_thread_create(service_bootstrap_func, sti)) {
JP Abgrall408fa572011-03-16 15:57:42 -0700431 free(sti);
432 adb_close(ret_fd);
Jeff Sharkey5d9d4342014-05-26 18:30:43 -0700433 fprintf(stderr, "cannot create service thread\n");
JP Abgrall408fa572011-03-16 15:57:42 -0700434 return -1;
435 }
436
Yabin Cui7a3f8d62015-09-02 17:44:28 -0700437 D("service thread started, fd=%d pid=%d", ret_fd, pid);
JP Abgrall408fa572011-03-16 15:57:42 -0700438 return ret_fd;
439}
440#endif
441
Elliott Hughesaa245492015-08-03 10:38:08 -0700442int service_to_fd(const char* name) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800443 int ret = -1;
444
445 if(!strncmp(name, "tcp:", 4)) {
446 int port = atoi(name + 4);
447 name = strchr(name + 4, ':');
448 if(name == 0) {
Spencer Low5200c662015-07-30 23:07:55 -0700449 std::string error;
450 ret = network_loopback_client(port, SOCK_STREAM, &error);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800451 if (ret >= 0)
452 disable_tcp_nagle(ret);
453 } else {
454#if ADB_HOST
Elliott Hughes381cfa92015-07-23 17:12:58 -0700455 std::string error;
456 ret = network_connect(name + 1, port, SOCK_STREAM, 0, &error);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800457#else
458 return -1;
459#endif
460 }
Elliott Hughesadbf4422015-07-29 17:45:24 -0700461#if !defined(_WIN32) /* winsock doesn't implement unix domain sockets */
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800462 } else if(!strncmp(name, "local:", 6)) {
463 ret = socket_local_client(name + 6,
464 ANDROID_SOCKET_NAMESPACE_RESERVED, SOCK_STREAM);
465 } else if(!strncmp(name, "localreserved:", 14)) {
466 ret = socket_local_client(name + 14,
467 ANDROID_SOCKET_NAMESPACE_RESERVED, SOCK_STREAM);
468 } else if(!strncmp(name, "localabstract:", 14)) {
469 ret = socket_local_client(name + 14,
470 ANDROID_SOCKET_NAMESPACE_ABSTRACT, SOCK_STREAM);
471 } else if(!strncmp(name, "localfilesystem:", 16)) {
472 ret = socket_local_client(name + 16,
473 ANDROID_SOCKET_NAMESPACE_FILESYSTEM, SOCK_STREAM);
474#endif
Benoit Goby9470c2f2013-02-20 15:04:53 -0800475#if !ADB_HOST
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800476 } else if(!strncmp("dev:", name, 4)) {
Nick Kralevichfe8d7f42014-07-18 20:57:35 -0700477 ret = unix_open(name + 4, O_RDWR | O_CLOEXEC);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800478 } else if(!strncmp(name, "framebuffer:", 12)) {
479 ret = create_service_thread(framebuffer_service, 0);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800480 } else if (!strncmp(name, "jdwp:", 5)) {
481 ret = create_jdwp_connection_fd(atoi(name+5));
Yabin Cui661327e2015-08-11 13:40:42 -0700482 } else if(!strncmp(name, "shell:", 6)) {
David Purselld4093f12015-08-10 12:52:16 -0700483 const char* args = name + 6;
484 if (*args) {
485 // Non-interactive session uses a raw subprocess.
486 ret = create_subproc_thread(args, SubprocessType::kRaw);
487 } else {
488 // Interactive session uses a PTY subprocess.
489 ret = create_subproc_thread(args, SubprocessType::kPty);
490 }
Yabin Cui661327e2015-08-11 13:40:42 -0700491 } else if(!strncmp(name, "exec:", 5)) {
David Purselld4093f12015-08-10 12:52:16 -0700492 ret = create_subproc_thread(name + 5, SubprocessType::kRaw);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800493 } else if(!strncmp(name, "sync:", 5)) {
494 ret = create_service_thread(file_sync_service, NULL);
495 } else if(!strncmp(name, "remount:", 8)) {
496 ret = create_service_thread(remount_service, NULL);
Mike Lockwoodee156622009-08-04 20:37:51 -0400497 } else if(!strncmp(name, "reboot:", 7)) {
Mike Lockwoodb6b40072009-09-19 16:52:58 -0400498 void* arg = strdup(name + 7);
Jeff Sharkey5d9d4342014-05-26 18:30:43 -0700499 if (arg == NULL) return -1;
Mike Lockwoodb6b40072009-09-19 16:52:58 -0400500 ret = create_service_thread(reboot_service, arg);
The Android Open Source Projecte037fd72009-03-13 13:04:37 -0700501 } else if(!strncmp(name, "root:", 5)) {
502 ret = create_service_thread(restart_root_service, NULL);
Dan Pasanen98858812014-10-06 12:57:20 -0500503 } else if(!strncmp(name, "unroot:", 7)) {
504 ret = create_service_thread(restart_unroot_service, NULL);
Christopher Tated2f54152011-04-21 12:53:28 -0700505 } else if(!strncmp(name, "backup:", 7)) {
Elliott Hughesaa245492015-08-03 10:38:08 -0700506 ret = create_subproc_thread(android::base::StringPrintf("/system/bin/bu backup %s",
507 (name + 7)).c_str(),
David Purselld4093f12015-08-10 12:52:16 -0700508 SubprocessType::kRaw);
Elliott Hughesaa245492015-08-03 10:38:08 -0700509 } else if(!strncmp(name, "restore:", 8)) {
510 ret = create_subproc_thread("/system/bin/bu restore", SubprocessType::kRaw);
Mike Lockwoodff196702009-08-24 15:58:40 -0700511 } else if(!strncmp(name, "tcpip:", 6)) {
512 int port;
Spencer Low943ef232015-01-25 17:38:36 -0800513 if (sscanf(name + 6, "%d", &port) != 1) {
Elliott Hughes19d80b82015-07-21 16:13:40 -0700514 return -1;
Mike Lockwoodff196702009-08-24 15:58:40 -0700515 }
Elliott Hughesccecf142014-01-16 10:53:11 -0800516 ret = create_service_thread(restart_tcp_service, (void *) (uintptr_t) port);
Mike Lockwoodff196702009-08-24 15:58:40 -0700517 } else if(!strncmp(name, "usb:", 4)) {
518 ret = create_service_thread(restart_usb_service, NULL);
David 'Digit' Turner25258692013-03-21 21:07:42 +0100519 } else if (!strncmp(name, "reverse:", 8)) {
520 char* cookie = strdup(name + 8);
521 if (cookie == NULL) {
522 ret = -1;
523 } else {
524 ret = create_service_thread(reverse_service, cookie);
525 if (ret < 0) {
526 free(cookie);
527 }
528 }
Paul Lawrenceec900bb2014-10-09 14:22:49 +0000529 } else if(!strncmp(name, "disable-verity:", 15)) {
Paul Lawrence982089d2014-12-03 15:31:57 -0800530 ret = create_service_thread(set_verity_enabled_state_service, (void*)0);
531 } else if(!strncmp(name, "enable-verity:", 15)) {
532 ret = create_service_thread(set_verity_enabled_state_service, (void*)1);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800533#endif
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800534 }
535 if (ret >= 0) {
536 close_on_exec(ret);
537 }
538 return ret;
539}
540
541#if ADB_HOST
542struct state_info {
Elliott Hughes3bd73c12015-05-05 13:10:43 -0700543 TransportType transport_type;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800544 char* serial;
Dan Albertdcd78a12015-05-18 16:43:57 -0700545 ConnectionState state;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800546};
547
548static void wait_for_state(int fd, void* cookie)
549{
Dan Albertbac34742015-02-25 17:51:28 -0800550 state_info* sinfo = reinterpret_cast<state_info*>(cookie);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800551
Yabin Cui7a3f8d62015-09-02 17:44:28 -0700552 D("wait_for_state %d", sinfo->state);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800553
Elliott Hughes7be29c82015-04-16 22:54:44 -0700554 std::string error_msg = "unknown error";
Elliott Hughes3bd73c12015-05-05 13:10:43 -0700555 atransport* t = acquire_one_transport(sinfo->state, sinfo->transport_type, sinfo->serial,
556 &error_msg);
Elliott Hughese2d36772015-06-23 13:00:32 -0700557 if (t != nullptr) {
Elliott Hughese67f1f82015-04-30 17:32:03 -0700558 SendOkay(fd);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800559 } else {
Elliott Hughese67f1f82015-04-30 17:32:03 -0700560 SendFail(fd, error_msg);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800561 }
562
563 if (sinfo->serial)
564 free(sinfo->serial);
565 free(sinfo);
566 adb_close(fd);
Yabin Cui7a3f8d62015-09-02 17:44:28 -0700567 D("wait_for_state is done");
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800568}
Benoit Goby1c45ee92013-03-29 18:22:36 -0700569
Elliott Hughes3d5f60d2015-07-18 12:21:30 -0700570static void connect_device(const std::string& address, std::string* response) {
571 if (address.empty()) {
572 *response = "empty address";
Elliott Hughese67f1f82015-04-30 17:32:03 -0700573 return;
Benoit Goby1c45ee92013-03-29 18:22:36 -0700574 }
575
Elliott Hughes3d5f60d2015-07-18 12:21:30 -0700576 std::string serial;
577 std::string host;
Elliott Hughese67f1f82015-04-30 17:32:03 -0700578 int port = DEFAULT_ADB_LOCAL_TRANSPORT_PORT;
Elliott Hughes3d5f60d2015-07-18 12:21:30 -0700579 if (!parse_host_and_port(address, &serial, &host, &port, response)) {
Benoit Goby1c45ee92013-03-29 18:22:36 -0700580 return;
581 }
582
Elliott Hughes381cfa92015-07-23 17:12:58 -0700583 std::string error;
584 int fd = network_connect(host.c_str(), port, SOCK_STREAM, 10, &error);
Elliott Hughes3d5f60d2015-07-18 12:21:30 -0700585 if (fd == -1) {
586 *response = android::base::StringPrintf("unable to connect to %s: %s",
Elliott Hughes381cfa92015-07-23 17:12:58 -0700587 serial.c_str(), error.c_str());
Elliott Hughes3d5f60d2015-07-18 12:21:30 -0700588 return;
589 }
590
Yabin Cui7a3f8d62015-09-02 17:44:28 -0700591 D("client: connected %s remote on fd %d", serial.c_str(), fd);
Benoit Goby1c45ee92013-03-29 18:22:36 -0700592 close_on_exec(fd);
593 disable_tcp_nagle(fd);
594
Elliott Hughese67f1f82015-04-30 17:32:03 -0700595 int ret = register_socket_transport(fd, serial.c_str(), port, 0);
Benoit Goby1c45ee92013-03-29 18:22:36 -0700596 if (ret < 0) {
597 adb_close(fd);
Elliott Hughese67f1f82015-04-30 17:32:03 -0700598 *response = android::base::StringPrintf("already connected to %s", serial.c_str());
Benoit Goby1c45ee92013-03-29 18:22:36 -0700599 } else {
Elliott Hughese67f1f82015-04-30 17:32:03 -0700600 *response = android::base::StringPrintf("connected to %s", serial.c_str());
Benoit Goby1c45ee92013-03-29 18:22:36 -0700601 }
602}
603
Elliott Hughese67f1f82015-04-30 17:32:03 -0700604void connect_emulator(const std::string& port_spec, std::string* response) {
605 std::vector<std::string> pieces = android::base::Split(port_spec, ",");
606 if (pieces.size() != 2) {
607 *response = android::base::StringPrintf("unable to parse '%s' as <console port>,<adb port>",
608 port_spec.c_str());
Benoit Goby1c45ee92013-03-29 18:22:36 -0700609 return;
610 }
611
Elliott Hughese67f1f82015-04-30 17:32:03 -0700612 int console_port = strtol(pieces[0].c_str(), NULL, 0);
613 int adb_port = strtol(pieces[1].c_str(), NULL, 0);
614 if (console_port <= 0 || adb_port <= 0) {
615 *response = android::base::StringPrintf("Invalid port numbers: %s", port_spec.c_str());
Benoit Goby1c45ee92013-03-29 18:22:36 -0700616 return;
617 }
618
Elliott Hughese67f1f82015-04-30 17:32:03 -0700619 // Check if the emulator is already known.
620 // Note: There's a small but harmless race condition here: An emulator not
621 // present just yet could be registered by another invocation right
622 // after doing this check here. However, local_connect protects
623 // against double-registration too. From here, a better error message
624 // can be produced. In the case of the race condition, the very specific
625 // error message won't be shown, but the data doesn't get corrupted.
Benoit Goby1c45ee92013-03-29 18:22:36 -0700626 atransport* known_emulator = find_emulator_transport_by_adb_port(adb_port);
Elliott Hughese67f1f82015-04-30 17:32:03 -0700627 if (known_emulator != nullptr) {
628 *response = android::base::StringPrintf("Emulator already registered on port %d", adb_port);
Benoit Goby1c45ee92013-03-29 18:22:36 -0700629 return;
630 }
631
Elliott Hughese67f1f82015-04-30 17:32:03 -0700632 // Check if more emulators can be registered. Similar unproblematic
633 // race condition as above.
Benoit Goby1c45ee92013-03-29 18:22:36 -0700634 int candidate_slot = get_available_local_transport_index();
635 if (candidate_slot < 0) {
Elliott Hughese67f1f82015-04-30 17:32:03 -0700636 *response = "Cannot accept more emulators";
Benoit Goby1c45ee92013-03-29 18:22:36 -0700637 return;
638 }
639
Elliott Hughese67f1f82015-04-30 17:32:03 -0700640 // Preconditions met, try to connect to the emulator.
Elliott Hughes381cfa92015-07-23 17:12:58 -0700641 std::string error;
642 if (!local_connect_arbitrary_ports(console_port, adb_port, &error)) {
Elliott Hughese67f1f82015-04-30 17:32:03 -0700643 *response = android::base::StringPrintf("Connected to emulator on ports %d,%d",
644 console_port, adb_port);
Benoit Goby1c45ee92013-03-29 18:22:36 -0700645 } else {
Elliott Hughes381cfa92015-07-23 17:12:58 -0700646 *response = android::base::StringPrintf("Could not connect to emulator on ports %d,%d: %s",
647 console_port, adb_port, error.c_str());
Benoit Goby1c45ee92013-03-29 18:22:36 -0700648 }
649}
650
Alan Jeon4af3c402014-10-16 17:05:25 +0900651static void connect_service(int fd, void* data) {
652 char* host = reinterpret_cast<char*>(data);
Elliott Hughese67f1f82015-04-30 17:32:03 -0700653 std::string response;
Benoit Goby1c45ee92013-03-29 18:22:36 -0700654 if (!strncmp(host, "emu:", 4)) {
Elliott Hughese67f1f82015-04-30 17:32:03 -0700655 connect_emulator(host + 4, &response);
Benoit Goby1c45ee92013-03-29 18:22:36 -0700656 } else {
Elliott Hughese67f1f82015-04-30 17:32:03 -0700657 connect_device(host, &response);
Benoit Goby1c45ee92013-03-29 18:22:36 -0700658 }
Alan Jeon4af3c402014-10-16 17:05:25 +0900659 free(host);
Benoit Goby1c45ee92013-03-29 18:22:36 -0700660
661 // Send response for emulator and device
Elliott Hughese67f1f82015-04-30 17:32:03 -0700662 SendProtocolString(fd, response);
Benoit Goby1c45ee92013-03-29 18:22:36 -0700663 adb_close(fd);
664}
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800665#endif
666
667#if ADB_HOST
Elliott Hughesaa245492015-08-03 10:38:08 -0700668asocket* host_service_to_socket(const char* name, const char* serial) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800669 if (!strcmp(name,"track-devices")) {
670 return create_device_tracker();
671 } else if (!strncmp(name, "wait-for-", strlen("wait-for-"))) {
Dan Albertbac34742015-02-25 17:51:28 -0800672 auto sinfo = reinterpret_cast<state_info*>(malloc(sizeof(state_info)));
Elliott Hughesdc3b4592015-04-21 19:39:52 -0700673 if (sinfo == nullptr) {
674 fprintf(stderr, "couldn't allocate state_info: %s", strerror(errno));
675 return NULL;
676 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800677
678 if (serial)
679 sinfo->serial = strdup(serial);
680 else
681 sinfo->serial = NULL;
682
683 name += strlen("wait-for-");
684
685 if (!strncmp(name, "local", strlen("local"))) {
Elliott Hughes3bd73c12015-05-05 13:10:43 -0700686 sinfo->transport_type = kTransportLocal;
Dan Albertdcd78a12015-05-18 16:43:57 -0700687 sinfo->state = kCsDevice;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800688 } else if (!strncmp(name, "usb", strlen("usb"))) {
Elliott Hughes3bd73c12015-05-05 13:10:43 -0700689 sinfo->transport_type = kTransportUsb;
Dan Albertdcd78a12015-05-18 16:43:57 -0700690 sinfo->state = kCsDevice;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800691 } else if (!strncmp(name, "any", strlen("any"))) {
Elliott Hughes3bd73c12015-05-05 13:10:43 -0700692 sinfo->transport_type = kTransportAny;
Dan Albertdcd78a12015-05-18 16:43:57 -0700693 sinfo->state = kCsDevice;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800694 } else {
Alan Jeon4af3c402014-10-16 17:05:25 +0900695 if (sinfo->serial) {
696 free(sinfo->serial);
697 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800698 free(sinfo);
699 return NULL;
700 }
701
702 int fd = create_service_thread(wait_for_state, sinfo);
703 return create_local_socket(fd);
Benoit Goby1c45ee92013-03-29 18:22:36 -0700704 } else if (!strncmp(name, "connect:", 8)) {
Alan Jeon4af3c402014-10-16 17:05:25 +0900705 char* host = strdup(name + 8);
706 int fd = create_service_thread(connect_service, host);
Benoit Goby1c45ee92013-03-29 18:22:36 -0700707 return create_local_socket(fd);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800708 }
709 return NULL;
710}
711#endif /* ADB_HOST */