The Android Open Source Project | 9ca14dc | 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 | 19bec5b | 2015-09-22 15:52:57 -0700 | [diff] [blame] | 17 | #define TRACE_TAG SERVICES |
Dan Albert | db6fe64 | 2015-03-19 15:21:08 -0700 | [diff] [blame] | 18 | |
| 19 | #include "sysdeps.h" |
| 20 | |
The Android Open Source Project | 9ca14dc | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 21 | #include <errno.h> |
Dan Albert | b302d12 | 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 | |
Josh Gao | 0f3312a | 2017-04-12 17:00:49 -0700 | [diff] [blame] | 34 | #include <thread> |
| 35 | |
Elliott Hughes | f55ead9 | 2015-12-04 22:00:26 -0800 | [diff] [blame] | 36 | #include <android-base/file.h> |
David Pursell | a17d272 | 2016-01-21 08:40:59 -0800 | [diff] [blame] | 37 | #include <android-base/parsenetaddress.h> |
Elliott Hughes | f55ead9 | 2015-12-04 22:00:26 -0800 | [diff] [blame] | 38 | #include <android-base/stringprintf.h> |
| 39 | #include <android-base/strings.h> |
Elliott Hughes | 43df109 | 2015-07-23 17:12:58 -0700 | [diff] [blame] | 40 | #include <cutils/sockets.h> |
Elliott Hughes | e4b6479 | 2015-04-17 20:11:08 -0700 | [diff] [blame] | 41 | |
Dan Albert | b302d12 | 2015-02-24 15:51:19 -0800 | [diff] [blame] | 42 | #if !ADB_HOST |
Elliott Hughes | 8b249d2 | 2016-09-23 15:40:03 -0700 | [diff] [blame] | 43 | #include <android-base/properties.h> |
Tao Bao | a8c21dc | 2017-01-05 18:01:01 -0800 | [diff] [blame] | 44 | #include <bootloader_message/bootloader_message.h> |
Mark Salyzyn | c75f65f | 2016-03-28 15:52:13 -0700 | [diff] [blame] | 45 | #include <cutils/android_reboot.h> |
Steven Moreland | b087d30 | 2017-04-13 23:48:57 -0700 | [diff] [blame] | 46 | #include <log/log_properties.h> |
Dan Albert | b302d12 | 2015-02-24 15:51:19 -0800 | [diff] [blame] | 47 | #endif |
The Android Open Source Project | 9ca14dc | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 48 | |
The Android Open Source Project | 9ca14dc | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 49 | #include "adb.h" |
Dan Albert | 66a91b0 | 2015-02-24 21:26:58 -0800 | [diff] [blame] | 50 | #include "adb_io.h" |
Elliott Hughes | 09ccf1f | 2015-07-18 12:21:30 -0700 | [diff] [blame] | 51 | #include "adb_utils.h" |
The Android Open Source Project | 9ca14dc | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 52 | #include "file_sync_service.h" |
Elliott Hughes | dedf767 | 2015-03-16 21:58:32 +0000 | [diff] [blame] | 53 | #include "remount_service.h" |
David Pursell | 22fc5e9 | 2015-09-30 13:35:42 -0700 | [diff] [blame] | 54 | #include "services.h" |
David Pursell | 4f344bb | 2015-08-28 15:08:49 -0700 | [diff] [blame] | 55 | #include "shell_service.h" |
Josh Gao | 4a5a95d | 2016-08-24 18:38:44 -0700 | [diff] [blame] | 56 | #include "socket_spec.h" |
Josh Gao | c1fab36 | 2016-02-19 10:42:40 -0800 | [diff] [blame] | 57 | #include "sysdeps.h" |
Dan Albert | b302d12 | 2015-02-24 15:51:19 -0800 | [diff] [blame] | 58 | #include "transport.h" |
The Android Open Source Project | 9ca14dc | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 59 | |
The Android Open Source Project | 9ca14dc | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 60 | struct stinfo { |
| 61 | void (*func)(int fd, void *cookie); |
| 62 | int fd; |
| 63 | void *cookie; |
| 64 | }; |
| 65 | |
Josh Gao | 7d40525 | 2016-02-12 14:31:15 -0800 | [diff] [blame] | 66 | static void service_bootstrap_func(void* x) { |
Dan Albert | f30d73c | 2015-02-25 17:51:28 -0800 | [diff] [blame] | 67 | stinfo* sti = reinterpret_cast<stinfo*>(x); |
Siva Velusamy | 2669cf9 | 2015-08-28 16:37:29 -0700 | [diff] [blame] | 68 | adb_thread_setname(android::base::StringPrintf("service %d", sti->fd)); |
The Android Open Source Project | 9ca14dc | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 69 | sti->func(sti->fd, sti->cookie); |
| 70 | free(sti); |
The Android Open Source Project | 9ca14dc | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 71 | } |
| 72 | |
Benoit Goby | 12dc369 | 2013-02-20 15:04:53 -0800 | [diff] [blame] | 73 | #if !ADB_HOST |
The Android Open Source Project | 9ca14dc | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 74 | |
Elliott Hughes | fb59684 | 2015-05-01 17:04:38 -0700 | [diff] [blame] | 75 | void restart_root_service(int fd, void *cookie) { |
The Android Open Source Project | 9c75340 | 2009-03-13 13:04:37 -0700 | [diff] [blame] | 76 | if (getuid() == 0) { |
Elliott Hughes | fb59684 | 2015-05-01 17:04:38 -0700 | [diff] [blame] | 77 | WriteFdExactly(fd, "adbd is already running as root\n"); |
The Android Open Source Project | 9c75340 | 2009-03-13 13:04:37 -0700 | [diff] [blame] | 78 | adb_close(fd); |
| 79 | } else { |
Mark Salyzyn | c75f65f | 2016-03-28 15:52:13 -0700 | [diff] [blame] | 80 | if (!__android_log_is_debuggable()) { |
Elliott Hughes | fb59684 | 2015-05-01 17:04:38 -0700 | [diff] [blame] | 81 | WriteFdExactly(fd, "adbd cannot run as root in production builds\n"); |
Mike Lockwood | 26b88e3 | 2009-08-24 15:58:40 -0700 | [diff] [blame] | 82 | adb_close(fd); |
The Android Open Source Project | 9c75340 | 2009-03-13 13:04:37 -0700 | [diff] [blame] | 83 | return; |
| 84 | } |
| 85 | |
Elliott Hughes | 8b249d2 | 2016-09-23 15:40:03 -0700 | [diff] [blame] | 86 | android::base::SetProperty("service.adb.root", "1"); |
Elliott Hughes | fb59684 | 2015-05-01 17:04:38 -0700 | [diff] [blame] | 87 | WriteFdExactly(fd, "restarting adbd as root\n"); |
The Android Open Source Project | 9c75340 | 2009-03-13 13:04:37 -0700 | [diff] [blame] | 88 | adb_close(fd); |
The Android Open Source Project | 9c75340 | 2009-03-13 13:04:37 -0700 | [diff] [blame] | 89 | } |
| 90 | } |
| 91 | |
Elliott Hughes | fb59684 | 2015-05-01 17:04:38 -0700 | [diff] [blame] | 92 | void restart_unroot_service(int fd, void *cookie) { |
Dan Pasanen | fb787d9 | 2014-10-06 12:57:20 -0500 | [diff] [blame] | 93 | if (getuid() != 0) { |
Elliott Hughes | fb59684 | 2015-05-01 17:04:38 -0700 | [diff] [blame] | 94 | WriteFdExactly(fd, "adbd not running as root\n"); |
Dan Pasanen | fb787d9 | 2014-10-06 12:57:20 -0500 | [diff] [blame] | 95 | adb_close(fd); |
| 96 | } else { |
Elliott Hughes | 8b249d2 | 2016-09-23 15:40:03 -0700 | [diff] [blame] | 97 | android::base::SetProperty("service.adb.root", "0"); |
Elliott Hughes | fb59684 | 2015-05-01 17:04:38 -0700 | [diff] [blame] | 98 | WriteFdExactly(fd, "restarting adbd as non root\n"); |
Dan Pasanen | fb787d9 | 2014-10-06 12:57:20 -0500 | [diff] [blame] | 99 | adb_close(fd); |
| 100 | } |
| 101 | } |
| 102 | |
Elliott Hughes | fb59684 | 2015-05-01 17:04:38 -0700 | [diff] [blame] | 103 | void restart_tcp_service(int fd, void *cookie) { |
Elliott Hughes | 9c0d940 | 2014-01-16 10:53:11 -0800 | [diff] [blame] | 104 | int port = (int) (uintptr_t) cookie; |
Mike Lockwood | 26b88e3 | 2009-08-24 15:58:40 -0700 | [diff] [blame] | 105 | if (port <= 0) { |
Elliott Hughes | fb59684 | 2015-05-01 17:04:38 -0700 | [diff] [blame] | 106 | WriteFdFmt(fd, "invalid port %d\n", port); |
Mike Lockwood | 26b88e3 | 2009-08-24 15:58:40 -0700 | [diff] [blame] | 107 | adb_close(fd); |
| 108 | return; |
| 109 | } |
| 110 | |
Elliott Hughes | 8b249d2 | 2016-09-23 15:40:03 -0700 | [diff] [blame] | 111 | android::base::SetProperty("service.adb.tcp.port", android::base::StringPrintf("%d", port)); |
Elliott Hughes | fb59684 | 2015-05-01 17:04:38 -0700 | [diff] [blame] | 112 | WriteFdFmt(fd, "restarting in TCP mode port: %d\n", port); |
Mike Lockwood | 26b88e3 | 2009-08-24 15:58:40 -0700 | [diff] [blame] | 113 | adb_close(fd); |
Mike Lockwood | 26b88e3 | 2009-08-24 15:58:40 -0700 | [diff] [blame] | 114 | } |
| 115 | |
Elliott Hughes | fb59684 | 2015-05-01 17:04:38 -0700 | [diff] [blame] | 116 | void restart_usb_service(int fd, void *cookie) { |
Elliott Hughes | 8b249d2 | 2016-09-23 15:40:03 -0700 | [diff] [blame] | 117 | android::base::SetProperty("service.adb.tcp.port", "0"); |
Elliott Hughes | fb59684 | 2015-05-01 17:04:38 -0700 | [diff] [blame] | 118 | WriteFdExactly(fd, "restarting in USB mode\n"); |
Mike Lockwood | 26b88e3 | 2009-08-24 15:58:40 -0700 | [diff] [blame] | 119 | adb_close(fd); |
Mike Lockwood | 26b88e3 | 2009-08-24 15:58:40 -0700 | [diff] [blame] | 120 | } |
| 121 | |
Tao Bao | 0db6764 | 2015-03-29 11:22:34 -0700 | [diff] [blame] | 122 | static bool reboot_service_impl(int fd, const char* arg) { |
| 123 | const char* reboot_arg = arg; |
| 124 | bool auto_reboot = false; |
| 125 | |
| 126 | if (strcmp(reboot_arg, "sideload-auto-reboot") == 0) { |
| 127 | auto_reboot = true; |
| 128 | reboot_arg = "sideload"; |
| 129 | } |
| 130 | |
Tao Bao | 0db6764 | 2015-03-29 11:22:34 -0700 | [diff] [blame] | 131 | // It reboots into sideload mode by setting "--sideload" or "--sideload_auto_reboot" |
| 132 | // in the command file. |
| 133 | if (strcmp(reboot_arg, "sideload") == 0) { |
| 134 | if (getuid() != 0) { |
Elliott Hughes | 88b4c85 | 2015-04-30 17:32:03 -0700 | [diff] [blame] | 135 | WriteFdExactly(fd, "'adb root' is required for 'adb reboot sideload'.\n"); |
Tao Bao | 0db6764 | 2015-03-29 11:22:34 -0700 | [diff] [blame] | 136 | return false; |
| 137 | } |
| 138 | |
Tao Bao | a8c21dc | 2017-01-05 18:01:01 -0800 | [diff] [blame] | 139 | const std::vector<std::string> options = { |
| 140 | auto_reboot ? "--sideload_auto_reboot" : "--sideload" |
| 141 | }; |
| 142 | std::string err; |
| 143 | if (!write_bootloader_message(options, &err)) { |
| 144 | D("Failed to set bootloader message: %s", err.c_str()); |
Tao Bao | 0db6764 | 2015-03-29 11:22:34 -0700 | [diff] [blame] | 145 | return false; |
| 146 | } |
| 147 | |
| 148 | reboot_arg = "recovery"; |
| 149 | } |
Mike Lockwood | 12a35ea | 2009-08-04 20:37:51 -0400 | [diff] [blame] | 150 | |
| 151 | sync(); |
Mike Lockwood | d49e9eb | 2010-02-24 16:07:23 -0500 | [diff] [blame] | 152 | |
Elliott Hughes | 8b249d2 | 2016-09-23 15:40:03 -0700 | [diff] [blame] | 153 | std::string reboot_string = android::base::StringPrintf("reboot,%s", reboot_arg); |
| 154 | if (!android::base::SetProperty(ANDROID_RB_PROPERTY, reboot_string)) { |
| 155 | WriteFdFmt(fd, "reboot (%s) failed\n", reboot_string.c_str()); |
Tao Bao | 0db6764 | 2015-03-29 11:22:34 -0700 | [diff] [blame] | 156 | return false; |
Mike Lockwood | 12a35ea | 2009-08-04 20:37:51 -0400 | [diff] [blame] | 157 | } |
Tao Bao | 0db6764 | 2015-03-29 11:22:34 -0700 | [diff] [blame] | 158 | |
| 159 | return true; |
| 160 | } |
| 161 | |
| 162 | void reboot_service(int fd, void* arg) |
| 163 | { |
| 164 | if (reboot_service_impl(fd, static_cast<const char*>(arg))) { |
| 165 | // Don't return early. Give the reboot command time to take effect |
| 166 | // to avoid messing up scripts which do "adb reboot && adb wait-for-device" |
Elliott Hughes | 7cf3575 | 2015-04-17 17:03:59 -0700 | [diff] [blame] | 167 | while (true) { |
Tao Bao | 0db6764 | 2015-03-29 11:22:34 -0700 | [diff] [blame] | 168 | pause(); |
| 169 | } |
| 170 | } |
| 171 | |
Mike Lockwood | 1a855ae | 2009-09-19 16:52:58 -0400 | [diff] [blame] | 172 | free(arg); |
Mike Lockwood | 12a35ea | 2009-08-04 20:37:51 -0400 | [diff] [blame] | 173 | adb_close(fd); |
| 174 | } |
| 175 | |
Yabin Cui | d78ed22 | 2016-04-05 13:50:44 -0700 | [diff] [blame] | 176 | static void reconnect_service(int fd, void* arg) { |
| 177 | WriteFdExactly(fd, "done"); |
| 178 | adb_close(fd); |
| 179 | atransport* t = static_cast<atransport*>(arg); |
| 180 | kick_transport(t); |
| 181 | } |
| 182 | |
Yabin Cui | df85263 | 2015-10-30 18:37:26 -0700 | [diff] [blame] | 183 | int reverse_service(const char* command) { |
| 184 | int s[2]; |
| 185 | if (adb_socketpair(s)) { |
| 186 | PLOG(ERROR) << "cannot create service socket pair."; |
| 187 | return -1; |
David 'Digit' Turner | 963a449 | 2013-03-21 21:07:42 +0100 | [diff] [blame] | 188 | } |
Yabin Cui | df85263 | 2015-10-30 18:37:26 -0700 | [diff] [blame] | 189 | VLOG(SERVICES) << "service socketpair: " << s[0] << ", " << s[1]; |
| 190 | if (handle_forward_request(command, kTransportAny, nullptr, s[1]) < 0) { |
| 191 | SendFail(s[1], "not a reverse forwarding command"); |
| 192 | } |
| 193 | adb_close(s[1]); |
| 194 | return s[0]; |
David 'Digit' Turner | 963a449 | 2013-03-21 21:07:42 +0100 | [diff] [blame] | 195 | } |
| 196 | |
David Pursell | a07dbad | 2015-09-22 10:43:08 -0700 | [diff] [blame] | 197 | // Shell service string can look like: |
David Pursell | 22fc5e9 | 2015-09-30 13:35:42 -0700 | [diff] [blame] | 198 | // shell[,arg1,arg2,...]:[command] |
David Pursell | a07dbad | 2015-09-22 10:43:08 -0700 | [diff] [blame] | 199 | static int ShellService(const std::string& args, const atransport* transport) { |
| 200 | size_t delimiter_index = args.find(':'); |
| 201 | if (delimiter_index == std::string::npos) { |
| 202 | LOG(ERROR) << "No ':' found in shell service arguments: " << args; |
| 203 | return -1; |
| 204 | } |
David Pursell | 22fc5e9 | 2015-09-30 13:35:42 -0700 | [diff] [blame] | 205 | |
David Pursell | a07dbad | 2015-09-22 10:43:08 -0700 | [diff] [blame] | 206 | const std::string service_args = args.substr(0, delimiter_index); |
| 207 | const std::string command = args.substr(delimiter_index + 1); |
| 208 | |
David Pursell | 22fc5e9 | 2015-09-30 13:35:42 -0700 | [diff] [blame] | 209 | // Defaults: |
| 210 | // PTY for interactive, raw for non-interactive. |
| 211 | // No protocol. |
Elliott Hughes | ff44456 | 2015-11-16 10:55:34 -0800 | [diff] [blame] | 212 | // $TERM set to "dumb". |
David Pursell | 22fc5e9 | 2015-09-30 13:35:42 -0700 | [diff] [blame] | 213 | SubprocessType type(command.empty() ? SubprocessType::kPty |
| 214 | : SubprocessType::kRaw); |
| 215 | SubprocessProtocol protocol = SubprocessProtocol::kNone; |
Elliott Hughes | ff44456 | 2015-11-16 10:55:34 -0800 | [diff] [blame] | 216 | std::string terminal_type = "dumb"; |
David Pursell | a07dbad | 2015-09-22 10:43:08 -0700 | [diff] [blame] | 217 | |
David Pursell | 22fc5e9 | 2015-09-30 13:35:42 -0700 | [diff] [blame] | 218 | for (const std::string& arg : android::base::Split(service_args, ",")) { |
| 219 | if (arg == kShellServiceArgRaw) { |
| 220 | type = SubprocessType::kRaw; |
| 221 | } else if (arg == kShellServiceArgPty) { |
| 222 | type = SubprocessType::kPty; |
| 223 | } else if (arg == kShellServiceArgShellProtocol) { |
| 224 | protocol = SubprocessProtocol::kShell; |
Elliott Hughes | ff44456 | 2015-11-16 10:55:34 -0800 | [diff] [blame] | 225 | } else if (android::base::StartsWith(arg, "TERM=")) { |
| 226 | terminal_type = arg.substr(5); |
| 227 | } else if (!arg.empty()) { |
| 228 | // This is not an error to allow for future expansion. |
| 229 | LOG(WARNING) << "Ignoring unknown shell service argument: " << arg; |
David Pursell | 22fc5e9 | 2015-09-30 13:35:42 -0700 | [diff] [blame] | 230 | } |
| 231 | } |
David Pursell | a07dbad | 2015-09-22 10:43:08 -0700 | [diff] [blame] | 232 | |
Elliott Hughes | ff44456 | 2015-11-16 10:55:34 -0800 | [diff] [blame] | 233 | return StartSubprocess(command.c_str(), terminal_type.c_str(), type, protocol); |
David Pursell | a07dbad | 2015-09-22 10:43:08 -0700 | [diff] [blame] | 234 | } |
| 235 | |
| 236 | #endif // !ADB_HOST |
The Android Open Source Project | 9ca14dc | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 237 | |
The Android Open Source Project | 9ca14dc | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 238 | static int create_service_thread(void (*func)(int, void *), void *cookie) |
| 239 | { |
The Android Open Source Project | 9ca14dc | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 240 | int s[2]; |
Dan Albert | f30d73c | 2015-02-25 17:51:28 -0800 | [diff] [blame] | 241 | if (adb_socketpair(s)) { |
The Android Open Source Project | 9ca14dc | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 242 | printf("cannot create service socket pair\n"); |
| 243 | return -1; |
| 244 | } |
Yabin Cui | 815ad88 | 2015-09-02 17:44:28 -0700 | [diff] [blame] | 245 | D("socketpair: (%d,%d)", s[0], s[1]); |
The Android Open Source Project | 9ca14dc | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 246 | |
Jerry Zhang | f0e239c | 2017-02-10 17:45:27 -0800 | [diff] [blame] | 247 | #if !ADB_HOST |
| 248 | if (func == &file_sync_service) { |
| 249 | // Set file sync service socket to maximum size |
| 250 | int max_buf = LINUX_MAX_SOCKET_SIZE; |
| 251 | adb_setsockopt(s[0], SOL_SOCKET, SO_SNDBUF, &max_buf, sizeof(max_buf)); |
| 252 | adb_setsockopt(s[1], SOL_SOCKET, SO_SNDBUF, &max_buf, sizeof(max_buf)); |
| 253 | } |
| 254 | #endif // !ADB_HOST |
| 255 | |
Dan Albert | f30d73c | 2015-02-25 17:51:28 -0800 | [diff] [blame] | 256 | stinfo* sti = reinterpret_cast<stinfo*>(malloc(sizeof(stinfo))); |
| 257 | if (sti == nullptr) { |
| 258 | fatal("cannot allocate stinfo"); |
| 259 | } |
The Android Open Source Project | 9ca14dc | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 260 | sti->func = func; |
| 261 | sti->cookie = cookie; |
| 262 | sti->fd = s[1]; |
| 263 | |
Josh Gao | 0f3312a | 2017-04-12 17:00:49 -0700 | [diff] [blame] | 264 | std::thread(service_bootstrap_func, sti).detach(); |
The Android Open Source Project | 9ca14dc | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 265 | |
Yabin Cui | 815ad88 | 2015-09-02 17:44:28 -0700 | [diff] [blame] | 266 | D("service thread started, %d:%d",s[0], s[1]); |
The Android Open Source Project | 9ca14dc | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 267 | return s[0]; |
| 268 | } |
| 269 | |
David Pursell | 8da19a4 | 2015-08-31 10:42:13 -0700 | [diff] [blame] | 270 | int service_to_fd(const char* name, const atransport* transport) { |
The Android Open Source Project | 9ca14dc | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 271 | int ret = -1; |
| 272 | |
Josh Gao | 4a5a95d | 2016-08-24 18:38:44 -0700 | [diff] [blame] | 273 | if (is_socket_spec(name)) { |
| 274 | std::string error; |
| 275 | ret = socket_spec_connect(name, &error); |
| 276 | if (ret < 0) { |
| 277 | LOG(ERROR) << "failed to connect to socket '" << name << "': " << error; |
The Android Open Source Project | 9ca14dc | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 278 | } |
Benoit Goby | 12dc369 | 2013-02-20 15:04:53 -0800 | [diff] [blame] | 279 | #if !ADB_HOST |
The Android Open Source Project | 9ca14dc | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 280 | } else if(!strncmp("dev:", name, 4)) { |
Nick Kralevich | 777523e | 2014-07-18 20:57:35 -0700 | [diff] [blame] | 281 | ret = unix_open(name + 4, O_RDWR | O_CLOEXEC); |
The Android Open Source Project | 9ca14dc | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 282 | } else if(!strncmp(name, "framebuffer:", 12)) { |
| 283 | ret = create_service_thread(framebuffer_service, 0); |
The Android Open Source Project | 9ca14dc | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 284 | } else if (!strncmp(name, "jdwp:", 5)) { |
| 285 | ret = create_jdwp_connection_fd(atoi(name+5)); |
David Pursell | a07dbad | 2015-09-22 10:43:08 -0700 | [diff] [blame] | 286 | } else if(!strncmp(name, "shell", 5)) { |
| 287 | ret = ShellService(name + 5, transport); |
Yabin Cui | 5fe6d0d | 2015-08-11 13:40:42 -0700 | [diff] [blame] | 288 | } else if(!strncmp(name, "exec:", 5)) { |
Elliott Hughes | ff44456 | 2015-11-16 10:55:34 -0800 | [diff] [blame] | 289 | ret = StartSubprocess(name + 5, nullptr, SubprocessType::kRaw, SubprocessProtocol::kNone); |
The Android Open Source Project | 9ca14dc | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 290 | } else if(!strncmp(name, "sync:", 5)) { |
| 291 | ret = create_service_thread(file_sync_service, NULL); |
| 292 | } else if(!strncmp(name, "remount:", 8)) { |
| 293 | ret = create_service_thread(remount_service, NULL); |
Mike Lockwood | 12a35ea | 2009-08-04 20:37:51 -0400 | [diff] [blame] | 294 | } else if(!strncmp(name, "reboot:", 7)) { |
Mike Lockwood | 1a855ae | 2009-09-19 16:52:58 -0400 | [diff] [blame] | 295 | void* arg = strdup(name + 7); |
Jeff Sharkey | c52ec1a | 2014-05-26 18:30:43 -0700 | [diff] [blame] | 296 | if (arg == NULL) return -1; |
Mike Lockwood | 1a855ae | 2009-09-19 16:52:58 -0400 | [diff] [blame] | 297 | ret = create_service_thread(reboot_service, arg); |
The Android Open Source Project | 9c75340 | 2009-03-13 13:04:37 -0700 | [diff] [blame] | 298 | } else if(!strncmp(name, "root:", 5)) { |
| 299 | ret = create_service_thread(restart_root_service, NULL); |
Dan Pasanen | fb787d9 | 2014-10-06 12:57:20 -0500 | [diff] [blame] | 300 | } else if(!strncmp(name, "unroot:", 7)) { |
| 301 | ret = create_service_thread(restart_unroot_service, NULL); |
Christopher Tate | 7377912 | 2011-04-21 12:53:28 -0700 | [diff] [blame] | 302 | } else if(!strncmp(name, "backup:", 7)) { |
David Pursell | 4f344bb | 2015-08-28 15:08:49 -0700 | [diff] [blame] | 303 | ret = StartSubprocess(android::base::StringPrintf("/system/bin/bu backup %s", |
| 304 | (name + 7)).c_str(), |
Elliott Hughes | ff44456 | 2015-11-16 10:55:34 -0800 | [diff] [blame] | 305 | nullptr, SubprocessType::kRaw, SubprocessProtocol::kNone); |
Elliott Hughes | b628cb1 | 2015-08-03 10:38:08 -0700 | [diff] [blame] | 306 | } else if(!strncmp(name, "restore:", 8)) { |
Elliott Hughes | ff44456 | 2015-11-16 10:55:34 -0800 | [diff] [blame] | 307 | ret = StartSubprocess("/system/bin/bu restore", nullptr, SubprocessType::kRaw, |
David Pursell | 8da19a4 | 2015-08-31 10:42:13 -0700 | [diff] [blame] | 308 | SubprocessProtocol::kNone); |
Mike Lockwood | 26b88e3 | 2009-08-24 15:58:40 -0700 | [diff] [blame] | 309 | } else if(!strncmp(name, "tcpip:", 6)) { |
| 310 | int port; |
Spencer Low | 29a029c | 2015-01-25 17:38:36 -0800 | [diff] [blame] | 311 | if (sscanf(name + 6, "%d", &port) != 1) { |
Elliott Hughes | d94e8ba | 2015-07-21 16:13:40 -0700 | [diff] [blame] | 312 | return -1; |
Mike Lockwood | 26b88e3 | 2009-08-24 15:58:40 -0700 | [diff] [blame] | 313 | } |
Elliott Hughes | 9c0d940 | 2014-01-16 10:53:11 -0800 | [diff] [blame] | 314 | ret = create_service_thread(restart_tcp_service, (void *) (uintptr_t) port); |
Mike Lockwood | 26b88e3 | 2009-08-24 15:58:40 -0700 | [diff] [blame] | 315 | } else if(!strncmp(name, "usb:", 4)) { |
| 316 | ret = create_service_thread(restart_usb_service, NULL); |
David 'Digit' Turner | 963a449 | 2013-03-21 21:07:42 +0100 | [diff] [blame] | 317 | } else if (!strncmp(name, "reverse:", 8)) { |
Yabin Cui | df85263 | 2015-10-30 18:37:26 -0700 | [diff] [blame] | 318 | ret = reverse_service(name + 8); |
Paul Lawrence | 5f35648 | 2014-10-09 14:22:49 +0000 | [diff] [blame] | 319 | } else if(!strncmp(name, "disable-verity:", 15)) { |
Paul Lawrence | 8ba2b02 | 2014-12-03 15:31:57 -0800 | [diff] [blame] | 320 | ret = create_service_thread(set_verity_enabled_state_service, (void*)0); |
| 321 | } else if(!strncmp(name, "enable-verity:", 15)) { |
| 322 | ret = create_service_thread(set_verity_enabled_state_service, (void*)1); |
Yabin Cui | d78ed22 | 2016-04-05 13:50:44 -0700 | [diff] [blame] | 323 | } else if (!strcmp(name, "reconnect")) { |
| 324 | ret = create_service_thread(reconnect_service, const_cast<atransport*>(transport)); |
The Android Open Source Project | 9ca14dc | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 325 | #endif |
The Android Open Source Project | 9ca14dc | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 326 | } |
| 327 | if (ret >= 0) { |
| 328 | close_on_exec(ret); |
| 329 | } |
| 330 | return ret; |
| 331 | } |
| 332 | |
| 333 | #if ADB_HOST |
| 334 | struct state_info { |
Elliott Hughes | 3aec2ba | 2015-05-05 13:10:43 -0700 | [diff] [blame] | 335 | TransportType transport_type; |
Leo Sartre | 6cd9bc3 | 2015-11-27 18:56:48 +0100 | [diff] [blame] | 336 | std::string serial; |
Dan Albert | 9a50f4c | 2015-05-18 16:43:57 -0700 | [diff] [blame] | 337 | ConnectionState state; |
The Android Open Source Project | 9ca14dc | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 338 | }; |
| 339 | |
Leo Sartre | 6cd9bc3 | 2015-11-27 18:56:48 +0100 | [diff] [blame] | 340 | static void wait_for_state(int fd, void* data) { |
| 341 | std::unique_ptr<state_info> sinfo(reinterpret_cast<state_info*>(data)); |
The Android Open Source Project | 9ca14dc | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 342 | |
Yabin Cui | 815ad88 | 2015-09-02 17:44:28 -0700 | [diff] [blame] | 343 | D("wait_for_state %d", sinfo->state); |
The Android Open Source Project | 9ca14dc | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 344 | |
Elliott Hughes | 67943d1 | 2015-10-07 14:55:10 -0700 | [diff] [blame] | 345 | while (true) { |
| 346 | bool is_ambiguous = false; |
| 347 | std::string error = "unknown error"; |
Leo Sartre | 6683132 | 2016-01-05 12:06:05 +0100 | [diff] [blame] | 348 | const char* serial = sinfo->serial.length() ? sinfo->serial.c_str() : NULL; |
| 349 | atransport* t = acquire_one_transport(sinfo->transport_type, serial, &is_ambiguous, &error); |
Yabin Cui | 3cf1b36 | 2017-03-10 16:01:01 -0800 | [diff] [blame] | 350 | if (t != nullptr && (sinfo->state == kCsAny || sinfo->state == t->GetConnectionState())) { |
Elliott Hughes | 67943d1 | 2015-10-07 14:55:10 -0700 | [diff] [blame] | 351 | SendOkay(fd); |
| 352 | break; |
| 353 | } else if (!is_ambiguous) { |
Josh Gao | c1fab36 | 2016-02-19 10:42:40 -0800 | [diff] [blame] | 354 | adb_pollfd pfd = {.fd = fd, .events = POLLIN }; |
| 355 | int rc = adb_poll(&pfd, 1, 1000); |
| 356 | if (rc < 0) { |
| 357 | SendFail(fd, error); |
| 358 | break; |
| 359 | } else if (rc > 0 && (pfd.revents & POLLHUP) != 0) { |
| 360 | // The other end of the socket is closed, probably because the other side was |
| 361 | // terminated, bail out. |
| 362 | break; |
| 363 | } |
| 364 | |
Elliott Hughes | 67943d1 | 2015-10-07 14:55:10 -0700 | [diff] [blame] | 365 | // Try again... |
| 366 | } else { |
| 367 | SendFail(fd, error); |
| 368 | break; |
| 369 | } |
The Android Open Source Project | 9ca14dc | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 370 | } |
| 371 | |
The Android Open Source Project | 9ca14dc | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 372 | adb_close(fd); |
Yabin Cui | 815ad88 | 2015-09-02 17:44:28 -0700 | [diff] [blame] | 373 | D("wait_for_state is done"); |
The Android Open Source Project | 9ca14dc | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 374 | } |
Benoit Goby | 3f9f9ce | 2013-03-29 18:22:36 -0700 | [diff] [blame] | 375 | |
Elliott Hughes | 88b4c85 | 2015-04-30 17:32:03 -0700 | [diff] [blame] | 376 | void connect_emulator(const std::string& port_spec, std::string* response) { |
| 377 | std::vector<std::string> pieces = android::base::Split(port_spec, ","); |
| 378 | if (pieces.size() != 2) { |
| 379 | *response = android::base::StringPrintf("unable to parse '%s' as <console port>,<adb port>", |
| 380 | port_spec.c_str()); |
Benoit Goby | 3f9f9ce | 2013-03-29 18:22:36 -0700 | [diff] [blame] | 381 | return; |
| 382 | } |
| 383 | |
Elliott Hughes | 88b4c85 | 2015-04-30 17:32:03 -0700 | [diff] [blame] | 384 | int console_port = strtol(pieces[0].c_str(), NULL, 0); |
| 385 | int adb_port = strtol(pieces[1].c_str(), NULL, 0); |
| 386 | if (console_port <= 0 || adb_port <= 0) { |
| 387 | *response = android::base::StringPrintf("Invalid port numbers: %s", port_spec.c_str()); |
Benoit Goby | 3f9f9ce | 2013-03-29 18:22:36 -0700 | [diff] [blame] | 388 | return; |
| 389 | } |
| 390 | |
Elliott Hughes | 88b4c85 | 2015-04-30 17:32:03 -0700 | [diff] [blame] | 391 | // Check if the emulator is already known. |
| 392 | // Note: There's a small but harmless race condition here: An emulator not |
| 393 | // present just yet could be registered by another invocation right |
| 394 | // after doing this check here. However, local_connect protects |
| 395 | // against double-registration too. From here, a better error message |
| 396 | // can be produced. In the case of the race condition, the very specific |
| 397 | // error message won't be shown, but the data doesn't get corrupted. |
Benoit Goby | 3f9f9ce | 2013-03-29 18:22:36 -0700 | [diff] [blame] | 398 | atransport* known_emulator = find_emulator_transport_by_adb_port(adb_port); |
Elliott Hughes | 88b4c85 | 2015-04-30 17:32:03 -0700 | [diff] [blame] | 399 | if (known_emulator != nullptr) { |
| 400 | *response = android::base::StringPrintf("Emulator already registered on port %d", adb_port); |
Benoit Goby | 3f9f9ce | 2013-03-29 18:22:36 -0700 | [diff] [blame] | 401 | return; |
| 402 | } |
| 403 | |
Elliott Hughes | 88b4c85 | 2015-04-30 17:32:03 -0700 | [diff] [blame] | 404 | // Check if more emulators can be registered. Similar unproblematic |
| 405 | // race condition as above. |
Benoit Goby | 3f9f9ce | 2013-03-29 18:22:36 -0700 | [diff] [blame] | 406 | int candidate_slot = get_available_local_transport_index(); |
| 407 | if (candidate_slot < 0) { |
Elliott Hughes | 88b4c85 | 2015-04-30 17:32:03 -0700 | [diff] [blame] | 408 | *response = "Cannot accept more emulators"; |
Benoit Goby | 3f9f9ce | 2013-03-29 18:22:36 -0700 | [diff] [blame] | 409 | return; |
| 410 | } |
| 411 | |
Elliott Hughes | 88b4c85 | 2015-04-30 17:32:03 -0700 | [diff] [blame] | 412 | // Preconditions met, try to connect to the emulator. |
Elliott Hughes | 43df109 | 2015-07-23 17:12:58 -0700 | [diff] [blame] | 413 | std::string error; |
| 414 | if (!local_connect_arbitrary_ports(console_port, adb_port, &error)) { |
Elliott Hughes | 88b4c85 | 2015-04-30 17:32:03 -0700 | [diff] [blame] | 415 | *response = android::base::StringPrintf("Connected to emulator on ports %d,%d", |
| 416 | console_port, adb_port); |
Benoit Goby | 3f9f9ce | 2013-03-29 18:22:36 -0700 | [diff] [blame] | 417 | } else { |
Elliott Hughes | 43df109 | 2015-07-23 17:12:58 -0700 | [diff] [blame] | 418 | *response = android::base::StringPrintf("Could not connect to emulator on ports %d,%d: %s", |
| 419 | console_port, adb_port, error.c_str()); |
Benoit Goby | 3f9f9ce | 2013-03-29 18:22:36 -0700 | [diff] [blame] | 420 | } |
| 421 | } |
| 422 | |
Alan Jeon | e6959b7 | 2014-10-16 17:05:25 +0900 | [diff] [blame] | 423 | static void connect_service(int fd, void* data) { |
| 424 | char* host = reinterpret_cast<char*>(data); |
Elliott Hughes | 88b4c85 | 2015-04-30 17:32:03 -0700 | [diff] [blame] | 425 | std::string response; |
Benoit Goby | 3f9f9ce | 2013-03-29 18:22:36 -0700 | [diff] [blame] | 426 | if (!strncmp(host, "emu:", 4)) { |
Elliott Hughes | 88b4c85 | 2015-04-30 17:32:03 -0700 | [diff] [blame] | 427 | connect_emulator(host + 4, &response); |
Benoit Goby | 3f9f9ce | 2013-03-29 18:22:36 -0700 | [diff] [blame] | 428 | } else { |
Elliott Hughes | 88b4c85 | 2015-04-30 17:32:03 -0700 | [diff] [blame] | 429 | connect_device(host, &response); |
Benoit Goby | 3f9f9ce | 2013-03-29 18:22:36 -0700 | [diff] [blame] | 430 | } |
Alan Jeon | e6959b7 | 2014-10-16 17:05:25 +0900 | [diff] [blame] | 431 | free(host); |
Benoit Goby | 3f9f9ce | 2013-03-29 18:22:36 -0700 | [diff] [blame] | 432 | |
| 433 | // Send response for emulator and device |
Elliott Hughes | 88b4c85 | 2015-04-30 17:32:03 -0700 | [diff] [blame] | 434 | SendProtocolString(fd, response); |
Benoit Goby | 3f9f9ce | 2013-03-29 18:22:36 -0700 | [diff] [blame] | 435 | adb_close(fd); |
| 436 | } |
The Android Open Source Project | 9ca14dc | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 437 | #endif |
| 438 | |
| 439 | #if ADB_HOST |
Elliott Hughes | b628cb1 | 2015-08-03 10:38:08 -0700 | [diff] [blame] | 440 | asocket* host_service_to_socket(const char* name, const char* serial) { |
The Android Open Source Project | 9ca14dc | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 441 | if (!strcmp(name,"track-devices")) { |
| 442 | return create_device_tracker(); |
Leo Sartre | 6cd9bc3 | 2015-11-27 18:56:48 +0100 | [diff] [blame] | 443 | } else if (android::base::StartsWith(name, "wait-for-")) { |
The Android Open Source Project | 9ca14dc | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 444 | name += strlen("wait-for-"); |
| 445 | |
Leo Sartre | 6cd9bc3 | 2015-11-27 18:56:48 +0100 | [diff] [blame] | 446 | std::unique_ptr<state_info> sinfo(new state_info); |
| 447 | if (sinfo == nullptr) { |
| 448 | fprintf(stderr, "couldn't allocate state_info: %s", strerror(errno)); |
| 449 | return nullptr; |
The Android Open Source Project | 9ca14dc | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 450 | } |
| 451 | |
Leo Sartre | 6cd9bc3 | 2015-11-27 18:56:48 +0100 | [diff] [blame] | 452 | if (serial) sinfo->serial = serial; |
| 453 | |
| 454 | if (android::base::StartsWith(name, "local")) { |
| 455 | name += strlen("local"); |
| 456 | sinfo->transport_type = kTransportLocal; |
| 457 | } else if (android::base::StartsWith(name, "usb")) { |
| 458 | name += strlen("usb"); |
| 459 | sinfo->transport_type = kTransportUsb; |
| 460 | } else if (android::base::StartsWith(name, "any")) { |
| 461 | name += strlen("any"); |
| 462 | sinfo->transport_type = kTransportAny; |
| 463 | } else { |
| 464 | return nullptr; |
| 465 | } |
| 466 | |
| 467 | if (!strcmp(name, "-device")) { |
| 468 | sinfo->state = kCsDevice; |
| 469 | } else if (!strcmp(name, "-recovery")) { |
| 470 | sinfo->state = kCsRecovery; |
| 471 | } else if (!strcmp(name, "-sideload")) { |
| 472 | sinfo->state = kCsSideload; |
| 473 | } else if (!strcmp(name, "-bootloader")) { |
| 474 | sinfo->state = kCsBootloader; |
Josh Gao | 071328d | 2016-04-13 12:18:58 -0700 | [diff] [blame] | 475 | } else if (!strcmp(name, "-any")) { |
| 476 | sinfo->state = kCsAny; |
Leo Sartre | 6cd9bc3 | 2015-11-27 18:56:48 +0100 | [diff] [blame] | 477 | } else { |
| 478 | return nullptr; |
| 479 | } |
| 480 | |
| 481 | int fd = create_service_thread(wait_for_state, sinfo.release()); |
The Android Open Source Project | 9ca14dc | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 482 | return create_local_socket(fd); |
Benoit Goby | 3f9f9ce | 2013-03-29 18:22:36 -0700 | [diff] [blame] | 483 | } else if (!strncmp(name, "connect:", 8)) { |
Alan Jeon | e6959b7 | 2014-10-16 17:05:25 +0900 | [diff] [blame] | 484 | char* host = strdup(name + 8); |
| 485 | int fd = create_service_thread(connect_service, host); |
Benoit Goby | 3f9f9ce | 2013-03-29 18:22:36 -0700 | [diff] [blame] | 486 | return create_local_socket(fd); |
The Android Open Source Project | 9ca14dc | 2009-03-03 19:32:55 -0800 | [diff] [blame] | 487 | } |
| 488 | return NULL; |
| 489 | } |
| 490 | #endif /* ADB_HOST */ |