The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -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 | |
Tao Bao | 6d99d4b | 2018-04-25 16:47:04 -0700 | [diff] [blame] | 17 | #include "private/recovery.h" |
| 18 | |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 19 | #include <ctype.h> |
Doug Zongker | 7c3ae45 | 2013-05-14 11:03:02 -0700 | [diff] [blame] | 20 | #include <dirent.h> |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 21 | #include <errno.h> |
| 22 | #include <fcntl.h> |
| 23 | #include <getopt.h> |
Tao Bao | 862a4c1 | 2016-06-02 11:16:50 -0700 | [diff] [blame] | 24 | #include <inttypes.h> |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 25 | #include <limits.h> |
Tao Bao | 862a4c1 | 2016-06-02 11:16:50 -0700 | [diff] [blame] | 26 | #include <linux/fs.h> |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 27 | #include <linux/input.h> |
Doug Zongker | 7c3ae45 | 2013-05-14 11:03:02 -0700 | [diff] [blame] | 28 | #include <stdarg.h> |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 29 | #include <stdio.h> |
| 30 | #include <stdlib.h> |
| 31 | #include <string.h> |
Doug Zongker | 23ceeea | 2010-07-08 17:27:55 -0700 | [diff] [blame] | 32 | #include <sys/stat.h> |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 33 | #include <sys/types.h> |
Tao Bao | cdcf28f | 2016-01-13 15:05:20 -0800 | [diff] [blame] | 34 | #include <sys/wait.h> |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 35 | #include <time.h> |
| 36 | #include <unistd.h> |
| 37 | |
Tao Bao | c4a18ef | 2017-02-10 00:13:30 -0800 | [diff] [blame] | 38 | #include <algorithm> |
Tao Bao | 3aec696 | 2018-04-20 09:24:58 -0700 | [diff] [blame] | 39 | #include <functional> |
Tao Bao | c4a18ef | 2017-02-10 00:13:30 -0800 | [diff] [blame] | 40 | #include <memory> |
Tao Bao | 862a4c1 | 2016-06-02 11:16:50 -0700 | [diff] [blame] | 41 | #include <string> |
| 42 | #include <vector> |
Tao Bao | 04ca426 | 2015-09-10 15:32:24 -0700 | [diff] [blame] | 43 | |
Elliott Hughes | 4b166f0 | 2015-12-04 15:30:20 -0800 | [diff] [blame] | 44 | #include <android-base/file.h> |
Tianjie Xu | 7b0ad9c | 2016-08-05 18:00:04 -0700 | [diff] [blame] | 45 | #include <android-base/logging.h> |
Tianjie Xu | 3c62b67 | 2016-02-05 18:25:58 -0800 | [diff] [blame] | 46 | #include <android-base/parseint.h> |
Elliott Hughes | cb22040 | 2016-09-23 15:30:55 -0700 | [diff] [blame] | 47 | #include <android-base/properties.h> |
Elliott Hughes | 4b166f0 | 2015-12-04 15:30:20 -0800 | [diff] [blame] | 48 | #include <android-base/stringprintf.h> |
Tao Bao | 862a4c1 | 2016-06-02 11:16:50 -0700 | [diff] [blame] | 49 | #include <android-base/strings.h> |
| 50 | #include <android-base/unique_fd.h> |
Yabin Cui | 8b309f6 | 2016-06-24 18:22:02 -0700 | [diff] [blame] | 51 | #include <bootloader_message/bootloader_message.h> |
Tao Bao | 7523863 | 2015-05-27 14:46:17 -0700 | [diff] [blame] | 52 | #include <cutils/android_reboot.h> |
Elliott Hughes | cb22040 | 2016-09-23 15:30:55 -0700 | [diff] [blame] | 53 | #include <cutils/properties.h> /* for property_list */ |
Elliott Hughes | 4bbd5bf | 2016-04-01 18:24:39 -0700 | [diff] [blame] | 54 | #include <healthd/BatteryMonitor.h> |
Jeff Vander Stoep | e35926e | 2017-06-14 15:30:39 -0700 | [diff] [blame] | 55 | #include <selinux/android.h> |
Elliott Hughes | 4bbd5bf | 2016-04-01 18:24:39 -0700 | [diff] [blame] | 56 | #include <selinux/label.h> |
| 57 | #include <selinux/selinux.h> |
Tianjie Xu | 8cf5c8f | 2016-09-08 20:10:11 -0700 | [diff] [blame] | 58 | #include <ziparchive/zip_archive.h> |
Yabin Cui | 99281df | 2016-02-17 12:21:52 -0800 | [diff] [blame] | 59 | |
Tao Bao | 7523863 | 2015-05-27 14:46:17 -0700 | [diff] [blame] | 60 | #include "adb_install.h" |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 61 | #include "common.h" |
Tao Bao | 7523863 | 2015-05-27 14:46:17 -0700 | [diff] [blame] | 62 | #include "device.h" |
| 63 | #include "fuse_sdcard_provider.h" |
| 64 | #include "fuse_sideload.h" |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 65 | #include "install.h" |
Jerry Zhang | 152933a | 2018-05-02 16:56:00 -0700 | [diff] [blame] | 66 | #include "logging.h" |
Tao Bao | 17054c0 | 2018-05-03 22:41:23 -0700 | [diff] [blame] | 67 | #include "otautil/dirutil.h" |
Tao Bao | 1fc5bf3 | 2017-10-06 07:43:41 -0700 | [diff] [blame] | 68 | #include "otautil/error_code.h" |
Tao Bao | 641fa97 | 2018-04-25 18:59:40 -0700 | [diff] [blame] | 69 | #include "otautil/paths.h" |
Tao Bao | 2c52639 | 2018-05-03 23:01:13 -0700 | [diff] [blame] | 70 | #include "otautil/sysutil.h" |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 71 | #include "roots.h" |
Doug Zongker | 211aebc | 2011-10-28 15:13:10 -0700 | [diff] [blame] | 72 | #include "screen_ui.h" |
Sen Jiang | d530449 | 2016-12-09 16:20:49 -0800 | [diff] [blame] | 73 | #include "stub_ui.h" |
Tianjie Xu | e113e4d | 2016-10-21 17:46:13 -0700 | [diff] [blame] | 74 | #include "ui.h" |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 75 | |
Tao Bao | aac9d9f | 2018-04-29 23:38:59 -0700 | [diff] [blame] | 76 | static constexpr const char* CACHE_LOG_DIR = "/cache/recovery"; |
| 77 | static constexpr const char* COMMAND_FILE = "/cache/recovery/command"; |
Tao Bao | aac9d9f | 2018-04-29 23:38:59 -0700 | [diff] [blame] | 78 | static constexpr const char* LAST_KMSG_FILE = "/cache/recovery/last_kmsg"; |
| 79 | static constexpr const char* LAST_LOG_FILE = "/cache/recovery/last_log"; |
| 80 | static constexpr const char* LOCALE_FILE = "/cache/recovery/last_locale"; |
Tianjie Xu | 06e57ac | 2016-07-11 14:04:08 -0700 | [diff] [blame] | 81 | |
Tao Bao | aac9d9f | 2018-04-29 23:38:59 -0700 | [diff] [blame] | 82 | static constexpr const char* CACHE_ROOT = "/cache"; |
| 83 | static constexpr const char* DATA_ROOT = "/data"; |
| 84 | static constexpr const char* METADATA_ROOT = "/metadata"; |
| 85 | static constexpr const char* SDCARD_ROOT = "/sdcard"; |
Nick Kralevich | a9ad032 | 2014-10-22 18:38:48 -0700 | [diff] [blame] | 86 | |
Tao Bao | bd0ddcd | 2017-05-04 13:03:18 -0700 | [diff] [blame] | 87 | // We define RECOVERY_API_VERSION in Android.mk, which will be picked up by build system and packed |
| 88 | // into target_files.zip. Assert the version defined in code and in Android.mk are consistent. |
| 89 | static_assert(kRecoveryApiVersion == RECOVERY_API_VERSION, "Mismatching recovery API versions."); |
| 90 | |
Dan Albert | 8584fcf | 2016-10-27 03:08:08 +0000 | [diff] [blame] | 91 | static bool has_cache = false; |
Tao Bao | c0319b6 | 2016-10-13 15:17:04 -0700 | [diff] [blame] | 92 | |
Tao Bao | ac9d94d | 2016-11-03 11:37:15 -0700 | [diff] [blame] | 93 | RecoveryUI* ui = nullptr; |
| 94 | bool modified_flash = false; |
Tao Bao | a8d72bc | 2016-12-25 18:46:50 -0800 | [diff] [blame] | 95 | std::string stage; |
Tao Bao | ac9d94d | 2016-11-03 11:37:15 -0700 | [diff] [blame] | 96 | const char* reason = nullptr; |
| 97 | struct selabel_handle* sehandle; |
| 98 | |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 99 | /* |
| 100 | * The recovery tool communicates with the main system through /cache files. |
| 101 | * /cache/recovery/command - INPUT - command line for tool, one arg per line |
| 102 | * /cache/recovery/log - OUTPUT - combined log file from recovery run(s) |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 103 | * |
| 104 | * The arguments which may be supplied in the recovery.command file: |
Doug Zongker | d4208f9 | 2010-09-20 12:16:13 -0700 | [diff] [blame] | 105 | * --update_package=path - verify install an OTA package file |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 106 | * --wipe_data - erase user data (and cache), then reboot |
Tao Bao | f9f1734 | 2018-04-27 10:44:04 -0700 | [diff] [blame] | 107 | * --prompt_and_wipe_data - prompt the user that data is corrupt, with their consent erase user |
| 108 | * data (and cache), then reboot |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 109 | * --wipe_cache - wipe cache (but not user data), then reboot |
Tao Bao | f9f1734 | 2018-04-27 10:44:04 -0700 | [diff] [blame] | 110 | * --show_text - show the recovery text menu, used by some bootloader (e.g. http://b/36872519). |
Oscar Montemayor | 0523156 | 2009-11-30 08:40:57 -0800 | [diff] [blame] | 111 | * --set_encrypted_filesystem=on|off - enables / diasables encrypted fs |
Doug Zongker | e5d5ac7 | 2012-04-12 11:01:22 -0700 | [diff] [blame] | 112 | * --just_exit - do nothing; exit and reboot |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 113 | * |
| 114 | * After completing, we remove /cache/recovery/command and reboot. |
| 115 | * Arguments may also be supplied in the bootloader control block (BCB). |
| 116 | * These important scenarios must be safely restartable at any point: |
| 117 | * |
| 118 | * FACTORY RESET |
| 119 | * 1. user selects "factory reset" |
| 120 | * 2. main system writes "--wipe_data" to /cache/recovery/command |
| 121 | * 3. main system reboots into recovery |
| 122 | * 4. get_args() writes BCB with "boot-recovery" and "--wipe_data" |
| 123 | * -- after this, rebooting will restart the erase -- |
Doug Zongker | d4208f9 | 2010-09-20 12:16:13 -0700 | [diff] [blame] | 124 | * 5. erase_volume() reformats /data |
| 125 | * 6. erase_volume() reformats /cache |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 126 | * 7. finish_recovery() erases BCB |
| 127 | * -- after this, rebooting will restart the main system -- |
| 128 | * 8. main() calls reboot() to boot main system |
| 129 | * |
| 130 | * OTA INSTALL |
| 131 | * 1. main system downloads OTA package to /cache/some-filename.zip |
Doug Zongker | 9b125b0 | 2010-09-22 12:01:37 -0700 | [diff] [blame] | 132 | * 2. main system writes "--update_package=/cache/some-filename.zip" |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 133 | * 3. main system reboots into recovery |
| 134 | * 4. get_args() writes BCB with "boot-recovery" and "--update_package=..." |
| 135 | * -- after this, rebooting will attempt to reinstall the update -- |
| 136 | * 5. install_package() attempts to install the update |
| 137 | * NOTE: the package install must itself be restartable from any point |
| 138 | * 6. finish_recovery() erases BCB |
| 139 | * -- after this, rebooting will (try to) restart the main system -- |
| 140 | * 7. ** if install failed ** |
| 141 | * 7a. prompt_and_wait() shows an error icon and waits for the user |
Tao Bao | c033639 | 2016-12-13 22:29:49 -0800 | [diff] [blame] | 142 | * 7b. the user reboots (pulling the battery, etc) into the main system |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 143 | */ |
| 144 | |
Elliott Hughes | f14af80 | 2015-02-10 14:46:14 -0800 | [diff] [blame] | 145 | bool is_ro_debuggable() { |
Elliott Hughes | cb22040 | 2016-09-23 15:30:55 -0700 | [diff] [blame] | 146 | return android::base::GetBoolProperty("ro.debuggable", false); |
Elliott Hughes | f14af80 | 2015-02-10 14:46:14 -0800 | [diff] [blame] | 147 | } |
| 148 | |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 149 | // command line args come from, in decreasing precedence: |
| 150 | // - the actual command line |
| 151 | // - the bootloader control block (one per line, after "recovery") |
| 152 | // - the contents of COMMAND_FILE (one per line) |
Tao Bao | f0ed159 | 2016-12-02 11:32:19 -0800 | [diff] [blame] | 153 | static std::vector<std::string> get_args(const int argc, char** const argv) { |
| 154 | CHECK_GT(argc, 0); |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 155 | |
Tao Bao | f0ed159 | 2016-12-02 11:32:19 -0800 | [diff] [blame] | 156 | bootloader_message boot = {}; |
| 157 | std::string err; |
| 158 | if (!read_bootloader_message(&boot, &err)) { |
| 159 | LOG(ERROR) << err; |
| 160 | // If fails, leave a zeroed bootloader_message. |
| 161 | boot = {}; |
| 162 | } |
Tao Bao | a8d72bc | 2016-12-25 18:46:50 -0800 | [diff] [blame] | 163 | stage = std::string(boot.stage); |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 164 | |
Tao Bao | f0ed159 | 2016-12-02 11:32:19 -0800 | [diff] [blame] | 165 | if (boot.command[0] != 0) { |
| 166 | std::string boot_command = std::string(boot.command, sizeof(boot.command)); |
| 167 | LOG(INFO) << "Boot command: " << boot_command; |
| 168 | } |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 169 | |
Tao Bao | f0ed159 | 2016-12-02 11:32:19 -0800 | [diff] [blame] | 170 | if (boot.status[0] != 0) { |
| 171 | std::string boot_status = std::string(boot.status, sizeof(boot.status)); |
| 172 | LOG(INFO) << "Boot status: " << boot_status; |
| 173 | } |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 174 | |
Tao Bao | f0ed159 | 2016-12-02 11:32:19 -0800 | [diff] [blame] | 175 | std::vector<std::string> args(argv, argv + argc); |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 176 | |
Tao Bao | f0ed159 | 2016-12-02 11:32:19 -0800 | [diff] [blame] | 177 | // --- if arguments weren't supplied, look in the bootloader control block |
Tao Bao | 570af9d | 2017-01-09 10:29:59 -0800 | [diff] [blame] | 178 | if (args.size() == 1) { |
Tao Bao | f0ed159 | 2016-12-02 11:32:19 -0800 | [diff] [blame] | 179 | boot.recovery[sizeof(boot.recovery) - 1] = '\0'; // Ensure termination |
| 180 | std::string boot_recovery(boot.recovery); |
| 181 | std::vector<std::string> tokens = android::base::Split(boot_recovery, "\n"); |
| 182 | if (!tokens.empty() && tokens[0] == "recovery") { |
| 183 | for (auto it = tokens.begin() + 1; it != tokens.end(); it++) { |
| 184 | // Skip empty and '\0'-filled tokens. |
| 185 | if (!it->empty() && (*it)[0] != '\0') args.push_back(std::move(*it)); |
| 186 | } |
| 187 | LOG(INFO) << "Got " << args.size() << " arguments from boot message"; |
| 188 | } else if (boot.recovery[0] != 0) { |
| 189 | LOG(ERROR) << "Bad boot message: \"" << boot_recovery << "\""; |
| 190 | } |
| 191 | } |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 192 | |
Tao Bao | f0ed159 | 2016-12-02 11:32:19 -0800 | [diff] [blame] | 193 | // --- if that doesn't work, try the command file (if we have /cache). |
Tao Bao | 570af9d | 2017-01-09 10:29:59 -0800 | [diff] [blame] | 194 | if (args.size() == 1 && has_cache) { |
Tao Bao | f0ed159 | 2016-12-02 11:32:19 -0800 | [diff] [blame] | 195 | std::string content; |
Tao Bao | 7d34fa1 | 2016-12-08 18:10:48 -0800 | [diff] [blame] | 196 | if (ensure_path_mounted(COMMAND_FILE) == 0 && |
| 197 | android::base::ReadFileToString(COMMAND_FILE, &content)) { |
Tao Bao | f0ed159 | 2016-12-02 11:32:19 -0800 | [diff] [blame] | 198 | std::vector<std::string> tokens = android::base::Split(content, "\n"); |
Tao Bao | 7d34fa1 | 2016-12-08 18:10:48 -0800 | [diff] [blame] | 199 | // All the arguments in COMMAND_FILE are needed (unlike the BCB message, |
| 200 | // COMMAND_FILE doesn't use filename as the first argument). |
| 201 | for (auto it = tokens.begin(); it != tokens.end(); it++) { |
Tao Bao | f0ed159 | 2016-12-02 11:32:19 -0800 | [diff] [blame] | 202 | // Skip empty and '\0'-filled tokens. |
| 203 | if (!it->empty() && (*it)[0] != '\0') args.push_back(std::move(*it)); |
| 204 | } |
| 205 | LOG(INFO) << "Got " << args.size() << " arguments from " << COMMAND_FILE; |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 206 | } |
Tao Bao | f0ed159 | 2016-12-02 11:32:19 -0800 | [diff] [blame] | 207 | } |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 208 | |
Tao Bao | f0ed159 | 2016-12-02 11:32:19 -0800 | [diff] [blame] | 209 | // Write the arguments (excluding the filename in args[0]) back into the |
| 210 | // bootloader control block. So the device will always boot into recovery to |
| 211 | // finish the pending work, until finish_recovery() is called. |
| 212 | std::vector<std::string> options(args.cbegin() + 1, args.cend()); |
Tao Bao | 2292db8 | 2016-12-13 21:53:31 -0800 | [diff] [blame] | 213 | if (!update_bootloader_message(options, &err)) { |
| 214 | LOG(ERROR) << "Failed to set BCB message: " << err; |
Tao Bao | f0ed159 | 2016-12-02 11:32:19 -0800 | [diff] [blame] | 215 | } |
| 216 | |
| 217 | return args; |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 218 | } |
| 219 | |
Tao Bao | 2292db8 | 2016-12-13 21:53:31 -0800 | [diff] [blame] | 220 | // Set the BCB to reboot back into recovery (it won't resume the install from |
| 221 | // sdcard though). |
| 222 | static void set_sdcard_update_bootloader_message() { |
| 223 | std::vector<std::string> options; |
| 224 | std::string err; |
| 225 | if (!update_bootloader_message(options, &err)) { |
| 226 | LOG(ERROR) << "Failed to set BCB message: " << err; |
| 227 | } |
Doug Zongker | 34c98df | 2009-08-18 12:05:45 -0700 | [diff] [blame] | 228 | } |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 229 | |
Tao Bao | ec57903 | 2017-07-21 12:13:15 -0700 | [diff] [blame] | 230 | // Clear the recovery command and prepare to boot a (hopefully working) system, |
Tianjie Xu | c14d95d | 2016-03-24 11:50:34 -0700 | [diff] [blame] | 231 | // copy our log file to cache as well (for the system to read). This function is |
| 232 | // idempotent: call it as many times as you like. |
Jerry Zhang | 2dea53e | 2018-05-02 17:15:03 -0700 | [diff] [blame] | 233 | static void finish_recovery(Device* device) { |
| 234 | std::string locale = device->GetUI()->GetLocale(); |
Tao Bao | ec57903 | 2017-07-21 12:13:15 -0700 | [diff] [blame] | 235 | // Save the locale to cache, so if recovery is next started up without a '--locale' argument |
| 236 | // (e.g., directly from the bootloader) it will use the last-known locale. |
| 237 | if (!locale.empty() && has_cache) { |
| 238 | LOG(INFO) << "Saving locale \"" << locale << "\""; |
| 239 | if (ensure_path_mounted(LOCALE_FILE) != 0) { |
| 240 | LOG(ERROR) << "Failed to mount " << LOCALE_FILE; |
| 241 | } else if (!android::base::WriteStringToFile(locale, LOCALE_FILE)) { |
| 242 | PLOG(ERROR) << "Failed to save locale to " << LOCALE_FILE; |
Doug Zongker | 4f33e55 | 2012-08-23 13:16:12 -0700 | [diff] [blame] | 243 | } |
Tao Bao | ec57903 | 2017-07-21 12:13:15 -0700 | [diff] [blame] | 244 | } |
Doug Zongker | 4f33e55 | 2012-08-23 13:16:12 -0700 | [diff] [blame] | 245 | |
Jerry Zhang | 152933a | 2018-05-02 16:56:00 -0700 | [diff] [blame] | 246 | copy_logs(modified_flash, has_cache); |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 247 | |
Tao Bao | ec57903 | 2017-07-21 12:13:15 -0700 | [diff] [blame] | 248 | // Reset to normal system boot so recovery won't cycle indefinitely. |
| 249 | std::string err; |
| 250 | if (!clear_bootloader_message(&err)) { |
| 251 | LOG(ERROR) << "Failed to clear BCB message: " << err; |
| 252 | } |
| 253 | |
| 254 | // Remove the command file, so recovery won't repeat indefinitely. |
| 255 | if (has_cache) { |
| 256 | if (ensure_path_mounted(COMMAND_FILE) != 0 || (unlink(COMMAND_FILE) && errno != ENOENT)) { |
| 257 | LOG(WARNING) << "Can't unlink " << COMMAND_FILE; |
Yabin Cui | 8b309f6 | 2016-06-24 18:22:02 -0700 | [diff] [blame] | 258 | } |
Tao Bao | ec57903 | 2017-07-21 12:13:15 -0700 | [diff] [blame] | 259 | ensure_path_unmounted(CACHE_ROOT); |
| 260 | } |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 261 | |
Tao Bao | ec57903 | 2017-07-21 12:13:15 -0700 | [diff] [blame] | 262 | sync(); // For good measure. |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 263 | } |
| 264 | |
Tao Bao | 3f5a382 | 2016-12-13 11:14:37 -0800 | [diff] [blame] | 265 | struct saved_log_file { |
| 266 | std::string name; |
| 267 | struct stat sb; |
| 268 | std::string data; |
| 269 | }; |
Doug Zongker | 6d0d7ac | 2013-07-09 13:34:55 -0700 | [diff] [blame] | 270 | |
Elliott Hughes | 945548e | 2015-06-05 17:59:56 -0700 | [diff] [blame] | 271 | static bool erase_volume(const char* volume) { |
Tao Bao | 3f5a382 | 2016-12-13 11:14:37 -0800 | [diff] [blame] | 272 | bool is_cache = (strcmp(volume, CACHE_ROOT) == 0); |
| 273 | bool is_data = (strcmp(volume, DATA_ROOT) == 0); |
Doug Zongker | 6d0d7ac | 2013-07-09 13:34:55 -0700 | [diff] [blame] | 274 | |
Tao Bao | 3f5a382 | 2016-12-13 11:14:37 -0800 | [diff] [blame] | 275 | ui->SetBackground(RecoveryUI::ERASING); |
| 276 | ui->SetProgressType(RecoveryUI::INDETERMINATE); |
Doug Zongker | 6d0d7ac | 2013-07-09 13:34:55 -0700 | [diff] [blame] | 277 | |
Tao Bao | 3f5a382 | 2016-12-13 11:14:37 -0800 | [diff] [blame] | 278 | std::vector<saved_log_file> log_files; |
Doug Zongker | 6d0d7ac | 2013-07-09 13:34:55 -0700 | [diff] [blame] | 279 | |
Tao Bao | 3f5a382 | 2016-12-13 11:14:37 -0800 | [diff] [blame] | 280 | if (is_cache) { |
| 281 | // If we're reformatting /cache, we load any past logs |
| 282 | // (i.e. "/cache/recovery/last_*") and the current log |
| 283 | // ("/cache/recovery/log") into memory, so we can restore them after |
| 284 | // the reformat. |
Doug Zongker | 6d0d7ac | 2013-07-09 13:34:55 -0700 | [diff] [blame] | 285 | |
Tao Bao | 3f5a382 | 2016-12-13 11:14:37 -0800 | [diff] [blame] | 286 | ensure_path_mounted(volume); |
Doug Zongker | 6d0d7ac | 2013-07-09 13:34:55 -0700 | [diff] [blame] | 287 | |
Tao Bao | 3f5a382 | 2016-12-13 11:14:37 -0800 | [diff] [blame] | 288 | struct dirent* de; |
| 289 | std::unique_ptr<DIR, decltype(&closedir)> d(opendir(CACHE_LOG_DIR), closedir); |
| 290 | if (d) { |
| 291 | while ((de = readdir(d.get())) != nullptr) { |
| 292 | if (strncmp(de->d_name, "last_", 5) == 0 || strcmp(de->d_name, "log") == 0) { |
| 293 | std::string path = android::base::StringPrintf("%s/%s", CACHE_LOG_DIR, de->d_name); |
| 294 | |
| 295 | struct stat sb; |
| 296 | if (stat(path.c_str(), &sb) == 0) { |
| 297 | // truncate files to 512kb |
| 298 | if (sb.st_size > (1 << 19)) { |
| 299 | sb.st_size = 1 << 19; |
Doug Zongker | 6d0d7ac | 2013-07-09 13:34:55 -0700 | [diff] [blame] | 300 | } |
Tao Bao | 3f5a382 | 2016-12-13 11:14:37 -0800 | [diff] [blame] | 301 | |
| 302 | std::string data(sb.st_size, '\0'); |
Tianjie Xu | de6735e | 2017-07-10 15:13:33 -0700 | [diff] [blame] | 303 | FILE* f = fopen(path.c_str(), "rbe"); |
Tao Bao | 3f5a382 | 2016-12-13 11:14:37 -0800 | [diff] [blame] | 304 | fread(&data[0], 1, data.size(), f); |
| 305 | fclose(f); |
| 306 | |
| 307 | log_files.emplace_back(saved_log_file{ path, sb, data }); |
| 308 | } |
Doug Zongker | 6d0d7ac | 2013-07-09 13:34:55 -0700 | [diff] [blame] | 309 | } |
Tao Bao | 3f5a382 | 2016-12-13 11:14:37 -0800 | [diff] [blame] | 310 | } |
Paul Lawrence | d0db337 | 2015-11-05 13:38:40 -0800 | [diff] [blame] | 311 | } else { |
Tao Bao | 3f5a382 | 2016-12-13 11:14:37 -0800 | [diff] [blame] | 312 | if (errno != ENOENT) { |
| 313 | PLOG(ERROR) << "Failed to opendir " << CACHE_LOG_DIR; |
| 314 | } |
Paul Lawrence | d0db337 | 2015-11-05 13:38:40 -0800 | [diff] [blame] | 315 | } |
Tao Bao | 3f5a382 | 2016-12-13 11:14:37 -0800 | [diff] [blame] | 316 | } |
Doug Zongker | d0181b8 | 2011-10-19 10:51:12 -0700 | [diff] [blame] | 317 | |
Tao Bao | 3f5a382 | 2016-12-13 11:14:37 -0800 | [diff] [blame] | 318 | ui->Print("Formatting %s...\n", volume); |
| 319 | |
| 320 | ensure_path_unmounted(volume); |
| 321 | |
| 322 | int result; |
Tao Bao | 3f5a382 | 2016-12-13 11:14:37 -0800 | [diff] [blame] | 323 | if (is_data && reason && strcmp(reason, "convert_fbe") == 0) { |
Tao Bao | 406a6ff | 2018-04-30 10:05:57 -0700 | [diff] [blame] | 324 | static constexpr const char* CONVERT_FBE_DIR = "/tmp/convert_fbe"; |
| 325 | static constexpr const char* CONVERT_FBE_FILE = "/tmp/convert_fbe/convert_fbe"; |
| 326 | // Create convert_fbe breadcrumb file to signal init to convert to file based encryption, not |
| 327 | // full disk encryption. |
Tao Bao | 3f5a382 | 2016-12-13 11:14:37 -0800 | [diff] [blame] | 328 | if (mkdir(CONVERT_FBE_DIR, 0700) != 0) { |
Tao Bao | 406a6ff | 2018-04-30 10:05:57 -0700 | [diff] [blame] | 329 | PLOG(ERROR) << "Failed to mkdir " << CONVERT_FBE_DIR; |
| 330 | return false; |
Tao Bao | 3f5a382 | 2016-12-13 11:14:37 -0800 | [diff] [blame] | 331 | } |
Tianjie Xu | de6735e | 2017-07-10 15:13:33 -0700 | [diff] [blame] | 332 | FILE* f = fopen(CONVERT_FBE_FILE, "wbe"); |
Tao Bao | 3f5a382 | 2016-12-13 11:14:37 -0800 | [diff] [blame] | 333 | if (!f) { |
Tao Bao | 406a6ff | 2018-04-30 10:05:57 -0700 | [diff] [blame] | 334 | PLOG(ERROR) << "Failed to convert to file encryption"; |
| 335 | return false; |
Tao Bao | 3f5a382 | 2016-12-13 11:14:37 -0800 | [diff] [blame] | 336 | } |
| 337 | fclose(f); |
| 338 | result = format_volume(volume, CONVERT_FBE_DIR); |
| 339 | remove(CONVERT_FBE_FILE); |
| 340 | rmdir(CONVERT_FBE_DIR); |
| 341 | } else { |
| 342 | result = format_volume(volume); |
| 343 | } |
| 344 | |
| 345 | if (is_cache) { |
| 346 | // Re-create the log dir and write back the log entries. |
| 347 | if (ensure_path_mounted(CACHE_LOG_DIR) == 0 && |
Tao Bao | ac3d1ed | 2017-07-23 00:01:02 -0700 | [diff] [blame] | 348 | mkdir_recursively(CACHE_LOG_DIR, 0777, false, sehandle) == 0) { |
Tao Bao | 3f5a382 | 2016-12-13 11:14:37 -0800 | [diff] [blame] | 349 | for (const auto& log : log_files) { |
| 350 | if (!android::base::WriteStringToFile(log.data, log.name, log.sb.st_mode, log.sb.st_uid, |
| 351 | log.sb.st_gid)) { |
| 352 | PLOG(ERROR) << "Failed to write to " << log.name; |
Doug Zongker | 6d0d7ac | 2013-07-09 13:34:55 -0700 | [diff] [blame] | 353 | } |
Tao Bao | 3f5a382 | 2016-12-13 11:14:37 -0800 | [diff] [blame] | 354 | } |
| 355 | } else { |
| 356 | PLOG(ERROR) << "Failed to mount / create " << CACHE_LOG_DIR; |
Doug Zongker | 2c3539e | 2010-09-29 13:21:30 -0700 | [diff] [blame] | 357 | } |
| 358 | |
Tao Bao | 3f5a382 | 2016-12-13 11:14:37 -0800 | [diff] [blame] | 359 | // Any part of the log we'd copied to cache is now gone. |
| 360 | // Reset the pointer so we copy from the beginning of the temp |
| 361 | // log. |
Jerry Zhang | 152933a | 2018-05-02 16:56:00 -0700 | [diff] [blame] | 362 | reset_tmplog_offset(); |
| 363 | copy_logs(modified_flash, has_cache); |
Tao Bao | 3f5a382 | 2016-12-13 11:14:37 -0800 | [diff] [blame] | 364 | } |
| 365 | |
| 366 | return (result == 0); |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 367 | } |
| 368 | |
Tao Bao | c4a18ef | 2017-02-10 00:13:30 -0800 | [diff] [blame] | 369 | // Returns the selected filename, or an empty string. |
| 370 | static std::string browse_directory(const std::string& path, Device* device) { |
| 371 | ensure_path_mounted(path.c_str()); |
Doug Zongker | 8674a72 | 2010-09-15 11:08:23 -0700 | [diff] [blame] | 372 | |
Tao Bao | c4a18ef | 2017-02-10 00:13:30 -0800 | [diff] [blame] | 373 | std::unique_ptr<DIR, decltype(&closedir)> d(opendir(path.c_str()), closedir); |
| 374 | if (!d) { |
| 375 | PLOG(ERROR) << "error opening " << path; |
| 376 | return ""; |
| 377 | } |
Doug Zongker | c18eeb8 | 2010-09-21 16:49:26 -0700 | [diff] [blame] | 378 | |
Tao Bao | c4a18ef | 2017-02-10 00:13:30 -0800 | [diff] [blame] | 379 | std::vector<std::string> dirs; |
Tao Bao | 1fe1afe | 2018-05-01 15:56:05 -0700 | [diff] [blame] | 380 | std::vector<std::string> entries{ "../" }; // "../" is always the first entry. |
Tao Bao | c4a18ef | 2017-02-10 00:13:30 -0800 | [diff] [blame] | 381 | |
| 382 | dirent* de; |
| 383 | while ((de = readdir(d.get())) != nullptr) { |
| 384 | std::string name(de->d_name); |
| 385 | |
| 386 | if (de->d_type == DT_DIR) { |
| 387 | // Skip "." and ".." entries. |
| 388 | if (name == "." || name == "..") continue; |
| 389 | dirs.push_back(name + "/"); |
| 390 | } else if (de->d_type == DT_REG && android::base::EndsWithIgnoreCase(name, ".zip")) { |
Tao Bao | 1fe1afe | 2018-05-01 15:56:05 -0700 | [diff] [blame] | 391 | entries.push_back(name); |
Tao Bao | c4a18ef | 2017-02-10 00:13:30 -0800 | [diff] [blame] | 392 | } |
| 393 | } |
| 394 | |
| 395 | std::sort(dirs.begin(), dirs.end()); |
Tao Bao | 1fe1afe | 2018-05-01 15:56:05 -0700 | [diff] [blame] | 396 | std::sort(entries.begin(), entries.end()); |
Tao Bao | c4a18ef | 2017-02-10 00:13:30 -0800 | [diff] [blame] | 397 | |
Tao Bao | 1fe1afe | 2018-05-01 15:56:05 -0700 | [diff] [blame] | 398 | // Append dirs to the entries list. |
| 399 | entries.insert(entries.end(), dirs.begin(), dirs.end()); |
Tao Bao | c4a18ef | 2017-02-10 00:13:30 -0800 | [diff] [blame] | 400 | |
Tao Bao | 1fe1afe | 2018-05-01 15:56:05 -0700 | [diff] [blame] | 401 | std::vector<std::string> headers{ "Choose a package to install:", path }; |
Tao Bao | c4a18ef | 2017-02-10 00:13:30 -0800 | [diff] [blame] | 402 | |
Tao Bao | 1fe1afe | 2018-05-01 15:56:05 -0700 | [diff] [blame] | 403 | size_t chosen_item = 0; |
Tao Bao | c4a18ef | 2017-02-10 00:13:30 -0800 | [diff] [blame] | 404 | while (true) { |
Tao Bao | 3aec696 | 2018-04-20 09:24:58 -0700 | [diff] [blame] | 405 | chosen_item = ui->ShowMenu( |
| 406 | headers, entries, chosen_item, true, |
| 407 | std::bind(&Device::HandleMenuKey, device, std::placeholders::_1, std::placeholders::_2)); |
Tao Bao | c4a18ef | 2017-02-10 00:13:30 -0800 | [diff] [blame] | 408 | |
Tao Bao | 1fe1afe | 2018-05-01 15:56:05 -0700 | [diff] [blame] | 409 | const std::string& item = entries[chosen_item]; |
Tao Bao | c4a18ef | 2017-02-10 00:13:30 -0800 | [diff] [blame] | 410 | if (chosen_item == 0) { |
| 411 | // Go up but continue browsing (if the caller is browse_directory). |
| 412 | return ""; |
Doug Zongker | 8674a72 | 2010-09-15 11:08:23 -0700 | [diff] [blame] | 413 | } |
| 414 | |
Tao Bao | c4a18ef | 2017-02-10 00:13:30 -0800 | [diff] [blame] | 415 | std::string new_path = path + "/" + item; |
| 416 | if (new_path.back() == '/') { |
| 417 | // Recurse down into a subdirectory. |
| 418 | new_path.pop_back(); |
| 419 | std::string result = browse_directory(new_path, device); |
| 420 | if (!result.empty()) return result; |
| 421 | } else { |
| 422 | // Selected a zip file: return the path to the caller. |
| 423 | return new_path; |
Doug Zongker | 8674a72 | 2010-09-15 11:08:23 -0700 | [diff] [blame] | 424 | } |
Tao Bao | c4a18ef | 2017-02-10 00:13:30 -0800 | [diff] [blame] | 425 | } |
Doug Zongker | 8674a72 | 2010-09-15 11:08:23 -0700 | [diff] [blame] | 426 | |
Tao Bao | c4a18ef | 2017-02-10 00:13:30 -0800 | [diff] [blame] | 427 | // Unreachable. |
Doug Zongker | 8674a72 | 2010-09-15 11:08:23 -0700 | [diff] [blame] | 428 | } |
| 429 | |
Elliott Hughes | 30694c9 | 2015-03-25 15:16:51 -0700 | [diff] [blame] | 430 | static bool yes_no(Device* device, const char* question1, const char* question2) { |
Tao Bao | 1fe1afe | 2018-05-01 15:56:05 -0700 | [diff] [blame] | 431 | std::vector<std::string> headers{ question1, question2 }; |
| 432 | std::vector<std::string> items{ " No", " Yes" }; |
Doug Zongker | ddd6a28 | 2009-06-09 12:22:33 -0700 | [diff] [blame] | 433 | |
Tao Bao | 1fe1afe | 2018-05-01 15:56:05 -0700 | [diff] [blame] | 434 | size_t chosen_item = ui->ShowMenu( |
Tao Bao | 3aec696 | 2018-04-20 09:24:58 -0700 | [diff] [blame] | 435 | headers, items, 0, true, |
| 436 | std::bind(&Device::HandleMenuKey, device, std::placeholders::_1, std::placeholders::_2)); |
| 437 | return (chosen_item == 1); |
Elliott Hughes | 30694c9 | 2015-03-25 15:16:51 -0700 | [diff] [blame] | 438 | } |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 439 | |
Paul Crowley | 08404b4 | 2016-12-19 13:04:23 -0800 | [diff] [blame] | 440 | static bool ask_to_wipe_data(Device* device) { |
Tao Bao | 3aec696 | 2018-04-20 09:24:58 -0700 | [diff] [blame] | 441 | return yes_no(device, "Wipe all user data?", " THIS CAN NOT BE UNDONE!"); |
Paul Crowley | 08404b4 | 2016-12-19 13:04:23 -0800 | [diff] [blame] | 442 | } |
Doug Zongker | 1066d2c | 2009-04-01 13:57:40 -0700 | [diff] [blame] | 443 | |
Paul Crowley | 08404b4 | 2016-12-19 13:04:23 -0800 | [diff] [blame] | 444 | // Return true on success. |
| 445 | static bool wipe_data(Device* device) { |
Tao Bao | 682c34b | 2015-04-07 17:16:35 -0700 | [diff] [blame] | 446 | modified_flash = true; |
| 447 | |
Doug Zongker | 211aebc | 2011-10-28 15:13:10 -0700 | [diff] [blame] | 448 | ui->Print("\n-- Wiping data...\n"); |
Paul Crowley | 3b4d516 | 2016-06-08 13:51:41 -0700 | [diff] [blame] | 449 | bool success = device->PreWipeData(); |
| 450 | if (success) { |
| 451 | success &= erase_volume(DATA_ROOT); |
| 452 | if (has_cache) { |
| 453 | success &= erase_volume(CACHE_ROOT); |
| 454 | } |
| 455 | if (volume_for_mount_point(METADATA_ROOT) != nullptr) { |
| 456 | success &= erase_volume(METADATA_ROOT); |
| 457 | } |
| 458 | } |
| 459 | if (success) { |
| 460 | success &= device->PostWipeData(); |
| 461 | } |
Elliott Hughes | 945548e | 2015-06-05 17:59:56 -0700 | [diff] [blame] | 462 | ui->Print("Data wipe %s.\n", success ? "complete" : "failed"); |
| 463 | return success; |
Doug Zongker | f93d816 | 2009-09-22 15:16:02 -0700 | [diff] [blame] | 464 | } |
| 465 | |
Paul Crowley | 08404b4 | 2016-12-19 13:04:23 -0800 | [diff] [blame] | 466 | static bool prompt_and_wipe_data(Device* device) { |
Tao Bao | 2bbc6d6 | 2017-08-13 23:48:55 -0700 | [diff] [blame] | 467 | // Use a single string and let ScreenRecoveryUI handles the wrapping. |
Tao Bao | 1fe1afe | 2018-05-01 15:56:05 -0700 | [diff] [blame] | 468 | std::vector<std::string> headers{ |
Tao Bao | 2bbc6d6 | 2017-08-13 23:48:55 -0700 | [diff] [blame] | 469 | "Can't load Android system. Your data may be corrupt. " |
| 470 | "If you continue to get this message, you may need to " |
| 471 | "perform a factory data reset and erase all user data " |
Paul Crowley | 31ac0c6 | 2017-03-23 12:32:40 -0700 | [diff] [blame] | 472 | "stored on this device.", |
Tao Bao | fc5499f | 2017-02-23 19:06:53 -0800 | [diff] [blame] | 473 | }; |
Tao Bao | 1fe1afe | 2018-05-01 15:56:05 -0700 | [diff] [blame] | 474 | // clang-format off |
| 475 | std::vector<std::string> items { |
Paul Crowley | 31ac0c6 | 2017-03-23 12:32:40 -0700 | [diff] [blame] | 476 | "Try again", |
| 477 | "Factory data reset", |
Tao Bao | fc5499f | 2017-02-23 19:06:53 -0800 | [diff] [blame] | 478 | }; |
Tao Bao | 1fe1afe | 2018-05-01 15:56:05 -0700 | [diff] [blame] | 479 | // clang-format on |
Tao Bao | fc5499f | 2017-02-23 19:06:53 -0800 | [diff] [blame] | 480 | for (;;) { |
Tao Bao | 1fe1afe | 2018-05-01 15:56:05 -0700 | [diff] [blame] | 481 | size_t chosen_item = ui->ShowMenu( |
Tao Bao | 3aec696 | 2018-04-20 09:24:58 -0700 | [diff] [blame] | 482 | headers, items, 0, true, |
| 483 | std::bind(&Device::HandleMenuKey, device, std::placeholders::_1, std::placeholders::_2)); |
Tao Bao | fc5499f | 2017-02-23 19:06:53 -0800 | [diff] [blame] | 484 | if (chosen_item != 1) { |
| 485 | return true; // Just reboot, no wipe; not a failure, user asked for it |
Paul Crowley | 08404b4 | 2016-12-19 13:04:23 -0800 | [diff] [blame] | 486 | } |
Tao Bao | fc5499f | 2017-02-23 19:06:53 -0800 | [diff] [blame] | 487 | if (ask_to_wipe_data(device)) { |
| 488 | return wipe_data(device); |
| 489 | } |
| 490 | } |
Paul Crowley | 08404b4 | 2016-12-19 13:04:23 -0800 | [diff] [blame] | 491 | } |
| 492 | |
Tao Bao | e39a9bc | 2015-03-31 12:19:05 -0700 | [diff] [blame] | 493 | // Return true on success. |
| 494 | static bool wipe_cache(bool should_confirm, Device* device) { |
Tao Bao | 26112e5 | 2016-02-25 12:29:40 -0800 | [diff] [blame] | 495 | if (!has_cache) { |
| 496 | ui->Print("No /cache partition found.\n"); |
| 497 | return false; |
| 498 | } |
| 499 | |
Elliott Hughes | 30694c9 | 2015-03-25 15:16:51 -0700 | [diff] [blame] | 500 | if (should_confirm && !yes_no(device, "Wipe cache?", " THIS CAN NOT BE UNDONE!")) { |
Tao Bao | e39a9bc | 2015-03-31 12:19:05 -0700 | [diff] [blame] | 501 | return false; |
Elliott Hughes | 30694c9 | 2015-03-25 15:16:51 -0700 | [diff] [blame] | 502 | } |
| 503 | |
Tao Bao | 682c34b | 2015-04-07 17:16:35 -0700 | [diff] [blame] | 504 | modified_flash = true; |
| 505 | |
Elliott Hughes | 30694c9 | 2015-03-25 15:16:51 -0700 | [diff] [blame] | 506 | ui->Print("\n-- Wiping cache...\n"); |
Elliott Hughes | 945548e | 2015-06-05 17:59:56 -0700 | [diff] [blame] | 507 | bool success = erase_volume("/cache"); |
| 508 | ui->Print("Cache wipe %s.\n", success ? "complete" : "failed"); |
| 509 | return success; |
Elliott Hughes | 30694c9 | 2015-03-25 15:16:51 -0700 | [diff] [blame] | 510 | } |
| 511 | |
Tao Bao | 1b2a98b | 2017-03-24 10:45:34 -0700 | [diff] [blame] | 512 | // Secure-wipe a given partition. It uses BLKSECDISCARD, if supported. Otherwise, it goes with |
| 513 | // BLKDISCARD (if device supports BLKDISCARDZEROES) or BLKZEROOUT. |
Tao Bao | 862a4c1 | 2016-06-02 11:16:50 -0700 | [diff] [blame] | 514 | static bool secure_wipe_partition(const std::string& partition) { |
Tao Bao | 1b2a98b | 2017-03-24 10:45:34 -0700 | [diff] [blame] | 515 | android::base::unique_fd fd(TEMP_FAILURE_RETRY(open(partition.c_str(), O_WRONLY))); |
| 516 | if (fd == -1) { |
| 517 | PLOG(ERROR) << "Failed to open \"" << partition << "\""; |
| 518 | return false; |
| 519 | } |
| 520 | |
| 521 | uint64_t range[2] = { 0, 0 }; |
| 522 | if (ioctl(fd, BLKGETSIZE64, &range[1]) == -1 || range[1] == 0) { |
| 523 | PLOG(ERROR) << "Failed to get partition size"; |
| 524 | return false; |
| 525 | } |
| 526 | LOG(INFO) << "Secure-wiping \"" << partition << "\" from " << range[0] << " to " << range[1]; |
| 527 | |
| 528 | LOG(INFO) << " Trying BLKSECDISCARD..."; |
| 529 | if (ioctl(fd, BLKSECDISCARD, &range) == -1) { |
| 530 | PLOG(WARNING) << " Failed"; |
| 531 | |
| 532 | // Use BLKDISCARD if it zeroes out blocks, otherwise use BLKZEROOUT. |
| 533 | unsigned int zeroes; |
| 534 | if (ioctl(fd, BLKDISCARDZEROES, &zeroes) == 0 && zeroes != 0) { |
| 535 | LOG(INFO) << " Trying BLKDISCARD..."; |
| 536 | if (ioctl(fd, BLKDISCARD, &range) == -1) { |
| 537 | PLOG(ERROR) << " Failed"; |
Tao Bao | 862a4c1 | 2016-06-02 11:16:50 -0700 | [diff] [blame] | 538 | return false; |
Tao Bao | 1b2a98b | 2017-03-24 10:45:34 -0700 | [diff] [blame] | 539 | } |
| 540 | } else { |
| 541 | LOG(INFO) << " Trying BLKZEROOUT..."; |
| 542 | if (ioctl(fd, BLKZEROOUT, &range) == -1) { |
| 543 | PLOG(ERROR) << " Failed"; |
Tao Bao | 862a4c1 | 2016-06-02 11:16:50 -0700 | [diff] [blame] | 544 | return false; |
Tao Bao | 1b2a98b | 2017-03-24 10:45:34 -0700 | [diff] [blame] | 545 | } |
Tao Bao | 862a4c1 | 2016-06-02 11:16:50 -0700 | [diff] [blame] | 546 | } |
Tao Bao | 1b2a98b | 2017-03-24 10:45:34 -0700 | [diff] [blame] | 547 | } |
Tao Bao | 862a4c1 | 2016-06-02 11:16:50 -0700 | [diff] [blame] | 548 | |
Tao Bao | 1b2a98b | 2017-03-24 10:45:34 -0700 | [diff] [blame] | 549 | LOG(INFO) << " Done"; |
| 550 | return true; |
Tao Bao | 862a4c1 | 2016-06-02 11:16:50 -0700 | [diff] [blame] | 551 | } |
| 552 | |
Yabin Cui | fd99a31 | 2016-06-09 14:09:39 -0700 | [diff] [blame] | 553 | // Check if the wipe package matches expectation: |
| 554 | // 1. verify the package. |
| 555 | // 2. check metadata (ota-type, pre-device and serial number if having one). |
| 556 | static bool check_wipe_package(size_t wipe_package_size) { |
| 557 | if (wipe_package_size == 0) { |
| 558 | LOG(ERROR) << "wipe_package_size is zero"; |
| 559 | return false; |
| 560 | } |
| 561 | std::string wipe_package; |
| 562 | std::string err_str; |
| 563 | if (!read_wipe_package(&wipe_package, wipe_package_size, &err_str)) { |
| 564 | PLOG(ERROR) << "Failed to read wipe package"; |
| 565 | return false; |
| 566 | } |
| 567 | if (!verify_package(reinterpret_cast<const unsigned char*>(wipe_package.data()), |
| 568 | wipe_package.size())) { |
| 569 | LOG(ERROR) << "Failed to verify package"; |
| 570 | return false; |
| 571 | } |
| 572 | |
| 573 | // Extract metadata |
| 574 | ZipArchiveHandle zip; |
Tao Bao | efc3559 | 2017-01-08 22:45:47 -0800 | [diff] [blame] | 575 | int err = OpenArchiveFromMemory(static_cast<void*>(&wipe_package[0]), wipe_package.size(), |
| 576 | "wipe_package", &zip); |
Yabin Cui | fd99a31 | 2016-06-09 14:09:39 -0700 | [diff] [blame] | 577 | if (err != 0) { |
| 578 | LOG(ERROR) << "Can't open wipe package : " << ErrorCodeString(err); |
| 579 | return false; |
| 580 | } |
| 581 | std::string metadata; |
Tao Bao | 1b2a98b | 2017-03-24 10:45:34 -0700 | [diff] [blame] | 582 | if (!read_metadata_from_package(zip, &metadata)) { |
Yabin Cui | fd99a31 | 2016-06-09 14:09:39 -0700 | [diff] [blame] | 583 | CloseArchive(zip); |
| 584 | return false; |
| 585 | } |
| 586 | CloseArchive(zip); |
| 587 | |
| 588 | // Check metadata |
| 589 | std::vector<std::string> lines = android::base::Split(metadata, "\n"); |
| 590 | bool ota_type_matched = false; |
| 591 | bool device_type_matched = false; |
| 592 | bool has_serial_number = false; |
| 593 | bool serial_number_matched = false; |
| 594 | for (const auto& line : lines) { |
| 595 | if (line == "ota-type=BRICK") { |
| 596 | ota_type_matched = true; |
| 597 | } else if (android::base::StartsWith(line, "pre-device=")) { |
| 598 | std::string device_type = line.substr(strlen("pre-device=")); |
Tao Bao | efc3559 | 2017-01-08 22:45:47 -0800 | [diff] [blame] | 599 | std::string real_device_type = android::base::GetProperty("ro.build.product", ""); |
Yabin Cui | fd99a31 | 2016-06-09 14:09:39 -0700 | [diff] [blame] | 600 | device_type_matched = (device_type == real_device_type); |
| 601 | } else if (android::base::StartsWith(line, "serialno=")) { |
| 602 | std::string serial_no = line.substr(strlen("serialno=")); |
Tao Bao | efc3559 | 2017-01-08 22:45:47 -0800 | [diff] [blame] | 603 | std::string real_serial_no = android::base::GetProperty("ro.serialno", ""); |
Yabin Cui | fd99a31 | 2016-06-09 14:09:39 -0700 | [diff] [blame] | 604 | has_serial_number = true; |
| 605 | serial_number_matched = (serial_no == real_serial_no); |
| 606 | } |
| 607 | } |
| 608 | return ota_type_matched && device_type_matched && (!has_serial_number || serial_number_matched); |
| 609 | } |
| 610 | |
Tao Bao | aac9d9f | 2018-04-29 23:38:59 -0700 | [diff] [blame] | 611 | // Wipes the current A/B device, with a secure wipe of all the partitions in RECOVERY_WIPE. |
Yabin Cui | fd99a31 | 2016-06-09 14:09:39 -0700 | [diff] [blame] | 612 | static bool wipe_ab_device(size_t wipe_package_size) { |
Tao Bao | aac9d9f | 2018-04-29 23:38:59 -0700 | [diff] [blame] | 613 | ui->SetBackground(RecoveryUI::ERASING); |
| 614 | ui->SetProgressType(RecoveryUI::INDETERMINATE); |
Tao Bao | 862a4c1 | 2016-06-02 11:16:50 -0700 | [diff] [blame] | 615 | |
Tao Bao | aac9d9f | 2018-04-29 23:38:59 -0700 | [diff] [blame] | 616 | if (!check_wipe_package(wipe_package_size)) { |
| 617 | LOG(ERROR) << "Failed to verify wipe package"; |
| 618 | return false; |
| 619 | } |
| 620 | static constexpr const char* RECOVERY_WIPE = "/etc/recovery.wipe"; |
| 621 | std::string partition_list; |
| 622 | if (!android::base::ReadFileToString(RECOVERY_WIPE, &partition_list)) { |
| 623 | LOG(ERROR) << "failed to read \"" << RECOVERY_WIPE << "\""; |
| 624 | return false; |
| 625 | } |
| 626 | |
| 627 | std::vector<std::string> lines = android::base::Split(partition_list, "\n"); |
| 628 | for (const std::string& line : lines) { |
| 629 | std::string partition = android::base::Trim(line); |
| 630 | // Ignore '#' comment or empty lines. |
| 631 | if (android::base::StartsWith(partition, "#") || partition.empty()) { |
| 632 | continue; |
Tao Bao | 862a4c1 | 2016-06-02 11:16:50 -0700 | [diff] [blame] | 633 | } |
| 634 | |
Tao Bao | aac9d9f | 2018-04-29 23:38:59 -0700 | [diff] [blame] | 635 | // Proceed anyway even if it fails to wipe some partition. |
| 636 | secure_wipe_partition(partition); |
| 637 | } |
| 638 | return true; |
Tao Bao | 862a4c1 | 2016-06-02 11:16:50 -0700 | [diff] [blame] | 639 | } |
| 640 | |
Nick Kralevich | a9ad032 | 2014-10-22 18:38:48 -0700 | [diff] [blame] | 641 | static void choose_recovery_file(Device* device) { |
Tao Bao | 08fc6be | 2017-03-07 00:56:27 -0800 | [diff] [blame] | 642 | std::vector<std::string> entries; |
| 643 | if (has_cache) { |
| 644 | for (int i = 0; i < KEEP_LOG_COUNT; i++) { |
| 645 | auto add_to_entries = [&](const char* filename) { |
| 646 | std::string log_file(filename); |
| 647 | if (i > 0) { |
| 648 | log_file += "." + std::to_string(i); |
Tao Bao | bef3971 | 2015-05-04 18:50:27 -0700 | [diff] [blame] | 649 | } |
Tao Bao | 08fc6be | 2017-03-07 00:56:27 -0800 | [diff] [blame] | 650 | |
| 651 | if (ensure_path_mounted(log_file.c_str()) == 0 && access(log_file.c_str(), R_OK) == 0) { |
| 652 | entries.push_back(std::move(log_file)); |
| 653 | } |
| 654 | }; |
| 655 | |
| 656 | // Add LAST_LOG_FILE + LAST_LOG_FILE.x |
| 657 | add_to_entries(LAST_LOG_FILE); |
| 658 | |
| 659 | // Add LAST_KMSG_FILE + LAST_KMSG_FILE.x |
| 660 | add_to_entries(LAST_KMSG_FILE); |
| 661 | } |
| 662 | } else { |
| 663 | // If cache partition is not found, view /tmp/recovery.log instead. |
Tao Bao | 641fa97 | 2018-04-25 18:59:40 -0700 | [diff] [blame] | 664 | if (access(Paths::Get().temporary_log_file().c_str(), R_OK) == -1) { |
Tao Bao | 08fc6be | 2017-03-07 00:56:27 -0800 | [diff] [blame] | 665 | return; |
Tianjie Xu | a54f75e | 2016-08-17 12:02:46 -0700 | [diff] [blame] | 666 | } else { |
Tao Bao | 641fa97 | 2018-04-25 18:59:40 -0700 | [diff] [blame] | 667 | entries.push_back(Paths::Get().temporary_log_file()); |
Nick Kralevich | a9ad032 | 2014-10-22 18:38:48 -0700 | [diff] [blame] | 668 | } |
Tao Bao | 08fc6be | 2017-03-07 00:56:27 -0800 | [diff] [blame] | 669 | } |
Nick Kralevich | a9ad032 | 2014-10-22 18:38:48 -0700 | [diff] [blame] | 670 | |
Tao Bao | 08fc6be | 2017-03-07 00:56:27 -0800 | [diff] [blame] | 671 | entries.push_back("Back"); |
Elliott Hughes | c049163 | 2015-05-06 12:40:05 -0700 | [diff] [blame] | 672 | |
Tao Bao | 1fe1afe | 2018-05-01 15:56:05 -0700 | [diff] [blame] | 673 | std::vector<std::string> headers{ "Select file to view" }; |
Nick Kralevich | a9ad032 | 2014-10-22 18:38:48 -0700 | [diff] [blame] | 674 | |
Tao Bao | 1fe1afe | 2018-05-01 15:56:05 -0700 | [diff] [blame] | 675 | size_t chosen_item = 0; |
Tao Bao | 08fc6be | 2017-03-07 00:56:27 -0800 | [diff] [blame] | 676 | while (true) { |
Tao Bao | 3aec696 | 2018-04-20 09:24:58 -0700 | [diff] [blame] | 677 | chosen_item = ui->ShowMenu( |
Tao Bao | 1fe1afe | 2018-05-01 15:56:05 -0700 | [diff] [blame] | 678 | headers, entries, chosen_item, true, |
Tao Bao | 3aec696 | 2018-04-20 09:24:58 -0700 | [diff] [blame] | 679 | std::bind(&Device::HandleMenuKey, device, std::placeholders::_1, std::placeholders::_2)); |
Tao Bao | 08fc6be | 2017-03-07 00:56:27 -0800 | [diff] [blame] | 680 | if (entries[chosen_item] == "Back") break; |
Nick Kralevich | a9ad032 | 2014-10-22 18:38:48 -0700 | [diff] [blame] | 681 | |
Tao Bao | 1d156b9 | 2018-05-02 12:43:18 -0700 | [diff] [blame] | 682 | ui->ShowFile(entries[chosen_item]); |
Tao Bao | 08fc6be | 2017-03-07 00:56:27 -0800 | [diff] [blame] | 683 | } |
Nick Kralevich | a9ad032 | 2014-10-22 18:38:48 -0700 | [diff] [blame] | 684 | } |
| 685 | |
Tao Bao | db7e898 | 2017-03-06 23:53:16 -0800 | [diff] [blame] | 686 | static void run_graphics_test() { |
| 687 | // Switch to graphics screen. |
| 688 | ui->ShowText(false); |
Elliott Hughes | 498cda6 | 2016-04-14 16:49:04 -0700 | [diff] [blame] | 689 | |
Tao Bao | db7e898 | 2017-03-06 23:53:16 -0800 | [diff] [blame] | 690 | ui->SetProgressType(RecoveryUI::INDETERMINATE); |
| 691 | ui->SetBackground(RecoveryUI::INSTALLING_UPDATE); |
| 692 | sleep(1); |
Elliott Hughes | 498cda6 | 2016-04-14 16:49:04 -0700 | [diff] [blame] | 693 | |
Tao Bao | db7e898 | 2017-03-06 23:53:16 -0800 | [diff] [blame] | 694 | ui->SetBackground(RecoveryUI::ERROR); |
| 695 | sleep(1); |
Elliott Hughes | 498cda6 | 2016-04-14 16:49:04 -0700 | [diff] [blame] | 696 | |
Tao Bao | db7e898 | 2017-03-06 23:53:16 -0800 | [diff] [blame] | 697 | ui->SetBackground(RecoveryUI::NO_COMMAND); |
| 698 | sleep(1); |
Elliott Hughes | 498cda6 | 2016-04-14 16:49:04 -0700 | [diff] [blame] | 699 | |
Tao Bao | db7e898 | 2017-03-06 23:53:16 -0800 | [diff] [blame] | 700 | ui->SetBackground(RecoveryUI::ERASING); |
| 701 | sleep(1); |
Elliott Hughes | 498cda6 | 2016-04-14 16:49:04 -0700 | [diff] [blame] | 702 | |
Tao Bao | db7e898 | 2017-03-06 23:53:16 -0800 | [diff] [blame] | 703 | // Calling SetBackground() after SetStage() to trigger a redraw. |
| 704 | ui->SetStage(1, 3); |
| 705 | ui->SetBackground(RecoveryUI::INSTALLING_UPDATE); |
| 706 | sleep(1); |
| 707 | ui->SetStage(2, 3); |
| 708 | ui->SetBackground(RecoveryUI::INSTALLING_UPDATE); |
| 709 | sleep(1); |
| 710 | ui->SetStage(3, 3); |
| 711 | ui->SetBackground(RecoveryUI::INSTALLING_UPDATE); |
| 712 | sleep(1); |
Elliott Hughes | 498cda6 | 2016-04-14 16:49:04 -0700 | [diff] [blame] | 713 | |
Tao Bao | db7e898 | 2017-03-06 23:53:16 -0800 | [diff] [blame] | 714 | ui->SetStage(-1, -1); |
| 715 | ui->SetBackground(RecoveryUI::INSTALLING_UPDATE); |
Elliott Hughes | 498cda6 | 2016-04-14 16:49:04 -0700 | [diff] [blame] | 716 | |
Tao Bao | db7e898 | 2017-03-06 23:53:16 -0800 | [diff] [blame] | 717 | ui->SetProgressType(RecoveryUI::DETERMINATE); |
| 718 | ui->ShowProgress(1.0, 10.0); |
| 719 | float fraction = 0.0; |
| 720 | for (size_t i = 0; i < 100; ++i) { |
| 721 | fraction += .01; |
| 722 | ui->SetProgress(fraction); |
| 723 | usleep(100000); |
| 724 | } |
| 725 | |
| 726 | ui->ShowText(true); |
Elliott Hughes | 498cda6 | 2016-04-14 16:49:04 -0700 | [diff] [blame] | 727 | } |
| 728 | |
Tao Bao | cdcf28f | 2016-01-13 15:05:20 -0800 | [diff] [blame] | 729 | // How long (in seconds) we wait for the fuse-provided package file to |
| 730 | // appear, before timing out. |
| 731 | #define SDCARD_INSTALL_TIMEOUT 10 |
| 732 | |
Tao Bao | 145d861 | 2015-03-25 15:51:15 -0700 | [diff] [blame] | 733 | static int apply_from_sdcard(Device* device, bool* wipe_cache) { |
Tao Bao | 682c34b | 2015-04-07 17:16:35 -0700 | [diff] [blame] | 734 | modified_flash = true; |
| 735 | |
Christian Poetzsch | 4ec58a4 | 2015-02-19 10:42:39 +0000 | [diff] [blame] | 736 | if (ensure_path_mounted(SDCARD_ROOT) != 0) { |
| 737 | ui->Print("\n-- Couldn't mount %s.\n", SDCARD_ROOT); |
| 738 | return INSTALL_ERROR; |
| 739 | } |
| 740 | |
Tao Bao | c4a18ef | 2017-02-10 00:13:30 -0800 | [diff] [blame] | 741 | std::string path = browse_directory(SDCARD_ROOT, device); |
| 742 | if (path.empty()) { |
Elliott Hughes | 018ed31 | 2015-04-08 16:51:36 -0700 | [diff] [blame] | 743 | ui->Print("\n-- No package file selected.\n"); |
caozhiyuan | b4effb9 | 2015-06-10 16:46:38 +0800 | [diff] [blame] | 744 | ensure_path_unmounted(SDCARD_ROOT); |
Christian Poetzsch | 4ec58a4 | 2015-02-19 10:42:39 +0000 | [diff] [blame] | 745 | return INSTALL_ERROR; |
| 746 | } |
| 747 | |
Tao Bao | c4a18ef | 2017-02-10 00:13:30 -0800 | [diff] [blame] | 748 | ui->Print("\n-- Install %s ...\n", path.c_str()); |
Christian Poetzsch | 4ec58a4 | 2015-02-19 10:42:39 +0000 | [diff] [blame] | 749 | set_sdcard_update_bootloader_message(); |
Christian Poetzsch | 4ec58a4 | 2015-02-19 10:42:39 +0000 | [diff] [blame] | 750 | |
Tao Bao | cdcf28f | 2016-01-13 15:05:20 -0800 | [diff] [blame] | 751 | // We used to use fuse in a thread as opposed to a process. Since accessing |
| 752 | // through fuse involves going from kernel to userspace to kernel, it leads |
| 753 | // to deadlock when a page fault occurs. (Bug: 26313124) |
| 754 | pid_t child; |
| 755 | if ((child = fork()) == 0) { |
Tao Bao | c4a18ef | 2017-02-10 00:13:30 -0800 | [diff] [blame] | 756 | bool status = start_sdcard_fuse(path.c_str()); |
Tao Bao | cdcf28f | 2016-01-13 15:05:20 -0800 | [diff] [blame] | 757 | |
| 758 | _exit(status ? EXIT_SUCCESS : EXIT_FAILURE); |
| 759 | } |
| 760 | |
| 761 | // FUSE_SIDELOAD_HOST_PATHNAME will start to exist once the fuse in child |
| 762 | // process is ready. |
| 763 | int result = INSTALL_ERROR; |
| 764 | int status; |
| 765 | bool waited = false; |
| 766 | for (int i = 0; i < SDCARD_INSTALL_TIMEOUT; ++i) { |
| 767 | if (waitpid(child, &status, WNOHANG) == -1) { |
| 768 | result = INSTALL_ERROR; |
| 769 | waited = true; |
| 770 | break; |
| 771 | } |
| 772 | |
| 773 | struct stat sb; |
| 774 | if (stat(FUSE_SIDELOAD_HOST_PATHNAME, &sb) == -1) { |
| 775 | if (errno == ENOENT && i < SDCARD_INSTALL_TIMEOUT-1) { |
| 776 | sleep(1); |
| 777 | continue; |
| 778 | } else { |
Tianjie Xu | 7b0ad9c | 2016-08-05 18:00:04 -0700 | [diff] [blame] | 779 | LOG(ERROR) << "Timed out waiting for the fuse-provided package."; |
Tao Bao | cdcf28f | 2016-01-13 15:05:20 -0800 | [diff] [blame] | 780 | result = INSTALL_ERROR; |
| 781 | kill(child, SIGKILL); |
| 782 | break; |
| 783 | } |
| 784 | } |
| 785 | |
Tao Bao | 641fa97 | 2018-04-25 18:59:40 -0700 | [diff] [blame] | 786 | result = install_package(FUSE_SIDELOAD_HOST_PATHNAME, wipe_cache, false, 0 /*retry_count*/); |
Tao Bao | cdcf28f | 2016-01-13 15:05:20 -0800 | [diff] [blame] | 787 | break; |
| 788 | } |
Christian Poetzsch | 4ec58a4 | 2015-02-19 10:42:39 +0000 | [diff] [blame] | 789 | |
Tao Bao | cdcf28f | 2016-01-13 15:05:20 -0800 | [diff] [blame] | 790 | if (!waited) { |
| 791 | // Calling stat() on this magic filename signals the fuse |
| 792 | // filesystem to shut down. |
| 793 | struct stat sb; |
| 794 | stat(FUSE_SIDELOAD_HOST_EXIT_PATHNAME, &sb); |
| 795 | |
| 796 | waitpid(child, &status, 0); |
| 797 | } |
| 798 | |
| 799 | if (!WIFEXITED(status) || WEXITSTATUS(status) != 0) { |
Tianjie Xu | 7b0ad9c | 2016-08-05 18:00:04 -0700 | [diff] [blame] | 800 | LOG(ERROR) << "Error exit from the fuse process: " << WEXITSTATUS(status); |
Tao Bao | cdcf28f | 2016-01-13 15:05:20 -0800 | [diff] [blame] | 801 | } |
| 802 | |
Christian Poetzsch | 4ec58a4 | 2015-02-19 10:42:39 +0000 | [diff] [blame] | 803 | ensure_path_unmounted(SDCARD_ROOT); |
Tao Bao | cdcf28f | 2016-01-13 15:05:20 -0800 | [diff] [blame] | 804 | return result; |
Christian Poetzsch | 4ec58a4 | 2015-02-19 10:42:39 +0000 | [diff] [blame] | 805 | } |
| 806 | |
Tao Bao | 50dd532 | 2017-03-07 14:57:04 -0800 | [diff] [blame] | 807 | // Returns REBOOT, SHUTDOWN, or REBOOT_BOOTLOADER. Returning NO_ACTION means to take the default, |
| 808 | // which is to reboot or shutdown depending on if the --shutdown_after flag was passed to recovery. |
| 809 | static Device::BuiltinAction prompt_and_wait(Device* device, int status) { |
| 810 | for (;;) { |
Jerry Zhang | 2dea53e | 2018-05-02 17:15:03 -0700 | [diff] [blame] | 811 | finish_recovery(device); |
Tao Bao | 50dd532 | 2017-03-07 14:57:04 -0800 | [diff] [blame] | 812 | switch (status) { |
| 813 | case INSTALL_SUCCESS: |
| 814 | case INSTALL_NONE: |
| 815 | ui->SetBackground(RecoveryUI::NO_COMMAND); |
| 816 | break; |
Doug Zongker | 6c8553d | 2012-09-24 10:40:47 -0700 | [diff] [blame] | 817 | |
Tao Bao | 50dd532 | 2017-03-07 14:57:04 -0800 | [diff] [blame] | 818 | case INSTALL_ERROR: |
| 819 | case INSTALL_CORRUPT: |
| 820 | ui->SetBackground(RecoveryUI::ERROR); |
| 821 | break; |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 822 | } |
Tao Bao | 50dd532 | 2017-03-07 14:57:04 -0800 | [diff] [blame] | 823 | ui->SetProgressType(RecoveryUI::EMPTY); |
| 824 | |
Tao Bao | 1fe1afe | 2018-05-01 15:56:05 -0700 | [diff] [blame] | 825 | size_t chosen_item = ui->ShowMenu( |
| 826 | {}, device->GetMenuItems(), 0, false, |
Tao Bao | 3aec696 | 2018-04-20 09:24:58 -0700 | [diff] [blame] | 827 | std::bind(&Device::HandleMenuKey, device, std::placeholders::_1, std::placeholders::_2)); |
Tao Bao | 50dd532 | 2017-03-07 14:57:04 -0800 | [diff] [blame] | 828 | |
| 829 | // Device-specific code may take some action here. It may return one of the core actions |
| 830 | // handled in the switch statement below. |
Tao Bao | 1fe1afe | 2018-05-01 15:56:05 -0700 | [diff] [blame] | 831 | Device::BuiltinAction chosen_action = (chosen_item == static_cast<size_t>(-1)) |
| 832 | ? Device::REBOOT |
| 833 | : device->InvokeMenuItem(chosen_item); |
Tao Bao | 50dd532 | 2017-03-07 14:57:04 -0800 | [diff] [blame] | 834 | |
| 835 | bool should_wipe_cache = false; |
| 836 | switch (chosen_action) { |
| 837 | case Device::NO_ACTION: |
| 838 | break; |
| 839 | |
| 840 | case Device::REBOOT: |
| 841 | case Device::SHUTDOWN: |
| 842 | case Device::REBOOT_BOOTLOADER: |
| 843 | return chosen_action; |
| 844 | |
| 845 | case Device::WIPE_DATA: |
| 846 | if (ui->IsTextVisible()) { |
| 847 | if (ask_to_wipe_data(device)) { |
| 848 | wipe_data(device); |
| 849 | } |
| 850 | } else { |
| 851 | wipe_data(device); |
| 852 | return Device::NO_ACTION; |
| 853 | } |
| 854 | break; |
| 855 | |
| 856 | case Device::WIPE_CACHE: |
| 857 | wipe_cache(ui->IsTextVisible(), device); |
| 858 | if (!ui->IsTextVisible()) return Device::NO_ACTION; |
| 859 | break; |
| 860 | |
| 861 | case Device::APPLY_ADB_SIDELOAD: |
| 862 | case Device::APPLY_SDCARD: |
| 863 | { |
| 864 | bool adb = (chosen_action == Device::APPLY_ADB_SIDELOAD); |
| 865 | if (adb) { |
Tao Bao | 641fa97 | 2018-04-25 18:59:40 -0700 | [diff] [blame] | 866 | status = apply_from_adb(&should_wipe_cache); |
Tao Bao | 50dd532 | 2017-03-07 14:57:04 -0800 | [diff] [blame] | 867 | } else { |
| 868 | status = apply_from_sdcard(device, &should_wipe_cache); |
| 869 | } |
| 870 | |
| 871 | if (status == INSTALL_SUCCESS && should_wipe_cache) { |
| 872 | if (!wipe_cache(false, device)) { |
| 873 | status = INSTALL_ERROR; |
| 874 | } |
| 875 | } |
| 876 | |
| 877 | if (status != INSTALL_SUCCESS) { |
| 878 | ui->SetBackground(RecoveryUI::ERROR); |
| 879 | ui->Print("Installation aborted.\n"); |
Jerry Zhang | 152933a | 2018-05-02 16:56:00 -0700 | [diff] [blame] | 880 | copy_logs(modified_flash, has_cache); |
Tao Bao | 50dd532 | 2017-03-07 14:57:04 -0800 | [diff] [blame] | 881 | } else if (!ui->IsTextVisible()) { |
| 882 | return Device::NO_ACTION; // reboot if logs aren't visible |
| 883 | } else { |
| 884 | ui->Print("\nInstall from %s complete.\n", adb ? "ADB" : "SD card"); |
| 885 | } |
| 886 | } |
| 887 | break; |
| 888 | |
| 889 | case Device::VIEW_RECOVERY_LOGS: |
| 890 | choose_recovery_file(device); |
| 891 | break; |
| 892 | |
| 893 | case Device::RUN_GRAPHICS_TEST: |
| 894 | run_graphics_test(); |
| 895 | break; |
| 896 | |
Tianjie Xu | 29d5575 | 2017-09-20 17:53:46 -0700 | [diff] [blame] | 897 | case Device::RUN_LOCALE_TEST: { |
| 898 | ScreenRecoveryUI* screen_ui = static_cast<ScreenRecoveryUI*>(ui); |
Tao Bao | 39c4918 | 2018-05-07 22:50:33 -0700 | [diff] [blame] | 899 | screen_ui->CheckBackgroundTextImages(); |
Tianjie Xu | 29d5575 | 2017-09-20 17:53:46 -0700 | [diff] [blame] | 900 | break; |
| 901 | } |
Tao Bao | 50dd532 | 2017-03-07 14:57:04 -0800 | [diff] [blame] | 902 | case Device::MOUNT_SYSTEM: |
| 903 | // For a system image built with the root directory (i.e. system_root_image == "true"), we |
| 904 | // mount it to /system_root, and symlink /system to /system_root/system to make adb shell |
| 905 | // work (the symlink is created through the build system). (Bug: 22855115) |
| 906 | if (android::base::GetBoolProperty("ro.build.system_root_image", false)) { |
| 907 | if (ensure_path_mounted_at("/", "/system_root") != -1) { |
| 908 | ui->Print("Mounted /system.\n"); |
| 909 | } |
| 910 | } else { |
| 911 | if (ensure_path_mounted("/system") != -1) { |
| 912 | ui->Print("Mounted /system.\n"); |
| 913 | } |
| 914 | } |
| 915 | break; |
| 916 | } |
| 917 | } |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 918 | } |
| 919 | |
Tao Bao | 99f0d9e | 2016-10-13 12:46:38 -0700 | [diff] [blame] | 920 | static void print_property(const char* key, const char* name, void* /* cookie */) { |
| 921 | printf("%s=%s\n", key, name); |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 922 | } |
| 923 | |
Tao Bao | ac9d94d | 2016-11-03 11:37:15 -0700 | [diff] [blame] | 924 | static std::string load_locale_from_cache() { |
| 925 | if (ensure_path_mounted(LOCALE_FILE) != 0) { |
| 926 | LOG(ERROR) << "Can't mount " << LOCALE_FILE; |
| 927 | return ""; |
Doug Zongker | 02ec6b8 | 2012-08-22 17:26:40 -0700 | [diff] [blame] | 928 | } |
Tao Bao | ac9d94d | 2016-11-03 11:37:15 -0700 | [diff] [blame] | 929 | |
| 930 | std::string content; |
| 931 | if (!android::base::ReadFileToString(LOCALE_FILE, &content)) { |
| 932 | PLOG(ERROR) << "Can't read " << LOCALE_FILE; |
| 933 | return ""; |
| 934 | } |
| 935 | |
| 936 | return android::base::Trim(content); |
Doug Zongker | 02ec6b8 | 2012-08-22 17:26:40 -0700 | [diff] [blame] | 937 | } |
| 938 | |
Tao Bao | ac9d94d | 2016-11-03 11:37:15 -0700 | [diff] [blame] | 939 | void ui_print(const char* format, ...) { |
| 940 | std::string buffer; |
Doug Zongker | 7c3ae45 | 2013-05-14 11:03:02 -0700 | [diff] [blame] | 941 | va_list ap; |
| 942 | va_start(ap, format); |
Tao Bao | ac9d94d | 2016-11-03 11:37:15 -0700 | [diff] [blame] | 943 | android::base::StringAppendV(&buffer, format, ap); |
Doug Zongker | 7c3ae45 | 2013-05-14 11:03:02 -0700 | [diff] [blame] | 944 | va_end(ap); |
| 945 | |
Tao Bao | ac9d94d | 2016-11-03 11:37:15 -0700 | [diff] [blame] | 946 | if (ui != nullptr) { |
| 947 | ui->Print("%s", buffer.c_str()); |
Doug Zongker | 7c3ae45 | 2013-05-14 11:03:02 -0700 | [diff] [blame] | 948 | } else { |
Tao Bao | ac9d94d | 2016-11-03 11:37:15 -0700 | [diff] [blame] | 949 | fputs(buffer.c_str(), stdout); |
Doug Zongker | 7c3ae45 | 2013-05-14 11:03:02 -0700 | [diff] [blame] | 950 | } |
| 951 | } |
| 952 | |
Tao Bao | f2ea6d7 | 2018-04-26 10:40:36 -0700 | [diff] [blame] | 953 | static bool is_battery_ok(int* required_battery_level) { |
| 954 | struct healthd_config healthd_config = { |
| 955 | .batteryStatusPath = android::String8(android::String8::kEmptyString), |
| 956 | .batteryHealthPath = android::String8(android::String8::kEmptyString), |
| 957 | .batteryPresentPath = android::String8(android::String8::kEmptyString), |
| 958 | .batteryCapacityPath = android::String8(android::String8::kEmptyString), |
| 959 | .batteryVoltagePath = android::String8(android::String8::kEmptyString), |
| 960 | .batteryTemperaturePath = android::String8(android::String8::kEmptyString), |
| 961 | .batteryTechnologyPath = android::String8(android::String8::kEmptyString), |
| 962 | .batteryCurrentNowPath = android::String8(android::String8::kEmptyString), |
| 963 | .batteryCurrentAvgPath = android::String8(android::String8::kEmptyString), |
| 964 | .batteryChargeCounterPath = android::String8(android::String8::kEmptyString), |
| 965 | .batteryFullChargePath = android::String8(android::String8::kEmptyString), |
| 966 | .batteryCycleCountPath = android::String8(android::String8::kEmptyString), |
| 967 | .energyCounter = nullptr, |
| 968 | .boot_min_cap = 0, |
| 969 | .screen_on = nullptr |
| 970 | }; |
| 971 | healthd_board_init(&healthd_config); |
Yabin Cui | 99281df | 2016-02-17 12:21:52 -0800 | [diff] [blame] | 972 | |
Tao Bao | f2ea6d7 | 2018-04-26 10:40:36 -0700 | [diff] [blame] | 973 | android::BatteryMonitor monitor; |
| 974 | monitor.init(&healthd_config); |
Yabin Cui | 99281df | 2016-02-17 12:21:52 -0800 | [diff] [blame] | 975 | |
Tao Bao | f2ea6d7 | 2018-04-26 10:40:36 -0700 | [diff] [blame] | 976 | static constexpr int BATTERY_READ_TIMEOUT_IN_SEC = 10; |
| 977 | int wait_second = 0; |
| 978 | while (true) { |
| 979 | int charge_status = monitor.getChargeStatus(); |
| 980 | // Treat unknown status as charged. |
| 981 | bool charged = (charge_status != android::BATTERY_STATUS_DISCHARGING && |
| 982 | charge_status != android::BATTERY_STATUS_NOT_CHARGING); |
| 983 | android::BatteryProperty capacity; |
| 984 | android::status_t status = monitor.getProperty(android::BATTERY_PROP_CAPACITY, &capacity); |
| 985 | ui_print("charge_status %d, charged %d, status %d, capacity %" PRId64 "\n", charge_status, |
| 986 | charged, status, capacity.valueInt64); |
| 987 | // At startup, the battery drivers in devices like N5X/N6P take some time to load |
| 988 | // the battery profile. Before the load finishes, it reports value 50 as a fake |
| 989 | // capacity. BATTERY_READ_TIMEOUT_IN_SEC is set that the battery drivers are expected |
| 990 | // to finish loading the battery profile earlier than 10 seconds after kernel startup. |
| 991 | if (status == 0 && capacity.valueInt64 == 50) { |
| 992 | if (wait_second < BATTERY_READ_TIMEOUT_IN_SEC) { |
| 993 | sleep(1); |
| 994 | wait_second++; |
| 995 | continue; |
| 996 | } |
Yabin Cui | 99281df | 2016-02-17 12:21:52 -0800 | [diff] [blame] | 997 | } |
Tao Bao | f2ea6d7 | 2018-04-26 10:40:36 -0700 | [diff] [blame] | 998 | // If we can't read battery percentage, it may be a device without battery. In this situation, |
| 999 | // use 100 as a fake battery percentage. |
| 1000 | if (status != 0) { |
| 1001 | capacity.valueInt64 = 100; |
| 1002 | } |
| 1003 | |
| 1004 | // GmsCore enters recovery mode to install package when having enough battery percentage. |
| 1005 | // Normally, the threshold is 40% without charger and 20% with charger. So we should check |
| 1006 | // battery with a slightly lower limitation. |
| 1007 | static constexpr int BATTERY_OK_PERCENTAGE = 20; |
| 1008 | static constexpr int BATTERY_WITH_CHARGER_OK_PERCENTAGE = 15; |
| 1009 | *required_battery_level = charged ? BATTERY_WITH_CHARGER_OK_PERCENTAGE : BATTERY_OK_PERCENTAGE; |
| 1010 | return capacity.valueInt64 >= *required_battery_level; |
| 1011 | } |
Yabin Cui | 99281df | 2016-02-17 12:21:52 -0800 | [diff] [blame] | 1012 | } |
| 1013 | |
Tianjie Xu | 99b73be | 2017-11-28 17:23:06 -0800 | [diff] [blame] | 1014 | // Set the retry count to |retry_count| in BCB. |
Tianjie Xu | 72449c9 | 2017-05-16 18:07:31 -0700 | [diff] [blame] | 1015 | static void set_retry_bootloader_message(int retry_count, const std::vector<std::string>& args) { |
| 1016 | std::vector<std::string> options; |
| 1017 | for (const auto& arg : args) { |
| 1018 | if (!android::base::StartsWith(arg, "--retry_count")) { |
| 1019 | options.push_back(arg); |
Tianjie Xu | 3c62b67 | 2016-02-05 18:25:58 -0800 | [diff] [blame] | 1020 | } |
Tianjie Xu | 72449c9 | 2017-05-16 18:07:31 -0700 | [diff] [blame] | 1021 | } |
Tianjie Xu | 3c62b67 | 2016-02-05 18:25:58 -0800 | [diff] [blame] | 1022 | |
Tianjie Xu | 99b73be | 2017-11-28 17:23:06 -0800 | [diff] [blame] | 1023 | // Update the retry counter in BCB. |
| 1024 | options.push_back(android::base::StringPrintf("--retry_count=%d", retry_count)); |
Tianjie Xu | 72449c9 | 2017-05-16 18:07:31 -0700 | [diff] [blame] | 1025 | std::string err; |
| 1026 | if (!update_bootloader_message(options, &err)) { |
| 1027 | LOG(ERROR) << err; |
| 1028 | } |
Tianjie Xu | 3c62b67 | 2016-02-05 18:25:58 -0800 | [diff] [blame] | 1029 | } |
| 1030 | |
Tianjie Xu | 06e57ac | 2016-07-11 14:04:08 -0700 | [diff] [blame] | 1031 | static bool bootreason_in_blacklist() { |
Tao Bao | efc3559 | 2017-01-08 22:45:47 -0800 | [diff] [blame] | 1032 | std::string bootreason = android::base::GetProperty("ro.boot.bootreason", ""); |
| 1033 | if (!bootreason.empty()) { |
Tao Bao | aac9d9f | 2018-04-29 23:38:59 -0700 | [diff] [blame] | 1034 | // More bootreasons can be found in "system/core/bootstat/bootstat.cpp". |
| 1035 | static const std::vector<std::string> kBootreasonBlacklist{ |
| 1036 | "kernel_panic", |
| 1037 | "Panic", |
| 1038 | }; |
| 1039 | for (const auto& str : kBootreasonBlacklist) { |
| 1040 | if (android::base::EqualsIgnoreCase(str, bootreason)) return true; |
Tianjie Xu | 06e57ac | 2016-07-11 14:04:08 -0700 | [diff] [blame] | 1041 | } |
Tao Bao | efc3559 | 2017-01-08 22:45:47 -0800 | [diff] [blame] | 1042 | } |
| 1043 | return false; |
Tianjie Xu | 06e57ac | 2016-07-11 14:04:08 -0700 | [diff] [blame] | 1044 | } |
| 1045 | |
Tao Bao | 641fa97 | 2018-04-25 18:59:40 -0700 | [diff] [blame] | 1046 | static void log_failure_code(ErrorCode code, const std::string& update_package) { |
| 1047 | std::vector<std::string> log_buffer = { |
| 1048 | update_package, |
| 1049 | "0", // install result |
| 1050 | "error: " + std::to_string(code), |
| 1051 | }; |
| 1052 | std::string log_content = android::base::Join(log_buffer, "\n"); |
| 1053 | const std::string& install_file = Paths::Get().temporary_install_file(); |
| 1054 | if (!android::base::WriteStringToFile(log_content, install_file)) { |
| 1055 | PLOG(ERROR) << "Failed to write " << install_file; |
| 1056 | } |
Tianjie Xu | 06e57ac | 2016-07-11 14:04:08 -0700 | [diff] [blame] | 1057 | |
Tao Bao | 641fa97 | 2018-04-25 18:59:40 -0700 | [diff] [blame] | 1058 | // Also write the info into last_log. |
| 1059 | LOG(INFO) << log_content; |
Tianjie Xu | 06e57ac | 2016-07-11 14:04:08 -0700 | [diff] [blame] | 1060 | } |
| 1061 | |
Tao Bao | 6d99d4b | 2018-04-25 16:47:04 -0700 | [diff] [blame] | 1062 | int start_recovery(int argc, char** argv) { |
Tianjie Xu | 99b73be | 2017-11-28 17:23:06 -0800 | [diff] [blame] | 1063 | time_t start = time(nullptr); |
| 1064 | |
Tianjie Xu | 99b73be | 2017-11-28 17:23:06 -0800 | [diff] [blame] | 1065 | printf("Starting recovery (pid %d) on %s", getpid(), ctime(&start)); |
| 1066 | |
| 1067 | load_volume_table(); |
| 1068 | has_cache = volume_for_mount_point(CACHE_ROOT) != nullptr; |
| 1069 | |
| 1070 | std::vector<std::string> args = get_args(argc, argv); |
| 1071 | std::vector<char*> args_to_parse(args.size()); |
| 1072 | std::transform(args.cbegin(), args.cend(), args_to_parse.begin(), |
| 1073 | [](const std::string& arg) { return const_cast<char*>(arg.c_str()); }); |
| 1074 | |
Tao Bao | f9f1734 | 2018-04-27 10:44:04 -0700 | [diff] [blame] | 1075 | static constexpr struct option OPTIONS[] = { |
| 1076 | { "just_exit", no_argument, nullptr, 'x' }, |
| 1077 | { "locale", required_argument, nullptr, 0 }, |
| 1078 | { "prompt_and_wipe_data", no_argument, nullptr, 0 }, |
| 1079 | { "reason", required_argument, nullptr, 0 }, |
| 1080 | { "retry_count", required_argument, nullptr, 0 }, |
| 1081 | { "security", no_argument, nullptr, 0 }, |
| 1082 | { "show_text", no_argument, nullptr, 't' }, |
| 1083 | { "shutdown_after", no_argument, nullptr, 0 }, |
| 1084 | { "sideload", no_argument, nullptr, 0 }, |
| 1085 | { "sideload_auto_reboot", no_argument, nullptr, 0 }, |
| 1086 | { "update_package", required_argument, nullptr, 0 }, |
| 1087 | { "wipe_ab", no_argument, nullptr, 0 }, |
| 1088 | { "wipe_cache", no_argument, nullptr, 0 }, |
| 1089 | { "wipe_data", no_argument, nullptr, 0 }, |
| 1090 | { "wipe_package_size", required_argument, nullptr, 0 }, |
| 1091 | { nullptr, 0, nullptr, 0 }, |
| 1092 | }; |
| 1093 | |
Tianjie Xu | 99b73be | 2017-11-28 17:23:06 -0800 | [diff] [blame] | 1094 | const char* update_package = nullptr; |
| 1095 | bool should_wipe_data = false; |
| 1096 | bool should_prompt_and_wipe_data = false; |
| 1097 | bool should_wipe_cache = false; |
| 1098 | bool should_wipe_ab = false; |
| 1099 | size_t wipe_package_size = 0; |
| 1100 | bool show_text = false; |
| 1101 | bool sideload = false; |
| 1102 | bool sideload_auto_reboot = false; |
| 1103 | bool just_exit = false; |
| 1104 | bool shutdown_after = false; |
| 1105 | int retry_count = 0; |
| 1106 | bool security_update = false; |
Jerry Zhang | 2dea53e | 2018-05-02 17:15:03 -0700 | [diff] [blame] | 1107 | std::string locale; |
Tianjie Xu | 99b73be | 2017-11-28 17:23:06 -0800 | [diff] [blame] | 1108 | |
| 1109 | int arg; |
| 1110 | int option_index; |
| 1111 | while ((arg = getopt_long(args_to_parse.size(), args_to_parse.data(), "", OPTIONS, |
| 1112 | &option_index)) != -1) { |
| 1113 | switch (arg) { |
Tianjie Xu | 99b73be | 2017-11-28 17:23:06 -0800 | [diff] [blame] | 1114 | case 't': |
| 1115 | show_text = true; |
| 1116 | break; |
Tianjie Xu | 99b73be | 2017-11-28 17:23:06 -0800 | [diff] [blame] | 1117 | case 'x': |
| 1118 | just_exit = true; |
| 1119 | break; |
Tianjie Xu | 99b73be | 2017-11-28 17:23:06 -0800 | [diff] [blame] | 1120 | case 0: { |
| 1121 | std::string option = OPTIONS[option_index].name; |
Tao Bao | f9f1734 | 2018-04-27 10:44:04 -0700 | [diff] [blame] | 1122 | if (option == "locale") { |
| 1123 | locale = optarg; |
Tianjie Xu | 99b73be | 2017-11-28 17:23:06 -0800 | [diff] [blame] | 1124 | } else if (option == "prompt_and_wipe_data") { |
| 1125 | should_prompt_and_wipe_data = true; |
Tao Bao | f9f1734 | 2018-04-27 10:44:04 -0700 | [diff] [blame] | 1126 | } else if (option == "reason") { |
| 1127 | reason = optarg; |
| 1128 | } else if (option == "retry_count") { |
| 1129 | android::base::ParseInt(optarg, &retry_count, 0); |
| 1130 | } else if (option == "security") { |
| 1131 | security_update = true; |
| 1132 | } else if (option == "sideload") { |
| 1133 | sideload = true; |
| 1134 | } else if (option == "sideload_auto_reboot") { |
| 1135 | sideload = true; |
| 1136 | sideload_auto_reboot = true; |
| 1137 | } else if (option == "shutdown_after") { |
| 1138 | shutdown_after = true; |
| 1139 | } else if (option == "update_package") { |
| 1140 | update_package = optarg; |
| 1141 | } else if (option == "wipe_ab") { |
| 1142 | should_wipe_ab = true; |
| 1143 | } else if (option == "wipe_cache") { |
| 1144 | should_wipe_cache = true; |
| 1145 | } else if (option == "wipe_data") { |
| 1146 | should_wipe_data = true; |
| 1147 | } else if (option == "wipe_package_size") { |
| 1148 | android::base::ParseUint(optarg, &wipe_package_size); |
Tianjie Xu | 99b73be | 2017-11-28 17:23:06 -0800 | [diff] [blame] | 1149 | } |
| 1150 | break; |
| 1151 | } |
| 1152 | case '?': |
| 1153 | LOG(ERROR) << "Invalid command argument"; |
| 1154 | continue; |
Doug Zongker | 9270a20 | 2012-01-09 15:16:13 -0800 | [diff] [blame] | 1155 | } |
Tianjie Xu | 99b73be | 2017-11-28 17:23:06 -0800 | [diff] [blame] | 1156 | } |
Doug Zongker | 9270a20 | 2012-01-09 15:16:13 -0800 | [diff] [blame] | 1157 | |
Tianjie Xu | 99b73be | 2017-11-28 17:23:06 -0800 | [diff] [blame] | 1158 | if (locale.empty()) { |
| 1159 | if (has_cache) { |
| 1160 | locale = load_locale_from_cache(); |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1161 | } |
| 1162 | |
Tao Bao | ac9d94d | 2016-11-03 11:37:15 -0700 | [diff] [blame] | 1163 | if (locale.empty()) { |
Tao Bao | aac9d9f | 2018-04-29 23:38:59 -0700 | [diff] [blame] | 1164 | static constexpr const char* DEFAULT_LOCALE = "en-US"; |
Tianjie Xu | 99b73be | 2017-11-28 17:23:06 -0800 | [diff] [blame] | 1165 | locale = DEFAULT_LOCALE; |
Doug Zongker | 02ec6b8 | 2012-08-22 17:26:40 -0700 | [diff] [blame] | 1166 | } |
Tianjie Xu | 99b73be | 2017-11-28 17:23:06 -0800 | [diff] [blame] | 1167 | } |
Tao Bao | ac9d94d | 2016-11-03 11:37:15 -0700 | [diff] [blame] | 1168 | |
Tianjie Xu | 99b73be | 2017-11-28 17:23:06 -0800 | [diff] [blame] | 1169 | printf("locale is [%s]\n", locale.c_str()); |
| 1170 | printf("stage is [%s]\n", stage.c_str()); |
| 1171 | printf("reason is [%s]\n", reason); |
Doug Zongker | 02ec6b8 | 2012-08-22 17:26:40 -0700 | [diff] [blame] | 1172 | |
Tianjie Xu | 99b73be | 2017-11-28 17:23:06 -0800 | [diff] [blame] | 1173 | Device* device = make_device(); |
| 1174 | if (android::base::GetBoolProperty("ro.boot.quiescent", false)) { |
| 1175 | printf("Quiescent recovery mode.\n"); |
| 1176 | ui = new StubRecoveryUI(); |
| 1177 | } else { |
| 1178 | ui = device->GetUI(); |
| 1179 | |
| 1180 | if (!ui->Init(locale)) { |
| 1181 | printf("Failed to initialize UI, use stub UI instead.\n"); |
| 1182 | ui = new StubRecoveryUI(); |
| 1183 | } |
| 1184 | } |
Jerry Zhang | 2dea53e | 2018-05-02 17:15:03 -0700 | [diff] [blame] | 1185 | device->SetUI(ui); |
Tianjie Xu | 99b73be | 2017-11-28 17:23:06 -0800 | [diff] [blame] | 1186 | |
| 1187 | // Set background string to "installing security update" for security update, |
| 1188 | // otherwise set it to "installing system update". |
| 1189 | ui->SetSystemUpdateText(security_update); |
| 1190 | |
| 1191 | int st_cur, st_max; |
| 1192 | if (!stage.empty() && sscanf(stage.c_str(), "%d/%d", &st_cur, &st_max) == 2) { |
| 1193 | ui->SetStage(st_cur, st_max); |
| 1194 | } |
| 1195 | |
| 1196 | ui->SetBackground(RecoveryUI::NONE); |
| 1197 | if (show_text) ui->ShowText(true); |
| 1198 | |
| 1199 | sehandle = selinux_android_file_context_handle(); |
| 1200 | selinux_android_set_sehandle(sehandle); |
| 1201 | if (!sehandle) { |
| 1202 | ui->Print("Warning: No file_contexts\n"); |
| 1203 | } |
| 1204 | |
| 1205 | device->StartRecovery(); |
| 1206 | |
| 1207 | printf("Command:"); |
| 1208 | for (const auto& arg : args) { |
| 1209 | printf(" \"%s\"", arg.c_str()); |
| 1210 | } |
| 1211 | printf("\n\n"); |
| 1212 | |
| 1213 | property_list(print_property, nullptr); |
| 1214 | printf("\n"); |
| 1215 | |
| 1216 | ui->Print("Supported API: %d\n", kRecoveryApiVersion); |
| 1217 | |
| 1218 | int status = INSTALL_SUCCESS; |
| 1219 | |
| 1220 | if (update_package != nullptr) { |
| 1221 | // It's not entirely true that we will modify the flash. But we want |
| 1222 | // to log the update attempt since update_package is non-NULL. |
| 1223 | modified_flash = true; |
| 1224 | |
Tao Bao | f2ea6d7 | 2018-04-26 10:40:36 -0700 | [diff] [blame] | 1225 | int required_battery_level; |
| 1226 | if (retry_count == 0 && !is_battery_ok(&required_battery_level)) { |
| 1227 | ui->Print("battery capacity is not enough for installing package: %d%% needed\n", |
| 1228 | required_battery_level); |
Tianjie Xu | 99b73be | 2017-11-28 17:23:06 -0800 | [diff] [blame] | 1229 | // Log the error code to last_install when installation skips due to |
| 1230 | // low battery. |
| 1231 | log_failure_code(kLowBattery, update_package); |
| 1232 | status = INSTALL_SKIPPED; |
Tianjie Xu | a6f49bd | 2018-03-26 14:32:11 -0700 | [diff] [blame] | 1233 | } else if (retry_count == 0 && bootreason_in_blacklist()) { |
Tianjie Xu | 99b73be | 2017-11-28 17:23:06 -0800 | [diff] [blame] | 1234 | // Skip update-on-reboot when bootreason is kernel_panic or similar |
| 1235 | ui->Print("bootreason is in the blacklist; skip OTA installation\n"); |
| 1236 | log_failure_code(kBootreasonInBlacklist, update_package); |
| 1237 | status = INSTALL_SKIPPED; |
Dmitri Plotnikov | 8706a98 | 2017-04-18 08:28:26 -0700 | [diff] [blame] | 1238 | } else { |
Tianjie Xu | 99b73be | 2017-11-28 17:23:06 -0800 | [diff] [blame] | 1239 | // It's a fresh update. Initialize the retry_count in the BCB to 1; therefore we can later |
| 1240 | // identify the interrupted update due to unexpected reboots. |
| 1241 | if (retry_count == 0) { |
| 1242 | set_retry_bootloader_message(retry_count + 1, args); |
Tao Bao | 7022f33 | 2017-07-25 09:52:36 -0700 | [diff] [blame] | 1243 | } |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1244 | |
Tao Bao | 641fa97 | 2018-04-25 18:59:40 -0700 | [diff] [blame] | 1245 | status = install_package(update_package, &should_wipe_cache, true, retry_count); |
Tianjie Xu | 99b73be | 2017-11-28 17:23:06 -0800 | [diff] [blame] | 1246 | if (status == INSTALL_SUCCESS && should_wipe_cache) { |
| 1247 | wipe_cache(false, device); |
| 1248 | } |
| 1249 | if (status != INSTALL_SUCCESS) { |
| 1250 | ui->Print("Installation aborted.\n"); |
Tao Bao | aac9d9f | 2018-04-29 23:38:59 -0700 | [diff] [blame] | 1251 | |
| 1252 | // When I/O error or bspatch/imgpatch error happens, reboot and retry installation |
| 1253 | // RETRY_LIMIT times before we abandon this OTA update. |
| 1254 | static constexpr int RETRY_LIMIT = 4; |
Tianjie Xu | 99b73be | 2017-11-28 17:23:06 -0800 | [diff] [blame] | 1255 | if (status == INSTALL_RETRY && retry_count < RETRY_LIMIT) { |
Jerry Zhang | 152933a | 2018-05-02 16:56:00 -0700 | [diff] [blame] | 1256 | copy_logs(modified_flash, has_cache); |
Tianjie Xu | 99b73be | 2017-11-28 17:23:06 -0800 | [diff] [blame] | 1257 | retry_count += 1; |
| 1258 | set_retry_bootloader_message(retry_count, args); |
| 1259 | // Print retry count on screen. |
| 1260 | ui->Print("Retry attempt %d\n", retry_count); |
| 1261 | |
| 1262 | // Reboot and retry the update |
| 1263 | if (!reboot("reboot,recovery")) { |
| 1264 | ui->Print("Reboot failed\n"); |
| 1265 | } else { |
| 1266 | while (true) { |
| 1267 | pause(); |
| 1268 | } |
| 1269 | } |
Tianjie Xu | d9d1629 | 2017-04-20 18:08:21 -0700 | [diff] [blame] | 1270 | } |
Tianjie Xu | 99b73be | 2017-11-28 17:23:06 -0800 | [diff] [blame] | 1271 | // If this is an eng or userdebug build, then automatically |
| 1272 | // turn the text display on if the script fails so the error |
| 1273 | // message is visible. |
| 1274 | if (is_ro_debuggable()) { |
| 1275 | ui->ShowText(true); |
Tao Bao | c679f93 | 2015-03-30 09:43:49 -0700 | [diff] [blame] | 1276 | } |
Tianjie Xu | 99b73be | 2017-11-28 17:23:06 -0800 | [diff] [blame] | 1277 | } |
Doug Zongker | 8674a72 | 2010-09-15 11:08:23 -0700 | [diff] [blame] | 1278 | } |
Tianjie Xu | 99b73be | 2017-11-28 17:23:06 -0800 | [diff] [blame] | 1279 | } else if (should_wipe_data) { |
| 1280 | if (!wipe_data(device)) { |
| 1281 | status = INSTALL_ERROR; |
Doug Zongker | b1d1263 | 2014-03-18 10:32:12 -0700 | [diff] [blame] | 1282 | } |
Tianjie Xu | 99b73be | 2017-11-28 17:23:06 -0800 | [diff] [blame] | 1283 | } else if (should_prompt_and_wipe_data) { |
| 1284 | ui->ShowText(true); |
| 1285 | ui->SetBackground(RecoveryUI::ERROR); |
| 1286 | if (!prompt_and_wipe_data(device)) { |
| 1287 | status = INSTALL_ERROR; |
Tao Bao | 7523863 | 2015-05-27 14:46:17 -0700 | [diff] [blame] | 1288 | } |
Tianjie Xu | 99b73be | 2017-11-28 17:23:06 -0800 | [diff] [blame] | 1289 | ui->ShowText(false); |
| 1290 | } else if (should_wipe_cache) { |
| 1291 | if (!wipe_cache(false, device)) { |
| 1292 | status = INSTALL_ERROR; |
| 1293 | } |
| 1294 | } else if (should_wipe_ab) { |
| 1295 | if (!wipe_ab_device(wipe_package_size)) { |
| 1296 | status = INSTALL_ERROR; |
| 1297 | } |
| 1298 | } else if (sideload) { |
| 1299 | // 'adb reboot sideload' acts the same as user presses key combinations |
| 1300 | // to enter the sideload mode. When 'sideload-auto-reboot' is used, text |
| 1301 | // display will NOT be turned on by default. And it will reboot after |
| 1302 | // sideload finishes even if there are errors. Unless one turns on the |
| 1303 | // text display during the installation. This is to enable automated |
| 1304 | // testing. |
| 1305 | if (!sideload_auto_reboot) { |
| 1306 | ui->ShowText(true); |
| 1307 | } |
Tao Bao | 641fa97 | 2018-04-25 18:59:40 -0700 | [diff] [blame] | 1308 | status = apply_from_adb(&should_wipe_cache); |
Tianjie Xu | 99b73be | 2017-11-28 17:23:06 -0800 | [diff] [blame] | 1309 | if (status == INSTALL_SUCCESS && should_wipe_cache) { |
| 1310 | if (!wipe_cache(false, device)) { |
| 1311 | status = INSTALL_ERROR; |
| 1312 | } |
| 1313 | } |
| 1314 | ui->Print("\nInstall from ADB complete (status: %d).\n", status); |
| 1315 | if (sideload_auto_reboot) { |
| 1316 | ui->Print("Rebooting automatically.\n"); |
| 1317 | } |
| 1318 | } else if (!just_exit) { |
| 1319 | // If this is an eng or userdebug build, automatically turn on the text display if no command |
| 1320 | // is specified. Note that this should be called before setting the background to avoid |
| 1321 | // flickering the background image. |
| 1322 | if (is_ro_debuggable()) { |
| 1323 | ui->ShowText(true); |
| 1324 | } |
| 1325 | status = INSTALL_NONE; // No command specified |
| 1326 | ui->SetBackground(RecoveryUI::NO_COMMAND); |
| 1327 | } |
| 1328 | |
| 1329 | if (status == INSTALL_ERROR || status == INSTALL_CORRUPT) { |
| 1330 | ui->SetBackground(RecoveryUI::ERROR); |
| 1331 | if (!ui->IsTextVisible()) { |
| 1332 | sleep(5); |
| 1333 | } |
| 1334 | } |
| 1335 | |
| 1336 | Device::BuiltinAction after = shutdown_after ? Device::SHUTDOWN : Device::REBOOT; |
| 1337 | // 1. If the recovery menu is visible, prompt and wait for commands. |
| 1338 | // 2. If the state is INSTALL_NONE, wait for commands. (i.e. In user build, manually reboot into |
| 1339 | // recovery to sideload a package.) |
| 1340 | // 3. sideload_auto_reboot is an option only available in user-debug build, reboot the device |
| 1341 | // without waiting. |
| 1342 | // 4. In all other cases, reboot the device. Therefore, normal users will observe the device |
| 1343 | // reboot after it shows the "error" screen for 5s. |
| 1344 | if ((status == INSTALL_NONE && !sideload_auto_reboot) || ui->IsTextVisible()) { |
| 1345 | Device::BuiltinAction temp = prompt_and_wait(device, status); |
| 1346 | if (temp != Device::NO_ACTION) { |
| 1347 | after = temp; |
| 1348 | } |
| 1349 | } |
| 1350 | |
| 1351 | // Save logs and clean up before rebooting or shutting down. |
Jerry Zhang | 2dea53e | 2018-05-02 17:15:03 -0700 | [diff] [blame] | 1352 | finish_recovery(device); |
Tianjie Xu | 99b73be | 2017-11-28 17:23:06 -0800 | [diff] [blame] | 1353 | |
| 1354 | switch (after) { |
| 1355 | case Device::SHUTDOWN: |
| 1356 | ui->Print("Shutting down...\n"); |
| 1357 | android::base::SetProperty(ANDROID_RB_PROPERTY, "shutdown,"); |
| 1358 | break; |
| 1359 | |
| 1360 | case Device::REBOOT_BOOTLOADER: |
| 1361 | ui->Print("Rebooting to bootloader...\n"); |
| 1362 | android::base::SetProperty(ANDROID_RB_PROPERTY, "reboot,bootloader"); |
| 1363 | break; |
| 1364 | |
| 1365 | default: |
| 1366 | ui->Print("Rebooting...\n"); |
| 1367 | reboot("reboot,"); |
| 1368 | break; |
| 1369 | } |
| 1370 | while (true) { |
| 1371 | pause(); |
| 1372 | } |
| 1373 | // Should be unreachable. |
| 1374 | return EXIT_SUCCESS; |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1375 | } |