Doug Zongker | 9270a20 | 2012-01-09 15:16:13 -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 | |
xunchang | 95d6732 | 2019-04-05 16:16:07 -0700 | [diff] [blame] | 17 | #include "minadbd_services.h" |
| 18 | |
Doug Zongker | 9270a20 | 2012-01-09 15:16:13 -0800 | [diff] [blame] | 19 | #include <errno.h> |
Dan Albert | 8f6eb5c | 2015-02-24 22:07:18 -0800 | [diff] [blame] | 20 | #include <inttypes.h> |
| 21 | #include <stdio.h> |
| 22 | #include <stdlib.h> |
| 23 | #include <string.h> |
| 24 | #include <unistd.h> |
Doug Zongker | 9270a20 | 2012-01-09 15:16:13 -0800 | [diff] [blame] | 25 | |
Josh Gao | 038c4a1 | 2018-07-27 11:18:30 -0700 | [diff] [blame] | 26 | #include <functional> |
xunchang | 5e6832a | 2019-03-15 16:04:32 -0700 | [diff] [blame] | 27 | #include <memory> |
Tianjie Xu | 6af51a0 | 2017-04-19 14:00:52 -0700 | [diff] [blame] | 28 | #include <string> |
Tao Bao | 5de19e2 | 2019-01-02 09:35:59 -0800 | [diff] [blame] | 29 | #include <string_view> |
Josh Gao | 2aa0d3a | 2017-04-13 12:45:55 -0700 | [diff] [blame] | 30 | #include <thread> |
Tao Bao | e5c6446 | 2019-04-04 18:37:58 -0700 | [diff] [blame] | 31 | #include <unordered_set> |
Josh Gao | 2aa0d3a | 2017-04-13 12:45:55 -0700 | [diff] [blame] | 32 | |
xunchang | 95d6732 | 2019-04-05 16:16:07 -0700 | [diff] [blame] | 33 | #include <android-base/file.h> |
| 34 | #include <android-base/logging.h> |
| 35 | #include <android-base/memory.h> |
Tao Bao | e5c6446 | 2019-04-04 18:37:58 -0700 | [diff] [blame] | 36 | #include <android-base/parseint.h> |
| 37 | #include <android-base/properties.h> |
xunchang | 95d6732 | 2019-04-05 16:16:07 -0700 | [diff] [blame] | 38 | #include <android-base/stringprintf.h> |
| 39 | #include <android-base/strings.h> |
| 40 | |
Doug Zongker | 9270a20 | 2012-01-09 15:16:13 -0800 | [diff] [blame] | 41 | #include "adb.h" |
Josh Gao | 038c4a1 | 2018-07-27 11:18:30 -0700 | [diff] [blame] | 42 | #include "adb_unique_fd.h" |
Tao Bao | e5c6446 | 2019-04-04 18:37:58 -0700 | [diff] [blame] | 43 | #include "adb_utils.h" |
Dan Albert | 8f6eb5c | 2015-02-24 22:07:18 -0800 | [diff] [blame] | 44 | #include "fdevent.h" |
| 45 | #include "fuse_adb_provider.h" |
xunchang | 5e6832a | 2019-03-15 16:04:32 -0700 | [diff] [blame] | 46 | #include "fuse_sideload.h" |
xunchang | 95d6732 | 2019-04-05 16:16:07 -0700 | [diff] [blame] | 47 | #include "minadbd_types.h" |
Josh Gao | 038c4a1 | 2018-07-27 11:18:30 -0700 | [diff] [blame] | 48 | #include "services.h" |
Elliott Hughes | 24eb8a0 | 2016-06-15 15:12:17 -0700 | [diff] [blame] | 49 | #include "sysdeps.h" |
Doug Zongker | 9270a20 | 2012-01-09 15:16:13 -0800 | [diff] [blame] | 50 | |
xunchang | 95d6732 | 2019-04-05 16:16:07 -0700 | [diff] [blame] | 51 | static int minadbd_socket = -1; |
Tao Bao | 378bfbf | 2019-04-16 14:22:25 -0700 | [diff] [blame] | 52 | static bool rescue_mode = false; |
xunchang | 23f15fc | 2019-04-17 14:43:58 -0700 | [diff] [blame] | 53 | static std::string sideload_mount_point = FUSE_SIDELOAD_HOST_MOUNTPOINT; |
Tao Bao | 378bfbf | 2019-04-16 14:22:25 -0700 | [diff] [blame] | 54 | |
xunchang | 95d6732 | 2019-04-05 16:16:07 -0700 | [diff] [blame] | 55 | void SetMinadbdSocketFd(int socket_fd) { |
| 56 | minadbd_socket = socket_fd; |
| 57 | } |
| 58 | |
Tao Bao | 378bfbf | 2019-04-16 14:22:25 -0700 | [diff] [blame] | 59 | void SetMinadbdRescueMode(bool rescue) { |
| 60 | rescue_mode = rescue; |
| 61 | } |
| 62 | |
xunchang | 23f15fc | 2019-04-17 14:43:58 -0700 | [diff] [blame] | 63 | void SetSideloadMountPoint(const std::string& path) { |
| 64 | sideload_mount_point = path; |
| 65 | } |
| 66 | |
Tao Bao | 7b9b7db | 2019-04-19 15:22:15 -0700 | [diff] [blame] | 67 | static bool WriteCommandToFd(MinadbdCommand cmd, int fd) { |
xunchang | 95d6732 | 2019-04-05 16:16:07 -0700 | [diff] [blame] | 68 | char message[kMinadbdMessageSize]; |
| 69 | memcpy(message, kMinadbdCommandPrefix, strlen(kMinadbdStatusPrefix)); |
| 70 | android::base::put_unaligned(message + strlen(kMinadbdStatusPrefix), cmd); |
| 71 | |
| 72 | if (!android::base::WriteFully(fd, message, kMinadbdMessageSize)) { |
| 73 | PLOG(ERROR) << "Failed to write message " << message; |
| 74 | return false; |
| 75 | } |
| 76 | return true; |
| 77 | } |
| 78 | |
| 79 | // Blocks and reads the command status from |fd|. Returns false if the received message has a |
| 80 | // format error. |
| 81 | static bool WaitForCommandStatus(int fd, MinadbdCommandStatus* status) { |
| 82 | char buffer[kMinadbdMessageSize]; |
| 83 | if (!android::base::ReadFully(fd, buffer, kMinadbdMessageSize)) { |
| 84 | PLOG(ERROR) << "Failed to response status from socket"; |
| 85 | exit(kMinadbdSocketIOError); |
| 86 | } |
| 87 | |
| 88 | std::string message(buffer, buffer + kMinadbdMessageSize); |
| 89 | if (!android::base::StartsWith(message, kMinadbdStatusPrefix)) { |
| 90 | LOG(ERROR) << "Failed to parse status in " << message; |
| 91 | return false; |
| 92 | } |
| 93 | |
| 94 | *status = android::base::get_unaligned<MinadbdCommandStatus>( |
| 95 | message.substr(strlen(kMinadbdStatusPrefix)).c_str()); |
| 96 | return true; |
| 97 | } |
| 98 | |
Tao Bao | e5c6446 | 2019-04-04 18:37:58 -0700 | [diff] [blame] | 99 | static MinadbdErrorCode RunAdbFuseSideload(int sfd, const std::string& args, |
| 100 | MinadbdCommandStatus* status) { |
| 101 | auto pieces = android::base::Split(args, ":"); |
katao | 77d6173 | 2018-09-20 20:34:05 +0800 | [diff] [blame] | 102 | int64_t file_size; |
| 103 | int block_size; |
Tao Bao | e5c6446 | 2019-04-04 18:37:58 -0700 | [diff] [blame] | 104 | if (pieces.size() != 2 || !android::base::ParseInt(pieces[0], &file_size) || file_size <= 0 || |
| 105 | !android::base::ParseInt(pieces[1], &block_size) || block_size <= 0) { |
xunchang | 95d6732 | 2019-04-05 16:16:07 -0700 | [diff] [blame] | 106 | LOG(ERROR) << "bad sideload-host arguments: " << args; |
xunchang | 5a1916b | 2019-04-22 12:18:14 -0700 | [diff] [blame] | 107 | return kMinadbdHostCommandArgumentError; |
katao | 77d6173 | 2018-09-20 20:34:05 +0800 | [diff] [blame] | 108 | } |
Doug Zongker | 9270a20 | 2012-01-09 15:16:13 -0800 | [diff] [blame] | 109 | |
xunchang | 95d6732 | 2019-04-05 16:16:07 -0700 | [diff] [blame] | 110 | LOG(INFO) << "sideload-host file size " << file_size << ", block size " << block_size; |
| 111 | |
Tao Bao | 7b9b7db | 2019-04-19 15:22:15 -0700 | [diff] [blame] | 112 | if (!WriteCommandToFd(MinadbdCommand::kInstall, minadbd_socket)) { |
Tao Bao | e5c6446 | 2019-04-04 18:37:58 -0700 | [diff] [blame] | 113 | return kMinadbdSocketIOError; |
xunchang | 95d6732 | 2019-04-05 16:16:07 -0700 | [diff] [blame] | 114 | } |
Doug Zongker | 9270a20 | 2012-01-09 15:16:13 -0800 | [diff] [blame] | 115 | |
Tao Bao | 178cdd4 | 2019-04-15 12:45:50 -0700 | [diff] [blame] | 116 | auto adb_data_reader = std::make_unique<FuseAdbDataProvider>(sfd, file_size, block_size); |
xunchang | 23f15fc | 2019-04-17 14:43:58 -0700 | [diff] [blame] | 117 | if (int result = run_fuse_sideload(std::move(adb_data_reader), sideload_mount_point.c_str()); |
| 118 | result != 0) { |
xunchang | 95d6732 | 2019-04-05 16:16:07 -0700 | [diff] [blame] | 119 | LOG(ERROR) << "Failed to start fuse"; |
Tao Bao | e5c6446 | 2019-04-04 18:37:58 -0700 | [diff] [blame] | 120 | return kMinadbdFuseStartError; |
xunchang | 95d6732 | 2019-04-05 16:16:07 -0700 | [diff] [blame] | 121 | } |
Doug Zongker | 9270a20 | 2012-01-09 15:16:13 -0800 | [diff] [blame] | 122 | |
Tao Bao | e5c6446 | 2019-04-04 18:37:58 -0700 | [diff] [blame] | 123 | if (!WaitForCommandStatus(minadbd_socket, status)) { |
| 124 | return kMinadbdMessageFormatError; |
| 125 | } |
| 126 | |
xunchang | 5a1916b | 2019-04-22 12:18:14 -0700 | [diff] [blame] | 127 | // Signal host-side adb to stop. For sideload mode, we always send kMinadbdServicesExitSuccess |
Tao Bao | e5c6446 | 2019-04-04 18:37:58 -0700 | [diff] [blame] | 128 | // (i.e. "DONEDONE") regardless of the install result. For rescue mode, we send failure message on |
| 129 | // install error. |
| 130 | if (!rescue_mode || *status == MinadbdCommandStatus::kSuccess) { |
xunchang | 5a1916b | 2019-04-22 12:18:14 -0700 | [diff] [blame] | 131 | if (!android::base::WriteFully(sfd, kMinadbdServicesExitSuccess, |
| 132 | strlen(kMinadbdServicesExitSuccess))) { |
Tao Bao | e5c6446 | 2019-04-04 18:37:58 -0700 | [diff] [blame] | 133 | return kMinadbdHostSocketIOError; |
| 134 | } |
| 135 | } else { |
xunchang | 5a1916b | 2019-04-22 12:18:14 -0700 | [diff] [blame] | 136 | if (!android::base::WriteFully(sfd, kMinadbdServicesExitFailure, |
| 137 | strlen(kMinadbdServicesExitFailure))) { |
Tao Bao | e5c6446 | 2019-04-04 18:37:58 -0700 | [diff] [blame] | 138 | return kMinadbdHostSocketIOError; |
| 139 | } |
| 140 | } |
| 141 | |
| 142 | return kMinadbdSuccess; |
| 143 | } |
| 144 | |
| 145 | // Sideload service always exits after serving an install command. |
| 146 | static void SideloadHostService(unique_fd sfd, const std::string& args) { |
xunchang | 95d6732 | 2019-04-05 16:16:07 -0700 | [diff] [blame] | 147 | MinadbdCommandStatus status; |
Tao Bao | e5c6446 | 2019-04-04 18:37:58 -0700 | [diff] [blame] | 148 | exit(RunAdbFuseSideload(sfd.get(), args, &status)); |
| 149 | } |
xunchang | 95d6732 | 2019-04-05 16:16:07 -0700 | [diff] [blame] | 150 | |
Tao Bao | e5c6446 | 2019-04-04 18:37:58 -0700 | [diff] [blame] | 151 | // Rescue service waits for the next command after an install command. |
| 152 | static void RescueInstallHostService(unique_fd sfd, const std::string& args) { |
| 153 | MinadbdCommandStatus status; |
| 154 | if (auto result = RunAdbFuseSideload(sfd.get(), args, &status); result != kMinadbdSuccess) { |
| 155 | exit(result); |
| 156 | } |
| 157 | } |
| 158 | |
| 159 | static void RescueGetpropHostService(unique_fd sfd, const std::string& prop) { |
| 160 | static const std::unordered_set<std::string> kGetpropAllowedProps = { |
| 161 | "ro.build.fingerprint", |
| 162 | "ro.build.date.utc", |
| 163 | }; |
| 164 | auto allowed = kGetpropAllowedProps.find(prop) != kGetpropAllowedProps.end(); |
| 165 | if (!allowed) { |
| 166 | return; |
| 167 | } |
| 168 | |
| 169 | auto result = android::base::GetProperty(prop, ""); |
| 170 | if (result.empty()) { |
| 171 | return; |
| 172 | } |
| 173 | if (!android::base::WriteFully(sfd, result.data(), result.size())) { |
| 174 | exit(kMinadbdHostSocketIOError); |
| 175 | } |
Doug Zongker | 9270a20 | 2012-01-09 15:16:13 -0800 | [diff] [blame] | 176 | } |
| 177 | |
Tao Bao | 7b9b7db | 2019-04-19 15:22:15 -0700 | [diff] [blame] | 178 | // Reboots into the given target. We don't reboot directly from minadbd, but going through recovery |
| 179 | // instead. This allows recovery to finish all the pending works (clear BCB, save logs etc) before |
| 180 | // the reboot. |
| 181 | static void RebootHostService(unique_fd /* sfd */, const std::string& target) { |
| 182 | MinadbdCommand command; |
| 183 | if (target == "bootloader") { |
| 184 | command = MinadbdCommand::kRebootBootloader; |
| 185 | } else if (target == "rescue") { |
| 186 | command = MinadbdCommand::kRebootRescue; |
| 187 | } else if (target == "recovery") { |
| 188 | command = MinadbdCommand::kRebootRecovery; |
| 189 | } else if (target == "fastboot") { |
| 190 | command = MinadbdCommand::kRebootFastboot; |
| 191 | } else { |
| 192 | command = MinadbdCommand::kRebootAndroid; |
| 193 | } |
| 194 | if (!WriteCommandToFd(command, minadbd_socket)) { |
| 195 | exit(kMinadbdSocketIOError); |
| 196 | } |
| 197 | MinadbdCommandStatus status; |
| 198 | if (!WaitForCommandStatus(minadbd_socket, &status)) { |
| 199 | exit(kMinadbdMessageFormatError); |
| 200 | } |
| 201 | } |
| 202 | |
xunchang | 5a1916b | 2019-04-22 12:18:14 -0700 | [diff] [blame] | 203 | static void WipeDeviceService(unique_fd fd, const std::string& args) { |
| 204 | auto pieces = android::base::Split(args, ":"); |
| 205 | if (pieces.size() != 2 || pieces[0] != "userdata") { |
| 206 | LOG(ERROR) << "Failed to parse wipe device command arguments " << args; |
| 207 | exit(kMinadbdHostCommandArgumentError); |
| 208 | } |
| 209 | |
| 210 | size_t message_size; |
| 211 | if (!android::base::ParseUint(pieces[1], &message_size) || |
| 212 | message_size < strlen(kMinadbdServicesExitSuccess)) { |
| 213 | LOG(ERROR) << "Failed to parse wipe device message size in " << args; |
| 214 | exit(kMinadbdHostCommandArgumentError); |
| 215 | } |
| 216 | |
| 217 | WriteCommandToFd(MinadbdCommand::kWipeData, minadbd_socket); |
| 218 | MinadbdCommandStatus status; |
| 219 | if (!WaitForCommandStatus(minadbd_socket, &status)) { |
| 220 | exit(kMinadbdMessageFormatError); |
| 221 | } |
| 222 | |
| 223 | std::string response = (status == MinadbdCommandStatus::kSuccess) ? kMinadbdServicesExitSuccess |
| 224 | : kMinadbdServicesExitFailure; |
| 225 | response += std::string(message_size - response.size(), '\0'); |
| 226 | if (!android::base::WriteFully(fd, response.c_str(), response.size())) { |
| 227 | exit(kMinadbdHostSocketIOError); |
| 228 | } |
| 229 | } |
| 230 | |
Tao Bao | 5de19e2 | 2019-01-02 09:35:59 -0800 | [diff] [blame] | 231 | unique_fd daemon_service_to_fd(std::string_view name, atransport* /* transport */) { |
Tao Bao | 7b9b7db | 2019-04-19 15:22:15 -0700 | [diff] [blame] | 232 | // Common services that are supported both in sideload and rescue modes. |
| 233 | if (ConsumePrefix(&name, "reboot:")) { |
| 234 | // "reboot:<target>", where target must be one of the following. |
| 235 | std::string args(name); |
| 236 | if (args.empty() || args == "bootloader" || args == "rescue" || args == "recovery" || |
| 237 | args == "fastboot") { |
| 238 | return create_service_thread("reboot", |
| 239 | std::bind(RebootHostService, std::placeholders::_1, args)); |
| 240 | } |
| 241 | return unique_fd{}; |
| 242 | } |
| 243 | |
| 244 | // Rescue-specific services. |
Tao Bao | e5c6446 | 2019-04-04 18:37:58 -0700 | [diff] [blame] | 245 | if (rescue_mode) { |
| 246 | if (ConsumePrefix(&name, "rescue-install:")) { |
| 247 | // rescue-install:<file-size>:<block-size> |
| 248 | std::string args(name); |
| 249 | return create_service_thread( |
| 250 | "rescue-install", std::bind(RescueInstallHostService, std::placeholders::_1, args)); |
| 251 | } else if (ConsumePrefix(&name, "rescue-getprop:")) { |
| 252 | // rescue-getprop:<prop> |
| 253 | std::string args(name); |
| 254 | return create_service_thread( |
| 255 | "rescue-getprop", std::bind(RescueGetpropHostService, std::placeholders::_1, args)); |
xunchang | 5a1916b | 2019-04-22 12:18:14 -0700 | [diff] [blame] | 256 | } else if (ConsumePrefix(&name, "rescue-wipe:")) { |
| 257 | // rescue-wipe:target:<message-size> |
| 258 | std::string args(name); |
| 259 | return create_service_thread("rescue-wipe", |
| 260 | std::bind(WipeDeviceService, std::placeholders::_1, args)); |
Tao Bao | e5c6446 | 2019-04-04 18:37:58 -0700 | [diff] [blame] | 261 | } |
xunchang | 5a1916b | 2019-04-22 12:18:14 -0700 | [diff] [blame] | 262 | |
Tao Bao | e5c6446 | 2019-04-04 18:37:58 -0700 | [diff] [blame] | 263 | return unique_fd{}; |
| 264 | } |
| 265 | |
Tao Bao | 7b9b7db | 2019-04-19 15:22:15 -0700 | [diff] [blame] | 266 | // Sideload-specific services. |
Tao Bao | 5de19e2 | 2019-01-02 09:35:59 -0800 | [diff] [blame] | 267 | if (name.starts_with("sideload:")) { |
| 268 | // This exit status causes recovery to print a special error message saying to use a newer adb |
| 269 | // (that supports sideload-host). |
xunchang | 95d6732 | 2019-04-05 16:16:07 -0700 | [diff] [blame] | 270 | exit(kMinadbdAdbVersionError); |
Tao Bao | e5c6446 | 2019-04-04 18:37:58 -0700 | [diff] [blame] | 271 | } else if (ConsumePrefix(&name, "sideload-host:")) { |
| 272 | // sideload-host:<file-size>:<block-size> |
| 273 | std::string args(name); |
Josh Gao | 038c4a1 | 2018-07-27 11:18:30 -0700 | [diff] [blame] | 274 | return create_service_thread("sideload-host", |
Tao Bao | e5c6446 | 2019-04-04 18:37:58 -0700 | [diff] [blame] | 275 | std::bind(SideloadHostService, std::placeholders::_1, args)); |
Tao Bao | 99f0d9e | 2016-10-13 12:46:38 -0700 | [diff] [blame] | 276 | } |
Josh Gao | 038c4a1 | 2018-07-27 11:18:30 -0700 | [diff] [blame] | 277 | return unique_fd{}; |
Doug Zongker | 9270a20 | 2012-01-09 15:16:13 -0800 | [diff] [blame] | 278 | } |