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