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