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