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> |
Doug Zongker | 23ceeea | 2010-07-08 17:27:55 -0700 | [diff] [blame] | 26 | #include <sys/stat.h> |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 27 | #include <sys/types.h> |
| 28 | #include <time.h> |
| 29 | #include <unistd.h> |
Doug Zongker | 8674a72 | 2010-09-15 11:08:23 -0700 | [diff] [blame] | 30 | #include <dirent.h> |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 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" |
Ken Sumrall | 6e4472a | 2011-03-07 23:37:27 -0800 | [diff] [blame] | 35 | #include "cutils/android_reboot.h" |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 36 | #include "install.h" |
| 37 | #include "minui/minui.h" |
| 38 | #include "minzip/DirUtil.h" |
| 39 | #include "roots.h" |
Doug Zongker | 28ce47c | 2011-10-28 10:33:05 -0700 | [diff] [blame] | 40 | #include "ui.h" |
Doug Zongker | 211aebc | 2011-10-28 15:13:10 -0700 | [diff] [blame] | 41 | #include "screen_ui.h" |
Doug Zongker | daefc1d | 2011-10-31 09:34:15 -0700 | [diff] [blame^] | 42 | #include "device.h" |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 43 | |
| 44 | static const struct option OPTIONS[] = { |
| 45 | { "send_intent", required_argument, NULL, 's' }, |
| 46 | { "update_package", required_argument, NULL, 'u' }, |
| 47 | { "wipe_data", no_argument, NULL, 'w' }, |
| 48 | { "wipe_cache", no_argument, NULL, 'c' }, |
Doug Zongker | 4bc9806 | 2010-09-03 11:00:13 -0700 | [diff] [blame] | 49 | { "show_text", no_argument, NULL, 't' }, |
Doug Zongker | 988500b | 2009-10-06 14:41:38 -0700 | [diff] [blame] | 50 | { NULL, 0, NULL, 0 }, |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 51 | }; |
| 52 | |
Doug Zongker | d4208f9 | 2010-09-20 12:16:13 -0700 | [diff] [blame] | 53 | static const char *COMMAND_FILE = "/cache/recovery/command"; |
| 54 | static const char *INTENT_FILE = "/cache/recovery/intent"; |
| 55 | static const char *LOG_FILE = "/cache/recovery/log"; |
Doug Zongker | 2c3539e | 2010-09-29 13:21:30 -0700 | [diff] [blame] | 56 | static const char *LAST_LOG_FILE = "/cache/recovery/last_log"; |
Doug Zongker | d0181b8 | 2011-10-19 10:51:12 -0700 | [diff] [blame] | 57 | static const char *LAST_INSTALL_FILE = "/cache/recovery/last_install"; |
Michael Ward | 9d2629c | 2011-06-23 22:14:24 -0700 | [diff] [blame] | 58 | static const char *CACHE_ROOT = "/cache"; |
Doug Zongker | d4208f9 | 2010-09-20 12:16:13 -0700 | [diff] [blame] | 59 | static const char *SDCARD_ROOT = "/sdcard"; |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 60 | static const char *TEMPORARY_LOG_FILE = "/tmp/recovery.log"; |
Doug Zongker | d0181b8 | 2011-10-19 10:51:12 -0700 | [diff] [blame] | 61 | static const char *TEMPORARY_INSTALL_FILE = "/tmp/last_install"; |
Doug Zongker | d4208f9 | 2010-09-20 12:16:13 -0700 | [diff] [blame] | 62 | static const char *SIDELOAD_TEMP_DIR = "/tmp/sideload"; |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 63 | |
Doug Zongker | 6809c51 | 2011-03-01 14:04:34 -0800 | [diff] [blame] | 64 | extern UIParameters ui_parameters; // from ui.c |
| 65 | |
Doug Zongker | 211aebc | 2011-10-28 15:13:10 -0700 | [diff] [blame] | 66 | RecoveryUI* ui = NULL; |
| 67 | |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 68 | /* |
| 69 | * The recovery tool communicates with the main system through /cache files. |
| 70 | * /cache/recovery/command - INPUT - command line for tool, one arg per line |
| 71 | * /cache/recovery/log - OUTPUT - combined log file from recovery run(s) |
| 72 | * /cache/recovery/intent - OUTPUT - intent that was passed in |
| 73 | * |
| 74 | * The arguments which may be supplied in the recovery.command file: |
| 75 | * --send_intent=anystring - write the text out to recovery.intent |
Doug Zongker | d4208f9 | 2010-09-20 12:16:13 -0700 | [diff] [blame] | 76 | * --update_package=path - verify install an OTA package file |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 77 | * --wipe_data - erase user data (and cache), then reboot |
| 78 | * --wipe_cache - wipe cache (but not user data), then reboot |
Oscar Montemayor | 0523156 | 2009-11-30 08:40:57 -0800 | [diff] [blame] | 79 | * --set_encrypted_filesystem=on|off - enables / diasables encrypted fs |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 80 | * |
| 81 | * After completing, we remove /cache/recovery/command and reboot. |
| 82 | * Arguments may also be supplied in the bootloader control block (BCB). |
| 83 | * These important scenarios must be safely restartable at any point: |
| 84 | * |
| 85 | * FACTORY RESET |
| 86 | * 1. user selects "factory reset" |
| 87 | * 2. main system writes "--wipe_data" to /cache/recovery/command |
| 88 | * 3. main system reboots into recovery |
| 89 | * 4. get_args() writes BCB with "boot-recovery" and "--wipe_data" |
| 90 | * -- after this, rebooting will restart the erase -- |
Doug Zongker | d4208f9 | 2010-09-20 12:16:13 -0700 | [diff] [blame] | 91 | * 5. erase_volume() reformats /data |
| 92 | * 6. erase_volume() reformats /cache |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 93 | * 7. finish_recovery() erases BCB |
| 94 | * -- after this, rebooting will restart the main system -- |
| 95 | * 8. main() calls reboot() to boot main system |
| 96 | * |
| 97 | * OTA INSTALL |
| 98 | * 1. main system downloads OTA package to /cache/some-filename.zip |
Doug Zongker | 9b125b0 | 2010-09-22 12:01:37 -0700 | [diff] [blame] | 99 | * 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] | 100 | * 3. main system reboots into recovery |
| 101 | * 4. get_args() writes BCB with "boot-recovery" and "--update_package=..." |
| 102 | * -- after this, rebooting will attempt to reinstall the update -- |
| 103 | * 5. install_package() attempts to install the update |
| 104 | * NOTE: the package install must itself be restartable from any point |
| 105 | * 6. finish_recovery() erases BCB |
| 106 | * -- after this, rebooting will (try to) restart the main system -- |
| 107 | * 7. ** if install failed ** |
| 108 | * 7a. prompt_and_wait() shows an error icon and waits for the user |
| 109 | * 7b; the user reboots (pulling the battery, etc) into the main system |
| 110 | * 8. main() calls maybe_install_firmware_update() |
| 111 | * ** if the update contained radio/hboot firmware **: |
| 112 | * 8a. m_i_f_u() writes BCB with "boot-recovery" and "--wipe_cache" |
| 113 | * -- after this, rebooting will reformat cache & restart main system -- |
| 114 | * 8b. m_i_f_u() writes firmware image into raw cache partition |
| 115 | * 8c. m_i_f_u() writes BCB with "update-radio/hboot" and "--wipe_cache" |
| 116 | * -- after this, rebooting will attempt to reinstall firmware -- |
| 117 | * 8d. bootloader tries to flash firmware |
| 118 | * 8e. bootloader writes BCB with "boot-recovery" (keeping "--wipe_cache") |
| 119 | * -- after this, rebooting will reformat cache & restart main system -- |
Doug Zongker | d4208f9 | 2010-09-20 12:16:13 -0700 | [diff] [blame] | 120 | * 8f. erase_volume() reformats /cache |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 121 | * 8g. finish_recovery() erases BCB |
| 122 | * -- after this, rebooting will (try to) restart the main system -- |
| 123 | * 9. main() calls reboot() to boot main system |
| 124 | */ |
| 125 | |
| 126 | static const int MAX_ARG_LENGTH = 4096; |
| 127 | static const int MAX_ARGS = 100; |
| 128 | |
Doug Zongker | d4208f9 | 2010-09-20 12:16:13 -0700 | [diff] [blame] | 129 | // open a given path, mounting partitions as necessary |
Doug Zongker | 469243e | 2011-04-12 09:28:10 -0700 | [diff] [blame] | 130 | FILE* |
Doug Zongker | d4208f9 | 2010-09-20 12:16:13 -0700 | [diff] [blame] | 131 | fopen_path(const char *path, const char *mode) { |
| 132 | if (ensure_path_mounted(path) != 0) { |
| 133 | LOGE("Can't mount %s\n", path); |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 134 | return NULL; |
| 135 | } |
| 136 | |
| 137 | // When writing, try to create the containing directory, if necessary. |
| 138 | // Use generous permissions, the system (init.rc) will reset them. |
| 139 | if (strchr("wa", mode[0])) dirCreateHierarchy(path, 0777, NULL, 1); |
| 140 | |
| 141 | FILE *fp = fopen(path, mode); |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 142 | return fp; |
| 143 | } |
| 144 | |
| 145 | // close a file, log an error if the error indicator is set |
| 146 | static void |
| 147 | check_and_fclose(FILE *fp, const char *name) { |
| 148 | fflush(fp); |
| 149 | if (ferror(fp)) LOGE("Error in %s\n(%s)\n", name, strerror(errno)); |
| 150 | fclose(fp); |
| 151 | } |
| 152 | |
| 153 | // command line args come from, in decreasing precedence: |
| 154 | // - the actual command line |
| 155 | // - the bootloader control block (one per line, after "recovery") |
| 156 | // - the contents of COMMAND_FILE (one per line) |
| 157 | static void |
| 158 | get_args(int *argc, char ***argv) { |
| 159 | struct bootloader_message boot; |
| 160 | memset(&boot, 0, sizeof(boot)); |
| 161 | get_bootloader_message(&boot); // this may fail, leaving a zeroed structure |
| 162 | |
| 163 | if (boot.command[0] != 0 && boot.command[0] != 255) { |
| 164 | LOGI("Boot command: %.*s\n", sizeof(boot.command), boot.command); |
| 165 | } |
| 166 | |
| 167 | if (boot.status[0] != 0 && boot.status[0] != 255) { |
| 168 | LOGI("Boot status: %.*s\n", sizeof(boot.status), boot.status); |
| 169 | } |
| 170 | |
| 171 | // --- if arguments weren't supplied, look in the bootloader control block |
| 172 | if (*argc <= 1) { |
| 173 | boot.recovery[sizeof(boot.recovery) - 1] = '\0'; // Ensure termination |
| 174 | const char *arg = strtok(boot.recovery, "\n"); |
| 175 | if (arg != NULL && !strcmp(arg, "recovery")) { |
| 176 | *argv = (char **) malloc(sizeof(char *) * MAX_ARGS); |
| 177 | (*argv)[0] = strdup(arg); |
| 178 | for (*argc = 1; *argc < MAX_ARGS; ++*argc) { |
| 179 | if ((arg = strtok(NULL, "\n")) == NULL) break; |
| 180 | (*argv)[*argc] = strdup(arg); |
| 181 | } |
| 182 | LOGI("Got arguments from boot message\n"); |
| 183 | } else if (boot.recovery[0] != 0 && boot.recovery[0] != 255) { |
| 184 | LOGE("Bad boot message\n\"%.20s\"\n", boot.recovery); |
| 185 | } |
| 186 | } |
| 187 | |
| 188 | // --- if that doesn't work, try the command file |
| 189 | if (*argc <= 1) { |
Doug Zongker | d4208f9 | 2010-09-20 12:16:13 -0700 | [diff] [blame] | 190 | FILE *fp = fopen_path(COMMAND_FILE, "r"); |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 191 | if (fp != NULL) { |
| 192 | char *argv0 = (*argv)[0]; |
| 193 | *argv = (char **) malloc(sizeof(char *) * MAX_ARGS); |
| 194 | (*argv)[0] = argv0; // use the same program name |
| 195 | |
| 196 | char buf[MAX_ARG_LENGTH]; |
| 197 | for (*argc = 1; *argc < MAX_ARGS; ++*argc) { |
| 198 | if (!fgets(buf, sizeof(buf), fp)) break; |
| 199 | (*argv)[*argc] = strdup(strtok(buf, "\r\n")); // Strip newline. |
| 200 | } |
| 201 | |
| 202 | check_and_fclose(fp, COMMAND_FILE); |
| 203 | LOGI("Got arguments from %s\n", COMMAND_FILE); |
| 204 | } |
| 205 | } |
| 206 | |
| 207 | // --> write the arguments we have back into the bootloader control block |
| 208 | // always boot into recovery after this (until finish_recovery() is called) |
| 209 | strlcpy(boot.command, "boot-recovery", sizeof(boot.command)); |
| 210 | strlcpy(boot.recovery, "recovery\n", sizeof(boot.recovery)); |
| 211 | int i; |
| 212 | for (i = 1; i < *argc; ++i) { |
| 213 | strlcat(boot.recovery, (*argv)[i], sizeof(boot.recovery)); |
| 214 | strlcat(boot.recovery, "\n", sizeof(boot.recovery)); |
| 215 | } |
| 216 | set_bootloader_message(&boot); |
| 217 | } |
| 218 | |
Doug Zongker | 34c98df | 2009-08-18 12:05:45 -0700 | [diff] [blame] | 219 | static void |
Oscar Montemayor | 0523156 | 2009-11-30 08:40:57 -0800 | [diff] [blame] | 220 | set_sdcard_update_bootloader_message() { |
Doug Zongker | 34c98df | 2009-08-18 12:05:45 -0700 | [diff] [blame] | 221 | struct bootloader_message boot; |
| 222 | memset(&boot, 0, sizeof(boot)); |
| 223 | strlcpy(boot.command, "boot-recovery", sizeof(boot.command)); |
| 224 | strlcpy(boot.recovery, "recovery\n", sizeof(boot.recovery)); |
| 225 | set_bootloader_message(&boot); |
| 226 | } |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 227 | |
Doug Zongker | 2c3539e | 2010-09-29 13:21:30 -0700 | [diff] [blame] | 228 | // How much of the temp log we have copied to the copy in cache. |
| 229 | static long tmplog_offset = 0; |
| 230 | |
| 231 | static void |
Doug Zongker | d0181b8 | 2011-10-19 10:51:12 -0700 | [diff] [blame] | 232 | copy_log_file(const char* source, const char* destination, int append) { |
Doug Zongker | 2c3539e | 2010-09-29 13:21:30 -0700 | [diff] [blame] | 233 | FILE *log = fopen_path(destination, append ? "a" : "w"); |
| 234 | if (log == NULL) { |
| 235 | LOGE("Can't open %s\n", destination); |
| 236 | } else { |
Doug Zongker | d0181b8 | 2011-10-19 10:51:12 -0700 | [diff] [blame] | 237 | FILE *tmplog = fopen(source, "r"); |
| 238 | if (tmplog != NULL) { |
Doug Zongker | 2c3539e | 2010-09-29 13:21:30 -0700 | [diff] [blame] | 239 | if (append) { |
| 240 | fseek(tmplog, tmplog_offset, SEEK_SET); // Since last write |
| 241 | } |
| 242 | char buf[4096]; |
| 243 | while (fgets(buf, sizeof(buf), tmplog)) fputs(buf, log); |
| 244 | if (append) { |
| 245 | tmplog_offset = ftell(tmplog); |
| 246 | } |
Doug Zongker | d0181b8 | 2011-10-19 10:51:12 -0700 | [diff] [blame] | 247 | check_and_fclose(tmplog, source); |
Doug Zongker | 2c3539e | 2010-09-29 13:21:30 -0700 | [diff] [blame] | 248 | } |
| 249 | check_and_fclose(log, destination); |
| 250 | } |
| 251 | } |
| 252 | |
| 253 | |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 254 | // clear the recovery command and prepare to boot a (hopefully working) system, |
| 255 | // copy our log file to cache as well (for the system to read), and |
| 256 | // record any intent we were asked to communicate back to the system. |
| 257 | // this function is idempotent: call it as many times as you like. |
| 258 | static void |
Oscar Montemayor | 0523156 | 2009-11-30 08:40:57 -0800 | [diff] [blame] | 259 | finish_recovery(const char *send_intent) { |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 260 | // By this point, we're ready to return to the main system... |
| 261 | if (send_intent != NULL) { |
Doug Zongker | d4208f9 | 2010-09-20 12:16:13 -0700 | [diff] [blame] | 262 | FILE *fp = fopen_path(INTENT_FILE, "w"); |
Jay Freeman (saurik) | 619ec2f | 2008-11-17 01:56:05 +0000 | [diff] [blame] | 263 | if (fp == NULL) { |
| 264 | LOGE("Can't open %s\n", INTENT_FILE); |
| 265 | } else { |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 266 | fputs(send_intent, fp); |
| 267 | check_and_fclose(fp, INTENT_FILE); |
| 268 | } |
| 269 | } |
| 270 | |
| 271 | // Copy logs to cache so the system can find out what happened. |
Doug Zongker | d0181b8 | 2011-10-19 10:51:12 -0700 | [diff] [blame] | 272 | copy_log_file(TEMPORARY_LOG_FILE, LOG_FILE, true); |
| 273 | copy_log_file(TEMPORARY_LOG_FILE, LAST_LOG_FILE, false); |
| 274 | copy_log_file(TEMPORARY_INSTALL_FILE, LAST_INSTALL_FILE, false); |
| 275 | chmod(LOG_FILE, 0600); |
| 276 | chown(LOG_FILE, 1000, 1000); // system user |
Doug Zongker | 2c3539e | 2010-09-29 13:21:30 -0700 | [diff] [blame] | 277 | chmod(LAST_LOG_FILE, 0640); |
Doug Zongker | d0181b8 | 2011-10-19 10:51:12 -0700 | [diff] [blame] | 278 | chmod(LAST_INSTALL_FILE, 0644); |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 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. |
Doug Zongker | d4208f9 | 2010-09-20 12:16:13 -0700 | [diff] [blame] | 286 | if (ensure_path_mounted(COMMAND_FILE) != 0 || |
| 287 | (unlink(COMMAND_FILE) && errno != ENOENT)) { |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 288 | LOGW("Can't unlink %s\n", COMMAND_FILE); |
| 289 | } |
| 290 | |
Doug Zongker | d0181b8 | 2011-10-19 10:51:12 -0700 | [diff] [blame] | 291 | ensure_path_unmounted(CACHE_ROOT); |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 292 | sync(); // For good measure. |
| 293 | } |
| 294 | |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 295 | static int |
Doug Zongker | d4208f9 | 2010-09-20 12:16:13 -0700 | [diff] [blame] | 296 | erase_volume(const char *volume) { |
Doug Zongker | 211aebc | 2011-10-28 15:13:10 -0700 | [diff] [blame] | 297 | ui->SetBackground(RecoveryUI::INSTALLING); |
| 298 | ui->SetProgressType(RecoveryUI::INDETERMINATE); |
| 299 | ui->Print("Formatting %s...\n", volume); |
Doug Zongker | 2c3539e | 2010-09-29 13:21:30 -0700 | [diff] [blame] | 300 | |
Doug Zongker | d0181b8 | 2011-10-19 10:51:12 -0700 | [diff] [blame] | 301 | ensure_path_unmounted(volume); |
| 302 | |
Doug Zongker | 2c3539e | 2010-09-29 13:21:30 -0700 | [diff] [blame] | 303 | if (strcmp(volume, "/cache") == 0) { |
| 304 | // Any part of the log we'd copied to cache is now gone. |
| 305 | // Reset the pointer so we copy from the beginning of the temp |
| 306 | // log. |
| 307 | tmplog_offset = 0; |
| 308 | } |
| 309 | |
Doug Zongker | d4208f9 | 2010-09-20 12:16:13 -0700 | [diff] [blame] | 310 | return format_volume(volume); |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 311 | } |
| 312 | |
Doug Zongker | 23ceeea | 2010-07-08 17:27:55 -0700 | [diff] [blame] | 313 | static char* |
Doug Zongker | d4208f9 | 2010-09-20 12:16:13 -0700 | [diff] [blame] | 314 | copy_sideloaded_package(const char* original_path) { |
| 315 | if (ensure_path_mounted(original_path) != 0) { |
| 316 | LOGE("Can't mount %s\n", original_path); |
Doug Zongker | 23ceeea | 2010-07-08 17:27:55 -0700 | [diff] [blame] | 317 | return NULL; |
| 318 | } |
| 319 | |
Doug Zongker | d4208f9 | 2010-09-20 12:16:13 -0700 | [diff] [blame] | 320 | if (ensure_path_mounted(SIDELOAD_TEMP_DIR) != 0) { |
Doug Zongker | 23ceeea | 2010-07-08 17:27:55 -0700 | [diff] [blame] | 321 | LOGE("Can't mount %s\n", SIDELOAD_TEMP_DIR); |
| 322 | return NULL; |
| 323 | } |
| 324 | |
Doug Zongker | d4208f9 | 2010-09-20 12:16:13 -0700 | [diff] [blame] | 325 | if (mkdir(SIDELOAD_TEMP_DIR, 0700) != 0) { |
Doug Zongker | 23ceeea | 2010-07-08 17:27:55 -0700 | [diff] [blame] | 326 | if (errno != EEXIST) { |
| 327 | LOGE("Can't mkdir %s (%s)\n", SIDELOAD_TEMP_DIR, strerror(errno)); |
| 328 | return NULL; |
| 329 | } |
| 330 | } |
| 331 | |
Doug Zongker | d4208f9 | 2010-09-20 12:16:13 -0700 | [diff] [blame] | 332 | // verify that SIDELOAD_TEMP_DIR is exactly what we expect: a |
| 333 | // directory, owned by root, readable and writable only by root. |
Doug Zongker | 23ceeea | 2010-07-08 17:27:55 -0700 | [diff] [blame] | 334 | struct stat st; |
Doug Zongker | d4208f9 | 2010-09-20 12:16:13 -0700 | [diff] [blame] | 335 | if (stat(SIDELOAD_TEMP_DIR, &st) != 0) { |
| 336 | LOGE("failed to stat %s (%s)\n", SIDELOAD_TEMP_DIR, strerror(errno)); |
Doug Zongker | 23ceeea | 2010-07-08 17:27:55 -0700 | [diff] [blame] | 337 | return NULL; |
| 338 | } |
| 339 | if (!S_ISDIR(st.st_mode)) { |
Doug Zongker | d4208f9 | 2010-09-20 12:16:13 -0700 | [diff] [blame] | 340 | LOGE("%s isn't a directory\n", SIDELOAD_TEMP_DIR); |
Doug Zongker | 23ceeea | 2010-07-08 17:27:55 -0700 | [diff] [blame] | 341 | return NULL; |
| 342 | } |
| 343 | if ((st.st_mode & 0777) != 0700) { |
Doug Zongker | d4208f9 | 2010-09-20 12:16:13 -0700 | [diff] [blame] | 344 | LOGE("%s has perms %o\n", SIDELOAD_TEMP_DIR, st.st_mode); |
Doug Zongker | 23ceeea | 2010-07-08 17:27:55 -0700 | [diff] [blame] | 345 | return NULL; |
| 346 | } |
| 347 | if (st.st_uid != 0) { |
Doug Zongker | d4208f9 | 2010-09-20 12:16:13 -0700 | [diff] [blame] | 348 | LOGE("%s owned by %lu; not root\n", SIDELOAD_TEMP_DIR, st.st_uid); |
Doug Zongker | 23ceeea | 2010-07-08 17:27:55 -0700 | [diff] [blame] | 349 | return NULL; |
| 350 | } |
| 351 | |
Doug Zongker | d4208f9 | 2010-09-20 12:16:13 -0700 | [diff] [blame] | 352 | char copy_path[PATH_MAX]; |
| 353 | strcpy(copy_path, SIDELOAD_TEMP_DIR); |
Doug Zongker | 23ceeea | 2010-07-08 17:27:55 -0700 | [diff] [blame] | 354 | strcat(copy_path, "/package.zip"); |
| 355 | |
Doug Zongker | 28ce47c | 2011-10-28 10:33:05 -0700 | [diff] [blame] | 356 | char* buffer = (char*)malloc(BUFSIZ); |
Doug Zongker | 23ceeea | 2010-07-08 17:27:55 -0700 | [diff] [blame] | 357 | if (buffer == NULL) { |
| 358 | LOGE("Failed to allocate buffer\n"); |
| 359 | return NULL; |
| 360 | } |
| 361 | |
| 362 | size_t read; |
| 363 | FILE* fin = fopen(original_path, "rb"); |
| 364 | if (fin == NULL) { |
| 365 | LOGE("Failed to open %s (%s)\n", original_path, strerror(errno)); |
| 366 | return NULL; |
| 367 | } |
| 368 | FILE* fout = fopen(copy_path, "wb"); |
| 369 | if (fout == NULL) { |
| 370 | LOGE("Failed to open %s (%s)\n", copy_path, strerror(errno)); |
| 371 | return NULL; |
| 372 | } |
| 373 | |
| 374 | while ((read = fread(buffer, 1, BUFSIZ, fin)) > 0) { |
| 375 | if (fwrite(buffer, 1, read, fout) != read) { |
| 376 | LOGE("Short write of %s (%s)\n", copy_path, strerror(errno)); |
| 377 | return NULL; |
| 378 | } |
| 379 | } |
| 380 | |
| 381 | free(buffer); |
| 382 | |
| 383 | if (fclose(fout) != 0) { |
| 384 | LOGE("Failed to close %s (%s)\n", copy_path, strerror(errno)); |
| 385 | return NULL; |
| 386 | } |
| 387 | |
| 388 | if (fclose(fin) != 0) { |
| 389 | LOGE("Failed to close %s (%s)\n", original_path, strerror(errno)); |
| 390 | return NULL; |
| 391 | } |
| 392 | |
| 393 | // "adb push" is happy to overwrite read-only files when it's |
| 394 | // running as root, but we'll try anyway. |
| 395 | if (chmod(copy_path, 0400) != 0) { |
| 396 | LOGE("Failed to chmod %s (%s)\n", copy_path, strerror(errno)); |
| 397 | return NULL; |
| 398 | } |
| 399 | |
Doug Zongker | d4208f9 | 2010-09-20 12:16:13 -0700 | [diff] [blame] | 400 | return strdup(copy_path); |
Doug Zongker | 23ceeea | 2010-07-08 17:27:55 -0700 | [diff] [blame] | 401 | } |
| 402 | |
Doug Zongker | 28ce47c | 2011-10-28 10:33:05 -0700 | [diff] [blame] | 403 | static const char** |
Doug Zongker | daefc1d | 2011-10-31 09:34:15 -0700 | [diff] [blame^] | 404 | prepend_title(const char* const* headers) { |
Doug Zongker | 28ce47c | 2011-10-28 10:33:05 -0700 | [diff] [blame] | 405 | const char* title[] = { "Android system recovery <" |
| 406 | EXPAND(RECOVERY_API_VERSION) "e>", |
| 407 | "", |
| 408 | NULL }; |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 409 | |
Doug Zongker | d683785 | 2009-06-17 22:07:13 -0700 | [diff] [blame] | 410 | // count the number of lines in our title, plus the |
Doug Zongker | f93d816 | 2009-09-22 15:16:02 -0700 | [diff] [blame] | 411 | // caller-provided headers. |
Doug Zongker | d683785 | 2009-06-17 22:07:13 -0700 | [diff] [blame] | 412 | int count = 0; |
Doug Zongker | daefc1d | 2011-10-31 09:34:15 -0700 | [diff] [blame^] | 413 | const char* const* p; |
Doug Zongker | d683785 | 2009-06-17 22:07:13 -0700 | [diff] [blame] | 414 | for (p = title; *p; ++p, ++count); |
Doug Zongker | f93d816 | 2009-09-22 15:16:02 -0700 | [diff] [blame] | 415 | for (p = headers; *p; ++p, ++count); |
Doug Zongker | d683785 | 2009-06-17 22:07:13 -0700 | [diff] [blame] | 416 | |
Doug Zongker | 28ce47c | 2011-10-28 10:33:05 -0700 | [diff] [blame] | 417 | const char** new_headers = (const char**)malloc((count+1) * sizeof(char*)); |
| 418 | const char** h = new_headers; |
Doug Zongker | d683785 | 2009-06-17 22:07:13 -0700 | [diff] [blame] | 419 | for (p = title; *p; ++p, ++h) *h = *p; |
Doug Zongker | f93d816 | 2009-09-22 15:16:02 -0700 | [diff] [blame] | 420 | for (p = headers; *p; ++p, ++h) *h = *p; |
Doug Zongker | d683785 | 2009-06-17 22:07:13 -0700 | [diff] [blame] | 421 | *h = NULL; |
| 422 | |
Doug Zongker | f93d816 | 2009-09-22 15:16:02 -0700 | [diff] [blame] | 423 | return new_headers; |
| 424 | } |
| 425 | |
| 426 | static int |
Doug Zongker | 28ce47c | 2011-10-28 10:33:05 -0700 | [diff] [blame] | 427 | get_menu_selection(const char* const * headers, const char* const * items, |
Doug Zongker | daefc1d | 2011-10-31 09:34:15 -0700 | [diff] [blame^] | 428 | int menu_only, int initial_selection, Device* device) { |
Doug Zongker | f93d816 | 2009-09-22 15:16:02 -0700 | [diff] [blame] | 429 | // throw away keys pressed previously, so user doesn't |
| 430 | // accidentally trigger menu items. |
Doug Zongker | 211aebc | 2011-10-28 15:13:10 -0700 | [diff] [blame] | 431 | ui->FlushKeys(); |
Doug Zongker | f93d816 | 2009-09-22 15:16:02 -0700 | [diff] [blame] | 432 | |
Doug Zongker | 211aebc | 2011-10-28 15:13:10 -0700 | [diff] [blame] | 433 | ui->StartMenu(headers, items, initial_selection); |
Doug Zongker | 8674a72 | 2010-09-15 11:08:23 -0700 | [diff] [blame] | 434 | int selected = initial_selection; |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 435 | int chosen_item = -1; |
| 436 | |
Doug Zongker | f93d816 | 2009-09-22 15:16:02 -0700 | [diff] [blame] | 437 | while (chosen_item < 0) { |
Doug Zongker | 211aebc | 2011-10-28 15:13:10 -0700 | [diff] [blame] | 438 | int key = ui->WaitKey(); |
| 439 | int visible = ui->IsTextVisible(); |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 440 | |
Doug Zongker | 5cae445 | 2011-01-25 13:15:30 -0800 | [diff] [blame] | 441 | if (key == -1) { // ui_wait_key() timed out |
Doug Zongker | 211aebc | 2011-10-28 15:13:10 -0700 | [diff] [blame] | 442 | if (ui->WasTextEverVisible()) { |
Doug Zongker | 5cae445 | 2011-01-25 13:15:30 -0800 | [diff] [blame] | 443 | continue; |
| 444 | } else { |
| 445 | LOGI("timed out waiting for key input; rebooting.\n"); |
Doug Zongker | 211aebc | 2011-10-28 15:13:10 -0700 | [diff] [blame] | 446 | ui->EndMenu(); |
Doug Zongker | daefc1d | 2011-10-31 09:34:15 -0700 | [diff] [blame^] | 447 | return 0; // XXX fixme |
Doug Zongker | 5cae445 | 2011-01-25 13:15:30 -0800 | [diff] [blame] | 448 | } |
| 449 | } |
| 450 | |
Doug Zongker | daefc1d | 2011-10-31 09:34:15 -0700 | [diff] [blame^] | 451 | int action = device->HandleMenuKey(key, visible); |
Doug Zongker | ddd6a28 | 2009-06-09 12:22:33 -0700 | [diff] [blame] | 452 | |
| 453 | if (action < 0) { |
| 454 | switch (action) { |
Doug Zongker | daefc1d | 2011-10-31 09:34:15 -0700 | [diff] [blame^] | 455 | case Device::kHighlightUp: |
Doug Zongker | ddd6a28 | 2009-06-09 12:22:33 -0700 | [diff] [blame] | 456 | --selected; |
Doug Zongker | 211aebc | 2011-10-28 15:13:10 -0700 | [diff] [blame] | 457 | selected = ui->SelectMenu(selected); |
Doug Zongker | ddd6a28 | 2009-06-09 12:22:33 -0700 | [diff] [blame] | 458 | break; |
Doug Zongker | daefc1d | 2011-10-31 09:34:15 -0700 | [diff] [blame^] | 459 | case Device::kHighlightDown: |
Doug Zongker | ddd6a28 | 2009-06-09 12:22:33 -0700 | [diff] [blame] | 460 | ++selected; |
Doug Zongker | 211aebc | 2011-10-28 15:13:10 -0700 | [diff] [blame] | 461 | selected = ui->SelectMenu(selected); |
Doug Zongker | ddd6a28 | 2009-06-09 12:22:33 -0700 | [diff] [blame] | 462 | break; |
Doug Zongker | daefc1d | 2011-10-31 09:34:15 -0700 | [diff] [blame^] | 463 | case Device::kInvokeItem: |
Doug Zongker | ddd6a28 | 2009-06-09 12:22:33 -0700 | [diff] [blame] | 464 | chosen_item = selected; |
| 465 | break; |
Doug Zongker | daefc1d | 2011-10-31 09:34:15 -0700 | [diff] [blame^] | 466 | case Device::kNoAction: |
Doug Zongker | ddd6a28 | 2009-06-09 12:22:33 -0700 | [diff] [blame] | 467 | break; |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 468 | } |
Doug Zongker | f93d816 | 2009-09-22 15:16:02 -0700 | [diff] [blame] | 469 | } else if (!menu_only) { |
Doug Zongker | ddd6a28 | 2009-06-09 12:22:33 -0700 | [diff] [blame] | 470 | chosen_item = action; |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 471 | } |
Doug Zongker | f93d816 | 2009-09-22 15:16:02 -0700 | [diff] [blame] | 472 | } |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 473 | |
Doug Zongker | 211aebc | 2011-10-28 15:13:10 -0700 | [diff] [blame] | 474 | ui->EndMenu(); |
Doug Zongker | f93d816 | 2009-09-22 15:16:02 -0700 | [diff] [blame] | 475 | return chosen_item; |
| 476 | } |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 477 | |
Doug Zongker | 8674a72 | 2010-09-15 11:08:23 -0700 | [diff] [blame] | 478 | static int compare_string(const void* a, const void* b) { |
| 479 | return strcmp(*(const char**)a, *(const char**)b); |
| 480 | } |
| 481 | |
| 482 | static int |
Doug Zongker | d0181b8 | 2011-10-19 10:51:12 -0700 | [diff] [blame] | 483 | update_directory(const char* path, const char* unmount_when_done, |
Doug Zongker | daefc1d | 2011-10-31 09:34:15 -0700 | [diff] [blame^] | 484 | int* wipe_cache, Device* device) { |
Michael Ward | 9d2629c | 2011-06-23 22:14:24 -0700 | [diff] [blame] | 485 | ensure_path_mounted(path); |
Doug Zongker | c18eeb8 | 2010-09-21 16:49:26 -0700 | [diff] [blame] | 486 | |
Doug Zongker | 8674a72 | 2010-09-15 11:08:23 -0700 | [diff] [blame] | 487 | const char* MENU_HEADERS[] = { "Choose a package to install:", |
Doug Zongker | d4208f9 | 2010-09-20 12:16:13 -0700 | [diff] [blame] | 488 | path, |
Doug Zongker | 8674a72 | 2010-09-15 11:08:23 -0700 | [diff] [blame] | 489 | "", |
| 490 | NULL }; |
| 491 | DIR* d; |
| 492 | struct dirent* de; |
Doug Zongker | d4208f9 | 2010-09-20 12:16:13 -0700 | [diff] [blame] | 493 | d = opendir(path); |
Doug Zongker | 8674a72 | 2010-09-15 11:08:23 -0700 | [diff] [blame] | 494 | if (d == NULL) { |
| 495 | LOGE("error opening %s: %s\n", path, strerror(errno)); |
Michael Ward | 9d2629c | 2011-06-23 22:14:24 -0700 | [diff] [blame] | 496 | if (unmount_when_done != NULL) { |
| 497 | ensure_path_unmounted(unmount_when_done); |
| 498 | } |
Doug Zongker | 8674a72 | 2010-09-15 11:08:23 -0700 | [diff] [blame] | 499 | return 0; |
| 500 | } |
| 501 | |
Doug Zongker | 28ce47c | 2011-10-28 10:33:05 -0700 | [diff] [blame] | 502 | const char** headers = prepend_title(MENU_HEADERS); |
Doug Zongker | 8674a72 | 2010-09-15 11:08:23 -0700 | [diff] [blame] | 503 | |
| 504 | int d_size = 0; |
| 505 | int d_alloc = 10; |
Doug Zongker | 28ce47c | 2011-10-28 10:33:05 -0700 | [diff] [blame] | 506 | char** dirs = (char**)malloc(d_alloc * sizeof(char*)); |
Doug Zongker | 8674a72 | 2010-09-15 11:08:23 -0700 | [diff] [blame] | 507 | int z_size = 1; |
| 508 | int z_alloc = 10; |
Doug Zongker | 28ce47c | 2011-10-28 10:33:05 -0700 | [diff] [blame] | 509 | char** zips = (char**)malloc(z_alloc * sizeof(char*)); |
Doug Zongker | 8674a72 | 2010-09-15 11:08:23 -0700 | [diff] [blame] | 510 | zips[0] = strdup("../"); |
| 511 | |
| 512 | while ((de = readdir(d)) != NULL) { |
| 513 | int name_len = strlen(de->d_name); |
| 514 | |
| 515 | if (de->d_type == DT_DIR) { |
| 516 | // skip "." and ".." entries |
| 517 | if (name_len == 1 && de->d_name[0] == '.') continue; |
| 518 | if (name_len == 2 && de->d_name[0] == '.' && |
| 519 | de->d_name[1] == '.') continue; |
| 520 | |
| 521 | if (d_size >= d_alloc) { |
| 522 | d_alloc *= 2; |
Doug Zongker | 28ce47c | 2011-10-28 10:33:05 -0700 | [diff] [blame] | 523 | dirs = (char**)realloc(dirs, d_alloc * sizeof(char*)); |
Doug Zongker | 8674a72 | 2010-09-15 11:08:23 -0700 | [diff] [blame] | 524 | } |
Doug Zongker | 28ce47c | 2011-10-28 10:33:05 -0700 | [diff] [blame] | 525 | dirs[d_size] = (char*)malloc(name_len + 2); |
Doug Zongker | 8674a72 | 2010-09-15 11:08:23 -0700 | [diff] [blame] | 526 | strcpy(dirs[d_size], de->d_name); |
| 527 | dirs[d_size][name_len] = '/'; |
| 528 | dirs[d_size][name_len+1] = '\0'; |
| 529 | ++d_size; |
| 530 | } else if (de->d_type == DT_REG && |
| 531 | name_len >= 4 && |
| 532 | strncasecmp(de->d_name + (name_len-4), ".zip", 4) == 0) { |
| 533 | if (z_size >= z_alloc) { |
| 534 | z_alloc *= 2; |
Doug Zongker | 28ce47c | 2011-10-28 10:33:05 -0700 | [diff] [blame] | 535 | zips = (char**)realloc(zips, z_alloc * sizeof(char*)); |
Doug Zongker | 8674a72 | 2010-09-15 11:08:23 -0700 | [diff] [blame] | 536 | } |
| 537 | zips[z_size++] = strdup(de->d_name); |
| 538 | } |
| 539 | } |
| 540 | closedir(d); |
| 541 | |
| 542 | qsort(dirs, d_size, sizeof(char*), compare_string); |
| 543 | qsort(zips, z_size, sizeof(char*), compare_string); |
| 544 | |
| 545 | // append dirs to the zips list |
| 546 | if (d_size + z_size + 1 > z_alloc) { |
| 547 | z_alloc = d_size + z_size + 1; |
Doug Zongker | 28ce47c | 2011-10-28 10:33:05 -0700 | [diff] [blame] | 548 | zips = (char**)realloc(zips, z_alloc * sizeof(char*)); |
Doug Zongker | 8674a72 | 2010-09-15 11:08:23 -0700 | [diff] [blame] | 549 | } |
| 550 | memcpy(zips + z_size, dirs, d_size * sizeof(char*)); |
| 551 | free(dirs); |
| 552 | z_size += d_size; |
| 553 | zips[z_size] = NULL; |
| 554 | |
| 555 | int result; |
| 556 | int chosen_item = 0; |
| 557 | do { |
Doug Zongker | daefc1d | 2011-10-31 09:34:15 -0700 | [diff] [blame^] | 558 | chosen_item = get_menu_selection(headers, zips, 1, chosen_item, device); |
Doug Zongker | 8674a72 | 2010-09-15 11:08:23 -0700 | [diff] [blame] | 559 | |
| 560 | char* item = zips[chosen_item]; |
| 561 | int item_len = strlen(item); |
| 562 | if (chosen_item == 0) { // item 0 is always "../" |
Michael Ward | 9d2629c | 2011-06-23 22:14:24 -0700 | [diff] [blame] | 563 | // go up but continue browsing (if the caller is update_directory) |
Doug Zongker | 8674a72 | 2010-09-15 11:08:23 -0700 | [diff] [blame] | 564 | result = -1; |
| 565 | break; |
| 566 | } else if (item[item_len-1] == '/') { |
| 567 | // recurse down into a subdirectory |
| 568 | char new_path[PATH_MAX]; |
Doug Zongker | d4208f9 | 2010-09-20 12:16:13 -0700 | [diff] [blame] | 569 | strlcpy(new_path, path, PATH_MAX); |
| 570 | strlcat(new_path, "/", PATH_MAX); |
Doug Zongker | 8674a72 | 2010-09-15 11:08:23 -0700 | [diff] [blame] | 571 | strlcat(new_path, item, PATH_MAX); |
Doug Zongker | d4208f9 | 2010-09-20 12:16:13 -0700 | [diff] [blame] | 572 | new_path[strlen(new_path)-1] = '\0'; // truncate the trailing '/' |
Doug Zongker | daefc1d | 2011-10-31 09:34:15 -0700 | [diff] [blame^] | 573 | result = update_directory(new_path, unmount_when_done, wipe_cache, device); |
Doug Zongker | 8674a72 | 2010-09-15 11:08:23 -0700 | [diff] [blame] | 574 | if (result >= 0) break; |
| 575 | } else { |
| 576 | // selected a zip file: attempt to install it, and return |
| 577 | // the status to the caller. |
| 578 | char new_path[PATH_MAX]; |
Doug Zongker | d4208f9 | 2010-09-20 12:16:13 -0700 | [diff] [blame] | 579 | strlcpy(new_path, path, PATH_MAX); |
Doug Zongker | c18eeb8 | 2010-09-21 16:49:26 -0700 | [diff] [blame] | 580 | strlcat(new_path, "/", PATH_MAX); |
Doug Zongker | 8674a72 | 2010-09-15 11:08:23 -0700 | [diff] [blame] | 581 | strlcat(new_path, item, PATH_MAX); |
| 582 | |
Doug Zongker | 211aebc | 2011-10-28 15:13:10 -0700 | [diff] [blame] | 583 | ui->Print("\n-- Install %s ...\n", path); |
Doug Zongker | 8674a72 | 2010-09-15 11:08:23 -0700 | [diff] [blame] | 584 | set_sdcard_update_bootloader_message(); |
Doug Zongker | d4208f9 | 2010-09-20 12:16:13 -0700 | [diff] [blame] | 585 | char* copy = copy_sideloaded_package(new_path); |
Michael Ward | 9d2629c | 2011-06-23 22:14:24 -0700 | [diff] [blame] | 586 | if (unmount_when_done != NULL) { |
| 587 | ensure_path_unmounted(unmount_when_done); |
| 588 | } |
Doug Zongker | d4208f9 | 2010-09-20 12:16:13 -0700 | [diff] [blame] | 589 | if (copy) { |
Doug Zongker | d0181b8 | 2011-10-19 10:51:12 -0700 | [diff] [blame] | 590 | result = install_package(copy, wipe_cache, TEMPORARY_INSTALL_FILE); |
Doug Zongker | d4208f9 | 2010-09-20 12:16:13 -0700 | [diff] [blame] | 591 | free(copy); |
| 592 | } else { |
| 593 | result = INSTALL_ERROR; |
| 594 | } |
Doug Zongker | 8674a72 | 2010-09-15 11:08:23 -0700 | [diff] [blame] | 595 | break; |
| 596 | } |
| 597 | } while (true); |
| 598 | |
| 599 | int i; |
| 600 | for (i = 0; i < z_size; ++i) free(zips[i]); |
| 601 | free(zips); |
| 602 | free(headers); |
| 603 | |
Michael Ward | 9d2629c | 2011-06-23 22:14:24 -0700 | [diff] [blame] | 604 | if (unmount_when_done != NULL) { |
| 605 | ensure_path_unmounted(unmount_when_done); |
| 606 | } |
Doug Zongker | 8674a72 | 2010-09-15 11:08:23 -0700 | [diff] [blame] | 607 | return result; |
| 608 | } |
| 609 | |
Doug Zongker | f93d816 | 2009-09-22 15:16:02 -0700 | [diff] [blame] | 610 | static void |
Doug Zongker | daefc1d | 2011-10-31 09:34:15 -0700 | [diff] [blame^] | 611 | wipe_data(int confirm, Device* device) { |
Doug Zongker | f93d816 | 2009-09-22 15:16:02 -0700 | [diff] [blame] | 612 | if (confirm) { |
Doug Zongker | 28ce47c | 2011-10-28 10:33:05 -0700 | [diff] [blame] | 613 | static const char** title_headers = NULL; |
Doug Zongker | ddd6a28 | 2009-06-09 12:22:33 -0700 | [diff] [blame] | 614 | |
Doug Zongker | f93d816 | 2009-09-22 15:16:02 -0700 | [diff] [blame] | 615 | if (title_headers == NULL) { |
Doug Zongker | 28ce47c | 2011-10-28 10:33:05 -0700 | [diff] [blame] | 616 | const char* headers[] = { "Confirm wipe of all user data?", |
| 617 | " THIS CAN NOT BE UNDONE.", |
| 618 | "", |
| 619 | NULL }; |
Doug Zongker | 8674a72 | 2010-09-15 11:08:23 -0700 | [diff] [blame] | 620 | title_headers = prepend_title((const char**)headers); |
Doug Zongker | f93d816 | 2009-09-22 15:16:02 -0700 | [diff] [blame] | 621 | } |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 622 | |
Doug Zongker | 28ce47c | 2011-10-28 10:33:05 -0700 | [diff] [blame] | 623 | const char* items[] = { " No", |
| 624 | " No", |
| 625 | " No", |
| 626 | " No", |
| 627 | " No", |
| 628 | " No", |
| 629 | " No", |
| 630 | " Yes -- delete all user data", // [7] |
| 631 | " No", |
| 632 | " No", |
| 633 | " No", |
| 634 | NULL }; |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 635 | |
Doug Zongker | daefc1d | 2011-10-31 09:34:15 -0700 | [diff] [blame^] | 636 | int chosen_item = get_menu_selection(title_headers, items, 1, 0, device); |
Doug Zongker | f93d816 | 2009-09-22 15:16:02 -0700 | [diff] [blame] | 637 | if (chosen_item != 7) { |
| 638 | return; |
| 639 | } |
| 640 | } |
Doug Zongker | 1066d2c | 2009-04-01 13:57:40 -0700 | [diff] [blame] | 641 | |
Doug Zongker | 211aebc | 2011-10-28 15:13:10 -0700 | [diff] [blame] | 642 | ui->Print("\n-- Wiping data...\n"); |
Doug Zongker | daefc1d | 2011-10-31 09:34:15 -0700 | [diff] [blame^] | 643 | device->WipeData(); |
Doug Zongker | d4208f9 | 2010-09-20 12:16:13 -0700 | [diff] [blame] | 644 | erase_volume("/data"); |
| 645 | erase_volume("/cache"); |
Doug Zongker | 211aebc | 2011-10-28 15:13:10 -0700 | [diff] [blame] | 646 | ui->Print("Data wipe complete.\n"); |
Doug Zongker | f93d816 | 2009-09-22 15:16:02 -0700 | [diff] [blame] | 647 | } |
| 648 | |
| 649 | static void |
Doug Zongker | daefc1d | 2011-10-31 09:34:15 -0700 | [diff] [blame^] | 650 | prompt_and_wait(Device* device) { |
| 651 | const char* const* headers = prepend_title(device->GetMenuHeaders()); |
Doug Zongker | f93d816 | 2009-09-22 15:16:02 -0700 | [diff] [blame] | 652 | |
| 653 | for (;;) { |
| 654 | finish_recovery(NULL); |
Doug Zongker | 211aebc | 2011-10-28 15:13:10 -0700 | [diff] [blame] | 655 | ui->SetProgressType(RecoveryUI::EMPTY); |
Doug Zongker | f93d816 | 2009-09-22 15:16:02 -0700 | [diff] [blame] | 656 | |
Doug Zongker | daefc1d | 2011-10-31 09:34:15 -0700 | [diff] [blame^] | 657 | int chosen_item = get_menu_selection(headers, device->GetMenuItems(), 0, 0, device); |
Doug Zongker | f93d816 | 2009-09-22 15:16:02 -0700 | [diff] [blame] | 658 | |
| 659 | // device-specific code may take some action here. It may |
| 660 | // return one of the core actions handled in the switch |
| 661 | // statement below. |
Doug Zongker | daefc1d | 2011-10-31 09:34:15 -0700 | [diff] [blame^] | 662 | chosen_item = device->InvokeMenuItem(chosen_item); |
Doug Zongker | f93d816 | 2009-09-22 15:16:02 -0700 | [diff] [blame] | 663 | |
Michael Ward | 9d2629c | 2011-06-23 22:14:24 -0700 | [diff] [blame] | 664 | int status; |
Doug Zongker | d0181b8 | 2011-10-19 10:51:12 -0700 | [diff] [blame] | 665 | int wipe_cache; |
Doug Zongker | f93d816 | 2009-09-22 15:16:02 -0700 | [diff] [blame] | 666 | switch (chosen_item) { |
Doug Zongker | daefc1d | 2011-10-31 09:34:15 -0700 | [diff] [blame^] | 667 | case Device::REBOOT: |
Doug Zongker | f93d816 | 2009-09-22 15:16:02 -0700 | [diff] [blame] | 668 | return; |
| 669 | |
Doug Zongker | daefc1d | 2011-10-31 09:34:15 -0700 | [diff] [blame^] | 670 | case Device::WIPE_DATA: |
| 671 | wipe_data(ui->IsTextVisible(), device); |
Doug Zongker | 211aebc | 2011-10-28 15:13:10 -0700 | [diff] [blame] | 672 | if (!ui->IsTextVisible()) return; |
Doug Zongker | f93d816 | 2009-09-22 15:16:02 -0700 | [diff] [blame] | 673 | break; |
| 674 | |
Doug Zongker | daefc1d | 2011-10-31 09:34:15 -0700 | [diff] [blame^] | 675 | case Device::WIPE_CACHE: |
Doug Zongker | 211aebc | 2011-10-28 15:13:10 -0700 | [diff] [blame] | 676 | ui->Print("\n-- Wiping cache...\n"); |
Doug Zongker | d4208f9 | 2010-09-20 12:16:13 -0700 | [diff] [blame] | 677 | erase_volume("/cache"); |
Doug Zongker | 211aebc | 2011-10-28 15:13:10 -0700 | [diff] [blame] | 678 | ui->Print("Cache wipe complete.\n"); |
| 679 | if (!ui->IsTextVisible()) return; |
Doug Zongker | f93d816 | 2009-09-22 15:16:02 -0700 | [diff] [blame] | 680 | break; |
| 681 | |
Doug Zongker | daefc1d | 2011-10-31 09:34:15 -0700 | [diff] [blame^] | 682 | case Device::APPLY_EXT: |
| 683 | status = update_directory(SDCARD_ROOT, SDCARD_ROOT, &wipe_cache, device); |
Doug Zongker | d0181b8 | 2011-10-19 10:51:12 -0700 | [diff] [blame] | 684 | if (status == INSTALL_SUCCESS && wipe_cache) { |
Doug Zongker | 211aebc | 2011-10-28 15:13:10 -0700 | [diff] [blame] | 685 | ui->Print("\n-- Wiping cache (at package request)...\n"); |
Doug Zongker | d0181b8 | 2011-10-19 10:51:12 -0700 | [diff] [blame] | 686 | if (erase_volume("/cache")) { |
Doug Zongker | 211aebc | 2011-10-28 15:13:10 -0700 | [diff] [blame] | 687 | ui->Print("Cache wipe failed.\n"); |
Doug Zongker | d0181b8 | 2011-10-19 10:51:12 -0700 | [diff] [blame] | 688 | } else { |
Doug Zongker | 211aebc | 2011-10-28 15:13:10 -0700 | [diff] [blame] | 689 | ui->Print("Cache wipe complete.\n"); |
Doug Zongker | d0181b8 | 2011-10-19 10:51:12 -0700 | [diff] [blame] | 690 | } |
| 691 | } |
Doug Zongker | 8674a72 | 2010-09-15 11:08:23 -0700 | [diff] [blame] | 692 | if (status >= 0) { |
| 693 | if (status != INSTALL_SUCCESS) { |
Doug Zongker | 211aebc | 2011-10-28 15:13:10 -0700 | [diff] [blame] | 694 | ui->SetBackground(RecoveryUI::ERROR); |
| 695 | ui->Print("Installation aborted.\n"); |
| 696 | } else if (!ui->IsTextVisible()) { |
Doug Zongker | 8674a72 | 2010-09-15 11:08:23 -0700 | [diff] [blame] | 697 | return; // reboot if logs aren't visible |
| 698 | } else { |
Doug Zongker | 211aebc | 2011-10-28 15:13:10 -0700 | [diff] [blame] | 699 | ui->Print("\nInstall from sdcard complete.\n"); |
Doug Zongker | 8674a72 | 2010-09-15 11:08:23 -0700 | [diff] [blame] | 700 | } |
Doug Zongker | f93d816 | 2009-09-22 15:16:02 -0700 | [diff] [blame] | 701 | } |
| 702 | break; |
Doug Zongker | daefc1d | 2011-10-31 09:34:15 -0700 | [diff] [blame^] | 703 | |
| 704 | case Device::APPLY_CACHE: |
Michael Ward | 9d2629c | 2011-06-23 22:14:24 -0700 | [diff] [blame] | 705 | // Don't unmount cache at the end of this. |
Doug Zongker | daefc1d | 2011-10-31 09:34:15 -0700 | [diff] [blame^] | 706 | status = update_directory(CACHE_ROOT, NULL, &wipe_cache, device); |
Doug Zongker | d0181b8 | 2011-10-19 10:51:12 -0700 | [diff] [blame] | 707 | if (status == INSTALL_SUCCESS && wipe_cache) { |
Doug Zongker | 211aebc | 2011-10-28 15:13:10 -0700 | [diff] [blame] | 708 | ui->Print("\n-- Wiping cache (at package request)...\n"); |
Doug Zongker | d0181b8 | 2011-10-19 10:51:12 -0700 | [diff] [blame] | 709 | if (erase_volume("/cache")) { |
Doug Zongker | 211aebc | 2011-10-28 15:13:10 -0700 | [diff] [blame] | 710 | ui->Print("Cache wipe failed.\n"); |
Doug Zongker | d0181b8 | 2011-10-19 10:51:12 -0700 | [diff] [blame] | 711 | } else { |
Doug Zongker | 211aebc | 2011-10-28 15:13:10 -0700 | [diff] [blame] | 712 | ui->Print("Cache wipe complete.\n"); |
Doug Zongker | d0181b8 | 2011-10-19 10:51:12 -0700 | [diff] [blame] | 713 | } |
| 714 | } |
Michael Ward | 9d2629c | 2011-06-23 22:14:24 -0700 | [diff] [blame] | 715 | if (status >= 0) { |
| 716 | if (status != INSTALL_SUCCESS) { |
Doug Zongker | 211aebc | 2011-10-28 15:13:10 -0700 | [diff] [blame] | 717 | ui->SetBackground(RecoveryUI::ERROR); |
| 718 | ui->Print("Installation aborted.\n"); |
| 719 | } else if (!ui->IsTextVisible()) { |
Michael Ward | 9d2629c | 2011-06-23 22:14:24 -0700 | [diff] [blame] | 720 | return; // reboot if logs aren't visible |
| 721 | } else { |
Doug Zongker | 211aebc | 2011-10-28 15:13:10 -0700 | [diff] [blame] | 722 | ui->Print("\nInstall from cache complete.\n"); |
Michael Ward | 9d2629c | 2011-06-23 22:14:24 -0700 | [diff] [blame] | 723 | } |
| 724 | } |
| 725 | break; |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 726 | } |
| 727 | } |
| 728 | } |
| 729 | |
| 730 | static void |
Oscar Montemayor | 0523156 | 2009-11-30 08:40:57 -0800 | [diff] [blame] | 731 | print_property(const char *key, const char *name, void *cookie) { |
Doug Zongker | 56c5105 | 2010-07-01 09:18:44 -0700 | [diff] [blame] | 732 | printf("%s=%s\n", key, name); |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 733 | } |
| 734 | |
| 735 | int |
Oscar Montemayor | 0523156 | 2009-11-30 08:40:57 -0800 | [diff] [blame] | 736 | main(int argc, char **argv) { |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 737 | time_t start = time(NULL); |
| 738 | |
| 739 | // If these fail, there's not really anywhere to complain... |
| 740 | freopen(TEMPORARY_LOG_FILE, "a", stdout); setbuf(stdout, NULL); |
| 741 | freopen(TEMPORARY_LOG_FILE, "a", stderr); setbuf(stderr, NULL); |
Doug Zongker | 56c5105 | 2010-07-01 09:18:44 -0700 | [diff] [blame] | 742 | printf("Starting recovery on %s", ctime(&start)); |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 743 | |
Doug Zongker | daefc1d | 2011-10-31 09:34:15 -0700 | [diff] [blame^] | 744 | Device* device = make_device(); |
| 745 | ui = device->GetUI(); |
Doug Zongker | 211aebc | 2011-10-28 15:13:10 -0700 | [diff] [blame] | 746 | |
| 747 | ui->Init(); |
| 748 | ui->SetBackground(RecoveryUI::INSTALLING); |
Doug Zongker | d4208f9 | 2010-09-20 12:16:13 -0700 | [diff] [blame] | 749 | load_volume_table(); |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 750 | get_args(&argc, &argv); |
| 751 | |
| 752 | int previous_runs = 0; |
| 753 | const char *send_intent = NULL; |
| 754 | const char *update_package = NULL; |
| 755 | int wipe_data = 0, wipe_cache = 0; |
| 756 | |
| 757 | int arg; |
| 758 | while ((arg = getopt_long(argc, argv, "", OPTIONS, NULL)) != -1) { |
| 759 | switch (arg) { |
| 760 | case 'p': previous_runs = atoi(optarg); break; |
| 761 | case 's': send_intent = optarg; break; |
| 762 | case 'u': update_package = optarg; break; |
| 763 | case 'w': wipe_data = wipe_cache = 1; break; |
| 764 | case 'c': wipe_cache = 1; break; |
Doug Zongker | 211aebc | 2011-10-28 15:13:10 -0700 | [diff] [blame] | 765 | case 't': ui->ShowText(true); break; |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 766 | case '?': |
| 767 | LOGE("Invalid command argument\n"); |
| 768 | continue; |
| 769 | } |
| 770 | } |
| 771 | |
Doug Zongker | daefc1d | 2011-10-31 09:34:15 -0700 | [diff] [blame^] | 772 | device->StartRecovery(); |
Doug Zongker | efa1bab | 2010-02-01 15:59:12 -0800 | [diff] [blame] | 773 | |
Doug Zongker | 56c5105 | 2010-07-01 09:18:44 -0700 | [diff] [blame] | 774 | printf("Command:"); |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 775 | for (arg = 0; arg < argc; arg++) { |
Doug Zongker | 56c5105 | 2010-07-01 09:18:44 -0700 | [diff] [blame] | 776 | printf(" \"%s\"", argv[arg]); |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 777 | } |
Doug Zongker | 9b125b0 | 2010-09-22 12:01:37 -0700 | [diff] [blame] | 778 | printf("\n"); |
| 779 | |
| 780 | if (update_package) { |
| 781 | // For backwards compatibility on the cache partition only, if |
| 782 | // we're given an old 'root' path "CACHE:foo", change it to |
| 783 | // "/cache/foo". |
| 784 | if (strncmp(update_package, "CACHE:", 6) == 0) { |
| 785 | int len = strlen(update_package) + 10; |
Doug Zongker | 28ce47c | 2011-10-28 10:33:05 -0700 | [diff] [blame] | 786 | char* modified_path = (char*)malloc(len); |
Doug Zongker | 9b125b0 | 2010-09-22 12:01:37 -0700 | [diff] [blame] | 787 | strlcpy(modified_path, "/cache/", len); |
| 788 | strlcat(modified_path, update_package+6, len); |
| 789 | printf("(replacing path \"%s\" with \"%s\")\n", |
| 790 | update_package, modified_path); |
| 791 | update_package = modified_path; |
| 792 | } |
| 793 | } |
| 794 | printf("\n"); |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 795 | |
| 796 | property_list(print_property, NULL); |
Doug Zongker | 56c5105 | 2010-07-01 09:18:44 -0700 | [diff] [blame] | 797 | printf("\n"); |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 798 | |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 799 | int status = INSTALL_SUCCESS; |
| 800 | |
Doug Zongker | 540d57f | 2011-01-18 13:36:58 -0800 | [diff] [blame] | 801 | if (update_package != NULL) { |
Doug Zongker | d0181b8 | 2011-10-19 10:51:12 -0700 | [diff] [blame] | 802 | status = install_package(update_package, &wipe_cache, TEMPORARY_INSTALL_FILE); |
| 803 | if (status == INSTALL_SUCCESS && wipe_cache) { |
| 804 | if (erase_volume("/cache")) { |
| 805 | LOGE("Cache wipe (requested by package) failed."); |
| 806 | } |
| 807 | } |
Doug Zongker | 211aebc | 2011-10-28 15:13:10 -0700 | [diff] [blame] | 808 | if (status != INSTALL_SUCCESS) ui->Print("Installation aborted.\n"); |
Doug Zongker | b128f54 | 2009-06-18 15:07:14 -0700 | [diff] [blame] | 809 | } else if (wipe_data) { |
Doug Zongker | daefc1d | 2011-10-31 09:34:15 -0700 | [diff] [blame^] | 810 | if (device->WipeData()) status = INSTALL_ERROR; |
Doug Zongker | d4208f9 | 2010-09-20 12:16:13 -0700 | [diff] [blame] | 811 | if (erase_volume("/data")) status = INSTALL_ERROR; |
| 812 | if (wipe_cache && erase_volume("/cache")) status = INSTALL_ERROR; |
Doug Zongker | 211aebc | 2011-10-28 15:13:10 -0700 | [diff] [blame] | 813 | if (status != INSTALL_SUCCESS) ui->Print("Data wipe failed.\n"); |
Doug Zongker | b128f54 | 2009-06-18 15:07:14 -0700 | [diff] [blame] | 814 | } else if (wipe_cache) { |
Doug Zongker | d4208f9 | 2010-09-20 12:16:13 -0700 | [diff] [blame] | 815 | if (wipe_cache && erase_volume("/cache")) status = INSTALL_ERROR; |
Doug Zongker | 211aebc | 2011-10-28 15:13:10 -0700 | [diff] [blame] | 816 | 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] | 817 | } else { |
| 818 | status = INSTALL_ERROR; // No command specified |
| 819 | } |
| 820 | |
Doug Zongker | 211aebc | 2011-10-28 15:13:10 -0700 | [diff] [blame] | 821 | if (status != INSTALL_SUCCESS) ui->SetBackground(RecoveryUI::ERROR); |
| 822 | if (status != INSTALL_SUCCESS || ui->IsTextVisible()) { |
Doug Zongker | daefc1d | 2011-10-31 09:34:15 -0700 | [diff] [blame^] | 823 | prompt_and_wait(device); |
Doug Zongker | 8674a72 | 2010-09-15 11:08:23 -0700 | [diff] [blame] | 824 | } |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 825 | |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 826 | // Otherwise, get ready to boot the main system... |
| 827 | finish_recovery(send_intent); |
Doug Zongker | 211aebc | 2011-10-28 15:13:10 -0700 | [diff] [blame] | 828 | ui->Print("Rebooting...\n"); |
Ken Sumrall | 6e4472a | 2011-03-07 23:37:27 -0800 | [diff] [blame] | 829 | android_reboot(ANDROID_RB_RESTART, 0, 0); |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 830 | return EXIT_SUCCESS; |
| 831 | } |