blob: 76149cd986aa14dfc894d4c2078213681161bac4 [file] [log] [blame]
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001/*
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 Zongker7c3ae452013-05-14 11:03:02 -070018#include <dirent.h>
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080019#include <errno.h>
20#include <fcntl.h>
21#include <getopt.h>
22#include <limits.h>
23#include <linux/input.h>
Doug Zongker7c3ae452013-05-14 11:03:02 -070024#include <stdarg.h>
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080025#include <stdio.h>
26#include <stdlib.h>
27#include <string.h>
Patrick Tjincd055ee2014-12-09 11:26:40 -080028#include <sys/klog.h>
Doug Zongker23ceeea2010-07-08 17:27:55 -070029#include <sys/stat.h>
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080030#include <sys/types.h>
31#include <time.h>
32#include <unistd.h>
33
Tao Bao75238632015-05-27 14:46:17 -070034#include <adb.h>
Tao Baobef39712015-05-04 18:50:27 -070035#include <base/file.h>
36#include <base/stringprintf.h>
Tao Bao75238632015-05-27 14:46:17 -070037#include <cutils/android_reboot.h>
38#include <cutils/properties.h>
Tao Baobef39712015-05-04 18:50:27 -070039
Tao Bao75238632015-05-27 14:46:17 -070040#include "adb_install.h"
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080041#include "bootloader.h"
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080042#include "common.h"
Tao Bao75238632015-05-27 14:46:17 -070043#include "device.h"
44#include "fuse_sdcard_provider.h"
45#include "fuse_sideload.h"
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080046#include "install.h"
47#include "minui/minui.h"
48#include "minzip/DirUtil.h"
49#include "roots.h"
Doug Zongker28ce47c2011-10-28 10:33:05 -070050#include "ui.h"
Doug Zongker211aebc2011-10-28 15:13:10 -070051#include "screen_ui.h"
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080052
Stephen Smalley779701d2012-02-09 14:13:23 -050053struct selabel_handle *sehandle;
54
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080055static const struct option OPTIONS[] = {
Tao Baoc679f932015-03-30 09:43:49 -070056 { "send_intent", required_argument, NULL, 'i' },
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080057 { "update_package", required_argument, NULL, 'u' },
58 { "wipe_data", no_argument, NULL, 'w' },
59 { "wipe_cache", no_argument, NULL, 'c' },
Doug Zongker4bc98062010-09-03 11:00:13 -070060 { "show_text", no_argument, NULL, 't' },
Tao Baoc679f932015-03-30 09:43:49 -070061 { "sideload", no_argument, NULL, 's' },
62 { "sideload_auto_reboot", no_argument, NULL, 'a' },
Doug Zongkere5d5ac72012-04-12 11:01:22 -070063 { "just_exit", no_argument, NULL, 'x' },
Doug Zongker02ec6b82012-08-22 17:26:40 -070064 { "locale", required_argument, NULL, 'l' },
Doug Zongkerc87bab12013-11-25 13:53:25 -080065 { "stages", required_argument, NULL, 'g' },
Doug Zongkerb1d12632014-03-18 10:32:12 -070066 { "shutdown_after", no_argument, NULL, 'p' },
Jeff Sharkeya6e13ae2014-09-24 11:46:17 -070067 { "reason", required_argument, NULL, 'r' },
Doug Zongker988500b2009-10-06 14:41:38 -070068 { NULL, 0, NULL, 0 },
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080069};
70
Doug Zongker6d0d7ac2013-07-09 13:34:55 -070071static const char *CACHE_LOG_DIR = "/cache/recovery";
Doug Zongkerd4208f92010-09-20 12:16:13 -070072static const char *COMMAND_FILE = "/cache/recovery/command";
73static const char *INTENT_FILE = "/cache/recovery/intent";
74static const char *LOG_FILE = "/cache/recovery/log";
Doug Zongkerd0181b82011-10-19 10:51:12 -070075static const char *LAST_INSTALL_FILE = "/cache/recovery/last_install";
Doug Zongker8b240cc2012-08-29 15:19:29 -070076static const char *LOCALE_FILE = "/cache/recovery/last_locale";
Michael Ward9d2629c2011-06-23 22:14:24 -070077static const char *CACHE_ROOT = "/cache";
Doug Zongkerd4208f92010-09-20 12:16:13 -070078static const char *SDCARD_ROOT = "/sdcard";
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080079static const char *TEMPORARY_LOG_FILE = "/tmp/recovery.log";
Doug Zongkerd0181b82011-10-19 10:51:12 -070080static const char *TEMPORARY_INSTALL_FILE = "/tmp/last_install";
Tao Baof0124322015-04-11 02:04:11 +000081static const char *LAST_KMSG_FILE = "/cache/recovery/last_kmsg";
Tao Baobef39712015-05-04 18:50:27 -070082static const char *LAST_LOG_FILE = "/cache/recovery/last_log";
83static const int KEEP_LOG_COUNT = 10;
Nick Kralevicha9ad0322014-10-22 18:38:48 -070084
Doug Zongker211aebc2011-10-28 15:13:10 -070085RecoveryUI* ui = NULL;
Doug Zongker02ec6b82012-08-22 17:26:40 -070086char* locale = NULL;
Doug Zongkerc87bab12013-11-25 13:53:25 -080087char* stage = NULL;
Jeff Sharkeya6e13ae2014-09-24 11:46:17 -070088char* reason = NULL;
Tao Bao682c34b2015-04-07 17:16:35 -070089bool modified_flash = false;
Doug Zongker211aebc2011-10-28 15:13:10 -070090
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080091/*
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 Zongkerd4208f92010-09-20 12:16:13 -070099 * --update_package=path - verify install an OTA package file
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800100 * --wipe_data - erase user data (and cache), then reboot
101 * --wipe_cache - wipe cache (but not user data), then reboot
Oscar Montemayor05231562009-11-30 08:40:57 -0800102 * --set_encrypted_filesystem=on|off - enables / diasables encrypted fs
Doug Zongkere5d5ac72012-04-12 11:01:22 -0700103 * --just_exit - do nothing; exit and reboot
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800104 *
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 Zongkerd4208f92010-09-20 12:16:13 -0700115 * 5. erase_volume() reformats /data
116 * 6. erase_volume() reformats /cache
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800117 * 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 Zongker9b125b02010-09-22 12:01:37 -0700123 * 2. main system writes "--update_package=/cache/some-filename.zip"
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800124 * 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 Zongkerd4208f92010-09-20 12:16:13 -0700144 * 8f. erase_volume() reformats /cache
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800145 * 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
150static const int MAX_ARG_LENGTH = 4096;
151static const int MAX_ARGS = 100;
152
Doug Zongkerd4208f92010-09-20 12:16:13 -0700153// open a given path, mounting partitions as necessary
Doug Zongker469243e2011-04-12 09:28:10 -0700154FILE*
Doug Zongkerd4208f92010-09-20 12:16:13 -0700155fopen_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 Projectc24a8e62009-03-03 19:28:42 -0800158 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 Smalley779701d2012-02-09 14:13:23 -0500163 if (strchr("wa", mode[0])) dirCreateHierarchy(path, 0777, NULL, 1, sehandle);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800164
165 FILE *fp = fopen(path, mode);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800166 return fp;
167}
168
Elliott Hughesf14af802015-02-10 14:46:14 -0800169bool 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 Kralevicha9ad0322014-10-22 18:38:48 -0700174static 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 Projectc24a8e62009-03-03 19:28:42 -0800180// close a file, log an error if the error indicator is set
181static void
182check_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)
192static void
193get_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 Zongkerc87bab12013-11-25 13:53:25 -0800197 stage = strndup(boot.stage, sizeof(boot.stage));
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800198
199 if (boot.command[0] != 0 && boot.command[0] != 255) {
Mark Salyzynf3bb31c2014-03-14 09:39:48 -0700200 LOGI("Boot command: %.*s\n", (int)sizeof(boot.command), boot.command);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800201 }
202
203 if (boot.status[0] != 0 && boot.status[0] != 255) {
Mark Salyzynf3bb31c2014-03-14 09:39:48 -0700204 LOGI("Boot status: %.*s\n", (int)sizeof(boot.status), boot.status);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800205 }
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 Zongkerd4208f92010-09-20 12:16:13 -0700226 FILE *fp = fopen_path(COMMAND_FILE, "r");
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800227 if (fp != NULL) {
Jin Feng93ffa752013-06-04 17:46:24 +0800228 char *token;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800229 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 Feng93ffa752013-06-04 17:46:24 +0800236 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 Projectc24a8e62009-03-03 19:28:42 -0800242 }
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 Zongker34c98df2009-08-18 12:05:45 -0700261static void
Oscar Montemayor05231562009-11-30 08:40:57 -0800262set_sdcard_update_bootloader_message() {
Doug Zongker34c98df2009-08-18 12:05:45 -0700263 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 Projectc24a8e62009-03-03 19:28:42 -0800269
Tao Baobef39712015-05-04 18:50:27 -0700270// Read from kernel log into buffer and write out to file.
271static void save_kernel_log(const char* destination) {
272 int klog_buf_len = klogctl(KLOG_SIZE_BUFFER, 0, 0);
Patrick Tjincd055ee2014-12-09 11:26:40 -0800273 if (klog_buf_len <= 0) {
Tao Baobef39712015-05-04 18:50:27 -0700274 LOGE("Error getting klog size: %s\n", strerror(errno));
Patrick Tjincd055ee2014-12-09 11:26:40 -0800275 return;
276 }
277
Tao Baobef39712015-05-04 18:50:27 -0700278 std::string buffer(klog_buf_len, 0);
279 int n = klogctl(KLOG_READ_ALL, &buffer[0], klog_buf_len);
280 if (n == -1) {
281 LOGE("Error in reading klog: %s\n", strerror(errno));
Patrick Tjincd055ee2014-12-09 11:26:40 -0800282 return;
283 }
Tao Baobef39712015-05-04 18:50:27 -0700284 buffer.resize(n);
285 android::base::WriteStringToFile(buffer, destination);
Patrick Tjincd055ee2014-12-09 11:26:40 -0800286}
287
Tao Baof0124322015-04-11 02:04:11 +0000288// How much of the temp log we have copied to the copy in cache.
289static long tmplog_offset = 0;
290
Tao Baobef39712015-05-04 18:50:27 -0700291static void copy_log_file(const char* source, const char* destination, bool append) {
292 FILE* dest_fp = fopen_path(destination, append ? "a" : "w");
293 if (dest_fp == nullptr) {
Doug Zongker2c3539e2010-09-29 13:21:30 -0700294 LOGE("Can't open %s\n", destination);
295 } else {
Tao Baobef39712015-05-04 18:50:27 -0700296 FILE* source_fp = fopen(source, "r");
297 if (source_fp != nullptr) {
Tao Baof0124322015-04-11 02:04:11 +0000298 if (append) {
Tao Baobef39712015-05-04 18:50:27 -0700299 fseek(source_fp, tmplog_offset, SEEK_SET); // Since last write
Doug Zongker2c3539e2010-09-29 13:21:30 -0700300 }
301 char buf[4096];
Tao Baobef39712015-05-04 18:50:27 -0700302 size_t bytes;
303 while ((bytes = fread(buf, 1, sizeof(buf), source_fp)) != 0) {
304 fwrite(buf, 1, bytes, dest_fp);
Doug Zongker2c3539e2010-09-29 13:21:30 -0700305 }
Tao Baobef39712015-05-04 18:50:27 -0700306 if (append) {
307 tmplog_offset = ftell(source_fp);
308 }
309 check_and_fclose(source_fp, source);
Doug Zongker2c3539e2010-09-29 13:21:30 -0700310 }
Tao Baobef39712015-05-04 18:50:27 -0700311 check_and_fclose(dest_fp, destination);
Doug Zongker2c3539e2010-09-29 13:21:30 -0700312 }
313}
314
Tao Baobef39712015-05-04 18:50:27 -0700315// Rename last_log -> last_log.1 -> last_log.2 -> ... -> last_log.$max.
316// Similarly rename last_kmsg -> last_kmsg.1 -> ... -> last_kmsg.$max.
317// Overwrite any existing last_log.$max and last_kmsg.$max.
318static void rotate_logs(int max) {
Tao Bao682c34b2015-04-07 17:16:35 -0700319 // Logs should only be rotated once.
320 static bool rotated = false;
321 if (rotated) {
322 return;
323 }
324 rotated = true;
325 ensure_path_mounted(LAST_LOG_FILE);
Tao Baobef39712015-05-04 18:50:27 -0700326 ensure_path_mounted(LAST_KMSG_FILE);
Tao Bao682c34b2015-04-07 17:16:35 -0700327
Tao Bao682c34b2015-04-07 17:16:35 -0700328 for (int i = max-1; i >= 0; --i) {
Tao Bao80e46e02015-06-03 10:49:29 -0700329 std::string old_log = android::base::StringPrintf("%s", LAST_LOG_FILE);
330 if (i > 0) {
331 old_log += "." + std::to_string(i);
332 }
Tao Baobef39712015-05-04 18:50:27 -0700333 std::string new_log = android::base::StringPrintf("%s.%d", LAST_LOG_FILE, i+1);
334 // Ignore errors if old_log doesn't exist.
335 rename(old_log.c_str(), new_log.c_str());
336
Tao Bao80e46e02015-06-03 10:49:29 -0700337 std::string old_kmsg = android::base::StringPrintf("%s", LAST_KMSG_FILE);
338 if (i > 0) {
339 old_kmsg += "." + std::to_string(i);
340 }
Tao Baobef39712015-05-04 18:50:27 -0700341 std::string new_kmsg = android::base::StringPrintf("%s.%d", LAST_KMSG_FILE, i+1);
342 rename(old_kmsg.c_str(), new_kmsg.c_str());
Doug Zongkerda1ebae2013-05-16 11:23:48 -0700343 }
344}
Doug Zongker2c3539e2010-09-29 13:21:30 -0700345
Tao Bao682c34b2015-04-07 17:16:35 -0700346static void copy_logs() {
347 // We only rotate and record the log of the current session if there are
348 // actual attempts to modify the flash, such as wipes, installs from BCB
349 // or menu selections. This is to avoid unnecessary rotation (and
350 // possible deletion) of log files, if it does not do anything loggable.
351 if (!modified_flash) {
352 return;
353 }
354
Tao Baobef39712015-05-04 18:50:27 -0700355 rotate_logs(KEEP_LOG_COUNT);
Tao Bao682c34b2015-04-07 17:16:35 -0700356
Doug Zongkerf24fd7e2013-07-02 11:43:25 -0700357 // Copy logs to cache so the system can find out what happened.
Tao Baof0124322015-04-11 02:04:11 +0000358 copy_log_file(TEMPORARY_LOG_FILE, LOG_FILE, true);
359 copy_log_file(TEMPORARY_LOG_FILE, LAST_LOG_FILE, false);
360 copy_log_file(TEMPORARY_INSTALL_FILE, LAST_INSTALL_FILE, false);
361 save_kernel_log(LAST_KMSG_FILE);
Doug Zongkerf24fd7e2013-07-02 11:43:25 -0700362 chmod(LOG_FILE, 0600);
363 chown(LOG_FILE, 1000, 1000); // system user
Tao Baof0124322015-04-11 02:04:11 +0000364 chmod(LAST_KMSG_FILE, 0600);
365 chown(LAST_KMSG_FILE, 1000, 1000); // system user
Doug Zongkerf24fd7e2013-07-02 11:43:25 -0700366 chmod(LAST_LOG_FILE, 0640);
367 chmod(LAST_INSTALL_FILE, 0644);
368 sync();
369}
370
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800371// clear the recovery command and prepare to boot a (hopefully working) system,
372// copy our log file to cache as well (for the system to read), and
373// record any intent we were asked to communicate back to the system.
374// this function is idempotent: call it as many times as you like.
375static void
Oscar Montemayor05231562009-11-30 08:40:57 -0800376finish_recovery(const char *send_intent) {
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800377 // By this point, we're ready to return to the main system...
378 if (send_intent != NULL) {
Doug Zongkerd4208f92010-09-20 12:16:13 -0700379 FILE *fp = fopen_path(INTENT_FILE, "w");
Jay Freeman (saurik)619ec2f2008-11-17 01:56:05 +0000380 if (fp == NULL) {
381 LOGE("Can't open %s\n", INTENT_FILE);
382 } else {
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800383 fputs(send_intent, fp);
384 check_and_fclose(fp, INTENT_FILE);
385 }
386 }
387
Doug Zongker4f33e552012-08-23 13:16:12 -0700388 // Save the locale to cache, so if recovery is next started up
389 // without a --locale argument (eg, directly from the bootloader)
390 // it will use the last-known locale.
391 if (locale != NULL) {
392 LOGI("Saving locale \"%s\"\n", locale);
393 FILE* fp = fopen_path(LOCALE_FILE, "w");
394 fwrite(locale, 1, strlen(locale), fp);
395 fflush(fp);
396 fsync(fileno(fp));
397 check_and_fclose(fp, LOCALE_FILE);
398 }
399
Doug Zongkerf24fd7e2013-07-02 11:43:25 -0700400 copy_logs();
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800401
Doug Zongkere5d5ac72012-04-12 11:01:22 -0700402 // Reset to normal system boot so recovery won't cycle indefinitely.
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800403 struct bootloader_message boot;
404 memset(&boot, 0, sizeof(boot));
405 set_bootloader_message(&boot);
406
407 // Remove the command file, so recovery won't repeat indefinitely.
Doug Zongkerd4208f92010-09-20 12:16:13 -0700408 if (ensure_path_mounted(COMMAND_FILE) != 0 ||
409 (unlink(COMMAND_FILE) && errno != ENOENT)) {
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800410 LOGW("Can't unlink %s\n", COMMAND_FILE);
411 }
412
Doug Zongkerd0181b82011-10-19 10:51:12 -0700413 ensure_path_unmounted(CACHE_ROOT);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800414 sync(); // For good measure.
415}
416
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700417typedef struct _saved_log_file {
418 char* name;
419 struct stat st;
420 unsigned char* data;
421 struct _saved_log_file* next;
422} saved_log_file;
423
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800424static int
Doug Zongkerd4208f92010-09-20 12:16:13 -0700425erase_volume(const char *volume) {
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700426 bool is_cache = (strcmp(volume, CACHE_ROOT) == 0);
427
Doug Zongker02ec6b82012-08-22 17:26:40 -0700428 ui->SetBackground(RecoveryUI::ERASING);
Doug Zongker211aebc2011-10-28 15:13:10 -0700429 ui->SetProgressType(RecoveryUI::INDETERMINATE);
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700430
431 saved_log_file* head = NULL;
432
433 if (is_cache) {
Tao Baobef39712015-05-04 18:50:27 -0700434 // If we're reformatting /cache, we load any past logs
435 // (i.e. "/cache/recovery/last_*") and the current log
436 // ("/cache/recovery/log") into memory, so we can restore them after
437 // the reformat.
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700438
439 ensure_path_mounted(volume);
440
441 DIR* d;
442 struct dirent* de;
443 d = opendir(CACHE_LOG_DIR);
444 if (d) {
445 char path[PATH_MAX];
446 strcpy(path, CACHE_LOG_DIR);
447 strcat(path, "/");
448 int path_len = strlen(path);
449 while ((de = readdir(d)) != NULL) {
Tao Baobef39712015-05-04 18:50:27 -0700450 if (strncmp(de->d_name, "last_", 5) == 0 || strcmp(de->d_name, "log") == 0) {
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700451 saved_log_file* p = (saved_log_file*) malloc(sizeof(saved_log_file));
452 strcpy(path+path_len, de->d_name);
453 p->name = strdup(path);
454 if (stat(path, &(p->st)) == 0) {
455 // truncate files to 512kb
456 if (p->st.st_size > (1 << 19)) {
457 p->st.st_size = 1 << 19;
458 }
459 p->data = (unsigned char*) malloc(p->st.st_size);
460 FILE* f = fopen(path, "rb");
461 fread(p->data, 1, p->st.st_size, f);
462 fclose(f);
463 p->next = head;
464 head = p;
465 } else {
466 free(p);
467 }
468 }
469 }
470 closedir(d);
471 } else {
472 if (errno != ENOENT) {
473 printf("opendir failed: %s\n", strerror(errno));
474 }
475 }
476 }
477
Doug Zongker211aebc2011-10-28 15:13:10 -0700478 ui->Print("Formatting %s...\n", volume);
Doug Zongker2c3539e2010-09-29 13:21:30 -0700479
Doug Zongkerd0181b82011-10-19 10:51:12 -0700480 ensure_path_unmounted(volume);
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700481 int result = format_volume(volume);
Doug Zongkerd0181b82011-10-19 10:51:12 -0700482
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700483 if (is_cache) {
484 while (head) {
485 FILE* f = fopen_path(head->name, "wb");
486 if (f) {
487 fwrite(head->data, 1, head->st.st_size, f);
488 fclose(f);
489 chmod(head->name, head->st.st_mode);
490 chown(head->name, head->st.st_uid, head->st.st_gid);
491 }
492 free(head->name);
493 free(head->data);
494 saved_log_file* temp = head->next;
495 free(head);
496 head = temp;
497 }
498
Tao Baof0124322015-04-11 02:04:11 +0000499 // Any part of the log we'd copied to cache is now gone.
500 // Reset the pointer so we copy from the beginning of the temp
501 // log.
502 tmplog_offset = 0;
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700503 copy_logs();
Doug Zongker2c3539e2010-09-29 13:21:30 -0700504 }
505
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700506 return result;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800507}
508
Doug Zongkerf93d8162009-09-22 15:16:02 -0700509static int
Doug Zongker28ce47c2011-10-28 10:33:05 -0700510get_menu_selection(const char* const * headers, const char* const * items,
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700511 int menu_only, int initial_selection, Device* device) {
Doug Zongkerf93d8162009-09-22 15:16:02 -0700512 // throw away keys pressed previously, so user doesn't
513 // accidentally trigger menu items.
Doug Zongker211aebc2011-10-28 15:13:10 -0700514 ui->FlushKeys();
Doug Zongkerf93d8162009-09-22 15:16:02 -0700515
Doug Zongker211aebc2011-10-28 15:13:10 -0700516 ui->StartMenu(headers, items, initial_selection);
Doug Zongker8674a722010-09-15 11:08:23 -0700517 int selected = initial_selection;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800518 int chosen_item = -1;
519
Doug Zongkerf93d8162009-09-22 15:16:02 -0700520 while (chosen_item < 0) {
Doug Zongker211aebc2011-10-28 15:13:10 -0700521 int key = ui->WaitKey();
522 int visible = ui->IsTextVisible();
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800523
Doug Zongker5cae4452011-01-25 13:15:30 -0800524 if (key == -1) { // ui_wait_key() timed out
Doug Zongker211aebc2011-10-28 15:13:10 -0700525 if (ui->WasTextEverVisible()) {
Doug Zongker5cae4452011-01-25 13:15:30 -0800526 continue;
527 } else {
528 LOGI("timed out waiting for key input; rebooting.\n");
Doug Zongker211aebc2011-10-28 15:13:10 -0700529 ui->EndMenu();
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700530 return 0; // XXX fixme
Doug Zongker5cae4452011-01-25 13:15:30 -0800531 }
532 }
533
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700534 int action = device->HandleMenuKey(key, visible);
Doug Zongkerddd6a282009-06-09 12:22:33 -0700535
536 if (action < 0) {
537 switch (action) {
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700538 case Device::kHighlightUp:
Elliott Hughes642aaa72015-04-10 12:47:46 -0700539 selected = ui->SelectMenu(--selected);
Doug Zongkerddd6a282009-06-09 12:22:33 -0700540 break;
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700541 case Device::kHighlightDown:
Elliott Hughes642aaa72015-04-10 12:47:46 -0700542 selected = ui->SelectMenu(++selected);
Doug Zongkerddd6a282009-06-09 12:22:33 -0700543 break;
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700544 case Device::kInvokeItem:
Doug Zongkerddd6a282009-06-09 12:22:33 -0700545 chosen_item = selected;
546 break;
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700547 case Device::kNoAction:
Doug Zongkerddd6a282009-06-09 12:22:33 -0700548 break;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800549 }
Doug Zongkerf93d8162009-09-22 15:16:02 -0700550 } else if (!menu_only) {
Doug Zongkerddd6a282009-06-09 12:22:33 -0700551 chosen_item = action;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800552 }
Doug Zongkerf93d8162009-09-22 15:16:02 -0700553 }
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800554
Doug Zongker211aebc2011-10-28 15:13:10 -0700555 ui->EndMenu();
Doug Zongkerf93d8162009-09-22 15:16:02 -0700556 return chosen_item;
557}
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800558
Doug Zongker8674a722010-09-15 11:08:23 -0700559static int compare_string(const void* a, const void* b) {
560 return strcmp(*(const char**)a, *(const char**)b);
561}
562
Doug Zongker93950222014-07-08 14:10:23 -0700563// Returns a malloc'd path, or NULL.
Elliott Hughes30694c92015-03-25 15:16:51 -0700564static char* browse_directory(const char* path, Device* device) {
Michael Ward9d2629c2011-06-23 22:14:24 -0700565 ensure_path_mounted(path);
Doug Zongkerc18eeb82010-09-21 16:49:26 -0700566
Elliott Hughes30694c92015-03-25 15:16:51 -0700567 DIR* d = opendir(path);
Doug Zongker8674a722010-09-15 11:08:23 -0700568 if (d == NULL) {
569 LOGE("error opening %s: %s\n", path, strerror(errno));
Doug Zongker93950222014-07-08 14:10:23 -0700570 return NULL;
Doug Zongker8674a722010-09-15 11:08:23 -0700571 }
572
Doug Zongker8674a722010-09-15 11:08:23 -0700573 int d_size = 0;
574 int d_alloc = 10;
Doug Zongker28ce47c2011-10-28 10:33:05 -0700575 char** dirs = (char**)malloc(d_alloc * sizeof(char*));
Doug Zongker8674a722010-09-15 11:08:23 -0700576 int z_size = 1;
577 int z_alloc = 10;
Doug Zongker28ce47c2011-10-28 10:33:05 -0700578 char** zips = (char**)malloc(z_alloc * sizeof(char*));
Doug Zongker8674a722010-09-15 11:08:23 -0700579 zips[0] = strdup("../");
580
Elliott Hughes30694c92015-03-25 15:16:51 -0700581 struct dirent* de;
Doug Zongker8674a722010-09-15 11:08:23 -0700582 while ((de = readdir(d)) != NULL) {
583 int name_len = strlen(de->d_name);
584
585 if (de->d_type == DT_DIR) {
586 // skip "." and ".." entries
587 if (name_len == 1 && de->d_name[0] == '.') continue;
588 if (name_len == 2 && de->d_name[0] == '.' &&
589 de->d_name[1] == '.') continue;
590
591 if (d_size >= d_alloc) {
592 d_alloc *= 2;
Doug Zongker28ce47c2011-10-28 10:33:05 -0700593 dirs = (char**)realloc(dirs, d_alloc * sizeof(char*));
Doug Zongker8674a722010-09-15 11:08:23 -0700594 }
Doug Zongker28ce47c2011-10-28 10:33:05 -0700595 dirs[d_size] = (char*)malloc(name_len + 2);
Doug Zongker8674a722010-09-15 11:08:23 -0700596 strcpy(dirs[d_size], de->d_name);
597 dirs[d_size][name_len] = '/';
598 dirs[d_size][name_len+1] = '\0';
599 ++d_size;
600 } else if (de->d_type == DT_REG &&
601 name_len >= 4 &&
602 strncasecmp(de->d_name + (name_len-4), ".zip", 4) == 0) {
603 if (z_size >= z_alloc) {
604 z_alloc *= 2;
Doug Zongker28ce47c2011-10-28 10:33:05 -0700605 zips = (char**)realloc(zips, z_alloc * sizeof(char*));
Doug Zongker8674a722010-09-15 11:08:23 -0700606 }
607 zips[z_size++] = strdup(de->d_name);
608 }
609 }
610 closedir(d);
611
612 qsort(dirs, d_size, sizeof(char*), compare_string);
613 qsort(zips, z_size, sizeof(char*), compare_string);
614
615 // append dirs to the zips list
616 if (d_size + z_size + 1 > z_alloc) {
617 z_alloc = d_size + z_size + 1;
Doug Zongker28ce47c2011-10-28 10:33:05 -0700618 zips = (char**)realloc(zips, z_alloc * sizeof(char*));
Doug Zongker8674a722010-09-15 11:08:23 -0700619 }
620 memcpy(zips + z_size, dirs, d_size * sizeof(char*));
621 free(dirs);
622 z_size += d_size;
623 zips[z_size] = NULL;
624
Elliott Hughes8fd86d72015-04-13 14:36:02 -0700625 const char* headers[] = { "Choose a package to install:", path, NULL };
Elliott Hughes30694c92015-03-25 15:16:51 -0700626
Doug Zongker93950222014-07-08 14:10:23 -0700627 char* result;
Doug Zongker8674a722010-09-15 11:08:23 -0700628 int chosen_item = 0;
Doug Zongker93950222014-07-08 14:10:23 -0700629 while (true) {
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700630 chosen_item = get_menu_selection(headers, zips, 1, chosen_item, device);
Doug Zongker8674a722010-09-15 11:08:23 -0700631
632 char* item = zips[chosen_item];
633 int item_len = strlen(item);
634 if (chosen_item == 0) { // item 0 is always "../"
Michael Ward9d2629c2011-06-23 22:14:24 -0700635 // go up but continue browsing (if the caller is update_directory)
Doug Zongker93950222014-07-08 14:10:23 -0700636 result = NULL;
Doug Zongker8674a722010-09-15 11:08:23 -0700637 break;
638 }
Doug Zongker93950222014-07-08 14:10:23 -0700639
640 char new_path[PATH_MAX];
641 strlcpy(new_path, path, PATH_MAX);
642 strlcat(new_path, "/", PATH_MAX);
643 strlcat(new_path, item, PATH_MAX);
644
645 if (item[item_len-1] == '/') {
646 // recurse down into a subdirectory
647 new_path[strlen(new_path)-1] = '\0'; // truncate the trailing '/'
648 result = browse_directory(new_path, device);
649 if (result) break;
650 } else {
651 // selected a zip file: return the malloc'd path to the caller.
652 result = strdup(new_path);
653 break;
654 }
655 }
Doug Zongker8674a722010-09-15 11:08:23 -0700656
Elliott Hughes30694c92015-03-25 15:16:51 -0700657 for (int i = 0; i < z_size; ++i) free(zips[i]);
Doug Zongker8674a722010-09-15 11:08:23 -0700658 free(zips);
Doug Zongker8674a722010-09-15 11:08:23 -0700659
660 return result;
661}
662
Elliott Hughes30694c92015-03-25 15:16:51 -0700663static bool yes_no(Device* device, const char* question1, const char* question2) {
Elliott Hughes8fd86d72015-04-13 14:36:02 -0700664 const char* headers[] = { question1, question2, NULL };
Elliott Hughes30694c92015-03-25 15:16:51 -0700665 const char* items[] = { " No", " Yes", NULL };
Doug Zongkerddd6a282009-06-09 12:22:33 -0700666
Elliott Hughes30694c92015-03-25 15:16:51 -0700667 int chosen_item = get_menu_selection(headers, items, 1, 0, device);
668 return (chosen_item == 1);
669}
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800670
Tao Baoe39a9bc2015-03-31 12:19:05 -0700671// Return true on success.
672static bool wipe_data(int should_confirm, Device* device) {
673 if (should_confirm && !yes_no(device, "Wipe all user data?", " THIS CAN NOT BE UNDONE!")) {
674 return false;
Doug Zongkerf93d8162009-09-22 15:16:02 -0700675 }
Doug Zongker1066d2c2009-04-01 13:57:40 -0700676
Tao Bao682c34b2015-04-07 17:16:35 -0700677 modified_flash = true;
678
Doug Zongker211aebc2011-10-28 15:13:10 -0700679 ui->Print("\n-- Wiping data...\n");
Tao Baoe39a9bc2015-03-31 12:19:05 -0700680 if (device->WipeData() == 0 && erase_volume("/data") == 0 && erase_volume("/cache") == 0) {
681 ui->Print("Data wipe complete.\n");
682 return true;
683 } else {
684 ui->Print("Data wipe failed.\n");
685 return false;
686 }
Doug Zongkerf93d8162009-09-22 15:16:02 -0700687}
688
Tao Baoe39a9bc2015-03-31 12:19:05 -0700689// Return true on success.
690static bool wipe_cache(bool should_confirm, Device* device) {
Elliott Hughes30694c92015-03-25 15:16:51 -0700691 if (should_confirm && !yes_no(device, "Wipe cache?", " THIS CAN NOT BE UNDONE!")) {
Tao Baoe39a9bc2015-03-31 12:19:05 -0700692 return false;
Elliott Hughes30694c92015-03-25 15:16:51 -0700693 }
694
Tao Bao682c34b2015-04-07 17:16:35 -0700695 modified_flash = true;
696
Elliott Hughes30694c92015-03-25 15:16:51 -0700697 ui->Print("\n-- Wiping cache...\n");
Tao Baoe39a9bc2015-03-31 12:19:05 -0700698 if (erase_volume("/cache") == 0) {
699 ui->Print("Cache wipe complete.\n");
700 return true;
701 } else {
702 ui->Print("Cache wipe failed.\n");
703 return false;
704 }
Elliott Hughes30694c92015-03-25 15:16:51 -0700705}
706
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700707static void choose_recovery_file(Device* device) {
Elliott Hughesc0491632015-05-06 12:40:05 -0700708 // "Back" + KEEP_LOG_COUNT * 2 + terminating nullptr entry
709 char* entries[1 + KEEP_LOG_COUNT * 2 + 1];
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700710 memset(entries, 0, sizeof(entries));
711
Tao Baobef39712015-05-04 18:50:27 -0700712 unsigned int n = 0;
Patrick Tjincd055ee2014-12-09 11:26:40 -0800713
Patrick Tjincd055ee2014-12-09 11:26:40 -0800714 // Add LAST_LOG_FILE + LAST_LOG_FILE.x
Tao Baobef39712015-05-04 18:50:27 -0700715 // Add LAST_KMSG_FILE + LAST_KMSG_FILE.x
716 for (int i = 0; i < KEEP_LOG_COUNT; i++) {
717 char* log_file;
Tao Bao80e46e02015-06-03 10:49:29 -0700718 int ret;
719 ret = (i == 0) ? asprintf(&log_file, "%s", LAST_LOG_FILE) :
720 asprintf(&log_file, "%s.%d", LAST_LOG_FILE, i);
721 if (ret == -1) {
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700722 // memory allocation failure - return early. Should never happen.
723 return;
724 }
Tao Baobef39712015-05-04 18:50:27 -0700725 if ((ensure_path_mounted(log_file) != 0) || (access(log_file, R_OK) == -1)) {
726 free(log_file);
727 } else {
728 entries[n++] = log_file;
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700729 }
Tao Baobef39712015-05-04 18:50:27 -0700730
731 char* kmsg_file;
Tao Bao80e46e02015-06-03 10:49:29 -0700732 ret = (i == 0) ? asprintf(&kmsg_file, "%s", LAST_KMSG_FILE) :
733 asprintf(&kmsg_file, "%s.%d", LAST_KMSG_FILE, i);
734 if (ret == -1) {
Tao Baobef39712015-05-04 18:50:27 -0700735 // memory allocation failure - return early. Should never happen.
736 return;
737 }
738 if ((ensure_path_mounted(kmsg_file) != 0) || (access(kmsg_file, R_OK) == -1)) {
739 free(kmsg_file);
740 } else {
741 entries[n++] = kmsg_file;
742 }
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700743 }
744
Elliott Hughesc0491632015-05-06 12:40:05 -0700745 entries[n++] = strdup("Back");
746
Tao Baobef39712015-05-04 18:50:27 -0700747 const char* headers[] = { "Select file to view", nullptr };
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700748
Elliott Hughes8de52072015-04-08 20:06:50 -0700749 while (true) {
Elliott Hughes30694c92015-03-25 15:16:51 -0700750 int chosen_item = get_menu_selection(headers, entries, 1, 0, device);
Elliott Hughesc0491632015-05-06 12:40:05 -0700751 if (strcmp(entries[chosen_item], "Back") == 0) break;
Elliott Hughes8de52072015-04-08 20:06:50 -0700752
753 // TODO: do we need to redirect? ShowFile could just avoid writing to stdio.
754 redirect_stdio("/dev/null");
755 ui->ShowFile(entries[chosen_item]);
756 redirect_stdio(TEMPORARY_LOG_FILE);
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700757 }
758
Tao Baobef39712015-05-04 18:50:27 -0700759 for (size_t i = 0; i < (sizeof(entries) / sizeof(*entries)); i++) {
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700760 free(entries[i]);
761 }
762}
763
Tao Bao145d8612015-03-25 15:51:15 -0700764static int apply_from_sdcard(Device* device, bool* wipe_cache) {
Tao Bao682c34b2015-04-07 17:16:35 -0700765 modified_flash = true;
766
Christian Poetzsch4ec58a42015-02-19 10:42:39 +0000767 if (ensure_path_mounted(SDCARD_ROOT) != 0) {
768 ui->Print("\n-- Couldn't mount %s.\n", SDCARD_ROOT);
769 return INSTALL_ERROR;
770 }
771
772 char* path = browse_directory(SDCARD_ROOT, device);
773 if (path == NULL) {
Elliott Hughes018ed312015-04-08 16:51:36 -0700774 ui->Print("\n-- No package file selected.\n");
Christian Poetzsch4ec58a42015-02-19 10:42:39 +0000775 return INSTALL_ERROR;
776 }
777
778 ui->Print("\n-- Install %s ...\n", path);
779 set_sdcard_update_bootloader_message();
780 void* token = start_sdcard_fuse(path);
781
782 int status = install_package(FUSE_SIDELOAD_HOST_PATHNAME, wipe_cache,
783 TEMPORARY_INSTALL_FILE, false);
784
785 finish_sdcard_fuse(token);
786 ensure_path_unmounted(SDCARD_ROOT);
787 return status;
788}
789
Doug Zongker8d9d3d52014-04-01 13:20:23 -0700790// Return REBOOT, SHUTDOWN, or REBOOT_BOOTLOADER. Returning NO_ACTION
791// means to take the default, which is to reboot or shutdown depending
792// on if the --shutdown_after flag was passed to recovery.
793static Device::BuiltinAction
Doug Zongker6c8553d2012-09-24 10:40:47 -0700794prompt_and_wait(Device* device, int status) {
Doug Zongkerf93d8162009-09-22 15:16:02 -0700795 for (;;) {
796 finish_recovery(NULL);
Doug Zongker6c8553d2012-09-24 10:40:47 -0700797 switch (status) {
798 case INSTALL_SUCCESS:
799 case INSTALL_NONE:
800 ui->SetBackground(RecoveryUI::NO_COMMAND);
801 break;
802
803 case INSTALL_ERROR:
804 case INSTALL_CORRUPT:
805 ui->SetBackground(RecoveryUI::ERROR);
806 break;
807 }
Doug Zongker211aebc2011-10-28 15:13:10 -0700808 ui->SetProgressType(RecoveryUI::EMPTY);
Doug Zongkerf93d8162009-09-22 15:16:02 -0700809
Elliott Hughes8fd86d72015-04-13 14:36:02 -0700810 int chosen_item = get_menu_selection(nullptr, device->GetMenuItems(), 0, 0, device);
Doug Zongkerf93d8162009-09-22 15:16:02 -0700811
812 // device-specific code may take some action here. It may
813 // return one of the core actions handled in the switch
814 // statement below.
Doug Zongker8d9d3d52014-04-01 13:20:23 -0700815 Device::BuiltinAction chosen_action = device->InvokeMenuItem(chosen_item);
Doug Zongkerf93d8162009-09-22 15:16:02 -0700816
Elliott Hughes30694c92015-03-25 15:16:51 -0700817 bool should_wipe_cache = false;
Doug Zongker8d9d3d52014-04-01 13:20:23 -0700818 switch (chosen_action) {
819 case Device::NO_ACTION:
820 break;
821
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700822 case Device::REBOOT:
Doug Zongker8d9d3d52014-04-01 13:20:23 -0700823 case Device::SHUTDOWN:
824 case Device::REBOOT_BOOTLOADER:
825 return chosen_action;
Doug Zongkerf93d8162009-09-22 15:16:02 -0700826
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700827 case Device::WIPE_DATA:
828 wipe_data(ui->IsTextVisible(), device);
Doug Zongker8d9d3d52014-04-01 13:20:23 -0700829 if (!ui->IsTextVisible()) return Device::NO_ACTION;
Doug Zongkerf93d8162009-09-22 15:16:02 -0700830 break;
831
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700832 case Device::WIPE_CACHE:
Elliott Hughes30694c92015-03-25 15:16:51 -0700833 wipe_cache(ui->IsTextVisible(), device);
Doug Zongker8d9d3d52014-04-01 13:20:23 -0700834 if (!ui->IsTextVisible()) return Device::NO_ACTION;
Doug Zongkerf93d8162009-09-22 15:16:02 -0700835 break;
836
Christian Poetzsch4ec58a42015-02-19 10:42:39 +0000837 case Device::APPLY_ADB_SIDELOAD:
Elliott Hughesec283402015-04-10 10:01:53 -0700838 case Device::APPLY_SDCARD:
Christian Poetzsch4ec58a42015-02-19 10:42:39 +0000839 {
840 bool adb = (chosen_action == Device::APPLY_ADB_SIDELOAD);
841 if (adb) {
Elliott Hughes30694c92015-03-25 15:16:51 -0700842 status = apply_from_adb(ui, &should_wipe_cache, TEMPORARY_INSTALL_FILE);
Doug Zongkerd0181b82011-10-19 10:51:12 -0700843 } else {
Elliott Hughes30694c92015-03-25 15:16:51 -0700844 status = apply_from_sdcard(device, &should_wipe_cache);
Doug Zongkerd0181b82011-10-19 10:51:12 -0700845 }
Doug Zongker945fc682014-07-10 10:50:39 -0700846
Elliott Hughes30694c92015-03-25 15:16:51 -0700847 if (status == INSTALL_SUCCESS && should_wipe_cache) {
Tao Baoe39a9bc2015-03-31 12:19:05 -0700848 if (!wipe_cache(false, device)) {
849 status = INSTALL_ERROR;
850 }
Christian Poetzsch4ec58a42015-02-19 10:42:39 +0000851 }
852
Tao Baoc679f932015-03-30 09:43:49 -0700853 if (status != INSTALL_SUCCESS) {
854 ui->SetBackground(RecoveryUI::ERROR);
855 ui->Print("Installation aborted.\n");
856 copy_logs();
857 } else if (!ui->IsTextVisible()) {
858 return Device::NO_ACTION; // reboot if logs aren't visible
859 } else {
860 ui->Print("\nInstall from %s complete.\n", adb ? "ADB" : "SD card");
Doug Zongker8674a722010-09-15 11:08:23 -0700861 }
Doug Zongkerf93d8162009-09-22 15:16:02 -0700862 }
863 break;
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700864
Elliott Hughesec283402015-04-10 10:01:53 -0700865 case Device::VIEW_RECOVERY_LOGS:
866 choose_recovery_file(device);
Michael Ward9d2629c2011-06-23 22:14:24 -0700867 break;
Doug Zongker9270a202012-01-09 15:16:13 -0800868
Elliott Hughesec283402015-04-10 10:01:53 -0700869 case Device::MOUNT_SYSTEM:
870 if (ensure_path_mounted("/system") != -1) {
Elliott Hughese46066f2015-04-13 13:29:38 -0700871 ui->Print("Mounted /system.\n");
Elliott Hughesec283402015-04-10 10:01:53 -0700872 }
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700873 break;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800874 }
875 }
876}
877
878static void
Oscar Montemayor05231562009-11-30 08:40:57 -0800879print_property(const char *key, const char *name, void *cookie) {
Doug Zongker56c51052010-07-01 09:18:44 -0700880 printf("%s=%s\n", key, name);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800881}
882
Doug Zongker02ec6b82012-08-22 17:26:40 -0700883static void
884load_locale_from_cache() {
885 FILE* fp = fopen_path(LOCALE_FILE, "r");
886 char buffer[80];
887 if (fp != NULL) {
888 fgets(buffer, sizeof(buffer), fp);
889 int j = 0;
Doug Zongker5fa8c232012-09-18 12:37:02 -0700890 unsigned int i;
Doug Zongker02ec6b82012-08-22 17:26:40 -0700891 for (i = 0; i < sizeof(buffer) && buffer[i]; ++i) {
892 if (!isspace(buffer[i])) {
893 buffer[j++] = buffer[i];
894 }
895 }
896 buffer[j] = 0;
897 locale = strdup(buffer);
Devin Kim6016d082012-10-08 09:47:37 -0700898 check_and_fclose(fp, LOCALE_FILE);
Doug Zongker02ec6b82012-08-22 17:26:40 -0700899 }
900}
901
Doug Zongker7c3ae452013-05-14 11:03:02 -0700902static RecoveryUI* gCurrentUI = NULL;
903
904void
905ui_print(const char* format, ...) {
906 char buffer[256];
907
908 va_list ap;
909 va_start(ap, format);
910 vsnprintf(buffer, sizeof(buffer), format, ap);
911 va_end(ap);
912
913 if (gCurrentUI != NULL) {
914 gCurrentUI->Print("%s", buffer);
915 } else {
916 fputs(buffer, stdout);
917 }
918}
919
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800920int
Oscar Montemayor05231562009-11-30 08:40:57 -0800921main(int argc, char **argv) {
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800922 time_t start = time(NULL);
923
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700924 redirect_stdio(TEMPORARY_LOG_FILE);
Doug Zongker9270a202012-01-09 15:16:13 -0800925
926 // If this binary is started with the single argument "--adbd",
927 // instead of being the normal recovery binary, it turns into kind
928 // of a stripped-down version of adbd that only supports the
929 // 'sideload' command. Note this must be a real argument, not
930 // anything in the command file or bootloader control block; the
931 // only way recovery should be run with this argument is when it
932 // starts a copy of itself from the apply_from_adb() function.
933 if (argc == 2 && strcmp(argv[1], "--adbd") == 0) {
Dan Albertf3a57262015-02-19 13:21:14 -0800934 adb_main(0, DEFAULT_ADB_PORT);
Doug Zongker9270a202012-01-09 15:16:13 -0800935 return 0;
936 }
937
Doug Zongker19a8e242014-01-21 09:25:41 -0800938 printf("Starting recovery (pid %d) on %s", getpid(), ctime(&start));
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800939
Doug Zongkerd4208f92010-09-20 12:16:13 -0700940 load_volume_table();
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800941 get_args(&argc, &argv);
942
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800943 const char *send_intent = NULL;
944 const char *update_package = NULL;
Tao Baoe39a9bc2015-03-31 12:19:05 -0700945 bool should_wipe_data = false;
Tao Baoc679f932015-03-30 09:43:49 -0700946 bool should_wipe_cache = false;
Tao Bao145d8612015-03-25 15:51:15 -0700947 bool show_text = false;
Tao Baoc679f932015-03-30 09:43:49 -0700948 bool sideload = false;
949 bool sideload_auto_reboot = false;
Doug Zongkere5d5ac72012-04-12 11:01:22 -0700950 bool just_exit = false;
Doug Zongkerb1d12632014-03-18 10:32:12 -0700951 bool shutdown_after = false;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800952
953 int arg;
954 while ((arg = getopt_long(argc, argv, "", OPTIONS, NULL)) != -1) {
955 switch (arg) {
Tao Baoc679f932015-03-30 09:43:49 -0700956 case 'i': send_intent = optarg; break;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800957 case 'u': update_package = optarg; break;
Tao Baoe39a9bc2015-03-31 12:19:05 -0700958 case 'w': should_wipe_data = true; break;
Tao Baoc679f932015-03-30 09:43:49 -0700959 case 'c': should_wipe_cache = true; break;
Tao Bao145d8612015-03-25 15:51:15 -0700960 case 't': show_text = true; break;
Tao Baoc679f932015-03-30 09:43:49 -0700961 case 's': sideload = true; break;
962 case 'a': sideload = true; sideload_auto_reboot = true; break;
Doug Zongkere5d5ac72012-04-12 11:01:22 -0700963 case 'x': just_exit = true; break;
Doug Zongker02ec6b82012-08-22 17:26:40 -0700964 case 'l': locale = optarg; break;
Doug Zongkerc87bab12013-11-25 13:53:25 -0800965 case 'g': {
966 if (stage == NULL || *stage == '\0') {
967 char buffer[20] = "1/";
968 strncat(buffer, optarg, sizeof(buffer)-3);
969 stage = strdup(buffer);
970 }
971 break;
972 }
Doug Zongkerb1d12632014-03-18 10:32:12 -0700973 case 'p': shutdown_after = true; break;
Jeff Sharkeya6e13ae2014-09-24 11:46:17 -0700974 case 'r': reason = optarg; break;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800975 case '?':
976 LOGE("Invalid command argument\n");
977 continue;
978 }
979 }
980
Doug Zongker02ec6b82012-08-22 17:26:40 -0700981 if (locale == NULL) {
982 load_locale_from_cache();
983 }
984 printf("locale is [%s]\n", locale);
Doug Zongker0d32f252014-02-13 15:07:56 -0800985 printf("stage is [%s]\n", stage);
Jeff Sharkeya6e13ae2014-09-24 11:46:17 -0700986 printf("reason is [%s]\n", reason);
Doug Zongker02ec6b82012-08-22 17:26:40 -0700987
988 Device* device = make_device();
989 ui = device->GetUI();
Doug Zongker7c3ae452013-05-14 11:03:02 -0700990 gCurrentUI = ui;
Doug Zongker02ec6b82012-08-22 17:26:40 -0700991
Doug Zongker5fa8c232012-09-18 12:37:02 -0700992 ui->SetLocale(locale);
Doug Zongker02ec6b82012-08-22 17:26:40 -0700993 ui->Init();
Doug Zongkerc87bab12013-11-25 13:53:25 -0800994
995 int st_cur, st_max;
996 if (stage != NULL && sscanf(stage, "%d/%d", &st_cur, &st_max) == 2) {
997 ui->SetStage(st_cur, st_max);
998 }
999
Doug Zongker02ec6b82012-08-22 17:26:40 -07001000 ui->SetBackground(RecoveryUI::NONE);
1001 if (show_text) ui->ShowText(true);
1002
Stephen Smalley779701d2012-02-09 14:13:23 -05001003 struct selinux_opt seopts[] = {
1004 { SELABEL_OPT_PATH, "/file_contexts" }
1005 };
1006
1007 sehandle = selabel_open(SELABEL_CTX_FILE, seopts, 1);
1008
1009 if (!sehandle) {
Doug Zongkerfafc85b2013-07-09 12:29:45 -07001010 ui->Print("Warning: No file_contexts\n");
Stephen Smalley779701d2012-02-09 14:13:23 -05001011 }
Stephen Smalley779701d2012-02-09 14:13:23 -05001012
Doug Zongkerdaefc1d2011-10-31 09:34:15 -07001013 device->StartRecovery();
Doug Zongkerefa1bab2010-02-01 15:59:12 -08001014
Doug Zongker56c51052010-07-01 09:18:44 -07001015 printf("Command:");
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001016 for (arg = 0; arg < argc; arg++) {
Doug Zongker56c51052010-07-01 09:18:44 -07001017 printf(" \"%s\"", argv[arg]);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001018 }
Doug Zongker9b125b02010-09-22 12:01:37 -07001019 printf("\n");
1020
1021 if (update_package) {
1022 // For backwards compatibility on the cache partition only, if
1023 // we're given an old 'root' path "CACHE:foo", change it to
1024 // "/cache/foo".
1025 if (strncmp(update_package, "CACHE:", 6) == 0) {
1026 int len = strlen(update_package) + 10;
Doug Zongker28ce47c2011-10-28 10:33:05 -07001027 char* modified_path = (char*)malloc(len);
Doug Zongker9b125b02010-09-22 12:01:37 -07001028 strlcpy(modified_path, "/cache/", len);
1029 strlcat(modified_path, update_package+6, len);
1030 printf("(replacing path \"%s\" with \"%s\")\n",
1031 update_package, modified_path);
1032 update_package = modified_path;
1033 }
1034 }
1035 printf("\n");
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001036
1037 property_list(print_property, NULL);
Doug Zongker56c51052010-07-01 09:18:44 -07001038 printf("\n");
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001039
Elliott Hughesbb78d622015-04-09 20:51:08 -07001040 ui->Print("Supported API: %d\n", RECOVERY_API_VERSION);
1041
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001042 int status = INSTALL_SUCCESS;
1043
Doug Zongker540d57f2011-01-18 13:36:58 -08001044 if (update_package != NULL) {
Tao Baoc679f932015-03-30 09:43:49 -07001045 status = install_package(update_package, &should_wipe_cache, TEMPORARY_INSTALL_FILE, true);
1046 if (status == INSTALL_SUCCESS && should_wipe_cache) {
1047 wipe_cache(false, device);
Doug Zongkerd0181b82011-10-19 10:51:12 -07001048 }
Doug Zongker7c3ae452013-05-14 11:03:02 -07001049 if (status != INSTALL_SUCCESS) {
1050 ui->Print("Installation aborted.\n");
1051
1052 // If this is an eng or userdebug build, then automatically
1053 // turn the text display on if the script fails so the error
1054 // message is visible.
Elliott Hughesf14af802015-02-10 14:46:14 -08001055 if (is_ro_debuggable()) {
Doug Zongker7c3ae452013-05-14 11:03:02 -07001056 ui->ShowText(true);
1057 }
1058 }
Tao Baoe39a9bc2015-03-31 12:19:05 -07001059 } else if (should_wipe_data) {
1060 if (!wipe_data(false, device)) {
1061 status = INSTALL_ERROR;
1062 }
Tao Baoc679f932015-03-30 09:43:49 -07001063 } else if (should_wipe_cache) {
Tao Baoe39a9bc2015-03-31 12:19:05 -07001064 if (!wipe_cache(false, device)) {
1065 status = INSTALL_ERROR;
1066 }
Tao Baoc679f932015-03-30 09:43:49 -07001067 } else if (sideload) {
1068 // 'adb reboot sideload' acts the same as user presses key combinations
1069 // to enter the sideload mode. When 'sideload-auto-reboot' is used, text
1070 // display will NOT be turned on by default. And it will reboot after
1071 // sideload finishes even if there are errors. Unless one turns on the
1072 // text display during the installation. This is to enable automated
1073 // testing.
1074 if (!sideload_auto_reboot) {
1075 ui->ShowText(true);
1076 }
1077 status = apply_from_adb(ui, &should_wipe_cache, TEMPORARY_INSTALL_FILE);
1078 if (status == INSTALL_SUCCESS && should_wipe_cache) {
Tao Baoe39a9bc2015-03-31 12:19:05 -07001079 if (!wipe_cache(false, device)) {
1080 status = INSTALL_ERROR;
1081 }
Tao Baoc679f932015-03-30 09:43:49 -07001082 }
1083 ui->Print("\nInstall from ADB complete (status: %d).\n", status);
1084 if (sideload_auto_reboot) {
1085 ui->Print("Rebooting automatically.\n");
1086 }
Doug Zongkere5d5ac72012-04-12 11:01:22 -07001087 } else if (!just_exit) {
Doug Zongker02ec6b82012-08-22 17:26:40 -07001088 status = INSTALL_NONE; // No command specified
1089 ui->SetBackground(RecoveryUI::NO_COMMAND);
Tao Bao785d22c2015-05-04 09:34:29 -07001090
1091 // http://b/17489952
1092 // If this is an eng or userdebug build, automatically turn on the
1093 // text display if no command is specified.
1094 if (is_ro_debuggable()) {
1095 ui->ShowText(true);
1096 }
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001097 }
1098
Tao Baoc679f932015-03-30 09:43:49 -07001099 if (!sideload_auto_reboot && (status == INSTALL_ERROR || status == INSTALL_CORRUPT)) {
Doug Zongkerf24fd7e2013-07-02 11:43:25 -07001100 copy_logs();
Doug Zongker02ec6b82012-08-22 17:26:40 -07001101 ui->SetBackground(RecoveryUI::ERROR);
1102 }
Tao Baoc679f932015-03-30 09:43:49 -07001103
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001104 Device::BuiltinAction after = shutdown_after ? Device::SHUTDOWN : Device::REBOOT;
Tao Baoc679f932015-03-30 09:43:49 -07001105 if ((status != INSTALL_SUCCESS && !sideload_auto_reboot) || ui->IsTextVisible()) {
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001106 Device::BuiltinAction temp = prompt_and_wait(device, status);
Tao Baoc679f932015-03-30 09:43:49 -07001107 if (temp != Device::NO_ACTION) {
1108 after = temp;
1109 }
Doug Zongker8674a722010-09-15 11:08:23 -07001110 }
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001111
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001112 // Save logs and clean up before rebooting or shutting down.
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001113 finish_recovery(send_intent);
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001114
1115 switch (after) {
1116 case Device::SHUTDOWN:
1117 ui->Print("Shutting down...\n");
1118 property_set(ANDROID_RB_PROPERTY, "shutdown,");
1119 break;
1120
1121 case Device::REBOOT_BOOTLOADER:
1122 ui->Print("Rebooting to bootloader...\n");
1123 property_set(ANDROID_RB_PROPERTY, "reboot,bootloader");
1124 break;
1125
1126 default:
1127 ui->Print("Rebooting...\n");
1128 property_set(ANDROID_RB_PROPERTY, "reboot,");
1129 break;
Doug Zongkerb1d12632014-03-18 10:32:12 -07001130 }
Tao Bao75238632015-05-27 14:46:17 -07001131 while (true) {
1132 pause();
1133 }
1134 // Should be unreachable.
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001135 return EXIT_SUCCESS;
1136}