blob: 7e477291d22b5c29ce249ee61b22bcef2833dd80 [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
27#ifndef _WIN32
28#include <netdb.h>
29#include <netinet/in.h>
30#include <sys/ioctl.h>
31#include <unistd.h>
32#endif
33
Elliott Hughes88b4c852015-04-30 17:32:03 -070034#include <base/file.h>
Elliott Hughese4b64792015-04-17 20:11:08 -070035#include <base/stringprintf.h>
Elliott Hughes88b4c852015-04-30 17:32:03 -070036#include <base/strings.h>
Elliott Hughese4b64792015-04-17 20:11:08 -070037
Dan Albertb302d122015-02-24 15:51:19 -080038#if !ADB_HOST
39#include "cutils/android_reboot.h"
40#include "cutils/properties.h"
41#endif
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -080042
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -080043#include "adb.h"
Dan Albert66a91b02015-02-24 21:26:58 -080044#include "adb_io.h"
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -080045#include "file_sync_service.h"
Elliott Hughesdedf7672015-03-16 21:58:32 +000046#include "remount_service.h"
Dan Albertb302d122015-02-24 15:51:19 -080047#include "transport.h"
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -080048
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -080049struct stinfo {
50 void (*func)(int fd, void *cookie);
51 int fd;
52 void *cookie;
53};
54
55
56void *service_bootstrap_func(void *x)
57{
Dan Albertf30d73c2015-02-25 17:51:28 -080058 stinfo* sti = reinterpret_cast<stinfo*>(x);
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -080059 sti->func(sti->fd, sti->cookie);
60 free(sti);
61 return 0;
62}
63
Benoit Goby12dc3692013-02-20 15:04:53 -080064#if !ADB_HOST
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -080065
Elliott Hughesfb596842015-05-01 17:04:38 -070066void restart_root_service(int fd, void *cookie) {
The Android Open Source Project9c753402009-03-13 13:04:37 -070067 if (getuid() == 0) {
Elliott Hughesfb596842015-05-01 17:04:38 -070068 WriteFdExactly(fd, "adbd is already running as root\n");
The Android Open Source Project9c753402009-03-13 13:04:37 -070069 adb_close(fd);
70 } else {
Elliott Hughesfb596842015-05-01 17:04:38 -070071 char value[PROPERTY_VALUE_MAX];
The Android Open Source Project9c753402009-03-13 13:04:37 -070072 property_get("ro.debuggable", value, "");
73 if (strcmp(value, "1") != 0) {
Elliott Hughesfb596842015-05-01 17:04:38 -070074 WriteFdExactly(fd, "adbd cannot run as root in production builds\n");
Mike Lockwood26b88e32009-08-24 15:58:40 -070075 adb_close(fd);
The Android Open Source Project9c753402009-03-13 13:04:37 -070076 return;
77 }
78
Benoit Gobyad926c12012-03-16 14:44:17 -070079 property_set("service.adb.root", "1");
Elliott Hughesfb596842015-05-01 17:04:38 -070080 WriteFdExactly(fd, "restarting adbd as root\n");
The Android Open Source Project9c753402009-03-13 13:04:37 -070081 adb_close(fd);
The Android Open Source Project9c753402009-03-13 13:04:37 -070082 }
83}
84
Elliott Hughesfb596842015-05-01 17:04:38 -070085void restart_unroot_service(int fd, void *cookie) {
Dan Pasanenfb787d92014-10-06 12:57:20 -050086 if (getuid() != 0) {
Elliott Hughesfb596842015-05-01 17:04:38 -070087 WriteFdExactly(fd, "adbd not running as root\n");
Dan Pasanenfb787d92014-10-06 12:57:20 -050088 adb_close(fd);
89 } else {
90 property_set("service.adb.root", "0");
Elliott Hughesfb596842015-05-01 17:04:38 -070091 WriteFdExactly(fd, "restarting adbd as non root\n");
Dan Pasanenfb787d92014-10-06 12:57:20 -050092 adb_close(fd);
93 }
94}
95
Elliott Hughesfb596842015-05-01 17:04:38 -070096void restart_tcp_service(int fd, void *cookie) {
Elliott Hughes9c0d9402014-01-16 10:53:11 -080097 int port = (int) (uintptr_t) cookie;
Mike Lockwood26b88e32009-08-24 15:58:40 -070098 if (port <= 0) {
Elliott Hughesfb596842015-05-01 17:04:38 -070099 WriteFdFmt(fd, "invalid port %d\n", port);
Mike Lockwood26b88e32009-08-24 15:58:40 -0700100 adb_close(fd);
101 return;
102 }
103
Elliott Hughesfb596842015-05-01 17:04:38 -0700104 char value[PROPERTY_VALUE_MAX];
Mike Lockwood26b88e32009-08-24 15:58:40 -0700105 snprintf(value, sizeof(value), "%d", port);
106 property_set("service.adb.tcp.port", value);
Elliott Hughesfb596842015-05-01 17:04:38 -0700107 WriteFdFmt(fd, "restarting in TCP mode port: %d\n", port);
Mike Lockwood26b88e32009-08-24 15:58:40 -0700108 adb_close(fd);
Mike Lockwood26b88e32009-08-24 15:58:40 -0700109}
110
Elliott Hughesfb596842015-05-01 17:04:38 -0700111void restart_usb_service(int fd, void *cookie) {
Mike Lockwood26b88e32009-08-24 15:58:40 -0700112 property_set("service.adb.tcp.port", "0");
Elliott Hughesfb596842015-05-01 17:04:38 -0700113 WriteFdExactly(fd, "restarting in USB mode\n");
Mike Lockwood26b88e32009-08-24 15:58:40 -0700114 adb_close(fd);
Mike Lockwood26b88e32009-08-24 15:58:40 -0700115}
116
Tao Bao0db67642015-03-29 11:22:34 -0700117static bool reboot_service_impl(int fd, const char* arg) {
118 const char* reboot_arg = arg;
119 bool auto_reboot = false;
120
121 if (strcmp(reboot_arg, "sideload-auto-reboot") == 0) {
122 auto_reboot = true;
123 reboot_arg = "sideload";
124 }
125
Tao Bao0db67642015-03-29 11:22:34 -0700126 // It reboots into sideload mode by setting "--sideload" or "--sideload_auto_reboot"
127 // in the command file.
128 if (strcmp(reboot_arg, "sideload") == 0) {
129 if (getuid() != 0) {
Elliott Hughes88b4c852015-04-30 17:32:03 -0700130 WriteFdExactly(fd, "'adb root' is required for 'adb reboot sideload'.\n");
Tao Bao0db67642015-03-29 11:22:34 -0700131 return false;
132 }
133
134 const char* const recovery_dir = "/cache/recovery";
135 const char* const command_file = "/cache/recovery/command";
136 // Ensure /cache/recovery exists.
137 if (adb_mkdir(recovery_dir, 0770) == -1 && errno != EEXIST) {
138 D("Failed to create directory '%s': %s\n", recovery_dir, strerror(errno));
139 return false;
140 }
141
142 bool write_status = android::base::WriteStringToFile(
143 auto_reboot ? "--sideload_auto_reboot" : "--sideload", command_file);
144 if (!write_status) {
145 return false;
146 }
147
148 reboot_arg = "recovery";
149 }
Mike Lockwood12a35ea2009-08-04 20:37:51 -0400150
151 sync();
Mike Lockwoodd49e9eb2010-02-24 16:07:23 -0500152
Tao Bao0db67642015-03-29 11:22:34 -0700153 char property_val[PROPERTY_VALUE_MAX];
154 int ret = snprintf(property_val, sizeof(property_val), "reboot,%s", reboot_arg);
155 if (ret >= static_cast<int>(sizeof(property_val))) {
Elliott Hughesfb596842015-05-01 17:04:38 -0700156 WriteFdFmt(fd, "reboot string too long: %d\n", ret);
Tao Bao0db67642015-03-29 11:22:34 -0700157 return false;
Nick Kralevichb7df0172013-04-18 12:20:02 -0700158 }
159
160 ret = property_set(ANDROID_RB_PROPERTY, property_val);
Mike Lockwood12a35ea2009-08-04 20:37:51 -0400161 if (ret < 0) {
Elliott Hughesfb596842015-05-01 17:04:38 -0700162 WriteFdFmt(fd, "reboot failed: %d\n", ret);
Tao Bao0db67642015-03-29 11:22:34 -0700163 return false;
Mike Lockwood12a35ea2009-08-04 20:37:51 -0400164 }
Tao Bao0db67642015-03-29 11:22:34 -0700165
166 return true;
167}
168
169void reboot_service(int fd, void* arg)
170{
171 if (reboot_service_impl(fd, static_cast<const char*>(arg))) {
172 // Don't return early. Give the reboot command time to take effect
173 // to avoid messing up scripts which do "adb reboot && adb wait-for-device"
Elliott Hughes7cf35752015-04-17 17:03:59 -0700174 while (true) {
Tao Bao0db67642015-03-29 11:22:34 -0700175 pause();
176 }
177 }
178
Mike Lockwood1a855ae2009-09-19 16:52:58 -0400179 free(arg);
Mike Lockwood12a35ea2009-08-04 20:37:51 -0400180 adb_close(fd);
181}
182
David 'Digit' Turner963a4492013-03-21 21:07:42 +0100183void reverse_service(int fd, void* arg)
184{
Dan Albertf30d73c2015-02-25 17:51:28 -0800185 const char* command = reinterpret_cast<const char*>(arg);
David 'Digit' Turner963a4492013-03-21 21:07:42 +0100186
187 if (handle_forward_request(command, kTransportAny, NULL, fd) < 0) {
Elliott Hughes88b4c852015-04-30 17:32:03 -0700188 SendFail(fd, "not a reverse forwarding command");
David 'Digit' Turner963a4492013-03-21 21:07:42 +0100189 }
190 free(arg);
191 adb_close(fd);
192}
193
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800194#endif
195
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800196static int create_service_thread(void (*func)(int, void *), void *cookie)
197{
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800198 int s[2];
Dan Albertf30d73c2015-02-25 17:51:28 -0800199 if (adb_socketpair(s)) {
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800200 printf("cannot create service socket pair\n");
201 return -1;
202 }
leozwang1be54622014-08-15 09:51:27 -0700203 D("socketpair: (%d,%d)", s[0], s[1]);
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800204
Dan Albertf30d73c2015-02-25 17:51:28 -0800205 stinfo* sti = reinterpret_cast<stinfo*>(malloc(sizeof(stinfo)));
206 if (sti == nullptr) {
207 fatal("cannot allocate stinfo");
208 }
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800209 sti->func = func;
210 sti->cookie = cookie;
211 sti->fd = s[1];
212
Dan Albertf30d73c2015-02-25 17:51:28 -0800213 adb_thread_t t;
214 if (adb_thread_create(&t, service_bootstrap_func, sti)) {
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800215 free(sti);
216 adb_close(s[0]);
217 adb_close(s[1]);
218 printf("cannot create service thread\n");
219 return -1;
220 }
221
222 D("service thread started, %d:%d\n",s[0], s[1]);
223 return s[0];
224}
225
JP Abgrall2e5dd6e2011-03-16 15:57:42 -0700226#if !ADB_HOST
Jeff Sharkeyc52ec1a2014-05-26 18:30:43 -0700227
228static void init_subproc_child()
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800229{
Jeff Sharkeyc52ec1a2014-05-26 18:30:43 -0700230 setsid();
231
Rom Lemarchand9d837e52014-06-20 16:30:54 -0700232 // Set OOM score adjustment to prevent killing
Nick Kralevich777523e2014-07-18 20:57:35 -0700233 int fd = adb_open("/proc/self/oom_score_adj", O_WRONLY | O_CLOEXEC);
Jeff Sharkeyc52ec1a2014-05-26 18:30:43 -0700234 if (fd >= 0) {
235 adb_write(fd, "0", 1);
236 adb_close(fd);
237 } else {
Rom Lemarchand9d837e52014-06-20 16:30:54 -0700238 D("adb: unable to update oom_score_adj\n");
Jeff Sharkeyc52ec1a2014-05-26 18:30:43 -0700239 }
240}
241
242static int create_subproc_pty(const char *cmd, const char *arg0, const char *arg1, pid_t *pid)
243{
244 D("create_subproc_pty(cmd=%s, arg0=%s, arg1=%s)\n", cmd, arg0, arg1);
Yabin Cui2fa43212014-11-11 09:24:11 -0800245#if defined(_WIN32)
Jeff Sharkeyc52ec1a2014-05-26 18:30:43 -0700246 fprintf(stderr, "error: create_subproc_pty not implemented on Win32 (%s %s %s)\n", cmd, arg0, arg1);
JP Abgrall2e5dd6e2011-03-16 15:57:42 -0700247 return -1;
Yabin Cui2fa43212014-11-11 09:24:11 -0800248#else
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800249 int ptm;
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800250
Nick Kralevich777523e2014-07-18 20:57:35 -0700251 ptm = unix_open("/dev/ptmx", O_RDWR | O_CLOEXEC); // | O_NOCTTY);
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800252 if(ptm < 0){
253 printf("[ cannot open /dev/ptmx - %s ]\n",strerror(errno));
254 return -1;
255 }
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800256
Elliott Hughes1f59fa02014-07-29 11:32:16 -0700257 char devname[64];
258 if(grantpt(ptm) || unlockpt(ptm) || ptsname_r(ptm, devname, sizeof(devname)) != 0) {
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800259 printf("[ trouble with /dev/ptmx - %s ]\n", strerror(errno));
JP Abgrall2e5dd6e2011-03-16 15:57:42 -0700260 adb_close(ptm);
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800261 return -1;
262 }
263
JP Abgrall2e5dd6e2011-03-16 15:57:42 -0700264 *pid = fork();
265 if(*pid < 0) {
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800266 printf("- fork failed: %s -\n", strerror(errno));
JP Abgrall2e5dd6e2011-03-16 15:57:42 -0700267 adb_close(ptm);
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800268 return -1;
269 }
270
Jeff Sharkeyc52ec1a2014-05-26 18:30:43 -0700271 if (*pid == 0) {
272 init_subproc_child();
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800273
Nick Kralevich777523e2014-07-18 20:57:35 -0700274 int pts = unix_open(devname, O_RDWR | O_CLOEXEC);
Jeff Sharkeyc52ec1a2014-05-26 18:30:43 -0700275 if (pts < 0) {
JP Abgrall2e5dd6e2011-03-16 15:57:42 -0700276 fprintf(stderr, "child failed to open pseudo-term slave: %s\n", devname);
277 exit(-1);
278 }
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800279
Jeff Sharkeyc52ec1a2014-05-26 18:30:43 -0700280 dup2(pts, STDIN_FILENO);
281 dup2(pts, STDOUT_FILENO);
282 dup2(pts, STDERR_FILENO);
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800283
Benoit Gobyf4ded742011-02-01 18:57:41 -0800284 adb_close(pts);
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800285 adb_close(ptm);
286
JP Abgrall2e5dd6e2011-03-16 15:57:42 -0700287 execl(cmd, cmd, arg0, arg1, NULL);
288 fprintf(stderr, "- exec '%s' failed: %s (%d) -\n",
289 cmd, strerror(errno), errno);
290 exit(-1);
291 } else {
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800292 return ptm;
293 }
Yabin Cui2fa43212014-11-11 09:24:11 -0800294#endif /* !defined(_WIN32) */
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800295}
Jeff Sharkeyc52ec1a2014-05-26 18:30:43 -0700296
297static int create_subproc_raw(const char *cmd, const char *arg0, const char *arg1, pid_t *pid)
298{
299 D("create_subproc_raw(cmd=%s, arg0=%s, arg1=%s)\n", cmd, arg0, arg1);
Yabin Cui2fa43212014-11-11 09:24:11 -0800300#if defined(_WIN32)
Jeff Sharkeyc52ec1a2014-05-26 18:30:43 -0700301 fprintf(stderr, "error: create_subproc_raw not implemented on Win32 (%s %s %s)\n", cmd, arg0, arg1);
302 return -1;
Yabin Cui2fa43212014-11-11 09:24:11 -0800303#else
Jeff Sharkeyc52ec1a2014-05-26 18:30:43 -0700304
305 // 0 is parent socket, 1 is child socket
306 int sv[2];
leozwang1be54622014-08-15 09:51:27 -0700307 if (adb_socketpair(sv) < 0) {
Jeff Sharkeyc52ec1a2014-05-26 18:30:43 -0700308 printf("[ cannot create socket pair - %s ]\n", strerror(errno));
309 return -1;
310 }
leozwang1be54622014-08-15 09:51:27 -0700311 D("socketpair: (%d,%d)", sv[0], sv[1]);
Jeff Sharkeyc52ec1a2014-05-26 18:30:43 -0700312
313 *pid = fork();
314 if (*pid < 0) {
315 printf("- fork failed: %s -\n", strerror(errno));
316 adb_close(sv[0]);
317 adb_close(sv[1]);
318 return -1;
319 }
320
321 if (*pid == 0) {
322 adb_close(sv[0]);
323 init_subproc_child();
324
Jeff Sharkeyc52ec1a2014-05-26 18:30:43 -0700325 dup2(sv[1], STDIN_FILENO);
326 dup2(sv[1], STDOUT_FILENO);
Jeff Sharkey0e0d2512014-06-09 17:30:57 -0700327 dup2(sv[1], STDERR_FILENO);
328
Jeff Sharkeyc52ec1a2014-05-26 18:30:43 -0700329 adb_close(sv[1]);
330
331 execl(cmd, cmd, arg0, arg1, NULL);
332 fprintf(stderr, "- exec '%s' failed: %s (%d) -\n",
333 cmd, strerror(errno), errno);
334 exit(-1);
335 } else {
336 adb_close(sv[1]);
337 return sv[0];
338 }
Yabin Cui2fa43212014-11-11 09:24:11 -0800339#endif /* !defined(_WIN32) */
Jeff Sharkeyc52ec1a2014-05-26 18:30:43 -0700340}
JP Abgrall2e5dd6e2011-03-16 15:57:42 -0700341#endif /* !ABD_HOST */
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800342
343#if ADB_HOST
344#define SHELL_COMMAND "/bin/sh"
345#else
346#define SHELL_COMMAND "/system/bin/sh"
347#endif
348
JP Abgrall2e5dd6e2011-03-16 15:57:42 -0700349#if !ADB_HOST
350static void subproc_waiter_service(int fd, void *cookie)
351{
Elliott Hughes9c0d9402014-01-16 10:53:11 -0800352 pid_t pid = (pid_t) (uintptr_t) cookie;
JP Abgrall2e5dd6e2011-03-16 15:57:42 -0700353
354 D("entered. fd=%d of pid=%d\n", fd, pid);
Elliott Hughes7cf35752015-04-17 17:03:59 -0700355 while (true) {
JP Abgrall2e5dd6e2011-03-16 15:57:42 -0700356 int status;
357 pid_t p = waitpid(pid, &status, 0);
358 if (p == pid) {
359 D("fd=%d, post waitpid(pid=%d) status=%04x\n", fd, p, status);
360 if (WIFSIGNALED(status)) {
361 D("*** Killed by signal %d\n", WTERMSIG(status));
362 break;
363 } else if (!WIFEXITED(status)) {
364 D("*** Didn't exit!!. status %d\n", status);
365 break;
366 } else if (WEXITSTATUS(status) >= 0) {
367 D("*** Exit code %d\n", WEXITSTATUS(status));
368 break;
369 }
370 }
JP Abgrall2e5dd6e2011-03-16 15:57:42 -0700371 }
372 D("shell exited fd=%d of pid=%d err=%d\n", fd, pid, errno);
373 if (SHELL_EXIT_NOTIFY_FD >=0) {
374 int res;
Dan Albert66a91b02015-02-24 21:26:58 -0800375 res = WriteFdExactly(SHELL_EXIT_NOTIFY_FD, &fd, sizeof(fd)) ? 0 : -1;
JP Abgrall2e5dd6e2011-03-16 15:57:42 -0700376 D("notified shell exit via fd=%d for pid=%d res=%d errno=%d\n",
377 SHELL_EXIT_NOTIFY_FD, pid, res, errno);
378 }
379}
380
Elliott Hughes3aec2ba2015-05-05 13:10:43 -0700381static int create_subproc_thread(const char *name, bool pty = false) {
Jeff Sharkeyc52ec1a2014-05-26 18:30:43 -0700382 const char *arg0, *arg1;
383 if (name == 0 || *name == 0) {
384 arg0 = "-"; arg1 = 0;
JP Abgrall2e5dd6e2011-03-16 15:57:42 -0700385 } else {
Jeff Sharkeyc52ec1a2014-05-26 18:30:43 -0700386 arg0 = "-c"; arg1 = name;
JP Abgrall2e5dd6e2011-03-16 15:57:42 -0700387 }
Jeff Sharkeyc52ec1a2014-05-26 18:30:43 -0700388
Elliott Hughes3aec2ba2015-05-05 13:10:43 -0700389 pid_t pid = -1;
390 int ret_fd;
391 if (pty) {
Jeff Sharkeyc52ec1a2014-05-26 18:30:43 -0700392 ret_fd = create_subproc_pty(SHELL_COMMAND, arg0, arg1, &pid);
Elliott Hughes3aec2ba2015-05-05 13:10:43 -0700393 } else {
Jeff Sharkeyc52ec1a2014-05-26 18:30:43 -0700394 ret_fd = create_subproc_raw(SHELL_COMMAND, arg0, arg1, &pid);
Jeff Sharkeyc52ec1a2014-05-26 18:30:43 -0700395 }
396 D("create_subproc ret_fd=%d pid=%d\n", ret_fd, pid);
JP Abgrall2e5dd6e2011-03-16 15:57:42 -0700397
Dan Albertf30d73c2015-02-25 17:51:28 -0800398 stinfo* sti = reinterpret_cast<stinfo*>(malloc(sizeof(stinfo)));
JP Abgrall2e5dd6e2011-03-16 15:57:42 -0700399 if(sti == 0) fatal("cannot allocate stinfo");
400 sti->func = subproc_waiter_service;
Elliott Hughes9c0d9402014-01-16 10:53:11 -0800401 sti->cookie = (void*) (uintptr_t) pid;
JP Abgrall2e5dd6e2011-03-16 15:57:42 -0700402 sti->fd = ret_fd;
403
Elliott Hughes3aec2ba2015-05-05 13:10:43 -0700404 adb_thread_t t;
Jeff Sharkeyc52ec1a2014-05-26 18:30:43 -0700405 if (adb_thread_create(&t, service_bootstrap_func, sti)) {
JP Abgrall2e5dd6e2011-03-16 15:57:42 -0700406 free(sti);
407 adb_close(ret_fd);
Jeff Sharkeyc52ec1a2014-05-26 18:30:43 -0700408 fprintf(stderr, "cannot create service thread\n");
JP Abgrall2e5dd6e2011-03-16 15:57:42 -0700409 return -1;
410 }
411
Jeff Sharkeyc52ec1a2014-05-26 18:30:43 -0700412 D("service thread started, fd=%d pid=%d\n", ret_fd, pid);
JP Abgrall2e5dd6e2011-03-16 15:57:42 -0700413 return ret_fd;
414}
415#endif
416
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800417int service_to_fd(const char *name)
418{
419 int ret = -1;
420
421 if(!strncmp(name, "tcp:", 4)) {
422 int port = atoi(name + 4);
423 name = strchr(name + 4, ':');
424 if(name == 0) {
425 ret = socket_loopback_client(port, SOCK_STREAM);
426 if (ret >= 0)
427 disable_tcp_nagle(ret);
428 } else {
429#if ADB_HOST
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800430 ret = socket_network_client(name + 1, port, SOCK_STREAM);
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800431#else
432 return -1;
433#endif
434 }
435#ifndef HAVE_WINSOCK /* winsock doesn't implement unix domain sockets */
436 } else if(!strncmp(name, "local:", 6)) {
437 ret = socket_local_client(name + 6,
438 ANDROID_SOCKET_NAMESPACE_RESERVED, SOCK_STREAM);
439 } else if(!strncmp(name, "localreserved:", 14)) {
440 ret = socket_local_client(name + 14,
441 ANDROID_SOCKET_NAMESPACE_RESERVED, SOCK_STREAM);
442 } else if(!strncmp(name, "localabstract:", 14)) {
443 ret = socket_local_client(name + 14,
444 ANDROID_SOCKET_NAMESPACE_ABSTRACT, SOCK_STREAM);
445 } else if(!strncmp(name, "localfilesystem:", 16)) {
446 ret = socket_local_client(name + 16,
447 ANDROID_SOCKET_NAMESPACE_FILESYSTEM, SOCK_STREAM);
448#endif
Benoit Goby12dc3692013-02-20 15:04:53 -0800449#if !ADB_HOST
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800450 } else if(!strncmp("dev:", name, 4)) {
Nick Kralevich777523e2014-07-18 20:57:35 -0700451 ret = unix_open(name + 4, O_RDWR | O_CLOEXEC);
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800452 } else if(!strncmp(name, "framebuffer:", 12)) {
453 ret = create_service_thread(framebuffer_service, 0);
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800454 } else if (!strncmp(name, "jdwp:", 5)) {
455 ret = create_jdwp_connection_fd(atoi(name+5));
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800456 } else if(!HOST && !strncmp(name, "shell:", 6)) {
Elliott Hughes3aec2ba2015-05-05 13:10:43 -0700457 ret = create_subproc_thread(name + 6, true);
Jeff Sharkeyc52ec1a2014-05-26 18:30:43 -0700458 } else if(!HOST && !strncmp(name, "exec:", 5)) {
Elliott Hughes3aec2ba2015-05-05 13:10:43 -0700459 ret = create_subproc_thread(name + 5);
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800460 } else if(!strncmp(name, "sync:", 5)) {
461 ret = create_service_thread(file_sync_service, NULL);
462 } else if(!strncmp(name, "remount:", 8)) {
463 ret = create_service_thread(remount_service, NULL);
Mike Lockwood12a35ea2009-08-04 20:37:51 -0400464 } else if(!strncmp(name, "reboot:", 7)) {
Mike Lockwood1a855ae2009-09-19 16:52:58 -0400465 void* arg = strdup(name + 7);
Jeff Sharkeyc52ec1a2014-05-26 18:30:43 -0700466 if (arg == NULL) return -1;
Mike Lockwood1a855ae2009-09-19 16:52:58 -0400467 ret = create_service_thread(reboot_service, arg);
The Android Open Source Project9c753402009-03-13 13:04:37 -0700468 } else if(!strncmp(name, "root:", 5)) {
469 ret = create_service_thread(restart_root_service, NULL);
Dan Pasanenfb787d92014-10-06 12:57:20 -0500470 } else if(!strncmp(name, "unroot:", 7)) {
471 ret = create_service_thread(restart_unroot_service, NULL);
Christopher Tate73779122011-04-21 12:53:28 -0700472 } else if(!strncmp(name, "backup:", 7)) {
Elliott Hughese4b64792015-04-17 20:11:08 -0700473 ret = create_subproc_thread(android::base::StringPrintf("/system/bin/bu backup %s",
Elliott Hughes3aec2ba2015-05-05 13:10:43 -0700474 (name + 7)).c_str());
Christopher Tatecf5379b2011-05-17 15:52:54 -0700475 } else if(!strncmp(name, "restore:", 8)) {
Elliott Hughes3aec2ba2015-05-05 13:10:43 -0700476 ret = create_subproc_thread("/system/bin/bu restore");
Mike Lockwood26b88e32009-08-24 15:58:40 -0700477 } else if(!strncmp(name, "tcpip:", 6)) {
478 int port;
Spencer Low29a029c2015-01-25 17:38:36 -0800479 if (sscanf(name + 6, "%d", &port) != 1) {
Mike Lockwood26b88e32009-08-24 15:58:40 -0700480 port = 0;
481 }
Elliott Hughes9c0d9402014-01-16 10:53:11 -0800482 ret = create_service_thread(restart_tcp_service, (void *) (uintptr_t) port);
Mike Lockwood26b88e32009-08-24 15:58:40 -0700483 } else if(!strncmp(name, "usb:", 4)) {
484 ret = create_service_thread(restart_usb_service, NULL);
David 'Digit' Turner963a4492013-03-21 21:07:42 +0100485 } else if (!strncmp(name, "reverse:", 8)) {
486 char* cookie = strdup(name + 8);
487 if (cookie == NULL) {
488 ret = -1;
489 } else {
490 ret = create_service_thread(reverse_service, cookie);
491 if (ret < 0) {
492 free(cookie);
493 }
494 }
Paul Lawrence5f356482014-10-09 14:22:49 +0000495 } else if(!strncmp(name, "disable-verity:", 15)) {
Paul Lawrence8ba2b022014-12-03 15:31:57 -0800496 ret = create_service_thread(set_verity_enabled_state_service, (void*)0);
497 } else if(!strncmp(name, "enable-verity:", 15)) {
498 ret = create_service_thread(set_verity_enabled_state_service, (void*)1);
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800499#endif
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800500 }
501 if (ret >= 0) {
502 close_on_exec(ret);
503 }
504 return ret;
505}
506
507#if ADB_HOST
508struct state_info {
Elliott Hughes3aec2ba2015-05-05 13:10:43 -0700509 TransportType transport_type;
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800510 char* serial;
511 int state;
512};
513
514static void wait_for_state(int fd, void* cookie)
515{
Dan Albertf30d73c2015-02-25 17:51:28 -0800516 state_info* sinfo = reinterpret_cast<state_info*>(cookie);
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800517
518 D("wait_for_state %d\n", sinfo->state);
519
Elliott Hughesab882422015-04-16 22:54:44 -0700520 std::string error_msg = "unknown error";
Elliott Hughes3aec2ba2015-05-05 13:10:43 -0700521 atransport* t = acquire_one_transport(sinfo->state, sinfo->transport_type, sinfo->serial,
522 &error_msg);
Elliott Hughesab882422015-04-16 22:54:44 -0700523 if (t != 0) {
Elliott Hughes88b4c852015-04-30 17:32:03 -0700524 SendOkay(fd);
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800525 } else {
Elliott Hughes88b4c852015-04-30 17:32:03 -0700526 SendFail(fd, error_msg);
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800527 }
528
529 if (sinfo->serial)
530 free(sinfo->serial);
531 free(sinfo);
532 adb_close(fd);
533 D("wait_for_state is done\n");
534}
Benoit Goby3f9f9ce2013-03-29 18:22:36 -0700535
Elliott Hughes88b4c852015-04-30 17:32:03 -0700536static void connect_device(const std::string& host, std::string* response) {
537 if (host.empty()) {
538 *response = "empty host name";
539 return;
Benoit Goby3f9f9ce2013-03-29 18:22:36 -0700540 }
541
Elliott Hughes88b4c852015-04-30 17:32:03 -0700542 std::vector<std::string> pieces = android::base::Split(host, ":");
543 const std::string& hostname = pieces[0];
Benoit Goby3f9f9ce2013-03-29 18:22:36 -0700544
Elliott Hughes88b4c852015-04-30 17:32:03 -0700545 int port = DEFAULT_ADB_LOCAL_TRANSPORT_PORT;
546 if (pieces.size() > 1) {
547 if (sscanf(pieces[1].c_str(), "%d", &port) != 1) {
548 *response = android::base::StringPrintf("bad port number %s", pieces[1].c_str());
549 return;
550 }
551 }
552
553 // This may look like we're putting 'host' back together,
554 // but we're actually inserting the default port if necessary.
555 std::string serial = android::base::StringPrintf("%s:%d", hostname.c_str(), port);
556
557 int fd = socket_network_client_timeout(hostname.c_str(), port, SOCK_STREAM, 10);
Benoit Goby3f9f9ce2013-03-29 18:22:36 -0700558 if (fd < 0) {
Elliott Hughes88b4c852015-04-30 17:32:03 -0700559 *response = android::base::StringPrintf("unable to connect to %s:%d",
560 hostname.c_str(), port);
Benoit Goby3f9f9ce2013-03-29 18:22:36 -0700561 return;
562 }
563
564 D("client: connected on remote on fd %d\n", fd);
565 close_on_exec(fd);
566 disable_tcp_nagle(fd);
567
Elliott Hughes88b4c852015-04-30 17:32:03 -0700568 int ret = register_socket_transport(fd, serial.c_str(), port, 0);
Benoit Goby3f9f9ce2013-03-29 18:22:36 -0700569 if (ret < 0) {
570 adb_close(fd);
Elliott Hughes88b4c852015-04-30 17:32:03 -0700571 *response = android::base::StringPrintf("already connected to %s", serial.c_str());
Benoit Goby3f9f9ce2013-03-29 18:22:36 -0700572 } else {
Elliott Hughes88b4c852015-04-30 17:32:03 -0700573 *response = android::base::StringPrintf("connected to %s", serial.c_str());
Benoit Goby3f9f9ce2013-03-29 18:22:36 -0700574 }
575}
576
Elliott Hughes88b4c852015-04-30 17:32:03 -0700577void connect_emulator(const std::string& port_spec, std::string* response) {
578 std::vector<std::string> pieces = android::base::Split(port_spec, ",");
579 if (pieces.size() != 2) {
580 *response = android::base::StringPrintf("unable to parse '%s' as <console port>,<adb port>",
581 port_spec.c_str());
Benoit Goby3f9f9ce2013-03-29 18:22:36 -0700582 return;
583 }
584
Elliott Hughes88b4c852015-04-30 17:32:03 -0700585 int console_port = strtol(pieces[0].c_str(), NULL, 0);
586 int adb_port = strtol(pieces[1].c_str(), NULL, 0);
587 if (console_port <= 0 || adb_port <= 0) {
588 *response = android::base::StringPrintf("Invalid port numbers: %s", port_spec.c_str());
Benoit Goby3f9f9ce2013-03-29 18:22:36 -0700589 return;
590 }
591
Elliott Hughes88b4c852015-04-30 17:32:03 -0700592 // Check if the emulator is already known.
593 // Note: There's a small but harmless race condition here: An emulator not
594 // present just yet could be registered by another invocation right
595 // after doing this check here. However, local_connect protects
596 // against double-registration too. From here, a better error message
597 // can be produced. In the case of the race condition, the very specific
598 // error message won't be shown, but the data doesn't get corrupted.
Benoit Goby3f9f9ce2013-03-29 18:22:36 -0700599 atransport* known_emulator = find_emulator_transport_by_adb_port(adb_port);
Elliott Hughes88b4c852015-04-30 17:32:03 -0700600 if (known_emulator != nullptr) {
601 *response = android::base::StringPrintf("Emulator already registered on port %d", adb_port);
Benoit Goby3f9f9ce2013-03-29 18:22:36 -0700602 return;
603 }
604
Elliott Hughes88b4c852015-04-30 17:32:03 -0700605 // Check if more emulators can be registered. Similar unproblematic
606 // race condition as above.
Benoit Goby3f9f9ce2013-03-29 18:22:36 -0700607 int candidate_slot = get_available_local_transport_index();
608 if (candidate_slot < 0) {
Elliott Hughes88b4c852015-04-30 17:32:03 -0700609 *response = "Cannot accept more emulators";
Benoit Goby3f9f9ce2013-03-29 18:22:36 -0700610 return;
611 }
612
Elliott Hughes88b4c852015-04-30 17:32:03 -0700613 // Preconditions met, try to connect to the emulator.
Benoit Goby3f9f9ce2013-03-29 18:22:36 -0700614 if (!local_connect_arbitrary_ports(console_port, adb_port)) {
Elliott Hughes88b4c852015-04-30 17:32:03 -0700615 *response = android::base::StringPrintf("Connected to emulator on ports %d,%d",
616 console_port, adb_port);
Benoit Goby3f9f9ce2013-03-29 18:22:36 -0700617 } else {
Elliott Hughes88b4c852015-04-30 17:32:03 -0700618 *response = android::base::StringPrintf("Could not connect to emulator on ports %d,%d",
619 console_port, adb_port);
Benoit Goby3f9f9ce2013-03-29 18:22:36 -0700620 }
621}
622
623static void connect_service(int fd, void* cookie)
624{
Dan Albertf30d73c2015-02-25 17:51:28 -0800625 char *host = reinterpret_cast<char*>(cookie);
Benoit Goby3f9f9ce2013-03-29 18:22:36 -0700626
Elliott Hughes88b4c852015-04-30 17:32:03 -0700627 std::string response;
Benoit Goby3f9f9ce2013-03-29 18:22:36 -0700628 if (!strncmp(host, "emu:", 4)) {
Elliott Hughes88b4c852015-04-30 17:32:03 -0700629 connect_emulator(host + 4, &response);
Benoit Goby3f9f9ce2013-03-29 18:22:36 -0700630 } else {
Elliott Hughes88b4c852015-04-30 17:32:03 -0700631 connect_device(host, &response);
Benoit Goby3f9f9ce2013-03-29 18:22:36 -0700632 }
633
634 // Send response for emulator and device
Elliott Hughes88b4c852015-04-30 17:32:03 -0700635 SendProtocolString(fd, response);
Benoit Goby3f9f9ce2013-03-29 18:22:36 -0700636 adb_close(fd);
637}
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800638#endif
639
640#if ADB_HOST
641asocket* host_service_to_socket(const char* name, const char *serial)
642{
643 if (!strcmp(name,"track-devices")) {
644 return create_device_tracker();
645 } else if (!strncmp(name, "wait-for-", strlen("wait-for-"))) {
Dan Albertf30d73c2015-02-25 17:51:28 -0800646 auto sinfo = reinterpret_cast<state_info*>(malloc(sizeof(state_info)));
Elliott Hughesd0269c92015-04-21 19:39:52 -0700647 if (sinfo == nullptr) {
648 fprintf(stderr, "couldn't allocate state_info: %s", strerror(errno));
649 return NULL;
650 }
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800651
652 if (serial)
653 sinfo->serial = strdup(serial);
654 else
655 sinfo->serial = NULL;
656
657 name += strlen("wait-for-");
658
659 if (!strncmp(name, "local", strlen("local"))) {
Elliott Hughes3aec2ba2015-05-05 13:10:43 -0700660 sinfo->transport_type = kTransportLocal;
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800661 sinfo->state = CS_DEVICE;
662 } else if (!strncmp(name, "usb", strlen("usb"))) {
Elliott Hughes3aec2ba2015-05-05 13:10:43 -0700663 sinfo->transport_type = kTransportUsb;
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800664 sinfo->state = CS_DEVICE;
665 } else if (!strncmp(name, "any", strlen("any"))) {
Elliott Hughes3aec2ba2015-05-05 13:10:43 -0700666 sinfo->transport_type = kTransportAny;
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800667 sinfo->state = CS_DEVICE;
668 } else {
669 free(sinfo);
670 return NULL;
671 }
672
673 int fd = create_service_thread(wait_for_state, sinfo);
674 return create_local_socket(fd);
Benoit Goby3f9f9ce2013-03-29 18:22:36 -0700675 } else if (!strncmp(name, "connect:", 8)) {
676 const char *host = name + 8;
677 int fd = create_service_thread(connect_service, (void *)host);
678 return create_local_socket(fd);
The Android Open Source Project9ca14dc2009-03-03 19:32:55 -0800679 }
680 return NULL;
681}
682#endif /* ADB_HOST */