blob: 4dd8279196aa8bd66ad5ca5dfcc0fefa7d61cd0e [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"
Dan Albertf3a57262015-02-19 13:21:14 -080046#include "adb.h"
Doug Zongker945fc682014-07-10 10:50:39 -070047#include "fuse_sideload.h"
48#include "fuse_sdcard_provider.h"
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080049
Stephen Smalley779701d2012-02-09 14:13:23 -050050struct selabel_handle *sehandle;
51
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080052static const struct option OPTIONS[] = {
Tao Baoc679f932015-03-30 09:43:49 -070053 { "send_intent", required_argument, NULL, 'i' },
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080054 { "update_package", required_argument, NULL, 'u' },
55 { "wipe_data", no_argument, NULL, 'w' },
56 { "wipe_cache", no_argument, NULL, 'c' },
Doug Zongker4bc98062010-09-03 11:00:13 -070057 { "show_text", no_argument, NULL, 't' },
Tao Baoc679f932015-03-30 09:43:49 -070058 { "sideload", no_argument, NULL, 's' },
59 { "sideload_auto_reboot", no_argument, NULL, 'a' },
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
Tao Baof0124322015-04-11 02:04:11 +000068#define LAST_LOG_FILE "/cache/recovery/last_log"
Doug Zongkerda1ebae2013-05-16 11:23:48 -070069
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";
Tao Baof0124322015-04-11 02:04:11 +000080static const char *LAST_KMSG_FILE = "/cache/recovery/last_kmsg";
Patrick Tjincd055ee2014-12-09 11:26:40 -080081#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
Doug Zongker211aebc2011-10-28 15:13:10 -070085RecoveryUI* ui = NULL;
Doug Zongker02ec6b82012-08-22 17:26:40 -070086char* locale = NULL;
Doug Zongkerc87bab12013-11-25 13:53:25 -080087char* stage = NULL;
Jeff Sharkeya6e13ae2014-09-24 11:46:17 -070088char* reason = NULL;
Tao Bao682c34b2015-04-07 17:16:35 -070089bool modified_flash = false;
Doug Zongker211aebc2011-10-28 15:13:10 -070090
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080091/*
92 * The recovery tool communicates with the main system through /cache files.
93 * /cache/recovery/command - INPUT - command line for tool, one arg per line
94 * /cache/recovery/log - OUTPUT - combined log file from recovery run(s)
95 * /cache/recovery/intent - OUTPUT - intent that was passed in
96 *
97 * The arguments which may be supplied in the recovery.command file:
98 * --send_intent=anystring - write the text out to recovery.intent
Doug Zongkerd4208f92010-09-20 12:16:13 -070099 * --update_package=path - verify install an OTA package file
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800100 * --wipe_data - erase user data (and cache), then reboot
101 * --wipe_cache - wipe cache (but not user data), then reboot
Oscar Montemayor05231562009-11-30 08:40:57 -0800102 * --set_encrypted_filesystem=on|off - enables / diasables encrypted fs
Doug Zongkere5d5ac72012-04-12 11:01:22 -0700103 * --just_exit - do nothing; exit and reboot
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800104 *
105 * After completing, we remove /cache/recovery/command and reboot.
106 * Arguments may also be supplied in the bootloader control block (BCB).
107 * These important scenarios must be safely restartable at any point:
108 *
109 * FACTORY RESET
110 * 1. user selects "factory reset"
111 * 2. main system writes "--wipe_data" to /cache/recovery/command
112 * 3. main system reboots into recovery
113 * 4. get_args() writes BCB with "boot-recovery" and "--wipe_data"
114 * -- after this, rebooting will restart the erase --
Doug Zongkerd4208f92010-09-20 12:16:13 -0700115 * 5. erase_volume() reformats /data
116 * 6. erase_volume() reformats /cache
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800117 * 7. finish_recovery() erases BCB
118 * -- after this, rebooting will restart the main system --
119 * 8. main() calls reboot() to boot main system
120 *
121 * OTA INSTALL
122 * 1. main system downloads OTA package to /cache/some-filename.zip
Doug Zongker9b125b02010-09-22 12:01:37 -0700123 * 2. main system writes "--update_package=/cache/some-filename.zip"
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800124 * 3. main system reboots into recovery
125 * 4. get_args() writes BCB with "boot-recovery" and "--update_package=..."
126 * -- after this, rebooting will attempt to reinstall the update --
127 * 5. install_package() attempts to install the update
128 * NOTE: the package install must itself be restartable from any point
129 * 6. finish_recovery() erases BCB
130 * -- after this, rebooting will (try to) restart the main system --
131 * 7. ** if install failed **
132 * 7a. prompt_and_wait() shows an error icon and waits for the user
133 * 7b; the user reboots (pulling the battery, etc) into the main system
134 * 8. main() calls maybe_install_firmware_update()
135 * ** if the update contained radio/hboot firmware **:
136 * 8a. m_i_f_u() writes BCB with "boot-recovery" and "--wipe_cache"
137 * -- after this, rebooting will reformat cache & restart main system --
138 * 8b. m_i_f_u() writes firmware image into raw cache partition
139 * 8c. m_i_f_u() writes BCB with "update-radio/hboot" and "--wipe_cache"
140 * -- after this, rebooting will attempt to reinstall firmware --
141 * 8d. bootloader tries to flash firmware
142 * 8e. bootloader writes BCB with "boot-recovery" (keeping "--wipe_cache")
143 * -- after this, rebooting will reformat cache & restart main system --
Doug Zongkerd4208f92010-09-20 12:16:13 -0700144 * 8f. erase_volume() reformats /cache
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800145 * 8g. finish_recovery() erases BCB
146 * -- after this, rebooting will (try to) restart the main system --
147 * 9. main() calls reboot() to boot main system
148 */
149
150static const int MAX_ARG_LENGTH = 4096;
151static const int MAX_ARGS = 100;
152
Doug Zongkerd4208f92010-09-20 12:16:13 -0700153// open a given path, mounting partitions as necessary
Doug Zongker469243e2011-04-12 09:28:10 -0700154FILE*
Doug Zongkerd4208f92010-09-20 12:16:13 -0700155fopen_path(const char *path, const char *mode) {
156 if (ensure_path_mounted(path) != 0) {
157 LOGE("Can't mount %s\n", path);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800158 return NULL;
159 }
160
161 // When writing, try to create the containing directory, if necessary.
162 // Use generous permissions, the system (init.rc) will reset them.
Stephen Smalley779701d2012-02-09 14:13:23 -0500163 if (strchr("wa", mode[0])) dirCreateHierarchy(path, 0777, NULL, 1, sehandle);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800164
165 FILE *fp = fopen(path, mode);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800166 return fp;
167}
168
Elliott Hughesf14af802015-02-10 14:46:14 -0800169bool is_ro_debuggable() {
170 char value[PROPERTY_VALUE_MAX+1];
171 return (property_get("ro.debuggable", value, NULL) == 1 && value[0] == '1');
172}
173
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700174static void redirect_stdio(const char* filename) {
175 // If these fail, there's not really anywhere to complain...
176 freopen(filename, "a", stdout); setbuf(stdout, NULL);
177 freopen(filename, "a", stderr); setbuf(stderr, NULL);
178}
179
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800180// close a file, log an error if the error indicator is set
181static void
182check_and_fclose(FILE *fp, const char *name) {
183 fflush(fp);
184 if (ferror(fp)) LOGE("Error in %s\n(%s)\n", name, strerror(errno));
185 fclose(fp);
186}
187
188// command line args come from, in decreasing precedence:
189// - the actual command line
190// - the bootloader control block (one per line, after "recovery")
191// - the contents of COMMAND_FILE (one per line)
192static void
193get_args(int *argc, char ***argv) {
194 struct bootloader_message boot;
195 memset(&boot, 0, sizeof(boot));
196 get_bootloader_message(&boot); // this may fail, leaving a zeroed structure
Doug Zongkerc87bab12013-11-25 13:53:25 -0800197 stage = strndup(boot.stage, sizeof(boot.stage));
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800198
199 if (boot.command[0] != 0 && boot.command[0] != 255) {
Mark Salyzynf3bb31c2014-03-14 09:39:48 -0700200 LOGI("Boot command: %.*s\n", (int)sizeof(boot.command), boot.command);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800201 }
202
203 if (boot.status[0] != 0 && boot.status[0] != 255) {
Mark Salyzynf3bb31c2014-03-14 09:39:48 -0700204 LOGI("Boot status: %.*s\n", (int)sizeof(boot.status), boot.status);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800205 }
206
207 // --- if arguments weren't supplied, look in the bootloader control block
208 if (*argc <= 1) {
209 boot.recovery[sizeof(boot.recovery) - 1] = '\0'; // Ensure termination
210 const char *arg = strtok(boot.recovery, "\n");
211 if (arg != NULL && !strcmp(arg, "recovery")) {
212 *argv = (char **) malloc(sizeof(char *) * MAX_ARGS);
213 (*argv)[0] = strdup(arg);
214 for (*argc = 1; *argc < MAX_ARGS; ++*argc) {
215 if ((arg = strtok(NULL, "\n")) == NULL) break;
216 (*argv)[*argc] = strdup(arg);
217 }
218 LOGI("Got arguments from boot message\n");
219 } else if (boot.recovery[0] != 0 && boot.recovery[0] != 255) {
220 LOGE("Bad boot message\n\"%.20s\"\n", boot.recovery);
221 }
222 }
223
224 // --- if that doesn't work, try the command file
225 if (*argc <= 1) {
Doug Zongkerd4208f92010-09-20 12:16:13 -0700226 FILE *fp = fopen_path(COMMAND_FILE, "r");
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800227 if (fp != NULL) {
Jin Feng93ffa752013-06-04 17:46:24 +0800228 char *token;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800229 char *argv0 = (*argv)[0];
230 *argv = (char **) malloc(sizeof(char *) * MAX_ARGS);
231 (*argv)[0] = argv0; // use the same program name
232
233 char buf[MAX_ARG_LENGTH];
234 for (*argc = 1; *argc < MAX_ARGS; ++*argc) {
235 if (!fgets(buf, sizeof(buf), fp)) break;
Jin Feng93ffa752013-06-04 17:46:24 +0800236 token = strtok(buf, "\r\n");
237 if (token != NULL) {
238 (*argv)[*argc] = strdup(token); // Strip newline.
239 } else {
240 --*argc;
241 }
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800242 }
243
244 check_and_fclose(fp, COMMAND_FILE);
245 LOGI("Got arguments from %s\n", COMMAND_FILE);
246 }
247 }
248
249 // --> write the arguments we have back into the bootloader control block
250 // always boot into recovery after this (until finish_recovery() is called)
251 strlcpy(boot.command, "boot-recovery", sizeof(boot.command));
252 strlcpy(boot.recovery, "recovery\n", sizeof(boot.recovery));
253 int i;
254 for (i = 1; i < *argc; ++i) {
255 strlcat(boot.recovery, (*argv)[i], sizeof(boot.recovery));
256 strlcat(boot.recovery, "\n", sizeof(boot.recovery));
257 }
258 set_bootloader_message(&boot);
259}
260
Doug Zongker34c98df2009-08-18 12:05:45 -0700261static void
Oscar Montemayor05231562009-11-30 08:40:57 -0800262set_sdcard_update_bootloader_message() {
Doug Zongker34c98df2009-08-18 12:05:45 -0700263 struct bootloader_message boot;
264 memset(&boot, 0, sizeof(boot));
265 strlcpy(boot.command, "boot-recovery", sizeof(boot.command));
266 strlcpy(boot.recovery, "recovery\n", sizeof(boot.recovery));
267 set_bootloader_message(&boot);
268}
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800269
Patrick Tjincd055ee2014-12-09 11:26:40 -0800270// read from kernel log into buffer and write out to file
271static void
272save_kernel_log(const char *destination) {
273 int n;
274 char *buffer;
275 int klog_buf_len;
276 FILE *log;
277
278 klog_buf_len = klogctl(KLOG_SIZE_BUFFER, 0, 0);
279 if (klog_buf_len <= 0) {
280 LOGE("Error getting klog size (%s), using default\n", strerror(errno));
281 klog_buf_len = KLOG_DEFAULT_LEN;
282 }
283
284 buffer = (char *)malloc(klog_buf_len);
285 if (!buffer) {
286 LOGE("Can't alloc %d bytes for klog buffer\n", klog_buf_len);
287 return;
288 }
289
290 n = klogctl(KLOG_READ_ALL, buffer, klog_buf_len);
291 if (n < 0) {
292 LOGE("Error in reading klog (%s)\n", strerror(errno));
293 free(buffer);
294 return;
295 }
296
297 log = fopen_path(destination, "w");
298 if (log == NULL) {
299 LOGE("Can't open %s\n", destination);
300 free(buffer);
301 return;
302 }
303 fwrite(buffer, n, 1, log);
304 check_and_fclose(log, destination);
305 free(buffer);
306}
307
Tao Baof0124322015-04-11 02:04:11 +0000308// How much of the temp log we have copied to the copy in cache.
309static long tmplog_offset = 0;
310
311static void
312copy_log_file(const char* source, const char* destination, int append) {
313 FILE *log = fopen_path(destination, append ? "a" : "w");
314 if (log == NULL) {
Doug Zongker2c3539e2010-09-29 13:21:30 -0700315 LOGE("Can't open %s\n", destination);
316 } else {
Tao Baof0124322015-04-11 02:04:11 +0000317 FILE *tmplog = fopen(source, "r");
318 if (tmplog != NULL) {
319 if (append) {
320 fseek(tmplog, tmplog_offset, SEEK_SET); // Since last write
Doug Zongker2c3539e2010-09-29 13:21:30 -0700321 }
322 char buf[4096];
Tao Baof0124322015-04-11 02:04:11 +0000323 while (fgets(buf, sizeof(buf), tmplog)) fputs(buf, log);
324 if (append) {
325 tmplog_offset = ftell(tmplog);
Doug Zongker2c3539e2010-09-29 13:21:30 -0700326 }
Tao Baof0124322015-04-11 02:04:11 +0000327 check_and_fclose(tmplog, source);
Doug Zongker2c3539e2010-09-29 13:21:30 -0700328 }
Tao Baof0124322015-04-11 02:04:11 +0000329 check_and_fclose(log, destination);
Doug Zongker2c3539e2010-09-29 13:21:30 -0700330 }
331}
332
Doug Zongkerda1ebae2013-05-16 11:23:48 -0700333// Rename last_log -> last_log.1 -> last_log.2 -> ... -> last_log.$max
334// Overwrites any existing last_log.$max.
Tao Bao682c34b2015-04-07 17:16:35 -0700335static void rotate_last_logs(int max) {
336 // Logs should only be rotated once.
337 static bool rotated = false;
338 if (rotated) {
339 return;
340 }
341 rotated = true;
342 ensure_path_mounted(LAST_LOG_FILE);
343
Doug Zongkerda1ebae2013-05-16 11:23:48 -0700344 char oldfn[256];
345 char newfn[256];
Tao Bao682c34b2015-04-07 17:16:35 -0700346 for (int i = max-1; i >= 0; --i) {
Tao Baof0124322015-04-11 02:04:11 +0000347 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);
Doug Zongkerda1ebae2013-05-16 11:23:48 -0700349 // ignore errors
350 rename(oldfn, newfn);
351 }
352}
Doug Zongker2c3539e2010-09-29 13:21:30 -0700353
Tao Bao682c34b2015-04-07 17:16:35 -0700354static void copy_logs() {
355 // We only rotate and record the log of the current session if there are
356 // actual attempts to modify the flash, such as wipes, installs from BCB
357 // or menu selections. This is to avoid unnecessary rotation (and
358 // possible deletion) of log files, if it does not do anything loggable.
359 if (!modified_flash) {
360 return;
361 }
362
363 rotate_last_logs(KEEP_LOG_COUNT);
364
Doug Zongkerf24fd7e2013-07-02 11:43:25 -0700365 // Copy logs to cache so the system can find out what happened.
Tao Baof0124322015-04-11 02:04:11 +0000366 copy_log_file(TEMPORARY_LOG_FILE, LOG_FILE, true);
367 copy_log_file(TEMPORARY_LOG_FILE, LAST_LOG_FILE, false);
368 copy_log_file(TEMPORARY_INSTALL_FILE, LAST_INSTALL_FILE, false);
369 save_kernel_log(LAST_KMSG_FILE);
Doug Zongkerf24fd7e2013-07-02 11:43:25 -0700370 chmod(LOG_FILE, 0600);
371 chown(LOG_FILE, 1000, 1000); // system user
Tao Baof0124322015-04-11 02:04:11 +0000372 chmod(LAST_KMSG_FILE, 0600);
373 chown(LAST_KMSG_FILE, 1000, 1000); // system user
Doug Zongkerf24fd7e2013-07-02 11:43:25 -0700374 chmod(LAST_LOG_FILE, 0640);
375 chmod(LAST_INSTALL_FILE, 0644);
376 sync();
377}
378
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800379// clear the recovery command and prepare to boot a (hopefully working) system,
380// copy our log file to cache as well (for the system to read), and
381// record any intent we were asked to communicate back to the system.
382// this function is idempotent: call it as many times as you like.
383static void
Oscar Montemayor05231562009-11-30 08:40:57 -0800384finish_recovery(const char *send_intent) {
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800385 // By this point, we're ready to return to the main system...
386 if (send_intent != NULL) {
Doug Zongkerd4208f92010-09-20 12:16:13 -0700387 FILE *fp = fopen_path(INTENT_FILE, "w");
Jay Freeman (saurik)619ec2f2008-11-17 01:56:05 +0000388 if (fp == NULL) {
389 LOGE("Can't open %s\n", INTENT_FILE);
390 } else {
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800391 fputs(send_intent, fp);
392 check_and_fclose(fp, INTENT_FILE);
393 }
394 }
395
Doug Zongker4f33e552012-08-23 13:16:12 -0700396 // Save the locale to cache, so if recovery is next started up
397 // without a --locale argument (eg, directly from the bootloader)
398 // it will use the last-known locale.
399 if (locale != NULL) {
400 LOGI("Saving locale \"%s\"\n", locale);
401 FILE* fp = fopen_path(LOCALE_FILE, "w");
402 fwrite(locale, 1, strlen(locale), fp);
403 fflush(fp);
404 fsync(fileno(fp));
405 check_and_fclose(fp, LOCALE_FILE);
406 }
407
Doug Zongkerf24fd7e2013-07-02 11:43:25 -0700408 copy_logs();
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800409
Doug Zongkere5d5ac72012-04-12 11:01:22 -0700410 // Reset to normal system boot so recovery won't cycle indefinitely.
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800411 struct bootloader_message boot;
412 memset(&boot, 0, sizeof(boot));
413 set_bootloader_message(&boot);
414
415 // Remove the command file, so recovery won't repeat indefinitely.
Doug Zongkerd4208f92010-09-20 12:16:13 -0700416 if (ensure_path_mounted(COMMAND_FILE) != 0 ||
417 (unlink(COMMAND_FILE) && errno != ENOENT)) {
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800418 LOGW("Can't unlink %s\n", COMMAND_FILE);
419 }
420
Doug Zongkerd0181b82011-10-19 10:51:12 -0700421 ensure_path_unmounted(CACHE_ROOT);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800422 sync(); // For good measure.
423}
424
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700425typedef struct _saved_log_file {
426 char* name;
427 struct stat st;
428 unsigned char* data;
429 struct _saved_log_file* next;
430} saved_log_file;
431
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800432static int
Doug Zongkerd4208f92010-09-20 12:16:13 -0700433erase_volume(const char *volume) {
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700434 bool is_cache = (strcmp(volume, CACHE_ROOT) == 0);
435
Doug Zongker02ec6b82012-08-22 17:26:40 -0700436 ui->SetBackground(RecoveryUI::ERASING);
Doug Zongker211aebc2011-10-28 15:13:10 -0700437 ui->SetProgressType(RecoveryUI::INDETERMINATE);
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700438
439 saved_log_file* head = NULL;
440
441 if (is_cache) {
Tao Baof0124322015-04-11 02:04:11 +0000442 // If we're reformatting /cache, we load any
443 // "/cache/recovery/last*" files into memory, so we can restore
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700444 // them after the reformat.
445
446 ensure_path_mounted(volume);
447
448 DIR* d;
449 struct dirent* de;
450 d = opendir(CACHE_LOG_DIR);
451 if (d) {
452 char path[PATH_MAX];
453 strcpy(path, CACHE_LOG_DIR);
454 strcat(path, "/");
455 int path_len = strlen(path);
456 while ((de = readdir(d)) != NULL) {
Tao Baof0124322015-04-11 02:04:11 +0000457 if (strncmp(de->d_name, "last", 4) == 0) {
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700458 saved_log_file* p = (saved_log_file*) malloc(sizeof(saved_log_file));
459 strcpy(path+path_len, de->d_name);
460 p->name = strdup(path);
461 if (stat(path, &(p->st)) == 0) {
462 // truncate files to 512kb
463 if (p->st.st_size > (1 << 19)) {
464 p->st.st_size = 1 << 19;
465 }
466 p->data = (unsigned char*) malloc(p->st.st_size);
467 FILE* f = fopen(path, "rb");
468 fread(p->data, 1, p->st.st_size, f);
469 fclose(f);
470 p->next = head;
471 head = p;
472 } else {
473 free(p);
474 }
475 }
476 }
477 closedir(d);
478 } else {
479 if (errno != ENOENT) {
480 printf("opendir failed: %s\n", strerror(errno));
481 }
482 }
483 }
484
Doug Zongker211aebc2011-10-28 15:13:10 -0700485 ui->Print("Formatting %s...\n", volume);
Doug Zongker2c3539e2010-09-29 13:21:30 -0700486
Doug Zongkerd0181b82011-10-19 10:51:12 -0700487 ensure_path_unmounted(volume);
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700488 int result = format_volume(volume);
Doug Zongkerd0181b82011-10-19 10:51:12 -0700489
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700490 if (is_cache) {
491 while (head) {
492 FILE* f = fopen_path(head->name, "wb");
493 if (f) {
494 fwrite(head->data, 1, head->st.st_size, f);
495 fclose(f);
496 chmod(head->name, head->st.st_mode);
497 chown(head->name, head->st.st_uid, head->st.st_gid);
498 }
499 free(head->name);
500 free(head->data);
501 saved_log_file* temp = head->next;
502 free(head);
503 head = temp;
504 }
505
Tao Baof0124322015-04-11 02:04:11 +0000506 // Any part of the log we'd copied to cache is now gone.
507 // Reset the pointer so we copy from the beginning of the temp
508 // log.
509 tmplog_offset = 0;
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700510 copy_logs();
Doug Zongker2c3539e2010-09-29 13:21:30 -0700511 }
512
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700513 return result;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800514}
515
Doug Zongkerf93d8162009-09-22 15:16:02 -0700516static int
Doug Zongker28ce47c2011-10-28 10:33:05 -0700517get_menu_selection(const char* const * headers, const char* const * items,
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700518 int menu_only, int initial_selection, Device* device) {
Doug Zongkerf93d8162009-09-22 15:16:02 -0700519 // throw away keys pressed previously, so user doesn't
520 // accidentally trigger menu items.
Doug Zongker211aebc2011-10-28 15:13:10 -0700521 ui->FlushKeys();
Doug Zongkerf93d8162009-09-22 15:16:02 -0700522
Doug Zongker211aebc2011-10-28 15:13:10 -0700523 ui->StartMenu(headers, items, initial_selection);
Doug Zongker8674a722010-09-15 11:08:23 -0700524 int selected = initial_selection;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800525 int chosen_item = -1;
526
Doug Zongkerf93d8162009-09-22 15:16:02 -0700527 while (chosen_item < 0) {
Doug Zongker211aebc2011-10-28 15:13:10 -0700528 int key = ui->WaitKey();
529 int visible = ui->IsTextVisible();
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800530
Doug Zongker5cae4452011-01-25 13:15:30 -0800531 if (key == -1) { // ui_wait_key() timed out
Doug Zongker211aebc2011-10-28 15:13:10 -0700532 if (ui->WasTextEverVisible()) {
Doug Zongker5cae4452011-01-25 13:15:30 -0800533 continue;
534 } else {
535 LOGI("timed out waiting for key input; rebooting.\n");
Doug Zongker211aebc2011-10-28 15:13:10 -0700536 ui->EndMenu();
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700537 return 0; // XXX fixme
Doug Zongker5cae4452011-01-25 13:15:30 -0800538 }
539 }
540
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700541 int action = device->HandleMenuKey(key, visible);
Doug Zongkerddd6a282009-06-09 12:22:33 -0700542
543 if (action < 0) {
544 switch (action) {
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700545 case Device::kHighlightUp:
Elliott Hughes642aaa72015-04-10 12:47:46 -0700546 selected = ui->SelectMenu(--selected);
Doug Zongkerddd6a282009-06-09 12:22:33 -0700547 break;
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700548 case Device::kHighlightDown:
Elliott Hughes642aaa72015-04-10 12:47:46 -0700549 selected = ui->SelectMenu(++selected);
Doug Zongkerddd6a282009-06-09 12:22:33 -0700550 break;
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700551 case Device::kInvokeItem:
Doug Zongkerddd6a282009-06-09 12:22:33 -0700552 chosen_item = selected;
553 break;
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700554 case Device::kNoAction:
Doug Zongkerddd6a282009-06-09 12:22:33 -0700555 break;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800556 }
Doug Zongkerf93d8162009-09-22 15:16:02 -0700557 } else if (!menu_only) {
Doug Zongkerddd6a282009-06-09 12:22:33 -0700558 chosen_item = action;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800559 }
Doug Zongkerf93d8162009-09-22 15:16:02 -0700560 }
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800561
Doug Zongker211aebc2011-10-28 15:13:10 -0700562 ui->EndMenu();
Doug Zongkerf93d8162009-09-22 15:16:02 -0700563 return chosen_item;
564}
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800565
Doug Zongker8674a722010-09-15 11:08:23 -0700566static int compare_string(const void* a, const void* b) {
567 return strcmp(*(const char**)a, *(const char**)b);
568}
569
Doug Zongker93950222014-07-08 14:10:23 -0700570// Returns a malloc'd path, or NULL.
Elliott Hughes30694c92015-03-25 15:16:51 -0700571static char* browse_directory(const char* path, Device* device) {
Michael Ward9d2629c2011-06-23 22:14:24 -0700572 ensure_path_mounted(path);
Doug Zongkerc18eeb82010-09-21 16:49:26 -0700573
Elliott Hughes30694c92015-03-25 15:16:51 -0700574 DIR* d = opendir(path);
Doug Zongker8674a722010-09-15 11:08:23 -0700575 if (d == NULL) {
576 LOGE("error opening %s: %s\n", path, strerror(errno));
Doug Zongker93950222014-07-08 14:10:23 -0700577 return NULL;
Doug Zongker8674a722010-09-15 11:08:23 -0700578 }
579
Doug Zongker8674a722010-09-15 11:08:23 -0700580 int d_size = 0;
581 int d_alloc = 10;
Doug Zongker28ce47c2011-10-28 10:33:05 -0700582 char** dirs = (char**)malloc(d_alloc * sizeof(char*));
Doug Zongker8674a722010-09-15 11:08:23 -0700583 int z_size = 1;
584 int z_alloc = 10;
Doug Zongker28ce47c2011-10-28 10:33:05 -0700585 char** zips = (char**)malloc(z_alloc * sizeof(char*));
Doug Zongker8674a722010-09-15 11:08:23 -0700586 zips[0] = strdup("../");
587
Elliott Hughes30694c92015-03-25 15:16:51 -0700588 struct dirent* de;
Doug Zongker8674a722010-09-15 11:08:23 -0700589 while ((de = readdir(d)) != NULL) {
590 int name_len = strlen(de->d_name);
591
592 if (de->d_type == DT_DIR) {
593 // skip "." and ".." entries
594 if (name_len == 1 && de->d_name[0] == '.') continue;
595 if (name_len == 2 && de->d_name[0] == '.' &&
596 de->d_name[1] == '.') continue;
597
598 if (d_size >= d_alloc) {
599 d_alloc *= 2;
Doug Zongker28ce47c2011-10-28 10:33:05 -0700600 dirs = (char**)realloc(dirs, d_alloc * sizeof(char*));
Doug Zongker8674a722010-09-15 11:08:23 -0700601 }
Doug Zongker28ce47c2011-10-28 10:33:05 -0700602 dirs[d_size] = (char*)malloc(name_len + 2);
Doug Zongker8674a722010-09-15 11:08:23 -0700603 strcpy(dirs[d_size], de->d_name);
604 dirs[d_size][name_len] = '/';
605 dirs[d_size][name_len+1] = '\0';
606 ++d_size;
607 } else if (de->d_type == DT_REG &&
608 name_len >= 4 &&
609 strncasecmp(de->d_name + (name_len-4), ".zip", 4) == 0) {
610 if (z_size >= z_alloc) {
611 z_alloc *= 2;
Doug Zongker28ce47c2011-10-28 10:33:05 -0700612 zips = (char**)realloc(zips, z_alloc * sizeof(char*));
Doug Zongker8674a722010-09-15 11:08:23 -0700613 }
614 zips[z_size++] = strdup(de->d_name);
615 }
616 }
617 closedir(d);
618
619 qsort(dirs, d_size, sizeof(char*), compare_string);
620 qsort(zips, z_size, sizeof(char*), compare_string);
621
622 // append dirs to the zips list
623 if (d_size + z_size + 1 > z_alloc) {
624 z_alloc = d_size + z_size + 1;
Doug Zongker28ce47c2011-10-28 10:33:05 -0700625 zips = (char**)realloc(zips, z_alloc * sizeof(char*));
Doug Zongker8674a722010-09-15 11:08:23 -0700626 }
627 memcpy(zips + z_size, dirs, d_size * sizeof(char*));
628 free(dirs);
629 z_size += d_size;
630 zips[z_size] = NULL;
631
Elliott Hughes8fd86d72015-04-13 14:36:02 -0700632 const char* headers[] = { "Choose a package to install:", path, NULL };
Elliott Hughes30694c92015-03-25 15:16:51 -0700633
Doug Zongker93950222014-07-08 14:10:23 -0700634 char* result;
Doug Zongker8674a722010-09-15 11:08:23 -0700635 int chosen_item = 0;
Doug Zongker93950222014-07-08 14:10:23 -0700636 while (true) {
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700637 chosen_item = get_menu_selection(headers, zips, 1, chosen_item, device);
Doug Zongker8674a722010-09-15 11:08:23 -0700638
639 char* item = zips[chosen_item];
640 int item_len = strlen(item);
641 if (chosen_item == 0) { // item 0 is always "../"
Michael Ward9d2629c2011-06-23 22:14:24 -0700642 // go up but continue browsing (if the caller is update_directory)
Doug Zongker93950222014-07-08 14:10:23 -0700643 result = NULL;
Doug Zongker8674a722010-09-15 11:08:23 -0700644 break;
645 }
Doug Zongker93950222014-07-08 14:10:23 -0700646
647 char new_path[PATH_MAX];
648 strlcpy(new_path, path, PATH_MAX);
649 strlcat(new_path, "/", PATH_MAX);
650 strlcat(new_path, item, PATH_MAX);
651
652 if (item[item_len-1] == '/') {
653 // recurse down into a subdirectory
654 new_path[strlen(new_path)-1] = '\0'; // truncate the trailing '/'
655 result = browse_directory(new_path, device);
656 if (result) break;
657 } else {
658 // selected a zip file: return the malloc'd path to the caller.
659 result = strdup(new_path);
660 break;
661 }
662 }
Doug Zongker8674a722010-09-15 11:08:23 -0700663
Elliott Hughes30694c92015-03-25 15:16:51 -0700664 for (int i = 0; i < z_size; ++i) free(zips[i]);
Doug Zongker8674a722010-09-15 11:08:23 -0700665 free(zips);
Doug Zongker8674a722010-09-15 11:08:23 -0700666
667 return result;
668}
669
Elliott Hughes30694c92015-03-25 15:16:51 -0700670static bool yes_no(Device* device, const char* question1, const char* question2) {
Elliott Hughes8fd86d72015-04-13 14:36:02 -0700671 const char* headers[] = { question1, question2, NULL };
Elliott Hughes30694c92015-03-25 15:16:51 -0700672 const char* items[] = { " No", " Yes", NULL };
Doug Zongkerddd6a282009-06-09 12:22:33 -0700673
Elliott Hughes30694c92015-03-25 15:16:51 -0700674 int chosen_item = get_menu_selection(headers, items, 1, 0, device);
675 return (chosen_item == 1);
676}
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800677
Tao Baoe39a9bc2015-03-31 12:19:05 -0700678// Return true on success.
679static bool wipe_data(int should_confirm, Device* device) {
680 if (should_confirm && !yes_no(device, "Wipe all user data?", " THIS CAN NOT BE UNDONE!")) {
681 return false;
Doug Zongkerf93d8162009-09-22 15:16:02 -0700682 }
Doug Zongker1066d2c2009-04-01 13:57:40 -0700683
Tao Bao682c34b2015-04-07 17:16:35 -0700684 modified_flash = true;
685
Doug Zongker211aebc2011-10-28 15:13:10 -0700686 ui->Print("\n-- Wiping data...\n");
Tao Baoe39a9bc2015-03-31 12:19:05 -0700687 if (device->WipeData() == 0 && erase_volume("/data") == 0 && erase_volume("/cache") == 0) {
688 ui->Print("Data wipe complete.\n");
689 return true;
690 } else {
691 ui->Print("Data wipe failed.\n");
692 return false;
693 }
Doug Zongkerf93d8162009-09-22 15:16:02 -0700694}
695
Tao Baoe39a9bc2015-03-31 12:19:05 -0700696// Return true on success.
697static bool wipe_cache(bool should_confirm, Device* device) {
Elliott Hughes30694c92015-03-25 15:16:51 -0700698 if (should_confirm && !yes_no(device, "Wipe cache?", " THIS CAN NOT BE UNDONE!")) {
Tao Baoe39a9bc2015-03-31 12:19:05 -0700699 return false;
Elliott Hughes30694c92015-03-25 15:16:51 -0700700 }
701
Tao Bao682c34b2015-04-07 17:16:35 -0700702 modified_flash = true;
703
Elliott Hughes30694c92015-03-25 15:16:51 -0700704 ui->Print("\n-- Wiping cache...\n");
Tao Baoe39a9bc2015-03-31 12:19:05 -0700705 if (erase_volume("/cache") == 0) {
706 ui->Print("Cache wipe complete.\n");
707 return true;
708 } else {
709 ui->Print("Cache wipe failed.\n");
710 return false;
711 }
Elliott Hughes30694c92015-03-25 15:16:51 -0700712}
713
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700714static void choose_recovery_file(Device* device) {
Patrick Tjincd055ee2014-12-09 11:26:40 -0800715 unsigned int i;
716 unsigned int n;
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700717 static const char** title_headers = NULL;
718 char *filename;
Tao Baof0124322015-04-11 02:04:11 +0000719 // "Go back" + LAST_KMSG_FILE + KEEP_LOG_COUNT + terminating NULL entry
720 char* entries[KEEP_LOG_COUNT + 3];
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700721 memset(entries, 0, sizeof(entries));
722
Patrick Tjincd055ee2014-12-09 11:26:40 -0800723 n = 0;
724 entries[n++] = strdup("Go back");
725
Tao Baof0124322015-04-11 02:04:11 +0000726 // Add kernel kmsg file if available
727 if ((ensure_path_mounted(LAST_KMSG_FILE) == 0) && (access(LAST_KMSG_FILE, R_OK) == 0)) {
728 entries[n++] = strdup(LAST_KMSG_FILE);
729 }
730
Patrick Tjincd055ee2014-12-09 11:26:40 -0800731 // Add LAST_LOG_FILE + LAST_LOG_FILE.x
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700732 for (i = 0; i < KEEP_LOG_COUNT; i++) {
733 char *filename;
Tao Baof0124322015-04-11 02:04:11 +0000734 if (asprintf(&filename, (i==0) ? LAST_LOG_FILE : (LAST_LOG_FILE ".%d"), i) == -1) {
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700735 // memory allocation failure - return early. Should never happen.
736 return;
737 }
738 if ((ensure_path_mounted(filename) != 0) || (access(filename, R_OK) == -1)) {
739 free(filename);
Patrick Tjincd055ee2014-12-09 11:26:40 -0800740 entries[n++] = NULL;
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700741 break;
742 }
Patrick Tjincd055ee2014-12-09 11:26:40 -0800743 entries[n++] = filename;
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700744 }
745
Elliott Hughes8fd86d72015-04-13 14:36:02 -0700746 const char* headers[] = { "Select file to view", NULL };
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700747
Elliott Hughes8de52072015-04-08 20:06:50 -0700748 while (true) {
Elliott Hughes30694c92015-03-25 15:16:51 -0700749 int chosen_item = get_menu_selection(headers, entries, 1, 0, device);
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700750 if (chosen_item == 0) break;
Elliott Hughes8de52072015-04-08 20:06:50 -0700751
752 // TODO: do we need to redirect? ShowFile could just avoid writing to stdio.
753 redirect_stdio("/dev/null");
754 ui->ShowFile(entries[chosen_item]);
755 redirect_stdio(TEMPORARY_LOG_FILE);
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700756 }
757
Patrick Tjincd055ee2014-12-09 11:26:40 -0800758 for (i = 0; i < (sizeof(entries) / sizeof(*entries)); i++) {
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700759 free(entries[i]);
760 }
761}
762
Tao Bao145d8612015-03-25 15:51:15 -0700763static int apply_from_sdcard(Device* device, bool* wipe_cache) {
Tao Bao682c34b2015-04-07 17:16:35 -0700764 modified_flash = true;
765
Christian Poetzsch4ec58a42015-02-19 10:42:39 +0000766 if (ensure_path_mounted(SDCARD_ROOT) != 0) {
767 ui->Print("\n-- Couldn't mount %s.\n", SDCARD_ROOT);
768 return INSTALL_ERROR;
769 }
770
771 char* path = browse_directory(SDCARD_ROOT, device);
772 if (path == NULL) {
Elliott Hughes018ed312015-04-08 16:51:36 -0700773 ui->Print("\n-- No package file selected.\n");
Christian Poetzsch4ec58a42015-02-19 10:42:39 +0000774 return INSTALL_ERROR;
775 }
776
777 ui->Print("\n-- Install %s ...\n", path);
778 set_sdcard_update_bootloader_message();
779 void* token = start_sdcard_fuse(path);
780
781 int status = install_package(FUSE_SIDELOAD_HOST_PATHNAME, wipe_cache,
782 TEMPORARY_INSTALL_FILE, false);
783
784 finish_sdcard_fuse(token);
785 ensure_path_unmounted(SDCARD_ROOT);
786 return status;
787}
788
Doug Zongker8d9d3d52014-04-01 13:20:23 -0700789// Return REBOOT, SHUTDOWN, or REBOOT_BOOTLOADER. Returning NO_ACTION
790// means to take the default, which is to reboot or shutdown depending
791// on if the --shutdown_after flag was passed to recovery.
792static Device::BuiltinAction
Doug Zongker6c8553d2012-09-24 10:40:47 -0700793prompt_and_wait(Device* device, int status) {
Doug Zongkerf93d8162009-09-22 15:16:02 -0700794 for (;;) {
795 finish_recovery(NULL);
Doug Zongker6c8553d2012-09-24 10:40:47 -0700796 switch (status) {
797 case INSTALL_SUCCESS:
798 case INSTALL_NONE:
799 ui->SetBackground(RecoveryUI::NO_COMMAND);
800 break;
801
802 case INSTALL_ERROR:
803 case INSTALL_CORRUPT:
804 ui->SetBackground(RecoveryUI::ERROR);
805 break;
806 }
Doug Zongker211aebc2011-10-28 15:13:10 -0700807 ui->SetProgressType(RecoveryUI::EMPTY);
Doug Zongkerf93d8162009-09-22 15:16:02 -0700808
Elliott Hughes8fd86d72015-04-13 14:36:02 -0700809 int chosen_item = get_menu_selection(nullptr, device->GetMenuItems(), 0, 0, device);
Doug Zongkerf93d8162009-09-22 15:16:02 -0700810
811 // device-specific code may take some action here. It may
812 // return one of the core actions handled in the switch
813 // statement below.
Doug Zongker8d9d3d52014-04-01 13:20:23 -0700814 Device::BuiltinAction chosen_action = device->InvokeMenuItem(chosen_item);
Doug Zongkerf93d8162009-09-22 15:16:02 -0700815
Elliott Hughes30694c92015-03-25 15:16:51 -0700816 bool should_wipe_cache = false;
Doug Zongker8d9d3d52014-04-01 13:20:23 -0700817 switch (chosen_action) {
818 case Device::NO_ACTION:
819 break;
820
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700821 case Device::REBOOT:
Doug Zongker8d9d3d52014-04-01 13:20:23 -0700822 case Device::SHUTDOWN:
823 case Device::REBOOT_BOOTLOADER:
824 return chosen_action;
Doug Zongkerf93d8162009-09-22 15:16:02 -0700825
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700826 case Device::WIPE_DATA:
827 wipe_data(ui->IsTextVisible(), device);
Doug Zongker8d9d3d52014-04-01 13:20:23 -0700828 if (!ui->IsTextVisible()) return Device::NO_ACTION;
Doug Zongkerf93d8162009-09-22 15:16:02 -0700829 break;
830
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700831 case Device::WIPE_CACHE:
Elliott Hughes30694c92015-03-25 15:16:51 -0700832 wipe_cache(ui->IsTextVisible(), device);
Doug Zongker8d9d3d52014-04-01 13:20:23 -0700833 if (!ui->IsTextVisible()) return Device::NO_ACTION;
Doug Zongkerf93d8162009-09-22 15:16:02 -0700834 break;
835
Christian Poetzsch4ec58a42015-02-19 10:42:39 +0000836 case Device::APPLY_ADB_SIDELOAD:
Elliott Hughesec283402015-04-10 10:01:53 -0700837 case Device::APPLY_SDCARD:
Christian Poetzsch4ec58a42015-02-19 10:42:39 +0000838 {
839 bool adb = (chosen_action == Device::APPLY_ADB_SIDELOAD);
840 if (adb) {
Elliott Hughes30694c92015-03-25 15:16:51 -0700841 status = apply_from_adb(ui, &should_wipe_cache, TEMPORARY_INSTALL_FILE);
Doug Zongkerd0181b82011-10-19 10:51:12 -0700842 } else {
Elliott Hughes30694c92015-03-25 15:16:51 -0700843 status = apply_from_sdcard(device, &should_wipe_cache);
Doug Zongkerd0181b82011-10-19 10:51:12 -0700844 }
Doug Zongker945fc682014-07-10 10:50:39 -0700845
Elliott Hughes30694c92015-03-25 15:16:51 -0700846 if (status == INSTALL_SUCCESS && should_wipe_cache) {
Tao Baoe39a9bc2015-03-31 12:19:05 -0700847 if (!wipe_cache(false, device)) {
848 status = INSTALL_ERROR;
849 }
Christian Poetzsch4ec58a42015-02-19 10:42:39 +0000850 }
851
Tao Baoc679f932015-03-30 09:43:49 -0700852 if (status != INSTALL_SUCCESS) {
853 ui->SetBackground(RecoveryUI::ERROR);
854 ui->Print("Installation aborted.\n");
855 copy_logs();
856 } else if (!ui->IsTextVisible()) {
857 return Device::NO_ACTION; // reboot if logs aren't visible
858 } else {
859 ui->Print("\nInstall from %s complete.\n", adb ? "ADB" : "SD card");
Doug Zongker8674a722010-09-15 11:08:23 -0700860 }
Doug Zongkerf93d8162009-09-22 15:16:02 -0700861 }
862 break;
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700863
Elliott Hughesec283402015-04-10 10:01:53 -0700864 case Device::VIEW_RECOVERY_LOGS:
865 choose_recovery_file(device);
Michael Ward9d2629c2011-06-23 22:14:24 -0700866 break;
Doug Zongker9270a202012-01-09 15:16:13 -0800867
Elliott Hughesec283402015-04-10 10:01:53 -0700868 case Device::MOUNT_SYSTEM:
869 if (ensure_path_mounted("/system") != -1) {
Elliott Hughese46066f2015-04-13 13:29:38 -0700870 ui->Print("Mounted /system.\n");
Elliott Hughesec283402015-04-10 10:01:53 -0700871 }
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700872 break;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800873 }
874 }
875}
876
877static void
Oscar Montemayor05231562009-11-30 08:40:57 -0800878print_property(const char *key, const char *name, void *cookie) {
Doug Zongker56c51052010-07-01 09:18:44 -0700879 printf("%s=%s\n", key, name);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800880}
881
Doug Zongker02ec6b82012-08-22 17:26:40 -0700882static void
883load_locale_from_cache() {
884 FILE* fp = fopen_path(LOCALE_FILE, "r");
885 char buffer[80];
886 if (fp != NULL) {
887 fgets(buffer, sizeof(buffer), fp);
888 int j = 0;
Doug Zongker5fa8c232012-09-18 12:37:02 -0700889 unsigned int i;
Doug Zongker02ec6b82012-08-22 17:26:40 -0700890 for (i = 0; i < sizeof(buffer) && buffer[i]; ++i) {
891 if (!isspace(buffer[i])) {
892 buffer[j++] = buffer[i];
893 }
894 }
895 buffer[j] = 0;
896 locale = strdup(buffer);
Devin Kim6016d082012-10-08 09:47:37 -0700897 check_and_fclose(fp, LOCALE_FILE);
Doug Zongker02ec6b82012-08-22 17:26:40 -0700898 }
899}
900
Doug Zongker7c3ae452013-05-14 11:03:02 -0700901static RecoveryUI* gCurrentUI = NULL;
902
903void
904ui_print(const char* format, ...) {
905 char buffer[256];
906
907 va_list ap;
908 va_start(ap, format);
909 vsnprintf(buffer, sizeof(buffer), format, ap);
910 va_end(ap);
911
912 if (gCurrentUI != NULL) {
913 gCurrentUI->Print("%s", buffer);
914 } else {
915 fputs(buffer, stdout);
916 }
917}
918
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800919int
Oscar Montemayor05231562009-11-30 08:40:57 -0800920main(int argc, char **argv) {
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800921 time_t start = time(NULL);
922
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700923 redirect_stdio(TEMPORARY_LOG_FILE);
Doug Zongker9270a202012-01-09 15:16:13 -0800924
925 // If this binary is started with the single argument "--adbd",
926 // instead of being the normal recovery binary, it turns into kind
927 // of a stripped-down version of adbd that only supports the
928 // 'sideload' command. Note this must be a real argument, not
929 // anything in the command file or bootloader control block; the
930 // only way recovery should be run with this argument is when it
931 // starts a copy of itself from the apply_from_adb() function.
932 if (argc == 2 && strcmp(argv[1], "--adbd") == 0) {
Dan Albertf3a57262015-02-19 13:21:14 -0800933 adb_main(0, DEFAULT_ADB_PORT);
Doug Zongker9270a202012-01-09 15:16:13 -0800934 return 0;
935 }
936
Doug Zongker19a8e242014-01-21 09:25:41 -0800937 printf("Starting recovery (pid %d) on %s", getpid(), ctime(&start));
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800938
Doug Zongkerd4208f92010-09-20 12:16:13 -0700939 load_volume_table();
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800940 get_args(&argc, &argv);
941
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800942 const char *send_intent = NULL;
943 const char *update_package = NULL;
Tao Baoe39a9bc2015-03-31 12:19:05 -0700944 bool should_wipe_data = false;
Tao Baoc679f932015-03-30 09:43:49 -0700945 bool should_wipe_cache = false;
Tao Bao145d8612015-03-25 15:51:15 -0700946 bool show_text = false;
Tao Baoc679f932015-03-30 09:43:49 -0700947 bool sideload = false;
948 bool sideload_auto_reboot = false;
Doug Zongkere5d5ac72012-04-12 11:01:22 -0700949 bool just_exit = false;
Doug Zongkerb1d12632014-03-18 10:32:12 -0700950 bool shutdown_after = false;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800951
952 int arg;
953 while ((arg = getopt_long(argc, argv, "", OPTIONS, NULL)) != -1) {
954 switch (arg) {
Tao Baoc679f932015-03-30 09:43:49 -0700955 case 'i': send_intent = optarg; break;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800956 case 'u': update_package = optarg; break;
Tao Baoe39a9bc2015-03-31 12:19:05 -0700957 case 'w': should_wipe_data = true; break;
Tao Baoc679f932015-03-30 09:43:49 -0700958 case 'c': should_wipe_cache = true; break;
Tao Bao145d8612015-03-25 15:51:15 -0700959 case 't': show_text = true; break;
Tao Baoc679f932015-03-30 09:43:49 -0700960 case 's': sideload = true; break;
961 case 'a': sideload = true; sideload_auto_reboot = true; break;
Doug Zongkere5d5ac72012-04-12 11:01:22 -0700962 case 'x': just_exit = true; break;
Doug Zongker02ec6b82012-08-22 17:26:40 -0700963 case 'l': locale = optarg; break;
Doug Zongkerc87bab12013-11-25 13:53:25 -0800964 case 'g': {
965 if (stage == NULL || *stage == '\0') {
966 char buffer[20] = "1/";
967 strncat(buffer, optarg, sizeof(buffer)-3);
968 stage = strdup(buffer);
969 }
970 break;
971 }
Doug Zongkerb1d12632014-03-18 10:32:12 -0700972 case 'p': shutdown_after = true; break;
Jeff Sharkeya6e13ae2014-09-24 11:46:17 -0700973 case 'r': reason = optarg; break;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800974 case '?':
975 LOGE("Invalid command argument\n");
976 continue;
977 }
978 }
979
Doug Zongker02ec6b82012-08-22 17:26:40 -0700980 if (locale == NULL) {
981 load_locale_from_cache();
982 }
983 printf("locale is [%s]\n", locale);
Doug Zongker0d32f252014-02-13 15:07:56 -0800984 printf("stage is [%s]\n", stage);
Jeff Sharkeya6e13ae2014-09-24 11:46:17 -0700985 printf("reason is [%s]\n", reason);
Doug Zongker02ec6b82012-08-22 17:26:40 -0700986
987 Device* device = make_device();
988 ui = device->GetUI();
Doug Zongker7c3ae452013-05-14 11:03:02 -0700989 gCurrentUI = ui;
Doug Zongker02ec6b82012-08-22 17:26:40 -0700990
Doug Zongker5fa8c232012-09-18 12:37:02 -0700991 ui->SetLocale(locale);
Doug Zongker02ec6b82012-08-22 17:26:40 -0700992 ui->Init();
Doug Zongkerc87bab12013-11-25 13:53:25 -0800993
994 int st_cur, st_max;
995 if (stage != NULL && sscanf(stage, "%d/%d", &st_cur, &st_max) == 2) {
996 ui->SetStage(st_cur, st_max);
997 }
998
Doug Zongker02ec6b82012-08-22 17:26:40 -0700999 ui->SetBackground(RecoveryUI::NONE);
1000 if (show_text) ui->ShowText(true);
1001
Stephen Smalley779701d2012-02-09 14:13:23 -05001002 struct selinux_opt seopts[] = {
1003 { SELABEL_OPT_PATH, "/file_contexts" }
1004 };
1005
1006 sehandle = selabel_open(SELABEL_CTX_FILE, seopts, 1);
1007
1008 if (!sehandle) {
Doug Zongkerfafc85b2013-07-09 12:29:45 -07001009 ui->Print("Warning: No file_contexts\n");
Stephen Smalley779701d2012-02-09 14:13:23 -05001010 }
Stephen Smalley779701d2012-02-09 14:13:23 -05001011
Doug Zongkerdaefc1d2011-10-31 09:34:15 -07001012 device->StartRecovery();
Doug Zongkerefa1bab2010-02-01 15:59:12 -08001013
Doug Zongker56c51052010-07-01 09:18:44 -07001014 printf("Command:");
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001015 for (arg = 0; arg < argc; arg++) {
Doug Zongker56c51052010-07-01 09:18:44 -07001016 printf(" \"%s\"", argv[arg]);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001017 }
Doug Zongker9b125b02010-09-22 12:01:37 -07001018 printf("\n");
1019
1020 if (update_package) {
1021 // For backwards compatibility on the cache partition only, if
1022 // we're given an old 'root' path "CACHE:foo", change it to
1023 // "/cache/foo".
1024 if (strncmp(update_package, "CACHE:", 6) == 0) {
1025 int len = strlen(update_package) + 10;
Doug Zongker28ce47c2011-10-28 10:33:05 -07001026 char* modified_path = (char*)malloc(len);
Doug Zongker9b125b02010-09-22 12:01:37 -07001027 strlcpy(modified_path, "/cache/", len);
1028 strlcat(modified_path, update_package+6, len);
1029 printf("(replacing path \"%s\" with \"%s\")\n",
1030 update_package, modified_path);
1031 update_package = modified_path;
1032 }
1033 }
1034 printf("\n");
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001035
1036 property_list(print_property, NULL);
Doug Zongker56c51052010-07-01 09:18:44 -07001037 printf("\n");
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001038
Elliott Hughesbb78d622015-04-09 20:51:08 -07001039 ui->Print("Supported API: %d\n", RECOVERY_API_VERSION);
1040
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001041 int status = INSTALL_SUCCESS;
1042
Doug Zongker540d57f2011-01-18 13:36:58 -08001043 if (update_package != NULL) {
Tao Baoc679f932015-03-30 09:43:49 -07001044 status = install_package(update_package, &should_wipe_cache, TEMPORARY_INSTALL_FILE, true);
1045 if (status == INSTALL_SUCCESS && should_wipe_cache) {
1046 wipe_cache(false, device);
Doug Zongkerd0181b82011-10-19 10:51:12 -07001047 }
Doug Zongker7c3ae452013-05-14 11:03:02 -07001048 if (status != INSTALL_SUCCESS) {
1049 ui->Print("Installation aborted.\n");
1050
1051 // If this is an eng or userdebug build, then automatically
1052 // turn the text display on if the script fails so the error
1053 // message is visible.
Elliott Hughesf14af802015-02-10 14:46:14 -08001054 if (is_ro_debuggable()) {
Doug Zongker7c3ae452013-05-14 11:03:02 -07001055 ui->ShowText(true);
1056 }
1057 }
Tao Baoe39a9bc2015-03-31 12:19:05 -07001058 } else if (should_wipe_data) {
1059 if (!wipe_data(false, device)) {
1060 status = INSTALL_ERROR;
1061 }
Tao Baoc679f932015-03-30 09:43:49 -07001062 } else if (should_wipe_cache) {
Tao Baoe39a9bc2015-03-31 12:19:05 -07001063 if (!wipe_cache(false, device)) {
1064 status = INSTALL_ERROR;
1065 }
Tao Baoc679f932015-03-30 09:43:49 -07001066 } else if (sideload) {
1067 // 'adb reboot sideload' acts the same as user presses key combinations
1068 // to enter the sideload mode. When 'sideload-auto-reboot' is used, text
1069 // display will NOT be turned on by default. And it will reboot after
1070 // sideload finishes even if there are errors. Unless one turns on the
1071 // text display during the installation. This is to enable automated
1072 // testing.
1073 if (!sideload_auto_reboot) {
1074 ui->ShowText(true);
1075 }
1076 status = apply_from_adb(ui, &should_wipe_cache, TEMPORARY_INSTALL_FILE);
1077 if (status == INSTALL_SUCCESS && should_wipe_cache) {
Tao Baoe39a9bc2015-03-31 12:19:05 -07001078 if (!wipe_cache(false, device)) {
1079 status = INSTALL_ERROR;
1080 }
Tao Baoc679f932015-03-30 09:43:49 -07001081 }
1082 ui->Print("\nInstall from ADB complete (status: %d).\n", status);
1083 if (sideload_auto_reboot) {
1084 ui->Print("Rebooting automatically.\n");
1085 }
Doug Zongkere5d5ac72012-04-12 11:01:22 -07001086 } else if (!just_exit) {
Doug Zongker02ec6b82012-08-22 17:26:40 -07001087 status = INSTALL_NONE; // No command specified
1088 ui->SetBackground(RecoveryUI::NO_COMMAND);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001089 }
1090
Tao Baoc679f932015-03-30 09:43:49 -07001091 if (!sideload_auto_reboot && (status == INSTALL_ERROR || status == INSTALL_CORRUPT)) {
Doug Zongkerf24fd7e2013-07-02 11:43:25 -07001092 copy_logs();
Doug Zongker02ec6b82012-08-22 17:26:40 -07001093 ui->SetBackground(RecoveryUI::ERROR);
1094 }
Tao Baoc679f932015-03-30 09:43:49 -07001095
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001096 Device::BuiltinAction after = shutdown_after ? Device::SHUTDOWN : Device::REBOOT;
Tao Baoc679f932015-03-30 09:43:49 -07001097 if ((status != INSTALL_SUCCESS && !sideload_auto_reboot) || ui->IsTextVisible()) {
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001098 Device::BuiltinAction temp = prompt_and_wait(device, status);
Tao Baoc679f932015-03-30 09:43:49 -07001099 if (temp != Device::NO_ACTION) {
1100 after = temp;
1101 }
Doug Zongker8674a722010-09-15 11:08:23 -07001102 }
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001103
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001104 // Save logs and clean up before rebooting or shutting down.
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001105 finish_recovery(send_intent);
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001106
1107 switch (after) {
1108 case Device::SHUTDOWN:
1109 ui->Print("Shutting down...\n");
1110 property_set(ANDROID_RB_PROPERTY, "shutdown,");
1111 break;
1112
1113 case Device::REBOOT_BOOTLOADER:
1114 ui->Print("Rebooting to bootloader...\n");
1115 property_set(ANDROID_RB_PROPERTY, "reboot,bootloader");
1116 break;
1117
1118 default:
1119 ui->Print("Rebooting...\n");
1120 property_set(ANDROID_RB_PROPERTY, "reboot,");
1121 break;
Doug Zongkerb1d12632014-03-18 10:32:12 -07001122 }
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001123 sleep(5); // should reboot before this finishes
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001124 return EXIT_SUCCESS;
1125}