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" |
Dees_Troy | 38bd760 | 2012-09-14 13:33:53 -0400 | [diff] [blame] | 35 | #ifdef ANDROID_RB_RESTART |
Ken Sumrall | 6e4472a | 2011-03-07 23:37:27 -0800 | [diff] [blame] | 36 | #include "cutils/android_reboot.h" |
Dees_Troy | 38bd760 | 2012-09-14 13:33:53 -0400 | [diff] [blame] | 37 | #else |
| 38 | #include <sys/reboot.h> |
| 39 | #endif |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 40 | #include "install.h" |
| 41 | #include "minui/minui.h" |
| 42 | #include "minzip/DirUtil.h" |
| 43 | #include "roots.h" |
Doug Zongker | 28ce47c | 2011-10-28 10:33:05 -0700 | [diff] [blame] | 44 | #include "ui.h" |
Doug Zongker | 211aebc | 2011-10-28 15:13:10 -0700 | [diff] [blame] | 45 | #include "screen_ui.h" |
Doug Zongker | daefc1d | 2011-10-31 09:34:15 -0700 | [diff] [blame] | 46 | #include "device.h" |
Doug Zongker | 9270a20 | 2012-01-09 15:16:13 -0800 | [diff] [blame] | 47 | #include "adb_install.h" |
| 48 | extern "C" { |
| 49 | #include "minadbd/adb.h" |
| 50 | } |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 51 | |
Dees_Troy | 7d15c25 | 2012-09-05 20:47:21 -0400 | [diff] [blame] | 52 | extern "C" { |
Dees_Troy | 7d15c25 | 2012-09-05 20:47:21 -0400 | [diff] [blame] | 53 | #include "data.h" |
| 54 | #include "gui/gui.h" |
| 55 | } |
| 56 | #include "partitions.hpp" |
Dees_Troy | 5112731 | 2012-09-08 13:08:49 -0400 | [diff] [blame] | 57 | #include "variables.h" |
Dees_Troy | 812660f | 2012-09-20 09:55:17 -0400 | [diff] [blame] | 58 | #include "openrecoveryscript.hpp" |
Dees_Troy | a58bead | 2012-09-27 09:49:29 -0400 | [diff] [blame] | 59 | #include "twrp-functions.hpp" |
Dees_Troy | 7d15c25 | 2012-09-05 20:47:21 -0400 | [diff] [blame] | 60 | |
Dees_Troy | 5bf4392 | 2012-09-07 16:07:55 -0400 | [diff] [blame] | 61 | TWPartitionManager PartitionManager; |
Dees_Troy | 7d15c25 | 2012-09-05 20:47:21 -0400 | [diff] [blame] | 62 | |
Stephen Smalley | 779701d | 2012-02-09 14:13:23 -0500 | [diff] [blame] | 63 | struct selabel_handle *sehandle; |
| 64 | |
bigbiff bigbiff | e60683a | 2013-02-22 20:55:50 -0500 | [diff] [blame] | 65 | |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 66 | static const struct option OPTIONS[] = { |
| 67 | { "send_intent", required_argument, NULL, 's' }, |
| 68 | { "update_package", required_argument, NULL, 'u' }, |
| 69 | { "wipe_data", no_argument, NULL, 'w' }, |
| 70 | { "wipe_cache", no_argument, NULL, 'c' }, |
Doug Zongker | 4bc9806 | 2010-09-03 11:00:13 -0700 | [diff] [blame] | 71 | { "show_text", no_argument, NULL, 't' }, |
Doug Zongker | e5d5ac7 | 2012-04-12 11:01:22 -0700 | [diff] [blame] | 72 | { "just_exit", no_argument, NULL, 'x' }, |
Dees_Troy | 83a3b12 | 2012-10-01 14:16:43 -0400 | [diff] [blame] | 73 | { "nandroid", no_argument, NULL, 'n' }, |
Doug Zongker | 988500b | 2009-10-06 14:41:38 -0700 | [diff] [blame] | 74 | { NULL, 0, NULL, 0 }, |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 75 | }; |
| 76 | |
Doug Zongker | d4208f9 | 2010-09-20 12:16:13 -0700 | [diff] [blame] | 77 | static const char *COMMAND_FILE = "/cache/recovery/command"; |
| 78 | static const char *INTENT_FILE = "/cache/recovery/intent"; |
| 79 | static const char *LOG_FILE = "/cache/recovery/log"; |
Doug Zongker | 2c3539e | 2010-09-29 13:21:30 -0700 | [diff] [blame] | 80 | static const char *LAST_LOG_FILE = "/cache/recovery/last_log"; |
Doug Zongker | d0181b8 | 2011-10-19 10:51:12 -0700 | [diff] [blame] | 81 | static const char *LAST_INSTALL_FILE = "/cache/recovery/last_install"; |
Michael Ward | 9d2629c | 2011-06-23 22:14:24 -0700 | [diff] [blame] | 82 | static const char *CACHE_ROOT = "/cache"; |
Doug Zongker | d4208f9 | 2010-09-20 12:16:13 -0700 | [diff] [blame] | 83 | static const char *SDCARD_ROOT = "/sdcard"; |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 84 | static const char *TEMPORARY_LOG_FILE = "/tmp/recovery.log"; |
Doug Zongker | d0181b8 | 2011-10-19 10:51:12 -0700 | [diff] [blame] | 85 | static const char *TEMPORARY_INSTALL_FILE = "/tmp/last_install"; |
Doug Zongker | d4208f9 | 2010-09-20 12:16:13 -0700 | [diff] [blame] | 86 | static const char *SIDELOAD_TEMP_DIR = "/tmp/sideload"; |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 87 | |
Doug Zongker | 211aebc | 2011-10-28 15:13:10 -0700 | [diff] [blame] | 88 | RecoveryUI* ui = NULL; |
| 89 | |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 90 | /* |
| 91 | * The recovery tool communicates with the main system through /cache files. |
| 92 | * /cache/recovery/command - INPUT - command line for tool, one arg per line |
| 93 | * /cache/recovery/log - OUTPUT - combined log file from recovery run(s) |
| 94 | * /cache/recovery/intent - OUTPUT - intent that was passed in |
| 95 | * |
| 96 | * The arguments which may be supplied in the recovery.command file: |
| 97 | * --send_intent=anystring - write the text out to recovery.intent |
Doug Zongker | d4208f9 | 2010-09-20 12:16:13 -0700 | [diff] [blame] | 98 | * --update_package=path - verify install an OTA package file |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 99 | * --wipe_data - erase user data (and cache), then reboot |
| 100 | * --wipe_cache - wipe cache (but not user data), then reboot |
Oscar Montemayor | 0523156 | 2009-11-30 08:40:57 -0800 | [diff] [blame] | 101 | * --set_encrypted_filesystem=on|off - enables / diasables encrypted fs |
Doug Zongker | e5d5ac7 | 2012-04-12 11:01:22 -0700 | [diff] [blame] | 102 | * --just_exit - do nothing; exit and reboot |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 103 | * |
| 104 | * After completing, we remove /cache/recovery/command and reboot. |
| 105 | * Arguments may also be supplied in the bootloader control block (BCB). |
| 106 | * These important scenarios must be safely restartable at any point: |
| 107 | * |
| 108 | * FACTORY RESET |
| 109 | * 1. user selects "factory reset" |
| 110 | * 2. main system writes "--wipe_data" to /cache/recovery/command |
| 111 | * 3. main system reboots into recovery |
| 112 | * 4. get_args() writes BCB with "boot-recovery" and "--wipe_data" |
| 113 | * -- after this, rebooting will restart the erase -- |
Doug Zongker | d4208f9 | 2010-09-20 12:16:13 -0700 | [diff] [blame] | 114 | * 5. erase_volume() reformats /data |
| 115 | * 6. erase_volume() reformats /cache |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 116 | * 7. finish_recovery() erases BCB |
| 117 | * -- after this, rebooting will restart the main system -- |
| 118 | * 8. main() calls reboot() to boot main system |
| 119 | * |
| 120 | * OTA INSTALL |
| 121 | * 1. main system downloads OTA package to /cache/some-filename.zip |
Doug Zongker | 9b125b0 | 2010-09-22 12:01:37 -0700 | [diff] [blame] | 122 | * 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] | 123 | * 3. main system reboots into recovery |
| 124 | * 4. get_args() writes BCB with "boot-recovery" and "--update_package=..." |
| 125 | * -- after this, rebooting will attempt to reinstall the update -- |
| 126 | * 5. install_package() attempts to install the update |
| 127 | * NOTE: the package install must itself be restartable from any point |
| 128 | * 6. finish_recovery() erases BCB |
| 129 | * -- after this, rebooting will (try to) restart the main system -- |
| 130 | * 7. ** if install failed ** |
| 131 | * 7a. prompt_and_wait() shows an error icon and waits for the user |
| 132 | * 7b; the user reboots (pulling the battery, etc) into the main system |
| 133 | * 8. main() calls maybe_install_firmware_update() |
| 134 | * ** if the update contained radio/hboot firmware **: |
| 135 | * 8a. m_i_f_u() writes BCB with "boot-recovery" and "--wipe_cache" |
| 136 | * -- after this, rebooting will reformat cache & restart main system -- |
| 137 | * 8b. m_i_f_u() writes firmware image into raw cache partition |
| 138 | * 8c. m_i_f_u() writes BCB with "update-radio/hboot" and "--wipe_cache" |
| 139 | * -- after this, rebooting will attempt to reinstall firmware -- |
| 140 | * 8d. bootloader tries to flash firmware |
| 141 | * 8e. bootloader writes BCB with "boot-recovery" (keeping "--wipe_cache") |
| 142 | * -- after this, rebooting will reformat cache & restart main system -- |
Doug Zongker | d4208f9 | 2010-09-20 12:16:13 -0700 | [diff] [blame] | 143 | * 8f. erase_volume() reformats /cache |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 144 | * 8g. finish_recovery() erases BCB |
| 145 | * -- after this, rebooting will (try to) restart the main system -- |
| 146 | * 9. main() calls reboot() to boot main system |
| 147 | */ |
| 148 | |
| 149 | static const int MAX_ARG_LENGTH = 4096; |
| 150 | static const int MAX_ARGS = 100; |
| 151 | |
Doug Zongker | d4208f9 | 2010-09-20 12:16:13 -0700 | [diff] [blame] | 152 | // open a given path, mounting partitions as necessary |
Doug Zongker | 469243e | 2011-04-12 09:28:10 -0700 | [diff] [blame] | 153 | FILE* |
Doug Zongker | d4208f9 | 2010-09-20 12:16:13 -0700 | [diff] [blame] | 154 | fopen_path(const char *path, const char *mode) { |
| 155 | if (ensure_path_mounted(path) != 0) { |
| 156 | LOGE("Can't mount %s\n", path); |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 157 | return NULL; |
| 158 | } |
| 159 | |
| 160 | // When writing, try to create the containing directory, if necessary. |
| 161 | // Use generous permissions, the system (init.rc) will reset them. |
Stephen Smalley | 779701d | 2012-02-09 14:13:23 -0500 | [diff] [blame] | 162 | 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] | 163 | |
| 164 | FILE *fp = fopen(path, mode); |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 165 | return fp; |
| 166 | } |
| 167 | |
| 168 | // close a file, log an error if the error indicator is set |
| 169 | static void |
| 170 | check_and_fclose(FILE *fp, const char *name) { |
| 171 | fflush(fp); |
| 172 | if (ferror(fp)) LOGE("Error in %s\n(%s)\n", name, strerror(errno)); |
| 173 | fclose(fp); |
| 174 | } |
| 175 | |
| 176 | // command line args come from, in decreasing precedence: |
| 177 | // - the actual command line |
| 178 | // - the bootloader control block (one per line, after "recovery") |
| 179 | // - the contents of COMMAND_FILE (one per line) |
| 180 | static void |
| 181 | get_args(int *argc, char ***argv) { |
| 182 | struct bootloader_message boot; |
| 183 | memset(&boot, 0, sizeof(boot)); |
| 184 | get_bootloader_message(&boot); // this may fail, leaving a zeroed structure |
| 185 | |
| 186 | if (boot.command[0] != 0 && boot.command[0] != 255) { |
| 187 | LOGI("Boot command: %.*s\n", sizeof(boot.command), boot.command); |
| 188 | } |
| 189 | |
| 190 | if (boot.status[0] != 0 && boot.status[0] != 255) { |
| 191 | LOGI("Boot status: %.*s\n", sizeof(boot.status), boot.status); |
| 192 | } |
| 193 | |
| 194 | // --- if arguments weren't supplied, look in the bootloader control block |
| 195 | if (*argc <= 1) { |
| 196 | boot.recovery[sizeof(boot.recovery) - 1] = '\0'; // Ensure termination |
| 197 | const char *arg = strtok(boot.recovery, "\n"); |
| 198 | if (arg != NULL && !strcmp(arg, "recovery")) { |
| 199 | *argv = (char **) malloc(sizeof(char *) * MAX_ARGS); |
| 200 | (*argv)[0] = strdup(arg); |
| 201 | for (*argc = 1; *argc < MAX_ARGS; ++*argc) { |
| 202 | if ((arg = strtok(NULL, "\n")) == NULL) break; |
| 203 | (*argv)[*argc] = strdup(arg); |
| 204 | } |
| 205 | LOGI("Got arguments from boot message\n"); |
| 206 | } else if (boot.recovery[0] != 0 && boot.recovery[0] != 255) { |
| 207 | LOGE("Bad boot message\n\"%.20s\"\n", boot.recovery); |
| 208 | } |
| 209 | } |
| 210 | |
| 211 | // --- if that doesn't work, try the command file |
| 212 | if (*argc <= 1) { |
Doug Zongker | d4208f9 | 2010-09-20 12:16:13 -0700 | [diff] [blame] | 213 | FILE *fp = fopen_path(COMMAND_FILE, "r"); |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 214 | if (fp != NULL) { |
| 215 | char *argv0 = (*argv)[0]; |
| 216 | *argv = (char **) malloc(sizeof(char *) * MAX_ARGS); |
| 217 | (*argv)[0] = argv0; // use the same program name |
| 218 | |
| 219 | char buf[MAX_ARG_LENGTH]; |
| 220 | for (*argc = 1; *argc < MAX_ARGS; ++*argc) { |
| 221 | if (!fgets(buf, sizeof(buf), fp)) break; |
| 222 | (*argv)[*argc] = strdup(strtok(buf, "\r\n")); // Strip newline. |
| 223 | } |
| 224 | |
| 225 | check_and_fclose(fp, COMMAND_FILE); |
| 226 | LOGI("Got arguments from %s\n", COMMAND_FILE); |
| 227 | } |
| 228 | } |
| 229 | |
| 230 | // --> write the arguments we have back into the bootloader control block |
| 231 | // always boot into recovery after this (until finish_recovery() is called) |
| 232 | strlcpy(boot.command, "boot-recovery", sizeof(boot.command)); |
| 233 | strlcpy(boot.recovery, "recovery\n", sizeof(boot.recovery)); |
| 234 | int i; |
| 235 | for (i = 1; i < *argc; ++i) { |
| 236 | strlcat(boot.recovery, (*argv)[i], sizeof(boot.recovery)); |
| 237 | strlcat(boot.recovery, "\n", sizeof(boot.recovery)); |
| 238 | } |
| 239 | set_bootloader_message(&boot); |
| 240 | } |
| 241 | |
Doug Zongker | 34c98df | 2009-08-18 12:05:45 -0700 | [diff] [blame] | 242 | static void |
Oscar Montemayor | 0523156 | 2009-11-30 08:40:57 -0800 | [diff] [blame] | 243 | set_sdcard_update_bootloader_message() { |
Doug Zongker | 34c98df | 2009-08-18 12:05:45 -0700 | [diff] [blame] | 244 | struct bootloader_message boot; |
| 245 | memset(&boot, 0, sizeof(boot)); |
| 246 | strlcpy(boot.command, "boot-recovery", sizeof(boot.command)); |
| 247 | strlcpy(boot.recovery, "recovery\n", sizeof(boot.recovery)); |
| 248 | set_bootloader_message(&boot); |
| 249 | } |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 250 | |
Doug Zongker | 2c3539e | 2010-09-29 13:21:30 -0700 | [diff] [blame] | 251 | // How much of the temp log we have copied to the copy in cache. |
Dees_Troy | 7d15c25 | 2012-09-05 20:47:21 -0400 | [diff] [blame] | 252 | //static long tmplog_offset = 0; |
Doug Zongker | 2c3539e | 2010-09-29 13:21:30 -0700 | [diff] [blame] | 253 | |
| 254 | static void |
Doug Zongker | d0181b8 | 2011-10-19 10:51:12 -0700 | [diff] [blame] | 255 | copy_log_file(const char* source, const char* destination, int append) { |
Doug Zongker | 2c3539e | 2010-09-29 13:21:30 -0700 | [diff] [blame] | 256 | FILE *log = fopen_path(destination, append ? "a" : "w"); |
| 257 | if (log == NULL) { |
| 258 | LOGE("Can't open %s\n", destination); |
| 259 | } else { |
Doug Zongker | d0181b8 | 2011-10-19 10:51:12 -0700 | [diff] [blame] | 260 | FILE *tmplog = fopen(source, "r"); |
| 261 | if (tmplog != NULL) { |
Doug Zongker | 2c3539e | 2010-09-29 13:21:30 -0700 | [diff] [blame] | 262 | if (append) { |
| 263 | fseek(tmplog, tmplog_offset, SEEK_SET); // Since last write |
| 264 | } |
| 265 | char buf[4096]; |
| 266 | while (fgets(buf, sizeof(buf), tmplog)) fputs(buf, log); |
| 267 | if (append) { |
| 268 | tmplog_offset = ftell(tmplog); |
| 269 | } |
Doug Zongker | d0181b8 | 2011-10-19 10:51:12 -0700 | [diff] [blame] | 270 | check_and_fclose(tmplog, source); |
Doug Zongker | 2c3539e | 2010-09-29 13:21:30 -0700 | [diff] [blame] | 271 | } |
| 272 | check_and_fclose(log, destination); |
| 273 | } |
| 274 | } |
| 275 | |
| 276 | |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 277 | // clear the recovery command and prepare to boot a (hopefully working) system, |
| 278 | // copy our log file to cache as well (for the system to read), and |
| 279 | // record any intent we were asked to communicate back to the system. |
| 280 | // this function is idempotent: call it as many times as you like. |
| 281 | static void |
Oscar Montemayor | 0523156 | 2009-11-30 08:40:57 -0800 | [diff] [blame] | 282 | finish_recovery(const char *send_intent) { |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 283 | // By this point, we're ready to return to the main system... |
| 284 | if (send_intent != NULL) { |
Doug Zongker | d4208f9 | 2010-09-20 12:16:13 -0700 | [diff] [blame] | 285 | FILE *fp = fopen_path(INTENT_FILE, "w"); |
Jay Freeman (saurik) | 619ec2f | 2008-11-17 01:56:05 +0000 | [diff] [blame] | 286 | if (fp == NULL) { |
| 287 | LOGE("Can't open %s\n", INTENT_FILE); |
| 288 | } else { |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 289 | fputs(send_intent, fp); |
| 290 | check_and_fclose(fp, INTENT_FILE); |
| 291 | } |
| 292 | } |
| 293 | |
| 294 | // Copy logs to cache so the system can find out what happened. |
Doug Zongker | d0181b8 | 2011-10-19 10:51:12 -0700 | [diff] [blame] | 295 | copy_log_file(TEMPORARY_LOG_FILE, LOG_FILE, true); |
| 296 | copy_log_file(TEMPORARY_LOG_FILE, LAST_LOG_FILE, false); |
| 297 | copy_log_file(TEMPORARY_INSTALL_FILE, LAST_INSTALL_FILE, false); |
| 298 | chmod(LOG_FILE, 0600); |
| 299 | chown(LOG_FILE, 1000, 1000); // system user |
Doug Zongker | 2c3539e | 2010-09-29 13:21:30 -0700 | [diff] [blame] | 300 | chmod(LAST_LOG_FILE, 0640); |
Doug Zongker | d0181b8 | 2011-10-19 10:51:12 -0700 | [diff] [blame] | 301 | chmod(LAST_INSTALL_FILE, 0644); |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 302 | |
Doug Zongker | e5d5ac7 | 2012-04-12 11:01:22 -0700 | [diff] [blame] | 303 | // 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] | 304 | struct bootloader_message boot; |
| 305 | memset(&boot, 0, sizeof(boot)); |
| 306 | set_bootloader_message(&boot); |
| 307 | |
| 308 | // Remove the command file, so recovery won't repeat indefinitely. |
Doug Zongker | d4208f9 | 2010-09-20 12:16:13 -0700 | [diff] [blame] | 309 | if (ensure_path_mounted(COMMAND_FILE) != 0 || |
| 310 | (unlink(COMMAND_FILE) && errno != ENOENT)) { |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 311 | LOGW("Can't unlink %s\n", COMMAND_FILE); |
| 312 | } |
| 313 | |
Doug Zongker | d0181b8 | 2011-10-19 10:51:12 -0700 | [diff] [blame] | 314 | ensure_path_unmounted(CACHE_ROOT); |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 315 | sync(); // For good measure. |
| 316 | } |
| 317 | |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 318 | static int |
Doug Zongker | d4208f9 | 2010-09-20 12:16:13 -0700 | [diff] [blame] | 319 | erase_volume(const char *volume) { |
Dees_Troy | 4b20e77 | 2013-01-17 18:50:23 +0000 | [diff] [blame] | 320 | return !PartitionManager.Wipe_By_Path(volume); |
Doug Zongker | 211aebc | 2011-10-28 15:13:10 -0700 | [diff] [blame] | 321 | ui->SetBackground(RecoveryUI::INSTALLING); |
| 322 | ui->SetProgressType(RecoveryUI::INDETERMINATE); |
| 323 | ui->Print("Formatting %s...\n", volume); |
Doug Zongker | 2c3539e | 2010-09-29 13:21:30 -0700 | [diff] [blame] | 324 | |
Doug Zongker | d0181b8 | 2011-10-19 10:51:12 -0700 | [diff] [blame] | 325 | ensure_path_unmounted(volume); |
| 326 | |
Doug Zongker | 2c3539e | 2010-09-29 13:21:30 -0700 | [diff] [blame] | 327 | if (strcmp(volume, "/cache") == 0) { |
| 328 | // Any part of the log we'd copied to cache is now gone. |
| 329 | // Reset the pointer so we copy from the beginning of the temp |
| 330 | // log. |
| 331 | tmplog_offset = 0; |
| 332 | } |
| 333 | |
Doug Zongker | d4208f9 | 2010-09-20 12:16:13 -0700 | [diff] [blame] | 334 | return format_volume(volume); |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 335 | } |
| 336 | |
Doug Zongker | 23ceeea | 2010-07-08 17:27:55 -0700 | [diff] [blame] | 337 | static char* |
Doug Zongker | d4208f9 | 2010-09-20 12:16:13 -0700 | [diff] [blame] | 338 | copy_sideloaded_package(const char* original_path) { |
| 339 | if (ensure_path_mounted(original_path) != 0) { |
| 340 | LOGE("Can't mount %s\n", original_path); |
Doug Zongker | 23ceeea | 2010-07-08 17:27:55 -0700 | [diff] [blame] | 341 | return NULL; |
| 342 | } |
| 343 | |
Doug Zongker | d4208f9 | 2010-09-20 12:16:13 -0700 | [diff] [blame] | 344 | if (ensure_path_mounted(SIDELOAD_TEMP_DIR) != 0) { |
Doug Zongker | 23ceeea | 2010-07-08 17:27:55 -0700 | [diff] [blame] | 345 | LOGE("Can't mount %s\n", SIDELOAD_TEMP_DIR); |
| 346 | return NULL; |
| 347 | } |
| 348 | |
Doug Zongker | d4208f9 | 2010-09-20 12:16:13 -0700 | [diff] [blame] | 349 | if (mkdir(SIDELOAD_TEMP_DIR, 0700) != 0) { |
Doug Zongker | 23ceeea | 2010-07-08 17:27:55 -0700 | [diff] [blame] | 350 | if (errno != EEXIST) { |
| 351 | LOGE("Can't mkdir %s (%s)\n", SIDELOAD_TEMP_DIR, strerror(errno)); |
| 352 | return NULL; |
| 353 | } |
| 354 | } |
| 355 | |
Doug Zongker | d4208f9 | 2010-09-20 12:16:13 -0700 | [diff] [blame] | 356 | // verify that SIDELOAD_TEMP_DIR is exactly what we expect: a |
| 357 | // directory, owned by root, readable and writable only by root. |
Doug Zongker | 23ceeea | 2010-07-08 17:27:55 -0700 | [diff] [blame] | 358 | struct stat st; |
Doug Zongker | d4208f9 | 2010-09-20 12:16:13 -0700 | [diff] [blame] | 359 | if (stat(SIDELOAD_TEMP_DIR, &st) != 0) { |
| 360 | LOGE("failed to stat %s (%s)\n", SIDELOAD_TEMP_DIR, strerror(errno)); |
Doug Zongker | 23ceeea | 2010-07-08 17:27:55 -0700 | [diff] [blame] | 361 | return NULL; |
| 362 | } |
| 363 | if (!S_ISDIR(st.st_mode)) { |
Doug Zongker | d4208f9 | 2010-09-20 12:16:13 -0700 | [diff] [blame] | 364 | LOGE("%s isn't a directory\n", SIDELOAD_TEMP_DIR); |
Doug Zongker | 23ceeea | 2010-07-08 17:27:55 -0700 | [diff] [blame] | 365 | return NULL; |
| 366 | } |
| 367 | if ((st.st_mode & 0777) != 0700) { |
Doug Zongker | d4208f9 | 2010-09-20 12:16:13 -0700 | [diff] [blame] | 368 | LOGE("%s has perms %o\n", SIDELOAD_TEMP_DIR, st.st_mode); |
Doug Zongker | 23ceeea | 2010-07-08 17:27:55 -0700 | [diff] [blame] | 369 | return NULL; |
| 370 | } |
| 371 | if (st.st_uid != 0) { |
Doug Zongker | d4208f9 | 2010-09-20 12:16:13 -0700 | [diff] [blame] | 372 | 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] | 373 | return NULL; |
| 374 | } |
| 375 | |
Doug Zongker | d4208f9 | 2010-09-20 12:16:13 -0700 | [diff] [blame] | 376 | char copy_path[PATH_MAX]; |
| 377 | strcpy(copy_path, SIDELOAD_TEMP_DIR); |
Doug Zongker | 23ceeea | 2010-07-08 17:27:55 -0700 | [diff] [blame] | 378 | strcat(copy_path, "/package.zip"); |
| 379 | |
Doug Zongker | 28ce47c | 2011-10-28 10:33:05 -0700 | [diff] [blame] | 380 | char* buffer = (char*)malloc(BUFSIZ); |
Doug Zongker | 23ceeea | 2010-07-08 17:27:55 -0700 | [diff] [blame] | 381 | if (buffer == NULL) { |
| 382 | LOGE("Failed to allocate buffer\n"); |
| 383 | return NULL; |
| 384 | } |
| 385 | |
| 386 | size_t read; |
| 387 | FILE* fin = fopen(original_path, "rb"); |
| 388 | if (fin == NULL) { |
| 389 | LOGE("Failed to open %s (%s)\n", original_path, strerror(errno)); |
| 390 | return NULL; |
| 391 | } |
| 392 | FILE* fout = fopen(copy_path, "wb"); |
| 393 | if (fout == NULL) { |
| 394 | LOGE("Failed to open %s (%s)\n", copy_path, strerror(errno)); |
| 395 | return NULL; |
| 396 | } |
| 397 | |
| 398 | while ((read = fread(buffer, 1, BUFSIZ, fin)) > 0) { |
| 399 | if (fwrite(buffer, 1, read, fout) != read) { |
| 400 | LOGE("Short write of %s (%s)\n", copy_path, strerror(errno)); |
| 401 | return NULL; |
| 402 | } |
| 403 | } |
| 404 | |
| 405 | free(buffer); |
| 406 | |
| 407 | if (fclose(fout) != 0) { |
| 408 | LOGE("Failed to close %s (%s)\n", copy_path, strerror(errno)); |
| 409 | return NULL; |
| 410 | } |
| 411 | |
| 412 | if (fclose(fin) != 0) { |
| 413 | LOGE("Failed to close %s (%s)\n", original_path, strerror(errno)); |
| 414 | return NULL; |
| 415 | } |
| 416 | |
| 417 | // "adb push" is happy to overwrite read-only files when it's |
| 418 | // running as root, but we'll try anyway. |
| 419 | if (chmod(copy_path, 0400) != 0) { |
| 420 | LOGE("Failed to chmod %s (%s)\n", copy_path, strerror(errno)); |
| 421 | return NULL; |
| 422 | } |
| 423 | |
Doug Zongker | d4208f9 | 2010-09-20 12:16:13 -0700 | [diff] [blame] | 424 | return strdup(copy_path); |
Doug Zongker | 23ceeea | 2010-07-08 17:27:55 -0700 | [diff] [blame] | 425 | } |
| 426 | |
Doug Zongker | 28ce47c | 2011-10-28 10:33:05 -0700 | [diff] [blame] | 427 | static const char** |
Doug Zongker | daefc1d | 2011-10-31 09:34:15 -0700 | [diff] [blame] | 428 | prepend_title(const char* const* headers) { |
Doug Zongker | 28ce47c | 2011-10-28 10:33:05 -0700 | [diff] [blame] | 429 | const char* title[] = { "Android system recovery <" |
| 430 | EXPAND(RECOVERY_API_VERSION) "e>", |
| 431 | "", |
| 432 | NULL }; |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 433 | |
Doug Zongker | d683785 | 2009-06-17 22:07:13 -0700 | [diff] [blame] | 434 | // count the number of lines in our title, plus the |
Doug Zongker | f93d816 | 2009-09-22 15:16:02 -0700 | [diff] [blame] | 435 | // caller-provided headers. |
Doug Zongker | d683785 | 2009-06-17 22:07:13 -0700 | [diff] [blame] | 436 | int count = 0; |
Doug Zongker | daefc1d | 2011-10-31 09:34:15 -0700 | [diff] [blame] | 437 | const char* const* p; |
Doug Zongker | d683785 | 2009-06-17 22:07:13 -0700 | [diff] [blame] | 438 | for (p = title; *p; ++p, ++count); |
Doug Zongker | f93d816 | 2009-09-22 15:16:02 -0700 | [diff] [blame] | 439 | for (p = headers; *p; ++p, ++count); |
Doug Zongker | d683785 | 2009-06-17 22:07:13 -0700 | [diff] [blame] | 440 | |
Doug Zongker | 28ce47c | 2011-10-28 10:33:05 -0700 | [diff] [blame] | 441 | const char** new_headers = (const char**)malloc((count+1) * sizeof(char*)); |
| 442 | const char** h = new_headers; |
Doug Zongker | d683785 | 2009-06-17 22:07:13 -0700 | [diff] [blame] | 443 | for (p = title; *p; ++p, ++h) *h = *p; |
Doug Zongker | f93d816 | 2009-09-22 15:16:02 -0700 | [diff] [blame] | 444 | for (p = headers; *p; ++p, ++h) *h = *p; |
Doug Zongker | d683785 | 2009-06-17 22:07:13 -0700 | [diff] [blame] | 445 | *h = NULL; |
| 446 | |
Doug Zongker | f93d816 | 2009-09-22 15:16:02 -0700 | [diff] [blame] | 447 | return new_headers; |
| 448 | } |
| 449 | |
| 450 | static int |
Doug Zongker | 28ce47c | 2011-10-28 10:33:05 -0700 | [diff] [blame] | 451 | get_menu_selection(const char* const * headers, const char* const * items, |
Doug Zongker | daefc1d | 2011-10-31 09:34:15 -0700 | [diff] [blame] | 452 | int menu_only, int initial_selection, Device* device) { |
Doug Zongker | f93d816 | 2009-09-22 15:16:02 -0700 | [diff] [blame] | 453 | // throw away keys pressed previously, so user doesn't |
| 454 | // accidentally trigger menu items. |
Doug Zongker | 211aebc | 2011-10-28 15:13:10 -0700 | [diff] [blame] | 455 | ui->FlushKeys(); |
Doug Zongker | f93d816 | 2009-09-22 15:16:02 -0700 | [diff] [blame] | 456 | |
Doug Zongker | 211aebc | 2011-10-28 15:13:10 -0700 | [diff] [blame] | 457 | ui->StartMenu(headers, items, initial_selection); |
Doug Zongker | 8674a72 | 2010-09-15 11:08:23 -0700 | [diff] [blame] | 458 | int selected = initial_selection; |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 459 | int chosen_item = -1; |
| 460 | |
Doug Zongker | f93d816 | 2009-09-22 15:16:02 -0700 | [diff] [blame] | 461 | while (chosen_item < 0) { |
Doug Zongker | 211aebc | 2011-10-28 15:13:10 -0700 | [diff] [blame] | 462 | int key = ui->WaitKey(); |
| 463 | int visible = ui->IsTextVisible(); |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 464 | |
Doug Zongker | 5cae445 | 2011-01-25 13:15:30 -0800 | [diff] [blame] | 465 | if (key == -1) { // ui_wait_key() timed out |
Doug Zongker | 211aebc | 2011-10-28 15:13:10 -0700 | [diff] [blame] | 466 | if (ui->WasTextEverVisible()) { |
Doug Zongker | 5cae445 | 2011-01-25 13:15:30 -0800 | [diff] [blame] | 467 | continue; |
| 468 | } else { |
| 469 | LOGI("timed out waiting for key input; rebooting.\n"); |
Doug Zongker | 211aebc | 2011-10-28 15:13:10 -0700 | [diff] [blame] | 470 | ui->EndMenu(); |
Doug Zongker | daefc1d | 2011-10-31 09:34:15 -0700 | [diff] [blame] | 471 | return 0; // XXX fixme |
Doug Zongker | 5cae445 | 2011-01-25 13:15:30 -0800 | [diff] [blame] | 472 | } |
| 473 | } |
| 474 | |
Doug Zongker | daefc1d | 2011-10-31 09:34:15 -0700 | [diff] [blame] | 475 | int action = device->HandleMenuKey(key, visible); |
Doug Zongker | ddd6a28 | 2009-06-09 12:22:33 -0700 | [diff] [blame] | 476 | |
| 477 | if (action < 0) { |
| 478 | switch (action) { |
Doug Zongker | daefc1d | 2011-10-31 09:34:15 -0700 | [diff] [blame] | 479 | case Device::kHighlightUp: |
Doug Zongker | ddd6a28 | 2009-06-09 12:22:33 -0700 | [diff] [blame] | 480 | --selected; |
Doug Zongker | 211aebc | 2011-10-28 15:13:10 -0700 | [diff] [blame] | 481 | selected = ui->SelectMenu(selected); |
Doug Zongker | ddd6a28 | 2009-06-09 12:22:33 -0700 | [diff] [blame] | 482 | break; |
Doug Zongker | daefc1d | 2011-10-31 09:34:15 -0700 | [diff] [blame] | 483 | case Device::kHighlightDown: |
Doug Zongker | ddd6a28 | 2009-06-09 12:22:33 -0700 | [diff] [blame] | 484 | ++selected; |
Doug Zongker | 211aebc | 2011-10-28 15:13:10 -0700 | [diff] [blame] | 485 | selected = ui->SelectMenu(selected); |
Doug Zongker | ddd6a28 | 2009-06-09 12:22:33 -0700 | [diff] [blame] | 486 | break; |
Doug Zongker | daefc1d | 2011-10-31 09:34:15 -0700 | [diff] [blame] | 487 | case Device::kInvokeItem: |
Doug Zongker | ddd6a28 | 2009-06-09 12:22:33 -0700 | [diff] [blame] | 488 | chosen_item = selected; |
| 489 | break; |
Doug Zongker | daefc1d | 2011-10-31 09:34:15 -0700 | [diff] [blame] | 490 | case Device::kNoAction: |
Doug Zongker | ddd6a28 | 2009-06-09 12:22:33 -0700 | [diff] [blame] | 491 | break; |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 492 | } |
Doug Zongker | f93d816 | 2009-09-22 15:16:02 -0700 | [diff] [blame] | 493 | } else if (!menu_only) { |
Doug Zongker | ddd6a28 | 2009-06-09 12:22:33 -0700 | [diff] [blame] | 494 | chosen_item = action; |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 495 | } |
Doug Zongker | f93d816 | 2009-09-22 15:16:02 -0700 | [diff] [blame] | 496 | } |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 497 | |
Doug Zongker | 211aebc | 2011-10-28 15:13:10 -0700 | [diff] [blame] | 498 | ui->EndMenu(); |
Doug Zongker | f93d816 | 2009-09-22 15:16:02 -0700 | [diff] [blame] | 499 | return chosen_item; |
| 500 | } |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 501 | |
Doug Zongker | 8674a72 | 2010-09-15 11:08:23 -0700 | [diff] [blame] | 502 | static int compare_string(const void* a, const void* b) { |
| 503 | return strcmp(*(const char**)a, *(const char**)b); |
| 504 | } |
| 505 | |
| 506 | static int |
Doug Zongker | d0181b8 | 2011-10-19 10:51:12 -0700 | [diff] [blame] | 507 | update_directory(const char* path, const char* unmount_when_done, |
Doug Zongker | daefc1d | 2011-10-31 09:34:15 -0700 | [diff] [blame] | 508 | int* wipe_cache, Device* device) { |
Michael Ward | 9d2629c | 2011-06-23 22:14:24 -0700 | [diff] [blame] | 509 | ensure_path_mounted(path); |
Doug Zongker | c18eeb8 | 2010-09-21 16:49:26 -0700 | [diff] [blame] | 510 | |
Doug Zongker | 8674a72 | 2010-09-15 11:08:23 -0700 | [diff] [blame] | 511 | const char* MENU_HEADERS[] = { "Choose a package to install:", |
Doug Zongker | d4208f9 | 2010-09-20 12:16:13 -0700 | [diff] [blame] | 512 | path, |
Doug Zongker | 8674a72 | 2010-09-15 11:08:23 -0700 | [diff] [blame] | 513 | "", |
| 514 | NULL }; |
| 515 | DIR* d; |
| 516 | struct dirent* de; |
Doug Zongker | d4208f9 | 2010-09-20 12:16:13 -0700 | [diff] [blame] | 517 | d = opendir(path); |
Doug Zongker | 8674a72 | 2010-09-15 11:08:23 -0700 | [diff] [blame] | 518 | if (d == NULL) { |
| 519 | LOGE("error opening %s: %s\n", path, strerror(errno)); |
Michael Ward | 9d2629c | 2011-06-23 22:14:24 -0700 | [diff] [blame] | 520 | if (unmount_when_done != NULL) { |
| 521 | ensure_path_unmounted(unmount_when_done); |
| 522 | } |
Doug Zongker | 8674a72 | 2010-09-15 11:08:23 -0700 | [diff] [blame] | 523 | return 0; |
| 524 | } |
| 525 | |
Doug Zongker | 28ce47c | 2011-10-28 10:33:05 -0700 | [diff] [blame] | 526 | const char** headers = prepend_title(MENU_HEADERS); |
Doug Zongker | 8674a72 | 2010-09-15 11:08:23 -0700 | [diff] [blame] | 527 | |
| 528 | int d_size = 0; |
| 529 | int d_alloc = 10; |
Doug Zongker | 28ce47c | 2011-10-28 10:33:05 -0700 | [diff] [blame] | 530 | char** dirs = (char**)malloc(d_alloc * sizeof(char*)); |
Doug Zongker | 8674a72 | 2010-09-15 11:08:23 -0700 | [diff] [blame] | 531 | int z_size = 1; |
| 532 | int z_alloc = 10; |
Doug Zongker | 28ce47c | 2011-10-28 10:33:05 -0700 | [diff] [blame] | 533 | char** zips = (char**)malloc(z_alloc * sizeof(char*)); |
Doug Zongker | 8674a72 | 2010-09-15 11:08:23 -0700 | [diff] [blame] | 534 | zips[0] = strdup("../"); |
| 535 | |
| 536 | while ((de = readdir(d)) != NULL) { |
| 537 | int name_len = strlen(de->d_name); |
| 538 | |
| 539 | if (de->d_type == DT_DIR) { |
| 540 | // skip "." and ".." entries |
| 541 | if (name_len == 1 && de->d_name[0] == '.') continue; |
| 542 | if (name_len == 2 && de->d_name[0] == '.' && |
| 543 | de->d_name[1] == '.') continue; |
| 544 | |
| 545 | if (d_size >= d_alloc) { |
| 546 | d_alloc *= 2; |
Doug Zongker | 28ce47c | 2011-10-28 10:33:05 -0700 | [diff] [blame] | 547 | dirs = (char**)realloc(dirs, d_alloc * sizeof(char*)); |
Doug Zongker | 8674a72 | 2010-09-15 11:08:23 -0700 | [diff] [blame] | 548 | } |
Doug Zongker | 28ce47c | 2011-10-28 10:33:05 -0700 | [diff] [blame] | 549 | dirs[d_size] = (char*)malloc(name_len + 2); |
Doug Zongker | 8674a72 | 2010-09-15 11:08:23 -0700 | [diff] [blame] | 550 | strcpy(dirs[d_size], de->d_name); |
| 551 | dirs[d_size][name_len] = '/'; |
| 552 | dirs[d_size][name_len+1] = '\0'; |
| 553 | ++d_size; |
| 554 | } else if (de->d_type == DT_REG && |
| 555 | name_len >= 4 && |
| 556 | strncasecmp(de->d_name + (name_len-4), ".zip", 4) == 0) { |
| 557 | if (z_size >= z_alloc) { |
| 558 | z_alloc *= 2; |
Doug Zongker | 28ce47c | 2011-10-28 10:33:05 -0700 | [diff] [blame] | 559 | zips = (char**)realloc(zips, z_alloc * sizeof(char*)); |
Doug Zongker | 8674a72 | 2010-09-15 11:08:23 -0700 | [diff] [blame] | 560 | } |
| 561 | zips[z_size++] = strdup(de->d_name); |
| 562 | } |
| 563 | } |
| 564 | closedir(d); |
| 565 | |
| 566 | qsort(dirs, d_size, sizeof(char*), compare_string); |
| 567 | qsort(zips, z_size, sizeof(char*), compare_string); |
| 568 | |
| 569 | // append dirs to the zips list |
| 570 | if (d_size + z_size + 1 > z_alloc) { |
| 571 | z_alloc = d_size + z_size + 1; |
Doug Zongker | 28ce47c | 2011-10-28 10:33:05 -0700 | [diff] [blame] | 572 | zips = (char**)realloc(zips, z_alloc * sizeof(char*)); |
Doug Zongker | 8674a72 | 2010-09-15 11:08:23 -0700 | [diff] [blame] | 573 | } |
| 574 | memcpy(zips + z_size, dirs, d_size * sizeof(char*)); |
| 575 | free(dirs); |
| 576 | z_size += d_size; |
| 577 | zips[z_size] = NULL; |
| 578 | |
| 579 | int result; |
| 580 | int chosen_item = 0; |
| 581 | do { |
Doug Zongker | daefc1d | 2011-10-31 09:34:15 -0700 | [diff] [blame] | 582 | chosen_item = get_menu_selection(headers, zips, 1, chosen_item, device); |
Doug Zongker | 8674a72 | 2010-09-15 11:08:23 -0700 | [diff] [blame] | 583 | |
| 584 | char* item = zips[chosen_item]; |
| 585 | int item_len = strlen(item); |
| 586 | if (chosen_item == 0) { // item 0 is always "../" |
Michael Ward | 9d2629c | 2011-06-23 22:14:24 -0700 | [diff] [blame] | 587 | // go up but continue browsing (if the caller is update_directory) |
Doug Zongker | 8674a72 | 2010-09-15 11:08:23 -0700 | [diff] [blame] | 588 | result = -1; |
| 589 | break; |
| 590 | } else if (item[item_len-1] == '/') { |
| 591 | // recurse down into a subdirectory |
| 592 | char new_path[PATH_MAX]; |
Doug Zongker | d4208f9 | 2010-09-20 12:16:13 -0700 | [diff] [blame] | 593 | strlcpy(new_path, path, PATH_MAX); |
| 594 | strlcat(new_path, "/", PATH_MAX); |
Doug Zongker | 8674a72 | 2010-09-15 11:08:23 -0700 | [diff] [blame] | 595 | strlcat(new_path, item, PATH_MAX); |
Doug Zongker | d4208f9 | 2010-09-20 12:16:13 -0700 | [diff] [blame] | 596 | new_path[strlen(new_path)-1] = '\0'; // truncate the trailing '/' |
Doug Zongker | daefc1d | 2011-10-31 09:34:15 -0700 | [diff] [blame] | 597 | result = update_directory(new_path, unmount_when_done, wipe_cache, device); |
Doug Zongker | 8674a72 | 2010-09-15 11:08:23 -0700 | [diff] [blame] | 598 | if (result >= 0) break; |
| 599 | } else { |
| 600 | // selected a zip file: attempt to install it, and return |
| 601 | // the status to the caller. |
| 602 | char new_path[PATH_MAX]; |
Doug Zongker | d4208f9 | 2010-09-20 12:16:13 -0700 | [diff] [blame] | 603 | strlcpy(new_path, path, PATH_MAX); |
Doug Zongker | c18eeb8 | 2010-09-21 16:49:26 -0700 | [diff] [blame] | 604 | strlcat(new_path, "/", PATH_MAX); |
Doug Zongker | 8674a72 | 2010-09-15 11:08:23 -0700 | [diff] [blame] | 605 | strlcat(new_path, item, PATH_MAX); |
| 606 | |
Doug Zongker | 211aebc | 2011-10-28 15:13:10 -0700 | [diff] [blame] | 607 | ui->Print("\n-- Install %s ...\n", path); |
Doug Zongker | 8674a72 | 2010-09-15 11:08:23 -0700 | [diff] [blame] | 608 | set_sdcard_update_bootloader_message(); |
Doug Zongker | d4208f9 | 2010-09-20 12:16:13 -0700 | [diff] [blame] | 609 | char* copy = copy_sideloaded_package(new_path); |
Michael Ward | 9d2629c | 2011-06-23 22:14:24 -0700 | [diff] [blame] | 610 | if (unmount_when_done != NULL) { |
| 611 | ensure_path_unmounted(unmount_when_done); |
| 612 | } |
Doug Zongker | d4208f9 | 2010-09-20 12:16:13 -0700 | [diff] [blame] | 613 | if (copy) { |
Doug Zongker | d0181b8 | 2011-10-19 10:51:12 -0700 | [diff] [blame] | 614 | result = install_package(copy, wipe_cache, TEMPORARY_INSTALL_FILE); |
Doug Zongker | d4208f9 | 2010-09-20 12:16:13 -0700 | [diff] [blame] | 615 | free(copy); |
| 616 | } else { |
| 617 | result = INSTALL_ERROR; |
| 618 | } |
Doug Zongker | 8674a72 | 2010-09-15 11:08:23 -0700 | [diff] [blame] | 619 | break; |
| 620 | } |
| 621 | } while (true); |
| 622 | |
| 623 | int i; |
| 624 | for (i = 0; i < z_size; ++i) free(zips[i]); |
| 625 | free(zips); |
| 626 | free(headers); |
| 627 | |
Michael Ward | 9d2629c | 2011-06-23 22:14:24 -0700 | [diff] [blame] | 628 | if (unmount_when_done != NULL) { |
| 629 | ensure_path_unmounted(unmount_when_done); |
| 630 | } |
Doug Zongker | 8674a72 | 2010-09-15 11:08:23 -0700 | [diff] [blame] | 631 | return result; |
| 632 | } |
| 633 | |
Doug Zongker | f93d816 | 2009-09-22 15:16:02 -0700 | [diff] [blame] | 634 | static void |
Doug Zongker | daefc1d | 2011-10-31 09:34:15 -0700 | [diff] [blame] | 635 | wipe_data(int confirm, Device* device) { |
Doug Zongker | f93d816 | 2009-09-22 15:16:02 -0700 | [diff] [blame] | 636 | if (confirm) { |
Doug Zongker | 28ce47c | 2011-10-28 10:33:05 -0700 | [diff] [blame] | 637 | static const char** title_headers = NULL; |
Doug Zongker | ddd6a28 | 2009-06-09 12:22:33 -0700 | [diff] [blame] | 638 | |
Doug Zongker | f93d816 | 2009-09-22 15:16:02 -0700 | [diff] [blame] | 639 | if (title_headers == NULL) { |
Doug Zongker | 28ce47c | 2011-10-28 10:33:05 -0700 | [diff] [blame] | 640 | const char* headers[] = { "Confirm wipe of all user data?", |
| 641 | " THIS CAN NOT BE UNDONE.", |
| 642 | "", |
| 643 | NULL }; |
Doug Zongker | 8674a72 | 2010-09-15 11:08:23 -0700 | [diff] [blame] | 644 | title_headers = prepend_title((const char**)headers); |
Doug Zongker | f93d816 | 2009-09-22 15:16:02 -0700 | [diff] [blame] | 645 | } |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 646 | |
Doug Zongker | 28ce47c | 2011-10-28 10:33:05 -0700 | [diff] [blame] | 647 | const char* items[] = { " No", |
| 648 | " No", |
| 649 | " No", |
| 650 | " No", |
| 651 | " No", |
| 652 | " No", |
| 653 | " No", |
| 654 | " Yes -- delete all user data", // [7] |
| 655 | " No", |
| 656 | " No", |
| 657 | " No", |
| 658 | NULL }; |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 659 | |
Doug Zongker | daefc1d | 2011-10-31 09:34:15 -0700 | [diff] [blame] | 660 | int chosen_item = get_menu_selection(title_headers, items, 1, 0, device); |
Doug Zongker | f93d816 | 2009-09-22 15:16:02 -0700 | [diff] [blame] | 661 | if (chosen_item != 7) { |
| 662 | return; |
| 663 | } |
| 664 | } |
Doug Zongker | 1066d2c | 2009-04-01 13:57:40 -0700 | [diff] [blame] | 665 | |
Doug Zongker | 211aebc | 2011-10-28 15:13:10 -0700 | [diff] [blame] | 666 | ui->Print("\n-- Wiping data...\n"); |
Doug Zongker | daefc1d | 2011-10-31 09:34:15 -0700 | [diff] [blame] | 667 | device->WipeData(); |
Doug Zongker | d4208f9 | 2010-09-20 12:16:13 -0700 | [diff] [blame] | 668 | erase_volume("/data"); |
| 669 | erase_volume("/cache"); |
Doug Zongker | 211aebc | 2011-10-28 15:13:10 -0700 | [diff] [blame] | 670 | ui->Print("Data wipe complete.\n"); |
Doug Zongker | f93d816 | 2009-09-22 15:16:02 -0700 | [diff] [blame] | 671 | } |
| 672 | |
| 673 | static void |
Doug Zongker | daefc1d | 2011-10-31 09:34:15 -0700 | [diff] [blame] | 674 | prompt_and_wait(Device* device) { |
| 675 | const char* const* headers = prepend_title(device->GetMenuHeaders()); |
Doug Zongker | f93d816 | 2009-09-22 15:16:02 -0700 | [diff] [blame] | 676 | |
| 677 | for (;;) { |
| 678 | finish_recovery(NULL); |
Doug Zongker | 211aebc | 2011-10-28 15:13:10 -0700 | [diff] [blame] | 679 | ui->SetProgressType(RecoveryUI::EMPTY); |
Doug Zongker | f93d816 | 2009-09-22 15:16:02 -0700 | [diff] [blame] | 680 | |
Doug Zongker | daefc1d | 2011-10-31 09:34:15 -0700 | [diff] [blame] | 681 | int chosen_item = get_menu_selection(headers, device->GetMenuItems(), 0, 0, device); |
Doug Zongker | f93d816 | 2009-09-22 15:16:02 -0700 | [diff] [blame] | 682 | |
| 683 | // device-specific code may take some action here. It may |
| 684 | // return one of the core actions handled in the switch |
| 685 | // statement below. |
Doug Zongker | daefc1d | 2011-10-31 09:34:15 -0700 | [diff] [blame] | 686 | chosen_item = device->InvokeMenuItem(chosen_item); |
Doug Zongker | f93d816 | 2009-09-22 15:16:02 -0700 | [diff] [blame] | 687 | |
Michael Ward | 9d2629c | 2011-06-23 22:14:24 -0700 | [diff] [blame] | 688 | int status; |
Doug Zongker | d0181b8 | 2011-10-19 10:51:12 -0700 | [diff] [blame] | 689 | int wipe_cache; |
Doug Zongker | f93d816 | 2009-09-22 15:16:02 -0700 | [diff] [blame] | 690 | switch (chosen_item) { |
Doug Zongker | daefc1d | 2011-10-31 09:34:15 -0700 | [diff] [blame] | 691 | case Device::REBOOT: |
Doug Zongker | f93d816 | 2009-09-22 15:16:02 -0700 | [diff] [blame] | 692 | return; |
| 693 | |
Doug Zongker | daefc1d | 2011-10-31 09:34:15 -0700 | [diff] [blame] | 694 | case Device::WIPE_DATA: |
| 695 | wipe_data(ui->IsTextVisible(), device); |
Doug Zongker | 211aebc | 2011-10-28 15:13:10 -0700 | [diff] [blame] | 696 | if (!ui->IsTextVisible()) return; |
Doug Zongker | f93d816 | 2009-09-22 15:16:02 -0700 | [diff] [blame] | 697 | break; |
| 698 | |
Doug Zongker | daefc1d | 2011-10-31 09:34:15 -0700 | [diff] [blame] | 699 | case Device::WIPE_CACHE: |
Doug Zongker | 211aebc | 2011-10-28 15:13:10 -0700 | [diff] [blame] | 700 | ui->Print("\n-- Wiping cache...\n"); |
Doug Zongker | d4208f9 | 2010-09-20 12:16:13 -0700 | [diff] [blame] | 701 | erase_volume("/cache"); |
Doug Zongker | 211aebc | 2011-10-28 15:13:10 -0700 | [diff] [blame] | 702 | ui->Print("Cache wipe complete.\n"); |
| 703 | if (!ui->IsTextVisible()) return; |
Doug Zongker | f93d816 | 2009-09-22 15:16:02 -0700 | [diff] [blame] | 704 | break; |
| 705 | |
Doug Zongker | daefc1d | 2011-10-31 09:34:15 -0700 | [diff] [blame] | 706 | case Device::APPLY_EXT: |
Doug Zongker | d9428e3 | 2011-12-13 16:03:28 -0800 | [diff] [blame] | 707 | // Some packages expect /cache to be mounted (eg, |
| 708 | // standard incremental packages expect to use /cache |
| 709 | // as scratch space). |
| 710 | ensure_path_mounted(CACHE_ROOT); |
Doug Zongker | daefc1d | 2011-10-31 09:34:15 -0700 | [diff] [blame] | 711 | status = update_directory(SDCARD_ROOT, SDCARD_ROOT, &wipe_cache, device); |
Doug Zongker | d0181b8 | 2011-10-19 10:51:12 -0700 | [diff] [blame] | 712 | if (status == INSTALL_SUCCESS && wipe_cache) { |
Doug Zongker | 211aebc | 2011-10-28 15:13:10 -0700 | [diff] [blame] | 713 | ui->Print("\n-- Wiping cache (at package request)...\n"); |
Doug Zongker | d0181b8 | 2011-10-19 10:51:12 -0700 | [diff] [blame] | 714 | if (erase_volume("/cache")) { |
Doug Zongker | 211aebc | 2011-10-28 15:13:10 -0700 | [diff] [blame] | 715 | ui->Print("Cache wipe failed.\n"); |
Doug Zongker | d0181b8 | 2011-10-19 10:51:12 -0700 | [diff] [blame] | 716 | } else { |
Doug Zongker | 211aebc | 2011-10-28 15:13:10 -0700 | [diff] [blame] | 717 | ui->Print("Cache wipe complete.\n"); |
Doug Zongker | d0181b8 | 2011-10-19 10:51:12 -0700 | [diff] [blame] | 718 | } |
| 719 | } |
Doug Zongker | 8674a72 | 2010-09-15 11:08:23 -0700 | [diff] [blame] | 720 | if (status >= 0) { |
| 721 | if (status != INSTALL_SUCCESS) { |
Doug Zongker | 211aebc | 2011-10-28 15:13:10 -0700 | [diff] [blame] | 722 | ui->SetBackground(RecoveryUI::ERROR); |
| 723 | ui->Print("Installation aborted.\n"); |
| 724 | } else if (!ui->IsTextVisible()) { |
Doug Zongker | 8674a72 | 2010-09-15 11:08:23 -0700 | [diff] [blame] | 725 | return; // reboot if logs aren't visible |
| 726 | } else { |
Doug Zongker | 211aebc | 2011-10-28 15:13:10 -0700 | [diff] [blame] | 727 | ui->Print("\nInstall from sdcard complete.\n"); |
Doug Zongker | 8674a72 | 2010-09-15 11:08:23 -0700 | [diff] [blame] | 728 | } |
Doug Zongker | f93d816 | 2009-09-22 15:16:02 -0700 | [diff] [blame] | 729 | } |
| 730 | break; |
Doug Zongker | daefc1d | 2011-10-31 09:34:15 -0700 | [diff] [blame] | 731 | |
| 732 | case Device::APPLY_CACHE: |
Michael Ward | 9d2629c | 2011-06-23 22:14:24 -0700 | [diff] [blame] | 733 | // Don't unmount cache at the end of this. |
Doug Zongker | daefc1d | 2011-10-31 09:34:15 -0700 | [diff] [blame] | 734 | status = update_directory(CACHE_ROOT, NULL, &wipe_cache, device); |
Doug Zongker | d0181b8 | 2011-10-19 10:51:12 -0700 | [diff] [blame] | 735 | if (status == INSTALL_SUCCESS && wipe_cache) { |
Doug Zongker | 211aebc | 2011-10-28 15:13:10 -0700 | [diff] [blame] | 736 | ui->Print("\n-- Wiping cache (at package request)...\n"); |
Doug Zongker | d0181b8 | 2011-10-19 10:51:12 -0700 | [diff] [blame] | 737 | if (erase_volume("/cache")) { |
Doug Zongker | 211aebc | 2011-10-28 15:13:10 -0700 | [diff] [blame] | 738 | ui->Print("Cache wipe failed.\n"); |
Doug Zongker | d0181b8 | 2011-10-19 10:51:12 -0700 | [diff] [blame] | 739 | } else { |
Doug Zongker | 211aebc | 2011-10-28 15:13:10 -0700 | [diff] [blame] | 740 | ui->Print("Cache wipe complete.\n"); |
Doug Zongker | d0181b8 | 2011-10-19 10:51:12 -0700 | [diff] [blame] | 741 | } |
| 742 | } |
Michael Ward | 9d2629c | 2011-06-23 22:14:24 -0700 | [diff] [blame] | 743 | if (status >= 0) { |
| 744 | if (status != INSTALL_SUCCESS) { |
Doug Zongker | 211aebc | 2011-10-28 15:13:10 -0700 | [diff] [blame] | 745 | ui->SetBackground(RecoveryUI::ERROR); |
| 746 | ui->Print("Installation aborted.\n"); |
| 747 | } else if (!ui->IsTextVisible()) { |
Michael Ward | 9d2629c | 2011-06-23 22:14:24 -0700 | [diff] [blame] | 748 | return; // reboot if logs aren't visible |
| 749 | } else { |
Doug Zongker | 211aebc | 2011-10-28 15:13:10 -0700 | [diff] [blame] | 750 | ui->Print("\nInstall from cache complete.\n"); |
Michael Ward | 9d2629c | 2011-06-23 22:14:24 -0700 | [diff] [blame] | 751 | } |
| 752 | } |
| 753 | break; |
Doug Zongker | 9270a20 | 2012-01-09 15:16:13 -0800 | [diff] [blame] | 754 | |
| 755 | case Device::APPLY_ADB_SIDELOAD: |
| 756 | ensure_path_mounted(CACHE_ROOT); |
| 757 | status = apply_from_adb(ui, &wipe_cache, TEMPORARY_INSTALL_FILE); |
| 758 | if (status >= 0) { |
| 759 | if (status != INSTALL_SUCCESS) { |
| 760 | ui->SetBackground(RecoveryUI::ERROR); |
| 761 | ui->Print("Installation aborted.\n"); |
| 762 | } else if (!ui->IsTextVisible()) { |
| 763 | return; // reboot if logs aren't visible |
| 764 | } else { |
| 765 | ui->Print("\nInstall from ADB complete.\n"); |
| 766 | } |
| 767 | } |
| 768 | break; |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 769 | } |
| 770 | } |
| 771 | } |
| 772 | |
| 773 | static void |
Oscar Montemayor | 0523156 | 2009-11-30 08:40:57 -0800 | [diff] [blame] | 774 | print_property(const char *key, const char *name, void *cookie) { |
Doug Zongker | 56c5105 | 2010-07-01 09:18:44 -0700 | [diff] [blame] | 775 | printf("%s=%s\n", key, name); |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 776 | } |
| 777 | |
| 778 | int |
Oscar Montemayor | 0523156 | 2009-11-30 08:40:57 -0800 | [diff] [blame] | 779 | main(int argc, char **argv) { |
Dees_Troy | cfb63ae | 2012-09-19 14:30:17 -0400 | [diff] [blame] | 780 | // Recovery needs to install world-readable files, so clear umask |
| 781 | // set by init |
| 782 | umask(0); |
| 783 | |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 784 | time_t start = time(NULL); |
| 785 | |
| 786 | // If these fail, there's not really anywhere to complain... |
| 787 | freopen(TEMPORARY_LOG_FILE, "a", stdout); setbuf(stdout, NULL); |
| 788 | freopen(TEMPORARY_LOG_FILE, "a", stderr); setbuf(stderr, NULL); |
Doug Zongker | 9270a20 | 2012-01-09 15:16:13 -0800 | [diff] [blame] | 789 | |
| 790 | // If this binary is started with the single argument "--adbd", |
| 791 | // instead of being the normal recovery binary, it turns into kind |
| 792 | // of a stripped-down version of adbd that only supports the |
| 793 | // 'sideload' command. Note this must be a real argument, not |
| 794 | // anything in the command file or bootloader control block; the |
| 795 | // only way recovery should be run with this argument is when it |
| 796 | // starts a copy of itself from the apply_from_adb() function. |
Dees_Troy | 9a4b569 | 2012-09-19 15:09:45 -0400 | [diff] [blame] | 797 | if (argc == 3 && strcmp(argv[1], "--adbd") == 0) { |
| 798 | adb_main(argv[2]); |
Doug Zongker | 9270a20 | 2012-01-09 15:16:13 -0800 | [diff] [blame] | 799 | return 0; |
| 800 | } |
| 801 | |
Dees_Troy | 5112731 | 2012-09-08 13:08:49 -0400 | [diff] [blame] | 802 | printf("Starting TWRP %s on %s", TW_VERSION_STR, ctime(&start)); |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 803 | |
Dees_Troy | 32c8eb8 | 2012-09-11 15:28:06 -0400 | [diff] [blame] | 804 | Device* device = make_device(); |
| 805 | ui = device->GetUI(); |
Doug Zongker | 211aebc | 2011-10-28 15:13:10 -0700 | [diff] [blame] | 806 | |
Dees_Troy | 7d15c25 | 2012-09-05 20:47:21 -0400 | [diff] [blame] | 807 | //ui->Init(); |
| 808 | //ui->SetBackground(RecoveryUI::NONE); |
Dees_Troy | 7c2dec8 | 2012-09-26 09:49:14 -0400 | [diff] [blame] | 809 | //load_volume_table(); |
Dees_Troy | 7d15c25 | 2012-09-05 20:47:21 -0400 | [diff] [blame] | 810 | |
| 811 | // Load default values to set DataManager constants and handle ifdefs |
| 812 | DataManager_LoadDefaults(); |
| 813 | printf("Starting the UI..."); |
Dees_Troy | 5112731 | 2012-09-08 13:08:49 -0400 | [diff] [blame] | 814 | gui_init(); |
Dees_Troy | 7d15c25 | 2012-09-05 20:47:21 -0400 | [diff] [blame] | 815 | printf("=> Linking mtab\n"); |
bigbiff bigbiff | 9c75405 | 2013-01-09 09:09:08 -0500 | [diff] [blame] | 816 | symlink("/proc/mounts", "/etc/mtab"); |
Dees_Troy | 7d15c25 | 2012-09-05 20:47:21 -0400 | [diff] [blame] | 817 | printf("=> Processing recovery.fstab\n"); |
Dees_Troy | 5bf4392 | 2012-09-07 16:07:55 -0400 | [diff] [blame] | 818 | if (!PartitionManager.Process_Fstab("/etc/recovery.fstab", 1)) { |
Dees_Troy | 7d15c25 | 2012-09-05 20:47:21 -0400 | [diff] [blame] | 819 | LOGE("Failing out of recovery due to problem with recovery.fstab.\n"); |
| 820 | //return -1; |
| 821 | } |
Dees_Troy | 8170a92 | 2012-09-18 15:40:25 -0400 | [diff] [blame] | 822 | PartitionManager.Output_Partition_Logging(); |
Dees_Troy | 7d15c25 | 2012-09-05 20:47:21 -0400 | [diff] [blame] | 823 | // Load up all the resources |
| 824 | gui_loadResources(); |
| 825 | |
Dees_Troy | 01b6d0c | 2013-01-22 01:41:09 +0000 | [diff] [blame] | 826 | PartitionManager.Mount_By_Path("/cache", true); |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 827 | get_args(&argc, &argv); |
| 828 | |
| 829 | int previous_runs = 0; |
| 830 | const char *send_intent = NULL; |
| 831 | const char *update_package = NULL; |
| 832 | int wipe_data = 0, wipe_cache = 0; |
Doug Zongker | e5d5ac7 | 2012-04-12 11:01:22 -0700 | [diff] [blame] | 833 | bool just_exit = false; |
Dees_Troy | 83a3b12 | 2012-10-01 14:16:43 -0400 | [diff] [blame] | 834 | bool perform_backup = false; |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 835 | |
| 836 | int arg; |
| 837 | while ((arg = getopt_long(argc, argv, "", OPTIONS, NULL)) != -1) { |
| 838 | switch (arg) { |
| 839 | case 'p': previous_runs = atoi(optarg); break; |
| 840 | case 's': send_intent = optarg; break; |
| 841 | case 'u': update_package = optarg; break; |
| 842 | case 'w': wipe_data = wipe_cache = 1; break; |
| 843 | case 'c': wipe_cache = 1; break; |
Doug Zongker | 211aebc | 2011-10-28 15:13:10 -0700 | [diff] [blame] | 844 | case 't': ui->ShowText(true); break; |
Doug Zongker | e5d5ac7 | 2012-04-12 11:01:22 -0700 | [diff] [blame] | 845 | case 'x': just_exit = true; break; |
Dees_Troy | 83a3b12 | 2012-10-01 14:16:43 -0400 | [diff] [blame] | 846 | case 'n': perform_backup = true; LOGI("nandroid\n"); break; |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 847 | case '?': |
| 848 | LOGE("Invalid command argument\n"); |
| 849 | continue; |
| 850 | } |
| 851 | } |
| 852 | |
Stephen Smalley | 779701d | 2012-02-09 14:13:23 -0500 | [diff] [blame] | 853 | #ifdef HAVE_SELINUX |
| 854 | struct selinux_opt seopts[] = { |
| 855 | { SELABEL_OPT_PATH, "/file_contexts" } |
| 856 | }; |
| 857 | |
| 858 | sehandle = selabel_open(SELABEL_CTX_FILE, seopts, 1); |
| 859 | |
| 860 | if (!sehandle) { |
| 861 | fprintf(stderr, "Warning: No file_contexts\n"); |
Kenny Root | 038818c | 2012-04-08 11:03:01 -0700 | [diff] [blame] | 862 | ui->Print("Warning: No file_contexts\n"); |
Stephen Smalley | 779701d | 2012-02-09 14:13:23 -0500 | [diff] [blame] | 863 | } |
| 864 | #endif |
| 865 | |
Dees_Troy | 7d15c25 | 2012-09-05 20:47:21 -0400 | [diff] [blame] | 866 | //device->StartRecovery(); |
Doug Zongker | efa1bab | 2010-02-01 15:59:12 -0800 | [diff] [blame] | 867 | |
Doug Zongker | 56c5105 | 2010-07-01 09:18:44 -0700 | [diff] [blame] | 868 | printf("Command:"); |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 869 | for (arg = 0; arg < argc; arg++) { |
Doug Zongker | 56c5105 | 2010-07-01 09:18:44 -0700 | [diff] [blame] | 870 | printf(" \"%s\"", argv[arg]); |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 871 | } |
Doug Zongker | 9b125b0 | 2010-09-22 12:01:37 -0700 | [diff] [blame] | 872 | printf("\n"); |
| 873 | |
| 874 | if (update_package) { |
| 875 | // For backwards compatibility on the cache partition only, if |
| 876 | // we're given an old 'root' path "CACHE:foo", change it to |
| 877 | // "/cache/foo". |
| 878 | if (strncmp(update_package, "CACHE:", 6) == 0) { |
| 879 | int len = strlen(update_package) + 10; |
Doug Zongker | 28ce47c | 2011-10-28 10:33:05 -0700 | [diff] [blame] | 880 | char* modified_path = (char*)malloc(len); |
Doug Zongker | 9b125b0 | 2010-09-22 12:01:37 -0700 | [diff] [blame] | 881 | strlcpy(modified_path, "/cache/", len); |
| 882 | strlcat(modified_path, update_package+6, len); |
| 883 | printf("(replacing path \"%s\" with \"%s\")\n", |
| 884 | update_package, modified_path); |
| 885 | update_package = modified_path; |
| 886 | } |
| 887 | } |
| 888 | printf("\n"); |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 889 | |
| 890 | property_list(print_property, NULL); |
Doug Zongker | 56c5105 | 2010-07-01 09:18:44 -0700 | [diff] [blame] | 891 | printf("\n"); |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 892 | |
Dees_Troy | 7d15c25 | 2012-09-05 20:47:21 -0400 | [diff] [blame] | 893 | // Check for and run startup script if script exists |
Dees_Troy | a58bead | 2012-09-27 09:49:29 -0400 | [diff] [blame] | 894 | TWFunc::check_and_run_script("/sbin/runatboot.sh", "boot"); |
| 895 | TWFunc::check_and_run_script("/sbin/postrecoveryboot.sh", "boot"); |
Dees_Troy | 7d15c25 | 2012-09-05 20:47:21 -0400 | [diff] [blame] | 896 | |
| 897 | #ifdef TW_INCLUDE_INJECTTWRP |
| 898 | // Back up TWRP Ramdisk if needed: |
Dees_Troy | 06b4fe9 | 2012-10-16 11:43:20 -0400 | [diff] [blame] | 899 | TWPartition* Boot = PartitionManager.Find_Partition_By_Path("/boot"); |
bigbiff bigbiff | 9c75405 | 2013-01-09 09:09:08 -0500 | [diff] [blame] | 900 | string result; |
Dees_Troy | 7d15c25 | 2012-09-05 20:47:21 -0400 | [diff] [blame] | 901 | LOGI("Backing up TWRP ramdisk...\n"); |
Dees_Troy | 06b4fe9 | 2012-10-16 11:43:20 -0400 | [diff] [blame] | 902 | if (Boot == NULL || Boot->Current_File_System != "emmc") |
bigbiff bigbiff | 9c75405 | 2013-01-09 09:09:08 -0500 | [diff] [blame] | 903 | TWFunc::Exec_Cmd("injecttwrp --backup /tmp/backup_recovery_ramdisk.img", result); |
Dees_Troy | 06b4fe9 | 2012-10-16 11:43:20 -0400 | [diff] [blame] | 904 | else { |
| 905 | string injectcmd = "injecttwrp --backup /tmp/backup_recovery_ramdisk.img bd=" + Boot->Actual_Block_Device; |
bigbiff bigbiff | 9c75405 | 2013-01-09 09:09:08 -0500 | [diff] [blame] | 906 | TWFunc::Exec_Cmd(injectcmd, result); |
Dees_Troy | 06b4fe9 | 2012-10-16 11:43:20 -0400 | [diff] [blame] | 907 | } |
Dees_Troy | 7d15c25 | 2012-09-05 20:47:21 -0400 | [diff] [blame] | 908 | LOGI("Backup of TWRP ramdisk done.\n"); |
| 909 | #endif |
| 910 | |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 911 | int status = INSTALL_SUCCESS; |
Dees_Troy | 01b6d0c | 2013-01-22 01:41:09 +0000 | [diff] [blame] | 912 | string ORSCommand; |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 913 | |
Dees_Troy | 83a3b12 | 2012-10-01 14:16:43 -0400 | [diff] [blame] | 914 | if (perform_backup) { |
| 915 | char empt[50]; |
| 916 | gui_console_only(); |
| 917 | strcpy(empt, "(Current Date)"); |
| 918 | DataManager_SetStrValue(TW_BACKUP_NAME, empt); |
Dees_Troy | 01b6d0c | 2013-01-22 01:41:09 +0000 | [diff] [blame] | 919 | if (!OpenRecoveryScript::Insert_ORS_Command("backup BSDCAE\n")) |
Dees_Troy | 83a3b12 | 2012-10-01 14:16:43 -0400 | [diff] [blame] | 920 | status = INSTALL_ERROR; |
| 921 | } |
| 922 | if (status == INSTALL_SUCCESS) { // Prevent other actions if backup failed |
Doug Zongker | 540d57f | 2011-01-18 13:36:58 -0800 | [diff] [blame] | 923 | if (update_package != NULL) { |
Dees_Troy | 01b6d0c | 2013-01-22 01:41:09 +0000 | [diff] [blame] | 924 | ORSCommand = "install "; |
| 925 | ORSCommand += update_package; |
| 926 | ORSCommand += "\n"; |
| 927 | |
| 928 | if (OpenRecoveryScript::Insert_ORS_Command(ORSCommand)) |
Dees_Troy | 83a3b12 | 2012-10-01 14:16:43 -0400 | [diff] [blame] | 929 | status = INSTALL_SUCCESS; |
| 930 | else |
| 931 | status = INSTALL_ERROR; |
| 932 | /* |
Doug Zongker | d0181b8 | 2011-10-19 10:51:12 -0700 | [diff] [blame] | 933 | status = install_package(update_package, &wipe_cache, TEMPORARY_INSTALL_FILE); |
| 934 | if (status == INSTALL_SUCCESS && wipe_cache) { |
| 935 | if (erase_volume("/cache")) { |
| 936 | LOGE("Cache wipe (requested by package) failed."); |
| 937 | } |
| 938 | } |
Doug Zongker | 211aebc | 2011-10-28 15:13:10 -0700 | [diff] [blame] | 939 | if (status != INSTALL_SUCCESS) ui->Print("Installation aborted.\n"); |
Dees_Troy | 83a3b12 | 2012-10-01 14:16:43 -0400 | [diff] [blame] | 940 | */ |
Doug Zongker | b128f54 | 2009-06-18 15:07:14 -0700 | [diff] [blame] | 941 | } else if (wipe_data) { |
Dees_Troy | 01b6d0c | 2013-01-22 01:41:09 +0000 | [diff] [blame] | 942 | if (!OpenRecoveryScript::Insert_ORS_Command("wipe data\n")) |
| 943 | status = INSTALL_ERROR; |
Dees_Troy | 83a3b12 | 2012-10-01 14:16:43 -0400 | [diff] [blame] | 944 | /* |
| 945 | if (device->WipeData()) status = INSTALL_ERROR; |
| 946 | if (erase_volume("/data")) status = INSTALL_ERROR; |
| 947 | if (wipe_cache && erase_volume("/cache")) status = INSTALL_ERROR; |
| 948 | */ |
Doug Zongker | 211aebc | 2011-10-28 15:13:10 -0700 | [diff] [blame] | 949 | if (status != INSTALL_SUCCESS) ui->Print("Data wipe failed.\n"); |
Doug Zongker | b128f54 | 2009-06-18 15:07:14 -0700 | [diff] [blame] | 950 | } else if (wipe_cache) { |
Dees_Troy | 01b6d0c | 2013-01-22 01:41:09 +0000 | [diff] [blame] | 951 | if (!OpenRecoveryScript::Insert_ORS_Command("wipe cache\n")) |
| 952 | status = INSTALL_ERROR; |
Doug Zongker | 211aebc | 2011-10-28 15:13:10 -0700 | [diff] [blame] | 953 | if (status != INSTALL_SUCCESS) ui->Print("Cache wipe failed.\n"); |
Doug Zongker | e5d5ac7 | 2012-04-12 11:01:22 -0700 | [diff] [blame] | 954 | } else if (!just_exit) { |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 955 | status = INSTALL_ERROR; // No command specified |
| 956 | } |
Dees_Troy | 83a3b12 | 2012-10-01 14:16:43 -0400 | [diff] [blame] | 957 | } |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 958 | |
Dees_Troy | d15e3f7 | 2013-02-21 14:28:29 -0600 | [diff] [blame] | 959 | finish_recovery(NULL); |
| 960 | // Offer to decrypt if the device is encrypted |
| 961 | if (DataManager_GetIntValue(TW_IS_ENCRYPTED) != 0) { |
| 962 | LOGI("Is encrypted, do decrypt page first\n"); |
| 963 | if (gui_startPage("decrypt") != 0) { |
| 964 | LOGE("Failed to start decrypt GUI page.\n"); |
Dees_Troy | c7c4341 | 2012-10-02 23:03:01 -0400 | [diff] [blame] | 965 | } |
Dees_Troy | d15e3f7 | 2013-02-21 14:28:29 -0600 | [diff] [blame] | 966 | } |
bigbiff bigbiff | e60683a | 2013-02-22 20:55:50 -0500 | [diff] [blame] | 967 | |
Dees_Troy | d15e3f7 | 2013-02-21 14:28:29 -0600 | [diff] [blame] | 968 | // Read the settings file |
| 969 | DataManager_ReadSettingsFile(); |
| 970 | // Run any outstanding OpenRecoveryScript |
| 971 | if (DataManager_GetIntValue(TW_IS_ENCRYPTED) == 0 && (TWFunc::Path_Exists(SCRIPT_FILE_TMP) || TWFunc::Path_Exists(SCRIPT_FILE_CACHE))) { |
| 972 | OpenRecoveryScript::Run_OpenRecoveryScript(); |
| 973 | } |
| 974 | // Launch the main GUI |
| 975 | gui_start(); |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 976 | |
Dees_Troy | 6ef6635 | 2013-02-21 08:26:57 -0600 | [diff] [blame] | 977 | // Check for su to see if the device is rooted or not |
| 978 | if (PartitionManager.Mount_By_Path("/system", false)) { |
Dees_Troy | d15e3f7 | 2013-02-21 14:28:29 -0600 | [diff] [blame] | 979 | // Disable flashing of stock recovery |
| 980 | if (TWFunc::Path_Exists("/system/recovery-from-boot.p")) { |
| 981 | rename("/system/recovery-from-boot.p", "/system/recovery-from-boot.bak"); |
| 982 | ui_print("Renamed stock recovery file in /system to prevent\nthe stock ROM from replacing TWRP.\n"); |
| 983 | } |
jt1134 | 113ee73 | 2013-02-22 23:26:10 -0600 | [diff] [blame] | 984 | if (TWFunc::Path_Exists("/supersu/su") && !TWFunc::Path_Exists("/system/bin/su") && !TWFunc::Path_Exists("/system/xbin/su") && !TWFunc::Path_Exists("/system/bin/.ext/.su")) { |
Dees_Troy | 6ef6635 | 2013-02-21 08:26:57 -0600 | [diff] [blame] | 985 | // Device doesn't have su installed |
| 986 | DataManager_SetIntValue("tw_busy", 1); |
| 987 | if (gui_startPage("installsu") != 0) { |
| 988 | LOGE("Failed to start decrypt GUI page.\n"); |
| 989 | } |
| 990 | } else if (TWFunc::Check_su_Perms() > 0) { |
| 991 | // su perms are set incorrectly |
| 992 | DataManager_SetIntValue("tw_busy", 1); |
| 993 | if (gui_startPage("fixsu") != 0) { |
| 994 | LOGE("Failed to start decrypt GUI page.\n"); |
| 995 | } |
| 996 | } |
Dees_Troy | d15e3f7 | 2013-02-21 14:28:29 -0600 | [diff] [blame] | 997 | sync(); |
| 998 | PartitionManager.UnMount_By_Path("/system", false); |
Dees_Troy | 6ef6635 | 2013-02-21 08:26:57 -0600 | [diff] [blame] | 999 | } |
| 1000 | |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1001 | // Otherwise, get ready to boot the main system... |
| 1002 | finish_recovery(send_intent); |
Doug Zongker | 211aebc | 2011-10-28 15:13:10 -0700 | [diff] [blame] | 1003 | ui->Print("Rebooting...\n"); |
Dees_Troy | 6ef6635 | 2013-02-21 08:26:57 -0600 | [diff] [blame] | 1004 | char backup_arg_char[50]; |
| 1005 | strcpy(backup_arg_char, DataManager_GetStrValue("tw_reboot_arg")); |
| 1006 | string backup_arg = backup_arg_char; |
| 1007 | if (backup_arg == "recovery") |
| 1008 | TWFunc::tw_reboot(rb_recovery); |
| 1009 | else if (backup_arg == "poweroff") |
| 1010 | TWFunc::tw_reboot(rb_poweroff); |
| 1011 | else if (backup_arg == "bootloader") |
| 1012 | TWFunc::tw_reboot(rb_bootloader); |
| 1013 | else if (backup_arg == "download") |
| 1014 | TWFunc::tw_reboot(rb_download); |
| 1015 | else |
| 1016 | TWFunc::tw_reboot(rb_system); |
| 1017 | |
Dees_Troy | 38bd760 | 2012-09-14 13:33:53 -0400 | [diff] [blame] | 1018 | #ifdef ANDROID_RB_RESTART |
Ken Sumrall | 6e4472a | 2011-03-07 23:37:27 -0800 | [diff] [blame] | 1019 | android_reboot(ANDROID_RB_RESTART, 0, 0); |
Dees_Troy | 38bd760 | 2012-09-14 13:33:53 -0400 | [diff] [blame] | 1020 | #else |
| 1021 | reboot(RB_AUTOBOOT); |
| 1022 | #endif |
The Android Open Source Project | c24a8e6 | 2009-03-03 19:28:42 -0800 | [diff] [blame] | 1023 | return EXIT_SUCCESS; |
| 1024 | } |