blob: c8c2d5469a98536f019c87bc1deefd5c569fd2d1 [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);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080070 sti->func(sti->fd, sti->cookie);
71 free(sti);
72 return 0;
73}
74
Benoit Goby9470c2f2013-02-20 15:04:53 -080075#if !ADB_HOST
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080076
Elliott Hughesab52c182015-05-01 17:04:38 -070077void restart_root_service(int fd, void *cookie) {
The Android Open Source Projecte037fd72009-03-13 13:04:37 -070078 if (getuid() == 0) {
Elliott Hughesab52c182015-05-01 17:04:38 -070079 WriteFdExactly(fd, "adbd is already running as root\n");
The Android Open Source Projecte037fd72009-03-13 13:04:37 -070080 adb_close(fd);
81 } else {
Elliott Hughesab52c182015-05-01 17:04:38 -070082 char value[PROPERTY_VALUE_MAX];
The Android Open Source Projecte037fd72009-03-13 13:04:37 -070083 property_get("ro.debuggable", value, "");
84 if (strcmp(value, "1") != 0) {
Elliott Hughesab52c182015-05-01 17:04:38 -070085 WriteFdExactly(fd, "adbd cannot run as root in production builds\n");
Mike Lockwoodff196702009-08-24 15:58:40 -070086 adb_close(fd);
The Android Open Source Projecte037fd72009-03-13 13:04:37 -070087 return;
88 }
89
Benoit Goby7941cf82012-03-16 14:44:17 -070090 property_set("service.adb.root", "1");
Elliott Hughesab52c182015-05-01 17:04:38 -070091 WriteFdExactly(fd, "restarting adbd as root\n");
The Android Open Source Projecte037fd72009-03-13 13:04:37 -070092 adb_close(fd);
The Android Open Source Projecte037fd72009-03-13 13:04:37 -070093 }
94}
95
Elliott Hughesab52c182015-05-01 17:04:38 -070096void restart_unroot_service(int fd, void *cookie) {
Dan Pasanen98858812014-10-06 12:57:20 -050097 if (getuid() != 0) {
Elliott Hughesab52c182015-05-01 17:04:38 -070098 WriteFdExactly(fd, "adbd not running as root\n");
Dan Pasanen98858812014-10-06 12:57:20 -050099 adb_close(fd);
100 } else {
101 property_set("service.adb.root", "0");
Elliott Hughesab52c182015-05-01 17:04:38 -0700102 WriteFdExactly(fd, "restarting adbd as non root\n");
Dan Pasanen98858812014-10-06 12:57:20 -0500103 adb_close(fd);
104 }
105}
106
Elliott Hughesab52c182015-05-01 17:04:38 -0700107void restart_tcp_service(int fd, void *cookie) {
Elliott Hughesccecf142014-01-16 10:53:11 -0800108 int port = (int) (uintptr_t) cookie;
Mike Lockwoodff196702009-08-24 15:58:40 -0700109 if (port <= 0) {
Elliott Hughesab52c182015-05-01 17:04:38 -0700110 WriteFdFmt(fd, "invalid port %d\n", port);
Mike Lockwoodff196702009-08-24 15:58:40 -0700111 adb_close(fd);
112 return;
113 }
114
Elliott Hughesab52c182015-05-01 17:04:38 -0700115 char value[PROPERTY_VALUE_MAX];
Mike Lockwoodff196702009-08-24 15:58:40 -0700116 snprintf(value, sizeof(value), "%d", port);
117 property_set("service.adb.tcp.port", value);
Elliott Hughesab52c182015-05-01 17:04:38 -0700118 WriteFdFmt(fd, "restarting in TCP mode port: %d\n", port);
Mike Lockwoodff196702009-08-24 15:58:40 -0700119 adb_close(fd);
Mike Lockwoodff196702009-08-24 15:58:40 -0700120}
121
Elliott Hughesab52c182015-05-01 17:04:38 -0700122void restart_usb_service(int fd, void *cookie) {
Mike Lockwoodff196702009-08-24 15:58:40 -0700123 property_set("service.adb.tcp.port", "0");
Elliott Hughesab52c182015-05-01 17:04:38 -0700124 WriteFdExactly(fd, "restarting in USB mode\n");
Mike Lockwoodff196702009-08-24 15:58:40 -0700125 adb_close(fd);
Mike Lockwoodff196702009-08-24 15:58:40 -0700126}
127
Tao Bao175b7bb2015-03-29 11:22:34 -0700128static bool reboot_service_impl(int fd, const char* arg) {
129 const char* reboot_arg = arg;
130 bool auto_reboot = false;
131
132 if (strcmp(reboot_arg, "sideload-auto-reboot") == 0) {
133 auto_reboot = true;
134 reboot_arg = "sideload";
135 }
136
Tao Bao175b7bb2015-03-29 11:22:34 -0700137 // It reboots into sideload mode by setting "--sideload" or "--sideload_auto_reboot"
138 // in the command file.
139 if (strcmp(reboot_arg, "sideload") == 0) {
140 if (getuid() != 0) {
Elliott Hughese67f1f82015-04-30 17:32:03 -0700141 WriteFdExactly(fd, "'adb root' is required for 'adb reboot sideload'.\n");
Tao Bao175b7bb2015-03-29 11:22:34 -0700142 return false;
143 }
144
145 const char* const recovery_dir = "/cache/recovery";
146 const char* const command_file = "/cache/recovery/command";
147 // Ensure /cache/recovery exists.
148 if (adb_mkdir(recovery_dir, 0770) == -1 && errno != EEXIST) {
149 D("Failed to create directory '%s': %s\n", recovery_dir, strerror(errno));
150 return false;
151 }
152
153 bool write_status = android::base::WriteStringToFile(
154 auto_reboot ? "--sideload_auto_reboot" : "--sideload", command_file);
155 if (!write_status) {
156 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
Tao Bao175b7bb2015-03-29 11:22:34 -0700164 char property_val[PROPERTY_VALUE_MAX];
165 int ret = snprintf(property_val, sizeof(property_val), "reboot,%s", reboot_arg);
166 if (ret >= static_cast<int>(sizeof(property_val))) {
Elliott Hughesab52c182015-05-01 17:04:38 -0700167 WriteFdFmt(fd, "reboot string too long: %d\n", ret);
Tao Bao175b7bb2015-03-29 11:22:34 -0700168 return false;
Nick Kralevichca8e66a2013-04-18 12:20:02 -0700169 }
170
171 ret = property_set(ANDROID_RB_PROPERTY, property_val);
Mike Lockwoodee156622009-08-04 20:37:51 -0400172 if (ret < 0) {
Elliott Hughesab52c182015-05-01 17:04:38 -0700173 WriteFdFmt(fd, "reboot failed: %d\n", ret);
Tao Bao175b7bb2015-03-29 11:22:34 -0700174 return false;
Mike Lockwoodee156622009-08-04 20:37:51 -0400175 }
Tao Bao175b7bb2015-03-29 11:22:34 -0700176
177 return true;
178}
179
180void reboot_service(int fd, void* arg)
181{
182 if (reboot_service_impl(fd, static_cast<const char*>(arg))) {
183 // Don't return early. Give the reboot command time to take effect
184 // to avoid messing up scripts which do "adb reboot && adb wait-for-device"
Elliott Hughesa7090b92015-04-17 17:03:59 -0700185 while (true) {
Tao Bao175b7bb2015-03-29 11:22:34 -0700186 pause();
187 }
188 }
189
Mike Lockwoodb6b40072009-09-19 16:52:58 -0400190 free(arg);
Mike Lockwoodee156622009-08-04 20:37:51 -0400191 adb_close(fd);
192}
193
David 'Digit' Turner25258692013-03-21 21:07:42 +0100194void reverse_service(int fd, void* arg)
195{
Dan Albertbac34742015-02-25 17:51:28 -0800196 const char* command = reinterpret_cast<const char*>(arg);
David 'Digit' Turner25258692013-03-21 21:07:42 +0100197
198 if (handle_forward_request(command, kTransportAny, NULL, fd) < 0) {
Elliott Hughese67f1f82015-04-30 17:32:03 -0700199 SendFail(fd, "not a reverse forwarding command");
David 'Digit' Turner25258692013-03-21 21:07:42 +0100200 }
201 free(arg);
202 adb_close(fd);
203}
204
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800205#endif
206
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800207static int create_service_thread(void (*func)(int, void *), void *cookie)
208{
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800209 int s[2];
Dan Albertbac34742015-02-25 17:51:28 -0800210 if (adb_socketpair(s)) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800211 printf("cannot create service socket pair\n");
212 return -1;
213 }
Spencer Low8d8126a2015-07-21 02:06:26 -0700214 D("socketpair: (%d,%d)\n", s[0], s[1]);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800215
Dan Albertbac34742015-02-25 17:51:28 -0800216 stinfo* sti = reinterpret_cast<stinfo*>(malloc(sizeof(stinfo)));
217 if (sti == nullptr) {
218 fatal("cannot allocate stinfo");
219 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800220 sti->func = func;
221 sti->cookie = cookie;
222 sti->fd = s[1];
223
Elliott Hughes9b0f3542015-05-05 13:41:21 -0700224 if (!adb_thread_create(service_bootstrap_func, sti)) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800225 free(sti);
226 adb_close(s[0]);
227 adb_close(s[1]);
228 printf("cannot create service thread\n");
229 return -1;
230 }
231
232 D("service thread started, %d:%d\n",s[0], s[1]);
233 return s[0];
234}
235
JP Abgrall408fa572011-03-16 15:57:42 -0700236#if !ADB_HOST
Jeff Sharkey5d9d4342014-05-26 18:30:43 -0700237
238static void init_subproc_child()
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800239{
Jeff Sharkey5d9d4342014-05-26 18:30:43 -0700240 setsid();
241
Rom Lemarchand07ce7ca2014-06-20 16:30:54 -0700242 // Set OOM score adjustment to prevent killing
Nick Kralevichfe8d7f42014-07-18 20:57:35 -0700243 int fd = adb_open("/proc/self/oom_score_adj", O_WRONLY | O_CLOEXEC);
Jeff Sharkey5d9d4342014-05-26 18:30:43 -0700244 if (fd >= 0) {
245 adb_write(fd, "0", 1);
246 adb_close(fd);
247 } else {
Rom Lemarchand07ce7ca2014-06-20 16:30:54 -0700248 D("adb: unable to update oom_score_adj\n");
Jeff Sharkey5d9d4342014-05-26 18:30:43 -0700249 }
250}
251
Dan Albert569a1302015-05-15 12:56:23 -0700252#if !ADB_HOST
253static int create_subproc_pty(const char* cmd, const char* arg0,
254 const char* arg1, pid_t* pid) {
Jeff Sharkey5d9d4342014-05-26 18:30:43 -0700255 D("create_subproc_pty(cmd=%s, arg0=%s, arg1=%s)\n", cmd, arg0, arg1);
Dan Albert569a1302015-05-15 12:56:23 -0700256 char pts_name[PATH_MAX];
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800257 int ptm;
Dan Albert569a1302015-05-15 12:56:23 -0700258 *pid = forkpty(&ptm, pts_name, nullptr, nullptr);
259 if (*pid == -1) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800260 printf("- fork failed: %s -\n", strerror(errno));
Spencer Low6ac5d7d2015-05-22 20:09:06 -0700261 unix_close(ptm);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800262 return -1;
263 }
264
Jeff Sharkey5d9d4342014-05-26 18:30:43 -0700265 if (*pid == 0) {
266 init_subproc_child();
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800267
Dan Albert569a1302015-05-15 12:56:23 -0700268 int pts = unix_open(pts_name, O_RDWR | O_CLOEXEC);
269 if (pts == -1) {
270 fprintf(stderr, "child failed to open pseudo-term slave %s: %s\n",
271 pts_name, strerror(errno));
Spencer Low6ac5d7d2015-05-22 20:09:06 -0700272 unix_close(ptm);
JP Abgrall408fa572011-03-16 15:57:42 -0700273 exit(-1);
274 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800275
Dan Albert569a1302015-05-15 12:56:23 -0700276 // arg0 is "-c" in batch mode and "-" in interactive mode.
277 if (strcmp(arg0, "-c") == 0) {
278 termios tattr;
279 if (tcgetattr(pts, &tattr) == -1) {
280 fprintf(stderr, "tcgetattr failed: %s\n", strerror(errno));
Spencer Low6ac5d7d2015-05-22 20:09:06 -0700281 unix_close(pts);
282 unix_close(ptm);
Dan Albert569a1302015-05-15 12:56:23 -0700283 exit(-1);
284 }
285
286 cfmakeraw(&tattr);
287 if (tcsetattr(pts, TCSADRAIN, &tattr) == -1) {
288 fprintf(stderr, "tcsetattr failed: %s\n", strerror(errno));
Spencer Low6ac5d7d2015-05-22 20:09:06 -0700289 unix_close(pts);
290 unix_close(ptm);
Dan Albert569a1302015-05-15 12:56:23 -0700291 exit(-1);
292 }
293 }
294
Jeff Sharkey5d9d4342014-05-26 18:30:43 -0700295 dup2(pts, STDIN_FILENO);
296 dup2(pts, STDOUT_FILENO);
297 dup2(pts, STDERR_FILENO);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800298
Spencer Low6ac5d7d2015-05-22 20:09:06 -0700299 unix_close(pts);
300 unix_close(ptm);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800301
Dan Albert569a1302015-05-15 12:56:23 -0700302 execl(cmd, cmd, arg0, arg1, nullptr);
JP Abgrall408fa572011-03-16 15:57:42 -0700303 fprintf(stderr, "- exec '%s' failed: %s (%d) -\n",
304 cmd, strerror(errno), errno);
305 exit(-1);
306 } else {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800307 return ptm;
308 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800309}
Dan Albert569a1302015-05-15 12:56:23 -0700310#endif // !ADB_HOST
Jeff Sharkey5d9d4342014-05-26 18:30:43 -0700311
312static int create_subproc_raw(const char *cmd, const char *arg0, const char *arg1, pid_t *pid)
313{
314 D("create_subproc_raw(cmd=%s, arg0=%s, arg1=%s)\n", cmd, arg0, arg1);
Yabin Cuie77b6a02014-11-11 09:24:11 -0800315#if defined(_WIN32)
Jeff Sharkey5d9d4342014-05-26 18:30:43 -0700316 fprintf(stderr, "error: create_subproc_raw not implemented on Win32 (%s %s %s)\n", cmd, arg0, arg1);
317 return -1;
Yabin Cuie77b6a02014-11-11 09:24:11 -0800318#else
Jeff Sharkey5d9d4342014-05-26 18:30:43 -0700319
320 // 0 is parent socket, 1 is child socket
321 int sv[2];
leozwangcbf02672014-08-15 09:51:27 -0700322 if (adb_socketpair(sv) < 0) {
Jeff Sharkey5d9d4342014-05-26 18:30:43 -0700323 printf("[ cannot create socket pair - %s ]\n", strerror(errno));
324 return -1;
325 }
Spencer Low8d8126a2015-07-21 02:06:26 -0700326 D("socketpair: (%d,%d)\n", sv[0], sv[1]);
Jeff Sharkey5d9d4342014-05-26 18:30:43 -0700327
328 *pid = fork();
329 if (*pid < 0) {
330 printf("- fork failed: %s -\n", strerror(errno));
331 adb_close(sv[0]);
332 adb_close(sv[1]);
333 return -1;
334 }
335
336 if (*pid == 0) {
337 adb_close(sv[0]);
338 init_subproc_child();
339
Jeff Sharkey5d9d4342014-05-26 18:30:43 -0700340 dup2(sv[1], STDIN_FILENO);
341 dup2(sv[1], STDOUT_FILENO);
Jeff Sharkey960df972014-06-09 17:30:57 -0700342 dup2(sv[1], STDERR_FILENO);
343
Jeff Sharkey5d9d4342014-05-26 18:30:43 -0700344 adb_close(sv[1]);
345
346 execl(cmd, cmd, arg0, arg1, NULL);
347 fprintf(stderr, "- exec '%s' failed: %s (%d) -\n",
348 cmd, strerror(errno), errno);
349 exit(-1);
350 } else {
351 adb_close(sv[1]);
352 return sv[0];
353 }
Yabin Cuie77b6a02014-11-11 09:24:11 -0800354#endif /* !defined(_WIN32) */
Jeff Sharkey5d9d4342014-05-26 18:30:43 -0700355}
JP Abgrall408fa572011-03-16 15:57:42 -0700356#endif /* !ABD_HOST */
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800357
358#if ADB_HOST
359#define SHELL_COMMAND "/bin/sh"
360#else
361#define SHELL_COMMAND "/system/bin/sh"
362#endif
363
JP Abgrall408fa572011-03-16 15:57:42 -0700364#if !ADB_HOST
365static void subproc_waiter_service(int fd, void *cookie)
366{
Elliott Hughesccecf142014-01-16 10:53:11 -0800367 pid_t pid = (pid_t) (uintptr_t) cookie;
JP Abgrall408fa572011-03-16 15:57:42 -0700368
369 D("entered. fd=%d of pid=%d\n", fd, pid);
Elliott Hughesa7090b92015-04-17 17:03:59 -0700370 while (true) {
JP Abgrall408fa572011-03-16 15:57:42 -0700371 int status;
372 pid_t p = waitpid(pid, &status, 0);
373 if (p == pid) {
374 D("fd=%d, post waitpid(pid=%d) status=%04x\n", fd, p, status);
375 if (WIFSIGNALED(status)) {
376 D("*** Killed by signal %d\n", WTERMSIG(status));
377 break;
378 } else if (!WIFEXITED(status)) {
379 D("*** Didn't exit!!. status %d\n", status);
380 break;
381 } else if (WEXITSTATUS(status) >= 0) {
382 D("*** Exit code %d\n", WEXITSTATUS(status));
383 break;
384 }
385 }
JP Abgrall408fa572011-03-16 15:57:42 -0700386 }
387 D("shell exited fd=%d of pid=%d err=%d\n", fd, pid, errno);
388 if (SHELL_EXIT_NOTIFY_FD >=0) {
389 int res;
Dan Albertcc731cc2015-02-24 21:26:58 -0800390 res = WriteFdExactly(SHELL_EXIT_NOTIFY_FD, &fd, sizeof(fd)) ? 0 : -1;
JP Abgrall408fa572011-03-16 15:57:42 -0700391 D("notified shell exit via fd=%d for pid=%d res=%d errno=%d\n",
392 SHELL_EXIT_NOTIFY_FD, pid, res, errno);
393 }
394}
395
David Purselld4093f12015-08-10 12:52:16 -0700396// Starts a subprocess and spawns a thread to wait for the subprocess to finish
397// and trigger the necessary cleanup.
398//
399// |name| is the command to execute in the subprocess; empty string will start
400// an interactive session.
401// |type| selects between a PTY or raw subprocess.
402//
403// Returns an open file descriptor tied to the subprocess stdin/stdout/stderr.
404static int create_subproc_thread(const char *name, SubprocessType type) {
Jeff Sharkey5d9d4342014-05-26 18:30:43 -0700405 const char *arg0, *arg1;
David Purselld4093f12015-08-10 12:52:16 -0700406 if (*name == '\0') {
407 arg0 = "-";
408 arg1 = nullptr;
JP Abgrall408fa572011-03-16 15:57:42 -0700409 } else {
David Purselld4093f12015-08-10 12:52:16 -0700410 arg0 = "-c";
411 arg1 = name;
JP Abgrall408fa572011-03-16 15:57:42 -0700412 }
Jeff Sharkey5d9d4342014-05-26 18:30:43 -0700413
Elliott Hughes3bd73c12015-05-05 13:10:43 -0700414 pid_t pid = -1;
415 int ret_fd;
David Purselld4093f12015-08-10 12:52:16 -0700416 if (type == SubprocessType::kPty) {
Jeff Sharkey5d9d4342014-05-26 18:30:43 -0700417 ret_fd = create_subproc_pty(SHELL_COMMAND, arg0, arg1, &pid);
Elliott Hughes3bd73c12015-05-05 13:10:43 -0700418 } else {
Jeff Sharkey5d9d4342014-05-26 18:30:43 -0700419 ret_fd = create_subproc_raw(SHELL_COMMAND, arg0, arg1, &pid);
Jeff Sharkey5d9d4342014-05-26 18:30:43 -0700420 }
421 D("create_subproc ret_fd=%d pid=%d\n", ret_fd, pid);
JP Abgrall408fa572011-03-16 15:57:42 -0700422
Dan Albertbac34742015-02-25 17:51:28 -0800423 stinfo* sti = reinterpret_cast<stinfo*>(malloc(sizeof(stinfo)));
JP Abgrall408fa572011-03-16 15:57:42 -0700424 if(sti == 0) fatal("cannot allocate stinfo");
425 sti->func = subproc_waiter_service;
Elliott Hughesccecf142014-01-16 10:53:11 -0800426 sti->cookie = (void*) (uintptr_t) pid;
JP Abgrall408fa572011-03-16 15:57:42 -0700427 sti->fd = ret_fd;
428
Elliott Hughes9b0f3542015-05-05 13:41:21 -0700429 if (!adb_thread_create(service_bootstrap_func, sti)) {
JP Abgrall408fa572011-03-16 15:57:42 -0700430 free(sti);
431 adb_close(ret_fd);
Jeff Sharkey5d9d4342014-05-26 18:30:43 -0700432 fprintf(stderr, "cannot create service thread\n");
JP Abgrall408fa572011-03-16 15:57:42 -0700433 return -1;
434 }
435
Jeff Sharkey5d9d4342014-05-26 18:30:43 -0700436 D("service thread started, fd=%d pid=%d\n", ret_fd, pid);
JP Abgrall408fa572011-03-16 15:57:42 -0700437 return ret_fd;
438}
439#endif
440
Elliott Hughesaa245492015-08-03 10:38:08 -0700441int service_to_fd(const char* name) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800442 int ret = -1;
443
444 if(!strncmp(name, "tcp:", 4)) {
445 int port = atoi(name + 4);
446 name = strchr(name + 4, ':');
447 if(name == 0) {
Spencer Low5200c662015-07-30 23:07:55 -0700448 std::string error;
449 ret = network_loopback_client(port, SOCK_STREAM, &error);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800450 if (ret >= 0)
451 disable_tcp_nagle(ret);
452 } else {
453#if ADB_HOST
Elliott Hughes381cfa92015-07-23 17:12:58 -0700454 std::string error;
455 ret = network_connect(name + 1, port, SOCK_STREAM, 0, &error);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800456#else
457 return -1;
458#endif
459 }
Elliott Hughesadbf4422015-07-29 17:45:24 -0700460#if !defined(_WIN32) /* winsock doesn't implement unix domain sockets */
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800461 } else if(!strncmp(name, "local:", 6)) {
462 ret = socket_local_client(name + 6,
463 ANDROID_SOCKET_NAMESPACE_RESERVED, SOCK_STREAM);
464 } else if(!strncmp(name, "localreserved:", 14)) {
465 ret = socket_local_client(name + 14,
466 ANDROID_SOCKET_NAMESPACE_RESERVED, SOCK_STREAM);
467 } else if(!strncmp(name, "localabstract:", 14)) {
468 ret = socket_local_client(name + 14,
469 ANDROID_SOCKET_NAMESPACE_ABSTRACT, SOCK_STREAM);
470 } else if(!strncmp(name, "localfilesystem:", 16)) {
471 ret = socket_local_client(name + 16,
472 ANDROID_SOCKET_NAMESPACE_FILESYSTEM, SOCK_STREAM);
473#endif
Benoit Goby9470c2f2013-02-20 15:04:53 -0800474#if !ADB_HOST
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800475 } else if(!strncmp("dev:", name, 4)) {
Nick Kralevichfe8d7f42014-07-18 20:57:35 -0700476 ret = unix_open(name + 4, O_RDWR | O_CLOEXEC);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800477 } else if(!strncmp(name, "framebuffer:", 12)) {
478 ret = create_service_thread(framebuffer_service, 0);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800479 } else if (!strncmp(name, "jdwp:", 5)) {
480 ret = create_jdwp_connection_fd(atoi(name+5));
Yabin Cui661327e2015-08-11 13:40:42 -0700481 } else if(!strncmp(name, "shell:", 6)) {
David Purselld4093f12015-08-10 12:52:16 -0700482 const char* args = name + 6;
483 if (*args) {
484 // Non-interactive session uses a raw subprocess.
485 ret = create_subproc_thread(args, SubprocessType::kRaw);
486 } else {
487 // Interactive session uses a PTY subprocess.
488 ret = create_subproc_thread(args, SubprocessType::kPty);
489 }
Yabin Cui661327e2015-08-11 13:40:42 -0700490 } else if(!strncmp(name, "exec:", 5)) {
David Purselld4093f12015-08-10 12:52:16 -0700491 ret = create_subproc_thread(name + 5, SubprocessType::kRaw);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800492 } else if(!strncmp(name, "sync:", 5)) {
493 ret = create_service_thread(file_sync_service, NULL);
494 } else if(!strncmp(name, "remount:", 8)) {
495 ret = create_service_thread(remount_service, NULL);
Mike Lockwoodee156622009-08-04 20:37:51 -0400496 } else if(!strncmp(name, "reboot:", 7)) {
Mike Lockwoodb6b40072009-09-19 16:52:58 -0400497 void* arg = strdup(name + 7);
Jeff Sharkey5d9d4342014-05-26 18:30:43 -0700498 if (arg == NULL) return -1;
Mike Lockwoodb6b40072009-09-19 16:52:58 -0400499 ret = create_service_thread(reboot_service, arg);
The Android Open Source Projecte037fd72009-03-13 13:04:37 -0700500 } else if(!strncmp(name, "root:", 5)) {
501 ret = create_service_thread(restart_root_service, NULL);
Dan Pasanen98858812014-10-06 12:57:20 -0500502 } else if(!strncmp(name, "unroot:", 7)) {
503 ret = create_service_thread(restart_unroot_service, NULL);
Christopher Tated2f54152011-04-21 12:53:28 -0700504 } else if(!strncmp(name, "backup:", 7)) {
Elliott Hughesaa245492015-08-03 10:38:08 -0700505 ret = create_subproc_thread(android::base::StringPrintf("/system/bin/bu backup %s",
506 (name + 7)).c_str(),
David Purselld4093f12015-08-10 12:52:16 -0700507 SubprocessType::kRaw);
Elliott Hughesaa245492015-08-03 10:38:08 -0700508 } else if(!strncmp(name, "restore:", 8)) {
509 ret = create_subproc_thread("/system/bin/bu restore", SubprocessType::kRaw);
Mike Lockwoodff196702009-08-24 15:58:40 -0700510 } else if(!strncmp(name, "tcpip:", 6)) {
511 int port;
Spencer Low943ef232015-01-25 17:38:36 -0800512 if (sscanf(name + 6, "%d", &port) != 1) {
Elliott Hughes19d80b82015-07-21 16:13:40 -0700513 return -1;
Mike Lockwoodff196702009-08-24 15:58:40 -0700514 }
Elliott Hughesccecf142014-01-16 10:53:11 -0800515 ret = create_service_thread(restart_tcp_service, (void *) (uintptr_t) port);
Mike Lockwoodff196702009-08-24 15:58:40 -0700516 } else if(!strncmp(name, "usb:", 4)) {
517 ret = create_service_thread(restart_usb_service, NULL);
David 'Digit' Turner25258692013-03-21 21:07:42 +0100518 } else if (!strncmp(name, "reverse:", 8)) {
519 char* cookie = strdup(name + 8);
520 if (cookie == NULL) {
521 ret = -1;
522 } else {
523 ret = create_service_thread(reverse_service, cookie);
524 if (ret < 0) {
525 free(cookie);
526 }
527 }
Paul Lawrenceec900bb2014-10-09 14:22:49 +0000528 } else if(!strncmp(name, "disable-verity:", 15)) {
Paul Lawrence982089d2014-12-03 15:31:57 -0800529 ret = create_service_thread(set_verity_enabled_state_service, (void*)0);
530 } else if(!strncmp(name, "enable-verity:", 15)) {
531 ret = create_service_thread(set_verity_enabled_state_service, (void*)1);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800532#endif
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800533 }
534 if (ret >= 0) {
535 close_on_exec(ret);
536 }
537 return ret;
538}
539
540#if ADB_HOST
541struct state_info {
Elliott Hughes3bd73c12015-05-05 13:10:43 -0700542 TransportType transport_type;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800543 char* serial;
Dan Albertdcd78a12015-05-18 16:43:57 -0700544 ConnectionState state;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800545};
546
547static void wait_for_state(int fd, void* cookie)
548{
Dan Albertbac34742015-02-25 17:51:28 -0800549 state_info* sinfo = reinterpret_cast<state_info*>(cookie);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800550
551 D("wait_for_state %d\n", sinfo->state);
552
Elliott Hughes7be29c82015-04-16 22:54:44 -0700553 std::string error_msg = "unknown error";
Elliott Hughes3bd73c12015-05-05 13:10:43 -0700554 atransport* t = acquire_one_transport(sinfo->state, sinfo->transport_type, sinfo->serial,
555 &error_msg);
Elliott Hughese2d36772015-06-23 13:00:32 -0700556 if (t != nullptr) {
Elliott Hughese67f1f82015-04-30 17:32:03 -0700557 SendOkay(fd);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800558 } else {
Elliott Hughese67f1f82015-04-30 17:32:03 -0700559 SendFail(fd, error_msg);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800560 }
561
562 if (sinfo->serial)
563 free(sinfo->serial);
564 free(sinfo);
565 adb_close(fd);
566 D("wait_for_state is done\n");
567}
Benoit Goby1c45ee92013-03-29 18:22:36 -0700568
Elliott Hughes3d5f60d2015-07-18 12:21:30 -0700569static void connect_device(const std::string& address, std::string* response) {
570 if (address.empty()) {
571 *response = "empty address";
Elliott Hughese67f1f82015-04-30 17:32:03 -0700572 return;
Benoit Goby1c45ee92013-03-29 18:22:36 -0700573 }
574
Elliott Hughes3d5f60d2015-07-18 12:21:30 -0700575 std::string serial;
576 std::string host;
Elliott Hughese67f1f82015-04-30 17:32:03 -0700577 int port = DEFAULT_ADB_LOCAL_TRANSPORT_PORT;
Elliott Hughes3d5f60d2015-07-18 12:21:30 -0700578 if (!parse_host_and_port(address, &serial, &host, &port, response)) {
Benoit Goby1c45ee92013-03-29 18:22:36 -0700579 return;
580 }
581
Elliott Hughes381cfa92015-07-23 17:12:58 -0700582 std::string error;
583 int fd = network_connect(host.c_str(), port, SOCK_STREAM, 10, &error);
Elliott Hughes3d5f60d2015-07-18 12:21:30 -0700584 if (fd == -1) {
585 *response = android::base::StringPrintf("unable to connect to %s: %s",
Elliott Hughes381cfa92015-07-23 17:12:58 -0700586 serial.c_str(), error.c_str());
Elliott Hughes3d5f60d2015-07-18 12:21:30 -0700587 return;
588 }
589
590 D("client: connected %s remote on fd %d\n", serial.c_str(), fd);
Benoit Goby1c45ee92013-03-29 18:22:36 -0700591 close_on_exec(fd);
592 disable_tcp_nagle(fd);
593
Elliott Hughese67f1f82015-04-30 17:32:03 -0700594 int ret = register_socket_transport(fd, serial.c_str(), port, 0);
Benoit Goby1c45ee92013-03-29 18:22:36 -0700595 if (ret < 0) {
596 adb_close(fd);
Elliott Hughese67f1f82015-04-30 17:32:03 -0700597 *response = android::base::StringPrintf("already connected to %s", serial.c_str());
Benoit Goby1c45ee92013-03-29 18:22:36 -0700598 } else {
Elliott Hughese67f1f82015-04-30 17:32:03 -0700599 *response = android::base::StringPrintf("connected to %s", serial.c_str());
Benoit Goby1c45ee92013-03-29 18:22:36 -0700600 }
601}
602
Elliott Hughese67f1f82015-04-30 17:32:03 -0700603void connect_emulator(const std::string& port_spec, std::string* response) {
604 std::vector<std::string> pieces = android::base::Split(port_spec, ",");
605 if (pieces.size() != 2) {
606 *response = android::base::StringPrintf("unable to parse '%s' as <console port>,<adb port>",
607 port_spec.c_str());
Benoit Goby1c45ee92013-03-29 18:22:36 -0700608 return;
609 }
610
Elliott Hughese67f1f82015-04-30 17:32:03 -0700611 int console_port = strtol(pieces[0].c_str(), NULL, 0);
612 int adb_port = strtol(pieces[1].c_str(), NULL, 0);
613 if (console_port <= 0 || adb_port <= 0) {
614 *response = android::base::StringPrintf("Invalid port numbers: %s", port_spec.c_str());
Benoit Goby1c45ee92013-03-29 18:22:36 -0700615 return;
616 }
617
Elliott Hughese67f1f82015-04-30 17:32:03 -0700618 // Check if the emulator is already known.
619 // Note: There's a small but harmless race condition here: An emulator not
620 // present just yet could be registered by another invocation right
621 // after doing this check here. However, local_connect protects
622 // against double-registration too. From here, a better error message
623 // can be produced. In the case of the race condition, the very specific
624 // error message won't be shown, but the data doesn't get corrupted.
Benoit Goby1c45ee92013-03-29 18:22:36 -0700625 atransport* known_emulator = find_emulator_transport_by_adb_port(adb_port);
Elliott Hughese67f1f82015-04-30 17:32:03 -0700626 if (known_emulator != nullptr) {
627 *response = android::base::StringPrintf("Emulator already registered on port %d", adb_port);
Benoit Goby1c45ee92013-03-29 18:22:36 -0700628 return;
629 }
630
Elliott Hughese67f1f82015-04-30 17:32:03 -0700631 // Check if more emulators can be registered. Similar unproblematic
632 // race condition as above.
Benoit Goby1c45ee92013-03-29 18:22:36 -0700633 int candidate_slot = get_available_local_transport_index();
634 if (candidate_slot < 0) {
Elliott Hughese67f1f82015-04-30 17:32:03 -0700635 *response = "Cannot accept more emulators";
Benoit Goby1c45ee92013-03-29 18:22:36 -0700636 return;
637 }
638
Elliott Hughese67f1f82015-04-30 17:32:03 -0700639 // Preconditions met, try to connect to the emulator.
Elliott Hughes381cfa92015-07-23 17:12:58 -0700640 std::string error;
641 if (!local_connect_arbitrary_ports(console_port, adb_port, &error)) {
Elliott Hughese67f1f82015-04-30 17:32:03 -0700642 *response = android::base::StringPrintf("Connected to emulator on ports %d,%d",
643 console_port, adb_port);
Benoit Goby1c45ee92013-03-29 18:22:36 -0700644 } else {
Elliott Hughes381cfa92015-07-23 17:12:58 -0700645 *response = android::base::StringPrintf("Could not connect to emulator on ports %d,%d: %s",
646 console_port, adb_port, error.c_str());
Benoit Goby1c45ee92013-03-29 18:22:36 -0700647 }
648}
649
Alan Jeon4af3c402014-10-16 17:05:25 +0900650static void connect_service(int fd, void* data) {
651 char* host = reinterpret_cast<char*>(data);
Elliott Hughese67f1f82015-04-30 17:32:03 -0700652 std::string response;
Benoit Goby1c45ee92013-03-29 18:22:36 -0700653 if (!strncmp(host, "emu:", 4)) {
Elliott Hughese67f1f82015-04-30 17:32:03 -0700654 connect_emulator(host + 4, &response);
Benoit Goby1c45ee92013-03-29 18:22:36 -0700655 } else {
Elliott Hughese67f1f82015-04-30 17:32:03 -0700656 connect_device(host, &response);
Benoit Goby1c45ee92013-03-29 18:22:36 -0700657 }
Alan Jeon4af3c402014-10-16 17:05:25 +0900658 free(host);
Benoit Goby1c45ee92013-03-29 18:22:36 -0700659
660 // Send response for emulator and device
Elliott Hughese67f1f82015-04-30 17:32:03 -0700661 SendProtocolString(fd, response);
Benoit Goby1c45ee92013-03-29 18:22:36 -0700662 adb_close(fd);
663}
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800664#endif
665
666#if ADB_HOST
Elliott Hughesaa245492015-08-03 10:38:08 -0700667asocket* host_service_to_socket(const char* name, const char* serial) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800668 if (!strcmp(name,"track-devices")) {
669 return create_device_tracker();
670 } else if (!strncmp(name, "wait-for-", strlen("wait-for-"))) {
Dan Albertbac34742015-02-25 17:51:28 -0800671 auto sinfo = reinterpret_cast<state_info*>(malloc(sizeof(state_info)));
Elliott Hughesdc3b4592015-04-21 19:39:52 -0700672 if (sinfo == nullptr) {
673 fprintf(stderr, "couldn't allocate state_info: %s", strerror(errno));
674 return NULL;
675 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800676
677 if (serial)
678 sinfo->serial = strdup(serial);
679 else
680 sinfo->serial = NULL;
681
682 name += strlen("wait-for-");
683
684 if (!strncmp(name, "local", strlen("local"))) {
Elliott Hughes3bd73c12015-05-05 13:10:43 -0700685 sinfo->transport_type = kTransportLocal;
Dan Albertdcd78a12015-05-18 16:43:57 -0700686 sinfo->state = kCsDevice;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800687 } else if (!strncmp(name, "usb", strlen("usb"))) {
Elliott Hughes3bd73c12015-05-05 13:10:43 -0700688 sinfo->transport_type = kTransportUsb;
Dan Albertdcd78a12015-05-18 16:43:57 -0700689 sinfo->state = kCsDevice;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800690 } else if (!strncmp(name, "any", strlen("any"))) {
Elliott Hughes3bd73c12015-05-05 13:10:43 -0700691 sinfo->transport_type = kTransportAny;
Dan Albertdcd78a12015-05-18 16:43:57 -0700692 sinfo->state = kCsDevice;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800693 } else {
Alan Jeon4af3c402014-10-16 17:05:25 +0900694 if (sinfo->serial) {
695 free(sinfo->serial);
696 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800697 free(sinfo);
698 return NULL;
699 }
700
701 int fd = create_service_thread(wait_for_state, sinfo);
702 return create_local_socket(fd);
Benoit Goby1c45ee92013-03-29 18:22:36 -0700703 } else if (!strncmp(name, "connect:", 8)) {
Alan Jeon4af3c402014-10-16 17:05:25 +0900704 char* host = strdup(name + 8);
705 int fd = create_service_thread(connect_service, host);
Benoit Goby1c45ee92013-03-29 18:22:36 -0700706 return create_local_socket(fd);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800707 }
708 return NULL;
709}
710#endif /* ADB_HOST */