blob: 2e3ad98a5bfa0039fec992486aebb5ba960c3ab9 [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 Hughes6c34bba2015-04-17 20:11:08 -070042
Dan Albert76649012015-02-24 15:51:19 -080043#if !ADB_HOST
44#include "cutils/android_reboot.h"
45#include "cutils/properties.h"
46#endif
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080047
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080048#include "adb.h"
Dan Albertcc731cc2015-02-24 21:26:58 -080049#include "adb_io.h"
Elliott Hughes3d5f60d2015-07-18 12:21:30 -070050#include "adb_utils.h"
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080051#include "file_sync_service.h"
Elliott Hughesec7a6672015-03-16 21:58:32 +000052#include "remount_service.h"
Dan Albert76649012015-02-24 15:51:19 -080053#include "transport.h"
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080054
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080055struct stinfo {
56 void (*func)(int fd, void *cookie);
57 int fd;
58 void *cookie;
59};
60
61
62void *service_bootstrap_func(void *x)
63{
Dan Albertbac34742015-02-25 17:51:28 -080064 stinfo* sti = reinterpret_cast<stinfo*>(x);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080065 sti->func(sti->fd, sti->cookie);
66 free(sti);
67 return 0;
68}
69
Benoit Goby9470c2f2013-02-20 15:04:53 -080070#if !ADB_HOST
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -080071
Elliott Hughesab52c182015-05-01 17:04:38 -070072void restart_root_service(int fd, void *cookie) {
The Android Open Source Projecte037fd72009-03-13 13:04:37 -070073 if (getuid() == 0) {
Elliott Hughesab52c182015-05-01 17:04:38 -070074 WriteFdExactly(fd, "adbd is already running as root\n");
The Android Open Source Projecte037fd72009-03-13 13:04:37 -070075 adb_close(fd);
76 } else {
Elliott Hughesab52c182015-05-01 17:04:38 -070077 char value[PROPERTY_VALUE_MAX];
The Android Open Source Projecte037fd72009-03-13 13:04:37 -070078 property_get("ro.debuggable", value, "");
79 if (strcmp(value, "1") != 0) {
Elliott Hughesab52c182015-05-01 17:04:38 -070080 WriteFdExactly(fd, "adbd cannot run as root in production builds\n");
Mike Lockwoodff196702009-08-24 15:58:40 -070081 adb_close(fd);
The Android Open Source Projecte037fd72009-03-13 13:04:37 -070082 return;
83 }
84
Benoit Goby7941cf82012-03-16 14:44:17 -070085 property_set("service.adb.root", "1");
Elliott Hughesab52c182015-05-01 17:04:38 -070086 WriteFdExactly(fd, "restarting adbd as root\n");
The Android Open Source Projecte037fd72009-03-13 13:04:37 -070087 adb_close(fd);
The Android Open Source Projecte037fd72009-03-13 13:04:37 -070088 }
89}
90
Elliott Hughesab52c182015-05-01 17:04:38 -070091void restart_unroot_service(int fd, void *cookie) {
Dan Pasanen98858812014-10-06 12:57:20 -050092 if (getuid() != 0) {
Elliott Hughesab52c182015-05-01 17:04:38 -070093 WriteFdExactly(fd, "adbd not running as root\n");
Dan Pasanen98858812014-10-06 12:57:20 -050094 adb_close(fd);
95 } else {
96 property_set("service.adb.root", "0");
Elliott Hughesab52c182015-05-01 17:04:38 -070097 WriteFdExactly(fd, "restarting adbd as non root\n");
Dan Pasanen98858812014-10-06 12:57:20 -050098 adb_close(fd);
99 }
100}
101
Elliott Hughesab52c182015-05-01 17:04:38 -0700102void restart_tcp_service(int fd, void *cookie) {
Elliott Hughesccecf142014-01-16 10:53:11 -0800103 int port = (int) (uintptr_t) cookie;
Mike Lockwoodff196702009-08-24 15:58:40 -0700104 if (port <= 0) {
Elliott Hughesab52c182015-05-01 17:04:38 -0700105 WriteFdFmt(fd, "invalid port %d\n", port);
Mike Lockwoodff196702009-08-24 15:58:40 -0700106 adb_close(fd);
107 return;
108 }
109
Elliott Hughesab52c182015-05-01 17:04:38 -0700110 char value[PROPERTY_VALUE_MAX];
Mike Lockwoodff196702009-08-24 15:58:40 -0700111 snprintf(value, sizeof(value), "%d", port);
112 property_set("service.adb.tcp.port", value);
Elliott Hughesab52c182015-05-01 17:04:38 -0700113 WriteFdFmt(fd, "restarting in TCP mode port: %d\n", port);
Mike Lockwoodff196702009-08-24 15:58:40 -0700114 adb_close(fd);
Mike Lockwoodff196702009-08-24 15:58:40 -0700115}
116
Elliott Hughesab52c182015-05-01 17:04:38 -0700117void restart_usb_service(int fd, void *cookie) {
Mike Lockwoodff196702009-08-24 15:58:40 -0700118 property_set("service.adb.tcp.port", "0");
Elliott Hughesab52c182015-05-01 17:04:38 -0700119 WriteFdExactly(fd, "restarting in USB mode\n");
Mike Lockwoodff196702009-08-24 15:58:40 -0700120 adb_close(fd);
Mike Lockwoodff196702009-08-24 15:58:40 -0700121}
122
Tao Bao175b7bb2015-03-29 11:22:34 -0700123static bool reboot_service_impl(int fd, const char* arg) {
124 const char* reboot_arg = arg;
125 bool auto_reboot = false;
126
127 if (strcmp(reboot_arg, "sideload-auto-reboot") == 0) {
128 auto_reboot = true;
129 reboot_arg = "sideload";
130 }
131
Tao Bao175b7bb2015-03-29 11:22:34 -0700132 // It reboots into sideload mode by setting "--sideload" or "--sideload_auto_reboot"
133 // in the command file.
134 if (strcmp(reboot_arg, "sideload") == 0) {
135 if (getuid() != 0) {
Elliott Hughese67f1f82015-04-30 17:32:03 -0700136 WriteFdExactly(fd, "'adb root' is required for 'adb reboot sideload'.\n");
Tao Bao175b7bb2015-03-29 11:22:34 -0700137 return false;
138 }
139
140 const char* const recovery_dir = "/cache/recovery";
141 const char* const command_file = "/cache/recovery/command";
142 // Ensure /cache/recovery exists.
143 if (adb_mkdir(recovery_dir, 0770) == -1 && errno != EEXIST) {
144 D("Failed to create directory '%s': %s\n", recovery_dir, strerror(errno));
145 return false;
146 }
147
148 bool write_status = android::base::WriteStringToFile(
149 auto_reboot ? "--sideload_auto_reboot" : "--sideload", command_file);
150 if (!write_status) {
151 return false;
152 }
153
154 reboot_arg = "recovery";
155 }
Mike Lockwoodee156622009-08-04 20:37:51 -0400156
157 sync();
Mike Lockwoodd969faa2010-02-24 16:07:23 -0500158
Tao Bao175b7bb2015-03-29 11:22:34 -0700159 char property_val[PROPERTY_VALUE_MAX];
160 int ret = snprintf(property_val, sizeof(property_val), "reboot,%s", reboot_arg);
161 if (ret >= static_cast<int>(sizeof(property_val))) {
Elliott Hughesab52c182015-05-01 17:04:38 -0700162 WriteFdFmt(fd, "reboot string too long: %d\n", ret);
Tao Bao175b7bb2015-03-29 11:22:34 -0700163 return false;
Nick Kralevichca8e66a2013-04-18 12:20:02 -0700164 }
165
166 ret = property_set(ANDROID_RB_PROPERTY, property_val);
Mike Lockwoodee156622009-08-04 20:37:51 -0400167 if (ret < 0) {
Elliott Hughesab52c182015-05-01 17:04:38 -0700168 WriteFdFmt(fd, "reboot failed: %d\n", ret);
Tao Bao175b7bb2015-03-29 11:22:34 -0700169 return false;
Mike Lockwoodee156622009-08-04 20:37:51 -0400170 }
Tao Bao175b7bb2015-03-29 11:22:34 -0700171
172 return true;
173}
174
175void reboot_service(int fd, void* arg)
176{
177 if (reboot_service_impl(fd, static_cast<const char*>(arg))) {
178 // Don't return early. Give the reboot command time to take effect
179 // to avoid messing up scripts which do "adb reboot && adb wait-for-device"
Elliott Hughesa7090b92015-04-17 17:03:59 -0700180 while (true) {
Tao Bao175b7bb2015-03-29 11:22:34 -0700181 pause();
182 }
183 }
184
Mike Lockwoodb6b40072009-09-19 16:52:58 -0400185 free(arg);
Mike Lockwoodee156622009-08-04 20:37:51 -0400186 adb_close(fd);
187}
188
David 'Digit' Turner25258692013-03-21 21:07:42 +0100189void reverse_service(int fd, void* arg)
190{
Dan Albertbac34742015-02-25 17:51:28 -0800191 const char* command = reinterpret_cast<const char*>(arg);
David 'Digit' Turner25258692013-03-21 21:07:42 +0100192
193 if (handle_forward_request(command, kTransportAny, NULL, fd) < 0) {
Elliott Hughese67f1f82015-04-30 17:32:03 -0700194 SendFail(fd, "not a reverse forwarding command");
David 'Digit' Turner25258692013-03-21 21:07:42 +0100195 }
196 free(arg);
197 adb_close(fd);
198}
199
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800200#endif
201
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800202static int create_service_thread(void (*func)(int, void *), void *cookie)
203{
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800204 int s[2];
Dan Albertbac34742015-02-25 17:51:28 -0800205 if (adb_socketpair(s)) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800206 printf("cannot create service socket pair\n");
207 return -1;
208 }
Spencer Low8d8126a2015-07-21 02:06:26 -0700209 D("socketpair: (%d,%d)\n", s[0], s[1]);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800210
Dan Albertbac34742015-02-25 17:51:28 -0800211 stinfo* sti = reinterpret_cast<stinfo*>(malloc(sizeof(stinfo)));
212 if (sti == nullptr) {
213 fatal("cannot allocate stinfo");
214 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800215 sti->func = func;
216 sti->cookie = cookie;
217 sti->fd = s[1];
218
Elliott Hughes9b0f3542015-05-05 13:41:21 -0700219 if (!adb_thread_create(service_bootstrap_func, sti)) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800220 free(sti);
221 adb_close(s[0]);
222 adb_close(s[1]);
223 printf("cannot create service thread\n");
224 return -1;
225 }
226
227 D("service thread started, %d:%d\n",s[0], s[1]);
228 return s[0];
229}
230
JP Abgrall408fa572011-03-16 15:57:42 -0700231#if !ADB_HOST
Jeff Sharkey5d9d4342014-05-26 18:30:43 -0700232
233static void init_subproc_child()
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800234{
Jeff Sharkey5d9d4342014-05-26 18:30:43 -0700235 setsid();
236
Rom Lemarchand07ce7ca2014-06-20 16:30:54 -0700237 // Set OOM score adjustment to prevent killing
Nick Kralevichfe8d7f42014-07-18 20:57:35 -0700238 int fd = adb_open("/proc/self/oom_score_adj", O_WRONLY | O_CLOEXEC);
Jeff Sharkey5d9d4342014-05-26 18:30:43 -0700239 if (fd >= 0) {
240 adb_write(fd, "0", 1);
241 adb_close(fd);
242 } else {
Rom Lemarchand07ce7ca2014-06-20 16:30:54 -0700243 D("adb: unable to update oom_score_adj\n");
Jeff Sharkey5d9d4342014-05-26 18:30:43 -0700244 }
245}
246
Dan Albert569a1302015-05-15 12:56:23 -0700247#if !ADB_HOST
248static int create_subproc_pty(const char* cmd, const char* arg0,
249 const char* arg1, pid_t* pid) {
Jeff Sharkey5d9d4342014-05-26 18:30:43 -0700250 D("create_subproc_pty(cmd=%s, arg0=%s, arg1=%s)\n", cmd, arg0, arg1);
Dan Albert569a1302015-05-15 12:56:23 -0700251 char pts_name[PATH_MAX];
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800252 int ptm;
Dan Albert569a1302015-05-15 12:56:23 -0700253 *pid = forkpty(&ptm, pts_name, nullptr, nullptr);
254 if (*pid == -1) {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800255 printf("- fork failed: %s -\n", strerror(errno));
Spencer Low6ac5d7d2015-05-22 20:09:06 -0700256 unix_close(ptm);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800257 return -1;
258 }
259
Jeff Sharkey5d9d4342014-05-26 18:30:43 -0700260 if (*pid == 0) {
261 init_subproc_child();
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800262
Dan Albert569a1302015-05-15 12:56:23 -0700263 int pts = unix_open(pts_name, O_RDWR | O_CLOEXEC);
264 if (pts == -1) {
265 fprintf(stderr, "child failed to open pseudo-term slave %s: %s\n",
266 pts_name, strerror(errno));
Spencer Low6ac5d7d2015-05-22 20:09:06 -0700267 unix_close(ptm);
JP Abgrall408fa572011-03-16 15:57:42 -0700268 exit(-1);
269 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800270
Dan Albert569a1302015-05-15 12:56:23 -0700271 // arg0 is "-c" in batch mode and "-" in interactive mode.
272 if (strcmp(arg0, "-c") == 0) {
273 termios tattr;
274 if (tcgetattr(pts, &tattr) == -1) {
275 fprintf(stderr, "tcgetattr failed: %s\n", strerror(errno));
Spencer Low6ac5d7d2015-05-22 20:09:06 -0700276 unix_close(pts);
277 unix_close(ptm);
Dan Albert569a1302015-05-15 12:56:23 -0700278 exit(-1);
279 }
280
281 cfmakeraw(&tattr);
282 if (tcsetattr(pts, TCSADRAIN, &tattr) == -1) {
283 fprintf(stderr, "tcsetattr failed: %s\n", strerror(errno));
Spencer Low6ac5d7d2015-05-22 20:09:06 -0700284 unix_close(pts);
285 unix_close(ptm);
Dan Albert569a1302015-05-15 12:56:23 -0700286 exit(-1);
287 }
288 }
289
Jeff Sharkey5d9d4342014-05-26 18:30:43 -0700290 dup2(pts, STDIN_FILENO);
291 dup2(pts, STDOUT_FILENO);
292 dup2(pts, STDERR_FILENO);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800293
Spencer Low6ac5d7d2015-05-22 20:09:06 -0700294 unix_close(pts);
295 unix_close(ptm);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800296
Dan Albert569a1302015-05-15 12:56:23 -0700297 execl(cmd, cmd, arg0, arg1, nullptr);
JP Abgrall408fa572011-03-16 15:57:42 -0700298 fprintf(stderr, "- exec '%s' failed: %s (%d) -\n",
299 cmd, strerror(errno), errno);
300 exit(-1);
301 } else {
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800302 return ptm;
303 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800304}
Dan Albert569a1302015-05-15 12:56:23 -0700305#endif // !ADB_HOST
Jeff Sharkey5d9d4342014-05-26 18:30:43 -0700306
307static int create_subproc_raw(const char *cmd, const char *arg0, const char *arg1, pid_t *pid)
308{
309 D("create_subproc_raw(cmd=%s, arg0=%s, arg1=%s)\n", cmd, arg0, arg1);
Yabin Cuie77b6a02014-11-11 09:24:11 -0800310#if defined(_WIN32)
Jeff Sharkey5d9d4342014-05-26 18:30:43 -0700311 fprintf(stderr, "error: create_subproc_raw not implemented on Win32 (%s %s %s)\n", cmd, arg0, arg1);
312 return -1;
Yabin Cuie77b6a02014-11-11 09:24:11 -0800313#else
Jeff Sharkey5d9d4342014-05-26 18:30:43 -0700314
315 // 0 is parent socket, 1 is child socket
316 int sv[2];
leozwangcbf02672014-08-15 09:51:27 -0700317 if (adb_socketpair(sv) < 0) {
Jeff Sharkey5d9d4342014-05-26 18:30:43 -0700318 printf("[ cannot create socket pair - %s ]\n", strerror(errno));
319 return -1;
320 }
Spencer Low8d8126a2015-07-21 02:06:26 -0700321 D("socketpair: (%d,%d)\n", sv[0], sv[1]);
Jeff Sharkey5d9d4342014-05-26 18:30:43 -0700322
323 *pid = fork();
324 if (*pid < 0) {
325 printf("- fork failed: %s -\n", strerror(errno));
326 adb_close(sv[0]);
327 adb_close(sv[1]);
328 return -1;
329 }
330
331 if (*pid == 0) {
332 adb_close(sv[0]);
333 init_subproc_child();
334
Jeff Sharkey5d9d4342014-05-26 18:30:43 -0700335 dup2(sv[1], STDIN_FILENO);
336 dup2(sv[1], STDOUT_FILENO);
Jeff Sharkey960df972014-06-09 17:30:57 -0700337 dup2(sv[1], STDERR_FILENO);
338
Jeff Sharkey5d9d4342014-05-26 18:30:43 -0700339 adb_close(sv[1]);
340
341 execl(cmd, cmd, arg0, arg1, NULL);
342 fprintf(stderr, "- exec '%s' failed: %s (%d) -\n",
343 cmd, strerror(errno), errno);
344 exit(-1);
345 } else {
346 adb_close(sv[1]);
347 return sv[0];
348 }
Yabin Cuie77b6a02014-11-11 09:24:11 -0800349#endif /* !defined(_WIN32) */
Jeff Sharkey5d9d4342014-05-26 18:30:43 -0700350}
JP Abgrall408fa572011-03-16 15:57:42 -0700351#endif /* !ABD_HOST */
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800352
353#if ADB_HOST
354#define SHELL_COMMAND "/bin/sh"
355#else
356#define SHELL_COMMAND "/system/bin/sh"
357#endif
358
JP Abgrall408fa572011-03-16 15:57:42 -0700359#if !ADB_HOST
360static void subproc_waiter_service(int fd, void *cookie)
361{
Elliott Hughesccecf142014-01-16 10:53:11 -0800362 pid_t pid = (pid_t) (uintptr_t) cookie;
JP Abgrall408fa572011-03-16 15:57:42 -0700363
364 D("entered. fd=%d of pid=%d\n", fd, pid);
Elliott Hughesa7090b92015-04-17 17:03:59 -0700365 while (true) {
JP Abgrall408fa572011-03-16 15:57:42 -0700366 int status;
367 pid_t p = waitpid(pid, &status, 0);
368 if (p == pid) {
369 D("fd=%d, post waitpid(pid=%d) status=%04x\n", fd, p, status);
370 if (WIFSIGNALED(status)) {
371 D("*** Killed by signal %d\n", WTERMSIG(status));
372 break;
373 } else if (!WIFEXITED(status)) {
374 D("*** Didn't exit!!. status %d\n", status);
375 break;
376 } else if (WEXITSTATUS(status) >= 0) {
377 D("*** Exit code %d\n", WEXITSTATUS(status));
378 break;
379 }
380 }
JP Abgrall408fa572011-03-16 15:57:42 -0700381 }
382 D("shell exited fd=%d of pid=%d err=%d\n", fd, pid, errno);
383 if (SHELL_EXIT_NOTIFY_FD >=0) {
384 int res;
Dan Albertcc731cc2015-02-24 21:26:58 -0800385 res = WriteFdExactly(SHELL_EXIT_NOTIFY_FD, &fd, sizeof(fd)) ? 0 : -1;
JP Abgrall408fa572011-03-16 15:57:42 -0700386 D("notified shell exit via fd=%d for pid=%d res=%d errno=%d\n",
387 SHELL_EXIT_NOTIFY_FD, pid, res, errno);
388 }
389}
390
Elliott Hughes3bd73c12015-05-05 13:10:43 -0700391static int create_subproc_thread(const char *name, bool pty = false) {
Jeff Sharkey5d9d4342014-05-26 18:30:43 -0700392 const char *arg0, *arg1;
393 if (name == 0 || *name == 0) {
394 arg0 = "-"; arg1 = 0;
JP Abgrall408fa572011-03-16 15:57:42 -0700395 } else {
Jeff Sharkey5d9d4342014-05-26 18:30:43 -0700396 arg0 = "-c"; arg1 = name;
JP Abgrall408fa572011-03-16 15:57:42 -0700397 }
Jeff Sharkey5d9d4342014-05-26 18:30:43 -0700398
Elliott Hughes3bd73c12015-05-05 13:10:43 -0700399 pid_t pid = -1;
400 int ret_fd;
401 if (pty) {
Jeff Sharkey5d9d4342014-05-26 18:30:43 -0700402 ret_fd = create_subproc_pty(SHELL_COMMAND, arg0, arg1, &pid);
Elliott Hughes3bd73c12015-05-05 13:10:43 -0700403 } else {
Jeff Sharkey5d9d4342014-05-26 18:30:43 -0700404 ret_fd = create_subproc_raw(SHELL_COMMAND, arg0, arg1, &pid);
Jeff Sharkey5d9d4342014-05-26 18:30:43 -0700405 }
406 D("create_subproc ret_fd=%d pid=%d\n", ret_fd, pid);
JP Abgrall408fa572011-03-16 15:57:42 -0700407
Dan Albertbac34742015-02-25 17:51:28 -0800408 stinfo* sti = reinterpret_cast<stinfo*>(malloc(sizeof(stinfo)));
JP Abgrall408fa572011-03-16 15:57:42 -0700409 if(sti == 0) fatal("cannot allocate stinfo");
410 sti->func = subproc_waiter_service;
Elliott Hughesccecf142014-01-16 10:53:11 -0800411 sti->cookie = (void*) (uintptr_t) pid;
JP Abgrall408fa572011-03-16 15:57:42 -0700412 sti->fd = ret_fd;
413
Elliott Hughes9b0f3542015-05-05 13:41:21 -0700414 if (!adb_thread_create(service_bootstrap_func, sti)) {
JP Abgrall408fa572011-03-16 15:57:42 -0700415 free(sti);
416 adb_close(ret_fd);
Jeff Sharkey5d9d4342014-05-26 18:30:43 -0700417 fprintf(stderr, "cannot create service thread\n");
JP Abgrall408fa572011-03-16 15:57:42 -0700418 return -1;
419 }
420
Jeff Sharkey5d9d4342014-05-26 18:30:43 -0700421 D("service thread started, fd=%d pid=%d\n", ret_fd, pid);
JP Abgrall408fa572011-03-16 15:57:42 -0700422 return ret_fd;
423}
424#endif
425
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800426int service_to_fd(const char *name)
427{
428 int ret = -1;
429
430 if(!strncmp(name, "tcp:", 4)) {
431 int port = atoi(name + 4);
432 name = strchr(name + 4, ':');
433 if(name == 0) {
434 ret = socket_loopback_client(port, SOCK_STREAM);
435 if (ret >= 0)
436 disable_tcp_nagle(ret);
437 } else {
438#if ADB_HOST
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800439 ret = socket_network_client(name + 1, port, SOCK_STREAM);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800440#else
441 return -1;
442#endif
443 }
444#ifndef HAVE_WINSOCK /* winsock doesn't implement unix domain sockets */
445 } else if(!strncmp(name, "local:", 6)) {
446 ret = socket_local_client(name + 6,
447 ANDROID_SOCKET_NAMESPACE_RESERVED, SOCK_STREAM);
448 } else if(!strncmp(name, "localreserved:", 14)) {
449 ret = socket_local_client(name + 14,
450 ANDROID_SOCKET_NAMESPACE_RESERVED, SOCK_STREAM);
451 } else if(!strncmp(name, "localabstract:", 14)) {
452 ret = socket_local_client(name + 14,
453 ANDROID_SOCKET_NAMESPACE_ABSTRACT, SOCK_STREAM);
454 } else if(!strncmp(name, "localfilesystem:", 16)) {
455 ret = socket_local_client(name + 16,
456 ANDROID_SOCKET_NAMESPACE_FILESYSTEM, SOCK_STREAM);
457#endif
Benoit Goby9470c2f2013-02-20 15:04:53 -0800458#if !ADB_HOST
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800459 } else if(!strncmp("dev:", name, 4)) {
Nick Kralevichfe8d7f42014-07-18 20:57:35 -0700460 ret = unix_open(name + 4, O_RDWR | O_CLOEXEC);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800461 } else if(!strncmp(name, "framebuffer:", 12)) {
462 ret = create_service_thread(framebuffer_service, 0);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800463 } else if (!strncmp(name, "jdwp:", 5)) {
464 ret = create_jdwp_connection_fd(atoi(name+5));
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800465 } else if(!HOST && !strncmp(name, "shell:", 6)) {
Elliott Hughes3bd73c12015-05-05 13:10:43 -0700466 ret = create_subproc_thread(name + 6, true);
Jeff Sharkey5d9d4342014-05-26 18:30:43 -0700467 } else if(!HOST && !strncmp(name, "exec:", 5)) {
Elliott Hughes3bd73c12015-05-05 13:10:43 -0700468 ret = create_subproc_thread(name + 5);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800469 } else if(!strncmp(name, "sync:", 5)) {
470 ret = create_service_thread(file_sync_service, NULL);
471 } else if(!strncmp(name, "remount:", 8)) {
472 ret = create_service_thread(remount_service, NULL);
Mike Lockwoodee156622009-08-04 20:37:51 -0400473 } else if(!strncmp(name, "reboot:", 7)) {
Mike Lockwoodb6b40072009-09-19 16:52:58 -0400474 void* arg = strdup(name + 7);
Jeff Sharkey5d9d4342014-05-26 18:30:43 -0700475 if (arg == NULL) return -1;
Mike Lockwoodb6b40072009-09-19 16:52:58 -0400476 ret = create_service_thread(reboot_service, arg);
The Android Open Source Projecte037fd72009-03-13 13:04:37 -0700477 } else if(!strncmp(name, "root:", 5)) {
478 ret = create_service_thread(restart_root_service, NULL);
Dan Pasanen98858812014-10-06 12:57:20 -0500479 } else if(!strncmp(name, "unroot:", 7)) {
480 ret = create_service_thread(restart_unroot_service, NULL);
Christopher Tated2f54152011-04-21 12:53:28 -0700481 } else if(!strncmp(name, "backup:", 7)) {
Elliott Hughes6c34bba2015-04-17 20:11:08 -0700482 ret = create_subproc_thread(android::base::StringPrintf("/system/bin/bu backup %s",
Elliott Hughes3bd73c12015-05-05 13:10:43 -0700483 (name + 7)).c_str());
Christopher Tate702967a2011-05-17 15:52:54 -0700484 } else if(!strncmp(name, "restore:", 8)) {
Elliott Hughes3bd73c12015-05-05 13:10:43 -0700485 ret = create_subproc_thread("/system/bin/bu restore");
Mike Lockwoodff196702009-08-24 15:58:40 -0700486 } else if(!strncmp(name, "tcpip:", 6)) {
487 int port;
Spencer Low943ef232015-01-25 17:38:36 -0800488 if (sscanf(name + 6, "%d", &port) != 1) {
Elliott Hughes19d80b82015-07-21 16:13:40 -0700489 return -1;
Mike Lockwoodff196702009-08-24 15:58:40 -0700490 }
Elliott Hughesccecf142014-01-16 10:53:11 -0800491 ret = create_service_thread(restart_tcp_service, (void *) (uintptr_t) port);
Mike Lockwoodff196702009-08-24 15:58:40 -0700492 } else if(!strncmp(name, "usb:", 4)) {
493 ret = create_service_thread(restart_usb_service, NULL);
David 'Digit' Turner25258692013-03-21 21:07:42 +0100494 } else if (!strncmp(name, "reverse:", 8)) {
495 char* cookie = strdup(name + 8);
496 if (cookie == NULL) {
497 ret = -1;
498 } else {
499 ret = create_service_thread(reverse_service, cookie);
500 if (ret < 0) {
501 free(cookie);
502 }
503 }
Paul Lawrenceec900bb2014-10-09 14:22:49 +0000504 } else if(!strncmp(name, "disable-verity:", 15)) {
Paul Lawrence982089d2014-12-03 15:31:57 -0800505 ret = create_service_thread(set_verity_enabled_state_service, (void*)0);
506 } else if(!strncmp(name, "enable-verity:", 15)) {
507 ret = create_service_thread(set_verity_enabled_state_service, (void*)1);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800508#endif
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800509 }
510 if (ret >= 0) {
511 close_on_exec(ret);
512 }
513 return ret;
514}
515
516#if ADB_HOST
517struct state_info {
Elliott Hughes3bd73c12015-05-05 13:10:43 -0700518 TransportType transport_type;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800519 char* serial;
Dan Albertdcd78a12015-05-18 16:43:57 -0700520 ConnectionState state;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800521};
522
523static void wait_for_state(int fd, void* cookie)
524{
Dan Albertbac34742015-02-25 17:51:28 -0800525 state_info* sinfo = reinterpret_cast<state_info*>(cookie);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800526
527 D("wait_for_state %d\n", sinfo->state);
528
Elliott Hughes7be29c82015-04-16 22:54:44 -0700529 std::string error_msg = "unknown error";
Elliott Hughes3bd73c12015-05-05 13:10:43 -0700530 atransport* t = acquire_one_transport(sinfo->state, sinfo->transport_type, sinfo->serial,
531 &error_msg);
Elliott Hughese2d36772015-06-23 13:00:32 -0700532 if (t != nullptr) {
Elliott Hughese67f1f82015-04-30 17:32:03 -0700533 SendOkay(fd);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800534 } else {
Elliott Hughese67f1f82015-04-30 17:32:03 -0700535 SendFail(fd, error_msg);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800536 }
537
538 if (sinfo->serial)
539 free(sinfo->serial);
540 free(sinfo);
541 adb_close(fd);
542 D("wait_for_state is done\n");
543}
Benoit Goby1c45ee92013-03-29 18:22:36 -0700544
Elliott Hughes3d5f60d2015-07-18 12:21:30 -0700545static void connect_device(const std::string& address, std::string* response) {
546 if (address.empty()) {
547 *response = "empty address";
Elliott Hughese67f1f82015-04-30 17:32:03 -0700548 return;
Benoit Goby1c45ee92013-03-29 18:22:36 -0700549 }
550
Elliott Hughes3d5f60d2015-07-18 12:21:30 -0700551 std::string serial;
552 std::string host;
Elliott Hughese67f1f82015-04-30 17:32:03 -0700553 int port = DEFAULT_ADB_LOCAL_TRANSPORT_PORT;
Elliott Hughes3d5f60d2015-07-18 12:21:30 -0700554 if (!parse_host_and_port(address, &serial, &host, &port, response)) {
Benoit Goby1c45ee92013-03-29 18:22:36 -0700555 return;
556 }
557
Elliott Hughes3d5f60d2015-07-18 12:21:30 -0700558 int fd = socket_network_client_timeout(host.c_str(), port, SOCK_STREAM, 10);
559 if (fd == -1) {
560 *response = android::base::StringPrintf("unable to connect to %s: %s",
561 serial.c_str(), strerror(errno));
562 return;
563 }
564
565 D("client: connected %s remote on fd %d\n", serial.c_str(), fd);
Benoit Goby1c45ee92013-03-29 18:22:36 -0700566 close_on_exec(fd);
567 disable_tcp_nagle(fd);
568
Elliott Hughese67f1f82015-04-30 17:32:03 -0700569 int ret = register_socket_transport(fd, serial.c_str(), port, 0);
Benoit Goby1c45ee92013-03-29 18:22:36 -0700570 if (ret < 0) {
571 adb_close(fd);
Elliott Hughese67f1f82015-04-30 17:32:03 -0700572 *response = android::base::StringPrintf("already connected to %s", serial.c_str());
Benoit Goby1c45ee92013-03-29 18:22:36 -0700573 } else {
Elliott Hughese67f1f82015-04-30 17:32:03 -0700574 *response = android::base::StringPrintf("connected to %s", serial.c_str());
Benoit Goby1c45ee92013-03-29 18:22:36 -0700575 }
576}
577
Elliott Hughese67f1f82015-04-30 17:32:03 -0700578void connect_emulator(const std::string& port_spec, std::string* response) {
579 std::vector<std::string> pieces = android::base::Split(port_spec, ",");
580 if (pieces.size() != 2) {
581 *response = android::base::StringPrintf("unable to parse '%s' as <console port>,<adb port>",
582 port_spec.c_str());
Benoit Goby1c45ee92013-03-29 18:22:36 -0700583 return;
584 }
585
Elliott Hughese67f1f82015-04-30 17:32:03 -0700586 int console_port = strtol(pieces[0].c_str(), NULL, 0);
587 int adb_port = strtol(pieces[1].c_str(), NULL, 0);
588 if (console_port <= 0 || adb_port <= 0) {
589 *response = android::base::StringPrintf("Invalid port numbers: %s", port_spec.c_str());
Benoit Goby1c45ee92013-03-29 18:22:36 -0700590 return;
591 }
592
Elliott Hughese67f1f82015-04-30 17:32:03 -0700593 // Check if the emulator is already known.
594 // Note: There's a small but harmless race condition here: An emulator not
595 // present just yet could be registered by another invocation right
596 // after doing this check here. However, local_connect protects
597 // against double-registration too. From here, a better error message
598 // can be produced. In the case of the race condition, the very specific
599 // error message won't be shown, but the data doesn't get corrupted.
Benoit Goby1c45ee92013-03-29 18:22:36 -0700600 atransport* known_emulator = find_emulator_transport_by_adb_port(adb_port);
Elliott Hughese67f1f82015-04-30 17:32:03 -0700601 if (known_emulator != nullptr) {
602 *response = android::base::StringPrintf("Emulator already registered on port %d", adb_port);
Benoit Goby1c45ee92013-03-29 18:22:36 -0700603 return;
604 }
605
Elliott Hughese67f1f82015-04-30 17:32:03 -0700606 // Check if more emulators can be registered. Similar unproblematic
607 // race condition as above.
Benoit Goby1c45ee92013-03-29 18:22:36 -0700608 int candidate_slot = get_available_local_transport_index();
609 if (candidate_slot < 0) {
Elliott Hughese67f1f82015-04-30 17:32:03 -0700610 *response = "Cannot accept more emulators";
Benoit Goby1c45ee92013-03-29 18:22:36 -0700611 return;
612 }
613
Elliott Hughese67f1f82015-04-30 17:32:03 -0700614 // Preconditions met, try to connect to the emulator.
Benoit Goby1c45ee92013-03-29 18:22:36 -0700615 if (!local_connect_arbitrary_ports(console_port, adb_port)) {
Elliott Hughese67f1f82015-04-30 17:32:03 -0700616 *response = android::base::StringPrintf("Connected to emulator on ports %d,%d",
617 console_port, adb_port);
Benoit Goby1c45ee92013-03-29 18:22:36 -0700618 } else {
Elliott Hughese67f1f82015-04-30 17:32:03 -0700619 *response = android::base::StringPrintf("Could not connect to emulator on ports %d,%d",
620 console_port, adb_port);
Benoit Goby1c45ee92013-03-29 18:22:36 -0700621 }
622}
623
Alan Jeon4af3c402014-10-16 17:05:25 +0900624static void connect_service(int fd, void* data) {
625 char* host = reinterpret_cast<char*>(data);
Elliott Hughese67f1f82015-04-30 17:32:03 -0700626 std::string response;
Benoit Goby1c45ee92013-03-29 18:22:36 -0700627 if (!strncmp(host, "emu:", 4)) {
Elliott Hughese67f1f82015-04-30 17:32:03 -0700628 connect_emulator(host + 4, &response);
Benoit Goby1c45ee92013-03-29 18:22:36 -0700629 } else {
Elliott Hughese67f1f82015-04-30 17:32:03 -0700630 connect_device(host, &response);
Benoit Goby1c45ee92013-03-29 18:22:36 -0700631 }
Alan Jeon4af3c402014-10-16 17:05:25 +0900632 free(host);
Benoit Goby1c45ee92013-03-29 18:22:36 -0700633
634 // Send response for emulator and device
Elliott Hughese67f1f82015-04-30 17:32:03 -0700635 SendProtocolString(fd, response);
Benoit Goby1c45ee92013-03-29 18:22:36 -0700636 adb_close(fd);
637}
The Android Open Source Projectdd7bc332009-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 Albertbac34742015-02-25 17:51:28 -0800646 auto sinfo = reinterpret_cast<state_info*>(malloc(sizeof(state_info)));
Elliott Hughesdc3b4592015-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 Projectdd7bc332009-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 Hughes3bd73c12015-05-05 13:10:43 -0700660 sinfo->transport_type = kTransportLocal;
Dan Albertdcd78a12015-05-18 16:43:57 -0700661 sinfo->state = kCsDevice;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800662 } else if (!strncmp(name, "usb", strlen("usb"))) {
Elliott Hughes3bd73c12015-05-05 13:10:43 -0700663 sinfo->transport_type = kTransportUsb;
Dan Albertdcd78a12015-05-18 16:43:57 -0700664 sinfo->state = kCsDevice;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800665 } else if (!strncmp(name, "any", strlen("any"))) {
Elliott Hughes3bd73c12015-05-05 13:10:43 -0700666 sinfo->transport_type = kTransportAny;
Dan Albertdcd78a12015-05-18 16:43:57 -0700667 sinfo->state = kCsDevice;
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800668 } else {
Alan Jeon4af3c402014-10-16 17:05:25 +0900669 if (sinfo->serial) {
670 free(sinfo->serial);
671 }
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800672 free(sinfo);
673 return NULL;
674 }
675
676 int fd = create_service_thread(wait_for_state, sinfo);
677 return create_local_socket(fd);
Benoit Goby1c45ee92013-03-29 18:22:36 -0700678 } else if (!strncmp(name, "connect:", 8)) {
Alan Jeon4af3c402014-10-16 17:05:25 +0900679 char* host = strdup(name + 8);
680 int fd = create_service_thread(connect_service, host);
Benoit Goby1c45ee92013-03-29 18:22:36 -0700681 return create_local_socket(fd);
The Android Open Source Projectdd7bc332009-03-03 19:32:55 -0800682 }
683 return NULL;
684}
685#endif /* ADB_HOST */