blob: 708ef42f6e15525a11cf1a29979ddc68ab7b90c1 [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
62
63void *service_bootstrap_func(void *x)
64{
Dan Albertbac34742015-02-25 17:51:28 -080065 stinfo* sti = reinterpret_cast<stinfo*>(x);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080066 sti->func(sti->fd, sti->cookie);
67 free(sti);
68 return 0;
69}
70
Benoit Goby9470c2f2013-02-20 15:04:53 -080071#if !ADB_HOST
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080072
Elliott Hughesab52c182015-05-01 17:04:38 -070073void restart_root_service(int fd, void *cookie) {
The Android Open Source Projecte037fd72009-03-13 13:04:37 -070074 if (getuid() == 0) {
Elliott Hughesab52c182015-05-01 17:04:38 -070075 WriteFdExactly(fd, "adbd is already running as root\n");
The Android Open Source Projecte037fd72009-03-13 13:04:37 -070076 adb_close(fd);
77 } else {
Elliott Hughesab52c182015-05-01 17:04:38 -070078 char value[PROPERTY_VALUE_MAX];
The Android Open Source Projecte037fd72009-03-13 13:04:37 -070079 property_get("ro.debuggable", value, "");
80 if (strcmp(value, "1") != 0) {
Elliott Hughesab52c182015-05-01 17:04:38 -070081 WriteFdExactly(fd, "adbd cannot run as root in production builds\n");
Mike Lockwoodff196702009-08-24 15:58:40 -070082 adb_close(fd);
The Android Open Source Projecte037fd72009-03-13 13:04:37 -070083 return;
84 }
85
Benoit Goby7941cf82012-03-16 14:44:17 -070086 property_set("service.adb.root", "1");
Elliott Hughesab52c182015-05-01 17:04:38 -070087 WriteFdExactly(fd, "restarting adbd as root\n");
The Android Open Source Projecte037fd72009-03-13 13:04:37 -070088 adb_close(fd);
The Android Open Source Projecte037fd72009-03-13 13:04:37 -070089 }
90}
91
Elliott Hughesab52c182015-05-01 17:04:38 -070092void restart_unroot_service(int fd, void *cookie) {
Dan Pasanen98858812014-10-06 12:57:20 -050093 if (getuid() != 0) {
Elliott Hughesab52c182015-05-01 17:04:38 -070094 WriteFdExactly(fd, "adbd not running as root\n");
Dan Pasanen98858812014-10-06 12:57:20 -050095 adb_close(fd);
96 } else {
97 property_set("service.adb.root", "0");
Elliott Hughesab52c182015-05-01 17:04:38 -070098 WriteFdExactly(fd, "restarting adbd as non root\n");
Dan Pasanen98858812014-10-06 12:57:20 -050099 adb_close(fd);
100 }
101}
102
Elliott Hughesab52c182015-05-01 17:04:38 -0700103void restart_tcp_service(int fd, void *cookie) {
Elliott Hughesccecf142014-01-16 10:53:11 -0800104 int port = (int) (uintptr_t) cookie;
Mike Lockwoodff196702009-08-24 15:58:40 -0700105 if (port <= 0) {
Elliott Hughesab52c182015-05-01 17:04:38 -0700106 WriteFdFmt(fd, "invalid port %d\n", port);
Mike Lockwoodff196702009-08-24 15:58:40 -0700107 adb_close(fd);
108 return;
109 }
110
Elliott Hughesab52c182015-05-01 17:04:38 -0700111 char value[PROPERTY_VALUE_MAX];
Mike Lockwoodff196702009-08-24 15:58:40 -0700112 snprintf(value, sizeof(value), "%d", port);
113 property_set("service.adb.tcp.port", value);
Elliott Hughesab52c182015-05-01 17:04:38 -0700114 WriteFdFmt(fd, "restarting in TCP mode port: %d\n", port);
Mike Lockwoodff196702009-08-24 15:58:40 -0700115 adb_close(fd);
Mike Lockwoodff196702009-08-24 15:58:40 -0700116}
117
Elliott Hughesab52c182015-05-01 17:04:38 -0700118void restart_usb_service(int fd, void *cookie) {
Mike Lockwoodff196702009-08-24 15:58:40 -0700119 property_set("service.adb.tcp.port", "0");
Elliott Hughesab52c182015-05-01 17:04:38 -0700120 WriteFdExactly(fd, "restarting in USB mode\n");
Mike Lockwoodff196702009-08-24 15:58:40 -0700121 adb_close(fd);
Mike Lockwoodff196702009-08-24 15:58:40 -0700122}
123
Tao Bao175b7bb2015-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 Bao175b7bb2015-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 Hughese67f1f82015-04-30 17:32:03 -0700137 WriteFdExactly(fd, "'adb root' is required for 'adb reboot sideload'.\n");
Tao Bao175b7bb2015-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 Lockwoodee156622009-08-04 20:37:51 -0400157
158 sync();
Mike Lockwoodd969faa2010-02-24 16:07:23 -0500159
Tao Bao175b7bb2015-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 Hughesab52c182015-05-01 17:04:38 -0700163 WriteFdFmt(fd, "reboot string too long: %d\n", ret);
Tao Bao175b7bb2015-03-29 11:22:34 -0700164 return false;
Nick Kralevichca8e66a2013-04-18 12:20:02 -0700165 }
166
167 ret = property_set(ANDROID_RB_PROPERTY, property_val);
Mike Lockwoodee156622009-08-04 20:37:51 -0400168 if (ret < 0) {
Elliott Hughesab52c182015-05-01 17:04:38 -0700169 WriteFdFmt(fd, "reboot failed: %d\n", ret);
Tao Bao175b7bb2015-03-29 11:22:34 -0700170 return false;
Mike Lockwoodee156622009-08-04 20:37:51 -0400171 }
Tao Bao175b7bb2015-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 Hughesa7090b92015-04-17 17:03:59 -0700181 while (true) {
Tao Bao175b7bb2015-03-29 11:22:34 -0700182 pause();
183 }
184 }
185
Mike Lockwoodb6b40072009-09-19 16:52:58 -0400186 free(arg);
Mike Lockwoodee156622009-08-04 20:37:51 -0400187 adb_close(fd);
188}
189
David 'Digit' Turner25258692013-03-21 21:07:42 +0100190void reverse_service(int fd, void* arg)
191{
Dan Albertbac34742015-02-25 17:51:28 -0800192 const char* command = reinterpret_cast<const char*>(arg);
David 'Digit' Turner25258692013-03-21 21:07:42 +0100193
194 if (handle_forward_request(command, kTransportAny, NULL, fd) < 0) {
Elliott Hughese67f1f82015-04-30 17:32:03 -0700195 SendFail(fd, "not a reverse forwarding command");
David 'Digit' Turner25258692013-03-21 21:07:42 +0100196 }
197 free(arg);
198 adb_close(fd);
199}
200
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800201#endif
202
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800203static int create_service_thread(void (*func)(int, void *), void *cookie)
204{
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800205 int s[2];
Dan Albertbac34742015-02-25 17:51:28 -0800206 if (adb_socketpair(s)) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800207 printf("cannot create service socket pair\n");
208 return -1;
209 }
Spencer Low8d8126a2015-07-21 02:06:26 -0700210 D("socketpair: (%d,%d)\n", s[0], s[1]);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800211
Dan Albertbac34742015-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 Projectdd7bc332009-03-03 19:32:55 -0800216 sti->func = func;
217 sti->cookie = cookie;
218 sti->fd = s[1];
219
Elliott Hughes9b0f3542015-05-05 13:41:21 -0700220 if (!adb_thread_create(service_bootstrap_func, sti)) {
The Android Open Source Projectdd7bc332009-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 Abgrall408fa572011-03-16 15:57:42 -0700232#if !ADB_HOST
Jeff Sharkey5d9d4342014-05-26 18:30:43 -0700233
234static void init_subproc_child()
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800235{
Jeff Sharkey5d9d4342014-05-26 18:30:43 -0700236 setsid();
237
Rom Lemarchand07ce7ca2014-06-20 16:30:54 -0700238 // Set OOM score adjustment to prevent killing
Nick Kralevichfe8d7f42014-07-18 20:57:35 -0700239 int fd = adb_open("/proc/self/oom_score_adj", O_WRONLY | O_CLOEXEC);
Jeff Sharkey5d9d4342014-05-26 18:30:43 -0700240 if (fd >= 0) {
241 adb_write(fd, "0", 1);
242 adb_close(fd);
243 } else {
Rom Lemarchand07ce7ca2014-06-20 16:30:54 -0700244 D("adb: unable to update oom_score_adj\n");
Jeff Sharkey5d9d4342014-05-26 18:30:43 -0700245 }
246}
247
Dan Albert569a1302015-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 Sharkey5d9d4342014-05-26 18:30:43 -0700251 D("create_subproc_pty(cmd=%s, arg0=%s, arg1=%s)\n", cmd, arg0, arg1);
Dan Albert569a1302015-05-15 12:56:23 -0700252 char pts_name[PATH_MAX];
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800253 int ptm;
Dan Albert569a1302015-05-15 12:56:23 -0700254 *pid = forkpty(&ptm, pts_name, nullptr, nullptr);
255 if (*pid == -1) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800256 printf("- fork failed: %s -\n", strerror(errno));
Spencer Low6ac5d7d2015-05-22 20:09:06 -0700257 unix_close(ptm);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800258 return -1;
259 }
260
Jeff Sharkey5d9d4342014-05-26 18:30:43 -0700261 if (*pid == 0) {
262 init_subproc_child();
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800263
Dan Albert569a1302015-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 Low6ac5d7d2015-05-22 20:09:06 -0700268 unix_close(ptm);
JP Abgrall408fa572011-03-16 15:57:42 -0700269 exit(-1);
270 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800271
Dan Albert569a1302015-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 Low6ac5d7d2015-05-22 20:09:06 -0700277 unix_close(pts);
278 unix_close(ptm);
Dan Albert569a1302015-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 Low6ac5d7d2015-05-22 20:09:06 -0700285 unix_close(pts);
286 unix_close(ptm);
Dan Albert569a1302015-05-15 12:56:23 -0700287 exit(-1);
288 }
289 }
290
Jeff Sharkey5d9d4342014-05-26 18:30:43 -0700291 dup2(pts, STDIN_FILENO);
292 dup2(pts, STDOUT_FILENO);
293 dup2(pts, STDERR_FILENO);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800294
Spencer Low6ac5d7d2015-05-22 20:09:06 -0700295 unix_close(pts);
296 unix_close(ptm);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800297
Dan Albert569a1302015-05-15 12:56:23 -0700298 execl(cmd, cmd, arg0, arg1, nullptr);
JP Abgrall408fa572011-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 Projectdd7bc332009-03-03 19:32:55 -0800303 return ptm;
304 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800305}
Dan Albert569a1302015-05-15 12:56:23 -0700306#endif // !ADB_HOST
Jeff Sharkey5d9d4342014-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 Cuie77b6a02014-11-11 09:24:11 -0800311#if defined(_WIN32)
Jeff Sharkey5d9d4342014-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 Cuie77b6a02014-11-11 09:24:11 -0800314#else
Jeff Sharkey5d9d4342014-05-26 18:30:43 -0700315
316 // 0 is parent socket, 1 is child socket
317 int sv[2];
leozwangcbf02672014-08-15 09:51:27 -0700318 if (adb_socketpair(sv) < 0) {
Jeff Sharkey5d9d4342014-05-26 18:30:43 -0700319 printf("[ cannot create socket pair - %s ]\n", strerror(errno));
320 return -1;
321 }
Spencer Low8d8126a2015-07-21 02:06:26 -0700322 D("socketpair: (%d,%d)\n", sv[0], sv[1]);
Jeff Sharkey5d9d4342014-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 Sharkey5d9d4342014-05-26 18:30:43 -0700336 dup2(sv[1], STDIN_FILENO);
337 dup2(sv[1], STDOUT_FILENO);
Jeff Sharkey960df972014-06-09 17:30:57 -0700338 dup2(sv[1], STDERR_FILENO);
339
Jeff Sharkey5d9d4342014-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 Cuie77b6a02014-11-11 09:24:11 -0800350#endif /* !defined(_WIN32) */
Jeff Sharkey5d9d4342014-05-26 18:30:43 -0700351}
JP Abgrall408fa572011-03-16 15:57:42 -0700352#endif /* !ABD_HOST */
The Android Open Source Projectdd7bc332009-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 Abgrall408fa572011-03-16 15:57:42 -0700360#if !ADB_HOST
361static void subproc_waiter_service(int fd, void *cookie)
362{
Elliott Hughesccecf142014-01-16 10:53:11 -0800363 pid_t pid = (pid_t) (uintptr_t) cookie;
JP Abgrall408fa572011-03-16 15:57:42 -0700364
365 D("entered. fd=%d of pid=%d\n", fd, pid);
Elliott Hughesa7090b92015-04-17 17:03:59 -0700366 while (true) {
JP Abgrall408fa572011-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 Abgrall408fa572011-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 Albertcc731cc2015-02-24 21:26:58 -0800386 res = WriteFdExactly(SHELL_EXIT_NOTIFY_FD, &fd, sizeof(fd)) ? 0 : -1;
JP Abgrall408fa572011-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 Hughes3bd73c12015-05-05 13:10:43 -0700392static int create_subproc_thread(const char *name, bool pty = false) {
Jeff Sharkey5d9d4342014-05-26 18:30:43 -0700393 const char *arg0, *arg1;
394 if (name == 0 || *name == 0) {
395 arg0 = "-"; arg1 = 0;
JP Abgrall408fa572011-03-16 15:57:42 -0700396 } else {
Jeff Sharkey5d9d4342014-05-26 18:30:43 -0700397 arg0 = "-c"; arg1 = name;
JP Abgrall408fa572011-03-16 15:57:42 -0700398 }
Jeff Sharkey5d9d4342014-05-26 18:30:43 -0700399
Elliott Hughes3bd73c12015-05-05 13:10:43 -0700400 pid_t pid = -1;
401 int ret_fd;
402 if (pty) {
Jeff Sharkey5d9d4342014-05-26 18:30:43 -0700403 ret_fd = create_subproc_pty(SHELL_COMMAND, arg0, arg1, &pid);
Elliott Hughes3bd73c12015-05-05 13:10:43 -0700404 } else {
Jeff Sharkey5d9d4342014-05-26 18:30:43 -0700405 ret_fd = create_subproc_raw(SHELL_COMMAND, arg0, arg1, &pid);
Jeff Sharkey5d9d4342014-05-26 18:30:43 -0700406 }
407 D("create_subproc ret_fd=%d pid=%d\n", ret_fd, pid);
JP Abgrall408fa572011-03-16 15:57:42 -0700408
Dan Albertbac34742015-02-25 17:51:28 -0800409 stinfo* sti = reinterpret_cast<stinfo*>(malloc(sizeof(stinfo)));
JP Abgrall408fa572011-03-16 15:57:42 -0700410 if(sti == 0) fatal("cannot allocate stinfo");
411 sti->func = subproc_waiter_service;
Elliott Hughesccecf142014-01-16 10:53:11 -0800412 sti->cookie = (void*) (uintptr_t) pid;
JP Abgrall408fa572011-03-16 15:57:42 -0700413 sti->fd = ret_fd;
414
Elliott Hughes9b0f3542015-05-05 13:41:21 -0700415 if (!adb_thread_create(service_bootstrap_func, sti)) {
JP Abgrall408fa572011-03-16 15:57:42 -0700416 free(sti);
417 adb_close(ret_fd);
Jeff Sharkey5d9d4342014-05-26 18:30:43 -0700418 fprintf(stderr, "cannot create service thread\n");
JP Abgrall408fa572011-03-16 15:57:42 -0700419 return -1;
420 }
421
Jeff Sharkey5d9d4342014-05-26 18:30:43 -0700422 D("service thread started, fd=%d pid=%d\n", ret_fd, pid);
JP Abgrall408fa572011-03-16 15:57:42 -0700423 return ret_fd;
424}
425#endif
426
The Android Open Source Projectdd7bc332009-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) {
435 ret = socket_loopback_client(port, SOCK_STREAM);
436 if (ret >= 0)
437 disable_tcp_nagle(ret);
438 } else {
439#if ADB_HOST
Elliott Hughes381cfa92015-07-23 17:12:58 -0700440 std::string error;
441 ret = network_connect(name + 1, port, SOCK_STREAM, 0, &error);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800442#else
443 return -1;
444#endif
445 }
Elliott Hughesadbf4422015-07-29 17:45:24 -0700446#if !defined(_WIN32) /* winsock doesn't implement unix domain sockets */
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800447 } else if(!strncmp(name, "local:", 6)) {
448 ret = socket_local_client(name + 6,
449 ANDROID_SOCKET_NAMESPACE_RESERVED, SOCK_STREAM);
450 } else if(!strncmp(name, "localreserved:", 14)) {
451 ret = socket_local_client(name + 14,
452 ANDROID_SOCKET_NAMESPACE_RESERVED, SOCK_STREAM);
453 } else if(!strncmp(name, "localabstract:", 14)) {
454 ret = socket_local_client(name + 14,
455 ANDROID_SOCKET_NAMESPACE_ABSTRACT, SOCK_STREAM);
456 } else if(!strncmp(name, "localfilesystem:", 16)) {
457 ret = socket_local_client(name + 16,
458 ANDROID_SOCKET_NAMESPACE_FILESYSTEM, SOCK_STREAM);
459#endif
Benoit Goby9470c2f2013-02-20 15:04:53 -0800460#if !ADB_HOST
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800461 } else if(!strncmp("dev:", name, 4)) {
Nick Kralevichfe8d7f42014-07-18 20:57:35 -0700462 ret = unix_open(name + 4, O_RDWR | O_CLOEXEC);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800463 } else if(!strncmp(name, "framebuffer:", 12)) {
464 ret = create_service_thread(framebuffer_service, 0);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800465 } else if (!strncmp(name, "jdwp:", 5)) {
466 ret = create_jdwp_connection_fd(atoi(name+5));
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800467 } else if(!HOST && !strncmp(name, "shell:", 6)) {
Elliott Hughes3bd73c12015-05-05 13:10:43 -0700468 ret = create_subproc_thread(name + 6, true);
Jeff Sharkey5d9d4342014-05-26 18:30:43 -0700469 } else if(!HOST && !strncmp(name, "exec:", 5)) {
Elliott Hughes3bd73c12015-05-05 13:10:43 -0700470 ret = create_subproc_thread(name + 5);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800471 } else if(!strncmp(name, "sync:", 5)) {
472 ret = create_service_thread(file_sync_service, NULL);
473 } else if(!strncmp(name, "remount:", 8)) {
474 ret = create_service_thread(remount_service, NULL);
Mike Lockwoodee156622009-08-04 20:37:51 -0400475 } else if(!strncmp(name, "reboot:", 7)) {
Mike Lockwoodb6b40072009-09-19 16:52:58 -0400476 void* arg = strdup(name + 7);
Jeff Sharkey5d9d4342014-05-26 18:30:43 -0700477 if (arg == NULL) return -1;
Mike Lockwoodb6b40072009-09-19 16:52:58 -0400478 ret = create_service_thread(reboot_service, arg);
The Android Open Source Projecte037fd72009-03-13 13:04:37 -0700479 } else if(!strncmp(name, "root:", 5)) {
480 ret = create_service_thread(restart_root_service, NULL);
Dan Pasanen98858812014-10-06 12:57:20 -0500481 } else if(!strncmp(name, "unroot:", 7)) {
482 ret = create_service_thread(restart_unroot_service, NULL);
Christopher Tated2f54152011-04-21 12:53:28 -0700483 } else if(!strncmp(name, "backup:", 7)) {
Elliott Hughes6c34bba2015-04-17 20:11:08 -0700484 ret = create_subproc_thread(android::base::StringPrintf("/system/bin/bu backup %s",
Elliott Hughes3bd73c12015-05-05 13:10:43 -0700485 (name + 7)).c_str());
Christopher Tate702967a2011-05-17 15:52:54 -0700486 } else if(!strncmp(name, "restore:", 8)) {
Elliott Hughes3bd73c12015-05-05 13:10:43 -0700487 ret = create_subproc_thread("/system/bin/bu restore");
Mike Lockwoodff196702009-08-24 15:58:40 -0700488 } else if(!strncmp(name, "tcpip:", 6)) {
489 int port;
Spencer Low943ef232015-01-25 17:38:36 -0800490 if (sscanf(name + 6, "%d", &port) != 1) {
Elliott Hughes19d80b82015-07-21 16:13:40 -0700491 return -1;
Mike Lockwoodff196702009-08-24 15:58:40 -0700492 }
Elliott Hughesccecf142014-01-16 10:53:11 -0800493 ret = create_service_thread(restart_tcp_service, (void *) (uintptr_t) port);
Mike Lockwoodff196702009-08-24 15:58:40 -0700494 } else if(!strncmp(name, "usb:", 4)) {
495 ret = create_service_thread(restart_usb_service, NULL);
David 'Digit' Turner25258692013-03-21 21:07:42 +0100496 } else if (!strncmp(name, "reverse:", 8)) {
497 char* cookie = strdup(name + 8);
498 if (cookie == NULL) {
499 ret = -1;
500 } else {
501 ret = create_service_thread(reverse_service, cookie);
502 if (ret < 0) {
503 free(cookie);
504 }
505 }
Paul Lawrenceec900bb2014-10-09 14:22:49 +0000506 } else if(!strncmp(name, "disable-verity:", 15)) {
Paul Lawrence982089d2014-12-03 15:31:57 -0800507 ret = create_service_thread(set_verity_enabled_state_service, (void*)0);
508 } else if(!strncmp(name, "enable-verity:", 15)) {
509 ret = create_service_thread(set_verity_enabled_state_service, (void*)1);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800510#endif
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800511 }
512 if (ret >= 0) {
513 close_on_exec(ret);
514 }
515 return ret;
516}
517
518#if ADB_HOST
519struct state_info {
Elliott Hughes3bd73c12015-05-05 13:10:43 -0700520 TransportType transport_type;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800521 char* serial;
Dan Albertdcd78a12015-05-18 16:43:57 -0700522 ConnectionState state;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800523};
524
525static void wait_for_state(int fd, void* cookie)
526{
Dan Albertbac34742015-02-25 17:51:28 -0800527 state_info* sinfo = reinterpret_cast<state_info*>(cookie);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800528
529 D("wait_for_state %d\n", sinfo->state);
530
Elliott Hughes7be29c82015-04-16 22:54:44 -0700531 std::string error_msg = "unknown error";
Elliott Hughes3bd73c12015-05-05 13:10:43 -0700532 atransport* t = acquire_one_transport(sinfo->state, sinfo->transport_type, sinfo->serial,
533 &error_msg);
Elliott Hughese2d36772015-06-23 13:00:32 -0700534 if (t != nullptr) {
Elliott Hughese67f1f82015-04-30 17:32:03 -0700535 SendOkay(fd);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800536 } else {
Elliott Hughese67f1f82015-04-30 17:32:03 -0700537 SendFail(fd, error_msg);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800538 }
539
540 if (sinfo->serial)
541 free(sinfo->serial);
542 free(sinfo);
543 adb_close(fd);
544 D("wait_for_state is done\n");
545}
Benoit Goby1c45ee92013-03-29 18:22:36 -0700546
Elliott Hughes3d5f60d2015-07-18 12:21:30 -0700547static void connect_device(const std::string& address, std::string* response) {
548 if (address.empty()) {
549 *response = "empty address";
Elliott Hughese67f1f82015-04-30 17:32:03 -0700550 return;
Benoit Goby1c45ee92013-03-29 18:22:36 -0700551 }
552
Elliott Hughes3d5f60d2015-07-18 12:21:30 -0700553 std::string serial;
554 std::string host;
Elliott Hughese67f1f82015-04-30 17:32:03 -0700555 int port = DEFAULT_ADB_LOCAL_TRANSPORT_PORT;
Elliott Hughes3d5f60d2015-07-18 12:21:30 -0700556 if (!parse_host_and_port(address, &serial, &host, &port, response)) {
Benoit Goby1c45ee92013-03-29 18:22:36 -0700557 return;
558 }
559
Elliott Hughes381cfa92015-07-23 17:12:58 -0700560 std::string error;
561 int fd = network_connect(host.c_str(), port, SOCK_STREAM, 10, &error);
Elliott Hughes3d5f60d2015-07-18 12:21:30 -0700562 if (fd == -1) {
563 *response = android::base::StringPrintf("unable to connect to %s: %s",
Elliott Hughes381cfa92015-07-23 17:12:58 -0700564 serial.c_str(), error.c_str());
Elliott Hughes3d5f60d2015-07-18 12:21:30 -0700565 return;
566 }
567
568 D("client: connected %s remote on fd %d\n", serial.c_str(), fd);
Benoit Goby1c45ee92013-03-29 18:22:36 -0700569 close_on_exec(fd);
570 disable_tcp_nagle(fd);
571
Elliott Hughese67f1f82015-04-30 17:32:03 -0700572 int ret = register_socket_transport(fd, serial.c_str(), port, 0);
Benoit Goby1c45ee92013-03-29 18:22:36 -0700573 if (ret < 0) {
574 adb_close(fd);
Elliott Hughese67f1f82015-04-30 17:32:03 -0700575 *response = android::base::StringPrintf("already connected to %s", serial.c_str());
Benoit Goby1c45ee92013-03-29 18:22:36 -0700576 } else {
Elliott Hughese67f1f82015-04-30 17:32:03 -0700577 *response = android::base::StringPrintf("connected to %s", serial.c_str());
Benoit Goby1c45ee92013-03-29 18:22:36 -0700578 }
579}
580
Elliott Hughese67f1f82015-04-30 17:32:03 -0700581void connect_emulator(const std::string& port_spec, std::string* response) {
582 std::vector<std::string> pieces = android::base::Split(port_spec, ",");
583 if (pieces.size() != 2) {
584 *response = android::base::StringPrintf("unable to parse '%s' as <console port>,<adb port>",
585 port_spec.c_str());
Benoit Goby1c45ee92013-03-29 18:22:36 -0700586 return;
587 }
588
Elliott Hughese67f1f82015-04-30 17:32:03 -0700589 int console_port = strtol(pieces[0].c_str(), NULL, 0);
590 int adb_port = strtol(pieces[1].c_str(), NULL, 0);
591 if (console_port <= 0 || adb_port <= 0) {
592 *response = android::base::StringPrintf("Invalid port numbers: %s", port_spec.c_str());
Benoit Goby1c45ee92013-03-29 18:22:36 -0700593 return;
594 }
595
Elliott Hughese67f1f82015-04-30 17:32:03 -0700596 // Check if the emulator is already known.
597 // Note: There's a small but harmless race condition here: An emulator not
598 // present just yet could be registered by another invocation right
599 // after doing this check here. However, local_connect protects
600 // against double-registration too. From here, a better error message
601 // can be produced. In the case of the race condition, the very specific
602 // error message won't be shown, but the data doesn't get corrupted.
Benoit Goby1c45ee92013-03-29 18:22:36 -0700603 atransport* known_emulator = find_emulator_transport_by_adb_port(adb_port);
Elliott Hughese67f1f82015-04-30 17:32:03 -0700604 if (known_emulator != nullptr) {
605 *response = android::base::StringPrintf("Emulator already registered on port %d", adb_port);
Benoit Goby1c45ee92013-03-29 18:22:36 -0700606 return;
607 }
608
Elliott Hughese67f1f82015-04-30 17:32:03 -0700609 // Check if more emulators can be registered. Similar unproblematic
610 // race condition as above.
Benoit Goby1c45ee92013-03-29 18:22:36 -0700611 int candidate_slot = get_available_local_transport_index();
612 if (candidate_slot < 0) {
Elliott Hughese67f1f82015-04-30 17:32:03 -0700613 *response = "Cannot accept more emulators";
Benoit Goby1c45ee92013-03-29 18:22:36 -0700614 return;
615 }
616
Elliott Hughese67f1f82015-04-30 17:32:03 -0700617 // Preconditions met, try to connect to the emulator.
Elliott Hughes381cfa92015-07-23 17:12:58 -0700618 std::string error;
619 if (!local_connect_arbitrary_ports(console_port, adb_port, &error)) {
Elliott Hughese67f1f82015-04-30 17:32:03 -0700620 *response = android::base::StringPrintf("Connected to emulator on ports %d,%d",
621 console_port, adb_port);
Benoit Goby1c45ee92013-03-29 18:22:36 -0700622 } else {
Elliott Hughes381cfa92015-07-23 17:12:58 -0700623 *response = android::base::StringPrintf("Could not connect to emulator on ports %d,%d: %s",
624 console_port, adb_port, error.c_str());
Benoit Goby1c45ee92013-03-29 18:22:36 -0700625 }
626}
627
Alan Jeon4af3c402014-10-16 17:05:25 +0900628static void connect_service(int fd, void* data) {
629 char* host = reinterpret_cast<char*>(data);
Elliott Hughese67f1f82015-04-30 17:32:03 -0700630 std::string response;
Benoit Goby1c45ee92013-03-29 18:22:36 -0700631 if (!strncmp(host, "emu:", 4)) {
Elliott Hughese67f1f82015-04-30 17:32:03 -0700632 connect_emulator(host + 4, &response);
Benoit Goby1c45ee92013-03-29 18:22:36 -0700633 } else {
Elliott Hughese67f1f82015-04-30 17:32:03 -0700634 connect_device(host, &response);
Benoit Goby1c45ee92013-03-29 18:22:36 -0700635 }
Alan Jeon4af3c402014-10-16 17:05:25 +0900636 free(host);
Benoit Goby1c45ee92013-03-29 18:22:36 -0700637
638 // Send response for emulator and device
Elliott Hughese67f1f82015-04-30 17:32:03 -0700639 SendProtocolString(fd, response);
Benoit Goby1c45ee92013-03-29 18:22:36 -0700640 adb_close(fd);
641}
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800642#endif
643
644#if ADB_HOST
645asocket* host_service_to_socket(const char* name, const char *serial)
646{
647 if (!strcmp(name,"track-devices")) {
648 return create_device_tracker();
649 } else if (!strncmp(name, "wait-for-", strlen("wait-for-"))) {
Dan Albertbac34742015-02-25 17:51:28 -0800650 auto sinfo = reinterpret_cast<state_info*>(malloc(sizeof(state_info)));
Elliott Hughesdc3b4592015-04-21 19:39:52 -0700651 if (sinfo == nullptr) {
652 fprintf(stderr, "couldn't allocate state_info: %s", strerror(errno));
653 return NULL;
654 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800655
656 if (serial)
657 sinfo->serial = strdup(serial);
658 else
659 sinfo->serial = NULL;
660
661 name += strlen("wait-for-");
662
663 if (!strncmp(name, "local", strlen("local"))) {
Elliott Hughes3bd73c12015-05-05 13:10:43 -0700664 sinfo->transport_type = kTransportLocal;
Dan Albertdcd78a12015-05-18 16:43:57 -0700665 sinfo->state = kCsDevice;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800666 } else if (!strncmp(name, "usb", strlen("usb"))) {
Elliott Hughes3bd73c12015-05-05 13:10:43 -0700667 sinfo->transport_type = kTransportUsb;
Dan Albertdcd78a12015-05-18 16:43:57 -0700668 sinfo->state = kCsDevice;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800669 } else if (!strncmp(name, "any", strlen("any"))) {
Elliott Hughes3bd73c12015-05-05 13:10:43 -0700670 sinfo->transport_type = kTransportAny;
Dan Albertdcd78a12015-05-18 16:43:57 -0700671 sinfo->state = kCsDevice;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800672 } else {
Alan Jeon4af3c402014-10-16 17:05:25 +0900673 if (sinfo->serial) {
674 free(sinfo->serial);
675 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800676 free(sinfo);
677 return NULL;
678 }
679
680 int fd = create_service_thread(wait_for_state, sinfo);
681 return create_local_socket(fd);
Benoit Goby1c45ee92013-03-29 18:22:36 -0700682 } else if (!strncmp(name, "connect:", 8)) {
Alan Jeon4af3c402014-10-16 17:05:25 +0900683 char* host = strdup(name + 8);
684 int fd = create_service_thread(connect_service, host);
Benoit Goby1c45ee92013-03-29 18:22:36 -0700685 return create_local_socket(fd);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800686 }
687 return NULL;
688}
689#endif /* ADB_HOST */