blob: 68545d8bdf3437a7b87e2160d7d5e85bcf229e5e [file] [log] [blame]
The Android Open Source Project9ca14dc2009-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 Albertdb6fe642015-03-19 15:21:08 -070017#define TRACE_TAG TRACE_SERVICES
18
19#include "sysdeps.h"
20
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -080021#include <errno.h>
Dan Albertb302d122015-02-24 15:51:19 -080022#include <stddef.h>
23#include <stdio.h>
24#include <stdlib.h>
25#include <string.h>
26
Dan Albert9c028f92015-05-15 12:56:23 -070027#if !ADB_HOST
28#include <pty.h>
29#include <termios.h>
30#endif
31
Dan Albertb302d122015-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 Hughes88b4c852015-04-30 17:32:03 -070039#include <base/file.h>
Elliott Hughese4b64792015-04-17 20:11:08 -070040#include <base/stringprintf.h>
Elliott Hughes88b4c852015-04-30 17:32:03 -070041#include <base/strings.h>
Elliott Hughes43df1092015-07-23 17:12:58 -070042#include <cutils/sockets.h>
Elliott Hughese4b64792015-04-17 20:11:08 -070043
Dan Albertb302d122015-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 Project9ca14dc2009-03-03 19:32:55 -080048
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -080049#include "adb.h"
Dan Albert66a91b02015-02-24 21:26:58 -080050#include "adb_io.h"
Elliott Hughes09ccf1f2015-07-18 12:21:30 -070051#include "adb_utils.h"
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -080052#include "file_sync_service.h"
Elliott Hughesdedf7672015-03-16 21:58:32 +000053#include "remount_service.h"
Dan Albertb302d122015-02-24 15:51:19 -080054#include "transport.h"
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -080055
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -080056struct stinfo {
57 void (*func)(int fd, void *cookie);
58 int fd;
59 void *cookie;
60};
61
62
63void *service_bootstrap_func(void *x)
64{
Dan Albertf30d73c2015-02-25 17:51:28 -080065 stinfo* sti = reinterpret_cast<stinfo*>(x);
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -080066 sti->func(sti->fd, sti->cookie);
67 free(sti);
68 return 0;
69}
70
Benoit Goby12dc3692013-02-20 15:04:53 -080071#if !ADB_HOST
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -080072
Elliott Hughesfb596842015-05-01 17:04:38 -070073void restart_root_service(int fd, void *cookie) {
The Android Open Source Project9c753402009-03-13 13:04:37 -070074 if (getuid() == 0) {
Elliott Hughesfb596842015-05-01 17:04:38 -070075 WriteFdExactly(fd, "adbd is already running as root\n");
The Android Open Source Project9c753402009-03-13 13:04:37 -070076 adb_close(fd);
77 } else {
Elliott Hughesfb596842015-05-01 17:04:38 -070078 char value[PROPERTY_VALUE_MAX];
The Android Open Source Project9c753402009-03-13 13:04:37 -070079 property_get("ro.debuggable", value, "");
80 if (strcmp(value, "1") != 0) {
Elliott Hughesfb596842015-05-01 17:04:38 -070081 WriteFdExactly(fd, "adbd cannot run as root in production builds\n");
Mike Lockwood26b88e32009-08-24 15:58:40 -070082 adb_close(fd);
The Android Open Source Project9c753402009-03-13 13:04:37 -070083 return;
84 }
85
Benoit Gobyad926c12012-03-16 14:44:17 -070086 property_set("service.adb.root", "1");
Elliott Hughesfb596842015-05-01 17:04:38 -070087 WriteFdExactly(fd, "restarting adbd as root\n");
The Android Open Source Project9c753402009-03-13 13:04:37 -070088 adb_close(fd);
The Android Open Source Project9c753402009-03-13 13:04:37 -070089 }
90}
91
Elliott Hughesfb596842015-05-01 17:04:38 -070092void restart_unroot_service(int fd, void *cookie) {
Dan Pasanenfb787d92014-10-06 12:57:20 -050093 if (getuid() != 0) {
Elliott Hughesfb596842015-05-01 17:04:38 -070094 WriteFdExactly(fd, "adbd not running as root\n");
Dan Pasanenfb787d92014-10-06 12:57:20 -050095 adb_close(fd);
96 } else {
97 property_set("service.adb.root", "0");
Elliott Hughesfb596842015-05-01 17:04:38 -070098 WriteFdExactly(fd, "restarting adbd as non root\n");
Dan Pasanenfb787d92014-10-06 12:57:20 -050099 adb_close(fd);
100 }
101}
102
Elliott Hughesfb596842015-05-01 17:04:38 -0700103void restart_tcp_service(int fd, void *cookie) {
Elliott Hughes9c0d9402014-01-16 10:53:11 -0800104 int port = (int) (uintptr_t) cookie;
Mike Lockwood26b88e32009-08-24 15:58:40 -0700105 if (port <= 0) {
Elliott Hughesfb596842015-05-01 17:04:38 -0700106 WriteFdFmt(fd, "invalid port %d\n", port);
Mike Lockwood26b88e32009-08-24 15:58:40 -0700107 adb_close(fd);
108 return;
109 }
110
Elliott Hughesfb596842015-05-01 17:04:38 -0700111 char value[PROPERTY_VALUE_MAX];
Mike Lockwood26b88e32009-08-24 15:58:40 -0700112 snprintf(value, sizeof(value), "%d", port);
113 property_set("service.adb.tcp.port", value);
Elliott Hughesfb596842015-05-01 17:04:38 -0700114 WriteFdFmt(fd, "restarting in TCP mode port: %d\n", port);
Mike Lockwood26b88e32009-08-24 15:58:40 -0700115 adb_close(fd);
Mike Lockwood26b88e32009-08-24 15:58:40 -0700116}
117
Elliott Hughesfb596842015-05-01 17:04:38 -0700118void restart_usb_service(int fd, void *cookie) {
Mike Lockwood26b88e32009-08-24 15:58:40 -0700119 property_set("service.adb.tcp.port", "0");
Elliott Hughesfb596842015-05-01 17:04:38 -0700120 WriteFdExactly(fd, "restarting in USB mode\n");
Mike Lockwood26b88e32009-08-24 15:58:40 -0700121 adb_close(fd);
Mike Lockwood26b88e32009-08-24 15:58:40 -0700122}
123
Tao Bao0db67642015-03-29 11:22:34 -0700124static bool reboot_service_impl(int fd, const char* arg) {
125 const char* reboot_arg = arg;
126 bool auto_reboot = false;
127
128 if (strcmp(reboot_arg, "sideload-auto-reboot") == 0) {
129 auto_reboot = true;
130 reboot_arg = "sideload";
131 }
132
Tao Bao0db67642015-03-29 11:22:34 -0700133 // It reboots into sideload mode by setting "--sideload" or "--sideload_auto_reboot"
134 // in the command file.
135 if (strcmp(reboot_arg, "sideload") == 0) {
136 if (getuid() != 0) {
Elliott Hughes88b4c852015-04-30 17:32:03 -0700137 WriteFdExactly(fd, "'adb root' is required for 'adb reboot sideload'.\n");
Tao Bao0db67642015-03-29 11:22:34 -0700138 return false;
139 }
140
141 const char* const recovery_dir = "/cache/recovery";
142 const char* const command_file = "/cache/recovery/command";
143 // Ensure /cache/recovery exists.
144 if (adb_mkdir(recovery_dir, 0770) == -1 && errno != EEXIST) {
145 D("Failed to create directory '%s': %s\n", recovery_dir, strerror(errno));
146 return false;
147 }
148
149 bool write_status = android::base::WriteStringToFile(
150 auto_reboot ? "--sideload_auto_reboot" : "--sideload", command_file);
151 if (!write_status) {
152 return false;
153 }
154
155 reboot_arg = "recovery";
156 }
Mike Lockwood12a35ea2009-08-04 20:37:51 -0400157
158 sync();
Mike Lockwoodd49e9eb2010-02-24 16:07:23 -0500159
Tao Bao0db67642015-03-29 11:22:34 -0700160 char property_val[PROPERTY_VALUE_MAX];
161 int ret = snprintf(property_val, sizeof(property_val), "reboot,%s", reboot_arg);
162 if (ret >= static_cast<int>(sizeof(property_val))) {
Elliott Hughesfb596842015-05-01 17:04:38 -0700163 WriteFdFmt(fd, "reboot string too long: %d\n", ret);
Tao Bao0db67642015-03-29 11:22:34 -0700164 return false;
Nick Kralevichb7df0172013-04-18 12:20:02 -0700165 }
166
167 ret = property_set(ANDROID_RB_PROPERTY, property_val);
Mike Lockwood12a35ea2009-08-04 20:37:51 -0400168 if (ret < 0) {
Elliott Hughesfb596842015-05-01 17:04:38 -0700169 WriteFdFmt(fd, "reboot failed: %d\n", ret);
Tao Bao0db67642015-03-29 11:22:34 -0700170 return false;
Mike Lockwood12a35ea2009-08-04 20:37:51 -0400171 }
Tao Bao0db67642015-03-29 11:22:34 -0700172
173 return true;
174}
175
176void reboot_service(int fd, void* arg)
177{
178 if (reboot_service_impl(fd, static_cast<const char*>(arg))) {
179 // Don't return early. Give the reboot command time to take effect
180 // to avoid messing up scripts which do "adb reboot && adb wait-for-device"
Elliott Hughes7cf35752015-04-17 17:03:59 -0700181 while (true) {
Tao Bao0db67642015-03-29 11:22:34 -0700182 pause();
183 }
184 }
185
Mike Lockwood1a855ae2009-09-19 16:52:58 -0400186 free(arg);
Mike Lockwood12a35ea2009-08-04 20:37:51 -0400187 adb_close(fd);
188}
189
David 'Digit' Turner963a4492013-03-21 21:07:42 +0100190void reverse_service(int fd, void* arg)
191{
Dan Albertf30d73c2015-02-25 17:51:28 -0800192 const char* command = reinterpret_cast<const char*>(arg);
David 'Digit' Turner963a4492013-03-21 21:07:42 +0100193
194 if (handle_forward_request(command, kTransportAny, NULL, fd) < 0) {
Elliott Hughes88b4c852015-04-30 17:32:03 -0700195 SendFail(fd, "not a reverse forwarding command");
David 'Digit' Turner963a4492013-03-21 21:07:42 +0100196 }
197 free(arg);
198 adb_close(fd);
199}
200
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800201#endif
202
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800203static int create_service_thread(void (*func)(int, void *), void *cookie)
204{
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800205 int s[2];
Dan Albertf30d73c2015-02-25 17:51:28 -0800206 if (adb_socketpair(s)) {
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800207 printf("cannot create service socket pair\n");
208 return -1;
209 }
Spencer Low5c761bd2015-07-21 02:06:26 -0700210 D("socketpair: (%d,%d)\n", s[0], s[1]);
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800211
Dan Albertf30d73c2015-02-25 17:51:28 -0800212 stinfo* sti = reinterpret_cast<stinfo*>(malloc(sizeof(stinfo)));
213 if (sti == nullptr) {
214 fatal("cannot allocate stinfo");
215 }
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800216 sti->func = func;
217 sti->cookie = cookie;
218 sti->fd = s[1];
219
Elliott Hughesf2517142015-05-05 13:41:21 -0700220 if (!adb_thread_create(service_bootstrap_func, sti)) {
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800221 free(sti);
222 adb_close(s[0]);
223 adb_close(s[1]);
224 printf("cannot create service thread\n");
225 return -1;
226 }
227
228 D("service thread started, %d:%d\n",s[0], s[1]);
229 return s[0];
230}
231
JP Abgrall2e5dd6e2011-03-16 15:57:42 -0700232#if !ADB_HOST
Jeff Sharkeyc52ec1a2014-05-26 18:30:43 -0700233
234static void init_subproc_child()
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800235{
Jeff Sharkeyc52ec1a2014-05-26 18:30:43 -0700236 setsid();
237
Rom Lemarchand9d837e52014-06-20 16:30:54 -0700238 // Set OOM score adjustment to prevent killing
Nick Kralevich777523e2014-07-18 20:57:35 -0700239 int fd = adb_open("/proc/self/oom_score_adj", O_WRONLY | O_CLOEXEC);
Jeff Sharkeyc52ec1a2014-05-26 18:30:43 -0700240 if (fd >= 0) {
241 adb_write(fd, "0", 1);
242 adb_close(fd);
243 } else {
Rom Lemarchand9d837e52014-06-20 16:30:54 -0700244 D("adb: unable to update oom_score_adj\n");
Jeff Sharkeyc52ec1a2014-05-26 18:30:43 -0700245 }
246}
247
Dan Albert9c028f92015-05-15 12:56:23 -0700248#if !ADB_HOST
249static int create_subproc_pty(const char* cmd, const char* arg0,
250 const char* arg1, pid_t* pid) {
Jeff Sharkeyc52ec1a2014-05-26 18:30:43 -0700251 D("create_subproc_pty(cmd=%s, arg0=%s, arg1=%s)\n", cmd, arg0, arg1);
Dan Albert9c028f92015-05-15 12:56:23 -0700252 char pts_name[PATH_MAX];
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800253 int ptm;
Dan Albert9c028f92015-05-15 12:56:23 -0700254 *pid = forkpty(&ptm, pts_name, nullptr, nullptr);
255 if (*pid == -1) {
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800256 printf("- fork failed: %s -\n", strerror(errno));
Spencer Low3a2421b2015-05-22 20:09:06 -0700257 unix_close(ptm);
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800258 return -1;
259 }
260
Jeff Sharkeyc52ec1a2014-05-26 18:30:43 -0700261 if (*pid == 0) {
262 init_subproc_child();
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800263
Dan Albert9c028f92015-05-15 12:56:23 -0700264 int pts = unix_open(pts_name, O_RDWR | O_CLOEXEC);
265 if (pts == -1) {
266 fprintf(stderr, "child failed to open pseudo-term slave %s: %s\n",
267 pts_name, strerror(errno));
Spencer Low3a2421b2015-05-22 20:09:06 -0700268 unix_close(ptm);
JP Abgrall2e5dd6e2011-03-16 15:57:42 -0700269 exit(-1);
270 }
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800271
Dan Albert9c028f92015-05-15 12:56:23 -0700272 // arg0 is "-c" in batch mode and "-" in interactive mode.
273 if (strcmp(arg0, "-c") == 0) {
274 termios tattr;
275 if (tcgetattr(pts, &tattr) == -1) {
276 fprintf(stderr, "tcgetattr failed: %s\n", strerror(errno));
Spencer Low3a2421b2015-05-22 20:09:06 -0700277 unix_close(pts);
278 unix_close(ptm);
Dan Albert9c028f92015-05-15 12:56:23 -0700279 exit(-1);
280 }
281
282 cfmakeraw(&tattr);
283 if (tcsetattr(pts, TCSADRAIN, &tattr) == -1) {
284 fprintf(stderr, "tcsetattr failed: %s\n", strerror(errno));
Spencer Low3a2421b2015-05-22 20:09:06 -0700285 unix_close(pts);
286 unix_close(ptm);
Dan Albert9c028f92015-05-15 12:56:23 -0700287 exit(-1);
288 }
289 }
290
Jeff Sharkeyc52ec1a2014-05-26 18:30:43 -0700291 dup2(pts, STDIN_FILENO);
292 dup2(pts, STDOUT_FILENO);
293 dup2(pts, STDERR_FILENO);
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800294
Spencer Low3a2421b2015-05-22 20:09:06 -0700295 unix_close(pts);
296 unix_close(ptm);
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800297
Dan Albert9c028f92015-05-15 12:56:23 -0700298 execl(cmd, cmd, arg0, arg1, nullptr);
JP Abgrall2e5dd6e2011-03-16 15:57:42 -0700299 fprintf(stderr, "- exec '%s' failed: %s (%d) -\n",
300 cmd, strerror(errno), errno);
301 exit(-1);
302 } else {
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800303 return ptm;
304 }
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800305}
Dan Albert9c028f92015-05-15 12:56:23 -0700306#endif // !ADB_HOST
Jeff Sharkeyc52ec1a2014-05-26 18:30:43 -0700307
308static int create_subproc_raw(const char *cmd, const char *arg0, const char *arg1, pid_t *pid)
309{
310 D("create_subproc_raw(cmd=%s, arg0=%s, arg1=%s)\n", cmd, arg0, arg1);
Yabin Cui2fa43212014-11-11 09:24:11 -0800311#if defined(_WIN32)
Jeff Sharkeyc52ec1a2014-05-26 18:30:43 -0700312 fprintf(stderr, "error: create_subproc_raw not implemented on Win32 (%s %s %s)\n", cmd, arg0, arg1);
313 return -1;
Yabin Cui2fa43212014-11-11 09:24:11 -0800314#else
Jeff Sharkeyc52ec1a2014-05-26 18:30:43 -0700315
316 // 0 is parent socket, 1 is child socket
317 int sv[2];
leozwang1be54622014-08-15 09:51:27 -0700318 if (adb_socketpair(sv) < 0) {
Jeff Sharkeyc52ec1a2014-05-26 18:30:43 -0700319 printf("[ cannot create socket pair - %s ]\n", strerror(errno));
320 return -1;
321 }
Spencer Low5c761bd2015-07-21 02:06:26 -0700322 D("socketpair: (%d,%d)\n", sv[0], sv[1]);
Jeff Sharkeyc52ec1a2014-05-26 18:30:43 -0700323
324 *pid = fork();
325 if (*pid < 0) {
326 printf("- fork failed: %s -\n", strerror(errno));
327 adb_close(sv[0]);
328 adb_close(sv[1]);
329 return -1;
330 }
331
332 if (*pid == 0) {
333 adb_close(sv[0]);
334 init_subproc_child();
335
Jeff Sharkeyc52ec1a2014-05-26 18:30:43 -0700336 dup2(sv[1], STDIN_FILENO);
337 dup2(sv[1], STDOUT_FILENO);
Jeff Sharkey0e0d2512014-06-09 17:30:57 -0700338 dup2(sv[1], STDERR_FILENO);
339
Jeff Sharkeyc52ec1a2014-05-26 18:30:43 -0700340 adb_close(sv[1]);
341
342 execl(cmd, cmd, arg0, arg1, NULL);
343 fprintf(stderr, "- exec '%s' failed: %s (%d) -\n",
344 cmd, strerror(errno), errno);
345 exit(-1);
346 } else {
347 adb_close(sv[1]);
348 return sv[0];
349 }
Yabin Cui2fa43212014-11-11 09:24:11 -0800350#endif /* !defined(_WIN32) */
Jeff Sharkeyc52ec1a2014-05-26 18:30:43 -0700351}
JP Abgrall2e5dd6e2011-03-16 15:57:42 -0700352#endif /* !ABD_HOST */
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800353
354#if ADB_HOST
355#define SHELL_COMMAND "/bin/sh"
356#else
357#define SHELL_COMMAND "/system/bin/sh"
358#endif
359
JP Abgrall2e5dd6e2011-03-16 15:57:42 -0700360#if !ADB_HOST
361static void subproc_waiter_service(int fd, void *cookie)
362{
Elliott Hughes9c0d9402014-01-16 10:53:11 -0800363 pid_t pid = (pid_t) (uintptr_t) cookie;
JP Abgrall2e5dd6e2011-03-16 15:57:42 -0700364
365 D("entered. fd=%d of pid=%d\n", fd, pid);
Elliott Hughes7cf35752015-04-17 17:03:59 -0700366 while (true) {
JP Abgrall2e5dd6e2011-03-16 15:57:42 -0700367 int status;
368 pid_t p = waitpid(pid, &status, 0);
369 if (p == pid) {
370 D("fd=%d, post waitpid(pid=%d) status=%04x\n", fd, p, status);
371 if (WIFSIGNALED(status)) {
372 D("*** Killed by signal %d\n", WTERMSIG(status));
373 break;
374 } else if (!WIFEXITED(status)) {
375 D("*** Didn't exit!!. status %d\n", status);
376 break;
377 } else if (WEXITSTATUS(status) >= 0) {
378 D("*** Exit code %d\n", WEXITSTATUS(status));
379 break;
380 }
381 }
JP Abgrall2e5dd6e2011-03-16 15:57:42 -0700382 }
383 D("shell exited fd=%d of pid=%d err=%d\n", fd, pid, errno);
384 if (SHELL_EXIT_NOTIFY_FD >=0) {
385 int res;
Dan Albert66a91b02015-02-24 21:26:58 -0800386 res = WriteFdExactly(SHELL_EXIT_NOTIFY_FD, &fd, sizeof(fd)) ? 0 : -1;
JP Abgrall2e5dd6e2011-03-16 15:57:42 -0700387 D("notified shell exit via fd=%d for pid=%d res=%d errno=%d\n",
388 SHELL_EXIT_NOTIFY_FD, pid, res, errno);
389 }
390}
391
Elliott Hughes3aec2ba2015-05-05 13:10:43 -0700392static int create_subproc_thread(const char *name, bool pty = false) {
Jeff Sharkeyc52ec1a2014-05-26 18:30:43 -0700393 const char *arg0, *arg1;
394 if (name == 0 || *name == 0) {
395 arg0 = "-"; arg1 = 0;
JP Abgrall2e5dd6e2011-03-16 15:57:42 -0700396 } else {
Jeff Sharkeyc52ec1a2014-05-26 18:30:43 -0700397 arg0 = "-c"; arg1 = name;
JP Abgrall2e5dd6e2011-03-16 15:57:42 -0700398 }
Jeff Sharkeyc52ec1a2014-05-26 18:30:43 -0700399
Elliott Hughes3aec2ba2015-05-05 13:10:43 -0700400 pid_t pid = -1;
401 int ret_fd;
402 if (pty) {
Jeff Sharkeyc52ec1a2014-05-26 18:30:43 -0700403 ret_fd = create_subproc_pty(SHELL_COMMAND, arg0, arg1, &pid);
Elliott Hughes3aec2ba2015-05-05 13:10:43 -0700404 } else {
Jeff Sharkeyc52ec1a2014-05-26 18:30:43 -0700405 ret_fd = create_subproc_raw(SHELL_COMMAND, arg0, arg1, &pid);
Jeff Sharkeyc52ec1a2014-05-26 18:30:43 -0700406 }
407 D("create_subproc ret_fd=%d pid=%d\n", ret_fd, pid);
JP Abgrall2e5dd6e2011-03-16 15:57:42 -0700408
Dan Albertf30d73c2015-02-25 17:51:28 -0800409 stinfo* sti = reinterpret_cast<stinfo*>(malloc(sizeof(stinfo)));
JP Abgrall2e5dd6e2011-03-16 15:57:42 -0700410 if(sti == 0) fatal("cannot allocate stinfo");
411 sti->func = subproc_waiter_service;
Elliott Hughes9c0d9402014-01-16 10:53:11 -0800412 sti->cookie = (void*) (uintptr_t) pid;
JP Abgrall2e5dd6e2011-03-16 15:57:42 -0700413 sti->fd = ret_fd;
414
Elliott Hughesf2517142015-05-05 13:41:21 -0700415 if (!adb_thread_create(service_bootstrap_func, sti)) {
JP Abgrall2e5dd6e2011-03-16 15:57:42 -0700416 free(sti);
417 adb_close(ret_fd);
Jeff Sharkeyc52ec1a2014-05-26 18:30:43 -0700418 fprintf(stderr, "cannot create service thread\n");
JP Abgrall2e5dd6e2011-03-16 15:57:42 -0700419 return -1;
420 }
421
Jeff Sharkeyc52ec1a2014-05-26 18:30:43 -0700422 D("service thread started, fd=%d pid=%d\n", ret_fd, pid);
JP Abgrall2e5dd6e2011-03-16 15:57:42 -0700423 return ret_fd;
424}
425#endif
426
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800427int service_to_fd(const char *name)
428{
429 int ret = -1;
430
431 if(!strncmp(name, "tcp:", 4)) {
432 int port = atoi(name + 4);
433 name = strchr(name + 4, ':');
434 if(name == 0) {
Spencer Low753d4852015-07-30 23:07:55 -0700435 std::string error;
436 ret = network_loopback_client(port, SOCK_STREAM, &error);
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800437 if (ret >= 0)
438 disable_tcp_nagle(ret);
439 } else {
440#if ADB_HOST
Elliott Hughes43df1092015-07-23 17:12:58 -0700441 std::string error;
442 ret = network_connect(name + 1, port, SOCK_STREAM, 0, &error);
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800443#else
444 return -1;
445#endif
446 }
Elliott Hughes2b014142015-07-29 17:45:24 -0700447#if !defined(_WIN32) /* winsock doesn't implement unix domain sockets */
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800448 } else if(!strncmp(name, "local:", 6)) {
449 ret = socket_local_client(name + 6,
450 ANDROID_SOCKET_NAMESPACE_RESERVED, SOCK_STREAM);
451 } else if(!strncmp(name, "localreserved:", 14)) {
452 ret = socket_local_client(name + 14,
453 ANDROID_SOCKET_NAMESPACE_RESERVED, SOCK_STREAM);
454 } else if(!strncmp(name, "localabstract:", 14)) {
455 ret = socket_local_client(name + 14,
456 ANDROID_SOCKET_NAMESPACE_ABSTRACT, SOCK_STREAM);
457 } else if(!strncmp(name, "localfilesystem:", 16)) {
458 ret = socket_local_client(name + 16,
459 ANDROID_SOCKET_NAMESPACE_FILESYSTEM, SOCK_STREAM);
460#endif
Benoit Goby12dc3692013-02-20 15:04:53 -0800461#if !ADB_HOST
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800462 } else if(!strncmp("dev:", name, 4)) {
Nick Kralevich777523e2014-07-18 20:57:35 -0700463 ret = unix_open(name + 4, O_RDWR | O_CLOEXEC);
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800464 } else if(!strncmp(name, "framebuffer:", 12)) {
465 ret = create_service_thread(framebuffer_service, 0);
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800466 } else if (!strncmp(name, "jdwp:", 5)) {
467 ret = create_jdwp_connection_fd(atoi(name+5));
Yabin Cui5fe6d0d2015-08-11 13:40:42 -0700468 } else if(!strncmp(name, "shell:", 6)) {
Elliott Hughes3aec2ba2015-05-05 13:10:43 -0700469 ret = create_subproc_thread(name + 6, true);
Yabin Cui5fe6d0d2015-08-11 13:40:42 -0700470 } else if(!strncmp(name, "exec:", 5)) {
Elliott Hughes3aec2ba2015-05-05 13:10:43 -0700471 ret = create_subproc_thread(name + 5);
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800472 } else if(!strncmp(name, "sync:", 5)) {
473 ret = create_service_thread(file_sync_service, NULL);
474 } else if(!strncmp(name, "remount:", 8)) {
475 ret = create_service_thread(remount_service, NULL);
Mike Lockwood12a35ea2009-08-04 20:37:51 -0400476 } else if(!strncmp(name, "reboot:", 7)) {
Mike Lockwood1a855ae2009-09-19 16:52:58 -0400477 void* arg = strdup(name + 7);
Jeff Sharkeyc52ec1a2014-05-26 18:30:43 -0700478 if (arg == NULL) return -1;
Mike Lockwood1a855ae2009-09-19 16:52:58 -0400479 ret = create_service_thread(reboot_service, arg);
The Android Open Source Project9c753402009-03-13 13:04:37 -0700480 } else if(!strncmp(name, "root:", 5)) {
481 ret = create_service_thread(restart_root_service, NULL);
Dan Pasanenfb787d92014-10-06 12:57:20 -0500482 } else if(!strncmp(name, "unroot:", 7)) {
483 ret = create_service_thread(restart_unroot_service, NULL);
Christopher Tate73779122011-04-21 12:53:28 -0700484 } else if(!strncmp(name, "backup:", 7)) {
Elliott Hughese4b64792015-04-17 20:11:08 -0700485 ret = create_subproc_thread(android::base::StringPrintf("/system/bin/bu backup %s",
Elliott Hughes3aec2ba2015-05-05 13:10:43 -0700486 (name + 7)).c_str());
Christopher Tatecf5379b2011-05-17 15:52:54 -0700487 } else if(!strncmp(name, "restore:", 8)) {
Elliott Hughes3aec2ba2015-05-05 13:10:43 -0700488 ret = create_subproc_thread("/system/bin/bu restore");
Mike Lockwood26b88e32009-08-24 15:58:40 -0700489 } else if(!strncmp(name, "tcpip:", 6)) {
490 int port;
Spencer Low29a029c2015-01-25 17:38:36 -0800491 if (sscanf(name + 6, "%d", &port) != 1) {
Elliott Hughesd94e8ba2015-07-21 16:13:40 -0700492 return -1;
Mike Lockwood26b88e32009-08-24 15:58:40 -0700493 }
Elliott Hughes9c0d9402014-01-16 10:53:11 -0800494 ret = create_service_thread(restart_tcp_service, (void *) (uintptr_t) port);
Mike Lockwood26b88e32009-08-24 15:58:40 -0700495 } else if(!strncmp(name, "usb:", 4)) {
496 ret = create_service_thread(restart_usb_service, NULL);
David 'Digit' Turner963a4492013-03-21 21:07:42 +0100497 } else if (!strncmp(name, "reverse:", 8)) {
498 char* cookie = strdup(name + 8);
499 if (cookie == NULL) {
500 ret = -1;
501 } else {
502 ret = create_service_thread(reverse_service, cookie);
503 if (ret < 0) {
504 free(cookie);
505 }
506 }
Paul Lawrence5f356482014-10-09 14:22:49 +0000507 } else if(!strncmp(name, "disable-verity:", 15)) {
Paul Lawrence8ba2b022014-12-03 15:31:57 -0800508 ret = create_service_thread(set_verity_enabled_state_service, (void*)0);
509 } else if(!strncmp(name, "enable-verity:", 15)) {
510 ret = create_service_thread(set_verity_enabled_state_service, (void*)1);
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800511#endif
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800512 }
513 if (ret >= 0) {
514 close_on_exec(ret);
515 }
516 return ret;
517}
518
519#if ADB_HOST
520struct state_info {
Elliott Hughes3aec2ba2015-05-05 13:10:43 -0700521 TransportType transport_type;
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800522 char* serial;
Dan Albert9a50f4c2015-05-18 16:43:57 -0700523 ConnectionState state;
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800524};
525
526static void wait_for_state(int fd, void* cookie)
527{
Dan Albertf30d73c2015-02-25 17:51:28 -0800528 state_info* sinfo = reinterpret_cast<state_info*>(cookie);
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800529
530 D("wait_for_state %d\n", sinfo->state);
531
Elliott Hughesab882422015-04-16 22:54:44 -0700532 std::string error_msg = "unknown error";
Elliott Hughes3aec2ba2015-05-05 13:10:43 -0700533 atransport* t = acquire_one_transport(sinfo->state, sinfo->transport_type, sinfo->serial,
534 &error_msg);
Elliott Hughes24f52762015-06-23 13:00:32 -0700535 if (t != nullptr) {
Elliott Hughes88b4c852015-04-30 17:32:03 -0700536 SendOkay(fd);
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800537 } else {
Elliott Hughes88b4c852015-04-30 17:32:03 -0700538 SendFail(fd, error_msg);
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800539 }
540
541 if (sinfo->serial)
542 free(sinfo->serial);
543 free(sinfo);
544 adb_close(fd);
545 D("wait_for_state is done\n");
546}
Benoit Goby3f9f9ce2013-03-29 18:22:36 -0700547
Elliott Hughes09ccf1f2015-07-18 12:21:30 -0700548static void connect_device(const std::string& address, std::string* response) {
549 if (address.empty()) {
550 *response = "empty address";
Elliott Hughes88b4c852015-04-30 17:32:03 -0700551 return;
Benoit Goby3f9f9ce2013-03-29 18:22:36 -0700552 }
553
Elliott Hughes09ccf1f2015-07-18 12:21:30 -0700554 std::string serial;
555 std::string host;
Elliott Hughes88b4c852015-04-30 17:32:03 -0700556 int port = DEFAULT_ADB_LOCAL_TRANSPORT_PORT;
Elliott Hughes09ccf1f2015-07-18 12:21:30 -0700557 if (!parse_host_and_port(address, &serial, &host, &port, response)) {
Benoit Goby3f9f9ce2013-03-29 18:22:36 -0700558 return;
559 }
560
Elliott Hughes43df1092015-07-23 17:12:58 -0700561 std::string error;
562 int fd = network_connect(host.c_str(), port, SOCK_STREAM, 10, &error);
Elliott Hughes09ccf1f2015-07-18 12:21:30 -0700563 if (fd == -1) {
564 *response = android::base::StringPrintf("unable to connect to %s: %s",
Elliott Hughes43df1092015-07-23 17:12:58 -0700565 serial.c_str(), error.c_str());
Elliott Hughes09ccf1f2015-07-18 12:21:30 -0700566 return;
567 }
568
569 D("client: connected %s remote on fd %d\n", serial.c_str(), fd);
Benoit Goby3f9f9ce2013-03-29 18:22:36 -0700570 close_on_exec(fd);
571 disable_tcp_nagle(fd);
572
Elliott Hughes88b4c852015-04-30 17:32:03 -0700573 int ret = register_socket_transport(fd, serial.c_str(), port, 0);
Benoit Goby3f9f9ce2013-03-29 18:22:36 -0700574 if (ret < 0) {
575 adb_close(fd);
Elliott Hughes88b4c852015-04-30 17:32:03 -0700576 *response = android::base::StringPrintf("already connected to %s", serial.c_str());
Benoit Goby3f9f9ce2013-03-29 18:22:36 -0700577 } else {
Elliott Hughes88b4c852015-04-30 17:32:03 -0700578 *response = android::base::StringPrintf("connected to %s", serial.c_str());
Benoit Goby3f9f9ce2013-03-29 18:22:36 -0700579 }
580}
581
Elliott Hughes88b4c852015-04-30 17:32:03 -0700582void connect_emulator(const std::string& port_spec, std::string* response) {
583 std::vector<std::string> pieces = android::base::Split(port_spec, ",");
584 if (pieces.size() != 2) {
585 *response = android::base::StringPrintf("unable to parse '%s' as <console port>,<adb port>",
586 port_spec.c_str());
Benoit Goby3f9f9ce2013-03-29 18:22:36 -0700587 return;
588 }
589
Elliott Hughes88b4c852015-04-30 17:32:03 -0700590 int console_port = strtol(pieces[0].c_str(), NULL, 0);
591 int adb_port = strtol(pieces[1].c_str(), NULL, 0);
592 if (console_port <= 0 || adb_port <= 0) {
593 *response = android::base::StringPrintf("Invalid port numbers: %s", port_spec.c_str());
Benoit Goby3f9f9ce2013-03-29 18:22:36 -0700594 return;
595 }
596
Elliott Hughes88b4c852015-04-30 17:32:03 -0700597 // Check if the emulator is already known.
598 // Note: There's a small but harmless race condition here: An emulator not
599 // present just yet could be registered by another invocation right
600 // after doing this check here. However, local_connect protects
601 // against double-registration too. From here, a better error message
602 // can be produced. In the case of the race condition, the very specific
603 // error message won't be shown, but the data doesn't get corrupted.
Benoit Goby3f9f9ce2013-03-29 18:22:36 -0700604 atransport* known_emulator = find_emulator_transport_by_adb_port(adb_port);
Elliott Hughes88b4c852015-04-30 17:32:03 -0700605 if (known_emulator != nullptr) {
606 *response = android::base::StringPrintf("Emulator already registered on port %d", adb_port);
Benoit Goby3f9f9ce2013-03-29 18:22:36 -0700607 return;
608 }
609
Elliott Hughes88b4c852015-04-30 17:32:03 -0700610 // Check if more emulators can be registered. Similar unproblematic
611 // race condition as above.
Benoit Goby3f9f9ce2013-03-29 18:22:36 -0700612 int candidate_slot = get_available_local_transport_index();
613 if (candidate_slot < 0) {
Elliott Hughes88b4c852015-04-30 17:32:03 -0700614 *response = "Cannot accept more emulators";
Benoit Goby3f9f9ce2013-03-29 18:22:36 -0700615 return;
616 }
617
Elliott Hughes88b4c852015-04-30 17:32:03 -0700618 // Preconditions met, try to connect to the emulator.
Elliott Hughes43df1092015-07-23 17:12:58 -0700619 std::string error;
620 if (!local_connect_arbitrary_ports(console_port, adb_port, &error)) {
Elliott Hughes88b4c852015-04-30 17:32:03 -0700621 *response = android::base::StringPrintf("Connected to emulator on ports %d,%d",
622 console_port, adb_port);
Benoit Goby3f9f9ce2013-03-29 18:22:36 -0700623 } else {
Elliott Hughes43df1092015-07-23 17:12:58 -0700624 *response = android::base::StringPrintf("Could not connect to emulator on ports %d,%d: %s",
625 console_port, adb_port, error.c_str());
Benoit Goby3f9f9ce2013-03-29 18:22:36 -0700626 }
627}
628
Alan Jeone6959b72014-10-16 17:05:25 +0900629static void connect_service(int fd, void* data) {
630 char* host = reinterpret_cast<char*>(data);
Elliott Hughes88b4c852015-04-30 17:32:03 -0700631 std::string response;
Benoit Goby3f9f9ce2013-03-29 18:22:36 -0700632 if (!strncmp(host, "emu:", 4)) {
Elliott Hughes88b4c852015-04-30 17:32:03 -0700633 connect_emulator(host + 4, &response);
Benoit Goby3f9f9ce2013-03-29 18:22:36 -0700634 } else {
Elliott Hughes88b4c852015-04-30 17:32:03 -0700635 connect_device(host, &response);
Benoit Goby3f9f9ce2013-03-29 18:22:36 -0700636 }
Alan Jeone6959b72014-10-16 17:05:25 +0900637 free(host);
Benoit Goby3f9f9ce2013-03-29 18:22:36 -0700638
639 // Send response for emulator and device
Elliott Hughes88b4c852015-04-30 17:32:03 -0700640 SendProtocolString(fd, response);
Benoit Goby3f9f9ce2013-03-29 18:22:36 -0700641 adb_close(fd);
642}
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800643#endif
644
645#if ADB_HOST
646asocket* host_service_to_socket(const char* name, const char *serial)
647{
648 if (!strcmp(name,"track-devices")) {
649 return create_device_tracker();
650 } else if (!strncmp(name, "wait-for-", strlen("wait-for-"))) {
Dan Albertf30d73c2015-02-25 17:51:28 -0800651 auto sinfo = reinterpret_cast<state_info*>(malloc(sizeof(state_info)));
Elliott Hughesd0269c92015-04-21 19:39:52 -0700652 if (sinfo == nullptr) {
653 fprintf(stderr, "couldn't allocate state_info: %s", strerror(errno));
654 return NULL;
655 }
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800656
657 if (serial)
658 sinfo->serial = strdup(serial);
659 else
660 sinfo->serial = NULL;
661
662 name += strlen("wait-for-");
663
664 if (!strncmp(name, "local", strlen("local"))) {
Elliott Hughes3aec2ba2015-05-05 13:10:43 -0700665 sinfo->transport_type = kTransportLocal;
Dan Albert9a50f4c2015-05-18 16:43:57 -0700666 sinfo->state = kCsDevice;
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800667 } else if (!strncmp(name, "usb", strlen("usb"))) {
Elliott Hughes3aec2ba2015-05-05 13:10:43 -0700668 sinfo->transport_type = kTransportUsb;
Dan Albert9a50f4c2015-05-18 16:43:57 -0700669 sinfo->state = kCsDevice;
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800670 } else if (!strncmp(name, "any", strlen("any"))) {
Elliott Hughes3aec2ba2015-05-05 13:10:43 -0700671 sinfo->transport_type = kTransportAny;
Dan Albert9a50f4c2015-05-18 16:43:57 -0700672 sinfo->state = kCsDevice;
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800673 } else {
Alan Jeone6959b72014-10-16 17:05:25 +0900674 if (sinfo->serial) {
675 free(sinfo->serial);
676 }
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800677 free(sinfo);
678 return NULL;
679 }
680
681 int fd = create_service_thread(wait_for_state, sinfo);
682 return create_local_socket(fd);
Benoit Goby3f9f9ce2013-03-29 18:22:36 -0700683 } else if (!strncmp(name, "connect:", 8)) {
Alan Jeone6959b72014-10-16 17:05:25 +0900684 char* host = strdup(name + 8);
685 int fd = create_service_thread(connect_service, host);
Benoit Goby3f9f9ce2013-03-29 18:22:36 -0700686 return create_local_socket(fd);
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800687 }
688 return NULL;
689}
690#endif /* ADB_HOST */