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