The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 1 | /* |
| 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 | |
Yabin Cui | aed3c61 | 2015-09-22 15:52:57 -0700 | [diff] [blame] | 17 | #define TRACE_TAG SERVICES |
Dan Albert | 3313426 | 2015-03-19 15:21:08 -0700 | [diff] [blame] | 18 | |
| 19 | #include "sysdeps.h" |
| 20 | |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 21 | #include <errno.h> |
Dan Albert | 7664901 | 2015-02-24 15:51:19 -0800 | [diff] [blame] | 22 | #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 Hughes | e67f1f8 | 2015-04-30 17:32:03 -0700 | [diff] [blame] | 34 | #include <base/file.h> |
Elliott Hughes | 6c34bba | 2015-04-17 20:11:08 -0700 | [diff] [blame] | 35 | #include <base/stringprintf.h> |
Elliott Hughes | e67f1f8 | 2015-04-30 17:32:03 -0700 | [diff] [blame] | 36 | #include <base/strings.h> |
Elliott Hughes | 381cfa9 | 2015-07-23 17:12:58 -0700 | [diff] [blame] | 37 | #include <cutils/sockets.h> |
Elliott Hughes | 6c34bba | 2015-04-17 20:11:08 -0700 | [diff] [blame] | 38 | |
Dan Albert | 7664901 | 2015-02-24 15:51:19 -0800 | [diff] [blame] | 39 | #if !ADB_HOST |
| 40 | #include "cutils/android_reboot.h" |
| 41 | #include "cutils/properties.h" |
| 42 | #endif |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 43 | |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 44 | #include "adb.h" |
Dan Albert | cc731cc | 2015-02-24 21:26:58 -0800 | [diff] [blame] | 45 | #include "adb_io.h" |
Elliott Hughes | 3d5f60d | 2015-07-18 12:21:30 -0700 | [diff] [blame] | 46 | #include "adb_utils.h" |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 47 | #include "file_sync_service.h" |
Elliott Hughes | ec7a667 | 2015-03-16 21:58:32 +0000 | [diff] [blame] | 48 | #include "remount_service.h" |
David Pursell | 70ef7b4 | 2015-09-30 13:35:42 -0700 | [diff] [blame] | 49 | #include "services.h" |
David Pursell | 80f6702 | 2015-08-28 15:08:49 -0700 | [diff] [blame] | 50 | #include "shell_service.h" |
Dan Albert | 7664901 | 2015-02-24 15:51:19 -0800 | [diff] [blame] | 51 | #include "transport.h" |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 52 | |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 53 | struct stinfo { |
| 54 | void (*func)(int fd, void *cookie); |
| 55 | int fd; |
| 56 | void *cookie; |
| 57 | }; |
| 58 | |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 59 | void *service_bootstrap_func(void *x) |
| 60 | { |
Dan Albert | bac3474 | 2015-02-25 17:51:28 -0800 | [diff] [blame] | 61 | stinfo* sti = reinterpret_cast<stinfo*>(x); |
Siva Velusamy | 49ee7cf | 2015-08-28 16:37:29 -0700 | [diff] [blame] | 62 | adb_thread_setname(android::base::StringPrintf("service %d", sti->fd)); |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 63 | sti->func(sti->fd, sti->cookie); |
| 64 | free(sti); |
| 65 | return 0; |
| 66 | } |
| 67 | |
Benoit Goby | 9470c2f | 2013-02-20 15:04:53 -0800 | [diff] [blame] | 68 | #if !ADB_HOST |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 69 | |
Elliott Hughes | ab52c18 | 2015-05-01 17:04:38 -0700 | [diff] [blame] | 70 | void restart_root_service(int fd, void *cookie) { |
The Android Open Source Project | e037fd7 | 2009-03-13 13:04:37 -0700 | [diff] [blame] | 71 | if (getuid() == 0) { |
Elliott Hughes | ab52c18 | 2015-05-01 17:04:38 -0700 | [diff] [blame] | 72 | WriteFdExactly(fd, "adbd is already running as root\n"); |
The Android Open Source Project | e037fd7 | 2009-03-13 13:04:37 -0700 | [diff] [blame] | 73 | adb_close(fd); |
| 74 | } else { |
Elliott Hughes | ab52c18 | 2015-05-01 17:04:38 -0700 | [diff] [blame] | 75 | char value[PROPERTY_VALUE_MAX]; |
The Android Open Source Project | e037fd7 | 2009-03-13 13:04:37 -0700 | [diff] [blame] | 76 | property_get("ro.debuggable", value, ""); |
| 77 | if (strcmp(value, "1") != 0) { |
Elliott Hughes | ab52c18 | 2015-05-01 17:04:38 -0700 | [diff] [blame] | 78 | WriteFdExactly(fd, "adbd cannot run as root in production builds\n"); |
Mike Lockwood | ff19670 | 2009-08-24 15:58:40 -0700 | [diff] [blame] | 79 | adb_close(fd); |
The Android Open Source Project | e037fd7 | 2009-03-13 13:04:37 -0700 | [diff] [blame] | 80 | return; |
| 81 | } |
| 82 | |
Benoit Goby | 7941cf8 | 2012-03-16 14:44:17 -0700 | [diff] [blame] | 83 | property_set("service.adb.root", "1"); |
Elliott Hughes | ab52c18 | 2015-05-01 17:04:38 -0700 | [diff] [blame] | 84 | WriteFdExactly(fd, "restarting adbd as root\n"); |
The Android Open Source Project | e037fd7 | 2009-03-13 13:04:37 -0700 | [diff] [blame] | 85 | adb_close(fd); |
The Android Open Source Project | e037fd7 | 2009-03-13 13:04:37 -0700 | [diff] [blame] | 86 | } |
| 87 | } |
| 88 | |
Elliott Hughes | ab52c18 | 2015-05-01 17:04:38 -0700 | [diff] [blame] | 89 | void restart_unroot_service(int fd, void *cookie) { |
Dan Pasanen | 9885881 | 2014-10-06 12:57:20 -0500 | [diff] [blame] | 90 | if (getuid() != 0) { |
Elliott Hughes | ab52c18 | 2015-05-01 17:04:38 -0700 | [diff] [blame] | 91 | WriteFdExactly(fd, "adbd not running as root\n"); |
Dan Pasanen | 9885881 | 2014-10-06 12:57:20 -0500 | [diff] [blame] | 92 | adb_close(fd); |
| 93 | } else { |
| 94 | property_set("service.adb.root", "0"); |
Elliott Hughes | ab52c18 | 2015-05-01 17:04:38 -0700 | [diff] [blame] | 95 | WriteFdExactly(fd, "restarting adbd as non root\n"); |
Dan Pasanen | 9885881 | 2014-10-06 12:57:20 -0500 | [diff] [blame] | 96 | adb_close(fd); |
| 97 | } |
| 98 | } |
| 99 | |
Elliott Hughes | ab52c18 | 2015-05-01 17:04:38 -0700 | [diff] [blame] | 100 | void restart_tcp_service(int fd, void *cookie) { |
Elliott Hughes | ccecf14 | 2014-01-16 10:53:11 -0800 | [diff] [blame] | 101 | int port = (int) (uintptr_t) cookie; |
Mike Lockwood | ff19670 | 2009-08-24 15:58:40 -0700 | [diff] [blame] | 102 | if (port <= 0) { |
Elliott Hughes | ab52c18 | 2015-05-01 17:04:38 -0700 | [diff] [blame] | 103 | WriteFdFmt(fd, "invalid port %d\n", port); |
Mike Lockwood | ff19670 | 2009-08-24 15:58:40 -0700 | [diff] [blame] | 104 | adb_close(fd); |
| 105 | return; |
| 106 | } |
| 107 | |
Elliott Hughes | ab52c18 | 2015-05-01 17:04:38 -0700 | [diff] [blame] | 108 | char value[PROPERTY_VALUE_MAX]; |
Mike Lockwood | ff19670 | 2009-08-24 15:58:40 -0700 | [diff] [blame] | 109 | snprintf(value, sizeof(value), "%d", port); |
| 110 | property_set("service.adb.tcp.port", value); |
Elliott Hughes | ab52c18 | 2015-05-01 17:04:38 -0700 | [diff] [blame] | 111 | WriteFdFmt(fd, "restarting in TCP mode port: %d\n", port); |
Mike Lockwood | ff19670 | 2009-08-24 15:58:40 -0700 | [diff] [blame] | 112 | adb_close(fd); |
Mike Lockwood | ff19670 | 2009-08-24 15:58:40 -0700 | [diff] [blame] | 113 | } |
| 114 | |
Elliott Hughes | ab52c18 | 2015-05-01 17:04:38 -0700 | [diff] [blame] | 115 | void restart_usb_service(int fd, void *cookie) { |
Mike Lockwood | ff19670 | 2009-08-24 15:58:40 -0700 | [diff] [blame] | 116 | property_set("service.adb.tcp.port", "0"); |
Elliott Hughes | ab52c18 | 2015-05-01 17:04:38 -0700 | [diff] [blame] | 117 | WriteFdExactly(fd, "restarting in USB mode\n"); |
Mike Lockwood | ff19670 | 2009-08-24 15:58:40 -0700 | [diff] [blame] | 118 | adb_close(fd); |
Mike Lockwood | ff19670 | 2009-08-24 15:58:40 -0700 | [diff] [blame] | 119 | } |
| 120 | |
Tao Bao | 175b7bb | 2015-03-29 11:22:34 -0700 | [diff] [blame] | 121 | static bool reboot_service_impl(int fd, const char* arg) { |
| 122 | const char* reboot_arg = arg; |
| 123 | bool auto_reboot = false; |
| 124 | |
| 125 | if (strcmp(reboot_arg, "sideload-auto-reboot") == 0) { |
| 126 | auto_reboot = true; |
| 127 | reboot_arg = "sideload"; |
| 128 | } |
| 129 | |
Tao Bao | 175b7bb | 2015-03-29 11:22:34 -0700 | [diff] [blame] | 130 | // It reboots into sideload mode by setting "--sideload" or "--sideload_auto_reboot" |
| 131 | // in the command file. |
| 132 | if (strcmp(reboot_arg, "sideload") == 0) { |
| 133 | if (getuid() != 0) { |
Elliott Hughes | e67f1f8 | 2015-04-30 17:32:03 -0700 | [diff] [blame] | 134 | WriteFdExactly(fd, "'adb root' is required for 'adb reboot sideload'.\n"); |
Tao Bao | 175b7bb | 2015-03-29 11:22:34 -0700 | [diff] [blame] | 135 | return false; |
| 136 | } |
| 137 | |
| 138 | const char* const recovery_dir = "/cache/recovery"; |
| 139 | const char* const command_file = "/cache/recovery/command"; |
| 140 | // Ensure /cache/recovery exists. |
| 141 | if (adb_mkdir(recovery_dir, 0770) == -1 && errno != EEXIST) { |
Yabin Cui | 7a3f8d6 | 2015-09-02 17:44:28 -0700 | [diff] [blame] | 142 | D("Failed to create directory '%s': %s", recovery_dir, strerror(errno)); |
Tao Bao | 175b7bb | 2015-03-29 11:22:34 -0700 | [diff] [blame] | 143 | return false; |
| 144 | } |
| 145 | |
| 146 | bool write_status = android::base::WriteStringToFile( |
| 147 | auto_reboot ? "--sideload_auto_reboot" : "--sideload", command_file); |
| 148 | if (!write_status) { |
| 149 | return false; |
| 150 | } |
| 151 | |
| 152 | reboot_arg = "recovery"; |
| 153 | } |
Mike Lockwood | ee15662 | 2009-08-04 20:37:51 -0400 | [diff] [blame] | 154 | |
| 155 | sync(); |
Mike Lockwood | d969faa | 2010-02-24 16:07:23 -0500 | [diff] [blame] | 156 | |
Tao Bao | 175b7bb | 2015-03-29 11:22:34 -0700 | [diff] [blame] | 157 | char property_val[PROPERTY_VALUE_MAX]; |
| 158 | int ret = snprintf(property_val, sizeof(property_val), "reboot,%s", reboot_arg); |
| 159 | if (ret >= static_cast<int>(sizeof(property_val))) { |
Elliott Hughes | ab52c18 | 2015-05-01 17:04:38 -0700 | [diff] [blame] | 160 | WriteFdFmt(fd, "reboot string too long: %d\n", ret); |
Tao Bao | 175b7bb | 2015-03-29 11:22:34 -0700 | [diff] [blame] | 161 | return false; |
Nick Kralevich | ca8e66a | 2013-04-18 12:20:02 -0700 | [diff] [blame] | 162 | } |
| 163 | |
| 164 | ret = property_set(ANDROID_RB_PROPERTY, property_val); |
Mike Lockwood | ee15662 | 2009-08-04 20:37:51 -0400 | [diff] [blame] | 165 | if (ret < 0) { |
Elliott Hughes | ab52c18 | 2015-05-01 17:04:38 -0700 | [diff] [blame] | 166 | WriteFdFmt(fd, "reboot failed: %d\n", ret); |
Tao Bao | 175b7bb | 2015-03-29 11:22:34 -0700 | [diff] [blame] | 167 | return false; |
Mike Lockwood | ee15662 | 2009-08-04 20:37:51 -0400 | [diff] [blame] | 168 | } |
Tao Bao | 175b7bb | 2015-03-29 11:22:34 -0700 | [diff] [blame] | 169 | |
| 170 | return true; |
| 171 | } |
| 172 | |
| 173 | void reboot_service(int fd, void* arg) |
| 174 | { |
| 175 | if (reboot_service_impl(fd, static_cast<const char*>(arg))) { |
| 176 | // Don't return early. Give the reboot command time to take effect |
| 177 | // to avoid messing up scripts which do "adb reboot && adb wait-for-device" |
Elliott Hughes | a7090b9 | 2015-04-17 17:03:59 -0700 | [diff] [blame] | 178 | while (true) { |
Tao Bao | 175b7bb | 2015-03-29 11:22:34 -0700 | [diff] [blame] | 179 | pause(); |
| 180 | } |
| 181 | } |
| 182 | |
Mike Lockwood | b6b4007 | 2009-09-19 16:52:58 -0400 | [diff] [blame] | 183 | free(arg); |
Mike Lockwood | ee15662 | 2009-08-04 20:37:51 -0400 | [diff] [blame] | 184 | adb_close(fd); |
| 185 | } |
| 186 | |
Yabin Cui | fbfa840 | 2015-10-30 18:37:26 -0700 | [diff] [blame] | 187 | int reverse_service(const char* command) { |
| 188 | int s[2]; |
| 189 | if (adb_socketpair(s)) { |
| 190 | PLOG(ERROR) << "cannot create service socket pair."; |
| 191 | return -1; |
David 'Digit' Turner | 2525869 | 2013-03-21 21:07:42 +0100 | [diff] [blame] | 192 | } |
Yabin Cui | fbfa840 | 2015-10-30 18:37:26 -0700 | [diff] [blame] | 193 | VLOG(SERVICES) << "service socketpair: " << s[0] << ", " << s[1]; |
| 194 | if (handle_forward_request(command, kTransportAny, nullptr, s[1]) < 0) { |
| 195 | SendFail(s[1], "not a reverse forwarding command"); |
| 196 | } |
| 197 | adb_close(s[1]); |
| 198 | return s[0]; |
David 'Digit' Turner | 2525869 | 2013-03-21 21:07:42 +0100 | [diff] [blame] | 199 | } |
| 200 | |
David Pursell | 4e2fd36 | 2015-09-22 10:43:08 -0700 | [diff] [blame] | 201 | // Shell service string can look like: |
David Pursell | 70ef7b4 | 2015-09-30 13:35:42 -0700 | [diff] [blame] | 202 | // shell[,arg1,arg2,...]:[command] |
David Pursell | 4e2fd36 | 2015-09-22 10:43:08 -0700 | [diff] [blame] | 203 | static int ShellService(const std::string& args, const atransport* transport) { |
| 204 | size_t delimiter_index = args.find(':'); |
| 205 | if (delimiter_index == std::string::npos) { |
| 206 | LOG(ERROR) << "No ':' found in shell service arguments: " << args; |
| 207 | return -1; |
| 208 | } |
David Pursell | 70ef7b4 | 2015-09-30 13:35:42 -0700 | [diff] [blame] | 209 | |
David Pursell | 4e2fd36 | 2015-09-22 10:43:08 -0700 | [diff] [blame] | 210 | const std::string service_args = args.substr(0, delimiter_index); |
| 211 | const std::string command = args.substr(delimiter_index + 1); |
| 212 | |
David Pursell | 70ef7b4 | 2015-09-30 13:35:42 -0700 | [diff] [blame] | 213 | // Defaults: |
| 214 | // PTY for interactive, raw for non-interactive. |
| 215 | // No protocol. |
| 216 | SubprocessType type(command.empty() ? SubprocessType::kPty |
| 217 | : SubprocessType::kRaw); |
| 218 | SubprocessProtocol protocol = SubprocessProtocol::kNone; |
David Pursell | 4e2fd36 | 2015-09-22 10:43:08 -0700 | [diff] [blame] | 219 | |
David Pursell | 70ef7b4 | 2015-09-30 13:35:42 -0700 | [diff] [blame] | 220 | for (const std::string& arg : android::base::Split(service_args, ",")) { |
| 221 | if (arg == kShellServiceArgRaw) { |
| 222 | type = SubprocessType::kRaw; |
| 223 | } else if (arg == kShellServiceArgPty) { |
| 224 | type = SubprocessType::kPty; |
| 225 | } else if (arg == kShellServiceArgShellProtocol) { |
| 226 | protocol = SubprocessProtocol::kShell; |
| 227 | } |
| 228 | else if (!arg.empty()) { |
| 229 | LOG(ERROR) << "Unsupported shell service arguments: " << args; |
| 230 | return -1; |
| 231 | } |
| 232 | } |
David Pursell | 4e2fd36 | 2015-09-22 10:43:08 -0700 | [diff] [blame] | 233 | |
| 234 | return StartSubprocess(command.c_str(), type, protocol); |
| 235 | } |
| 236 | |
| 237 | #endif // !ADB_HOST |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 238 | |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 239 | static int create_service_thread(void (*func)(int, void *), void *cookie) |
| 240 | { |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 241 | int s[2]; |
Dan Albert | bac3474 | 2015-02-25 17:51:28 -0800 | [diff] [blame] | 242 | if (adb_socketpair(s)) { |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 243 | printf("cannot create service socket pair\n"); |
| 244 | return -1; |
| 245 | } |
Yabin Cui | 7a3f8d6 | 2015-09-02 17:44:28 -0700 | [diff] [blame] | 246 | D("socketpair: (%d,%d)", s[0], s[1]); |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 247 | |
Dan Albert | bac3474 | 2015-02-25 17:51:28 -0800 | [diff] [blame] | 248 | stinfo* sti = reinterpret_cast<stinfo*>(malloc(sizeof(stinfo))); |
| 249 | if (sti == nullptr) { |
| 250 | fatal("cannot allocate stinfo"); |
| 251 | } |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 252 | sti->func = func; |
| 253 | sti->cookie = cookie; |
| 254 | sti->fd = s[1]; |
| 255 | |
Elliott Hughes | 9b0f354 | 2015-05-05 13:41:21 -0700 | [diff] [blame] | 256 | if (!adb_thread_create(service_bootstrap_func, sti)) { |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 257 | free(sti); |
| 258 | adb_close(s[0]); |
| 259 | adb_close(s[1]); |
| 260 | printf("cannot create service thread\n"); |
| 261 | return -1; |
| 262 | } |
| 263 | |
Yabin Cui | 7a3f8d6 | 2015-09-02 17:44:28 -0700 | [diff] [blame] | 264 | D("service thread started, %d:%d",s[0], s[1]); |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 265 | return s[0]; |
| 266 | } |
| 267 | |
David Pursell | 0955c66 | 2015-08-31 10:42:13 -0700 | [diff] [blame] | 268 | int service_to_fd(const char* name, const atransport* transport) { |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 269 | int ret = -1; |
| 270 | |
| 271 | if(!strncmp(name, "tcp:", 4)) { |
| 272 | int port = atoi(name + 4); |
| 273 | name = strchr(name + 4, ':'); |
| 274 | if(name == 0) { |
Spencer Low | 5200c66 | 2015-07-30 23:07:55 -0700 | [diff] [blame] | 275 | std::string error; |
| 276 | ret = network_loopback_client(port, SOCK_STREAM, &error); |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 277 | if (ret >= 0) |
| 278 | disable_tcp_nagle(ret); |
| 279 | } else { |
| 280 | #if ADB_HOST |
Elliott Hughes | 381cfa9 | 2015-07-23 17:12:58 -0700 | [diff] [blame] | 281 | std::string error; |
| 282 | ret = network_connect(name + 1, port, SOCK_STREAM, 0, &error); |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 283 | #else |
| 284 | return -1; |
| 285 | #endif |
| 286 | } |
Elliott Hughes | adbf442 | 2015-07-29 17:45:24 -0700 | [diff] [blame] | 287 | #if !defined(_WIN32) /* winsock doesn't implement unix domain sockets */ |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 288 | } else if(!strncmp(name, "local:", 6)) { |
| 289 | ret = socket_local_client(name + 6, |
| 290 | ANDROID_SOCKET_NAMESPACE_RESERVED, SOCK_STREAM); |
| 291 | } else if(!strncmp(name, "localreserved:", 14)) { |
| 292 | ret = socket_local_client(name + 14, |
| 293 | ANDROID_SOCKET_NAMESPACE_RESERVED, SOCK_STREAM); |
| 294 | } else if(!strncmp(name, "localabstract:", 14)) { |
| 295 | ret = socket_local_client(name + 14, |
| 296 | ANDROID_SOCKET_NAMESPACE_ABSTRACT, SOCK_STREAM); |
| 297 | } else if(!strncmp(name, "localfilesystem:", 16)) { |
| 298 | ret = socket_local_client(name + 16, |
| 299 | ANDROID_SOCKET_NAMESPACE_FILESYSTEM, SOCK_STREAM); |
| 300 | #endif |
Benoit Goby | 9470c2f | 2013-02-20 15:04:53 -0800 | [diff] [blame] | 301 | #if !ADB_HOST |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 302 | } else if(!strncmp("dev:", name, 4)) { |
Nick Kralevich | fe8d7f4 | 2014-07-18 20:57:35 -0700 | [diff] [blame] | 303 | ret = unix_open(name + 4, O_RDWR | O_CLOEXEC); |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 304 | } else if(!strncmp(name, "framebuffer:", 12)) { |
| 305 | ret = create_service_thread(framebuffer_service, 0); |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 306 | } else if (!strncmp(name, "jdwp:", 5)) { |
| 307 | ret = create_jdwp_connection_fd(atoi(name+5)); |
David Pursell | 4e2fd36 | 2015-09-22 10:43:08 -0700 | [diff] [blame] | 308 | } else if(!strncmp(name, "shell", 5)) { |
| 309 | ret = ShellService(name + 5, transport); |
Yabin Cui | 661327e | 2015-08-11 13:40:42 -0700 | [diff] [blame] | 310 | } else if(!strncmp(name, "exec:", 5)) { |
David Pursell | 0955c66 | 2015-08-31 10:42:13 -0700 | [diff] [blame] | 311 | ret = StartSubprocess(name + 5, SubprocessType::kRaw, |
| 312 | SubprocessProtocol::kNone); |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 313 | } else if(!strncmp(name, "sync:", 5)) { |
| 314 | ret = create_service_thread(file_sync_service, NULL); |
| 315 | } else if(!strncmp(name, "remount:", 8)) { |
| 316 | ret = create_service_thread(remount_service, NULL); |
Mike Lockwood | ee15662 | 2009-08-04 20:37:51 -0400 | [diff] [blame] | 317 | } else if(!strncmp(name, "reboot:", 7)) { |
Mike Lockwood | b6b4007 | 2009-09-19 16:52:58 -0400 | [diff] [blame] | 318 | void* arg = strdup(name + 7); |
Jeff Sharkey | 5d9d434 | 2014-05-26 18:30:43 -0700 | [diff] [blame] | 319 | if (arg == NULL) return -1; |
Mike Lockwood | b6b4007 | 2009-09-19 16:52:58 -0400 | [diff] [blame] | 320 | ret = create_service_thread(reboot_service, arg); |
The Android Open Source Project | e037fd7 | 2009-03-13 13:04:37 -0700 | [diff] [blame] | 321 | } else if(!strncmp(name, "root:", 5)) { |
| 322 | ret = create_service_thread(restart_root_service, NULL); |
Dan Pasanen | 9885881 | 2014-10-06 12:57:20 -0500 | [diff] [blame] | 323 | } else if(!strncmp(name, "unroot:", 7)) { |
| 324 | ret = create_service_thread(restart_unroot_service, NULL); |
Christopher Tate | d2f5415 | 2011-04-21 12:53:28 -0700 | [diff] [blame] | 325 | } else if(!strncmp(name, "backup:", 7)) { |
David Pursell | 80f6702 | 2015-08-28 15:08:49 -0700 | [diff] [blame] | 326 | ret = StartSubprocess(android::base::StringPrintf("/system/bin/bu backup %s", |
| 327 | (name + 7)).c_str(), |
David Pursell | 0955c66 | 2015-08-31 10:42:13 -0700 | [diff] [blame] | 328 | SubprocessType::kRaw, SubprocessProtocol::kNone); |
Elliott Hughes | aa24549 | 2015-08-03 10:38:08 -0700 | [diff] [blame] | 329 | } else if(!strncmp(name, "restore:", 8)) { |
David Pursell | 0955c66 | 2015-08-31 10:42:13 -0700 | [diff] [blame] | 330 | ret = StartSubprocess("/system/bin/bu restore", SubprocessType::kRaw, |
| 331 | SubprocessProtocol::kNone); |
Mike Lockwood | ff19670 | 2009-08-24 15:58:40 -0700 | [diff] [blame] | 332 | } else if(!strncmp(name, "tcpip:", 6)) { |
| 333 | int port; |
Spencer Low | 943ef23 | 2015-01-25 17:38:36 -0800 | [diff] [blame] | 334 | if (sscanf(name + 6, "%d", &port) != 1) { |
Elliott Hughes | 19d80b8 | 2015-07-21 16:13:40 -0700 | [diff] [blame] | 335 | return -1; |
Mike Lockwood | ff19670 | 2009-08-24 15:58:40 -0700 | [diff] [blame] | 336 | } |
Elliott Hughes | ccecf14 | 2014-01-16 10:53:11 -0800 | [diff] [blame] | 337 | ret = create_service_thread(restart_tcp_service, (void *) (uintptr_t) port); |
Mike Lockwood | ff19670 | 2009-08-24 15:58:40 -0700 | [diff] [blame] | 338 | } else if(!strncmp(name, "usb:", 4)) { |
| 339 | ret = create_service_thread(restart_usb_service, NULL); |
David 'Digit' Turner | 2525869 | 2013-03-21 21:07:42 +0100 | [diff] [blame] | 340 | } else if (!strncmp(name, "reverse:", 8)) { |
Yabin Cui | fbfa840 | 2015-10-30 18:37:26 -0700 | [diff] [blame] | 341 | ret = reverse_service(name + 8); |
Paul Lawrence | ec900bb | 2014-10-09 14:22:49 +0000 | [diff] [blame] | 342 | } else if(!strncmp(name, "disable-verity:", 15)) { |
Paul Lawrence | 982089d | 2014-12-03 15:31:57 -0800 | [diff] [blame] | 343 | ret = create_service_thread(set_verity_enabled_state_service, (void*)0); |
| 344 | } else if(!strncmp(name, "enable-verity:", 15)) { |
| 345 | ret = create_service_thread(set_verity_enabled_state_service, (void*)1); |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 346 | #endif |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 347 | } |
| 348 | if (ret >= 0) { |
| 349 | close_on_exec(ret); |
| 350 | } |
| 351 | return ret; |
| 352 | } |
| 353 | |
| 354 | #if ADB_HOST |
| 355 | struct state_info { |
Elliott Hughes | 3bd73c1 | 2015-05-05 13:10:43 -0700 | [diff] [blame] | 356 | TransportType transport_type; |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 357 | char* serial; |
Dan Albert | dcd78a1 | 2015-05-18 16:43:57 -0700 | [diff] [blame] | 358 | ConnectionState state; |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 359 | }; |
| 360 | |
Elliott Hughes | 8d28e19 | 2015-10-07 14:55:10 -0700 | [diff] [blame] | 361 | static void wait_for_state(int fd, void* cookie) { |
Dan Albert | bac3474 | 2015-02-25 17:51:28 -0800 | [diff] [blame] | 362 | state_info* sinfo = reinterpret_cast<state_info*>(cookie); |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 363 | |
Yabin Cui | 7a3f8d6 | 2015-09-02 17:44:28 -0700 | [diff] [blame] | 364 | D("wait_for_state %d", sinfo->state); |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 365 | |
Elliott Hughes | 8d28e19 | 2015-10-07 14:55:10 -0700 | [diff] [blame] | 366 | while (true) { |
| 367 | bool is_ambiguous = false; |
| 368 | std::string error = "unknown error"; |
| 369 | atransport* t = acquire_one_transport(sinfo->transport_type, sinfo->serial, |
| 370 | &is_ambiguous, &error); |
| 371 | if (t != nullptr && t->connection_state == sinfo->state) { |
| 372 | SendOkay(fd); |
| 373 | break; |
| 374 | } else if (!is_ambiguous) { |
| 375 | adb_sleep_ms(1000); |
| 376 | // Try again... |
| 377 | } else { |
| 378 | SendFail(fd, error); |
| 379 | break; |
| 380 | } |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 381 | } |
| 382 | |
Elliott Hughes | 8d28e19 | 2015-10-07 14:55:10 -0700 | [diff] [blame] | 383 | if (sinfo->serial) { |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 384 | free(sinfo->serial); |
Elliott Hughes | 8d28e19 | 2015-10-07 14:55:10 -0700 | [diff] [blame] | 385 | } |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 386 | free(sinfo); |
| 387 | adb_close(fd); |
Yabin Cui | 7a3f8d6 | 2015-09-02 17:44:28 -0700 | [diff] [blame] | 388 | D("wait_for_state is done"); |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 389 | } |
Benoit Goby | 1c45ee9 | 2013-03-29 18:22:36 -0700 | [diff] [blame] | 390 | |
Elliott Hughes | 3d5f60d | 2015-07-18 12:21:30 -0700 | [diff] [blame] | 391 | static void connect_device(const std::string& address, std::string* response) { |
| 392 | if (address.empty()) { |
| 393 | *response = "empty address"; |
Elliott Hughes | e67f1f8 | 2015-04-30 17:32:03 -0700 | [diff] [blame] | 394 | return; |
Benoit Goby | 1c45ee9 | 2013-03-29 18:22:36 -0700 | [diff] [blame] | 395 | } |
| 396 | |
Elliott Hughes | 3d5f60d | 2015-07-18 12:21:30 -0700 | [diff] [blame] | 397 | std::string serial; |
| 398 | std::string host; |
Elliott Hughes | e67f1f8 | 2015-04-30 17:32:03 -0700 | [diff] [blame] | 399 | int port = DEFAULT_ADB_LOCAL_TRANSPORT_PORT; |
Elliott Hughes | 3d5f60d | 2015-07-18 12:21:30 -0700 | [diff] [blame] | 400 | if (!parse_host_and_port(address, &serial, &host, &port, response)) { |
Benoit Goby | 1c45ee9 | 2013-03-29 18:22:36 -0700 | [diff] [blame] | 401 | return; |
| 402 | } |
| 403 | |
Elliott Hughes | 381cfa9 | 2015-07-23 17:12:58 -0700 | [diff] [blame] | 404 | std::string error; |
| 405 | int fd = network_connect(host.c_str(), port, SOCK_STREAM, 10, &error); |
Elliott Hughes | 3d5f60d | 2015-07-18 12:21:30 -0700 | [diff] [blame] | 406 | if (fd == -1) { |
| 407 | *response = android::base::StringPrintf("unable to connect to %s: %s", |
Elliott Hughes | 381cfa9 | 2015-07-23 17:12:58 -0700 | [diff] [blame] | 408 | serial.c_str(), error.c_str()); |
Elliott Hughes | 3d5f60d | 2015-07-18 12:21:30 -0700 | [diff] [blame] | 409 | return; |
| 410 | } |
| 411 | |
Yabin Cui | 7a3f8d6 | 2015-09-02 17:44:28 -0700 | [diff] [blame] | 412 | D("client: connected %s remote on fd %d", serial.c_str(), fd); |
Benoit Goby | 1c45ee9 | 2013-03-29 18:22:36 -0700 | [diff] [blame] | 413 | close_on_exec(fd); |
| 414 | disable_tcp_nagle(fd); |
| 415 | |
Elliott Hughes | e67f1f8 | 2015-04-30 17:32:03 -0700 | [diff] [blame] | 416 | int ret = register_socket_transport(fd, serial.c_str(), port, 0); |
Benoit Goby | 1c45ee9 | 2013-03-29 18:22:36 -0700 | [diff] [blame] | 417 | if (ret < 0) { |
| 418 | adb_close(fd); |
Elliott Hughes | e67f1f8 | 2015-04-30 17:32:03 -0700 | [diff] [blame] | 419 | *response = android::base::StringPrintf("already connected to %s", serial.c_str()); |
Benoit Goby | 1c45ee9 | 2013-03-29 18:22:36 -0700 | [diff] [blame] | 420 | } else { |
Elliott Hughes | e67f1f8 | 2015-04-30 17:32:03 -0700 | [diff] [blame] | 421 | *response = android::base::StringPrintf("connected to %s", serial.c_str()); |
Benoit Goby | 1c45ee9 | 2013-03-29 18:22:36 -0700 | [diff] [blame] | 422 | } |
| 423 | } |
| 424 | |
Elliott Hughes | e67f1f8 | 2015-04-30 17:32:03 -0700 | [diff] [blame] | 425 | void connect_emulator(const std::string& port_spec, std::string* response) { |
| 426 | std::vector<std::string> pieces = android::base::Split(port_spec, ","); |
| 427 | if (pieces.size() != 2) { |
| 428 | *response = android::base::StringPrintf("unable to parse '%s' as <console port>,<adb port>", |
| 429 | port_spec.c_str()); |
Benoit Goby | 1c45ee9 | 2013-03-29 18:22:36 -0700 | [diff] [blame] | 430 | return; |
| 431 | } |
| 432 | |
Elliott Hughes | e67f1f8 | 2015-04-30 17:32:03 -0700 | [diff] [blame] | 433 | int console_port = strtol(pieces[0].c_str(), NULL, 0); |
| 434 | int adb_port = strtol(pieces[1].c_str(), NULL, 0); |
| 435 | if (console_port <= 0 || adb_port <= 0) { |
| 436 | *response = android::base::StringPrintf("Invalid port numbers: %s", port_spec.c_str()); |
Benoit Goby | 1c45ee9 | 2013-03-29 18:22:36 -0700 | [diff] [blame] | 437 | return; |
| 438 | } |
| 439 | |
Elliott Hughes | e67f1f8 | 2015-04-30 17:32:03 -0700 | [diff] [blame] | 440 | // Check if the emulator is already known. |
| 441 | // Note: There's a small but harmless race condition here: An emulator not |
| 442 | // present just yet could be registered by another invocation right |
| 443 | // after doing this check here. However, local_connect protects |
| 444 | // against double-registration too. From here, a better error message |
| 445 | // can be produced. In the case of the race condition, the very specific |
| 446 | // error message won't be shown, but the data doesn't get corrupted. |
Benoit Goby | 1c45ee9 | 2013-03-29 18:22:36 -0700 | [diff] [blame] | 447 | atransport* known_emulator = find_emulator_transport_by_adb_port(adb_port); |
Elliott Hughes | e67f1f8 | 2015-04-30 17:32:03 -0700 | [diff] [blame] | 448 | if (known_emulator != nullptr) { |
| 449 | *response = android::base::StringPrintf("Emulator already registered on port %d", adb_port); |
Benoit Goby | 1c45ee9 | 2013-03-29 18:22:36 -0700 | [diff] [blame] | 450 | return; |
| 451 | } |
| 452 | |
Elliott Hughes | e67f1f8 | 2015-04-30 17:32:03 -0700 | [diff] [blame] | 453 | // Check if more emulators can be registered. Similar unproblematic |
| 454 | // race condition as above. |
Benoit Goby | 1c45ee9 | 2013-03-29 18:22:36 -0700 | [diff] [blame] | 455 | int candidate_slot = get_available_local_transport_index(); |
| 456 | if (candidate_slot < 0) { |
Elliott Hughes | e67f1f8 | 2015-04-30 17:32:03 -0700 | [diff] [blame] | 457 | *response = "Cannot accept more emulators"; |
Benoit Goby | 1c45ee9 | 2013-03-29 18:22:36 -0700 | [diff] [blame] | 458 | return; |
| 459 | } |
| 460 | |
Elliott Hughes | e67f1f8 | 2015-04-30 17:32:03 -0700 | [diff] [blame] | 461 | // Preconditions met, try to connect to the emulator. |
Elliott Hughes | 381cfa9 | 2015-07-23 17:12:58 -0700 | [diff] [blame] | 462 | std::string error; |
| 463 | if (!local_connect_arbitrary_ports(console_port, adb_port, &error)) { |
Elliott Hughes | e67f1f8 | 2015-04-30 17:32:03 -0700 | [diff] [blame] | 464 | *response = android::base::StringPrintf("Connected to emulator on ports %d,%d", |
| 465 | console_port, adb_port); |
Benoit Goby | 1c45ee9 | 2013-03-29 18:22:36 -0700 | [diff] [blame] | 466 | } else { |
Elliott Hughes | 381cfa9 | 2015-07-23 17:12:58 -0700 | [diff] [blame] | 467 | *response = android::base::StringPrintf("Could not connect to emulator on ports %d,%d: %s", |
| 468 | console_port, adb_port, error.c_str()); |
Benoit Goby | 1c45ee9 | 2013-03-29 18:22:36 -0700 | [diff] [blame] | 469 | } |
| 470 | } |
| 471 | |
Alan Jeon | 4af3c40 | 2014-10-16 17:05:25 +0900 | [diff] [blame] | 472 | static void connect_service(int fd, void* data) { |
| 473 | char* host = reinterpret_cast<char*>(data); |
Elliott Hughes | e67f1f8 | 2015-04-30 17:32:03 -0700 | [diff] [blame] | 474 | std::string response; |
Benoit Goby | 1c45ee9 | 2013-03-29 18:22:36 -0700 | [diff] [blame] | 475 | if (!strncmp(host, "emu:", 4)) { |
Elliott Hughes | e67f1f8 | 2015-04-30 17:32:03 -0700 | [diff] [blame] | 476 | connect_emulator(host + 4, &response); |
Benoit Goby | 1c45ee9 | 2013-03-29 18:22:36 -0700 | [diff] [blame] | 477 | } else { |
Elliott Hughes | e67f1f8 | 2015-04-30 17:32:03 -0700 | [diff] [blame] | 478 | connect_device(host, &response); |
Benoit Goby | 1c45ee9 | 2013-03-29 18:22:36 -0700 | [diff] [blame] | 479 | } |
Alan Jeon | 4af3c40 | 2014-10-16 17:05:25 +0900 | [diff] [blame] | 480 | free(host); |
Benoit Goby | 1c45ee9 | 2013-03-29 18:22:36 -0700 | [diff] [blame] | 481 | |
| 482 | // Send response for emulator and device |
Elliott Hughes | e67f1f8 | 2015-04-30 17:32:03 -0700 | [diff] [blame] | 483 | SendProtocolString(fd, response); |
Benoit Goby | 1c45ee9 | 2013-03-29 18:22:36 -0700 | [diff] [blame] | 484 | adb_close(fd); |
| 485 | } |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 486 | #endif |
| 487 | |
| 488 | #if ADB_HOST |
Elliott Hughes | aa24549 | 2015-08-03 10:38:08 -0700 | [diff] [blame] | 489 | asocket* host_service_to_socket(const char* name, const char* serial) { |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 490 | if (!strcmp(name,"track-devices")) { |
| 491 | return create_device_tracker(); |
| 492 | } else if (!strncmp(name, "wait-for-", strlen("wait-for-"))) { |
Dan Albert | bac3474 | 2015-02-25 17:51:28 -0800 | [diff] [blame] | 493 | auto sinfo = reinterpret_cast<state_info*>(malloc(sizeof(state_info))); |
Elliott Hughes | dc3b459 | 2015-04-21 19:39:52 -0700 | [diff] [blame] | 494 | if (sinfo == nullptr) { |
| 495 | fprintf(stderr, "couldn't allocate state_info: %s", strerror(errno)); |
| 496 | return NULL; |
| 497 | } |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 498 | |
| 499 | if (serial) |
| 500 | sinfo->serial = strdup(serial); |
| 501 | else |
| 502 | sinfo->serial = NULL; |
| 503 | |
| 504 | name += strlen("wait-for-"); |
| 505 | |
| 506 | if (!strncmp(name, "local", strlen("local"))) { |
Elliott Hughes | 3bd73c1 | 2015-05-05 13:10:43 -0700 | [diff] [blame] | 507 | sinfo->transport_type = kTransportLocal; |
Dan Albert | dcd78a1 | 2015-05-18 16:43:57 -0700 | [diff] [blame] | 508 | sinfo->state = kCsDevice; |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 509 | } else if (!strncmp(name, "usb", strlen("usb"))) { |
Elliott Hughes | 3bd73c1 | 2015-05-05 13:10:43 -0700 | [diff] [blame] | 510 | sinfo->transport_type = kTransportUsb; |
Dan Albert | dcd78a1 | 2015-05-18 16:43:57 -0700 | [diff] [blame] | 511 | sinfo->state = kCsDevice; |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 512 | } else if (!strncmp(name, "any", strlen("any"))) { |
Elliott Hughes | 3bd73c1 | 2015-05-05 13:10:43 -0700 | [diff] [blame] | 513 | sinfo->transport_type = kTransportAny; |
Dan Albert | dcd78a1 | 2015-05-18 16:43:57 -0700 | [diff] [blame] | 514 | sinfo->state = kCsDevice; |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 515 | } else { |
Alan Jeon | 4af3c40 | 2014-10-16 17:05:25 +0900 | [diff] [blame] | 516 | if (sinfo->serial) { |
| 517 | free(sinfo->serial); |
| 518 | } |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 519 | free(sinfo); |
| 520 | return NULL; |
| 521 | } |
| 522 | |
| 523 | int fd = create_service_thread(wait_for_state, sinfo); |
| 524 | return create_local_socket(fd); |
Benoit Goby | 1c45ee9 | 2013-03-29 18:22:36 -0700 | [diff] [blame] | 525 | } else if (!strncmp(name, "connect:", 8)) { |
Alan Jeon | 4af3c40 | 2014-10-16 17:05:25 +0900 | [diff] [blame] | 526 | char* host = strdup(name + 8); |
| 527 | int fd = create_service_thread(connect_service, host); |
Benoit Goby | 1c45ee9 | 2013-03-29 18:22:36 -0700 | [diff] [blame] | 528 | return create_local_socket(fd); |
The Android Open Source Project | dd7bc33 | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 529 | } |
| 530 | return NULL; |
| 531 | } |
| 532 | #endif /* ADB_HOST */ |