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> |
| 18 | #include <errno.h> |
| 19 | #include <fcntl.h> |
| 20 | #include <getopt.h> |
| 21 | #include <limits.h> |
| 22 | #include <linux/input.h> |
| 23 | #include <stdio.h> |
| 24 | #include <stdlib.h> |
| 25 | #include <string.h> |
| 26 | #include <sys/reboot.h> |
Doug Zongker | 23ceeea | 2010-07-08 17:27:55 -0700 | [diff] [blame] | 27 | #include <sys/stat.h> |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 28 | #include <sys/types.h> |
| 29 | #include <time.h> |
| 30 | #include <unistd.h> |
| 31 | |
| 32 | #include "bootloader.h" |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 33 | #include "common.h" |
| 34 | #include "cutils/properties.h" |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 35 | #include "install.h" |
| 36 | #include "minui/minui.h" |
| 37 | #include "minzip/DirUtil.h" |
| 38 | #include "roots.h" |
Doug Zongker | ddd6a28 | 2009-06-09 12:22:33 -0700 | [diff] [blame] | 39 | #include "recovery_ui.h" |
Oscar Montemayor | 52219a6 | 2010-02-25 16:47:02 -0800 | [diff] [blame] | 40 | #include "encryptedfs_provisioning.h" |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 41 | |
| 42 | static const struct option OPTIONS[] = { |
| 43 | { "send_intent", required_argument, NULL, 's' }, |
| 44 | { "update_package", required_argument, NULL, 'u' }, |
| 45 | { "wipe_data", no_argument, NULL, 'w' }, |
| 46 | { "wipe_cache", no_argument, NULL, 'c' }, |
Oscar Montemayor | 52219a6 | 2010-02-25 16:47:02 -0800 | [diff] [blame] | 47 | { "set_encrypted_filesystems", required_argument, NULL, 'e' }, |
Doug Zongker | 988500b | 2009-10-06 14:41:38 -0700 | [diff] [blame] | 48 | { NULL, 0, NULL, 0 }, |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 49 | }; |
| 50 | |
| 51 | static const char *COMMAND_FILE = "CACHE:recovery/command"; |
| 52 | static const char *INTENT_FILE = "CACHE:recovery/intent"; |
| 53 | static const char *LOG_FILE = "CACHE:recovery/log"; |
Ying Wang | 21f0f97 | 2010-08-30 17:26:53 -0700 | [diff] [blame^] | 54 | static const char *SDCARD_PACKAGE_FILE = "CACHE:update.zip"; |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 55 | static const char *TEMPORARY_LOG_FILE = "/tmp/recovery.log"; |
Doug Zongker | 23ceeea | 2010-07-08 17:27:55 -0700 | [diff] [blame] | 56 | static const char *SIDELOAD_TEMP_DIR = "TMP:sideload"; |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 57 | |
| 58 | /* |
| 59 | * The recovery tool communicates with the main system through /cache files. |
| 60 | * /cache/recovery/command - INPUT - command line for tool, one arg per line |
| 61 | * /cache/recovery/log - OUTPUT - combined log file from recovery run(s) |
| 62 | * /cache/recovery/intent - OUTPUT - intent that was passed in |
| 63 | * |
| 64 | * The arguments which may be supplied in the recovery.command file: |
| 65 | * --send_intent=anystring - write the text out to recovery.intent |
| 66 | * --update_package=root:path - verify install an OTA package file |
| 67 | * --wipe_data - erase user data (and cache), then reboot |
| 68 | * --wipe_cache - wipe cache (but not user data), then reboot |
Oscar Montemayor | 0523156 | 2009-11-30 08:40:57 -0800 | [diff] [blame] | 69 | * --set_encrypted_filesystem=on|off - enables / diasables encrypted fs |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 70 | * |
| 71 | * After completing, we remove /cache/recovery/command and reboot. |
| 72 | * Arguments may also be supplied in the bootloader control block (BCB). |
| 73 | * These important scenarios must be safely restartable at any point: |
| 74 | * |
| 75 | * FACTORY RESET |
| 76 | * 1. user selects "factory reset" |
| 77 | * 2. main system writes "--wipe_data" to /cache/recovery/command |
| 78 | * 3. main system reboots into recovery |
| 79 | * 4. get_args() writes BCB with "boot-recovery" and "--wipe_data" |
| 80 | * -- after this, rebooting will restart the erase -- |
| 81 | * 5. erase_root() reformats /data |
| 82 | * 6. erase_root() reformats /cache |
| 83 | * 7. finish_recovery() erases BCB |
| 84 | * -- after this, rebooting will restart the main system -- |
| 85 | * 8. main() calls reboot() to boot main system |
| 86 | * |
| 87 | * OTA INSTALL |
| 88 | * 1. main system downloads OTA package to /cache/some-filename.zip |
| 89 | * 2. main system writes "--update_package=CACHE:some-filename.zip" |
| 90 | * 3. main system reboots into recovery |
| 91 | * 4. get_args() writes BCB with "boot-recovery" and "--update_package=..." |
| 92 | * -- after this, rebooting will attempt to reinstall the update -- |
| 93 | * 5. install_package() attempts to install the update |
| 94 | * NOTE: the package install must itself be restartable from any point |
| 95 | * 6. finish_recovery() erases BCB |
| 96 | * -- after this, rebooting will (try to) restart the main system -- |
| 97 | * 7. ** if install failed ** |
| 98 | * 7a. prompt_and_wait() shows an error icon and waits for the user |
| 99 | * 7b; the user reboots (pulling the battery, etc) into the main system |
| 100 | * 8. main() calls maybe_install_firmware_update() |
| 101 | * ** if the update contained radio/hboot firmware **: |
| 102 | * 8a. m_i_f_u() writes BCB with "boot-recovery" and "--wipe_cache" |
| 103 | * -- after this, rebooting will reformat cache & restart main system -- |
| 104 | * 8b. m_i_f_u() writes firmware image into raw cache partition |
| 105 | * 8c. m_i_f_u() writes BCB with "update-radio/hboot" and "--wipe_cache" |
| 106 | * -- after this, rebooting will attempt to reinstall firmware -- |
| 107 | * 8d. bootloader tries to flash firmware |
| 108 | * 8e. bootloader writes BCB with "boot-recovery" (keeping "--wipe_cache") |
| 109 | * -- after this, rebooting will reformat cache & restart main system -- |
| 110 | * 8f. erase_root() reformats /cache |
| 111 | * 8g. finish_recovery() erases BCB |
| 112 | * -- after this, rebooting will (try to) restart the main system -- |
| 113 | * 9. main() calls reboot() to boot main system |
Oscar Montemayor | 0523156 | 2009-11-30 08:40:57 -0800 | [diff] [blame] | 114 | * |
Oscar Montemayor | 52219a6 | 2010-02-25 16:47:02 -0800 | [diff] [blame] | 115 | * SECURE FILE SYSTEMS ENABLE/DISABLE |
Oscar Montemayor | 0523156 | 2009-11-30 08:40:57 -0800 | [diff] [blame] | 116 | * 1. user selects "enable encrypted file systems" |
Oscar Montemayor | 52219a6 | 2010-02-25 16:47:02 -0800 | [diff] [blame] | 117 | * 2. main system writes "--set_encrypted_filesystems=on|off" to |
Oscar Montemayor | 0523156 | 2009-11-30 08:40:57 -0800 | [diff] [blame] | 118 | * /cache/recovery/command |
| 119 | * 3. main system reboots into recovery |
| 120 | * 4. get_args() writes BCB with "boot-recovery" and |
| 121 | * "--set_encrypted_filesystems=on|off" |
| 122 | * -- after this, rebooting will restart the transition -- |
| 123 | * 5. read_encrypted_fs_info() retrieves encrypted file systems settings from /data |
| 124 | * Settings include: property to specify the Encrypted FS istatus and |
| 125 | * FS encryption key if enabled (not yet implemented) |
| 126 | * 6. erase_root() reformats /data |
| 127 | * 7. erase_root() reformats /cache |
| 128 | * 8. restore_encrypted_fs_info() writes required encrypted file systems settings to /data |
| 129 | * Settings include: property to specify the Encrypted FS status and |
| 130 | * FS encryption key if enabled (not yet implemented) |
| 131 | * 9. finish_recovery() erases BCB |
| 132 | * -- after this, rebooting will restart the main system -- |
| 133 | * 10. main() calls reboot() to boot main system |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 134 | */ |
| 135 | |
| 136 | static const int MAX_ARG_LENGTH = 4096; |
| 137 | static const int MAX_ARGS = 100; |
| 138 | |
| 139 | // open a file given in root:path format, mounting partitions as necessary |
| 140 | static FILE* |
| 141 | fopen_root_path(const char *root_path, const char *mode) { |
| 142 | if (ensure_root_path_mounted(root_path) != 0) { |
| 143 | LOGE("Can't mount %s\n", root_path); |
| 144 | return NULL; |
| 145 | } |
| 146 | |
| 147 | char path[PATH_MAX] = ""; |
| 148 | if (translate_root_path(root_path, path, sizeof(path)) == NULL) { |
| 149 | LOGE("Bad path %s\n", root_path); |
| 150 | return NULL; |
| 151 | } |
| 152 | |
| 153 | // When writing, try to create the containing directory, if necessary. |
| 154 | // Use generous permissions, the system (init.rc) will reset them. |
| 155 | if (strchr("wa", mode[0])) dirCreateHierarchy(path, 0777, NULL, 1); |
| 156 | |
| 157 | FILE *fp = fopen(path, mode); |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 158 | return fp; |
| 159 | } |
| 160 | |
| 161 | // close a file, log an error if the error indicator is set |
| 162 | static void |
| 163 | check_and_fclose(FILE *fp, const char *name) { |
| 164 | fflush(fp); |
| 165 | if (ferror(fp)) LOGE("Error in %s\n(%s)\n", name, strerror(errno)); |
| 166 | fclose(fp); |
| 167 | } |
| 168 | |
| 169 | // command line args come from, in decreasing precedence: |
| 170 | // - the actual command line |
| 171 | // - the bootloader control block (one per line, after "recovery") |
| 172 | // - the contents of COMMAND_FILE (one per line) |
| 173 | static void |
| 174 | get_args(int *argc, char ***argv) { |
| 175 | struct bootloader_message boot; |
| 176 | memset(&boot, 0, sizeof(boot)); |
| 177 | get_bootloader_message(&boot); // this may fail, leaving a zeroed structure |
| 178 | |
| 179 | if (boot.command[0] != 0 && boot.command[0] != 255) { |
| 180 | LOGI("Boot command: %.*s\n", sizeof(boot.command), boot.command); |
| 181 | } |
| 182 | |
| 183 | if (boot.status[0] != 0 && boot.status[0] != 255) { |
| 184 | LOGI("Boot status: %.*s\n", sizeof(boot.status), boot.status); |
| 185 | } |
| 186 | |
| 187 | // --- if arguments weren't supplied, look in the bootloader control block |
| 188 | if (*argc <= 1) { |
| 189 | boot.recovery[sizeof(boot.recovery) - 1] = '\0'; // Ensure termination |
| 190 | const char *arg = strtok(boot.recovery, "\n"); |
| 191 | if (arg != NULL && !strcmp(arg, "recovery")) { |
| 192 | *argv = (char **) malloc(sizeof(char *) * MAX_ARGS); |
| 193 | (*argv)[0] = strdup(arg); |
| 194 | for (*argc = 1; *argc < MAX_ARGS; ++*argc) { |
| 195 | if ((arg = strtok(NULL, "\n")) == NULL) break; |
| 196 | (*argv)[*argc] = strdup(arg); |
| 197 | } |
| 198 | LOGI("Got arguments from boot message\n"); |
| 199 | } else if (boot.recovery[0] != 0 && boot.recovery[0] != 255) { |
| 200 | LOGE("Bad boot message\n\"%.20s\"\n", boot.recovery); |
| 201 | } |
| 202 | } |
| 203 | |
| 204 | // --- if that doesn't work, try the command file |
| 205 | if (*argc <= 1) { |
| 206 | FILE *fp = fopen_root_path(COMMAND_FILE, "r"); |
| 207 | if (fp != NULL) { |
| 208 | char *argv0 = (*argv)[0]; |
| 209 | *argv = (char **) malloc(sizeof(char *) * MAX_ARGS); |
| 210 | (*argv)[0] = argv0; // use the same program name |
| 211 | |
| 212 | char buf[MAX_ARG_LENGTH]; |
| 213 | for (*argc = 1; *argc < MAX_ARGS; ++*argc) { |
| 214 | if (!fgets(buf, sizeof(buf), fp)) break; |
| 215 | (*argv)[*argc] = strdup(strtok(buf, "\r\n")); // Strip newline. |
| 216 | } |
| 217 | |
| 218 | check_and_fclose(fp, COMMAND_FILE); |
| 219 | LOGI("Got arguments from %s\n", COMMAND_FILE); |
| 220 | } |
| 221 | } |
| 222 | |
| 223 | // --> write the arguments we have back into the bootloader control block |
| 224 | // always boot into recovery after this (until finish_recovery() is called) |
| 225 | strlcpy(boot.command, "boot-recovery", sizeof(boot.command)); |
| 226 | strlcpy(boot.recovery, "recovery\n", sizeof(boot.recovery)); |
| 227 | int i; |
| 228 | for (i = 1; i < *argc; ++i) { |
| 229 | strlcat(boot.recovery, (*argv)[i], sizeof(boot.recovery)); |
| 230 | strlcat(boot.recovery, "\n", sizeof(boot.recovery)); |
| 231 | } |
| 232 | set_bootloader_message(&boot); |
| 233 | } |
| 234 | |
Doug Zongker | 34c98df | 2009-08-18 12:05:45 -0700 | [diff] [blame] | 235 | static void |
Oscar Montemayor | 0523156 | 2009-11-30 08:40:57 -0800 | [diff] [blame] | 236 | set_sdcard_update_bootloader_message() { |
Doug Zongker | 34c98df | 2009-08-18 12:05:45 -0700 | [diff] [blame] | 237 | struct bootloader_message boot; |
| 238 | memset(&boot, 0, sizeof(boot)); |
| 239 | strlcpy(boot.command, "boot-recovery", sizeof(boot.command)); |
| 240 | strlcpy(boot.recovery, "recovery\n", sizeof(boot.recovery)); |
| 241 | set_bootloader_message(&boot); |
| 242 | } |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 243 | |
| 244 | // clear the recovery command and prepare to boot a (hopefully working) system, |
| 245 | // copy our log file to cache as well (for the system to read), and |
| 246 | // record any intent we were asked to communicate back to the system. |
| 247 | // this function is idempotent: call it as many times as you like. |
| 248 | static void |
Oscar Montemayor | 0523156 | 2009-11-30 08:40:57 -0800 | [diff] [blame] | 249 | finish_recovery(const char *send_intent) { |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 250 | // By this point, we're ready to return to the main system... |
| 251 | if (send_intent != NULL) { |
| 252 | FILE *fp = fopen_root_path(INTENT_FILE, "w"); |
Jay Freeman (saurik) | 619ec2f | 2008-11-17 01:56:05 +0000 | [diff] [blame] | 253 | if (fp == NULL) { |
| 254 | LOGE("Can't open %s\n", INTENT_FILE); |
| 255 | } else { |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 256 | fputs(send_intent, fp); |
| 257 | check_and_fclose(fp, INTENT_FILE); |
| 258 | } |
| 259 | } |
| 260 | |
| 261 | // Copy logs to cache so the system can find out what happened. |
| 262 | FILE *log = fopen_root_path(LOG_FILE, "a"); |
Jay Freeman (saurik) | 619ec2f | 2008-11-17 01:56:05 +0000 | [diff] [blame] | 263 | if (log == NULL) { |
| 264 | LOGE("Can't open %s\n", LOG_FILE); |
| 265 | } else { |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 266 | FILE *tmplog = fopen(TEMPORARY_LOG_FILE, "r"); |
| 267 | if (tmplog == NULL) { |
| 268 | LOGE("Can't open %s\n", TEMPORARY_LOG_FILE); |
| 269 | } else { |
| 270 | static long tmplog_offset = 0; |
| 271 | fseek(tmplog, tmplog_offset, SEEK_SET); // Since last write |
| 272 | char buf[4096]; |
| 273 | while (fgets(buf, sizeof(buf), tmplog)) fputs(buf, log); |
| 274 | tmplog_offset = ftell(tmplog); |
| 275 | check_and_fclose(tmplog, TEMPORARY_LOG_FILE); |
| 276 | } |
| 277 | check_and_fclose(log, LOG_FILE); |
| 278 | } |
| 279 | |
Oscar Montemayor | 0523156 | 2009-11-30 08:40:57 -0800 | [diff] [blame] | 280 | // Reset to mormal system boot so recovery won't cycle indefinitely. |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 281 | struct bootloader_message boot; |
| 282 | memset(&boot, 0, sizeof(boot)); |
| 283 | set_bootloader_message(&boot); |
| 284 | |
| 285 | // Remove the command file, so recovery won't repeat indefinitely. |
| 286 | char path[PATH_MAX] = ""; |
| 287 | if (ensure_root_path_mounted(COMMAND_FILE) != 0 || |
| 288 | translate_root_path(COMMAND_FILE, path, sizeof(path)) == NULL || |
| 289 | (unlink(path) && errno != ENOENT)) { |
| 290 | LOGW("Can't unlink %s\n", COMMAND_FILE); |
| 291 | } |
| 292 | |
| 293 | sync(); // For good measure. |
| 294 | } |
| 295 | |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 296 | static int |
Oscar Montemayor | 0523156 | 2009-11-30 08:40:57 -0800 | [diff] [blame] | 297 | erase_root(const char *root) { |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 298 | ui_set_background(BACKGROUND_ICON_INSTALLING); |
| 299 | ui_show_indeterminate_progress(); |
| 300 | ui_print("Formatting %s...\n", root); |
| 301 | return format_root_device(root); |
| 302 | } |
| 303 | |
Doug Zongker | 23ceeea | 2010-07-08 17:27:55 -0700 | [diff] [blame] | 304 | static char* |
| 305 | copy_sideloaded_package(const char* original_root_path) { |
| 306 | if (ensure_root_path_mounted(original_root_path) != 0) { |
| 307 | LOGE("Can't mount %s\n", original_root_path); |
| 308 | return NULL; |
| 309 | } |
| 310 | |
| 311 | char original_path[PATH_MAX] = ""; |
| 312 | if (translate_root_path(original_root_path, original_path, |
| 313 | sizeof(original_path)) == NULL) { |
| 314 | LOGE("Bad path %s\n", original_root_path); |
| 315 | return NULL; |
| 316 | } |
| 317 | |
| 318 | if (ensure_root_path_mounted(SIDELOAD_TEMP_DIR) != 0) { |
| 319 | LOGE("Can't mount %s\n", SIDELOAD_TEMP_DIR); |
| 320 | return NULL; |
| 321 | } |
| 322 | |
| 323 | char copy_path[PATH_MAX] = ""; |
| 324 | if (translate_root_path(SIDELOAD_TEMP_DIR, copy_path, |
| 325 | sizeof(copy_path)) == NULL) { |
| 326 | LOGE("Bad path %s\n", SIDELOAD_TEMP_DIR); |
| 327 | return NULL; |
| 328 | } |
| 329 | |
| 330 | if (mkdir(copy_path, 0700) != 0) { |
| 331 | if (errno != EEXIST) { |
| 332 | LOGE("Can't mkdir %s (%s)\n", SIDELOAD_TEMP_DIR, strerror(errno)); |
| 333 | return NULL; |
| 334 | } |
| 335 | } |
| 336 | |
| 337 | struct stat st; |
| 338 | if (stat(copy_path, &st) != 0) { |
| 339 | LOGE("failed to stat %s (%s)\n", copy_path, strerror(errno)); |
| 340 | return NULL; |
| 341 | } |
| 342 | if (!S_ISDIR(st.st_mode)) { |
| 343 | LOGE("%s isn't a directory\n", copy_path); |
| 344 | return NULL; |
| 345 | } |
| 346 | if ((st.st_mode & 0777) != 0700) { |
| 347 | LOGE("%s has perms %o\n", copy_path, st.st_mode); |
| 348 | return NULL; |
| 349 | } |
| 350 | if (st.st_uid != 0) { |
| 351 | LOGE("%s owned by %lu; not root\n", copy_path, st.st_uid); |
| 352 | return NULL; |
| 353 | } |
| 354 | |
| 355 | strcat(copy_path, "/package.zip"); |
| 356 | |
| 357 | char* buffer = malloc(BUFSIZ); |
| 358 | if (buffer == NULL) { |
| 359 | LOGE("Failed to allocate buffer\n"); |
| 360 | return NULL; |
| 361 | } |
| 362 | |
| 363 | size_t read; |
| 364 | FILE* fin = fopen(original_path, "rb"); |
| 365 | if (fin == NULL) { |
| 366 | LOGE("Failed to open %s (%s)\n", original_path, strerror(errno)); |
| 367 | return NULL; |
| 368 | } |
| 369 | FILE* fout = fopen(copy_path, "wb"); |
| 370 | if (fout == NULL) { |
| 371 | LOGE("Failed to open %s (%s)\n", copy_path, strerror(errno)); |
| 372 | return NULL; |
| 373 | } |
| 374 | |
| 375 | while ((read = fread(buffer, 1, BUFSIZ, fin)) > 0) { |
| 376 | if (fwrite(buffer, 1, read, fout) != read) { |
| 377 | LOGE("Short write of %s (%s)\n", copy_path, strerror(errno)); |
| 378 | return NULL; |
| 379 | } |
| 380 | } |
| 381 | |
| 382 | free(buffer); |
| 383 | |
| 384 | if (fclose(fout) != 0) { |
| 385 | LOGE("Failed to close %s (%s)\n", copy_path, strerror(errno)); |
| 386 | return NULL; |
| 387 | } |
| 388 | |
| 389 | if (fclose(fin) != 0) { |
| 390 | LOGE("Failed to close %s (%s)\n", original_path, strerror(errno)); |
| 391 | return NULL; |
| 392 | } |
| 393 | |
| 394 | // "adb push" is happy to overwrite read-only files when it's |
| 395 | // running as root, but we'll try anyway. |
| 396 | if (chmod(copy_path, 0400) != 0) { |
| 397 | LOGE("Failed to chmod %s (%s)\n", copy_path, strerror(errno)); |
| 398 | return NULL; |
| 399 | } |
| 400 | |
| 401 | char* copy_root_path = malloc(strlen(SIDELOAD_TEMP_DIR) + 20); |
| 402 | strcpy(copy_root_path, SIDELOAD_TEMP_DIR); |
| 403 | strcat(copy_root_path, "/package.zip"); |
| 404 | return copy_root_path; |
| 405 | } |
| 406 | |
Doug Zongker | f93d816 | 2009-09-22 15:16:02 -0700 | [diff] [blame] | 407 | static char** |
| 408 | prepend_title(char** headers) { |
Doug Zongker | d683785 | 2009-06-17 22:07:13 -0700 | [diff] [blame] | 409 | char* title[] = { "Android system recovery <" |
Doug Zongker | 64893cc | 2009-07-14 16:31:56 -0700 | [diff] [blame] | 410 | EXPAND(RECOVERY_API_VERSION) "e>", |
Doug Zongker | d683785 | 2009-06-17 22:07:13 -0700 | [diff] [blame] | 411 | "", |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 412 | NULL }; |
| 413 | |
Doug Zongker | d683785 | 2009-06-17 22:07:13 -0700 | [diff] [blame] | 414 | // count the number of lines in our title, plus the |
Doug Zongker | f93d816 | 2009-09-22 15:16:02 -0700 | [diff] [blame] | 415 | // caller-provided headers. |
Doug Zongker | d683785 | 2009-06-17 22:07:13 -0700 | [diff] [blame] | 416 | int count = 0; |
| 417 | char** p; |
| 418 | for (p = title; *p; ++p, ++count); |
Doug Zongker | f93d816 | 2009-09-22 15:16:02 -0700 | [diff] [blame] | 419 | for (p = headers; *p; ++p, ++count); |
Doug Zongker | d683785 | 2009-06-17 22:07:13 -0700 | [diff] [blame] | 420 | |
Doug Zongker | f93d816 | 2009-09-22 15:16:02 -0700 | [diff] [blame] | 421 | char** new_headers = malloc((count+1) * sizeof(char*)); |
| 422 | char** h = new_headers; |
Doug Zongker | d683785 | 2009-06-17 22:07:13 -0700 | [diff] [blame] | 423 | for (p = title; *p; ++p, ++h) *h = *p; |
Doug Zongker | f93d816 | 2009-09-22 15:16:02 -0700 | [diff] [blame] | 424 | for (p = headers; *p; ++p, ++h) *h = *p; |
Doug Zongker | d683785 | 2009-06-17 22:07:13 -0700 | [diff] [blame] | 425 | *h = NULL; |
| 426 | |
Doug Zongker | f93d816 | 2009-09-22 15:16:02 -0700 | [diff] [blame] | 427 | return new_headers; |
| 428 | } |
| 429 | |
| 430 | static int |
| 431 | get_menu_selection(char** headers, char** items, int menu_only) { |
| 432 | // throw away keys pressed previously, so user doesn't |
| 433 | // accidentally trigger menu items. |
| 434 | ui_clear_key_queue(); |
| 435 | |
| 436 | ui_start_menu(headers, items); |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 437 | int selected = 0; |
| 438 | int chosen_item = -1; |
| 439 | |
Doug Zongker | f93d816 | 2009-09-22 15:16:02 -0700 | [diff] [blame] | 440 | while (chosen_item < 0) { |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 441 | int key = ui_wait_key(); |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 442 | int visible = ui_text_visible(); |
| 443 | |
Doug Zongker | ddd6a28 | 2009-06-09 12:22:33 -0700 | [diff] [blame] | 444 | int action = device_handle_key(key, visible); |
| 445 | |
| 446 | if (action < 0) { |
| 447 | switch (action) { |
| 448 | case HIGHLIGHT_UP: |
| 449 | --selected; |
| 450 | selected = ui_menu_select(selected); |
| 451 | break; |
| 452 | case HIGHLIGHT_DOWN: |
| 453 | ++selected; |
| 454 | selected = ui_menu_select(selected); |
| 455 | break; |
| 456 | case SELECT_ITEM: |
| 457 | chosen_item = selected; |
| 458 | break; |
| 459 | case NO_ACTION: |
| 460 | break; |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 461 | } |
Doug Zongker | f93d816 | 2009-09-22 15:16:02 -0700 | [diff] [blame] | 462 | } else if (!menu_only) { |
Doug Zongker | ddd6a28 | 2009-06-09 12:22:33 -0700 | [diff] [blame] | 463 | chosen_item = action; |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 464 | } |
Doug Zongker | f93d816 | 2009-09-22 15:16:02 -0700 | [diff] [blame] | 465 | } |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 466 | |
Doug Zongker | f93d816 | 2009-09-22 15:16:02 -0700 | [diff] [blame] | 467 | ui_end_menu(); |
| 468 | return chosen_item; |
| 469 | } |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 470 | |
Doug Zongker | f93d816 | 2009-09-22 15:16:02 -0700 | [diff] [blame] | 471 | static void |
| 472 | wipe_data(int confirm) { |
| 473 | if (confirm) { |
| 474 | static char** title_headers = NULL; |
Doug Zongker | ddd6a28 | 2009-06-09 12:22:33 -0700 | [diff] [blame] | 475 | |
Doug Zongker | f93d816 | 2009-09-22 15:16:02 -0700 | [diff] [blame] | 476 | if (title_headers == NULL) { |
| 477 | char* headers[] = { "Confirm wipe of all user data?", |
| 478 | " THIS CAN NOT BE UNDONE.", |
| 479 | "", |
| 480 | NULL }; |
| 481 | title_headers = prepend_title(headers); |
| 482 | } |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 483 | |
Doug Zongker | f93d816 | 2009-09-22 15:16:02 -0700 | [diff] [blame] | 484 | char* items[] = { " No", |
| 485 | " No", |
| 486 | " No", |
| 487 | " No", |
| 488 | " No", |
| 489 | " No", |
| 490 | " No", |
| 491 | " Yes -- delete all user data", // [7] |
| 492 | " No", |
| 493 | " No", |
| 494 | " No", |
| 495 | NULL }; |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 496 | |
Doug Zongker | f93d816 | 2009-09-22 15:16:02 -0700 | [diff] [blame] | 497 | int chosen_item = get_menu_selection(title_headers, items, 1); |
| 498 | if (chosen_item != 7) { |
| 499 | return; |
| 500 | } |
| 501 | } |
Doug Zongker | 1066d2c | 2009-04-01 13:57:40 -0700 | [diff] [blame] | 502 | |
Doug Zongker | f93d816 | 2009-09-22 15:16:02 -0700 | [diff] [blame] | 503 | ui_print("\n-- Wiping data...\n"); |
| 504 | device_wipe_data(); |
| 505 | erase_root("DATA:"); |
| 506 | erase_root("CACHE:"); |
| 507 | ui_print("Data wipe complete.\n"); |
| 508 | } |
| 509 | |
| 510 | static void |
Oscar Montemayor | 0523156 | 2009-11-30 08:40:57 -0800 | [diff] [blame] | 511 | prompt_and_wait() { |
Doug Zongker | f93d816 | 2009-09-22 15:16:02 -0700 | [diff] [blame] | 512 | char** headers = prepend_title(MENU_HEADERS); |
| 513 | |
| 514 | for (;;) { |
| 515 | finish_recovery(NULL); |
| 516 | ui_reset_progress(); |
| 517 | |
| 518 | int chosen_item = get_menu_selection(headers, MENU_ITEMS, 0); |
| 519 | |
| 520 | // device-specific code may take some action here. It may |
| 521 | // return one of the core actions handled in the switch |
| 522 | // statement below. |
| 523 | chosen_item = device_perform_action(chosen_item); |
| 524 | |
| 525 | switch (chosen_item) { |
| 526 | case ITEM_REBOOT: |
| 527 | return; |
| 528 | |
| 529 | case ITEM_WIPE_DATA: |
| 530 | wipe_data(ui_text_visible()); |
| 531 | if (!ui_text_visible()) return; |
| 532 | break; |
| 533 | |
| 534 | case ITEM_WIPE_CACHE: |
| 535 | ui_print("\n-- Wiping cache...\n"); |
| 536 | erase_root("CACHE:"); |
| 537 | ui_print("Cache wipe complete.\n"); |
| 538 | if (!ui_text_visible()) return; |
| 539 | break; |
| 540 | |
| 541 | case ITEM_APPLY_SDCARD: |
| 542 | ui_print("\n-- Install from sdcard...\n"); |
Doug Zongker | 23ceeea | 2010-07-08 17:27:55 -0700 | [diff] [blame] | 543 | int status = INSTALL_CORRUPT; |
| 544 | char* copy = copy_sideloaded_package(SDCARD_PACKAGE_FILE); |
| 545 | if (copy != NULL) { |
| 546 | set_sdcard_update_bootloader_message(); |
| 547 | status = install_package(copy); |
| 548 | free(copy); |
| 549 | } |
Doug Zongker | f93d816 | 2009-09-22 15:16:02 -0700 | [diff] [blame] | 550 | if (status != INSTALL_SUCCESS) { |
| 551 | ui_set_background(BACKGROUND_ICON_ERROR); |
| 552 | ui_print("Installation aborted.\n"); |
| 553 | } else if (!ui_text_visible()) { |
| 554 | return; // reboot if logs aren't visible |
| 555 | } else { |
Doug Zongker | e08991e | 2010-02-02 13:09:52 -0800 | [diff] [blame] | 556 | ui_print("\nInstall from sdcard complete.\n"); |
Doug Zongker | f93d816 | 2009-09-22 15:16:02 -0700 | [diff] [blame] | 557 | } |
| 558 | break; |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 559 | } |
| 560 | } |
| 561 | } |
| 562 | |
| 563 | static void |
Oscar Montemayor | 0523156 | 2009-11-30 08:40:57 -0800 | [diff] [blame] | 564 | print_property(const char *key, const char *name, void *cookie) { |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 565 | fprintf(stderr, "%s=%s\n", key, name); |
| 566 | } |
| 567 | |
| 568 | int |
Oscar Montemayor | 0523156 | 2009-11-30 08:40:57 -0800 | [diff] [blame] | 569 | main(int argc, char **argv) { |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 570 | time_t start = time(NULL); |
| 571 | |
| 572 | // If these fail, there's not really anywhere to complain... |
| 573 | freopen(TEMPORARY_LOG_FILE, "a", stdout); setbuf(stdout, NULL); |
| 574 | freopen(TEMPORARY_LOG_FILE, "a", stderr); setbuf(stderr, NULL); |
| 575 | fprintf(stderr, "Starting recovery on %s", ctime(&start)); |
| 576 | |
| 577 | ui_init(); |
| 578 | get_args(&argc, &argv); |
| 579 | |
Ying Wang | 21f0f97 | 2010-08-30 17:26:53 -0700 | [diff] [blame^] | 580 | ui_print("Rebooting started...\n"); |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 581 | int previous_runs = 0; |
| 582 | const char *send_intent = NULL; |
| 583 | const char *update_package = NULL; |
Oscar Montemayor | 52219a6 | 2010-02-25 16:47:02 -0800 | [diff] [blame] | 584 | const char *encrypted_fs_mode = NULL; |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 585 | int wipe_data = 0, wipe_cache = 0; |
Oscar Montemayor | 52219a6 | 2010-02-25 16:47:02 -0800 | [diff] [blame] | 586 | int toggle_secure_fs = 0; |
| 587 | encrypted_fs_info encrypted_fs_data; |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 588 | |
| 589 | int arg; |
| 590 | while ((arg = getopt_long(argc, argv, "", OPTIONS, NULL)) != -1) { |
| 591 | switch (arg) { |
| 592 | case 'p': previous_runs = atoi(optarg); break; |
| 593 | case 's': send_intent = optarg; break; |
| 594 | case 'u': update_package = optarg; break; |
| 595 | case 'w': wipe_data = wipe_cache = 1; break; |
| 596 | case 'c': wipe_cache = 1; break; |
Oscar Montemayor | 52219a6 | 2010-02-25 16:47:02 -0800 | [diff] [blame] | 597 | case 'e': encrypted_fs_mode = optarg; toggle_secure_fs = 1; break; |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 598 | case '?': |
| 599 | LOGE("Invalid command argument\n"); |
| 600 | continue; |
| 601 | } |
| 602 | } |
| 603 | |
Doug Zongker | efa1bab | 2010-02-01 15:59:12 -0800 | [diff] [blame] | 604 | device_recovery_start(); |
| 605 | |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 606 | fprintf(stderr, "Command:"); |
| 607 | for (arg = 0; arg < argc; arg++) { |
| 608 | fprintf(stderr, " \"%s\"", argv[arg]); |
| 609 | } |
| 610 | fprintf(stderr, "\n\n"); |
| 611 | |
| 612 | property_list(print_property, NULL); |
| 613 | fprintf(stderr, "\n"); |
| 614 | |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 615 | int status = INSTALL_SUCCESS; |
| 616 | |
Oscar Montemayor | 52219a6 | 2010-02-25 16:47:02 -0800 | [diff] [blame] | 617 | if (toggle_secure_fs) { |
| 618 | if (strcmp(encrypted_fs_mode,"on") == 0) { |
| 619 | encrypted_fs_data.mode = MODE_ENCRYPTED_FS_ENABLED; |
Oscar Montemayor | 0523156 | 2009-11-30 08:40:57 -0800 | [diff] [blame] | 620 | ui_print("Enabling Encrypted FS.\n"); |
Oscar Montemayor | 52219a6 | 2010-02-25 16:47:02 -0800 | [diff] [blame] | 621 | } else if (strcmp(encrypted_fs_mode,"off") == 0) { |
| 622 | encrypted_fs_data.mode = MODE_ENCRYPTED_FS_DISABLED; |
Oscar Montemayor | 0523156 | 2009-11-30 08:40:57 -0800 | [diff] [blame] | 623 | ui_print("Disabling Encrypted FS.\n"); |
| 624 | } else { |
| 625 | ui_print("Error: invalid Encrypted FS setting.\n"); |
| 626 | status = INSTALL_ERROR; |
| 627 | } |
| 628 | |
| 629 | // Recovery strategy: if the data partition is damaged, disable encrypted file systems. |
| 630 | // This preventsthe device recycling endlessly in recovery mode. |
Oscar Montemayor | 52219a6 | 2010-02-25 16:47:02 -0800 | [diff] [blame] | 631 | if ((encrypted_fs_data.mode == MODE_ENCRYPTED_FS_ENABLED) && |
| 632 | (read_encrypted_fs_info(&encrypted_fs_data))) { |
Oscar Montemayor | 0523156 | 2009-11-30 08:40:57 -0800 | [diff] [blame] | 633 | ui_print("Encrypted FS change aborted, resetting to disabled state.\n"); |
Oscar Montemayor | 52219a6 | 2010-02-25 16:47:02 -0800 | [diff] [blame] | 634 | encrypted_fs_data.mode = MODE_ENCRYPTED_FS_DISABLED; |
Oscar Montemayor | 0523156 | 2009-11-30 08:40:57 -0800 | [diff] [blame] | 635 | } |
| 636 | |
| 637 | if (status != INSTALL_ERROR) { |
| 638 | if (erase_root("DATA:")) { |
| 639 | ui_print("Data wipe failed.\n"); |
| 640 | status = INSTALL_ERROR; |
| 641 | } else if (erase_root("CACHE:")) { |
| 642 | ui_print("Cache wipe failed.\n"); |
| 643 | status = INSTALL_ERROR; |
Oscar Montemayor | 52219a6 | 2010-02-25 16:47:02 -0800 | [diff] [blame] | 644 | } else if ((encrypted_fs_data.mode == MODE_ENCRYPTED_FS_ENABLED) && |
| 645 | (restore_encrypted_fs_info(&encrypted_fs_data))) { |
Oscar Montemayor | 0523156 | 2009-11-30 08:40:57 -0800 | [diff] [blame] | 646 | ui_print("Encrypted FS change aborted.\n"); |
| 647 | status = INSTALL_ERROR; |
| 648 | } else { |
| 649 | ui_print("Successfully updated Encrypted FS.\n"); |
| 650 | status = INSTALL_SUCCESS; |
| 651 | } |
| 652 | } |
| 653 | } else if (update_package != NULL) { |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 654 | status = install_package(update_package); |
| 655 | if (status != INSTALL_SUCCESS) ui_print("Installation aborted.\n"); |
Doug Zongker | b128f54 | 2009-06-18 15:07:14 -0700 | [diff] [blame] | 656 | } else if (wipe_data) { |
| 657 | if (device_wipe_data()) status = INSTALL_ERROR; |
| 658 | if (erase_root("DATA:")) status = INSTALL_ERROR; |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 659 | if (wipe_cache && erase_root("CACHE:")) status = INSTALL_ERROR; |
| 660 | if (status != INSTALL_SUCCESS) ui_print("Data wipe failed.\n"); |
Doug Zongker | b128f54 | 2009-06-18 15:07:14 -0700 | [diff] [blame] | 661 | } else if (wipe_cache) { |
| 662 | if (wipe_cache && erase_root("CACHE:")) status = INSTALL_ERROR; |
| 663 | if (status != INSTALL_SUCCESS) ui_print("Cache wipe failed.\n"); |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 664 | } else { |
| 665 | status = INSTALL_ERROR; // No command specified |
| 666 | } |
| 667 | |
| 668 | if (status != INSTALL_SUCCESS) ui_set_background(BACKGROUND_ICON_ERROR); |
| 669 | if (status != INSTALL_SUCCESS || ui_text_visible()) prompt_and_wait(); |
| 670 | |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 671 | // Otherwise, get ready to boot the main system... |
| 672 | finish_recovery(send_intent); |
| 673 | ui_print("Rebooting...\n"); |
| 674 | sync(); |
| 675 | reboot(RB_AUTOBOOT); |
| 676 | return EXIT_SUCCESS; |
| 677 | } |