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