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