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