blob: 708d5f150fc77696e94dd37277eecc223de4e89e [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
34#include "bootloader.h"
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080035#include "common.h"
36#include "cutils/properties.h"
Ken Sumrall6e4472a2011-03-07 23:37:27 -080037#include "cutils/android_reboot.h"
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080038#include "install.h"
39#include "minui/minui.h"
40#include "minzip/DirUtil.h"
41#include "roots.h"
Doug Zongker28ce47c2011-10-28 10:33:05 -070042#include "ui.h"
Doug Zongker211aebc2011-10-28 15:13:10 -070043#include "screen_ui.h"
Doug Zongkerdaefc1d2011-10-31 09:34:15 -070044#include "device.h"
Doug Zongker9270a202012-01-09 15:16:13 -080045#include "adb_install.h"
46extern "C" {
Dan Albertf3a57262015-02-19 13:21:14 -080047#include "adb.h"
Doug Zongker945fc682014-07-10 10:50:39 -070048#include "fuse_sideload.h"
49#include "fuse_sdcard_provider.h"
Doug Zongker9270a202012-01-09 15:16:13 -080050}
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080051
Stephen Smalley779701d2012-02-09 14:13:23 -050052struct selabel_handle *sehandle;
53
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080054static const struct option OPTIONS[] = {
55 { "send_intent", required_argument, NULL, 's' },
56 { "update_package", required_argument, NULL, 'u' },
57 { "wipe_data", no_argument, NULL, 'w' },
58 { "wipe_cache", no_argument, NULL, 'c' },
Doug Zongker4bc98062010-09-03 11:00:13 -070059 { "show_text", no_argument, NULL, 't' },
Doug Zongkere5d5ac72012-04-12 11:01:22 -070060 { "just_exit", no_argument, NULL, 'x' },
Doug Zongker02ec6b82012-08-22 17:26:40 -070061 { "locale", required_argument, NULL, 'l' },
Doug Zongkerc87bab12013-11-25 13:53:25 -080062 { "stages", required_argument, NULL, 'g' },
Doug Zongkerb1d12632014-03-18 10:32:12 -070063 { "shutdown_after", no_argument, NULL, 'p' },
Jeff Sharkeya6e13ae2014-09-24 11:46:17 -070064 { "reason", required_argument, NULL, 'r' },
Doug Zongker988500b2009-10-06 14:41:38 -070065 { NULL, 0, NULL, 0 },
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080066};
67
Doug Zongkerda1ebae2013-05-16 11:23:48 -070068#define LAST_LOG_FILE "/cache/recovery/last_log"
69
Doug Zongker6d0d7ac2013-07-09 13:34:55 -070070static const char *CACHE_LOG_DIR = "/cache/recovery";
Doug Zongkerd4208f92010-09-20 12:16:13 -070071static const char *COMMAND_FILE = "/cache/recovery/command";
72static const char *INTENT_FILE = "/cache/recovery/intent";
73static const char *LOG_FILE = "/cache/recovery/log";
Doug Zongkerd0181b82011-10-19 10:51:12 -070074static const char *LAST_INSTALL_FILE = "/cache/recovery/last_install";
Doug Zongker8b240cc2012-08-29 15:19:29 -070075static const char *LOCALE_FILE = "/cache/recovery/last_locale";
Michael Ward9d2629c2011-06-23 22:14:24 -070076static const char *CACHE_ROOT = "/cache";
Doug Zongkerd4208f92010-09-20 12:16:13 -070077static const char *SDCARD_ROOT = "/sdcard";
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080078static const char *TEMPORARY_LOG_FILE = "/tmp/recovery.log";
Doug Zongkerd0181b82011-10-19 10:51:12 -070079static const char *TEMPORARY_INSTALL_FILE = "/tmp/last_install";
Patrick Tjincd055ee2014-12-09 11:26:40 -080080static const char *LAST_KMSG_FILE = "/cache/recovery/last_kmsg";
81#define KLOG_DEFAULT_LEN (64 * 1024)
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080082
Nick Kralevicha9ad0322014-10-22 18:38:48 -070083#define KEEP_LOG_COUNT 10
84
Patrick Tjinf59b9942014-12-09 12:42:42 -080085// Number of lines per page when displaying a file on screen
86#define LINES_PER_PAGE 30
87
Doug Zongker211aebc2011-10-28 15:13:10 -070088RecoveryUI* ui = NULL;
Doug Zongker02ec6b82012-08-22 17:26:40 -070089char* locale = NULL;
Doug Zongkerc0441d12013-07-31 11:28:24 -070090char recovery_version[PROPERTY_VALUE_MAX+1];
Doug Zongkerc87bab12013-11-25 13:53:25 -080091char* stage = NULL;
Jeff Sharkeya6e13ae2014-09-24 11:46:17 -070092char* reason = NULL;
Doug Zongker211aebc2011-10-28 15:13:10 -070093
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080094/*
95 * The recovery tool communicates with the main system through /cache files.
96 * /cache/recovery/command - INPUT - command line for tool, one arg per line
97 * /cache/recovery/log - OUTPUT - combined log file from recovery run(s)
98 * /cache/recovery/intent - OUTPUT - intent that was passed in
99 *
100 * The arguments which may be supplied in the recovery.command file:
101 * --send_intent=anystring - write the text out to recovery.intent
Doug Zongkerd4208f92010-09-20 12:16:13 -0700102 * --update_package=path - verify install an OTA package file
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800103 * --wipe_data - erase user data (and cache), then reboot
104 * --wipe_cache - wipe cache (but not user data), then reboot
Oscar Montemayor05231562009-11-30 08:40:57 -0800105 * --set_encrypted_filesystem=on|off - enables / diasables encrypted fs
Doug Zongkere5d5ac72012-04-12 11:01:22 -0700106 * --just_exit - do nothing; exit and reboot
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800107 *
108 * After completing, we remove /cache/recovery/command and reboot.
109 * Arguments may also be supplied in the bootloader control block (BCB).
110 * These important scenarios must be safely restartable at any point:
111 *
112 * FACTORY RESET
113 * 1. user selects "factory reset"
114 * 2. main system writes "--wipe_data" to /cache/recovery/command
115 * 3. main system reboots into recovery
116 * 4. get_args() writes BCB with "boot-recovery" and "--wipe_data"
117 * -- after this, rebooting will restart the erase --
Doug Zongkerd4208f92010-09-20 12:16:13 -0700118 * 5. erase_volume() reformats /data
119 * 6. erase_volume() reformats /cache
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800120 * 7. finish_recovery() erases BCB
121 * -- after this, rebooting will restart the main system --
122 * 8. main() calls reboot() to boot main system
123 *
124 * OTA INSTALL
125 * 1. main system downloads OTA package to /cache/some-filename.zip
Doug Zongker9b125b02010-09-22 12:01:37 -0700126 * 2. main system writes "--update_package=/cache/some-filename.zip"
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800127 * 3. main system reboots into recovery
128 * 4. get_args() writes BCB with "boot-recovery" and "--update_package=..."
129 * -- after this, rebooting will attempt to reinstall the update --
130 * 5. install_package() attempts to install the update
131 * NOTE: the package install must itself be restartable from any point
132 * 6. finish_recovery() erases BCB
133 * -- after this, rebooting will (try to) restart the main system --
134 * 7. ** if install failed **
135 * 7a. prompt_and_wait() shows an error icon and waits for the user
136 * 7b; the user reboots (pulling the battery, etc) into the main system
137 * 8. main() calls maybe_install_firmware_update()
138 * ** if the update contained radio/hboot firmware **:
139 * 8a. m_i_f_u() writes BCB with "boot-recovery" and "--wipe_cache"
140 * -- after this, rebooting will reformat cache & restart main system --
141 * 8b. m_i_f_u() writes firmware image into raw cache partition
142 * 8c. m_i_f_u() writes BCB with "update-radio/hboot" and "--wipe_cache"
143 * -- after this, rebooting will attempt to reinstall firmware --
144 * 8d. bootloader tries to flash firmware
145 * 8e. bootloader writes BCB with "boot-recovery" (keeping "--wipe_cache")
146 * -- after this, rebooting will reformat cache & restart main system --
Doug Zongkerd4208f92010-09-20 12:16:13 -0700147 * 8f. erase_volume() reformats /cache
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800148 * 8g. finish_recovery() erases BCB
149 * -- after this, rebooting will (try to) restart the main system --
150 * 9. main() calls reboot() to boot main system
151 */
152
153static const int MAX_ARG_LENGTH = 4096;
154static const int MAX_ARGS = 100;
155
Doug Zongkerd4208f92010-09-20 12:16:13 -0700156// open a given path, mounting partitions as necessary
Doug Zongker469243e2011-04-12 09:28:10 -0700157FILE*
Doug Zongkerd4208f92010-09-20 12:16:13 -0700158fopen_path(const char *path, const char *mode) {
159 if (ensure_path_mounted(path) != 0) {
160 LOGE("Can't mount %s\n", path);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800161 return NULL;
162 }
163
164 // When writing, try to create the containing directory, if necessary.
165 // Use generous permissions, the system (init.rc) will reset them.
Stephen Smalley779701d2012-02-09 14:13:23 -0500166 if (strchr("wa", mode[0])) dirCreateHierarchy(path, 0777, NULL, 1, sehandle);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800167
168 FILE *fp = fopen(path, mode);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800169 return fp;
170}
171
Elliott Hughesf14af802015-02-10 14:46:14 -0800172bool is_ro_debuggable() {
173 char value[PROPERTY_VALUE_MAX+1];
174 return (property_get("ro.debuggable", value, NULL) == 1 && value[0] == '1');
175}
176
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700177static void redirect_stdio(const char* filename) {
178 // If these fail, there's not really anywhere to complain...
179 freopen(filename, "a", stdout); setbuf(stdout, NULL);
180 freopen(filename, "a", stderr); setbuf(stderr, NULL);
181}
182
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800183// close a file, log an error if the error indicator is set
184static void
185check_and_fclose(FILE *fp, const char *name) {
186 fflush(fp);
187 if (ferror(fp)) LOGE("Error in %s\n(%s)\n", name, strerror(errno));
188 fclose(fp);
189}
190
191// command line args come from, in decreasing precedence:
192// - the actual command line
193// - the bootloader control block (one per line, after "recovery")
194// - the contents of COMMAND_FILE (one per line)
195static void
196get_args(int *argc, char ***argv) {
197 struct bootloader_message boot;
198 memset(&boot, 0, sizeof(boot));
199 get_bootloader_message(&boot); // this may fail, leaving a zeroed structure
Doug Zongkerc87bab12013-11-25 13:53:25 -0800200 stage = strndup(boot.stage, sizeof(boot.stage));
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800201
202 if (boot.command[0] != 0 && boot.command[0] != 255) {
Mark Salyzynf3bb31c2014-03-14 09:39:48 -0700203 LOGI("Boot command: %.*s\n", (int)sizeof(boot.command), boot.command);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800204 }
205
206 if (boot.status[0] != 0 && boot.status[0] != 255) {
Mark Salyzynf3bb31c2014-03-14 09:39:48 -0700207 LOGI("Boot status: %.*s\n", (int)sizeof(boot.status), boot.status);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800208 }
209
210 // --- if arguments weren't supplied, look in the bootloader control block
211 if (*argc <= 1) {
212 boot.recovery[sizeof(boot.recovery) - 1] = '\0'; // Ensure termination
213 const char *arg = strtok(boot.recovery, "\n");
214 if (arg != NULL && !strcmp(arg, "recovery")) {
215 *argv = (char **) malloc(sizeof(char *) * MAX_ARGS);
216 (*argv)[0] = strdup(arg);
217 for (*argc = 1; *argc < MAX_ARGS; ++*argc) {
218 if ((arg = strtok(NULL, "\n")) == NULL) break;
219 (*argv)[*argc] = strdup(arg);
220 }
221 LOGI("Got arguments from boot message\n");
222 } else if (boot.recovery[0] != 0 && boot.recovery[0] != 255) {
223 LOGE("Bad boot message\n\"%.20s\"\n", boot.recovery);
224 }
225 }
226
227 // --- if that doesn't work, try the command file
228 if (*argc <= 1) {
Doug Zongkerd4208f92010-09-20 12:16:13 -0700229 FILE *fp = fopen_path(COMMAND_FILE, "r");
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800230 if (fp != NULL) {
Jin Feng93ffa752013-06-04 17:46:24 +0800231 char *token;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800232 char *argv0 = (*argv)[0];
233 *argv = (char **) malloc(sizeof(char *) * MAX_ARGS);
234 (*argv)[0] = argv0; // use the same program name
235
236 char buf[MAX_ARG_LENGTH];
237 for (*argc = 1; *argc < MAX_ARGS; ++*argc) {
238 if (!fgets(buf, sizeof(buf), fp)) break;
Jin Feng93ffa752013-06-04 17:46:24 +0800239 token = strtok(buf, "\r\n");
240 if (token != NULL) {
241 (*argv)[*argc] = strdup(token); // Strip newline.
242 } else {
243 --*argc;
244 }
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800245 }
246
247 check_and_fclose(fp, COMMAND_FILE);
248 LOGI("Got arguments from %s\n", COMMAND_FILE);
249 }
250 }
251
252 // --> write the arguments we have back into the bootloader control block
253 // always boot into recovery after this (until finish_recovery() is called)
254 strlcpy(boot.command, "boot-recovery", sizeof(boot.command));
255 strlcpy(boot.recovery, "recovery\n", sizeof(boot.recovery));
256 int i;
257 for (i = 1; i < *argc; ++i) {
258 strlcat(boot.recovery, (*argv)[i], sizeof(boot.recovery));
259 strlcat(boot.recovery, "\n", sizeof(boot.recovery));
260 }
261 set_bootloader_message(&boot);
262}
263
Doug Zongker34c98df2009-08-18 12:05:45 -0700264static void
Oscar Montemayor05231562009-11-30 08:40:57 -0800265set_sdcard_update_bootloader_message() {
Doug Zongker34c98df2009-08-18 12:05:45 -0700266 struct bootloader_message boot;
267 memset(&boot, 0, sizeof(boot));
268 strlcpy(boot.command, "boot-recovery", sizeof(boot.command));
269 strlcpy(boot.recovery, "recovery\n", sizeof(boot.recovery));
270 set_bootloader_message(&boot);
271}
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800272
Patrick Tjincd055ee2014-12-09 11:26:40 -0800273// read from kernel log into buffer and write out to file
274static void
275save_kernel_log(const char *destination) {
276 int n;
277 char *buffer;
278 int klog_buf_len;
279 FILE *log;
280
281 klog_buf_len = klogctl(KLOG_SIZE_BUFFER, 0, 0);
282 if (klog_buf_len <= 0) {
283 LOGE("Error getting klog size (%s), using default\n", strerror(errno));
284 klog_buf_len = KLOG_DEFAULT_LEN;
285 }
286
287 buffer = (char *)malloc(klog_buf_len);
288 if (!buffer) {
289 LOGE("Can't alloc %d bytes for klog buffer\n", klog_buf_len);
290 return;
291 }
292
293 n = klogctl(KLOG_READ_ALL, buffer, klog_buf_len);
294 if (n < 0) {
295 LOGE("Error in reading klog (%s)\n", strerror(errno));
296 free(buffer);
297 return;
298 }
299
300 log = fopen_path(destination, "w");
301 if (log == NULL) {
302 LOGE("Can't open %s\n", destination);
303 free(buffer);
304 return;
305 }
306 fwrite(buffer, n, 1, log);
307 check_and_fclose(log, destination);
308 free(buffer);
309}
310
Doug Zongker2c3539e2010-09-29 13:21:30 -0700311// How much of the temp log we have copied to the copy in cache.
312static long tmplog_offset = 0;
313
314static void
Doug Zongkerd0181b82011-10-19 10:51:12 -0700315copy_log_file(const char* source, const char* destination, int append) {
Doug Zongker2c3539e2010-09-29 13:21:30 -0700316 FILE *log = fopen_path(destination, append ? "a" : "w");
317 if (log == NULL) {
318 LOGE("Can't open %s\n", destination);
319 } else {
Doug Zongkerd0181b82011-10-19 10:51:12 -0700320 FILE *tmplog = fopen(source, "r");
321 if (tmplog != NULL) {
Doug Zongker2c3539e2010-09-29 13:21:30 -0700322 if (append) {
323 fseek(tmplog, tmplog_offset, SEEK_SET); // Since last write
324 }
325 char buf[4096];
326 while (fgets(buf, sizeof(buf), tmplog)) fputs(buf, log);
327 if (append) {
328 tmplog_offset = ftell(tmplog);
329 }
Doug Zongkerd0181b82011-10-19 10:51:12 -0700330 check_and_fclose(tmplog, source);
Doug Zongker2c3539e2010-09-29 13:21:30 -0700331 }
332 check_and_fclose(log, destination);
333 }
334}
335
Doug Zongkerda1ebae2013-05-16 11:23:48 -0700336// Rename last_log -> last_log.1 -> last_log.2 -> ... -> last_log.$max
337// Overwrites any existing last_log.$max.
338static void
339rotate_last_logs(int max) {
340 char oldfn[256];
341 char newfn[256];
342
343 int i;
344 for (i = max-1; i >= 0; --i) {
345 snprintf(oldfn, sizeof(oldfn), (i==0) ? LAST_LOG_FILE : (LAST_LOG_FILE ".%d"), i);
346 snprintf(newfn, sizeof(newfn), LAST_LOG_FILE ".%d", i+1);
347 // ignore errors
348 rename(oldfn, newfn);
349 }
350}
Doug Zongker2c3539e2010-09-29 13:21:30 -0700351
Doug Zongkerf24fd7e2013-07-02 11:43:25 -0700352static void
353copy_logs() {
354 // Copy logs to cache so the system can find out what happened.
355 copy_log_file(TEMPORARY_LOG_FILE, LOG_FILE, true);
356 copy_log_file(TEMPORARY_LOG_FILE, LAST_LOG_FILE, false);
357 copy_log_file(TEMPORARY_INSTALL_FILE, LAST_INSTALL_FILE, false);
Patrick Tjincd055ee2014-12-09 11:26:40 -0800358 save_kernel_log(LAST_KMSG_FILE);
Doug Zongkerf24fd7e2013-07-02 11:43:25 -0700359 chmod(LOG_FILE, 0600);
360 chown(LOG_FILE, 1000, 1000); // system user
Patrick Tjincd055ee2014-12-09 11:26:40 -0800361 chmod(LAST_KMSG_FILE, 0600);
362 chown(LAST_KMSG_FILE, 1000, 1000); // system user
Doug Zongkerf24fd7e2013-07-02 11:43:25 -0700363 chmod(LAST_LOG_FILE, 0640);
364 chmod(LAST_INSTALL_FILE, 0644);
365 sync();
366}
367
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800368// clear the recovery command and prepare to boot a (hopefully working) system,
369// copy our log file to cache as well (for the system to read), and
370// record any intent we were asked to communicate back to the system.
371// this function is idempotent: call it as many times as you like.
372static void
Oscar Montemayor05231562009-11-30 08:40:57 -0800373finish_recovery(const char *send_intent) {
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800374 // By this point, we're ready to return to the main system...
375 if (send_intent != NULL) {
Doug Zongkerd4208f92010-09-20 12:16:13 -0700376 FILE *fp = fopen_path(INTENT_FILE, "w");
Jay Freeman (saurik)619ec2f2008-11-17 01:56:05 +0000377 if (fp == NULL) {
378 LOGE("Can't open %s\n", INTENT_FILE);
379 } else {
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800380 fputs(send_intent, fp);
381 check_and_fclose(fp, INTENT_FILE);
382 }
383 }
384
Doug Zongker4f33e552012-08-23 13:16:12 -0700385 // Save the locale to cache, so if recovery is next started up
386 // without a --locale argument (eg, directly from the bootloader)
387 // it will use the last-known locale.
388 if (locale != NULL) {
389 LOGI("Saving locale \"%s\"\n", locale);
390 FILE* fp = fopen_path(LOCALE_FILE, "w");
391 fwrite(locale, 1, strlen(locale), fp);
392 fflush(fp);
393 fsync(fileno(fp));
394 check_and_fclose(fp, LOCALE_FILE);
395 }
396
Doug Zongkerf24fd7e2013-07-02 11:43:25 -0700397 copy_logs();
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800398
Doug Zongkere5d5ac72012-04-12 11:01:22 -0700399 // Reset to normal system boot so recovery won't cycle indefinitely.
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800400 struct bootloader_message boot;
401 memset(&boot, 0, sizeof(boot));
402 set_bootloader_message(&boot);
403
404 // Remove the command file, so recovery won't repeat indefinitely.
Doug Zongkerd4208f92010-09-20 12:16:13 -0700405 if (ensure_path_mounted(COMMAND_FILE) != 0 ||
406 (unlink(COMMAND_FILE) && errno != ENOENT)) {
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800407 LOGW("Can't unlink %s\n", COMMAND_FILE);
408 }
409
Doug Zongkerd0181b82011-10-19 10:51:12 -0700410 ensure_path_unmounted(CACHE_ROOT);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800411 sync(); // For good measure.
412}
413
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700414typedef struct _saved_log_file {
415 char* name;
416 struct stat st;
417 unsigned char* data;
418 struct _saved_log_file* next;
419} saved_log_file;
420
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800421static int
Doug Zongkerd4208f92010-09-20 12:16:13 -0700422erase_volume(const char *volume) {
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700423 bool is_cache = (strcmp(volume, CACHE_ROOT) == 0);
424
Doug Zongker02ec6b82012-08-22 17:26:40 -0700425 ui->SetBackground(RecoveryUI::ERASING);
Doug Zongker211aebc2011-10-28 15:13:10 -0700426 ui->SetProgressType(RecoveryUI::INDETERMINATE);
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700427
428 saved_log_file* head = NULL;
429
430 if (is_cache) {
431 // If we're reformatting /cache, we load any
432 // "/cache/recovery/last*" files into memory, so we can restore
433 // them after the reformat.
434
435 ensure_path_mounted(volume);
436
437 DIR* d;
438 struct dirent* de;
439 d = opendir(CACHE_LOG_DIR);
440 if (d) {
441 char path[PATH_MAX];
442 strcpy(path, CACHE_LOG_DIR);
443 strcat(path, "/");
444 int path_len = strlen(path);
445 while ((de = readdir(d)) != NULL) {
446 if (strncmp(de->d_name, "last", 4) == 0) {
447 saved_log_file* p = (saved_log_file*) malloc(sizeof(saved_log_file));
448 strcpy(path+path_len, de->d_name);
449 p->name = strdup(path);
450 if (stat(path, &(p->st)) == 0) {
451 // truncate files to 512kb
452 if (p->st.st_size > (1 << 19)) {
453 p->st.st_size = 1 << 19;
454 }
455 p->data = (unsigned char*) malloc(p->st.st_size);
456 FILE* f = fopen(path, "rb");
457 fread(p->data, 1, p->st.st_size, f);
458 fclose(f);
459 p->next = head;
460 head = p;
461 } else {
462 free(p);
463 }
464 }
465 }
466 closedir(d);
467 } else {
468 if (errno != ENOENT) {
469 printf("opendir failed: %s\n", strerror(errno));
470 }
471 }
472 }
473
Doug Zongker211aebc2011-10-28 15:13:10 -0700474 ui->Print("Formatting %s...\n", volume);
Doug Zongker2c3539e2010-09-29 13:21:30 -0700475
Doug Zongkerd0181b82011-10-19 10:51:12 -0700476 ensure_path_unmounted(volume);
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700477 int result = format_volume(volume);
Doug Zongkerd0181b82011-10-19 10:51:12 -0700478
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700479 if (is_cache) {
480 while (head) {
481 FILE* f = fopen_path(head->name, "wb");
482 if (f) {
483 fwrite(head->data, 1, head->st.st_size, f);
484 fclose(f);
485 chmod(head->name, head->st.st_mode);
486 chown(head->name, head->st.st_uid, head->st.st_gid);
487 }
488 free(head->name);
489 free(head->data);
490 saved_log_file* temp = head->next;
491 free(head);
492 head = temp;
493 }
494
Doug Zongker2c3539e2010-09-29 13:21:30 -0700495 // Any part of the log we'd copied to cache is now gone.
496 // Reset the pointer so we copy from the beginning of the temp
497 // log.
498 tmplog_offset = 0;
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700499 copy_logs();
Doug Zongker2c3539e2010-09-29 13:21:30 -0700500 }
501
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700502 return result;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800503}
504
Elliott Hughes30694c92015-03-25 15:16:51 -0700505static const char** prepend_title(const char* const* headers) {
Doug Zongkerd6837852009-06-17 22:07:13 -0700506 // count the number of lines in our title, plus the
Doug Zongkerf93d8162009-09-22 15:16:02 -0700507 // caller-provided headers.
Doug Zongkerc0441d12013-07-31 11:28:24 -0700508 int count = 3; // our title has 3 lines
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700509 const char* const* p;
Doug Zongkerf93d8162009-09-22 15:16:02 -0700510 for (p = headers; *p; ++p, ++count);
Doug Zongkerd6837852009-06-17 22:07:13 -0700511
Doug Zongker28ce47c2011-10-28 10:33:05 -0700512 const char** new_headers = (const char**)malloc((count+1) * sizeof(char*));
513 const char** h = new_headers;
Elliott Hughesc51ac892015-03-20 18:22:15 -0700514 *(h++) = "Android system recovery (API " EXPAND(RECOVERY_API_VERSION) ")";
Doug Zongkerc0441d12013-07-31 11:28:24 -0700515 *(h++) = recovery_version;
516 *(h++) = "";
Doug Zongkerf93d8162009-09-22 15:16:02 -0700517 for (p = headers; *p; ++p, ++h) *h = *p;
Doug Zongkerd6837852009-06-17 22:07:13 -0700518 *h = NULL;
519
Doug Zongkerf93d8162009-09-22 15:16:02 -0700520 return new_headers;
521}
522
523static int
Doug Zongker28ce47c2011-10-28 10:33:05 -0700524get_menu_selection(const char* const * headers, const char* const * items,
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700525 int menu_only, int initial_selection, Device* device) {
Doug Zongkerf93d8162009-09-22 15:16:02 -0700526 // throw away keys pressed previously, so user doesn't
527 // accidentally trigger menu items.
Doug Zongker211aebc2011-10-28 15:13:10 -0700528 ui->FlushKeys();
Doug Zongkerf93d8162009-09-22 15:16:02 -0700529
Doug Zongker211aebc2011-10-28 15:13:10 -0700530 ui->StartMenu(headers, items, initial_selection);
Doug Zongker8674a722010-09-15 11:08:23 -0700531 int selected = initial_selection;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800532 int chosen_item = -1;
533
Doug Zongkerf93d8162009-09-22 15:16:02 -0700534 while (chosen_item < 0) {
Doug Zongker211aebc2011-10-28 15:13:10 -0700535 int key = ui->WaitKey();
536 int visible = ui->IsTextVisible();
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800537
Doug Zongker5cae4452011-01-25 13:15:30 -0800538 if (key == -1) { // ui_wait_key() timed out
Doug Zongker211aebc2011-10-28 15:13:10 -0700539 if (ui->WasTextEverVisible()) {
Doug Zongker5cae4452011-01-25 13:15:30 -0800540 continue;
541 } else {
542 LOGI("timed out waiting for key input; rebooting.\n");
Doug Zongker211aebc2011-10-28 15:13:10 -0700543 ui->EndMenu();
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700544 return 0; // XXX fixme
Doug Zongker5cae4452011-01-25 13:15:30 -0800545 }
546 }
547
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700548 int action = device->HandleMenuKey(key, visible);
Doug Zongkerddd6a282009-06-09 12:22:33 -0700549
550 if (action < 0) {
551 switch (action) {
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700552 case Device::kHighlightUp:
Doug Zongkerddd6a282009-06-09 12:22:33 -0700553 --selected;
Doug Zongker211aebc2011-10-28 15:13:10 -0700554 selected = ui->SelectMenu(selected);
Doug Zongkerddd6a282009-06-09 12:22:33 -0700555 break;
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700556 case Device::kHighlightDown:
Doug Zongkerddd6a282009-06-09 12:22:33 -0700557 ++selected;
Doug Zongker211aebc2011-10-28 15:13:10 -0700558 selected = ui->SelectMenu(selected);
Doug Zongkerddd6a282009-06-09 12:22:33 -0700559 break;
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700560 case Device::kInvokeItem:
Doug Zongkerddd6a282009-06-09 12:22:33 -0700561 chosen_item = selected;
562 break;
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700563 case Device::kNoAction:
Doug Zongkerddd6a282009-06-09 12:22:33 -0700564 break;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800565 }
Doug Zongkerf93d8162009-09-22 15:16:02 -0700566 } else if (!menu_only) {
Doug Zongkerddd6a282009-06-09 12:22:33 -0700567 chosen_item = action;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800568 }
Doug Zongkerf93d8162009-09-22 15:16:02 -0700569 }
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800570
Doug Zongker211aebc2011-10-28 15:13:10 -0700571 ui->EndMenu();
Doug Zongkerf93d8162009-09-22 15:16:02 -0700572 return chosen_item;
573}
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800574
Doug Zongker8674a722010-09-15 11:08:23 -0700575static int compare_string(const void* a, const void* b) {
576 return strcmp(*(const char**)a, *(const char**)b);
577}
578
Doug Zongker93950222014-07-08 14:10:23 -0700579// Returns a malloc'd path, or NULL.
Elliott Hughes30694c92015-03-25 15:16:51 -0700580static char* browse_directory(const char* path, Device* device) {
Michael Ward9d2629c2011-06-23 22:14:24 -0700581 ensure_path_mounted(path);
Doug Zongkerc18eeb82010-09-21 16:49:26 -0700582
Elliott Hughes30694c92015-03-25 15:16:51 -0700583 DIR* d = opendir(path);
Doug Zongker8674a722010-09-15 11:08:23 -0700584 if (d == NULL) {
585 LOGE("error opening %s: %s\n", path, strerror(errno));
Doug Zongker93950222014-07-08 14:10:23 -0700586 return NULL;
Doug Zongker8674a722010-09-15 11:08:23 -0700587 }
588
Doug Zongker8674a722010-09-15 11:08:23 -0700589 int d_size = 0;
590 int d_alloc = 10;
Doug Zongker28ce47c2011-10-28 10:33:05 -0700591 char** dirs = (char**)malloc(d_alloc * sizeof(char*));
Doug Zongker8674a722010-09-15 11:08:23 -0700592 int z_size = 1;
593 int z_alloc = 10;
Doug Zongker28ce47c2011-10-28 10:33:05 -0700594 char** zips = (char**)malloc(z_alloc * sizeof(char*));
Doug Zongker8674a722010-09-15 11:08:23 -0700595 zips[0] = strdup("../");
596
Elliott Hughes30694c92015-03-25 15:16:51 -0700597 struct dirent* de;
Doug Zongker8674a722010-09-15 11:08:23 -0700598 while ((de = readdir(d)) != NULL) {
599 int name_len = strlen(de->d_name);
600
601 if (de->d_type == DT_DIR) {
602 // skip "." and ".." entries
603 if (name_len == 1 && de->d_name[0] == '.') continue;
604 if (name_len == 2 && de->d_name[0] == '.' &&
605 de->d_name[1] == '.') continue;
606
607 if (d_size >= d_alloc) {
608 d_alloc *= 2;
Doug Zongker28ce47c2011-10-28 10:33:05 -0700609 dirs = (char**)realloc(dirs, d_alloc * sizeof(char*));
Doug Zongker8674a722010-09-15 11:08:23 -0700610 }
Doug Zongker28ce47c2011-10-28 10:33:05 -0700611 dirs[d_size] = (char*)malloc(name_len + 2);
Doug Zongker8674a722010-09-15 11:08:23 -0700612 strcpy(dirs[d_size], de->d_name);
613 dirs[d_size][name_len] = '/';
614 dirs[d_size][name_len+1] = '\0';
615 ++d_size;
616 } else if (de->d_type == DT_REG &&
617 name_len >= 4 &&
618 strncasecmp(de->d_name + (name_len-4), ".zip", 4) == 0) {
619 if (z_size >= z_alloc) {
620 z_alloc *= 2;
Doug Zongker28ce47c2011-10-28 10:33:05 -0700621 zips = (char**)realloc(zips, z_alloc * sizeof(char*));
Doug Zongker8674a722010-09-15 11:08:23 -0700622 }
623 zips[z_size++] = strdup(de->d_name);
624 }
625 }
626 closedir(d);
627
628 qsort(dirs, d_size, sizeof(char*), compare_string);
629 qsort(zips, z_size, sizeof(char*), compare_string);
630
631 // append dirs to the zips list
632 if (d_size + z_size + 1 > z_alloc) {
633 z_alloc = d_size + z_size + 1;
Doug Zongker28ce47c2011-10-28 10:33:05 -0700634 zips = (char**)realloc(zips, z_alloc * sizeof(char*));
Doug Zongker8674a722010-09-15 11:08:23 -0700635 }
636 memcpy(zips + z_size, dirs, d_size * sizeof(char*));
637 free(dirs);
638 z_size += d_size;
639 zips[z_size] = NULL;
640
Elliott Hughes30694c92015-03-25 15:16:51 -0700641 const char* headers[] = { "Choose a package to install:", path, "", NULL };
642
Doug Zongker93950222014-07-08 14:10:23 -0700643 char* result;
Doug Zongker8674a722010-09-15 11:08:23 -0700644 int chosen_item = 0;
Doug Zongker93950222014-07-08 14:10:23 -0700645 while (true) {
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700646 chosen_item = get_menu_selection(headers, zips, 1, chosen_item, device);
Doug Zongker8674a722010-09-15 11:08:23 -0700647
648 char* item = zips[chosen_item];
649 int item_len = strlen(item);
650 if (chosen_item == 0) { // item 0 is always "../"
Michael Ward9d2629c2011-06-23 22:14:24 -0700651 // go up but continue browsing (if the caller is update_directory)
Doug Zongker93950222014-07-08 14:10:23 -0700652 result = NULL;
Doug Zongker8674a722010-09-15 11:08:23 -0700653 break;
654 }
Doug Zongker93950222014-07-08 14:10:23 -0700655
656 char new_path[PATH_MAX];
657 strlcpy(new_path, path, PATH_MAX);
658 strlcat(new_path, "/", PATH_MAX);
659 strlcat(new_path, item, PATH_MAX);
660
661 if (item[item_len-1] == '/') {
662 // recurse down into a subdirectory
663 new_path[strlen(new_path)-1] = '\0'; // truncate the trailing '/'
664 result = browse_directory(new_path, device);
665 if (result) break;
666 } else {
667 // selected a zip file: return the malloc'd path to the caller.
668 result = strdup(new_path);
669 break;
670 }
671 }
Doug Zongker8674a722010-09-15 11:08:23 -0700672
Elliott Hughes30694c92015-03-25 15:16:51 -0700673 for (int i = 0; i < z_size; ++i) free(zips[i]);
Doug Zongker8674a722010-09-15 11:08:23 -0700674 free(zips);
Doug Zongker8674a722010-09-15 11:08:23 -0700675
676 return result;
677}
678
Elliott Hughes30694c92015-03-25 15:16:51 -0700679static bool yes_no(Device* device, const char* question1, const char* question2) {
680 const char* headers[] = { question1, question2, "", NULL };
681 const char* items[] = { " No", " Yes", NULL };
Doug Zongkerddd6a282009-06-09 12:22:33 -0700682
Elliott Hughes30694c92015-03-25 15:16:51 -0700683 int chosen_item = get_menu_selection(headers, items, 1, 0, device);
684 return (chosen_item == 1);
685}
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800686
Elliott Hughes30694c92015-03-25 15:16:51 -0700687static void wipe_data(int confirm, Device* device) {
688 if (confirm && !yes_no(device, "Wipe all user data?", " THIS CAN NOT BE UNDONE!")) {
689 return;
Doug Zongkerf93d8162009-09-22 15:16:02 -0700690 }
Doug Zongker1066d2c2009-04-01 13:57:40 -0700691
Doug Zongker211aebc2011-10-28 15:13:10 -0700692 ui->Print("\n-- Wiping data...\n");
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700693 device->WipeData();
Doug Zongkerd4208f92010-09-20 12:16:13 -0700694 erase_volume("/data");
695 erase_volume("/cache");
Andres Moralesee193872014-08-05 19:49:09 -0700696 erase_persistent_partition();
Doug Zongker211aebc2011-10-28 15:13:10 -0700697 ui->Print("Data wipe complete.\n");
Doug Zongkerf93d8162009-09-22 15:16:02 -0700698}
699
Elliott Hughes30694c92015-03-25 15:16:51 -0700700static void wipe_cache(bool should_confirm, Device* device) {
701 if (should_confirm && !yes_no(device, "Wipe cache?", " THIS CAN NOT BE UNDONE!")) {
702 return;
703 }
704
705 ui->Print("\n-- Wiping cache...\n");
706 erase_volume("/cache");
707 ui->Print("Cache wipe complete.\n");
708}
709
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700710static void file_to_ui(const char* fn) {
711 FILE *fp = fopen_path(fn, "re");
712 if (fp == NULL) {
713 ui->Print(" Unable to open %s: %s\n", fn, strerror(errno));
714 return;
715 }
716 char line[1024];
717 int ct = 0;
Patrick Tjinf59b9942014-12-09 12:42:42 -0800718 int key = 0;
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700719 redirect_stdio("/dev/null");
720 while(fgets(line, sizeof(line), fp) != NULL) {
721 ui->Print("%s", line);
722 ct++;
Patrick Tjinf59b9942014-12-09 12:42:42 -0800723 if (ct % LINES_PER_PAGE == 0) {
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700724 // give the user time to glance at the entries
Patrick Tjinf59b9942014-12-09 12:42:42 -0800725 key = ui->WaitKey();
726
727 if (key == KEY_POWER) {
728 break;
729 }
730
731 if (key == KEY_VOLUMEUP) {
732 // Go back by seeking to the beginning and dumping ct - n
733 // lines. It's ugly, but this way we don't need to store
734 // the previous offsets. The files we're dumping here aren't
735 // expected to be very large.
736 int i;
737
738 ct -= 2 * LINES_PER_PAGE;
739 if (ct < 0) {
740 ct = 0;
741 }
742 fseek(fp, 0, SEEK_SET);
743 for (i = 0; i < ct; i++) {
744 fgets(line, sizeof(line), fp);
745 }
746 ui->Print("^^^^^^^^^^\n");
747 }
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700748 }
749 }
Patrick Tjinf59b9942014-12-09 12:42:42 -0800750
751 // If the user didn't abort, then give the user time to glance at
752 // the end of the log, sorry, no rewind here
753 if (key != KEY_POWER) {
754 ui->Print("\n--END-- (press any key)\n");
755 ui->WaitKey();
756 }
757
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700758 redirect_stdio(TEMPORARY_LOG_FILE);
759 fclose(fp);
760}
761
762static void choose_recovery_file(Device* device) {
Patrick Tjincd055ee2014-12-09 11:26:40 -0800763 unsigned int i;
764 unsigned int n;
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700765 static const char** title_headers = NULL;
766 char *filename;
Patrick Tjincd055ee2014-12-09 11:26:40 -0800767 // "Go back" + LAST_KMSG_FILE + KEEP_LOG_COUNT + terminating NULL entry
768 char* entries[KEEP_LOG_COUNT + 3];
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700769 memset(entries, 0, sizeof(entries));
770
Patrick Tjincd055ee2014-12-09 11:26:40 -0800771 n = 0;
772 entries[n++] = strdup("Go back");
773
774 // Add kernel kmsg file if available
775 if ((ensure_path_mounted(LAST_KMSG_FILE) == 0) && (access(LAST_KMSG_FILE, R_OK) == 0)) {
776 entries[n++] = strdup(LAST_KMSG_FILE);
777 }
778
779 // Add LAST_LOG_FILE + LAST_LOG_FILE.x
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700780 for (i = 0; i < KEEP_LOG_COUNT; i++) {
781 char *filename;
782 if (asprintf(&filename, (i==0) ? LAST_LOG_FILE : (LAST_LOG_FILE ".%d"), i) == -1) {
783 // memory allocation failure - return early. Should never happen.
784 return;
785 }
786 if ((ensure_path_mounted(filename) != 0) || (access(filename, R_OK) == -1)) {
787 free(filename);
Patrick Tjincd055ee2014-12-09 11:26:40 -0800788 entries[n++] = NULL;
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700789 break;
790 }
Patrick Tjincd055ee2014-12-09 11:26:40 -0800791 entries[n++] = filename;
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700792 }
793
Elliott Hughes30694c92015-03-25 15:16:51 -0700794 const char* headers[] = { "Select file to view", "", NULL };
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700795
796 while(1) {
Elliott Hughes30694c92015-03-25 15:16:51 -0700797 int chosen_item = get_menu_selection(headers, entries, 1, 0, device);
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700798 if (chosen_item == 0) break;
799 file_to_ui(entries[chosen_item]);
800 }
801
Patrick Tjincd055ee2014-12-09 11:26:40 -0800802 for (i = 0; i < (sizeof(entries) / sizeof(*entries)); i++) {
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700803 free(entries[i]);
804 }
805}
806
Tao Bao145d8612015-03-25 15:51:15 -0700807static int apply_from_sdcard(Device* device, bool* wipe_cache) {
Christian Poetzsch4ec58a42015-02-19 10:42:39 +0000808 if (ensure_path_mounted(SDCARD_ROOT) != 0) {
809 ui->Print("\n-- Couldn't mount %s.\n", SDCARD_ROOT);
810 return INSTALL_ERROR;
811 }
812
813 char* path = browse_directory(SDCARD_ROOT, device);
814 if (path == NULL) {
815 ui->Print("\n-- No package file selected.\n", path);
816 return INSTALL_ERROR;
817 }
818
819 ui->Print("\n-- Install %s ...\n", path);
820 set_sdcard_update_bootloader_message();
821 void* token = start_sdcard_fuse(path);
822
823 int status = install_package(FUSE_SIDELOAD_HOST_PATHNAME, wipe_cache,
824 TEMPORARY_INSTALL_FILE, false);
825
826 finish_sdcard_fuse(token);
827 ensure_path_unmounted(SDCARD_ROOT);
828 return status;
829}
830
Doug Zongker8d9d3d52014-04-01 13:20:23 -0700831// Return REBOOT, SHUTDOWN, or REBOOT_BOOTLOADER. Returning NO_ACTION
832// means to take the default, which is to reboot or shutdown depending
833// on if the --shutdown_after flag was passed to recovery.
834static Device::BuiltinAction
Doug Zongker6c8553d2012-09-24 10:40:47 -0700835prompt_and_wait(Device* device, int status) {
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700836 const char* const* headers = prepend_title(device->GetMenuHeaders());
Doug Zongkerf93d8162009-09-22 15:16:02 -0700837
838 for (;;) {
839 finish_recovery(NULL);
Doug Zongker6c8553d2012-09-24 10:40:47 -0700840 switch (status) {
841 case INSTALL_SUCCESS:
842 case INSTALL_NONE:
843 ui->SetBackground(RecoveryUI::NO_COMMAND);
844 break;
845
846 case INSTALL_ERROR:
847 case INSTALL_CORRUPT:
848 ui->SetBackground(RecoveryUI::ERROR);
849 break;
850 }
Doug Zongker211aebc2011-10-28 15:13:10 -0700851 ui->SetProgressType(RecoveryUI::EMPTY);
Doug Zongkerf93d8162009-09-22 15:16:02 -0700852
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700853 int chosen_item = get_menu_selection(headers, device->GetMenuItems(), 0, 0, device);
Doug Zongkerf93d8162009-09-22 15:16:02 -0700854
855 // device-specific code may take some action here. It may
856 // return one of the core actions handled in the switch
857 // statement below.
Doug Zongker8d9d3d52014-04-01 13:20:23 -0700858 Device::BuiltinAction chosen_action = device->InvokeMenuItem(chosen_item);
Doug Zongkerf93d8162009-09-22 15:16:02 -0700859
Elliott Hughes30694c92015-03-25 15:16:51 -0700860 bool should_wipe_cache = false;
Doug Zongker8d9d3d52014-04-01 13:20:23 -0700861 switch (chosen_action) {
862 case Device::NO_ACTION:
863 break;
864
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700865 case Device::REBOOT:
Doug Zongker8d9d3d52014-04-01 13:20:23 -0700866 case Device::SHUTDOWN:
867 case Device::REBOOT_BOOTLOADER:
868 return chosen_action;
Doug Zongkerf93d8162009-09-22 15:16:02 -0700869
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700870 case Device::WIPE_DATA:
871 wipe_data(ui->IsTextVisible(), device);
Doug Zongker8d9d3d52014-04-01 13:20:23 -0700872 if (!ui->IsTextVisible()) return Device::NO_ACTION;
Doug Zongkerf93d8162009-09-22 15:16:02 -0700873 break;
874
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700875 case Device::WIPE_CACHE:
Elliott Hughes30694c92015-03-25 15:16:51 -0700876 wipe_cache(ui->IsTextVisible(), device);
Doug Zongker8d9d3d52014-04-01 13:20:23 -0700877 if (!ui->IsTextVisible()) return Device::NO_ACTION;
Doug Zongkerf93d8162009-09-22 15:16:02 -0700878 break;
879
Christian Poetzsch4ec58a42015-02-19 10:42:39 +0000880 case Device::APPLY_ADB_SIDELOAD:
881 case Device::APPLY_EXT:
882 {
883 bool adb = (chosen_action == Device::APPLY_ADB_SIDELOAD);
884 if (adb) {
Elliott Hughes30694c92015-03-25 15:16:51 -0700885 status = apply_from_adb(ui, &should_wipe_cache, TEMPORARY_INSTALL_FILE);
Doug Zongkerd0181b82011-10-19 10:51:12 -0700886 } else {
Elliott Hughes30694c92015-03-25 15:16:51 -0700887 status = apply_from_sdcard(device, &should_wipe_cache);
Doug Zongkerd0181b82011-10-19 10:51:12 -0700888 }
Doug Zongker945fc682014-07-10 10:50:39 -0700889
Elliott Hughes30694c92015-03-25 15:16:51 -0700890 if (status == INSTALL_SUCCESS && should_wipe_cache) {
891 wipe_cache(false, device);
Christian Poetzsch4ec58a42015-02-19 10:42:39 +0000892 }
893
894 if (status >= 0) {
895 if (status != INSTALL_SUCCESS) {
896 ui->SetBackground(RecoveryUI::ERROR);
897 ui->Print("Installation aborted.\n");
898 copy_logs();
899 } else if (!ui->IsTextVisible()) {
900 return Device::NO_ACTION; // reboot if logs aren't visible
901 } else {
902 ui->Print("\nInstall from %s complete.\n", adb ? "ADB" : "SD card");
903 }
Doug Zongker8674a722010-09-15 11:08:23 -0700904 }
Doug Zongkerf93d8162009-09-22 15:16:02 -0700905 }
906 break;
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700907
908 case Device::APPLY_CACHE:
Doug Zongker93950222014-07-08 14:10:23 -0700909 ui->Print("\nAPPLY_CACHE is deprecated.\n");
Michael Ward9d2629c2011-06-23 22:14:24 -0700910 break;
Doug Zongker9270a202012-01-09 15:16:13 -0800911
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700912 case Device::READ_RECOVERY_LASTLOG:
913 choose_recovery_file(device);
914 break;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800915 }
916 }
917}
918
919static void
Oscar Montemayor05231562009-11-30 08:40:57 -0800920print_property(const char *key, const char *name, void *cookie) {
Doug Zongker56c51052010-07-01 09:18:44 -0700921 printf("%s=%s\n", key, name);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800922}
923
Doug Zongker02ec6b82012-08-22 17:26:40 -0700924static void
925load_locale_from_cache() {
926 FILE* fp = fopen_path(LOCALE_FILE, "r");
927 char buffer[80];
928 if (fp != NULL) {
929 fgets(buffer, sizeof(buffer), fp);
930 int j = 0;
Doug Zongker5fa8c232012-09-18 12:37:02 -0700931 unsigned int i;
Doug Zongker02ec6b82012-08-22 17:26:40 -0700932 for (i = 0; i < sizeof(buffer) && buffer[i]; ++i) {
933 if (!isspace(buffer[i])) {
934 buffer[j++] = buffer[i];
935 }
936 }
937 buffer[j] = 0;
938 locale = strdup(buffer);
Devin Kim6016d082012-10-08 09:47:37 -0700939 check_and_fclose(fp, LOCALE_FILE);
Doug Zongker02ec6b82012-08-22 17:26:40 -0700940 }
941}
942
Doug Zongker7c3ae452013-05-14 11:03:02 -0700943static RecoveryUI* gCurrentUI = NULL;
944
945void
946ui_print(const char* format, ...) {
947 char buffer[256];
948
949 va_list ap;
950 va_start(ap, format);
951 vsnprintf(buffer, sizeof(buffer), format, ap);
952 va_end(ap);
953
954 if (gCurrentUI != NULL) {
955 gCurrentUI->Print("%s", buffer);
956 } else {
957 fputs(buffer, stdout);
958 }
959}
960
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800961int
Oscar Montemayor05231562009-11-30 08:40:57 -0800962main(int argc, char **argv) {
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800963 time_t start = time(NULL);
964
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700965 redirect_stdio(TEMPORARY_LOG_FILE);
Doug Zongker9270a202012-01-09 15:16:13 -0800966
967 // If this binary is started with the single argument "--adbd",
968 // instead of being the normal recovery binary, it turns into kind
969 // of a stripped-down version of adbd that only supports the
970 // 'sideload' command. Note this must be a real argument, not
971 // anything in the command file or bootloader control block; the
972 // only way recovery should be run with this argument is when it
973 // starts a copy of itself from the apply_from_adb() function.
974 if (argc == 2 && strcmp(argv[1], "--adbd") == 0) {
Dan Albertf3a57262015-02-19 13:21:14 -0800975 adb_main(0, DEFAULT_ADB_PORT);
Doug Zongker9270a202012-01-09 15:16:13 -0800976 return 0;
977 }
978
Doug Zongker19a8e242014-01-21 09:25:41 -0800979 printf("Starting recovery (pid %d) on %s", getpid(), ctime(&start));
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800980
Doug Zongkerd4208f92010-09-20 12:16:13 -0700981 load_volume_table();
Doug Zongkerda1ebae2013-05-16 11:23:48 -0700982 ensure_path_mounted(LAST_LOG_FILE);
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700983 rotate_last_logs(KEEP_LOG_COUNT);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800984 get_args(&argc, &argv);
985
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800986 const char *send_intent = NULL;
987 const char *update_package = NULL;
Tao Bao145d8612015-03-25 15:51:15 -0700988 bool wipe_data = false;
989 bool wipe_cache = false;
990 bool show_text = false;
Doug Zongkere5d5ac72012-04-12 11:01:22 -0700991 bool just_exit = false;
Doug Zongkerb1d12632014-03-18 10:32:12 -0700992 bool shutdown_after = false;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800993
994 int arg;
995 while ((arg = getopt_long(argc, argv, "", OPTIONS, NULL)) != -1) {
996 switch (arg) {
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800997 case 's': send_intent = optarg; break;
998 case 'u': update_package = optarg; break;
Tao Bao145d8612015-03-25 15:51:15 -0700999 case 'w': wipe_data = wipe_cache = true; break;
1000 case 'c': wipe_cache = true; break;
1001 case 't': show_text = true; break;
Doug Zongkere5d5ac72012-04-12 11:01:22 -07001002 case 'x': just_exit = true; break;
Doug Zongker02ec6b82012-08-22 17:26:40 -07001003 case 'l': locale = optarg; break;
Doug Zongkerc87bab12013-11-25 13:53:25 -08001004 case 'g': {
1005 if (stage == NULL || *stage == '\0') {
1006 char buffer[20] = "1/";
1007 strncat(buffer, optarg, sizeof(buffer)-3);
1008 stage = strdup(buffer);
1009 }
1010 break;
1011 }
Doug Zongkerb1d12632014-03-18 10:32:12 -07001012 case 'p': shutdown_after = true; break;
Jeff Sharkeya6e13ae2014-09-24 11:46:17 -07001013 case 'r': reason = optarg; break;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001014 case '?':
1015 LOGE("Invalid command argument\n");
1016 continue;
1017 }
1018 }
1019
Doug Zongker02ec6b82012-08-22 17:26:40 -07001020 if (locale == NULL) {
1021 load_locale_from_cache();
1022 }
1023 printf("locale is [%s]\n", locale);
Doug Zongker0d32f252014-02-13 15:07:56 -08001024 printf("stage is [%s]\n", stage);
Jeff Sharkeya6e13ae2014-09-24 11:46:17 -07001025 printf("reason is [%s]\n", reason);
Doug Zongker02ec6b82012-08-22 17:26:40 -07001026
1027 Device* device = make_device();
1028 ui = device->GetUI();
Doug Zongker7c3ae452013-05-14 11:03:02 -07001029 gCurrentUI = ui;
Doug Zongker02ec6b82012-08-22 17:26:40 -07001030
Doug Zongker5fa8c232012-09-18 12:37:02 -07001031 ui->SetLocale(locale);
Doug Zongker02ec6b82012-08-22 17:26:40 -07001032 ui->Init();
Doug Zongkerc87bab12013-11-25 13:53:25 -08001033
1034 int st_cur, st_max;
1035 if (stage != NULL && sscanf(stage, "%d/%d", &st_cur, &st_max) == 2) {
1036 ui->SetStage(st_cur, st_max);
1037 }
1038
Doug Zongker02ec6b82012-08-22 17:26:40 -07001039 ui->SetBackground(RecoveryUI::NONE);
1040 if (show_text) ui->ShowText(true);
1041
Stephen Smalley779701d2012-02-09 14:13:23 -05001042 struct selinux_opt seopts[] = {
1043 { SELABEL_OPT_PATH, "/file_contexts" }
1044 };
1045
1046 sehandle = selabel_open(SELABEL_CTX_FILE, seopts, 1);
1047
1048 if (!sehandle) {
Doug Zongkerfafc85b2013-07-09 12:29:45 -07001049 ui->Print("Warning: No file_contexts\n");
Stephen Smalley779701d2012-02-09 14:13:23 -05001050 }
Stephen Smalley779701d2012-02-09 14:13:23 -05001051
Doug Zongkerdaefc1d2011-10-31 09:34:15 -07001052 device->StartRecovery();
Doug Zongkerefa1bab2010-02-01 15:59:12 -08001053
Doug Zongker56c51052010-07-01 09:18:44 -07001054 printf("Command:");
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001055 for (arg = 0; arg < argc; arg++) {
Doug Zongker56c51052010-07-01 09:18:44 -07001056 printf(" \"%s\"", argv[arg]);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001057 }
Doug Zongker9b125b02010-09-22 12:01:37 -07001058 printf("\n");
1059
1060 if (update_package) {
1061 // For backwards compatibility on the cache partition only, if
1062 // we're given an old 'root' path "CACHE:foo", change it to
1063 // "/cache/foo".
1064 if (strncmp(update_package, "CACHE:", 6) == 0) {
1065 int len = strlen(update_package) + 10;
Doug Zongker28ce47c2011-10-28 10:33:05 -07001066 char* modified_path = (char*)malloc(len);
Doug Zongker9b125b02010-09-22 12:01:37 -07001067 strlcpy(modified_path, "/cache/", len);
1068 strlcat(modified_path, update_package+6, len);
1069 printf("(replacing path \"%s\" with \"%s\")\n",
1070 update_package, modified_path);
1071 update_package = modified_path;
1072 }
1073 }
1074 printf("\n");
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001075
1076 property_list(print_property, NULL);
Doug Zongkerc0441d12013-07-31 11:28:24 -07001077 property_get("ro.build.display.id", recovery_version, "");
Doug Zongker56c51052010-07-01 09:18:44 -07001078 printf("\n");
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001079
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001080 int status = INSTALL_SUCCESS;
1081
Doug Zongker540d57f2011-01-18 13:36:58 -08001082 if (update_package != NULL) {
Doug Zongker075ad802014-06-26 15:35:51 -07001083 status = install_package(update_package, &wipe_cache, TEMPORARY_INSTALL_FILE, true);
Doug Zongkerd0181b82011-10-19 10:51:12 -07001084 if (status == INSTALL_SUCCESS && wipe_cache) {
1085 if (erase_volume("/cache")) {
1086 LOGE("Cache wipe (requested by package) failed.");
1087 }
1088 }
Doug Zongker7c3ae452013-05-14 11:03:02 -07001089 if (status != INSTALL_SUCCESS) {
1090 ui->Print("Installation aborted.\n");
1091
1092 // If this is an eng or userdebug build, then automatically
1093 // turn the text display on if the script fails so the error
1094 // message is visible.
Elliott Hughesf14af802015-02-10 14:46:14 -08001095 if (is_ro_debuggable()) {
Doug Zongker7c3ae452013-05-14 11:03:02 -07001096 ui->ShowText(true);
1097 }
1098 }
Doug Zongkerb128f542009-06-18 15:07:14 -07001099 } else if (wipe_data) {
Doug Zongkerdaefc1d2011-10-31 09:34:15 -07001100 if (device->WipeData()) status = INSTALL_ERROR;
Doug Zongkerd4208f92010-09-20 12:16:13 -07001101 if (erase_volume("/data")) status = INSTALL_ERROR;
1102 if (wipe_cache && erase_volume("/cache")) status = INSTALL_ERROR;
Andres Moralesee193872014-08-05 19:49:09 -07001103 if (erase_persistent_partition() == -1 ) status = INSTALL_ERROR;
Doug Zongker211aebc2011-10-28 15:13:10 -07001104 if (status != INSTALL_SUCCESS) ui->Print("Data wipe failed.\n");
Doug Zongkerb128f542009-06-18 15:07:14 -07001105 } else if (wipe_cache) {
Doug Zongkerd4208f92010-09-20 12:16:13 -07001106 if (wipe_cache && erase_volume("/cache")) status = INSTALL_ERROR;
Doug Zongker211aebc2011-10-28 15:13:10 -07001107 if (status != INSTALL_SUCCESS) ui->Print("Cache wipe failed.\n");
Doug Zongkere5d5ac72012-04-12 11:01:22 -07001108 } else if (!just_exit) {
Doug Zongker02ec6b82012-08-22 17:26:40 -07001109 status = INSTALL_NONE; // No command specified
1110 ui->SetBackground(RecoveryUI::NO_COMMAND);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001111 }
1112
Doug Zongker02ec6b82012-08-22 17:26:40 -07001113 if (status == INSTALL_ERROR || status == INSTALL_CORRUPT) {
Doug Zongkerf24fd7e2013-07-02 11:43:25 -07001114 copy_logs();
Doug Zongker02ec6b82012-08-22 17:26:40 -07001115 ui->SetBackground(RecoveryUI::ERROR);
1116 }
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001117 Device::BuiltinAction after = shutdown_after ? Device::SHUTDOWN : Device::REBOOT;
Doug Zongker211aebc2011-10-28 15:13:10 -07001118 if (status != INSTALL_SUCCESS || ui->IsTextVisible()) {
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001119 Device::BuiltinAction temp = prompt_and_wait(device, status);
1120 if (temp != Device::NO_ACTION) after = temp;
Doug Zongker8674a722010-09-15 11:08:23 -07001121 }
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001122
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001123 // Save logs and clean up before rebooting or shutting down.
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001124 finish_recovery(send_intent);
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001125
1126 switch (after) {
1127 case Device::SHUTDOWN:
1128 ui->Print("Shutting down...\n");
1129 property_set(ANDROID_RB_PROPERTY, "shutdown,");
1130 break;
1131
1132 case Device::REBOOT_BOOTLOADER:
1133 ui->Print("Rebooting to bootloader...\n");
1134 property_set(ANDROID_RB_PROPERTY, "reboot,bootloader");
1135 break;
1136
1137 default:
1138 ui->Print("Rebooting...\n");
1139 property_set(ANDROID_RB_PROPERTY, "reboot,");
1140 break;
Doug Zongkerb1d12632014-03-18 10:32:12 -07001141 }
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001142 sleep(5); // should reboot before this finishes
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001143 return EXIT_SUCCESS;
1144}