Doug Zongker | 9270a20 | 2012-01-09 15:16:13 -0800 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2012 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 | 2478885 | 2019-03-22 16:08:52 -0700 | [diff] [blame] | 17 | #include "install/adb_install.h" |
Tao Bao | 0150d01 | 2017-05-01 11:31:28 -0700 | [diff] [blame] | 18 | |
Doug Zongker | 9270a20 | 2012-01-09 15:16:13 -0800 | [diff] [blame] | 19 | #include <errno.h> |
Tao Bao | 0150d01 | 2017-05-01 11:31:28 -0700 | [diff] [blame] | 20 | #include <fcntl.h> |
| 21 | #include <signal.h> |
Doug Zongker | 9270a20 | 2012-01-09 15:16:13 -0800 | [diff] [blame] | 22 | #include <stdlib.h> |
| 23 | #include <string.h> |
xunchang | 95d6732 | 2019-04-05 16:16:07 -0700 | [diff] [blame] | 24 | #include <sys/epoll.h> |
| 25 | #include <sys/socket.h> |
Tao Bao | 0150d01 | 2017-05-01 11:31:28 -0700 | [diff] [blame] | 26 | #include <sys/stat.h> |
Doug Zongker | 9270a20 | 2012-01-09 15:16:13 -0800 | [diff] [blame] | 27 | #include <sys/types.h> |
| 28 | #include <sys/wait.h> |
Tao Bao | 0150d01 | 2017-05-01 11:31:28 -0700 | [diff] [blame] | 29 | #include <unistd.h> |
Doug Zongker | 9270a20 | 2012-01-09 15:16:13 -0800 | [diff] [blame] | 30 | |
xunchang | 95d6732 | 2019-04-05 16:16:07 -0700 | [diff] [blame] | 31 | #include <atomic> |
| 32 | #include <functional> |
| 33 | #include <map> |
Tao Bao | 7b9b7db | 2019-04-19 15:22:15 -0700 | [diff] [blame] | 34 | #include <utility> |
Tao Bao | 378bfbf | 2019-04-16 14:22:25 -0700 | [diff] [blame] | 35 | #include <vector> |
xunchang | 95d6732 | 2019-04-05 16:16:07 -0700 | [diff] [blame] | 36 | |
| 37 | #include <android-base/file.h> |
Tao Bao | 0167d4c | 2017-05-11 14:44:15 -0700 | [diff] [blame] | 38 | #include <android-base/logging.h> |
xunchang | 95d6732 | 2019-04-05 16:16:07 -0700 | [diff] [blame] | 39 | #include <android-base/memory.h> |
Elliott Hughes | cb22040 | 2016-09-23 15:30:55 -0700 | [diff] [blame] | 40 | #include <android-base/properties.h> |
xunchang | 95d6732 | 2019-04-05 16:16:07 -0700 | [diff] [blame] | 41 | #include <android-base/strings.h> |
| 42 | #include <android-base/unique_fd.h> |
Elliott Hughes | cb22040 | 2016-09-23 15:30:55 -0700 | [diff] [blame] | 43 | |
Tao Bao | 0150d01 | 2017-05-01 11:31:28 -0700 | [diff] [blame] | 44 | #include "fuse_sideload.h" |
xunchang | 2478885 | 2019-03-22 16:08:52 -0700 | [diff] [blame] | 45 | #include "install/install.h" |
xunchang | 5a1916b | 2019-04-22 12:18:14 -0700 | [diff] [blame] | 46 | #include "install/wipe_data.h" |
Tao Bao | 3305d48 | 2019-09-26 00:02:29 -0700 | [diff] [blame] | 47 | #include "minadbd/types.h" |
Tao Bao | 378bfbf | 2019-04-16 14:22:25 -0700 | [diff] [blame] | 48 | #include "otautil/sysutil.h" |
Tao Bao | 7b9b7db | 2019-04-19 15:22:15 -0700 | [diff] [blame] | 49 | #include "recovery_ui/device.h" |
Tianjie Xu | 8f39730 | 2018-08-20 13:40:47 -0700 | [diff] [blame] | 50 | #include "recovery_ui/ui.h" |
Tao Bao | 0150d01 | 2017-05-01 11:31:28 -0700 | [diff] [blame] | 51 | |
Tao Bao | 7b9b7db | 2019-04-19 15:22:15 -0700 | [diff] [blame] | 52 | // A CommandFunction returns a pair of (result, should_continue), which indicates the command |
| 53 | // execution result and whether it should proceed to the next iteration. The execution result will |
| 54 | // always be sent to the minadbd side. |
| 55 | using CommandFunction = std::function<std::pair<bool, bool>()>; |
xunchang | 95d6732 | 2019-04-05 16:16:07 -0700 | [diff] [blame] | 56 | |
xunchang | 2478885 | 2019-03-22 16:08:52 -0700 | [diff] [blame] | 57 | static bool SetUsbConfig(const std::string& state) { |
| 58 | android::base::SetProperty("sys.usb.config", state); |
| 59 | return android::base::WaitForProperty("sys.usb.state", state); |
| 60 | } |
| 61 | |
Tao Bao | 7b9b7db | 2019-04-19 15:22:15 -0700 | [diff] [blame] | 62 | // Parses the minadbd command in |message|; returns MinadbdCommand::kError upon errors. |
| 63 | static MinadbdCommand ParseMinadbdCommand(const std::string& message) { |
xunchang | 95d6732 | 2019-04-05 16:16:07 -0700 | [diff] [blame] | 64 | if (!android::base::StartsWith(message, kMinadbdCommandPrefix)) { |
| 65 | LOG(ERROR) << "Failed to parse command in message " << message; |
Tao Bao | 7b9b7db | 2019-04-19 15:22:15 -0700 | [diff] [blame] | 66 | return MinadbdCommand::kError; |
xunchang | 95d6732 | 2019-04-05 16:16:07 -0700 | [diff] [blame] | 67 | } |
| 68 | |
| 69 | auto cmd_code_string = message.substr(strlen(kMinadbdCommandPrefix)); |
| 70 | auto cmd_code = android::base::get_unaligned<uint32_t>(cmd_code_string.c_str()); |
Tao Bao | 7b9b7db | 2019-04-19 15:22:15 -0700 | [diff] [blame] | 71 | if (cmd_code >= static_cast<uint32_t>(MinadbdCommand::kError)) { |
xunchang | 95d6732 | 2019-04-05 16:16:07 -0700 | [diff] [blame] | 72 | LOG(ERROR) << "Unsupported command code: " << cmd_code; |
Tao Bao | 7b9b7db | 2019-04-19 15:22:15 -0700 | [diff] [blame] | 73 | return MinadbdCommand::kError; |
xunchang | 95d6732 | 2019-04-05 16:16:07 -0700 | [diff] [blame] | 74 | } |
| 75 | |
Tao Bao | 7b9b7db | 2019-04-19 15:22:15 -0700 | [diff] [blame] | 76 | return static_cast<MinadbdCommand>(cmd_code); |
xunchang | 95d6732 | 2019-04-05 16:16:07 -0700 | [diff] [blame] | 77 | } |
| 78 | |
| 79 | static bool WriteStatusToFd(MinadbdCommandStatus status, int fd) { |
| 80 | char message[kMinadbdMessageSize]; |
| 81 | memcpy(message, kMinadbdStatusPrefix, strlen(kMinadbdStatusPrefix)); |
| 82 | android::base::put_unaligned(message + strlen(kMinadbdStatusPrefix), status); |
| 83 | |
| 84 | if (!android::base::WriteFully(fd, message, kMinadbdMessageSize)) { |
| 85 | PLOG(ERROR) << "Failed to write message " << message; |
| 86 | return false; |
| 87 | } |
| 88 | return true; |
| 89 | } |
| 90 | |
Tao Bao | 7b9b7db | 2019-04-19 15:22:15 -0700 | [diff] [blame] | 91 | // Installs the package from FUSE. Returns the installation result and whether it should continue |
| 92 | // waiting for new commands. |
bigbiff | 673c7ae | 2020-12-02 19:44:56 -0500 | [diff] [blame] | 93 | static auto AdbInstallPackageHandler(InstallResult* result) { |
xunchang | 95d6732 | 2019-04-05 16:16:07 -0700 | [diff] [blame] | 94 | // How long (in seconds) we wait for the package path to be ready. It doesn't need to be too long |
| 95 | // because the minadbd service has already issued an install command. FUSE_SIDELOAD_HOST_PATHNAME |
| 96 | // will start to exist once the host connects and starts serving a package. Poll for its |
| 97 | // appearance. (Note that inotify doesn't work with FUSE.) |
| 98 | constexpr int ADB_INSTALL_TIMEOUT = 15; |
Tao Bao | 7b9b7db | 2019-04-19 15:22:15 -0700 | [diff] [blame] | 99 | bool should_continue = true; |
xunchang | 95d6732 | 2019-04-05 16:16:07 -0700 | [diff] [blame] | 100 | *result = INSTALL_ERROR; |
| 101 | for (int i = 0; i < ADB_INSTALL_TIMEOUT; ++i) { |
| 102 | struct stat st; |
| 103 | if (stat(FUSE_SIDELOAD_HOST_PATHNAME, &st) != 0) { |
| 104 | if (errno == ENOENT && i < ADB_INSTALL_TIMEOUT - 1) { |
| 105 | sleep(1); |
| 106 | continue; |
| 107 | } else { |
Tao Bao | 7b9b7db | 2019-04-19 15:22:15 -0700 | [diff] [blame] | 108 | should_continue = false; |
bigbiff | d58ba18 | 2020-03-23 10:02:29 -0400 | [diff] [blame] | 109 | // ui->Print("\nTimed out waiting for fuse to be ready.\n\n"); |
xunchang | 95d6732 | 2019-04-05 16:16:07 -0700 | [diff] [blame] | 110 | break; |
| 111 | } |
| 112 | } |
Tianjie Xu | 980f92e | 2019-06-11 15:43:43 -0700 | [diff] [blame] | 113 | |
| 114 | auto package = |
bigbiff | 673c7ae | 2020-12-02 19:44:56 -0500 | [diff] [blame] | 115 | Package::CreateFilePackage(FUSE_SIDELOAD_HOST_PATHNAME, nullptr); |
| 116 | *result = InstallPackage(package.get(), FUSE_SIDELOAD_HOST_PATHNAME, false, 0); |
xunchang | 95d6732 | 2019-04-05 16:16:07 -0700 | [diff] [blame] | 117 | break; |
| 118 | } |
| 119 | |
| 120 | // Calling stat() on this magic filename signals the FUSE to exit. |
| 121 | struct stat st; |
| 122 | stat(FUSE_SIDELOAD_HOST_EXIT_PATHNAME, &st); |
Tao Bao | 7b9b7db | 2019-04-19 15:22:15 -0700 | [diff] [blame] | 123 | return std::make_pair(*result == INSTALL_SUCCESS, should_continue); |
xunchang | 95d6732 | 2019-04-05 16:16:07 -0700 | [diff] [blame] | 124 | } |
| 125 | |
Tao Bao | adc99ef | 2019-04-29 23:48:02 -0700 | [diff] [blame] | 126 | static auto AdbRebootHandler(MinadbdCommand command, InstallResult* result, |
Tao Bao | 7b9b7db | 2019-04-19 15:22:15 -0700 | [diff] [blame] | 127 | Device::BuiltinAction* reboot_action) { |
Tao Bao | 75321ad | 2019-04-23 11:46:25 -0700 | [diff] [blame] | 128 | // Use Device::REBOOT_{FASTBOOT,RECOVERY,RESCUE}, instead of the ones with ENTER_. This allows |
| 129 | // rebooting back into fastboot/recovery/rescue mode through bootloader, which may use a newly |
| 130 | // installed bootloader/recovery image. |
Tao Bao | 7b9b7db | 2019-04-19 15:22:15 -0700 | [diff] [blame] | 131 | switch (command) { |
| 132 | case MinadbdCommand::kRebootBootloader: |
| 133 | *reboot_action = Device::REBOOT_BOOTLOADER; |
| 134 | break; |
| 135 | case MinadbdCommand::kRebootFastboot: |
Tao Bao | 75321ad | 2019-04-23 11:46:25 -0700 | [diff] [blame] | 136 | *reboot_action = Device::REBOOT_FASTBOOT; |
Tao Bao | 7b9b7db | 2019-04-19 15:22:15 -0700 | [diff] [blame] | 137 | break; |
| 138 | case MinadbdCommand::kRebootRecovery: |
Tao Bao | 75321ad | 2019-04-23 11:46:25 -0700 | [diff] [blame] | 139 | *reboot_action = Device::REBOOT_RECOVERY; |
Tao Bao | 7b9b7db | 2019-04-19 15:22:15 -0700 | [diff] [blame] | 140 | break; |
| 141 | case MinadbdCommand::kRebootRescue: |
Tao Bao | 7b9b7db | 2019-04-19 15:22:15 -0700 | [diff] [blame] | 142 | *reboot_action = Device::REBOOT_RESCUE; |
| 143 | break; |
| 144 | case MinadbdCommand::kRebootAndroid: |
| 145 | default: |
| 146 | *reboot_action = Device::REBOOT; |
| 147 | break; |
| 148 | } |
| 149 | *result = INSTALL_REBOOT; |
| 150 | return std::make_pair(true, false); |
| 151 | } |
| 152 | |
| 153 | // Parses and executes the command from minadbd. Returns whether the caller should keep waiting for |
| 154 | // next command. |
| 155 | static bool HandleMessageFromMinadbd(int socket_fd, |
| 156 | const std::map<MinadbdCommand, CommandFunction>& command_map) { |
xunchang | 95d6732 | 2019-04-05 16:16:07 -0700 | [diff] [blame] | 157 | char buffer[kMinadbdMessageSize]; |
| 158 | if (!android::base::ReadFully(socket_fd, buffer, kMinadbdMessageSize)) { |
| 159 | PLOG(ERROR) << "Failed to read message from minadbd"; |
| 160 | return false; |
| 161 | } |
| 162 | |
| 163 | std::string message(buffer, buffer + kMinadbdMessageSize); |
Tao Bao | 7b9b7db | 2019-04-19 15:22:15 -0700 | [diff] [blame] | 164 | auto command_type = ParseMinadbdCommand(message); |
| 165 | if (command_type == MinadbdCommand::kError) { |
xunchang | 95d6732 | 2019-04-05 16:16:07 -0700 | [diff] [blame] | 166 | return false; |
| 167 | } |
| 168 | if (command_map.find(command_type) == command_map.end()) { |
| 169 | LOG(ERROR) << "Unsupported command: " |
| 170 | << android::base::get_unaligned<unsigned int>( |
| 171 | message.substr(strlen(kMinadbdCommandPrefix)).c_str()); |
| 172 | return false; |
| 173 | } |
| 174 | |
| 175 | // We have received a valid command, execute the corresponding function. |
| 176 | const auto& command_func = command_map.at(command_type); |
Tao Bao | 7b9b7db | 2019-04-19 15:22:15 -0700 | [diff] [blame] | 177 | const auto [result, should_continue] = command_func(); |
| 178 | LOG(INFO) << "Command " << static_cast<uint32_t>(command_type) << " finished with " << result; |
| 179 | if (!WriteStatusToFd(result ? MinadbdCommandStatus::kSuccess : MinadbdCommandStatus::kFailure, |
| 180 | socket_fd)) { |
| 181 | return false; |
xunchang | 95d6732 | 2019-04-05 16:16:07 -0700 | [diff] [blame] | 182 | } |
Tao Bao | 7b9b7db | 2019-04-19 15:22:15 -0700 | [diff] [blame] | 183 | return should_continue; |
xunchang | 95d6732 | 2019-04-05 16:16:07 -0700 | [diff] [blame] | 184 | } |
| 185 | |
| 186 | // TODO(xunchang) add a wrapper function and kill the minadbd service there. |
| 187 | static void ListenAndExecuteMinadbdCommands( |
bigbiff | d58ba18 | 2020-03-23 10:02:29 -0400 | [diff] [blame] | 188 | pid_t minadbd_pid, android::base::unique_fd&& socket_fd, |
Tao Bao | 7b9b7db | 2019-04-19 15:22:15 -0700 | [diff] [blame] | 189 | const std::map<MinadbdCommand, CommandFunction>& command_map) { |
xunchang | 95d6732 | 2019-04-05 16:16:07 -0700 | [diff] [blame] | 190 | android::base::unique_fd epoll_fd(epoll_create1(O_CLOEXEC)); |
| 191 | if (epoll_fd == -1) { |
| 192 | PLOG(ERROR) << "Failed to create epoll"; |
| 193 | kill(minadbd_pid, SIGKILL); |
| 194 | return; |
| 195 | } |
| 196 | |
| 197 | constexpr int EPOLL_MAX_EVENTS = 10; |
| 198 | struct epoll_event ev = {}; |
| 199 | ev.events = EPOLLIN | EPOLLHUP; |
| 200 | ev.data.fd = socket_fd.get(); |
| 201 | struct epoll_event events[EPOLL_MAX_EVENTS]; |
| 202 | if (epoll_ctl(epoll_fd.get(), EPOLL_CTL_ADD, socket_fd.get(), &ev) == -1) { |
| 203 | PLOG(ERROR) << "Failed to add socket fd to epoll"; |
| 204 | kill(minadbd_pid, SIGKILL); |
| 205 | return; |
| 206 | } |
| 207 | |
| 208 | // Set the timeout to be 300s when waiting for minadbd commands. |
| 209 | constexpr int TIMEOUT_MILLIS = 300 * 1000; |
| 210 | while (true) { |
Tao Bao | 75321ad | 2019-04-23 11:46:25 -0700 | [diff] [blame] | 211 | // Reset the progress bar and the background image before each command. |
bigbiff | d58ba18 | 2020-03-23 10:02:29 -0400 | [diff] [blame] | 212 | // ui->SetProgressType(RecoveryUI::EMPTY); |
| 213 | // ui->SetBackground(RecoveryUI::NO_COMMAND); |
Tao Bao | 75321ad | 2019-04-23 11:46:25 -0700 | [diff] [blame] | 214 | |
xunchang | 95d6732 | 2019-04-05 16:16:07 -0700 | [diff] [blame] | 215 | // Poll for the status change of the socket_fd, and handle the message if the fd is ready to |
| 216 | // read. |
| 217 | int event_count = |
| 218 | TEMP_FAILURE_RETRY(epoll_wait(epoll_fd.get(), events, EPOLL_MAX_EVENTS, TIMEOUT_MILLIS)); |
| 219 | if (event_count == -1) { |
| 220 | PLOG(ERROR) << "Failed to wait for epoll events"; |
| 221 | kill(minadbd_pid, SIGKILL); |
| 222 | return; |
| 223 | } |
| 224 | if (event_count == 0) { |
| 225 | LOG(ERROR) << "Timeout waiting for messages from minadbd"; |
| 226 | kill(minadbd_pid, SIGKILL); |
| 227 | return; |
| 228 | } |
| 229 | |
| 230 | for (int n = 0; n < event_count; n++) { |
| 231 | if (events[n].events & EPOLLHUP) { |
| 232 | LOG(INFO) << "Socket has been closed"; |
| 233 | kill(minadbd_pid, SIGKILL); |
| 234 | return; |
| 235 | } |
| 236 | if (!HandleMessageFromMinadbd(socket_fd.get(), command_map)) { |
| 237 | kill(minadbd_pid, SIGKILL); |
| 238 | return; |
| 239 | } |
| 240 | } |
| 241 | } |
| 242 | } |
| 243 | |
| 244 | // Recovery starts minadbd service as a child process, and spawns another thread to listen for the |
| 245 | // message from minadbd through a socket pair. Here is an example to execute one command from adb |
| 246 | // host. |
| 247 | // a. recovery b. listener thread c. minadbd service |
| 248 | // |
| 249 | // a1. create socket pair |
| 250 | // a2. fork minadbd service |
| 251 | // c3. wait for the adb commands |
| 252 | // from host |
| 253 | // c4. after receiving host commands: |
| 254 | // 1) set up pre-condition (i.e. |
| 255 | // start fuse for adb sideload) |
| 256 | // 2) issue command through |
| 257 | // socket. |
| 258 | // 3) wait for result |
| 259 | // a5. start listener thread |
| 260 | // b6. listen for message from |
| 261 | // minadbd in a loop. |
| 262 | // b7. After receiving a minadbd |
| 263 | // command from socket |
| 264 | // 1) execute the command function |
| 265 | // 2) send the result back to |
| 266 | // minadbd |
| 267 | // ...... |
| 268 | // c8. exit upon receiving the |
| 269 | // result |
| 270 | // a9. wait for listener thread |
| 271 | // to exit. |
| 272 | // |
| 273 | // a10. wait for minadbd to |
| 274 | // exit |
| 275 | // b11. exit the listening loop |
| 276 | // |
| 277 | static void CreateMinadbdServiceAndExecuteCommands( |
bigbiff | d58ba18 | 2020-03-23 10:02:29 -0400 | [diff] [blame] | 278 | const std::map<MinadbdCommand, CommandFunction>& command_map, |
| 279 | bool rescue_mode, std::string install_file) { |
xunchang | 95d6732 | 2019-04-05 16:16:07 -0700 | [diff] [blame] | 280 | signal(SIGPIPE, SIG_IGN); |
| 281 | |
| 282 | android::base::unique_fd recovery_socket; |
| 283 | android::base::unique_fd minadbd_socket; |
| 284 | if (!android::base::Socketpair(AF_UNIX, SOCK_STREAM, 0, &recovery_socket, &minadbd_socket)) { |
| 285 | PLOG(ERROR) << "Failed to create socket"; |
| 286 | return; |
| 287 | } |
| 288 | |
| 289 | pid_t child = fork(); |
| 290 | if (child == -1) { |
| 291 | PLOG(ERROR) << "Failed to fork child process"; |
| 292 | return; |
| 293 | } |
| 294 | if (child == 0) { |
| 295 | recovery_socket.reset(); |
Tao Bao | 378bfbf | 2019-04-16 14:22:25 -0700 | [diff] [blame] | 296 | std::vector<std::string> minadbd_commands = { |
bigbiff | ad58e1b | 2020-07-06 20:24:34 -0400 | [diff] [blame] | 297 | "/system/bin/recovery", |
bigbiff | d58ba18 | 2020-03-23 10:02:29 -0400 | [diff] [blame] | 298 | "recovery", |
| 299 | "--adbd", |
| 300 | install_file, |
Tao Bao | 378bfbf | 2019-04-16 14:22:25 -0700 | [diff] [blame] | 301 | std::to_string(minadbd_socket.release()), |
| 302 | }; |
| 303 | if (rescue_mode) { |
| 304 | minadbd_commands.push_back("--rescue"); |
| 305 | } |
| 306 | auto exec_args = StringVectorToNullTerminatedArray(minadbd_commands); |
| 307 | execv(exec_args[0], exec_args.data()); |
xunchang | 95d6732 | 2019-04-05 16:16:07 -0700 | [diff] [blame] | 308 | _exit(EXIT_FAILURE); |
| 309 | } |
| 310 | |
| 311 | minadbd_socket.reset(); |
| 312 | |
| 313 | // We need to call SetUsbConfig() after forking minadbd service. Because the function waits for |
| 314 | // the usb state to be updated, which depends on sys.usb.ffs.ready=1 set in the adb daemon. |
| 315 | if (!SetUsbConfig("sideload")) { |
| 316 | LOG(ERROR) << "Failed to set usb config to sideload"; |
| 317 | return; |
| 318 | } |
| 319 | |
bigbiff | d58ba18 | 2020-03-23 10:02:29 -0400 | [diff] [blame] | 320 | std::thread listener_thread(ListenAndExecuteMinadbdCommands, child, |
Tao Bao | 75321ad | 2019-04-23 11:46:25 -0700 | [diff] [blame] | 321 | std::move(recovery_socket), std::ref(command_map)); |
xunchang | 95d6732 | 2019-04-05 16:16:07 -0700 | [diff] [blame] | 322 | if (listener_thread.joinable()) { |
| 323 | listener_thread.join(); |
| 324 | } |
| 325 | |
| 326 | int status; |
| 327 | waitpid(child, &status, 0); |
| 328 | if (!WIFEXITED(status) || WEXITSTATUS(status) != 0) { |
| 329 | if (WEXITSTATUS(status) == MinadbdErrorCode::kMinadbdAdbVersionError) { |
| 330 | LOG(ERROR) << "\nYou need adb 1.0.32 or newer to sideload\nto this device.\n"; |
| 331 | } else if (!WIFSIGNALED(status)) { |
| 332 | LOG(ERROR) << "\n(adbd status " << WEXITSTATUS(status) << ")"; |
| 333 | } |
| 334 | } |
| 335 | |
| 336 | signal(SIGPIPE, SIG_DFL); |
| 337 | } |
| 338 | |
bigbiff | d58ba18 | 2020-03-23 10:02:29 -0400 | [diff] [blame] | 339 | int ApplyFromAdb(const char* install_file, Device::BuiltinAction* reboot_action) { |
| 340 | |
Hridya Valsaraju | e4ef453 | 2018-08-31 11:57:51 -0700 | [diff] [blame] | 341 | // Save the usb state to restore after the sideload operation. |
| 342 | std::string usb_state = android::base::GetProperty("sys.usb.state", "none"); |
| 343 | // Clean up state and stop adbd. |
| 344 | if (usb_state != "none" && !SetUsbConfig("none")) { |
| 345 | LOG(ERROR) << "Failed to clear USB config"; |
| 346 | return INSTALL_ERROR; |
| 347 | } |
Tao Bao | 682c34b | 2015-04-07 17:16:35 -0700 | [diff] [blame] | 348 | |
bigbiff | d58ba18 | 2020-03-23 10:02:29 -0400 | [diff] [blame] | 349 | // RecoveryUI* ui = device->GetUI(); |
Doug Zongker | 9270a20 | 2012-01-09 15:16:13 -0800 | [diff] [blame] | 350 | |
Tao Bao | adc99ef | 2019-04-29 23:48:02 -0700 | [diff] [blame] | 351 | InstallResult install_result = INSTALL_ERROR; |
Tao Bao | 7b9b7db | 2019-04-19 15:22:15 -0700 | [diff] [blame] | 352 | std::map<MinadbdCommand, CommandFunction> command_map{ |
bigbiff | d58ba18 | 2020-03-23 10:02:29 -0400 | [diff] [blame] | 353 | { MinadbdCommand::kInstall, std::bind(&AdbInstallPackageHandler, &install_result) }, |
| 354 | { MinadbdCommand::kRebootAndroid, std::bind(&AdbRebootHandler, MinadbdCommand::kRebootAndroid, |
| 355 | &install_result, reboot_action) }, |
| 356 | { MinadbdCommand::kRebootBootloader, |
| 357 | std::bind(&AdbRebootHandler, MinadbdCommand::kRebootBootloader, &install_result, |
| 358 | reboot_action) }, |
| 359 | { MinadbdCommand::kRebootFastboot, std::bind(&AdbRebootHandler, MinadbdCommand::kRebootFastboot, |
Tao Bao | 7b9b7db | 2019-04-19 15:22:15 -0700 | [diff] [blame] | 360 | &install_result, reboot_action) }, |
bigbiff | d58ba18 | 2020-03-23 10:02:29 -0400 | [diff] [blame] | 361 | { MinadbdCommand::kRebootRecovery, std::bind(&AdbRebootHandler, MinadbdCommand::kRebootRecovery, |
| 362 | &install_result, reboot_action) }, |
| 363 | { MinadbdCommand::kRebootRescue, |
| 364 | std::bind(&AdbRebootHandler, MinadbdCommand::kRebootRescue, &install_result, reboot_action) }, |
| 365 | }; |
Doug Zongker | 9270a20 | 2012-01-09 15:16:13 -0800 | [diff] [blame] | 366 | |
bigbiff | d58ba18 | 2020-03-23 10:02:29 -0400 | [diff] [blame] | 367 | /* |
xunchang | 5a1916b | 2019-04-22 12:18:14 -0700 | [diff] [blame] | 368 | if (!rescue_mode) { |
| 369 | ui->Print( |
| 370 | "\n\nNow send the package you want to apply\n" |
| 371 | "to the device with \"adb sideload <filename>\"...\n"); |
| 372 | } else { |
xunchang | 5a1916b | 2019-04-22 12:18:14 -0700 | [diff] [blame] | 373 | command_map.emplace(MinadbdCommand::kWipeData, [&device]() { |
| 374 | bool result = WipeData(device, false); |
| 375 | return std::make_pair(result, true); |
| 376 | }); |
Tao Bao | 0bbb2ed | 2019-07-08 18:07:22 -0700 | [diff] [blame] | 377 | command_map.emplace(MinadbdCommand::kNoOp, []() { return std::make_pair(true, true); }); |
| 378 | |
| 379 | ui->Print("\n\nWaiting for rescue commands...\n"); |
xunchang | 5a1916b | 2019-04-22 12:18:14 -0700 | [diff] [blame] | 380 | } |
bigbiff | d58ba18 | 2020-03-23 10:02:29 -0400 | [diff] [blame] | 381 | */ |
| 382 | CreateMinadbdServiceAndExecuteCommands(command_map, false, install_file); |
Doug Zongker | 075ad80 | 2014-06-26 15:35:51 -0700 | [diff] [blame] | 383 | |
Hridya Valsaraju | e4ef453 | 2018-08-31 11:57:51 -0700 | [diff] [blame] | 384 | // Clean up before switching to the older state, for example setting the state |
| 385 | // to none sets sys/class/android_usb/android0/enable to 0. |
| 386 | if (!SetUsbConfig("none")) { |
| 387 | LOG(ERROR) << "Failed to clear USB config"; |
| 388 | } |
| 389 | |
| 390 | if (usb_state != "none") { |
| 391 | if (!SetUsbConfig(usb_state)) { |
| 392 | LOG(ERROR) << "Failed to set USB config to " << usb_state; |
| 393 | } |
| 394 | } |
Doug Zongker | 9270a20 | 2012-01-09 15:16:13 -0800 | [diff] [blame] | 395 | |
xunchang | 95d6732 | 2019-04-05 16:16:07 -0700 | [diff] [blame] | 396 | return install_result; |
Doug Zongker | 9270a20 | 2012-01-09 15:16:13 -0800 | [diff] [blame] | 397 | } |