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