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