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