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