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