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