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 */ |
Elliott Hughes | 4bbd5bf | 2016-04-01 18:24:39 -0700 | [diff] [blame] | 56 | #include <selinux/label.h> |
| 57 | #include <selinux/selinux.h> |
Tianjie Xu | 8cf5c8f | 2016-09-08 20:10:11 -0700 | [diff] [blame] | 58 | #include <ziparchive/zip_archive.h> |
Yabin Cui | 99281df | 2016-02-17 12:21:52 -0800 | [diff] [blame] | 59 | |
Tao Bao | 7523863 | 2015-05-27 14:46:17 -0700 | [diff] [blame] | 60 | #include "adb_install.h" |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 61 | #include "common.h" |
Tao Bao | 7523863 | 2015-05-27 14:46:17 -0700 | [diff] [blame] | 62 | #include "device.h" |
Tianjie Xu | 1625583 | 2016-04-30 11:49:59 -0700 | [diff] [blame] | 63 | #include "error_code.h" |
Tao Bao | 7523863 | 2015-05-27 14:46:17 -0700 | [diff] [blame] | 64 | #include "fuse_sdcard_provider.h" |
| 65 | #include "fuse_sideload.h" |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 66 | #include "install.h" |
Josh Gao | acb2a2f | 2016-08-26 18:24:34 -0700 | [diff] [blame] | 67 | #include "minadbd/minadbd.h" |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 68 | #include "minui/minui.h" |
Tianjie Xu | 8cf5c8f | 2016-09-08 20:10:11 -0700 | [diff] [blame] | 69 | #include "otautil/DirUtil.h" |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 70 | #include "roots.h" |
Tianjie Xu | e113e4d | 2016-10-21 17:46:13 -0700 | [diff] [blame] | 71 | #include "rotate_logs.h" |
Doug Zongker | 211aebc | 2011-10-28 15:13:10 -0700 | [diff] [blame] | 72 | #include "screen_ui.h" |
Sen Jiang | d530449 | 2016-12-09 16:20:49 -0800 | [diff] [blame] | 73 | #include "stub_ui.h" |
Tianjie Xu | e113e4d | 2016-10-21 17:46:13 -0700 | [diff] [blame] | 74 | #include "ui.h" |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 75 | |
| 76 | static const struct option OPTIONS[] = { |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 77 | { "update_package", required_argument, NULL, 'u' }, |
Tianjie Xu | 3c62b67 | 2016-02-05 18:25:58 -0800 | [diff] [blame] | 78 | { "retry_count", required_argument, NULL, 'n' }, |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 79 | { "wipe_data", no_argument, NULL, 'w' }, |
| 80 | { "wipe_cache", no_argument, NULL, 'c' }, |
Doug Zongker | 4bc9806 | 2010-09-03 11:00:13 -0700 | [diff] [blame] | 81 | { "show_text", no_argument, NULL, 't' }, |
Tao Bao | c679f93 | 2015-03-30 09:43:49 -0700 | [diff] [blame] | 82 | { "sideload", no_argument, NULL, 's' }, |
| 83 | { "sideload_auto_reboot", no_argument, NULL, 'a' }, |
Doug Zongker | e5d5ac7 | 2012-04-12 11:01:22 -0700 | [diff] [blame] | 84 | { "just_exit", no_argument, NULL, 'x' }, |
Doug Zongker | 02ec6b8 | 2012-08-22 17:26:40 -0700 | [diff] [blame] | 85 | { "locale", required_argument, NULL, 'l' }, |
Doug Zongker | c87bab1 | 2013-11-25 13:53:25 -0800 | [diff] [blame] | 86 | { "stages", required_argument, NULL, 'g' }, |
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"; |
| 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; |
| 132 | const char* stage = nullptr; |
| 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 | } |
| 312 | stage = strndup(boot.stage, sizeof(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); |
| 464 | chown(LOG_FILE, 1000, 1000); // system user |
Tao Bao | f012432 | 2015-04-11 02:04:11 +0000 | [diff] [blame] | 465 | chmod(LAST_KMSG_FILE, 0600); |
| 466 | chown(LAST_KMSG_FILE, 1000, 1000); // system user |
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 | |
Doug Zongker | f93d816 | 2009-09-22 15:16:02 -0700 | [diff] [blame] | 611 | static int |
Doug Zongker | 28ce47c | 2011-10-28 10:33:05 -0700 | [diff] [blame] | 612 | get_menu_selection(const char* const * headers, const char* const * items, |
Doug Zongker | daefc1d | 2011-10-31 09:34:15 -0700 | [diff] [blame] | 613 | int menu_only, int initial_selection, Device* device) { |
Doug Zongker | f93d816 | 2009-09-22 15:16:02 -0700 | [diff] [blame] | 614 | // throw away keys pressed previously, so user doesn't |
| 615 | // accidentally trigger menu items. |
Doug Zongker | 211aebc | 2011-10-28 15:13:10 -0700 | [diff] [blame] | 616 | ui->FlushKeys(); |
Doug Zongker | f93d816 | 2009-09-22 15:16:02 -0700 | [diff] [blame] | 617 | |
Doug Zongker | 211aebc | 2011-10-28 15:13:10 -0700 | [diff] [blame] | 618 | ui->StartMenu(headers, items, initial_selection); |
Doug Zongker | 8674a72 | 2010-09-15 11:08:23 -0700 | [diff] [blame] | 619 | int selected = initial_selection; |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 620 | int chosen_item = -1; |
| 621 | |
Doug Zongker | f93d816 | 2009-09-22 15:16:02 -0700 | [diff] [blame] | 622 | while (chosen_item < 0) { |
Doug Zongker | 211aebc | 2011-10-28 15:13:10 -0700 | [diff] [blame] | 623 | int key = ui->WaitKey(); |
| 624 | int visible = ui->IsTextVisible(); |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 625 | |
Doug Zongker | 5cae445 | 2011-01-25 13:15:30 -0800 | [diff] [blame] | 626 | if (key == -1) { // ui_wait_key() timed out |
Doug Zongker | 211aebc | 2011-10-28 15:13:10 -0700 | [diff] [blame] | 627 | if (ui->WasTextEverVisible()) { |
Doug Zongker | 5cae445 | 2011-01-25 13:15:30 -0800 | [diff] [blame] | 628 | continue; |
| 629 | } else { |
Tianjie Xu | 7b0ad9c | 2016-08-05 18:00:04 -0700 | [diff] [blame] | 630 | LOG(INFO) << "timed out waiting for key input; rebooting."; |
Doug Zongker | 211aebc | 2011-10-28 15:13:10 -0700 | [diff] [blame] | 631 | ui->EndMenu(); |
Doug Zongker | daefc1d | 2011-10-31 09:34:15 -0700 | [diff] [blame] | 632 | return 0; // XXX fixme |
Doug Zongker | 5cae445 | 2011-01-25 13:15:30 -0800 | [diff] [blame] | 633 | } |
| 634 | } |
| 635 | |
Doug Zongker | daefc1d | 2011-10-31 09:34:15 -0700 | [diff] [blame] | 636 | int action = device->HandleMenuKey(key, visible); |
Doug Zongker | ddd6a28 | 2009-06-09 12:22:33 -0700 | [diff] [blame] | 637 | |
| 638 | if (action < 0) { |
| 639 | switch (action) { |
Doug Zongker | daefc1d | 2011-10-31 09:34:15 -0700 | [diff] [blame] | 640 | case Device::kHighlightUp: |
Elliott Hughes | 642aaa7 | 2015-04-10 12:47:46 -0700 | [diff] [blame] | 641 | selected = ui->SelectMenu(--selected); |
Doug Zongker | ddd6a28 | 2009-06-09 12:22:33 -0700 | [diff] [blame] | 642 | break; |
Doug Zongker | daefc1d | 2011-10-31 09:34:15 -0700 | [diff] [blame] | 643 | case Device::kHighlightDown: |
Elliott Hughes | 642aaa7 | 2015-04-10 12:47:46 -0700 | [diff] [blame] | 644 | selected = ui->SelectMenu(++selected); |
Doug Zongker | ddd6a28 | 2009-06-09 12:22:33 -0700 | [diff] [blame] | 645 | break; |
Doug Zongker | daefc1d | 2011-10-31 09:34:15 -0700 | [diff] [blame] | 646 | case Device::kInvokeItem: |
Doug Zongker | ddd6a28 | 2009-06-09 12:22:33 -0700 | [diff] [blame] | 647 | chosen_item = selected; |
| 648 | break; |
Doug Zongker | daefc1d | 2011-10-31 09:34:15 -0700 | [diff] [blame] | 649 | case Device::kNoAction: |
Doug Zongker | ddd6a28 | 2009-06-09 12:22:33 -0700 | [diff] [blame] | 650 | break; |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 651 | } |
Doug Zongker | f93d816 | 2009-09-22 15:16:02 -0700 | [diff] [blame] | 652 | } else if (!menu_only) { |
Doug Zongker | ddd6a28 | 2009-06-09 12:22:33 -0700 | [diff] [blame] | 653 | chosen_item = action; |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 654 | } |
Doug Zongker | f93d816 | 2009-09-22 15:16:02 -0700 | [diff] [blame] | 655 | } |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 656 | |
Doug Zongker | 211aebc | 2011-10-28 15:13:10 -0700 | [diff] [blame] | 657 | ui->EndMenu(); |
Doug Zongker | f93d816 | 2009-09-22 15:16:02 -0700 | [diff] [blame] | 658 | return chosen_item; |
| 659 | } |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 660 | |
Tao Bao | c4a18ef | 2017-02-10 00:13:30 -0800 | [diff] [blame] | 661 | // Returns the selected filename, or an empty string. |
| 662 | static std::string browse_directory(const std::string& path, Device* device) { |
| 663 | ensure_path_mounted(path.c_str()); |
Doug Zongker | 8674a72 | 2010-09-15 11:08:23 -0700 | [diff] [blame] | 664 | |
Tao Bao | c4a18ef | 2017-02-10 00:13:30 -0800 | [diff] [blame] | 665 | std::unique_ptr<DIR, decltype(&closedir)> d(opendir(path.c_str()), closedir); |
| 666 | if (!d) { |
| 667 | PLOG(ERROR) << "error opening " << path; |
| 668 | return ""; |
| 669 | } |
Doug Zongker | c18eeb8 | 2010-09-21 16:49:26 -0700 | [diff] [blame] | 670 | |
Tao Bao | c4a18ef | 2017-02-10 00:13:30 -0800 | [diff] [blame] | 671 | std::vector<std::string> dirs; |
| 672 | std::vector<std::string> zips = { "../" }; // "../" is always the first entry. |
| 673 | |
| 674 | dirent* de; |
| 675 | while ((de = readdir(d.get())) != nullptr) { |
| 676 | std::string name(de->d_name); |
| 677 | |
| 678 | if (de->d_type == DT_DIR) { |
| 679 | // Skip "." and ".." entries. |
| 680 | if (name == "." || name == "..") continue; |
| 681 | dirs.push_back(name + "/"); |
| 682 | } else if (de->d_type == DT_REG && android::base::EndsWithIgnoreCase(name, ".zip")) { |
| 683 | zips.push_back(name); |
| 684 | } |
| 685 | } |
| 686 | |
| 687 | std::sort(dirs.begin(), dirs.end()); |
| 688 | std::sort(zips.begin(), zips.end()); |
| 689 | |
| 690 | // Append dirs to the zips list. |
| 691 | zips.insert(zips.end(), dirs.begin(), dirs.end()); |
| 692 | |
| 693 | const char* entries[zips.size() + 1]; |
| 694 | entries[zips.size()] = nullptr; |
| 695 | for (size_t i = 0; i < zips.size(); i++) { |
| 696 | entries[i] = zips[i].c_str(); |
| 697 | } |
| 698 | |
| 699 | const char* headers[] = { "Choose a package to install:", path.c_str(), nullptr }; |
| 700 | |
| 701 | int chosen_item = 0; |
| 702 | while (true) { |
| 703 | chosen_item = get_menu_selection(headers, entries, 1, chosen_item, device); |
| 704 | |
| 705 | const std::string& item = zips[chosen_item]; |
| 706 | if (chosen_item == 0) { |
| 707 | // Go up but continue browsing (if the caller is browse_directory). |
| 708 | return ""; |
Doug Zongker | 8674a72 | 2010-09-15 11:08:23 -0700 | [diff] [blame] | 709 | } |
| 710 | |
Tao Bao | c4a18ef | 2017-02-10 00:13:30 -0800 | [diff] [blame] | 711 | std::string new_path = path + "/" + item; |
| 712 | if (new_path.back() == '/') { |
| 713 | // Recurse down into a subdirectory. |
| 714 | new_path.pop_back(); |
| 715 | std::string result = browse_directory(new_path, device); |
| 716 | if (!result.empty()) return result; |
| 717 | } else { |
| 718 | // Selected a zip file: return the path to the caller. |
| 719 | return new_path; |
Doug Zongker | 8674a72 | 2010-09-15 11:08:23 -0700 | [diff] [blame] | 720 | } |
Tao Bao | c4a18ef | 2017-02-10 00:13:30 -0800 | [diff] [blame] | 721 | } |
Doug Zongker | 8674a72 | 2010-09-15 11:08:23 -0700 | [diff] [blame] | 722 | |
Tao Bao | c4a18ef | 2017-02-10 00:13:30 -0800 | [diff] [blame] | 723 | // Unreachable. |
Doug Zongker | 8674a72 | 2010-09-15 11:08:23 -0700 | [diff] [blame] | 724 | } |
| 725 | |
Elliott Hughes | 30694c9 | 2015-03-25 15:16:51 -0700 | [diff] [blame] | 726 | static bool yes_no(Device* device, const char* question1, const char* question2) { |
Elliott Hughes | 8fd86d7 | 2015-04-13 14:36:02 -0700 | [diff] [blame] | 727 | const char* headers[] = { question1, question2, NULL }; |
Elliott Hughes | 30694c9 | 2015-03-25 15:16:51 -0700 | [diff] [blame] | 728 | const char* items[] = { " No", " Yes", NULL }; |
Doug Zongker | ddd6a28 | 2009-06-09 12:22:33 -0700 | [diff] [blame] | 729 | |
Elliott Hughes | 30694c9 | 2015-03-25 15:16:51 -0700 | [diff] [blame] | 730 | int chosen_item = get_menu_selection(headers, items, 1, 0, device); |
| 731 | return (chosen_item == 1); |
| 732 | } |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 733 | |
Paul Crowley | 08404b4 | 2016-12-19 13:04:23 -0800 | [diff] [blame] | 734 | static bool ask_to_wipe_data(Device* device) { |
| 735 | return yes_no(device, "Wipe all user data?", " THIS CAN NOT BE UNDONE!"); |
| 736 | } |
Doug Zongker | 1066d2c | 2009-04-01 13:57:40 -0700 | [diff] [blame] | 737 | |
Paul Crowley | 08404b4 | 2016-12-19 13:04:23 -0800 | [diff] [blame] | 738 | // Return true on success. |
| 739 | static bool wipe_data(Device* device) { |
Tao Bao | 682c34b | 2015-04-07 17:16:35 -0700 | [diff] [blame] | 740 | modified_flash = true; |
| 741 | |
Doug Zongker | 211aebc | 2011-10-28 15:13:10 -0700 | [diff] [blame] | 742 | ui->Print("\n-- Wiping data...\n"); |
Elliott Hughes | 945548e | 2015-06-05 17:59:56 -0700 | [diff] [blame] | 743 | bool success = |
| 744 | device->PreWipeData() && |
| 745 | erase_volume("/data") && |
Tao Bao | 26112e5 | 2016-02-25 12:29:40 -0800 | [diff] [blame] | 746 | (has_cache ? erase_volume("/cache") : true) && |
Elliott Hughes | 945548e | 2015-06-05 17:59:56 -0700 | [diff] [blame] | 747 | device->PostWipeData(); |
| 748 | ui->Print("Data wipe %s.\n", success ? "complete" : "failed"); |
| 749 | return success; |
Doug Zongker | f93d816 | 2009-09-22 15:16:02 -0700 | [diff] [blame] | 750 | } |
| 751 | |
Paul Crowley | 08404b4 | 2016-12-19 13:04:23 -0800 | [diff] [blame] | 752 | static bool prompt_and_wipe_data(Device* device) { |
| 753 | const char* const headers[] = { |
| 754 | "Boot halted, user data is corrupt", |
| 755 | "Wipe all user data to recover", |
| 756 | NULL |
| 757 | }; |
| 758 | const char* const items[] = { |
| 759 | "Retry boot", |
| 760 | "Wipe user data", |
| 761 | NULL |
| 762 | }; |
| 763 | for (;;) { |
| 764 | int chosen_item = get_menu_selection(headers, items, 1, 0, device); |
| 765 | if (chosen_item != 1) { |
| 766 | return true; // Just reboot, no wipe; not a failure, user asked for it |
| 767 | } |
| 768 | if (ask_to_wipe_data(device)) { |
| 769 | return wipe_data(device); |
| 770 | } |
| 771 | } |
| 772 | } |
| 773 | |
Tao Bao | e39a9bc | 2015-03-31 12:19:05 -0700 | [diff] [blame] | 774 | // Return true on success. |
| 775 | static bool wipe_cache(bool should_confirm, Device* device) { |
Tao Bao | 26112e5 | 2016-02-25 12:29:40 -0800 | [diff] [blame] | 776 | if (!has_cache) { |
| 777 | ui->Print("No /cache partition found.\n"); |
| 778 | return false; |
| 779 | } |
| 780 | |
Elliott Hughes | 30694c9 | 2015-03-25 15:16:51 -0700 | [diff] [blame] | 781 | 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] | 782 | return false; |
Elliott Hughes | 30694c9 | 2015-03-25 15:16:51 -0700 | [diff] [blame] | 783 | } |
| 784 | |
Tao Bao | 682c34b | 2015-04-07 17:16:35 -0700 | [diff] [blame] | 785 | modified_flash = true; |
| 786 | |
Elliott Hughes | 30694c9 | 2015-03-25 15:16:51 -0700 | [diff] [blame] | 787 | ui->Print("\n-- Wiping cache...\n"); |
Elliott Hughes | 945548e | 2015-06-05 17:59:56 -0700 | [diff] [blame] | 788 | bool success = erase_volume("/cache"); |
| 789 | ui->Print("Cache wipe %s.\n", success ? "complete" : "failed"); |
| 790 | return success; |
Elliott Hughes | 30694c9 | 2015-03-25 15:16:51 -0700 | [diff] [blame] | 791 | } |
| 792 | |
Tao Bao | 862a4c1 | 2016-06-02 11:16:50 -0700 | [diff] [blame] | 793 | // Secure-wipe a given partition. It uses BLKSECDISCARD, if supported. |
| 794 | // Otherwise, it goes with BLKDISCARD (if device supports BLKDISCARDZEROES) or |
| 795 | // BLKZEROOUT. |
| 796 | static bool secure_wipe_partition(const std::string& partition) { |
| 797 | android::base::unique_fd fd(TEMP_FAILURE_RETRY(open(partition.c_str(), O_WRONLY))); |
| 798 | if (fd == -1) { |
Tianjie Xu | 7b0ad9c | 2016-08-05 18:00:04 -0700 | [diff] [blame] | 799 | PLOG(ERROR) << "failed to open \"" << partition << "\""; |
Tao Bao | 862a4c1 | 2016-06-02 11:16:50 -0700 | [diff] [blame] | 800 | return false; |
| 801 | } |
| 802 | |
| 803 | uint64_t range[2] = {0, 0}; |
| 804 | if (ioctl(fd, BLKGETSIZE64, &range[1]) == -1 || range[1] == 0) { |
Tianjie Xu | 7b0ad9c | 2016-08-05 18:00:04 -0700 | [diff] [blame] | 805 | PLOG(ERROR) << "failed to get partition size"; |
Tao Bao | 862a4c1 | 2016-06-02 11:16:50 -0700 | [diff] [blame] | 806 | return false; |
| 807 | } |
| 808 | printf("Secure-wiping \"%s\" from %" PRIu64 " to %" PRIu64 ".\n", |
| 809 | partition.c_str(), range[0], range[1]); |
| 810 | |
| 811 | printf("Trying BLKSECDISCARD...\t"); |
| 812 | if (ioctl(fd, BLKSECDISCARD, &range) == -1) { |
| 813 | printf("failed: %s\n", strerror(errno)); |
| 814 | |
| 815 | // Use BLKDISCARD if it zeroes out blocks, otherwise use BLKZEROOUT. |
| 816 | unsigned int zeroes; |
| 817 | if (ioctl(fd, BLKDISCARDZEROES, &zeroes) == 0 && zeroes != 0) { |
| 818 | printf("Trying BLKDISCARD...\t"); |
| 819 | if (ioctl(fd, BLKDISCARD, &range) == -1) { |
| 820 | printf("failed: %s\n", strerror(errno)); |
| 821 | return false; |
| 822 | } |
| 823 | } else { |
| 824 | printf("Trying BLKZEROOUT...\t"); |
| 825 | if (ioctl(fd, BLKZEROOUT, &range) == -1) { |
| 826 | printf("failed: %s\n", strerror(errno)); |
| 827 | return false; |
| 828 | } |
| 829 | } |
| 830 | } |
| 831 | |
| 832 | printf("done\n"); |
| 833 | return true; |
| 834 | } |
| 835 | |
Yabin Cui | fd99a31 | 2016-06-09 14:09:39 -0700 | [diff] [blame] | 836 | // Check if the wipe package matches expectation: |
| 837 | // 1. verify the package. |
| 838 | // 2. check metadata (ota-type, pre-device and serial number if having one). |
| 839 | static bool check_wipe_package(size_t wipe_package_size) { |
| 840 | if (wipe_package_size == 0) { |
| 841 | LOG(ERROR) << "wipe_package_size is zero"; |
| 842 | return false; |
| 843 | } |
| 844 | std::string wipe_package; |
| 845 | std::string err_str; |
| 846 | if (!read_wipe_package(&wipe_package, wipe_package_size, &err_str)) { |
| 847 | PLOG(ERROR) << "Failed to read wipe package"; |
| 848 | return false; |
| 849 | } |
| 850 | if (!verify_package(reinterpret_cast<const unsigned char*>(wipe_package.data()), |
| 851 | wipe_package.size())) { |
| 852 | LOG(ERROR) << "Failed to verify package"; |
| 853 | return false; |
| 854 | } |
| 855 | |
| 856 | // Extract metadata |
| 857 | ZipArchiveHandle zip; |
Tao Bao | efc3559 | 2017-01-08 22:45:47 -0800 | [diff] [blame] | 858 | int err = OpenArchiveFromMemory(static_cast<void*>(&wipe_package[0]), wipe_package.size(), |
| 859 | "wipe_package", &zip); |
Yabin Cui | fd99a31 | 2016-06-09 14:09:39 -0700 | [diff] [blame] | 860 | if (err != 0) { |
| 861 | LOG(ERROR) << "Can't open wipe package : " << ErrorCodeString(err); |
| 862 | return false; |
| 863 | } |
| 864 | std::string metadata; |
| 865 | if (!read_metadata_from_package(&zip, &metadata)) { |
| 866 | CloseArchive(zip); |
| 867 | return false; |
| 868 | } |
| 869 | CloseArchive(zip); |
| 870 | |
| 871 | // Check metadata |
| 872 | std::vector<std::string> lines = android::base::Split(metadata, "\n"); |
| 873 | bool ota_type_matched = false; |
| 874 | bool device_type_matched = false; |
| 875 | bool has_serial_number = false; |
| 876 | bool serial_number_matched = false; |
| 877 | for (const auto& line : lines) { |
| 878 | if (line == "ota-type=BRICK") { |
| 879 | ota_type_matched = true; |
| 880 | } else if (android::base::StartsWith(line, "pre-device=")) { |
| 881 | std::string device_type = line.substr(strlen("pre-device=")); |
Tao Bao | efc3559 | 2017-01-08 22:45:47 -0800 | [diff] [blame] | 882 | std::string real_device_type = android::base::GetProperty("ro.build.product", ""); |
Yabin Cui | fd99a31 | 2016-06-09 14:09:39 -0700 | [diff] [blame] | 883 | device_type_matched = (device_type == real_device_type); |
| 884 | } else if (android::base::StartsWith(line, "serialno=")) { |
| 885 | std::string serial_no = line.substr(strlen("serialno=")); |
Tao Bao | efc3559 | 2017-01-08 22:45:47 -0800 | [diff] [blame] | 886 | std::string real_serial_no = android::base::GetProperty("ro.serialno", ""); |
Yabin Cui | fd99a31 | 2016-06-09 14:09:39 -0700 | [diff] [blame] | 887 | has_serial_number = true; |
| 888 | serial_number_matched = (serial_no == real_serial_no); |
| 889 | } |
| 890 | } |
| 891 | return ota_type_matched && device_type_matched && (!has_serial_number || serial_number_matched); |
| 892 | } |
| 893 | |
Yabin Cui | 8b309f6 | 2016-06-24 18:22:02 -0700 | [diff] [blame] | 894 | // Wipe the current A/B device, with a secure wipe of all the partitions in |
| 895 | // RECOVERY_WIPE. |
Yabin Cui | fd99a31 | 2016-06-09 14:09:39 -0700 | [diff] [blame] | 896 | static bool wipe_ab_device(size_t wipe_package_size) { |
Tao Bao | 862a4c1 | 2016-06-02 11:16:50 -0700 | [diff] [blame] | 897 | ui->SetBackground(RecoveryUI::ERASING); |
| 898 | ui->SetProgressType(RecoveryUI::INDETERMINATE); |
| 899 | |
Yabin Cui | fd99a31 | 2016-06-09 14:09:39 -0700 | [diff] [blame] | 900 | if (!check_wipe_package(wipe_package_size)) { |
| 901 | LOG(ERROR) << "Failed to verify wipe package"; |
| 902 | return false; |
| 903 | } |
Tao Bao | 862a4c1 | 2016-06-02 11:16:50 -0700 | [diff] [blame] | 904 | std::string partition_list; |
Yabin Cui | 8b309f6 | 2016-06-24 18:22:02 -0700 | [diff] [blame] | 905 | if (!android::base::ReadFileToString(RECOVERY_WIPE, &partition_list)) { |
| 906 | LOG(ERROR) << "failed to read \"" << RECOVERY_WIPE << "\""; |
Tao Bao | 862a4c1 | 2016-06-02 11:16:50 -0700 | [diff] [blame] | 907 | return false; |
| 908 | } |
| 909 | |
| 910 | std::vector<std::string> lines = android::base::Split(partition_list, "\n"); |
| 911 | for (const std::string& line : lines) { |
| 912 | std::string partition = android::base::Trim(line); |
| 913 | // Ignore '#' comment or empty lines. |
| 914 | if (android::base::StartsWith(partition, "#") || partition.empty()) { |
| 915 | continue; |
| 916 | } |
| 917 | |
| 918 | // Proceed anyway even if it fails to wipe some partition. |
| 919 | secure_wipe_partition(partition); |
| 920 | } |
| 921 | return true; |
| 922 | } |
| 923 | |
Nick Kralevich | a9ad032 | 2014-10-22 18:38:48 -0700 | [diff] [blame] | 924 | static void choose_recovery_file(Device* device) { |
Elliott Hughes | c049163 | 2015-05-06 12:40:05 -0700 | [diff] [blame] | 925 | // "Back" + KEEP_LOG_COUNT * 2 + terminating nullptr entry |
| 926 | char* entries[1 + KEEP_LOG_COUNT * 2 + 1]; |
Nick Kralevich | a9ad032 | 2014-10-22 18:38:48 -0700 | [diff] [blame] | 927 | memset(entries, 0, sizeof(entries)); |
| 928 | |
Tao Bao | bef3971 | 2015-05-04 18:50:27 -0700 | [diff] [blame] | 929 | unsigned int n = 0; |
Patrick Tjin | cd055ee | 2014-12-09 11:26:40 -0800 | [diff] [blame] | 930 | |
Tianjie Xu | a54f75e | 2016-08-17 12:02:46 -0700 | [diff] [blame] | 931 | if (has_cache) { |
| 932 | // Add LAST_LOG_FILE + LAST_LOG_FILE.x |
| 933 | // Add LAST_KMSG_FILE + LAST_KMSG_FILE.x |
| 934 | for (int i = 0; i < KEEP_LOG_COUNT; i++) { |
| 935 | char* log_file; |
| 936 | int ret; |
| 937 | ret = (i == 0) ? asprintf(&log_file, "%s", LAST_LOG_FILE) : |
| 938 | asprintf(&log_file, "%s.%d", LAST_LOG_FILE, i); |
| 939 | if (ret == -1) { |
| 940 | // memory allocation failure - return early. Should never happen. |
| 941 | return; |
| 942 | } |
| 943 | if ((ensure_path_mounted(log_file) != 0) || (access(log_file, R_OK) == -1)) { |
| 944 | free(log_file); |
| 945 | } else { |
| 946 | entries[n++] = log_file; |
| 947 | } |
Tao Bao | bef3971 | 2015-05-04 18:50:27 -0700 | [diff] [blame] | 948 | |
Tianjie Xu | a54f75e | 2016-08-17 12:02:46 -0700 | [diff] [blame] | 949 | char* kmsg_file; |
| 950 | ret = (i == 0) ? asprintf(&kmsg_file, "%s", LAST_KMSG_FILE) : |
| 951 | asprintf(&kmsg_file, "%s.%d", LAST_KMSG_FILE, i); |
| 952 | if (ret == -1) { |
| 953 | // memory allocation failure - return early. Should never happen. |
| 954 | return; |
| 955 | } |
| 956 | if ((ensure_path_mounted(kmsg_file) != 0) || (access(kmsg_file, R_OK) == -1)) { |
| 957 | free(kmsg_file); |
| 958 | } else { |
| 959 | entries[n++] = kmsg_file; |
| 960 | } |
Tao Bao | bef3971 | 2015-05-04 18:50:27 -0700 | [diff] [blame] | 961 | } |
Tianjie Xu | a54f75e | 2016-08-17 12:02:46 -0700 | [diff] [blame] | 962 | } else { |
| 963 | // If cache partition is not found, view /tmp/recovery.log instead. |
| 964 | ui->Print("No /cache partition found.\n"); |
| 965 | if (access(TEMPORARY_LOG_FILE, R_OK) == -1) { |
| 966 | return; |
| 967 | } else{ |
| 968 | entries[n++] = strdup(TEMPORARY_LOG_FILE); |
Tao Bao | bef3971 | 2015-05-04 18:50:27 -0700 | [diff] [blame] | 969 | } |
Nick Kralevich | a9ad032 | 2014-10-22 18:38:48 -0700 | [diff] [blame] | 970 | } |
| 971 | |
Elliott Hughes | c049163 | 2015-05-06 12:40:05 -0700 | [diff] [blame] | 972 | entries[n++] = strdup("Back"); |
| 973 | |
Tao Bao | bef3971 | 2015-05-04 18:50:27 -0700 | [diff] [blame] | 974 | const char* headers[] = { "Select file to view", nullptr }; |
Nick Kralevich | a9ad032 | 2014-10-22 18:38:48 -0700 | [diff] [blame] | 975 | |
Elliott Hughes | 8de5207 | 2015-04-08 20:06:50 -0700 | [diff] [blame] | 976 | while (true) { |
Elliott Hughes | 30694c9 | 2015-03-25 15:16:51 -0700 | [diff] [blame] | 977 | int chosen_item = get_menu_selection(headers, entries, 1, 0, device); |
Elliott Hughes | c049163 | 2015-05-06 12:40:05 -0700 | [diff] [blame] | 978 | if (strcmp(entries[chosen_item], "Back") == 0) break; |
Elliott Hughes | 8de5207 | 2015-04-08 20:06:50 -0700 | [diff] [blame] | 979 | |
Elliott Hughes | 8de5207 | 2015-04-08 20:06:50 -0700 | [diff] [blame] | 980 | ui->ShowFile(entries[chosen_item]); |
Nick Kralevich | a9ad032 | 2014-10-22 18:38:48 -0700 | [diff] [blame] | 981 | } |
| 982 | |
Tao Bao | bef3971 | 2015-05-04 18:50:27 -0700 | [diff] [blame] | 983 | for (size_t i = 0; i < (sizeof(entries) / sizeof(*entries)); i++) { |
Nick Kralevich | a9ad032 | 2014-10-22 18:38:48 -0700 | [diff] [blame] | 984 | free(entries[i]); |
| 985 | } |
| 986 | } |
| 987 | |
Elliott Hughes | 498cda6 | 2016-04-14 16:49:04 -0700 | [diff] [blame] | 988 | static void run_graphics_test(Device* device) { |
| 989 | // Switch to graphics screen. |
| 990 | ui->ShowText(false); |
| 991 | |
| 992 | ui->SetProgressType(RecoveryUI::INDETERMINATE); |
| 993 | ui->SetBackground(RecoveryUI::INSTALLING_UPDATE); |
| 994 | sleep(1); |
| 995 | |
| 996 | ui->SetBackground(RecoveryUI::ERROR); |
| 997 | sleep(1); |
| 998 | |
| 999 | ui->SetBackground(RecoveryUI::NO_COMMAND); |
| 1000 | sleep(1); |
| 1001 | |
| 1002 | ui->SetBackground(RecoveryUI::ERASING); |
| 1003 | sleep(1); |
| 1004 | |
| 1005 | ui->SetBackground(RecoveryUI::INSTALLING_UPDATE); |
| 1006 | |
| 1007 | ui->SetProgressType(RecoveryUI::DETERMINATE); |
| 1008 | ui->ShowProgress(1.0, 10.0); |
| 1009 | float fraction = 0.0; |
| 1010 | for (size_t i = 0; i < 100; ++i) { |
| 1011 | fraction += .01; |
| 1012 | ui->SetProgress(fraction); |
| 1013 | usleep(100000); |
| 1014 | } |
| 1015 | |
| 1016 | ui->ShowText(true); |
| 1017 | } |
| 1018 | |
Tao Bao | cdcf28f | 2016-01-13 15:05:20 -0800 | [diff] [blame] | 1019 | // How long (in seconds) we wait for the fuse-provided package file to |
| 1020 | // appear, before timing out. |
| 1021 | #define SDCARD_INSTALL_TIMEOUT 10 |
| 1022 | |
Tao Bao | 145d861 | 2015-03-25 15:51:15 -0700 | [diff] [blame] | 1023 | static int apply_from_sdcard(Device* device, bool* wipe_cache) { |
Tao Bao | 682c34b | 2015-04-07 17:16:35 -0700 | [diff] [blame] | 1024 | modified_flash = true; |
| 1025 | |
Christian Poetzsch | 4ec58a4 | 2015-02-19 10:42:39 +0000 | [diff] [blame] | 1026 | if (ensure_path_mounted(SDCARD_ROOT) != 0) { |
| 1027 | ui->Print("\n-- Couldn't mount %s.\n", SDCARD_ROOT); |
| 1028 | return INSTALL_ERROR; |
| 1029 | } |
| 1030 | |
Tao Bao | c4a18ef | 2017-02-10 00:13:30 -0800 | [diff] [blame] | 1031 | std::string path = browse_directory(SDCARD_ROOT, device); |
| 1032 | if (path.empty()) { |
Elliott Hughes | 018ed31 | 2015-04-08 16:51:36 -0700 | [diff] [blame] | 1033 | ui->Print("\n-- No package file selected.\n"); |
caozhiyuan | b4effb9 | 2015-06-10 16:46:38 +0800 | [diff] [blame] | 1034 | ensure_path_unmounted(SDCARD_ROOT); |
Christian Poetzsch | 4ec58a4 | 2015-02-19 10:42:39 +0000 | [diff] [blame] | 1035 | return INSTALL_ERROR; |
| 1036 | } |
| 1037 | |
Tao Bao | c4a18ef | 2017-02-10 00:13:30 -0800 | [diff] [blame] | 1038 | ui->Print("\n-- Install %s ...\n", path.c_str()); |
Christian Poetzsch | 4ec58a4 | 2015-02-19 10:42:39 +0000 | [diff] [blame] | 1039 | set_sdcard_update_bootloader_message(); |
Christian Poetzsch | 4ec58a4 | 2015-02-19 10:42:39 +0000 | [diff] [blame] | 1040 | |
Tao Bao | cdcf28f | 2016-01-13 15:05:20 -0800 | [diff] [blame] | 1041 | // We used to use fuse in a thread as opposed to a process. Since accessing |
| 1042 | // through fuse involves going from kernel to userspace to kernel, it leads |
| 1043 | // to deadlock when a page fault occurs. (Bug: 26313124) |
| 1044 | pid_t child; |
| 1045 | if ((child = fork()) == 0) { |
Tao Bao | c4a18ef | 2017-02-10 00:13:30 -0800 | [diff] [blame] | 1046 | bool status = start_sdcard_fuse(path.c_str()); |
Tao Bao | cdcf28f | 2016-01-13 15:05:20 -0800 | [diff] [blame] | 1047 | |
| 1048 | _exit(status ? EXIT_SUCCESS : EXIT_FAILURE); |
| 1049 | } |
| 1050 | |
| 1051 | // FUSE_SIDELOAD_HOST_PATHNAME will start to exist once the fuse in child |
| 1052 | // process is ready. |
| 1053 | int result = INSTALL_ERROR; |
| 1054 | int status; |
| 1055 | bool waited = false; |
| 1056 | for (int i = 0; i < SDCARD_INSTALL_TIMEOUT; ++i) { |
| 1057 | if (waitpid(child, &status, WNOHANG) == -1) { |
| 1058 | result = INSTALL_ERROR; |
| 1059 | waited = true; |
| 1060 | break; |
| 1061 | } |
| 1062 | |
| 1063 | struct stat sb; |
| 1064 | if (stat(FUSE_SIDELOAD_HOST_PATHNAME, &sb) == -1) { |
| 1065 | if (errno == ENOENT && i < SDCARD_INSTALL_TIMEOUT-1) { |
| 1066 | sleep(1); |
| 1067 | continue; |
| 1068 | } else { |
Tianjie Xu | 7b0ad9c | 2016-08-05 18:00:04 -0700 | [diff] [blame] | 1069 | LOG(ERROR) << "Timed out waiting for the fuse-provided package."; |
Tao Bao | cdcf28f | 2016-01-13 15:05:20 -0800 | [diff] [blame] | 1070 | result = INSTALL_ERROR; |
| 1071 | kill(child, SIGKILL); |
| 1072 | break; |
| 1073 | } |
| 1074 | } |
| 1075 | |
| 1076 | result = install_package(FUSE_SIDELOAD_HOST_PATHNAME, wipe_cache, |
Tianjie Xu | 1625583 | 2016-04-30 11:49:59 -0700 | [diff] [blame] | 1077 | TEMPORARY_INSTALL_FILE, false, 0/*retry_count*/); |
Tao Bao | cdcf28f | 2016-01-13 15:05:20 -0800 | [diff] [blame] | 1078 | break; |
| 1079 | } |
Christian Poetzsch | 4ec58a4 | 2015-02-19 10:42:39 +0000 | [diff] [blame] | 1080 | |
Tao Bao | cdcf28f | 2016-01-13 15:05:20 -0800 | [diff] [blame] | 1081 | if (!waited) { |
| 1082 | // Calling stat() on this magic filename signals the fuse |
| 1083 | // filesystem to shut down. |
| 1084 | struct stat sb; |
| 1085 | stat(FUSE_SIDELOAD_HOST_EXIT_PATHNAME, &sb); |
| 1086 | |
| 1087 | waitpid(child, &status, 0); |
| 1088 | } |
| 1089 | |
| 1090 | if (!WIFEXITED(status) || WEXITSTATUS(status) != 0) { |
Tianjie Xu | 7b0ad9c | 2016-08-05 18:00:04 -0700 | [diff] [blame] | 1091 | LOG(ERROR) << "Error exit from the fuse process: " << WEXITSTATUS(status); |
Tao Bao | cdcf28f | 2016-01-13 15:05:20 -0800 | [diff] [blame] | 1092 | } |
| 1093 | |
Christian Poetzsch | 4ec58a4 | 2015-02-19 10:42:39 +0000 | [diff] [blame] | 1094 | ensure_path_unmounted(SDCARD_ROOT); |
Tao Bao | cdcf28f | 2016-01-13 15:05:20 -0800 | [diff] [blame] | 1095 | return result; |
Christian Poetzsch | 4ec58a4 | 2015-02-19 10:42:39 +0000 | [diff] [blame] | 1096 | } |
| 1097 | |
Doug Zongker | 8d9d3d5 | 2014-04-01 13:20:23 -0700 | [diff] [blame] | 1098 | // Return REBOOT, SHUTDOWN, or REBOOT_BOOTLOADER. Returning NO_ACTION |
| 1099 | // means to take the default, which is to reboot or shutdown depending |
| 1100 | // on if the --shutdown_after flag was passed to recovery. |
| 1101 | static Device::BuiltinAction |
Doug Zongker | 6c8553d | 2012-09-24 10:40:47 -0700 | [diff] [blame] | 1102 | prompt_and_wait(Device* device, int status) { |
Doug Zongker | f93d816 | 2009-09-22 15:16:02 -0700 | [diff] [blame] | 1103 | for (;;) { |
Tianjie Xu | c14d95d | 2016-03-24 11:50:34 -0700 | [diff] [blame] | 1104 | finish_recovery(); |
Doug Zongker | 6c8553d | 2012-09-24 10:40:47 -0700 | [diff] [blame] | 1105 | switch (status) { |
| 1106 | case INSTALL_SUCCESS: |
| 1107 | case INSTALL_NONE: |
| 1108 | ui->SetBackground(RecoveryUI::NO_COMMAND); |
| 1109 | break; |
| 1110 | |
| 1111 | case INSTALL_ERROR: |
| 1112 | case INSTALL_CORRUPT: |
| 1113 | ui->SetBackground(RecoveryUI::ERROR); |
| 1114 | break; |
| 1115 | } |
Doug Zongker | 211aebc | 2011-10-28 15:13:10 -0700 | [diff] [blame] | 1116 | ui->SetProgressType(RecoveryUI::EMPTY); |
Doug Zongker | f93d816 | 2009-09-22 15:16:02 -0700 | [diff] [blame] | 1117 | |
Elliott Hughes | 8fd86d7 | 2015-04-13 14:36:02 -0700 | [diff] [blame] | 1118 | int chosen_item = get_menu_selection(nullptr, device->GetMenuItems(), 0, 0, device); |
Doug Zongker | f93d816 | 2009-09-22 15:16:02 -0700 | [diff] [blame] | 1119 | |
| 1120 | // device-specific code may take some action here. It may |
| 1121 | // return one of the core actions handled in the switch |
| 1122 | // statement below. |
Doug Zongker | 8d9d3d5 | 2014-04-01 13:20:23 -0700 | [diff] [blame] | 1123 | Device::BuiltinAction chosen_action = device->InvokeMenuItem(chosen_item); |
Doug Zongker | f93d816 | 2009-09-22 15:16:02 -0700 | [diff] [blame] | 1124 | |
Elliott Hughes | 30694c9 | 2015-03-25 15:16:51 -0700 | [diff] [blame] | 1125 | bool should_wipe_cache = false; |
Doug Zongker | 8d9d3d5 | 2014-04-01 13:20:23 -0700 | [diff] [blame] | 1126 | switch (chosen_action) { |
| 1127 | case Device::NO_ACTION: |
| 1128 | break; |
| 1129 | |
Doug Zongker | daefc1d | 2011-10-31 09:34:15 -0700 | [diff] [blame] | 1130 | case Device::REBOOT: |
Doug Zongker | 8d9d3d5 | 2014-04-01 13:20:23 -0700 | [diff] [blame] | 1131 | case Device::SHUTDOWN: |
| 1132 | case Device::REBOOT_BOOTLOADER: |
| 1133 | return chosen_action; |
Doug Zongker | f93d816 | 2009-09-22 15:16:02 -0700 | [diff] [blame] | 1134 | |
Doug Zongker | daefc1d | 2011-10-31 09:34:15 -0700 | [diff] [blame] | 1135 | case Device::WIPE_DATA: |
Paul Crowley | 08404b4 | 2016-12-19 13:04:23 -0800 | [diff] [blame] | 1136 | if (ui->IsTextVisible()) { |
| 1137 | if (ask_to_wipe_data(device)) { |
| 1138 | wipe_data(device); |
| 1139 | } |
| 1140 | } else { |
| 1141 | wipe_data(device); |
| 1142 | return Device::NO_ACTION; |
| 1143 | } |
Doug Zongker | f93d816 | 2009-09-22 15:16:02 -0700 | [diff] [blame] | 1144 | break; |
| 1145 | |
Doug Zongker | daefc1d | 2011-10-31 09:34:15 -0700 | [diff] [blame] | 1146 | case Device::WIPE_CACHE: |
Elliott Hughes | 30694c9 | 2015-03-25 15:16:51 -0700 | [diff] [blame] | 1147 | wipe_cache(ui->IsTextVisible(), device); |
Doug Zongker | 8d9d3d5 | 2014-04-01 13:20:23 -0700 | [diff] [blame] | 1148 | if (!ui->IsTextVisible()) return Device::NO_ACTION; |
Doug Zongker | f93d816 | 2009-09-22 15:16:02 -0700 | [diff] [blame] | 1149 | break; |
| 1150 | |
Christian Poetzsch | 4ec58a4 | 2015-02-19 10:42:39 +0000 | [diff] [blame] | 1151 | case Device::APPLY_ADB_SIDELOAD: |
Elliott Hughes | ec28340 | 2015-04-10 10:01:53 -0700 | [diff] [blame] | 1152 | case Device::APPLY_SDCARD: |
Christian Poetzsch | 4ec58a4 | 2015-02-19 10:42:39 +0000 | [diff] [blame] | 1153 | { |
| 1154 | bool adb = (chosen_action == Device::APPLY_ADB_SIDELOAD); |
| 1155 | if (adb) { |
Elliott Hughes | 30694c9 | 2015-03-25 15:16:51 -0700 | [diff] [blame] | 1156 | status = apply_from_adb(ui, &should_wipe_cache, TEMPORARY_INSTALL_FILE); |
Doug Zongker | d0181b8 | 2011-10-19 10:51:12 -0700 | [diff] [blame] | 1157 | } else { |
Elliott Hughes | 30694c9 | 2015-03-25 15:16:51 -0700 | [diff] [blame] | 1158 | status = apply_from_sdcard(device, &should_wipe_cache); |
Doug Zongker | d0181b8 | 2011-10-19 10:51:12 -0700 | [diff] [blame] | 1159 | } |
Doug Zongker | 945fc68 | 2014-07-10 10:50:39 -0700 | [diff] [blame] | 1160 | |
Elliott Hughes | 30694c9 | 2015-03-25 15:16:51 -0700 | [diff] [blame] | 1161 | if (status == INSTALL_SUCCESS && should_wipe_cache) { |
Tao Bao | e39a9bc | 2015-03-31 12:19:05 -0700 | [diff] [blame] | 1162 | if (!wipe_cache(false, device)) { |
| 1163 | status = INSTALL_ERROR; |
| 1164 | } |
Christian Poetzsch | 4ec58a4 | 2015-02-19 10:42:39 +0000 | [diff] [blame] | 1165 | } |
| 1166 | |
Tao Bao | c679f93 | 2015-03-30 09:43:49 -0700 | [diff] [blame] | 1167 | if (status != INSTALL_SUCCESS) { |
| 1168 | ui->SetBackground(RecoveryUI::ERROR); |
| 1169 | ui->Print("Installation aborted.\n"); |
| 1170 | copy_logs(); |
| 1171 | } else if (!ui->IsTextVisible()) { |
| 1172 | return Device::NO_ACTION; // reboot if logs aren't visible |
| 1173 | } else { |
| 1174 | ui->Print("\nInstall from %s complete.\n", adb ? "ADB" : "SD card"); |
Doug Zongker | 8674a72 | 2010-09-15 11:08:23 -0700 | [diff] [blame] | 1175 | } |
Doug Zongker | f93d816 | 2009-09-22 15:16:02 -0700 | [diff] [blame] | 1176 | } |
| 1177 | break; |
Doug Zongker | daefc1d | 2011-10-31 09:34:15 -0700 | [diff] [blame] | 1178 | |
Elliott Hughes | ec28340 | 2015-04-10 10:01:53 -0700 | [diff] [blame] | 1179 | case Device::VIEW_RECOVERY_LOGS: |
| 1180 | choose_recovery_file(device); |
Michael Ward | 9d2629c | 2011-06-23 22:14:24 -0700 | [diff] [blame] | 1181 | break; |
Doug Zongker | 9270a20 | 2012-01-09 15:16:13 -0800 | [diff] [blame] | 1182 | |
Elliott Hughes | 498cda6 | 2016-04-14 16:49:04 -0700 | [diff] [blame] | 1183 | case Device::RUN_GRAPHICS_TEST: |
| 1184 | run_graphics_test(device); |
| 1185 | break; |
| 1186 | |
Elliott Hughes | ec28340 | 2015-04-10 10:01:53 -0700 | [diff] [blame] | 1187 | case Device::MOUNT_SYSTEM: |
Tao Bao | abb8f77 | 2015-07-30 14:43:27 -0700 | [diff] [blame] | 1188 | // For a system image built with the root directory (i.e. |
| 1189 | // system_root_image == "true"), we mount it to /system_root, and symlink /system |
| 1190 | // to /system_root/system to make adb shell work (the symlink is created through |
| 1191 | // the build system). |
| 1192 | // Bug: 22855115 |
Elliott Hughes | cb22040 | 2016-09-23 15:30:55 -0700 | [diff] [blame] | 1193 | if (android::base::GetBoolProperty("ro.build.system_root_image", false)) { |
Tao Bao | abb8f77 | 2015-07-30 14:43:27 -0700 | [diff] [blame] | 1194 | if (ensure_path_mounted_at("/", "/system_root") != -1) { |
| 1195 | ui->Print("Mounted /system.\n"); |
| 1196 | } |
| 1197 | } else { |
| 1198 | if (ensure_path_mounted("/system") != -1) { |
| 1199 | ui->Print("Mounted /system.\n"); |
| 1200 | } |
Elliott Hughes | ec28340 | 2015-04-10 10:01:53 -0700 | [diff] [blame] | 1201 | } |
Tao Bao | abb8f77 | 2015-07-30 14:43:27 -0700 | [diff] [blame] | 1202 | |
Nick Kralevich | a9ad032 | 2014-10-22 18:38:48 -0700 | [diff] [blame] | 1203 | break; |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1204 | } |
| 1205 | } |
| 1206 | } |
| 1207 | |
| 1208 | static void |
Oscar Montemayor | 0523156 | 2009-11-30 08:40:57 -0800 | [diff] [blame] | 1209 | print_property(const char *key, const char *name, void *cookie) { |
Doug Zongker | 56c5105 | 2010-07-01 09:18:44 -0700 | [diff] [blame] | 1210 | printf("%s=%s\n", key, name); |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1211 | } |
| 1212 | |
Tao Bao | ac9d94d | 2016-11-03 11:37:15 -0700 | [diff] [blame] | 1213 | static std::string load_locale_from_cache() { |
| 1214 | if (ensure_path_mounted(LOCALE_FILE) != 0) { |
| 1215 | LOG(ERROR) << "Can't mount " << LOCALE_FILE; |
| 1216 | return ""; |
Doug Zongker | 02ec6b8 | 2012-08-22 17:26:40 -0700 | [diff] [blame] | 1217 | } |
Tao Bao | ac9d94d | 2016-11-03 11:37:15 -0700 | [diff] [blame] | 1218 | |
| 1219 | std::string content; |
| 1220 | if (!android::base::ReadFileToString(LOCALE_FILE, &content)) { |
| 1221 | PLOG(ERROR) << "Can't read " << LOCALE_FILE; |
| 1222 | return ""; |
| 1223 | } |
| 1224 | |
| 1225 | return android::base::Trim(content); |
Doug Zongker | 02ec6b8 | 2012-08-22 17:26:40 -0700 | [diff] [blame] | 1226 | } |
| 1227 | |
Tao Bao | ac9d94d | 2016-11-03 11:37:15 -0700 | [diff] [blame] | 1228 | void ui_print(const char* format, ...) { |
| 1229 | std::string buffer; |
Doug Zongker | 7c3ae45 | 2013-05-14 11:03:02 -0700 | [diff] [blame] | 1230 | va_list ap; |
| 1231 | va_start(ap, format); |
Tao Bao | ac9d94d | 2016-11-03 11:37:15 -0700 | [diff] [blame] | 1232 | android::base::StringAppendV(&buffer, format, ap); |
Doug Zongker | 7c3ae45 | 2013-05-14 11:03:02 -0700 | [diff] [blame] | 1233 | va_end(ap); |
| 1234 | |
Tao Bao | ac9d94d | 2016-11-03 11:37:15 -0700 | [diff] [blame] | 1235 | if (ui != nullptr) { |
| 1236 | ui->Print("%s", buffer.c_str()); |
Doug Zongker | 7c3ae45 | 2013-05-14 11:03:02 -0700 | [diff] [blame] | 1237 | } else { |
Tao Bao | ac9d94d | 2016-11-03 11:37:15 -0700 | [diff] [blame] | 1238 | fputs(buffer.c_str(), stdout); |
Doug Zongker | 7c3ae45 | 2013-05-14 11:03:02 -0700 | [diff] [blame] | 1239 | } |
| 1240 | } |
| 1241 | |
Tianjie Xu | 7b0ad9c | 2016-08-05 18:00:04 -0700 | [diff] [blame] | 1242 | static constexpr char log_characters[] = "VDIWEF"; |
| 1243 | |
| 1244 | void UiLogger(android::base::LogId id, android::base::LogSeverity severity, |
| 1245 | const char* tag, const char* file, unsigned int line, |
| 1246 | const char* message) { |
Tao Bao | ac9d94d | 2016-11-03 11:37:15 -0700 | [diff] [blame] | 1247 | if (severity >= android::base::ERROR && ui != nullptr) { |
| 1248 | ui->Print("E:%s\n", message); |
Tianjie Xu | 7b0ad9c | 2016-08-05 18:00:04 -0700 | [diff] [blame] | 1249 | } else { |
| 1250 | fprintf(stdout, "%c:%s\n", log_characters[severity], message); |
| 1251 | } |
| 1252 | } |
| 1253 | |
Yabin Cui | 99281df | 2016-02-17 12:21:52 -0800 | [diff] [blame] | 1254 | static bool is_battery_ok() { |
| 1255 | struct healthd_config healthd_config = { |
| 1256 | .batteryStatusPath = android::String8(android::String8::kEmptyString), |
| 1257 | .batteryHealthPath = android::String8(android::String8::kEmptyString), |
| 1258 | .batteryPresentPath = android::String8(android::String8::kEmptyString), |
| 1259 | .batteryCapacityPath = android::String8(android::String8::kEmptyString), |
| 1260 | .batteryVoltagePath = android::String8(android::String8::kEmptyString), |
| 1261 | .batteryTemperaturePath = android::String8(android::String8::kEmptyString), |
| 1262 | .batteryTechnologyPath = android::String8(android::String8::kEmptyString), |
| 1263 | .batteryCurrentNowPath = android::String8(android::String8::kEmptyString), |
| 1264 | .batteryCurrentAvgPath = android::String8(android::String8::kEmptyString), |
| 1265 | .batteryChargeCounterPath = android::String8(android::String8::kEmptyString), |
| 1266 | .batteryFullChargePath = android::String8(android::String8::kEmptyString), |
| 1267 | .batteryCycleCountPath = android::String8(android::String8::kEmptyString), |
| 1268 | .energyCounter = NULL, |
| 1269 | .boot_min_cap = 0, |
| 1270 | .screen_on = NULL |
| 1271 | }; |
| 1272 | healthd_board_init(&healthd_config); |
| 1273 | |
| 1274 | android::BatteryMonitor monitor; |
| 1275 | monitor.init(&healthd_config); |
| 1276 | |
| 1277 | int wait_second = 0; |
| 1278 | while (true) { |
| 1279 | int charge_status = monitor.getChargeStatus(); |
| 1280 | // Treat unknown status as charged. |
| 1281 | bool charged = (charge_status != android::BATTERY_STATUS_DISCHARGING && |
| 1282 | charge_status != android::BATTERY_STATUS_NOT_CHARGING); |
| 1283 | android::BatteryProperty capacity; |
| 1284 | android::status_t status = monitor.getProperty(android::BATTERY_PROP_CAPACITY, &capacity); |
| 1285 | ui_print("charge_status %d, charged %d, status %d, capacity %lld\n", charge_status, |
| 1286 | charged, status, capacity.valueInt64); |
| 1287 | // At startup, the battery drivers in devices like N5X/N6P take some time to load |
| 1288 | // the battery profile. Before the load finishes, it reports value 50 as a fake |
| 1289 | // capacity. BATTERY_READ_TIMEOUT_IN_SEC is set that the battery drivers are expected |
| 1290 | // to finish loading the battery profile earlier than 10 seconds after kernel startup. |
| 1291 | if (status == 0 && capacity.valueInt64 == 50) { |
| 1292 | if (wait_second < BATTERY_READ_TIMEOUT_IN_SEC) { |
| 1293 | sleep(1); |
| 1294 | wait_second++; |
| 1295 | continue; |
| 1296 | } |
| 1297 | } |
| 1298 | // If we can't read battery percentage, it may be a device without battery. In this |
| 1299 | // situation, use 100 as a fake battery percentage. |
| 1300 | if (status != 0) { |
| 1301 | capacity.valueInt64 = 100; |
| 1302 | } |
| 1303 | return (charged && capacity.valueInt64 >= BATTERY_WITH_CHARGER_OK_PERCENTAGE) || |
| 1304 | (!charged && capacity.valueInt64 >= BATTERY_OK_PERCENTAGE); |
| 1305 | } |
| 1306 | } |
| 1307 | |
Tianjie Xu | 3c62b67 | 2016-02-05 18:25:58 -0800 | [diff] [blame] | 1308 | 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] | 1309 | std::vector<std::string> options; |
Tianjie Xu | 3c62b67 | 2016-02-05 18:25:58 -0800 | [diff] [blame] | 1310 | for (int i = 1; i < argc; ++i) { |
| 1311 | if (strstr(argv[i], "retry_count") == nullptr) { |
Tianjie Xu | bd56f15 | 2016-09-28 16:32:10 -0700 | [diff] [blame] | 1312 | options.push_back(argv[i]); |
Tianjie Xu | 3c62b67 | 2016-02-05 18:25:58 -0800 | [diff] [blame] | 1313 | } |
| 1314 | } |
| 1315 | |
Tianjie Xu | bd56f15 | 2016-09-28 16:32:10 -0700 | [diff] [blame] | 1316 | // Increment the retry counter by 1. |
| 1317 | options.push_back(android::base::StringPrintf("--retry_count=%d", retry_count+1)); |
Yabin Cui | 8b309f6 | 2016-06-24 18:22:02 -0700 | [diff] [blame] | 1318 | std::string err; |
Tao Bao | 2292db8 | 2016-12-13 21:53:31 -0800 | [diff] [blame] | 1319 | if (!update_bootloader_message(options, &err)) { |
Yabin Cui | 8b309f6 | 2016-06-24 18:22:02 -0700 | [diff] [blame] | 1320 | LOG(ERROR) << err; |
| 1321 | } |
Tianjie Xu | 3c62b67 | 2016-02-05 18:25:58 -0800 | [diff] [blame] | 1322 | } |
| 1323 | |
Tianjie Xu | 06e57ac | 2016-07-11 14:04:08 -0700 | [diff] [blame] | 1324 | static bool bootreason_in_blacklist() { |
Tao Bao | efc3559 | 2017-01-08 22:45:47 -0800 | [diff] [blame] | 1325 | std::string bootreason = android::base::GetProperty("ro.boot.bootreason", ""); |
| 1326 | if (!bootreason.empty()) { |
| 1327 | for (const auto& str : bootreason_blacklist) { |
| 1328 | if (strcasecmp(str.c_str(), bootreason.c_str()) == 0) { |
| 1329 | return true; |
| 1330 | } |
Tianjie Xu | 06e57ac | 2016-07-11 14:04:08 -0700 | [diff] [blame] | 1331 | } |
Tao Bao | efc3559 | 2017-01-08 22:45:47 -0800 | [diff] [blame] | 1332 | } |
| 1333 | return false; |
Tianjie Xu | 06e57ac | 2016-07-11 14:04:08 -0700 | [diff] [blame] | 1334 | } |
| 1335 | |
| 1336 | static void log_failure_code(ErrorCode code, const char *update_package) { |
| 1337 | std::vector<std::string> log_buffer = { |
| 1338 | update_package, |
| 1339 | "0", // install result |
| 1340 | "error: " + std::to_string(code), |
| 1341 | }; |
| 1342 | std::string log_content = android::base::Join(log_buffer, "\n"); |
| 1343 | if (!android::base::WriteStringToFile(log_content, TEMPORARY_INSTALL_FILE)) { |
Tao Bao | ac9d94d | 2016-11-03 11:37:15 -0700 | [diff] [blame] | 1344 | PLOG(ERROR) << "failed to write " << TEMPORARY_INSTALL_FILE; |
Tianjie Xu | 06e57ac | 2016-07-11 14:04:08 -0700 | [diff] [blame] | 1345 | } |
| 1346 | |
| 1347 | // Also write the info into last_log. |
| 1348 | LOG(INFO) << log_content; |
| 1349 | } |
| 1350 | |
Yabin Cui | 99281df | 2016-02-17 12:21:52 -0800 | [diff] [blame] | 1351 | int main(int argc, char **argv) { |
Tianjie Xu | 7b0ad9c | 2016-08-05 18:00:04 -0700 | [diff] [blame] | 1352 | // We don't have logcat yet under recovery; so we'll print error on screen and |
| 1353 | // log to stdout (which is redirected to recovery.log) as we used to do. |
| 1354 | android::base::InitLogging(argv, &UiLogger); |
| 1355 | |
Mark Salyzyn | a4f701a | 2016-03-09 14:58:16 -0800 | [diff] [blame] | 1356 | // Take last pmsg contents and rewrite it to the current pmsg session. |
| 1357 | static const char filter[] = "recovery/"; |
| 1358 | // Do we need to rotate? |
| 1359 | bool doRotate = false; |
Tianjie Xu | e113e4d | 2016-10-21 17:46:13 -0700 | [diff] [blame] | 1360 | |
Mark Salyzyn | a4f701a | 2016-03-09 14:58:16 -0800 | [diff] [blame] | 1361 | __android_log_pmsg_file_read( |
| 1362 | LOG_ID_SYSTEM, ANDROID_LOG_INFO, filter, |
| 1363 | logbasename, &doRotate); |
| 1364 | // Take action to refresh pmsg contents |
| 1365 | __android_log_pmsg_file_read( |
| 1366 | LOG_ID_SYSTEM, ANDROID_LOG_INFO, filter, |
| 1367 | logrotate, &doRotate); |
| 1368 | |
Doug Zongker | 9270a20 | 2012-01-09 15:16:13 -0800 | [diff] [blame] | 1369 | // If this binary is started with the single argument "--adbd", |
| 1370 | // instead of being the normal recovery binary, it turns into kind |
| 1371 | // of a stripped-down version of adbd that only supports the |
| 1372 | // 'sideload' command. Note this must be a real argument, not |
| 1373 | // anything in the command file or bootloader control block; the |
| 1374 | // only way recovery should be run with this argument is when it |
| 1375 | // starts a copy of itself from the apply_from_adb() function. |
| 1376 | if (argc == 2 && strcmp(argv[1], "--adbd") == 0) { |
Josh Gao | acb2a2f | 2016-08-26 18:24:34 -0700 | [diff] [blame] | 1377 | minadbd_main(); |
Doug Zongker | 9270a20 | 2012-01-09 15:16:13 -0800 | [diff] [blame] | 1378 | return 0; |
| 1379 | } |
| 1380 | |
Tao Bao | 04ca426 | 2015-09-10 15:32:24 -0700 | [diff] [blame] | 1381 | time_t start = time(NULL); |
| 1382 | |
| 1383 | // redirect_stdio should be called only in non-sideload mode. Otherwise |
| 1384 | // we may have two logger instances with different timestamps. |
| 1385 | redirect_stdio(TEMPORARY_LOG_FILE); |
| 1386 | |
Doug Zongker | 19a8e24 | 2014-01-21 09:25:41 -0800 | [diff] [blame] | 1387 | 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] | 1388 | |
Doug Zongker | d4208f9 | 2010-09-20 12:16:13 -0700 | [diff] [blame] | 1389 | load_volume_table(); |
Tao Bao | 26112e5 | 2016-02-25 12:29:40 -0800 | [diff] [blame] | 1390 | has_cache = volume_for_path(CACHE_ROOT) != nullptr; |
| 1391 | |
Tao Bao | f0ed159 | 2016-12-02 11:32:19 -0800 | [diff] [blame] | 1392 | std::vector<std::string> args = get_args(argc, argv); |
| 1393 | std::vector<char*> args_to_parse(args.size()); |
| 1394 | std::transform(args.cbegin(), args.cend(), args_to_parse.begin(), |
| 1395 | [](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] | 1396 | |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1397 | const char *update_package = NULL; |
Tao Bao | e39a9bc | 2015-03-31 12:19:05 -0700 | [diff] [blame] | 1398 | bool should_wipe_data = false; |
Paul Crowley | 08404b4 | 2016-12-19 13:04:23 -0800 | [diff] [blame] | 1399 | bool should_prompt_and_wipe_data = false; |
Tao Bao | c679f93 | 2015-03-30 09:43:49 -0700 | [diff] [blame] | 1400 | bool should_wipe_cache = false; |
Yabin Cui | 8b309f6 | 2016-06-24 18:22:02 -0700 | [diff] [blame] | 1401 | bool should_wipe_ab = false; |
Yabin Cui | fd99a31 | 2016-06-09 14:09:39 -0700 | [diff] [blame] | 1402 | size_t wipe_package_size = 0; |
Tao Bao | 145d861 | 2015-03-25 15:51:15 -0700 | [diff] [blame] | 1403 | bool show_text = false; |
Tao Bao | c679f93 | 2015-03-30 09:43:49 -0700 | [diff] [blame] | 1404 | bool sideload = false; |
| 1405 | bool sideload_auto_reboot = false; |
Doug Zongker | e5d5ac7 | 2012-04-12 11:01:22 -0700 | [diff] [blame] | 1406 | bool just_exit = false; |
Doug Zongker | b1d1263 | 2014-03-18 10:32:12 -0700 | [diff] [blame] | 1407 | bool shutdown_after = false; |
Tianjie Xu | 3c62b67 | 2016-02-05 18:25:58 -0800 | [diff] [blame] | 1408 | int retry_count = 0; |
Tianjie Xu | 35926c4 | 2016-04-28 18:06:26 -0700 | [diff] [blame] | 1409 | bool security_update = false; |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1410 | |
| 1411 | int arg; |
Tao Bao | 862a4c1 | 2016-06-02 11:16:50 -0700 | [diff] [blame] | 1412 | int option_index; |
Tao Bao | f0ed159 | 2016-12-02 11:32:19 -0800 | [diff] [blame] | 1413 | while ((arg = getopt_long(args_to_parse.size(), args_to_parse.data(), "", OPTIONS, |
| 1414 | &option_index)) != -1) { |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1415 | switch (arg) { |
Tianjie Xu | 3c62b67 | 2016-02-05 18:25:58 -0800 | [diff] [blame] | 1416 | 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] | 1417 | case 'u': update_package = optarg; break; |
Tao Bao | e39a9bc | 2015-03-31 12:19:05 -0700 | [diff] [blame] | 1418 | case 'w': should_wipe_data = true; break; |
Tao Bao | c679f93 | 2015-03-30 09:43:49 -0700 | [diff] [blame] | 1419 | case 'c': should_wipe_cache = true; break; |
Tao Bao | 145d861 | 2015-03-25 15:51:15 -0700 | [diff] [blame] | 1420 | case 't': show_text = true; break; |
Tao Bao | c679f93 | 2015-03-30 09:43:49 -0700 | [diff] [blame] | 1421 | case 's': sideload = true; break; |
| 1422 | case 'a': sideload = true; sideload_auto_reboot = true; break; |
Doug Zongker | e5d5ac7 | 2012-04-12 11:01:22 -0700 | [diff] [blame] | 1423 | case 'x': just_exit = true; break; |
Doug Zongker | 02ec6b8 | 2012-08-22 17:26:40 -0700 | [diff] [blame] | 1424 | case 'l': locale = optarg; break; |
Doug Zongker | c87bab1 | 2013-11-25 13:53:25 -0800 | [diff] [blame] | 1425 | case 'g': { |
| 1426 | if (stage == NULL || *stage == '\0') { |
| 1427 | char buffer[20] = "1/"; |
| 1428 | strncat(buffer, optarg, sizeof(buffer)-3); |
| 1429 | stage = strdup(buffer); |
| 1430 | } |
| 1431 | break; |
| 1432 | } |
Doug Zongker | b1d1263 | 2014-03-18 10:32:12 -0700 | [diff] [blame] | 1433 | case 'p': shutdown_after = true; break; |
Jeff Sharkey | a6e13ae | 2014-09-24 11:46:17 -0700 | [diff] [blame] | 1434 | case 'r': reason = optarg; break; |
Tianjie Xu | 35926c4 | 2016-04-28 18:06:26 -0700 | [diff] [blame] | 1435 | case 'e': security_update = true; break; |
Tao Bao | 862a4c1 | 2016-06-02 11:16:50 -0700 | [diff] [blame] | 1436 | case 0: { |
Paul Crowley | 08404b4 | 2016-12-19 13:04:23 -0800 | [diff] [blame] | 1437 | std::string option = OPTIONS[option_index].name; |
| 1438 | if (option == "wipe_ab") { |
Yabin Cui | 8b309f6 | 2016-06-24 18:22:02 -0700 | [diff] [blame] | 1439 | should_wipe_ab = true; |
Paul Crowley | 08404b4 | 2016-12-19 13:04:23 -0800 | [diff] [blame] | 1440 | } else if (option == "wipe_package_size") { |
Yabin Cui | fd99a31 | 2016-06-09 14:09:39 -0700 | [diff] [blame] | 1441 | android::base::ParseUint(optarg, &wipe_package_size); |
Paul Crowley | 08404b4 | 2016-12-19 13:04:23 -0800 | [diff] [blame] | 1442 | } else if (option == "prompt_and_wipe_data") { |
| 1443 | should_prompt_and_wipe_data = true; |
Tao Bao | 862a4c1 | 2016-06-02 11:16:50 -0700 | [diff] [blame] | 1444 | } |
| 1445 | break; |
| 1446 | } |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1447 | case '?': |
Tianjie Xu | 7b0ad9c | 2016-08-05 18:00:04 -0700 | [diff] [blame] | 1448 | LOG(ERROR) << "Invalid command argument"; |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1449 | continue; |
| 1450 | } |
| 1451 | } |
| 1452 | |
Tao Bao | ac9d94d | 2016-11-03 11:37:15 -0700 | [diff] [blame] | 1453 | if (locale.empty()) { |
| 1454 | if (has_cache) { |
| 1455 | locale = load_locale_from_cache(); |
| 1456 | } |
| 1457 | |
| 1458 | if (locale.empty()) { |
| 1459 | locale = DEFAULT_LOCALE; |
| 1460 | } |
Doug Zongker | 02ec6b8 | 2012-08-22 17:26:40 -0700 | [diff] [blame] | 1461 | } |
Tao Bao | ac9d94d | 2016-11-03 11:37:15 -0700 | [diff] [blame] | 1462 | |
| 1463 | printf("locale is [%s]\n", locale.c_str()); |
Doug Zongker | 0d32f25 | 2014-02-13 15:07:56 -0800 | [diff] [blame] | 1464 | printf("stage is [%s]\n", stage); |
Jeff Sharkey | a6e13ae | 2014-09-24 11:46:17 -0700 | [diff] [blame] | 1465 | printf("reason is [%s]\n", reason); |
Doug Zongker | 02ec6b8 | 2012-08-22 17:26:40 -0700 | [diff] [blame] | 1466 | |
| 1467 | Device* device = make_device(); |
| 1468 | ui = device->GetUI(); |
| 1469 | |
Tao Bao | 736d59c | 2017-01-03 10:15:33 -0800 | [diff] [blame] | 1470 | if (!ui->Init(locale)) { |
Sen Jiang | d530449 | 2016-12-09 16:20:49 -0800 | [diff] [blame] | 1471 | printf("Failed to initialize UI, use stub UI instead."); |
| 1472 | ui = new StubRecoveryUI(); |
| 1473 | } |
Tianjie Xu | 35926c4 | 2016-04-28 18:06:26 -0700 | [diff] [blame] | 1474 | // Set background string to "installing security update" for security update, |
| 1475 | // otherwise set it to "installing system update". |
| 1476 | ui->SetSystemUpdateText(security_update); |
Doug Zongker | c87bab1 | 2013-11-25 13:53:25 -0800 | [diff] [blame] | 1477 | |
| 1478 | int st_cur, st_max; |
| 1479 | if (stage != NULL && sscanf(stage, "%d/%d", &st_cur, &st_max) == 2) { |
| 1480 | ui->SetStage(st_cur, st_max); |
| 1481 | } |
| 1482 | |
Doug Zongker | 02ec6b8 | 2012-08-22 17:26:40 -0700 | [diff] [blame] | 1483 | ui->SetBackground(RecoveryUI::NONE); |
| 1484 | if (show_text) ui->ShowText(true); |
| 1485 | |
Stephen Smalley | 779701d | 2012-02-09 14:13:23 -0500 | [diff] [blame] | 1486 | struct selinux_opt seopts[] = { |
Tao Bao | ac9d94d | 2016-11-03 11:37:15 -0700 | [diff] [blame] | 1487 | { SELABEL_OPT_PATH, "/file_contexts" } |
Stephen Smalley | 779701d | 2012-02-09 14:13:23 -0500 | [diff] [blame] | 1488 | }; |
| 1489 | |
| 1490 | sehandle = selabel_open(SELABEL_CTX_FILE, seopts, 1); |
| 1491 | |
| 1492 | if (!sehandle) { |
Doug Zongker | fafc85b | 2013-07-09 12:29:45 -0700 | [diff] [blame] | 1493 | ui->Print("Warning: No file_contexts\n"); |
Stephen Smalley | 779701d | 2012-02-09 14:13:23 -0500 | [diff] [blame] | 1494 | } |
Stephen Smalley | 779701d | 2012-02-09 14:13:23 -0500 | [diff] [blame] | 1495 | |
Doug Zongker | daefc1d | 2011-10-31 09:34:15 -0700 | [diff] [blame] | 1496 | device->StartRecovery(); |
Doug Zongker | efa1bab | 2010-02-01 15:59:12 -0800 | [diff] [blame] | 1497 | |
Doug Zongker | 56c5105 | 2010-07-01 09:18:44 -0700 | [diff] [blame] | 1498 | printf("Command:"); |
Tao Bao | f0ed159 | 2016-12-02 11:32:19 -0800 | [diff] [blame] | 1499 | for (const auto& arg : args) { |
| 1500 | printf(" \"%s\"", arg.c_str()); |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1501 | } |
Tao Bao | f038ca0 | 2016-12-10 09:24:50 -0800 | [diff] [blame] | 1502 | printf("\n\n"); |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1503 | |
| 1504 | property_list(print_property, NULL); |
Doug Zongker | 56c5105 | 2010-07-01 09:18:44 -0700 | [diff] [blame] | 1505 | printf("\n"); |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1506 | |
Elliott Hughes | bb78d62 | 2015-04-09 20:51:08 -0700 | [diff] [blame] | 1507 | ui->Print("Supported API: %d\n", RECOVERY_API_VERSION); |
| 1508 | |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1509 | int status = INSTALL_SUCCESS; |
| 1510 | |
Doug Zongker | 540d57f | 2011-01-18 13:36:58 -0800 | [diff] [blame] | 1511 | if (update_package != NULL) { |
Tao Bao | 5687001 | 2016-04-29 15:37:05 -0700 | [diff] [blame] | 1512 | // It's not entirely true that we will modify the flash. But we want |
| 1513 | // to log the update attempt since update_package is non-NULL. |
| 1514 | modified_flash = true; |
| 1515 | |
Yabin Cui | 99281df | 2016-02-17 12:21:52 -0800 | [diff] [blame] | 1516 | if (!is_battery_ok()) { |
| 1517 | ui->Print("battery capacity is not enough for installing package, needed is %d%%\n", |
| 1518 | BATTERY_OK_PERCENTAGE); |
Tianjie Xu | 1625583 | 2016-04-30 11:49:59 -0700 | [diff] [blame] | 1519 | // Log the error code to last_install when installation skips due to |
| 1520 | // low battery. |
Tianjie Xu | 06e57ac | 2016-07-11 14:04:08 -0700 | [diff] [blame] | 1521 | log_failure_code(kLowBattery, update_package); |
| 1522 | status = INSTALL_SKIPPED; |
| 1523 | } else if (bootreason_in_blacklist()) { |
| 1524 | // Skip update-on-reboot when bootreason is kernel_panic or similar |
| 1525 | ui->Print("bootreason is in the blacklist; skip OTA installation\n"); |
| 1526 | log_failure_code(kBootreasonInBlacklist, update_package); |
Yabin Cui | 99281df | 2016-02-17 12:21:52 -0800 | [diff] [blame] | 1527 | status = INSTALL_SKIPPED; |
| 1528 | } else { |
| 1529 | status = install_package(update_package, &should_wipe_cache, |
Tianjie Xu | 1625583 | 2016-04-30 11:49:59 -0700 | [diff] [blame] | 1530 | TEMPORARY_INSTALL_FILE, true, retry_count); |
Yabin Cui | 99281df | 2016-02-17 12:21:52 -0800 | [diff] [blame] | 1531 | if (status == INSTALL_SUCCESS && should_wipe_cache) { |
| 1532 | wipe_cache(false, device); |
| 1533 | } |
| 1534 | if (status != INSTALL_SUCCESS) { |
| 1535 | ui->Print("Installation aborted.\n"); |
Tianjie Xu | 3c62b67 | 2016-02-05 18:25:58 -0800 | [diff] [blame] | 1536 | // When I/O error happens, reboot and retry installation EIO_RETRY_COUNT |
| 1537 | // times before we abandon this OTA update. |
| 1538 | if (status == INSTALL_RETRY && retry_count < EIO_RETRY_COUNT) { |
| 1539 | copy_logs(); |
| 1540 | set_retry_bootloader_message(retry_count, argc, argv); |
| 1541 | // Print retry count on screen. |
| 1542 | ui->Print("Retry attempt %d\n", retry_count); |
Doug Zongker | 7c3ae45 | 2013-05-14 11:03:02 -0700 | [diff] [blame] | 1543 | |
Tianjie Xu | 3c62b67 | 2016-02-05 18:25:58 -0800 | [diff] [blame] | 1544 | // Reboot and retry the update |
Elliott Hughes | cb22040 | 2016-09-23 15:30:55 -0700 | [diff] [blame] | 1545 | if (!android::base::SetProperty(ANDROID_RB_PROPERTY, "reboot,recovery")) { |
Tianjie Xu | 3c62b67 | 2016-02-05 18:25:58 -0800 | [diff] [blame] | 1546 | ui->Print("Reboot failed\n"); |
| 1547 | } else { |
| 1548 | while (true) { |
| 1549 | pause(); |
| 1550 | } |
| 1551 | } |
| 1552 | } |
Yabin Cui | 99281df | 2016-02-17 12:21:52 -0800 | [diff] [blame] | 1553 | // If this is an eng or userdebug build, then automatically |
| 1554 | // turn the text display on if the script fails so the error |
| 1555 | // message is visible. |
| 1556 | if (is_ro_debuggable()) { |
| 1557 | ui->ShowText(true); |
| 1558 | } |
Doug Zongker | 7c3ae45 | 2013-05-14 11:03:02 -0700 | [diff] [blame] | 1559 | } |
| 1560 | } |
Tao Bao | e39a9bc | 2015-03-31 12:19:05 -0700 | [diff] [blame] | 1561 | } else if (should_wipe_data) { |
Paul Crowley | 08404b4 | 2016-12-19 13:04:23 -0800 | [diff] [blame] | 1562 | if (!wipe_data(device)) { |
Tao Bao | e39a9bc | 2015-03-31 12:19:05 -0700 | [diff] [blame] | 1563 | status = INSTALL_ERROR; |
| 1564 | } |
Paul Crowley | 08404b4 | 2016-12-19 13:04:23 -0800 | [diff] [blame] | 1565 | } else if (should_prompt_and_wipe_data) { |
| 1566 | ui->ShowText(true); |
| 1567 | ui->SetBackground(RecoveryUI::ERROR); |
| 1568 | if (!prompt_and_wipe_data(device)) { |
| 1569 | status = INSTALL_ERROR; |
| 1570 | } |
| 1571 | ui->ShowText(false); |
Tao Bao | c679f93 | 2015-03-30 09:43:49 -0700 | [diff] [blame] | 1572 | } else if (should_wipe_cache) { |
Tao Bao | e39a9bc | 2015-03-31 12:19:05 -0700 | [diff] [blame] | 1573 | if (!wipe_cache(false, device)) { |
| 1574 | status = INSTALL_ERROR; |
| 1575 | } |
Yabin Cui | 8b309f6 | 2016-06-24 18:22:02 -0700 | [diff] [blame] | 1576 | } else if (should_wipe_ab) { |
Yabin Cui | fd99a31 | 2016-06-09 14:09:39 -0700 | [diff] [blame] | 1577 | if (!wipe_ab_device(wipe_package_size)) { |
Tao Bao | 862a4c1 | 2016-06-02 11:16:50 -0700 | [diff] [blame] | 1578 | status = INSTALL_ERROR; |
| 1579 | } |
Tao Bao | c679f93 | 2015-03-30 09:43:49 -0700 | [diff] [blame] | 1580 | } else if (sideload) { |
| 1581 | // 'adb reboot sideload' acts the same as user presses key combinations |
| 1582 | // to enter the sideload mode. When 'sideload-auto-reboot' is used, text |
| 1583 | // display will NOT be turned on by default. And it will reboot after |
| 1584 | // sideload finishes even if there are errors. Unless one turns on the |
| 1585 | // text display during the installation. This is to enable automated |
| 1586 | // testing. |
| 1587 | if (!sideload_auto_reboot) { |
| 1588 | ui->ShowText(true); |
| 1589 | } |
| 1590 | status = apply_from_adb(ui, &should_wipe_cache, TEMPORARY_INSTALL_FILE); |
| 1591 | if (status == INSTALL_SUCCESS && should_wipe_cache) { |
Tao Bao | e39a9bc | 2015-03-31 12:19:05 -0700 | [diff] [blame] | 1592 | if (!wipe_cache(false, device)) { |
| 1593 | status = INSTALL_ERROR; |
| 1594 | } |
Tao Bao | c679f93 | 2015-03-30 09:43:49 -0700 | [diff] [blame] | 1595 | } |
| 1596 | ui->Print("\nInstall from ADB complete (status: %d).\n", status); |
| 1597 | if (sideload_auto_reboot) { |
| 1598 | ui->Print("Rebooting automatically.\n"); |
| 1599 | } |
Doug Zongker | e5d5ac7 | 2012-04-12 11:01:22 -0700 | [diff] [blame] | 1600 | } else if (!just_exit) { |
Doug Zongker | 02ec6b8 | 2012-08-22 17:26:40 -0700 | [diff] [blame] | 1601 | status = INSTALL_NONE; // No command specified |
| 1602 | ui->SetBackground(RecoveryUI::NO_COMMAND); |
Tao Bao | 785d22c | 2015-05-04 09:34:29 -0700 | [diff] [blame] | 1603 | |
| 1604 | // http://b/17489952 |
| 1605 | // If this is an eng or userdebug build, automatically turn on the |
| 1606 | // text display if no command is specified. |
| 1607 | if (is_ro_debuggable()) { |
| 1608 | ui->ShowText(true); |
| 1609 | } |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1610 | } |
| 1611 | |
Tao Bao | c679f93 | 2015-03-30 09:43:49 -0700 | [diff] [blame] | 1612 | if (!sideload_auto_reboot && (status == INSTALL_ERROR || status == INSTALL_CORRUPT)) { |
Doug Zongker | f24fd7e | 2013-07-02 11:43:25 -0700 | [diff] [blame] | 1613 | copy_logs(); |
Doug Zongker | 02ec6b8 | 2012-08-22 17:26:40 -0700 | [diff] [blame] | 1614 | ui->SetBackground(RecoveryUI::ERROR); |
| 1615 | } |
Tao Bao | c679f93 | 2015-03-30 09:43:49 -0700 | [diff] [blame] | 1616 | |
Doug Zongker | 8d9d3d5 | 2014-04-01 13:20:23 -0700 | [diff] [blame] | 1617 | Device::BuiltinAction after = shutdown_after ? Device::SHUTDOWN : Device::REBOOT; |
Yabin Cui | 99281df | 2016-02-17 12:21:52 -0800 | [diff] [blame] | 1618 | if ((status != INSTALL_SUCCESS && status != INSTALL_SKIPPED && !sideload_auto_reboot) || |
| 1619 | ui->IsTextVisible()) { |
Doug Zongker | 8d9d3d5 | 2014-04-01 13:20:23 -0700 | [diff] [blame] | 1620 | Device::BuiltinAction temp = prompt_and_wait(device, status); |
Tao Bao | c679f93 | 2015-03-30 09:43:49 -0700 | [diff] [blame] | 1621 | if (temp != Device::NO_ACTION) { |
| 1622 | after = temp; |
| 1623 | } |
Doug Zongker | 8674a72 | 2010-09-15 11:08:23 -0700 | [diff] [blame] | 1624 | } |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1625 | |
Doug Zongker | 8d9d3d5 | 2014-04-01 13:20:23 -0700 | [diff] [blame] | 1626 | // Save logs and clean up before rebooting or shutting down. |
Tianjie Xu | c14d95d | 2016-03-24 11:50:34 -0700 | [diff] [blame] | 1627 | finish_recovery(); |
Doug Zongker | 8d9d3d5 | 2014-04-01 13:20:23 -0700 | [diff] [blame] | 1628 | |
| 1629 | switch (after) { |
| 1630 | case Device::SHUTDOWN: |
| 1631 | ui->Print("Shutting down...\n"); |
Elliott Hughes | cb22040 | 2016-09-23 15:30:55 -0700 | [diff] [blame] | 1632 | android::base::SetProperty(ANDROID_RB_PROPERTY, "shutdown,"); |
Doug Zongker | 8d9d3d5 | 2014-04-01 13:20:23 -0700 | [diff] [blame] | 1633 | break; |
| 1634 | |
| 1635 | case Device::REBOOT_BOOTLOADER: |
| 1636 | ui->Print("Rebooting to bootloader...\n"); |
Elliott Hughes | cb22040 | 2016-09-23 15:30:55 -0700 | [diff] [blame] | 1637 | android::base::SetProperty(ANDROID_RB_PROPERTY, "reboot,bootloader"); |
Doug Zongker | 8d9d3d5 | 2014-04-01 13:20:23 -0700 | [diff] [blame] | 1638 | break; |
| 1639 | |
| 1640 | default: |
| 1641 | ui->Print("Rebooting...\n"); |
Elliott Hughes | cb22040 | 2016-09-23 15:30:55 -0700 | [diff] [blame] | 1642 | android::base::SetProperty(ANDROID_RB_PROPERTY, "reboot,"); |
Doug Zongker | 8d9d3d5 | 2014-04-01 13:20:23 -0700 | [diff] [blame] | 1643 | break; |
Doug Zongker | b1d1263 | 2014-03-18 10:32:12 -0700 | [diff] [blame] | 1644 | } |
Tao Bao | 7523863 | 2015-05-27 14:46:17 -0700 | [diff] [blame] | 1645 | while (true) { |
Tao Bao | ac9d94d | 2016-11-03 11:37:15 -0700 | [diff] [blame] | 1646 | pause(); |
Tao Bao | 7523863 | 2015-05-27 14:46:17 -0700 | [diff] [blame] | 1647 | } |
| 1648 | // Should be unreachable. |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1649 | return EXIT_SUCCESS; |
| 1650 | } |