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