blob: a390c8afb48a03c23058a8b7ccdb0a12fe4d9732 [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[] = {
Tao Baoc679f932015-03-30 09:43:49 -070055 { "send_intent", required_argument, NULL, 'i' },
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080056 { "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' },
Tao Baoc679f932015-03-30 09:43:49 -070060 { "sideload", no_argument, NULL, 's' },
61 { "sideload_auto_reboot", no_argument, NULL, 'a' },
Doug Zongkere5d5ac72012-04-12 11:01:22 -070062 { "just_exit", no_argument, NULL, 'x' },
Doug Zongker02ec6b82012-08-22 17:26:40 -070063 { "locale", required_argument, NULL, 'l' },
Doug Zongkerc87bab12013-11-25 13:53:25 -080064 { "stages", required_argument, NULL, 'g' },
Doug Zongkerb1d12632014-03-18 10:32:12 -070065 { "shutdown_after", no_argument, NULL, 'p' },
Jeff Sharkeya6e13ae2014-09-24 11:46:17 -070066 { "reason", required_argument, NULL, 'r' },
Doug Zongker988500b2009-10-06 14:41:38 -070067 { NULL, 0, NULL, 0 },
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080068};
69
Doug Zongkerda1ebae2013-05-16 11:23:48 -070070#define LAST_LOG_FILE "/cache/recovery/last_log"
71
Doug Zongker6d0d7ac2013-07-09 13:34:55 -070072static const char *CACHE_LOG_DIR = "/cache/recovery";
Doug Zongkerd4208f92010-09-20 12:16:13 -070073static const char *COMMAND_FILE = "/cache/recovery/command";
74static const char *INTENT_FILE = "/cache/recovery/intent";
75static const char *LOG_FILE = "/cache/recovery/log";
Doug Zongkerd0181b82011-10-19 10:51:12 -070076static const char *LAST_INSTALL_FILE = "/cache/recovery/last_install";
Doug Zongker8b240cc2012-08-29 15:19:29 -070077static const char *LOCALE_FILE = "/cache/recovery/last_locale";
Michael Ward9d2629c2011-06-23 22:14:24 -070078static const char *CACHE_ROOT = "/cache";
Doug Zongkerd4208f92010-09-20 12:16:13 -070079static const char *SDCARD_ROOT = "/sdcard";
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080080static const char *TEMPORARY_LOG_FILE = "/tmp/recovery.log";
Doug Zongkerd0181b82011-10-19 10:51:12 -070081static const char *TEMPORARY_INSTALL_FILE = "/tmp/last_install";
Patrick Tjincd055ee2014-12-09 11:26:40 -080082static const char *LAST_KMSG_FILE = "/cache/recovery/last_kmsg";
83#define KLOG_DEFAULT_LEN (64 * 1024)
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080084
Nick Kralevicha9ad0322014-10-22 18:38:48 -070085#define KEEP_LOG_COUNT 10
86
Patrick Tjinf59b9942014-12-09 12:42:42 -080087// Number of lines per page when displaying a file on screen
88#define LINES_PER_PAGE 30
89
Doug Zongker211aebc2011-10-28 15:13:10 -070090RecoveryUI* ui = NULL;
Doug Zongker02ec6b82012-08-22 17:26:40 -070091char* locale = NULL;
Doug Zongkerc0441d12013-07-31 11:28:24 -070092char recovery_version[PROPERTY_VALUE_MAX+1];
Doug Zongkerc87bab12013-11-25 13:53:25 -080093char* stage = NULL;
Jeff Sharkeya6e13ae2014-09-24 11:46:17 -070094char* reason = NULL;
Doug Zongker211aebc2011-10-28 15:13:10 -070095
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080096/*
97 * The recovery tool communicates with the main system through /cache files.
98 * /cache/recovery/command - INPUT - command line for tool, one arg per line
99 * /cache/recovery/log - OUTPUT - combined log file from recovery run(s)
100 * /cache/recovery/intent - OUTPUT - intent that was passed in
101 *
102 * The arguments which may be supplied in the recovery.command file:
103 * --send_intent=anystring - write the text out to recovery.intent
Doug Zongkerd4208f92010-09-20 12:16:13 -0700104 * --update_package=path - verify install an OTA package file
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800105 * --wipe_data - erase user data (and cache), then reboot
106 * --wipe_cache - wipe cache (but not user data), then reboot
Oscar Montemayor05231562009-11-30 08:40:57 -0800107 * --set_encrypted_filesystem=on|off - enables / diasables encrypted fs
Doug Zongkere5d5ac72012-04-12 11:01:22 -0700108 * --just_exit - do nothing; exit and reboot
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800109 *
110 * After completing, we remove /cache/recovery/command and reboot.
111 * Arguments may also be supplied in the bootloader control block (BCB).
112 * These important scenarios must be safely restartable at any point:
113 *
114 * FACTORY RESET
115 * 1. user selects "factory reset"
116 * 2. main system writes "--wipe_data" to /cache/recovery/command
117 * 3. main system reboots into recovery
118 * 4. get_args() writes BCB with "boot-recovery" and "--wipe_data"
119 * -- after this, rebooting will restart the erase --
Doug Zongkerd4208f92010-09-20 12:16:13 -0700120 * 5. erase_volume() reformats /data
121 * 6. erase_volume() reformats /cache
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800122 * 7. finish_recovery() erases BCB
123 * -- after this, rebooting will restart the main system --
124 * 8. main() calls reboot() to boot main system
125 *
126 * OTA INSTALL
127 * 1. main system downloads OTA package to /cache/some-filename.zip
Doug Zongker9b125b02010-09-22 12:01:37 -0700128 * 2. main system writes "--update_package=/cache/some-filename.zip"
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800129 * 3. main system reboots into recovery
130 * 4. get_args() writes BCB with "boot-recovery" and "--update_package=..."
131 * -- after this, rebooting will attempt to reinstall the update --
132 * 5. install_package() attempts to install the update
133 * NOTE: the package install must itself be restartable from any point
134 * 6. finish_recovery() erases BCB
135 * -- after this, rebooting will (try to) restart the main system --
136 * 7. ** if install failed **
137 * 7a. prompt_and_wait() shows an error icon and waits for the user
138 * 7b; the user reboots (pulling the battery, etc) into the main system
139 * 8. main() calls maybe_install_firmware_update()
140 * ** if the update contained radio/hboot firmware **:
141 * 8a. m_i_f_u() writes BCB with "boot-recovery" and "--wipe_cache"
142 * -- after this, rebooting will reformat cache & restart main system --
143 * 8b. m_i_f_u() writes firmware image into raw cache partition
144 * 8c. m_i_f_u() writes BCB with "update-radio/hboot" and "--wipe_cache"
145 * -- after this, rebooting will attempt to reinstall firmware --
146 * 8d. bootloader tries to flash firmware
147 * 8e. bootloader writes BCB with "boot-recovery" (keeping "--wipe_cache")
148 * -- after this, rebooting will reformat cache & restart main system --
Doug Zongkerd4208f92010-09-20 12:16:13 -0700149 * 8f. erase_volume() reformats /cache
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800150 * 8g. finish_recovery() erases BCB
151 * -- after this, rebooting will (try to) restart the main system --
152 * 9. main() calls reboot() to boot main system
153 */
154
155static const int MAX_ARG_LENGTH = 4096;
156static const int MAX_ARGS = 100;
157
Doug Zongkerd4208f92010-09-20 12:16:13 -0700158// open a given path, mounting partitions as necessary
Doug Zongker469243e2011-04-12 09:28:10 -0700159FILE*
Doug Zongkerd4208f92010-09-20 12:16:13 -0700160fopen_path(const char *path, const char *mode) {
161 if (ensure_path_mounted(path) != 0) {
162 LOGE("Can't mount %s\n", path);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800163 return NULL;
164 }
165
166 // When writing, try to create the containing directory, if necessary.
167 // Use generous permissions, the system (init.rc) will reset them.
Stephen Smalley779701d2012-02-09 14:13:23 -0500168 if (strchr("wa", mode[0])) dirCreateHierarchy(path, 0777, NULL, 1, sehandle);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800169
170 FILE *fp = fopen(path, mode);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800171 return fp;
172}
173
Elliott Hughesf14af802015-02-10 14:46:14 -0800174bool is_ro_debuggable() {
175 char value[PROPERTY_VALUE_MAX+1];
176 return (property_get("ro.debuggable", value, NULL) == 1 && value[0] == '1');
177}
178
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700179static void redirect_stdio(const char* filename) {
180 // If these fail, there's not really anywhere to complain...
181 freopen(filename, "a", stdout); setbuf(stdout, NULL);
182 freopen(filename, "a", stderr); setbuf(stderr, NULL);
183}
184
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800185// close a file, log an error if the error indicator is set
186static void
187check_and_fclose(FILE *fp, const char *name) {
188 fflush(fp);
189 if (ferror(fp)) LOGE("Error in %s\n(%s)\n", name, strerror(errno));
190 fclose(fp);
191}
192
193// command line args come from, in decreasing precedence:
194// - the actual command line
195// - the bootloader control block (one per line, after "recovery")
196// - the contents of COMMAND_FILE (one per line)
197static void
198get_args(int *argc, char ***argv) {
199 struct bootloader_message boot;
200 memset(&boot, 0, sizeof(boot));
201 get_bootloader_message(&boot); // this may fail, leaving a zeroed structure
Doug Zongkerc87bab12013-11-25 13:53:25 -0800202 stage = strndup(boot.stage, sizeof(boot.stage));
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800203
204 if (boot.command[0] != 0 && boot.command[0] != 255) {
Mark Salyzynf3bb31c2014-03-14 09:39:48 -0700205 LOGI("Boot command: %.*s\n", (int)sizeof(boot.command), boot.command);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800206 }
207
208 if (boot.status[0] != 0 && boot.status[0] != 255) {
Mark Salyzynf3bb31c2014-03-14 09:39:48 -0700209 LOGI("Boot status: %.*s\n", (int)sizeof(boot.status), boot.status);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800210 }
211
212 // --- if arguments weren't supplied, look in the bootloader control block
213 if (*argc <= 1) {
214 boot.recovery[sizeof(boot.recovery) - 1] = '\0'; // Ensure termination
215 const char *arg = strtok(boot.recovery, "\n");
216 if (arg != NULL && !strcmp(arg, "recovery")) {
217 *argv = (char **) malloc(sizeof(char *) * MAX_ARGS);
218 (*argv)[0] = strdup(arg);
219 for (*argc = 1; *argc < MAX_ARGS; ++*argc) {
220 if ((arg = strtok(NULL, "\n")) == NULL) break;
221 (*argv)[*argc] = strdup(arg);
222 }
223 LOGI("Got arguments from boot message\n");
224 } else if (boot.recovery[0] != 0 && boot.recovery[0] != 255) {
225 LOGE("Bad boot message\n\"%.20s\"\n", boot.recovery);
226 }
227 }
228
229 // --- if that doesn't work, try the command file
230 if (*argc <= 1) {
Doug Zongkerd4208f92010-09-20 12:16:13 -0700231 FILE *fp = fopen_path(COMMAND_FILE, "r");
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800232 if (fp != NULL) {
Jin Feng93ffa752013-06-04 17:46:24 +0800233 char *token;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800234 char *argv0 = (*argv)[0];
235 *argv = (char **) malloc(sizeof(char *) * MAX_ARGS);
236 (*argv)[0] = argv0; // use the same program name
237
238 char buf[MAX_ARG_LENGTH];
239 for (*argc = 1; *argc < MAX_ARGS; ++*argc) {
240 if (!fgets(buf, sizeof(buf), fp)) break;
Jin Feng93ffa752013-06-04 17:46:24 +0800241 token = strtok(buf, "\r\n");
242 if (token != NULL) {
243 (*argv)[*argc] = strdup(token); // Strip newline.
244 } else {
245 --*argc;
246 }
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800247 }
248
249 check_and_fclose(fp, COMMAND_FILE);
250 LOGI("Got arguments from %s\n", COMMAND_FILE);
251 }
252 }
253
254 // --> write the arguments we have back into the bootloader control block
255 // always boot into recovery after this (until finish_recovery() is called)
256 strlcpy(boot.command, "boot-recovery", sizeof(boot.command));
257 strlcpy(boot.recovery, "recovery\n", sizeof(boot.recovery));
258 int i;
259 for (i = 1; i < *argc; ++i) {
260 strlcat(boot.recovery, (*argv)[i], sizeof(boot.recovery));
261 strlcat(boot.recovery, "\n", sizeof(boot.recovery));
262 }
263 set_bootloader_message(&boot);
264}
265
Doug Zongker34c98df2009-08-18 12:05:45 -0700266static void
Oscar Montemayor05231562009-11-30 08:40:57 -0800267set_sdcard_update_bootloader_message() {
Doug Zongker34c98df2009-08-18 12:05:45 -0700268 struct bootloader_message boot;
269 memset(&boot, 0, sizeof(boot));
270 strlcpy(boot.command, "boot-recovery", sizeof(boot.command));
271 strlcpy(boot.recovery, "recovery\n", sizeof(boot.recovery));
272 set_bootloader_message(&boot);
273}
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800274
Patrick Tjincd055ee2014-12-09 11:26:40 -0800275// read from kernel log into buffer and write out to file
276static void
277save_kernel_log(const char *destination) {
278 int n;
279 char *buffer;
280 int klog_buf_len;
281 FILE *log;
282
283 klog_buf_len = klogctl(KLOG_SIZE_BUFFER, 0, 0);
284 if (klog_buf_len <= 0) {
285 LOGE("Error getting klog size (%s), using default\n", strerror(errno));
286 klog_buf_len = KLOG_DEFAULT_LEN;
287 }
288
289 buffer = (char *)malloc(klog_buf_len);
290 if (!buffer) {
291 LOGE("Can't alloc %d bytes for klog buffer\n", klog_buf_len);
292 return;
293 }
294
295 n = klogctl(KLOG_READ_ALL, buffer, klog_buf_len);
296 if (n < 0) {
297 LOGE("Error in reading klog (%s)\n", strerror(errno));
298 free(buffer);
299 return;
300 }
301
302 log = fopen_path(destination, "w");
303 if (log == NULL) {
304 LOGE("Can't open %s\n", destination);
305 free(buffer);
306 return;
307 }
308 fwrite(buffer, n, 1, log);
309 check_and_fclose(log, destination);
310 free(buffer);
311}
312
Doug Zongker2c3539e2010-09-29 13:21:30 -0700313// How much of the temp log we have copied to the copy in cache.
314static long tmplog_offset = 0;
315
316static void
Doug Zongkerd0181b82011-10-19 10:51:12 -0700317copy_log_file(const char* source, const char* destination, int append) {
Doug Zongker2c3539e2010-09-29 13:21:30 -0700318 FILE *log = fopen_path(destination, append ? "a" : "w");
319 if (log == NULL) {
320 LOGE("Can't open %s\n", destination);
321 } else {
Doug Zongkerd0181b82011-10-19 10:51:12 -0700322 FILE *tmplog = fopen(source, "r");
323 if (tmplog != NULL) {
Doug Zongker2c3539e2010-09-29 13:21:30 -0700324 if (append) {
325 fseek(tmplog, tmplog_offset, SEEK_SET); // Since last write
326 }
327 char buf[4096];
328 while (fgets(buf, sizeof(buf), tmplog)) fputs(buf, log);
329 if (append) {
330 tmplog_offset = ftell(tmplog);
331 }
Doug Zongkerd0181b82011-10-19 10:51:12 -0700332 check_and_fclose(tmplog, source);
Doug Zongker2c3539e2010-09-29 13:21:30 -0700333 }
334 check_and_fclose(log, destination);
335 }
336}
337
Doug Zongkerda1ebae2013-05-16 11:23:48 -0700338// Rename last_log -> last_log.1 -> last_log.2 -> ... -> last_log.$max
339// Overwrites any existing last_log.$max.
340static void
341rotate_last_logs(int max) {
342 char oldfn[256];
343 char newfn[256];
344
345 int i;
346 for (i = max-1; i >= 0; --i) {
347 snprintf(oldfn, sizeof(oldfn), (i==0) ? LAST_LOG_FILE : (LAST_LOG_FILE ".%d"), i);
348 snprintf(newfn, sizeof(newfn), LAST_LOG_FILE ".%d", i+1);
349 // ignore errors
350 rename(oldfn, newfn);
351 }
352}
Doug Zongker2c3539e2010-09-29 13:21:30 -0700353
Doug Zongkerf24fd7e2013-07-02 11:43:25 -0700354static void
355copy_logs() {
356 // Copy logs to cache so the system can find out what happened.
357 copy_log_file(TEMPORARY_LOG_FILE, LOG_FILE, true);
358 copy_log_file(TEMPORARY_LOG_FILE, LAST_LOG_FILE, false);
359 copy_log_file(TEMPORARY_INSTALL_FILE, LAST_INSTALL_FILE, false);
Patrick Tjincd055ee2014-12-09 11:26:40 -0800360 save_kernel_log(LAST_KMSG_FILE);
Doug Zongkerf24fd7e2013-07-02 11:43:25 -0700361 chmod(LOG_FILE, 0600);
362 chown(LOG_FILE, 1000, 1000); // system user
Patrick Tjincd055ee2014-12-09 11:26:40 -0800363 chmod(LAST_KMSG_FILE, 0600);
364 chown(LAST_KMSG_FILE, 1000, 1000); // system user
Doug Zongkerf24fd7e2013-07-02 11:43:25 -0700365 chmod(LAST_LOG_FILE, 0640);
366 chmod(LAST_INSTALL_FILE, 0644);
367 sync();
368}
369
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800370// clear the recovery command and prepare to boot a (hopefully working) system,
371// copy our log file to cache as well (for the system to read), and
372// record any intent we were asked to communicate back to the system.
373// this function is idempotent: call it as many times as you like.
374static void
Oscar Montemayor05231562009-11-30 08:40:57 -0800375finish_recovery(const char *send_intent) {
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800376 // By this point, we're ready to return to the main system...
377 if (send_intent != NULL) {
Doug Zongkerd4208f92010-09-20 12:16:13 -0700378 FILE *fp = fopen_path(INTENT_FILE, "w");
Jay Freeman (saurik)619ec2f2008-11-17 01:56:05 +0000379 if (fp == NULL) {
380 LOGE("Can't open %s\n", INTENT_FILE);
381 } else {
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800382 fputs(send_intent, fp);
383 check_and_fclose(fp, INTENT_FILE);
384 }
385 }
386
Doug Zongker4f33e552012-08-23 13:16:12 -0700387 // Save the locale to cache, so if recovery is next started up
388 // without a --locale argument (eg, directly from the bootloader)
389 // it will use the last-known locale.
390 if (locale != NULL) {
391 LOGI("Saving locale \"%s\"\n", locale);
392 FILE* fp = fopen_path(LOCALE_FILE, "w");
393 fwrite(locale, 1, strlen(locale), fp);
394 fflush(fp);
395 fsync(fileno(fp));
396 check_and_fclose(fp, LOCALE_FILE);
397 }
398
Doug Zongkerf24fd7e2013-07-02 11:43:25 -0700399 copy_logs();
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800400
Doug Zongkere5d5ac72012-04-12 11:01:22 -0700401 // Reset to normal system boot so recovery won't cycle indefinitely.
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800402 struct bootloader_message boot;
403 memset(&boot, 0, sizeof(boot));
404 set_bootloader_message(&boot);
405
406 // Remove the command file, so recovery won't repeat indefinitely.
Doug Zongkerd4208f92010-09-20 12:16:13 -0700407 if (ensure_path_mounted(COMMAND_FILE) != 0 ||
408 (unlink(COMMAND_FILE) && errno != ENOENT)) {
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800409 LOGW("Can't unlink %s\n", COMMAND_FILE);
410 }
411
Doug Zongkerd0181b82011-10-19 10:51:12 -0700412 ensure_path_unmounted(CACHE_ROOT);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800413 sync(); // For good measure.
414}
415
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700416typedef struct _saved_log_file {
417 char* name;
418 struct stat st;
419 unsigned char* data;
420 struct _saved_log_file* next;
421} saved_log_file;
422
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800423static int
Doug Zongkerd4208f92010-09-20 12:16:13 -0700424erase_volume(const char *volume) {
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700425 bool is_cache = (strcmp(volume, CACHE_ROOT) == 0);
426
Doug Zongker02ec6b82012-08-22 17:26:40 -0700427 ui->SetBackground(RecoveryUI::ERASING);
Doug Zongker211aebc2011-10-28 15:13:10 -0700428 ui->SetProgressType(RecoveryUI::INDETERMINATE);
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700429
430 saved_log_file* head = NULL;
431
432 if (is_cache) {
433 // If we're reformatting /cache, we load any
434 // "/cache/recovery/last*" files into memory, so we can restore
435 // them after the reformat.
436
437 ensure_path_mounted(volume);
438
439 DIR* d;
440 struct dirent* de;
441 d = opendir(CACHE_LOG_DIR);
442 if (d) {
443 char path[PATH_MAX];
444 strcpy(path, CACHE_LOG_DIR);
445 strcat(path, "/");
446 int path_len = strlen(path);
447 while ((de = readdir(d)) != NULL) {
448 if (strncmp(de->d_name, "last", 4) == 0) {
449 saved_log_file* p = (saved_log_file*) malloc(sizeof(saved_log_file));
450 strcpy(path+path_len, de->d_name);
451 p->name = strdup(path);
452 if (stat(path, &(p->st)) == 0) {
453 // truncate files to 512kb
454 if (p->st.st_size > (1 << 19)) {
455 p->st.st_size = 1 << 19;
456 }
457 p->data = (unsigned char*) malloc(p->st.st_size);
458 FILE* f = fopen(path, "rb");
459 fread(p->data, 1, p->st.st_size, f);
460 fclose(f);
461 p->next = head;
462 head = p;
463 } else {
464 free(p);
465 }
466 }
467 }
468 closedir(d);
469 } else {
470 if (errno != ENOENT) {
471 printf("opendir failed: %s\n", strerror(errno));
472 }
473 }
474 }
475
Doug Zongker211aebc2011-10-28 15:13:10 -0700476 ui->Print("Formatting %s...\n", volume);
Doug Zongker2c3539e2010-09-29 13:21:30 -0700477
Doug Zongkerd0181b82011-10-19 10:51:12 -0700478 ensure_path_unmounted(volume);
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700479 int result = format_volume(volume);
Doug Zongkerd0181b82011-10-19 10:51:12 -0700480
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700481 if (is_cache) {
482 while (head) {
483 FILE* f = fopen_path(head->name, "wb");
484 if (f) {
485 fwrite(head->data, 1, head->st.st_size, f);
486 fclose(f);
487 chmod(head->name, head->st.st_mode);
488 chown(head->name, head->st.st_uid, head->st.st_gid);
489 }
490 free(head->name);
491 free(head->data);
492 saved_log_file* temp = head->next;
493 free(head);
494 head = temp;
495 }
496
Doug Zongker2c3539e2010-09-29 13:21:30 -0700497 // Any part of the log we'd copied to cache is now gone.
498 // Reset the pointer so we copy from the beginning of the temp
499 // log.
500 tmplog_offset = 0;
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700501 copy_logs();
Doug Zongker2c3539e2010-09-29 13:21:30 -0700502 }
503
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700504 return result;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800505}
506
Elliott Hughes30694c92015-03-25 15:16:51 -0700507static const char** prepend_title(const char* const* headers) {
Doug Zongkerd6837852009-06-17 22:07:13 -0700508 // count the number of lines in our title, plus the
Doug Zongkerf93d8162009-09-22 15:16:02 -0700509 // caller-provided headers.
Doug Zongkerc0441d12013-07-31 11:28:24 -0700510 int count = 3; // our title has 3 lines
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700511 const char* const* p;
Doug Zongkerf93d8162009-09-22 15:16:02 -0700512 for (p = headers; *p; ++p, ++count);
Doug Zongkerd6837852009-06-17 22:07:13 -0700513
Doug Zongker28ce47c2011-10-28 10:33:05 -0700514 const char** new_headers = (const char**)malloc((count+1) * sizeof(char*));
515 const char** h = new_headers;
Elliott Hughesc51ac892015-03-20 18:22:15 -0700516 *(h++) = "Android system recovery (API " EXPAND(RECOVERY_API_VERSION) ")";
Doug Zongkerc0441d12013-07-31 11:28:24 -0700517 *(h++) = recovery_version;
518 *(h++) = "";
Doug Zongkerf93d8162009-09-22 15:16:02 -0700519 for (p = headers; *p; ++p, ++h) *h = *p;
Doug Zongkerd6837852009-06-17 22:07:13 -0700520 *h = NULL;
521
Doug Zongkerf93d8162009-09-22 15:16:02 -0700522 return new_headers;
523}
524
525static int
Doug Zongker28ce47c2011-10-28 10:33:05 -0700526get_menu_selection(const char* const * headers, const char* const * items,
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700527 int menu_only, int initial_selection, Device* device) {
Doug Zongkerf93d8162009-09-22 15:16:02 -0700528 // throw away keys pressed previously, so user doesn't
529 // accidentally trigger menu items.
Doug Zongker211aebc2011-10-28 15:13:10 -0700530 ui->FlushKeys();
Doug Zongkerf93d8162009-09-22 15:16:02 -0700531
Doug Zongker211aebc2011-10-28 15:13:10 -0700532 ui->StartMenu(headers, items, initial_selection);
Doug Zongker8674a722010-09-15 11:08:23 -0700533 int selected = initial_selection;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800534 int chosen_item = -1;
535
Doug Zongkerf93d8162009-09-22 15:16:02 -0700536 while (chosen_item < 0) {
Doug Zongker211aebc2011-10-28 15:13:10 -0700537 int key = ui->WaitKey();
538 int visible = ui->IsTextVisible();
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800539
Doug Zongker5cae4452011-01-25 13:15:30 -0800540 if (key == -1) { // ui_wait_key() timed out
Doug Zongker211aebc2011-10-28 15:13:10 -0700541 if (ui->WasTextEverVisible()) {
Doug Zongker5cae4452011-01-25 13:15:30 -0800542 continue;
543 } else {
544 LOGI("timed out waiting for key input; rebooting.\n");
Doug Zongker211aebc2011-10-28 15:13:10 -0700545 ui->EndMenu();
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700546 return 0; // XXX fixme
Doug Zongker5cae4452011-01-25 13:15:30 -0800547 }
548 }
549
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700550 int action = device->HandleMenuKey(key, visible);
Doug Zongkerddd6a282009-06-09 12:22:33 -0700551
552 if (action < 0) {
553 switch (action) {
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700554 case Device::kHighlightUp:
Doug Zongkerddd6a282009-06-09 12:22:33 -0700555 --selected;
Doug Zongker211aebc2011-10-28 15:13:10 -0700556 selected = ui->SelectMenu(selected);
Doug Zongkerddd6a282009-06-09 12:22:33 -0700557 break;
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700558 case Device::kHighlightDown:
Doug Zongkerddd6a282009-06-09 12:22:33 -0700559 ++selected;
Doug Zongker211aebc2011-10-28 15:13:10 -0700560 selected = ui->SelectMenu(selected);
Doug Zongkerddd6a282009-06-09 12:22:33 -0700561 break;
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700562 case Device::kInvokeItem:
Doug Zongkerddd6a282009-06-09 12:22:33 -0700563 chosen_item = selected;
564 break;
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700565 case Device::kNoAction:
Doug Zongkerddd6a282009-06-09 12:22:33 -0700566 break;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800567 }
Doug Zongkerf93d8162009-09-22 15:16:02 -0700568 } else if (!menu_only) {
Doug Zongkerddd6a282009-06-09 12:22:33 -0700569 chosen_item = action;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800570 }
Doug Zongkerf93d8162009-09-22 15:16:02 -0700571 }
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800572
Doug Zongker211aebc2011-10-28 15:13:10 -0700573 ui->EndMenu();
Doug Zongkerf93d8162009-09-22 15:16:02 -0700574 return chosen_item;
575}
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800576
Doug Zongker8674a722010-09-15 11:08:23 -0700577static int compare_string(const void* a, const void* b) {
578 return strcmp(*(const char**)a, *(const char**)b);
579}
580
Doug Zongker93950222014-07-08 14:10:23 -0700581// Returns a malloc'd path, or NULL.
Elliott Hughes30694c92015-03-25 15:16:51 -0700582static char* browse_directory(const char* path, Device* device) {
Michael Ward9d2629c2011-06-23 22:14:24 -0700583 ensure_path_mounted(path);
Doug Zongkerc18eeb82010-09-21 16:49:26 -0700584
Elliott Hughes30694c92015-03-25 15:16:51 -0700585 DIR* d = opendir(path);
Doug Zongker8674a722010-09-15 11:08:23 -0700586 if (d == NULL) {
587 LOGE("error opening %s: %s\n", path, strerror(errno));
Doug Zongker93950222014-07-08 14:10:23 -0700588 return NULL;
Doug Zongker8674a722010-09-15 11:08:23 -0700589 }
590
Doug Zongker8674a722010-09-15 11:08:23 -0700591 int d_size = 0;
592 int d_alloc = 10;
Doug Zongker28ce47c2011-10-28 10:33:05 -0700593 char** dirs = (char**)malloc(d_alloc * sizeof(char*));
Doug Zongker8674a722010-09-15 11:08:23 -0700594 int z_size = 1;
595 int z_alloc = 10;
Doug Zongker28ce47c2011-10-28 10:33:05 -0700596 char** zips = (char**)malloc(z_alloc * sizeof(char*));
Doug Zongker8674a722010-09-15 11:08:23 -0700597 zips[0] = strdup("../");
598
Elliott Hughes30694c92015-03-25 15:16:51 -0700599 struct dirent* de;
Doug Zongker8674a722010-09-15 11:08:23 -0700600 while ((de = readdir(d)) != NULL) {
601 int name_len = strlen(de->d_name);
602
603 if (de->d_type == DT_DIR) {
604 // skip "." and ".." entries
605 if (name_len == 1 && de->d_name[0] == '.') continue;
606 if (name_len == 2 && de->d_name[0] == '.' &&
607 de->d_name[1] == '.') continue;
608
609 if (d_size >= d_alloc) {
610 d_alloc *= 2;
Doug Zongker28ce47c2011-10-28 10:33:05 -0700611 dirs = (char**)realloc(dirs, d_alloc * sizeof(char*));
Doug Zongker8674a722010-09-15 11:08:23 -0700612 }
Doug Zongker28ce47c2011-10-28 10:33:05 -0700613 dirs[d_size] = (char*)malloc(name_len + 2);
Doug Zongker8674a722010-09-15 11:08:23 -0700614 strcpy(dirs[d_size], de->d_name);
615 dirs[d_size][name_len] = '/';
616 dirs[d_size][name_len+1] = '\0';
617 ++d_size;
618 } else if (de->d_type == DT_REG &&
619 name_len >= 4 &&
620 strncasecmp(de->d_name + (name_len-4), ".zip", 4) == 0) {
621 if (z_size >= z_alloc) {
622 z_alloc *= 2;
Doug Zongker28ce47c2011-10-28 10:33:05 -0700623 zips = (char**)realloc(zips, z_alloc * sizeof(char*));
Doug Zongker8674a722010-09-15 11:08:23 -0700624 }
625 zips[z_size++] = strdup(de->d_name);
626 }
627 }
628 closedir(d);
629
630 qsort(dirs, d_size, sizeof(char*), compare_string);
631 qsort(zips, z_size, sizeof(char*), compare_string);
632
633 // append dirs to the zips list
634 if (d_size + z_size + 1 > z_alloc) {
635 z_alloc = d_size + z_size + 1;
Doug Zongker28ce47c2011-10-28 10:33:05 -0700636 zips = (char**)realloc(zips, z_alloc * sizeof(char*));
Doug Zongker8674a722010-09-15 11:08:23 -0700637 }
638 memcpy(zips + z_size, dirs, d_size * sizeof(char*));
639 free(dirs);
640 z_size += d_size;
641 zips[z_size] = NULL;
642
Elliott Hughes30694c92015-03-25 15:16:51 -0700643 const char* headers[] = { "Choose a package to install:", path, "", NULL };
644
Doug Zongker93950222014-07-08 14:10:23 -0700645 char* result;
Doug Zongker8674a722010-09-15 11:08:23 -0700646 int chosen_item = 0;
Doug Zongker93950222014-07-08 14:10:23 -0700647 while (true) {
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700648 chosen_item = get_menu_selection(headers, zips, 1, chosen_item, device);
Doug Zongker8674a722010-09-15 11:08:23 -0700649
650 char* item = zips[chosen_item];
651 int item_len = strlen(item);
652 if (chosen_item == 0) { // item 0 is always "../"
Michael Ward9d2629c2011-06-23 22:14:24 -0700653 // go up but continue browsing (if the caller is update_directory)
Doug Zongker93950222014-07-08 14:10:23 -0700654 result = NULL;
Doug Zongker8674a722010-09-15 11:08:23 -0700655 break;
656 }
Doug Zongker93950222014-07-08 14:10:23 -0700657
658 char new_path[PATH_MAX];
659 strlcpy(new_path, path, PATH_MAX);
660 strlcat(new_path, "/", PATH_MAX);
661 strlcat(new_path, item, PATH_MAX);
662
663 if (item[item_len-1] == '/') {
664 // recurse down into a subdirectory
665 new_path[strlen(new_path)-1] = '\0'; // truncate the trailing '/'
666 result = browse_directory(new_path, device);
667 if (result) break;
668 } else {
669 // selected a zip file: return the malloc'd path to the caller.
670 result = strdup(new_path);
671 break;
672 }
673 }
Doug Zongker8674a722010-09-15 11:08:23 -0700674
Elliott Hughes30694c92015-03-25 15:16:51 -0700675 for (int i = 0; i < z_size; ++i) free(zips[i]);
Doug Zongker8674a722010-09-15 11:08:23 -0700676 free(zips);
Doug Zongker8674a722010-09-15 11:08:23 -0700677
678 return result;
679}
680
Elliott Hughes30694c92015-03-25 15:16:51 -0700681static bool yes_no(Device* device, const char* question1, const char* question2) {
682 const char* headers[] = { question1, question2, "", NULL };
683 const char* items[] = { " No", " Yes", NULL };
Doug Zongkerddd6a282009-06-09 12:22:33 -0700684
Elliott Hughes30694c92015-03-25 15:16:51 -0700685 int chosen_item = get_menu_selection(headers, items, 1, 0, device);
686 return (chosen_item == 1);
687}
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800688
Elliott Hughes30694c92015-03-25 15:16:51 -0700689static void wipe_data(int confirm, Device* device) {
690 if (confirm && !yes_no(device, "Wipe all user data?", " THIS CAN NOT BE UNDONE!")) {
691 return;
Doug Zongkerf93d8162009-09-22 15:16:02 -0700692 }
Doug Zongker1066d2c2009-04-01 13:57:40 -0700693
Doug Zongker211aebc2011-10-28 15:13:10 -0700694 ui->Print("\n-- Wiping data...\n");
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700695 device->WipeData();
Doug Zongkerd4208f92010-09-20 12:16:13 -0700696 erase_volume("/data");
697 erase_volume("/cache");
Andres Moralesee193872014-08-05 19:49:09 -0700698 erase_persistent_partition();
Doug Zongker211aebc2011-10-28 15:13:10 -0700699 ui->Print("Data wipe complete.\n");
Doug Zongkerf93d8162009-09-22 15:16:02 -0700700}
701
Elliott Hughes30694c92015-03-25 15:16:51 -0700702static void wipe_cache(bool should_confirm, Device* device) {
703 if (should_confirm && !yes_no(device, "Wipe cache?", " THIS CAN NOT BE UNDONE!")) {
704 return;
705 }
706
707 ui->Print("\n-- Wiping cache...\n");
708 erase_volume("/cache");
709 ui->Print("Cache wipe complete.\n");
710}
711
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700712static void file_to_ui(const char* fn) {
713 FILE *fp = fopen_path(fn, "re");
714 if (fp == NULL) {
715 ui->Print(" Unable to open %s: %s\n", fn, strerror(errno));
716 return;
717 }
718 char line[1024];
719 int ct = 0;
Patrick Tjinf59b9942014-12-09 12:42:42 -0800720 int key = 0;
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700721 redirect_stdio("/dev/null");
722 while(fgets(line, sizeof(line), fp) != NULL) {
723 ui->Print("%s", line);
724 ct++;
Patrick Tjinf59b9942014-12-09 12:42:42 -0800725 if (ct % LINES_PER_PAGE == 0) {
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700726 // give the user time to glance at the entries
Patrick Tjinf59b9942014-12-09 12:42:42 -0800727 key = ui->WaitKey();
728
729 if (key == KEY_POWER) {
730 break;
731 }
732
733 if (key == KEY_VOLUMEUP) {
734 // Go back by seeking to the beginning and dumping ct - n
735 // lines. It's ugly, but this way we don't need to store
736 // the previous offsets. The files we're dumping here aren't
737 // expected to be very large.
738 int i;
739
740 ct -= 2 * LINES_PER_PAGE;
741 if (ct < 0) {
742 ct = 0;
743 }
744 fseek(fp, 0, SEEK_SET);
745 for (i = 0; i < ct; i++) {
746 fgets(line, sizeof(line), fp);
747 }
748 ui->Print("^^^^^^^^^^\n");
749 }
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700750 }
751 }
Patrick Tjinf59b9942014-12-09 12:42:42 -0800752
753 // If the user didn't abort, then give the user time to glance at
754 // the end of the log, sorry, no rewind here
755 if (key != KEY_POWER) {
756 ui->Print("\n--END-- (press any key)\n");
757 ui->WaitKey();
758 }
759
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700760 redirect_stdio(TEMPORARY_LOG_FILE);
761 fclose(fp);
762}
763
764static void choose_recovery_file(Device* device) {
Patrick Tjincd055ee2014-12-09 11:26:40 -0800765 unsigned int i;
766 unsigned int n;
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700767 static const char** title_headers = NULL;
768 char *filename;
Patrick Tjincd055ee2014-12-09 11:26:40 -0800769 // "Go back" + LAST_KMSG_FILE + KEEP_LOG_COUNT + terminating NULL entry
770 char* entries[KEEP_LOG_COUNT + 3];
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700771 memset(entries, 0, sizeof(entries));
772
Patrick Tjincd055ee2014-12-09 11:26:40 -0800773 n = 0;
774 entries[n++] = strdup("Go back");
775
776 // Add kernel kmsg file if available
777 if ((ensure_path_mounted(LAST_KMSG_FILE) == 0) && (access(LAST_KMSG_FILE, R_OK) == 0)) {
778 entries[n++] = strdup(LAST_KMSG_FILE);
779 }
780
781 // Add LAST_LOG_FILE + LAST_LOG_FILE.x
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700782 for (i = 0; i < KEEP_LOG_COUNT; i++) {
783 char *filename;
784 if (asprintf(&filename, (i==0) ? LAST_LOG_FILE : (LAST_LOG_FILE ".%d"), i) == -1) {
785 // memory allocation failure - return early. Should never happen.
786 return;
787 }
788 if ((ensure_path_mounted(filename) != 0) || (access(filename, R_OK) == -1)) {
789 free(filename);
Patrick Tjincd055ee2014-12-09 11:26:40 -0800790 entries[n++] = NULL;
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700791 break;
792 }
Patrick Tjincd055ee2014-12-09 11:26:40 -0800793 entries[n++] = filename;
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700794 }
795
Elliott Hughes30694c92015-03-25 15:16:51 -0700796 const char* headers[] = { "Select file to view", "", NULL };
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700797
798 while(1) {
Elliott Hughes30694c92015-03-25 15:16:51 -0700799 int chosen_item = get_menu_selection(headers, entries, 1, 0, device);
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700800 if (chosen_item == 0) break;
801 file_to_ui(entries[chosen_item]);
802 }
803
Patrick Tjincd055ee2014-12-09 11:26:40 -0800804 for (i = 0; i < (sizeof(entries) / sizeof(*entries)); i++) {
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700805 free(entries[i]);
806 }
807}
808
Tao Bao145d8612015-03-25 15:51:15 -0700809static int apply_from_sdcard(Device* device, bool* wipe_cache) {
Christian Poetzsch4ec58a42015-02-19 10:42:39 +0000810 if (ensure_path_mounted(SDCARD_ROOT) != 0) {
811 ui->Print("\n-- Couldn't mount %s.\n", SDCARD_ROOT);
812 return INSTALL_ERROR;
813 }
814
815 char* path = browse_directory(SDCARD_ROOT, device);
816 if (path == NULL) {
817 ui->Print("\n-- No package file selected.\n", path);
818 return INSTALL_ERROR;
819 }
820
821 ui->Print("\n-- Install %s ...\n", path);
822 set_sdcard_update_bootloader_message();
823 void* token = start_sdcard_fuse(path);
824
825 int status = install_package(FUSE_SIDELOAD_HOST_PATHNAME, wipe_cache,
826 TEMPORARY_INSTALL_FILE, false);
827
828 finish_sdcard_fuse(token);
829 ensure_path_unmounted(SDCARD_ROOT);
830 return status;
831}
832
Doug Zongker8d9d3d52014-04-01 13:20:23 -0700833// Return REBOOT, SHUTDOWN, or REBOOT_BOOTLOADER. Returning NO_ACTION
834// means to take the default, which is to reboot or shutdown depending
835// on if the --shutdown_after flag was passed to recovery.
836static Device::BuiltinAction
Doug Zongker6c8553d2012-09-24 10:40:47 -0700837prompt_and_wait(Device* device, int status) {
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700838 const char* const* headers = prepend_title(device->GetMenuHeaders());
Doug Zongkerf93d8162009-09-22 15:16:02 -0700839
840 for (;;) {
841 finish_recovery(NULL);
Doug Zongker6c8553d2012-09-24 10:40:47 -0700842 switch (status) {
843 case INSTALL_SUCCESS:
844 case INSTALL_NONE:
845 ui->SetBackground(RecoveryUI::NO_COMMAND);
846 break;
847
848 case INSTALL_ERROR:
849 case INSTALL_CORRUPT:
850 ui->SetBackground(RecoveryUI::ERROR);
851 break;
852 }
Doug Zongker211aebc2011-10-28 15:13:10 -0700853 ui->SetProgressType(RecoveryUI::EMPTY);
Doug Zongkerf93d8162009-09-22 15:16:02 -0700854
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700855 int chosen_item = get_menu_selection(headers, device->GetMenuItems(), 0, 0, device);
Doug Zongkerf93d8162009-09-22 15:16:02 -0700856
857 // device-specific code may take some action here. It may
858 // return one of the core actions handled in the switch
859 // statement below.
Doug Zongker8d9d3d52014-04-01 13:20:23 -0700860 Device::BuiltinAction chosen_action = device->InvokeMenuItem(chosen_item);
Doug Zongkerf93d8162009-09-22 15:16:02 -0700861
Elliott Hughes30694c92015-03-25 15:16:51 -0700862 bool should_wipe_cache = false;
Doug Zongker8d9d3d52014-04-01 13:20:23 -0700863 switch (chosen_action) {
864 case Device::NO_ACTION:
865 break;
866
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700867 case Device::REBOOT:
Doug Zongker8d9d3d52014-04-01 13:20:23 -0700868 case Device::SHUTDOWN:
869 case Device::REBOOT_BOOTLOADER:
870 return chosen_action;
Doug Zongkerf93d8162009-09-22 15:16:02 -0700871
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700872 case Device::WIPE_DATA:
873 wipe_data(ui->IsTextVisible(), device);
Doug Zongker8d9d3d52014-04-01 13:20:23 -0700874 if (!ui->IsTextVisible()) return Device::NO_ACTION;
Doug Zongkerf93d8162009-09-22 15:16:02 -0700875 break;
876
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700877 case Device::WIPE_CACHE:
Elliott Hughes30694c92015-03-25 15:16:51 -0700878 wipe_cache(ui->IsTextVisible(), device);
Doug Zongker8d9d3d52014-04-01 13:20:23 -0700879 if (!ui->IsTextVisible()) return Device::NO_ACTION;
Doug Zongkerf93d8162009-09-22 15:16:02 -0700880 break;
881
Christian Poetzsch4ec58a42015-02-19 10:42:39 +0000882 case Device::APPLY_ADB_SIDELOAD:
883 case Device::APPLY_EXT:
884 {
885 bool adb = (chosen_action == Device::APPLY_ADB_SIDELOAD);
886 if (adb) {
Elliott Hughes30694c92015-03-25 15:16:51 -0700887 status = apply_from_adb(ui, &should_wipe_cache, TEMPORARY_INSTALL_FILE);
Doug Zongkerd0181b82011-10-19 10:51:12 -0700888 } else {
Elliott Hughes30694c92015-03-25 15:16:51 -0700889 status = apply_from_sdcard(device, &should_wipe_cache);
Doug Zongkerd0181b82011-10-19 10:51:12 -0700890 }
Doug Zongker945fc682014-07-10 10:50:39 -0700891
Elliott Hughes30694c92015-03-25 15:16:51 -0700892 if (status == INSTALL_SUCCESS && should_wipe_cache) {
893 wipe_cache(false, device);
Christian Poetzsch4ec58a42015-02-19 10:42:39 +0000894 }
895
Tao Baoc679f932015-03-30 09:43:49 -0700896 if (status != INSTALL_SUCCESS) {
897 ui->SetBackground(RecoveryUI::ERROR);
898 ui->Print("Installation aborted.\n");
899 copy_logs();
900 } else if (!ui->IsTextVisible()) {
901 return Device::NO_ACTION; // reboot if logs aren't visible
902 } else {
903 ui->Print("\nInstall from %s complete.\n", adb ? "ADB" : "SD card");
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;
Tao Baoc679f932015-03-30 09:43:49 -0700989 bool should_wipe_cache = false;
Tao Bao145d8612015-03-25 15:51:15 -0700990 bool show_text = false;
Tao Baoc679f932015-03-30 09:43:49 -0700991 bool sideload = false;
992 bool sideload_auto_reboot = false;
Doug Zongkere5d5ac72012-04-12 11:01:22 -0700993 bool just_exit = false;
Doug Zongkerb1d12632014-03-18 10:32:12 -0700994 bool shutdown_after = false;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800995
996 int arg;
997 while ((arg = getopt_long(argc, argv, "", OPTIONS, NULL)) != -1) {
998 switch (arg) {
Tao Baoc679f932015-03-30 09:43:49 -0700999 case 'i': send_intent = optarg; break;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001000 case 'u': update_package = optarg; break;
Tao Baoc679f932015-03-30 09:43:49 -07001001 case 'w': wipe_data = true; should_wipe_cache = true; break;
1002 case 'c': should_wipe_cache = true; break;
Tao Bao145d8612015-03-25 15:51:15 -07001003 case 't': show_text = true; break;
Tao Baoc679f932015-03-30 09:43:49 -07001004 case 's': sideload = true; break;
1005 case 'a': sideload = true; sideload_auto_reboot = true; break;
Doug Zongkere5d5ac72012-04-12 11:01:22 -07001006 case 'x': just_exit = true; break;
Doug Zongker02ec6b82012-08-22 17:26:40 -07001007 case 'l': locale = optarg; break;
Doug Zongkerc87bab12013-11-25 13:53:25 -08001008 case 'g': {
1009 if (stage == NULL || *stage == '\0') {
1010 char buffer[20] = "1/";
1011 strncat(buffer, optarg, sizeof(buffer)-3);
1012 stage = strdup(buffer);
1013 }
1014 break;
1015 }
Doug Zongkerb1d12632014-03-18 10:32:12 -07001016 case 'p': shutdown_after = true; break;
Jeff Sharkeya6e13ae2014-09-24 11:46:17 -07001017 case 'r': reason = optarg; break;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001018 case '?':
1019 LOGE("Invalid command argument\n");
1020 continue;
1021 }
1022 }
1023
Doug Zongker02ec6b82012-08-22 17:26:40 -07001024 if (locale == NULL) {
1025 load_locale_from_cache();
1026 }
1027 printf("locale is [%s]\n", locale);
Doug Zongker0d32f252014-02-13 15:07:56 -08001028 printf("stage is [%s]\n", stage);
Jeff Sharkeya6e13ae2014-09-24 11:46:17 -07001029 printf("reason is [%s]\n", reason);
Doug Zongker02ec6b82012-08-22 17:26:40 -07001030
1031 Device* device = make_device();
1032 ui = device->GetUI();
Doug Zongker7c3ae452013-05-14 11:03:02 -07001033 gCurrentUI = ui;
Doug Zongker02ec6b82012-08-22 17:26:40 -07001034
Doug Zongker5fa8c232012-09-18 12:37:02 -07001035 ui->SetLocale(locale);
Doug Zongker02ec6b82012-08-22 17:26:40 -07001036 ui->Init();
Doug Zongkerc87bab12013-11-25 13:53:25 -08001037
1038 int st_cur, st_max;
1039 if (stage != NULL && sscanf(stage, "%d/%d", &st_cur, &st_max) == 2) {
1040 ui->SetStage(st_cur, st_max);
1041 }
1042
Doug Zongker02ec6b82012-08-22 17:26:40 -07001043 ui->SetBackground(RecoveryUI::NONE);
1044 if (show_text) ui->ShowText(true);
1045
Stephen Smalley779701d2012-02-09 14:13:23 -05001046 struct selinux_opt seopts[] = {
1047 { SELABEL_OPT_PATH, "/file_contexts" }
1048 };
1049
1050 sehandle = selabel_open(SELABEL_CTX_FILE, seopts, 1);
1051
1052 if (!sehandle) {
Doug Zongkerfafc85b2013-07-09 12:29:45 -07001053 ui->Print("Warning: No file_contexts\n");
Stephen Smalley779701d2012-02-09 14:13:23 -05001054 }
Stephen Smalley779701d2012-02-09 14:13:23 -05001055
Doug Zongkerdaefc1d2011-10-31 09:34:15 -07001056 device->StartRecovery();
Doug Zongkerefa1bab2010-02-01 15:59:12 -08001057
Doug Zongker56c51052010-07-01 09:18:44 -07001058 printf("Command:");
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001059 for (arg = 0; arg < argc; arg++) {
Doug Zongker56c51052010-07-01 09:18:44 -07001060 printf(" \"%s\"", argv[arg]);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001061 }
Doug Zongker9b125b02010-09-22 12:01:37 -07001062 printf("\n");
1063
1064 if (update_package) {
1065 // For backwards compatibility on the cache partition only, if
1066 // we're given an old 'root' path "CACHE:foo", change it to
1067 // "/cache/foo".
1068 if (strncmp(update_package, "CACHE:", 6) == 0) {
1069 int len = strlen(update_package) + 10;
Doug Zongker28ce47c2011-10-28 10:33:05 -07001070 char* modified_path = (char*)malloc(len);
Doug Zongker9b125b02010-09-22 12:01:37 -07001071 strlcpy(modified_path, "/cache/", len);
1072 strlcat(modified_path, update_package+6, len);
1073 printf("(replacing path \"%s\" with \"%s\")\n",
1074 update_package, modified_path);
1075 update_package = modified_path;
1076 }
1077 }
1078 printf("\n");
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001079
1080 property_list(print_property, NULL);
Doug Zongkerc0441d12013-07-31 11:28:24 -07001081 property_get("ro.build.display.id", recovery_version, "");
Doug Zongker56c51052010-07-01 09:18:44 -07001082 printf("\n");
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001083
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001084 int status = INSTALL_SUCCESS;
1085
Doug Zongker540d57f2011-01-18 13:36:58 -08001086 if (update_package != NULL) {
Tao Baoc679f932015-03-30 09:43:49 -07001087 status = install_package(update_package, &should_wipe_cache, TEMPORARY_INSTALL_FILE, true);
1088 if (status == INSTALL_SUCCESS && should_wipe_cache) {
1089 wipe_cache(false, device);
Doug Zongkerd0181b82011-10-19 10:51:12 -07001090 }
Doug Zongker7c3ae452013-05-14 11:03:02 -07001091 if (status != INSTALL_SUCCESS) {
1092 ui->Print("Installation aborted.\n");
1093
1094 // If this is an eng or userdebug build, then automatically
1095 // turn the text display on if the script fails so the error
1096 // message is visible.
Elliott Hughesf14af802015-02-10 14:46:14 -08001097 if (is_ro_debuggable()) {
Doug Zongker7c3ae452013-05-14 11:03:02 -07001098 ui->ShowText(true);
1099 }
1100 }
Doug Zongkerb128f542009-06-18 15:07:14 -07001101 } else if (wipe_data) {
Doug Zongkerdaefc1d2011-10-31 09:34:15 -07001102 if (device->WipeData()) status = INSTALL_ERROR;
Doug Zongkerd4208f92010-09-20 12:16:13 -07001103 if (erase_volume("/data")) status = INSTALL_ERROR;
Tao Baoc679f932015-03-30 09:43:49 -07001104 if (should_wipe_cache && erase_volume("/cache")) status = INSTALL_ERROR;
Andres Moralesee193872014-08-05 19:49:09 -07001105 if (erase_persistent_partition() == -1 ) status = INSTALL_ERROR;
Doug Zongker211aebc2011-10-28 15:13:10 -07001106 if (status != INSTALL_SUCCESS) ui->Print("Data wipe failed.\n");
Tao Baoc679f932015-03-30 09:43:49 -07001107 } else if (should_wipe_cache) {
1108 if (should_wipe_cache && erase_volume("/cache")) status = INSTALL_ERROR;
Doug Zongker211aebc2011-10-28 15:13:10 -07001109 if (status != INSTALL_SUCCESS) ui->Print("Cache wipe failed.\n");
Tao Baoc679f932015-03-30 09:43:49 -07001110 } else if (sideload) {
1111 // 'adb reboot sideload' acts the same as user presses key combinations
1112 // to enter the sideload mode. When 'sideload-auto-reboot' is used, text
1113 // display will NOT be turned on by default. And it will reboot after
1114 // sideload finishes even if there are errors. Unless one turns on the
1115 // text display during the installation. This is to enable automated
1116 // testing.
1117 if (!sideload_auto_reboot) {
1118 ui->ShowText(true);
1119 }
1120 status = apply_from_adb(ui, &should_wipe_cache, TEMPORARY_INSTALL_FILE);
1121 if (status == INSTALL_SUCCESS && should_wipe_cache) {
1122 wipe_cache(false, device);
1123 }
1124 ui->Print("\nInstall from ADB complete (status: %d).\n", status);
1125 if (sideload_auto_reboot) {
1126 ui->Print("Rebooting automatically.\n");
1127 }
Doug Zongkere5d5ac72012-04-12 11:01:22 -07001128 } else if (!just_exit) {
Doug Zongker02ec6b82012-08-22 17:26:40 -07001129 status = INSTALL_NONE; // No command specified
1130 ui->SetBackground(RecoveryUI::NO_COMMAND);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001131 }
1132
Tao Baoc679f932015-03-30 09:43:49 -07001133 if (!sideload_auto_reboot && (status == INSTALL_ERROR || status == INSTALL_CORRUPT)) {
Doug Zongkerf24fd7e2013-07-02 11:43:25 -07001134 copy_logs();
Doug Zongker02ec6b82012-08-22 17:26:40 -07001135 ui->SetBackground(RecoveryUI::ERROR);
1136 }
Tao Baoc679f932015-03-30 09:43:49 -07001137
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001138 Device::BuiltinAction after = shutdown_after ? Device::SHUTDOWN : Device::REBOOT;
Tao Baoc679f932015-03-30 09:43:49 -07001139 if ((status != INSTALL_SUCCESS && !sideload_auto_reboot) || ui->IsTextVisible()) {
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001140 Device::BuiltinAction temp = prompt_and_wait(device, status);
Tao Baoc679f932015-03-30 09:43:49 -07001141 if (temp != Device::NO_ACTION) {
1142 after = temp;
1143 }
Doug Zongker8674a722010-09-15 11:08:23 -07001144 }
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001145
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001146 // Save logs and clean up before rebooting or shutting down.
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001147 finish_recovery(send_intent);
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001148
1149 switch (after) {
1150 case Device::SHUTDOWN:
1151 ui->Print("Shutting down...\n");
1152 property_set(ANDROID_RB_PROPERTY, "shutdown,");
1153 break;
1154
1155 case Device::REBOOT_BOOTLOADER:
1156 ui->Print("Rebooting to bootloader...\n");
1157 property_set(ANDROID_RB_PROPERTY, "reboot,bootloader");
1158 break;
1159
1160 default:
1161 ui->Print("Rebooting...\n");
1162 property_set(ANDROID_RB_PROPERTY, "reboot,");
1163 break;
Doug Zongkerb1d12632014-03-18 10:32:12 -07001164 }
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001165 sleep(5); // should reboot before this finishes
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001166 return EXIT_SUCCESS;
1167}