blob: bbfeda4a652f73c7567d3df071b5e70a7c01204a [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
Doug Zongker211aebc2011-10-28 15:13:10 -070087RecoveryUI* ui = NULL;
Doug Zongker02ec6b82012-08-22 17:26:40 -070088char* locale = NULL;
Doug Zongkerc87bab12013-11-25 13:53:25 -080089char* stage = NULL;
Jeff Sharkeya6e13ae2014-09-24 11:46:17 -070090char* reason = NULL;
Tao Bao682c34b2015-04-07 17:16:35 -070091bool modified_flash = false;
Doug Zongker211aebc2011-10-28 15:13:10 -070092
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080093/*
94 * The recovery tool communicates with the main system through /cache files.
95 * /cache/recovery/command - INPUT - command line for tool, one arg per line
96 * /cache/recovery/log - OUTPUT - combined log file from recovery run(s)
97 * /cache/recovery/intent - OUTPUT - intent that was passed in
98 *
99 * The arguments which may be supplied in the recovery.command file:
100 * --send_intent=anystring - write the text out to recovery.intent
Doug Zongkerd4208f92010-09-20 12:16:13 -0700101 * --update_package=path - verify install an OTA package file
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800102 * --wipe_data - erase user data (and cache), then reboot
103 * --wipe_cache - wipe cache (but not user data), then reboot
Oscar Montemayor05231562009-11-30 08:40:57 -0800104 * --set_encrypted_filesystem=on|off - enables / diasables encrypted fs
Doug Zongkere5d5ac72012-04-12 11:01:22 -0700105 * --just_exit - do nothing; exit and reboot
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800106 *
107 * After completing, we remove /cache/recovery/command and reboot.
108 * Arguments may also be supplied in the bootloader control block (BCB).
109 * These important scenarios must be safely restartable at any point:
110 *
111 * FACTORY RESET
112 * 1. user selects "factory reset"
113 * 2. main system writes "--wipe_data" to /cache/recovery/command
114 * 3. main system reboots into recovery
115 * 4. get_args() writes BCB with "boot-recovery" and "--wipe_data"
116 * -- after this, rebooting will restart the erase --
Doug Zongkerd4208f92010-09-20 12:16:13 -0700117 * 5. erase_volume() reformats /data
118 * 6. erase_volume() reformats /cache
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800119 * 7. finish_recovery() erases BCB
120 * -- after this, rebooting will restart the main system --
121 * 8. main() calls reboot() to boot main system
122 *
123 * OTA INSTALL
124 * 1. main system downloads OTA package to /cache/some-filename.zip
Doug Zongker9b125b02010-09-22 12:01:37 -0700125 * 2. main system writes "--update_package=/cache/some-filename.zip"
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800126 * 3. main system reboots into recovery
127 * 4. get_args() writes BCB with "boot-recovery" and "--update_package=..."
128 * -- after this, rebooting will attempt to reinstall the update --
129 * 5. install_package() attempts to install the update
130 * NOTE: the package install must itself be restartable from any point
131 * 6. finish_recovery() erases BCB
132 * -- after this, rebooting will (try to) restart the main system --
133 * 7. ** if install failed **
134 * 7a. prompt_and_wait() shows an error icon and waits for the user
135 * 7b; the user reboots (pulling the battery, etc) into the main system
136 * 8. main() calls maybe_install_firmware_update()
137 * ** if the update contained radio/hboot firmware **:
138 * 8a. m_i_f_u() writes BCB with "boot-recovery" and "--wipe_cache"
139 * -- after this, rebooting will reformat cache & restart main system --
140 * 8b. m_i_f_u() writes firmware image into raw cache partition
141 * 8c. m_i_f_u() writes BCB with "update-radio/hboot" and "--wipe_cache"
142 * -- after this, rebooting will attempt to reinstall firmware --
143 * 8d. bootloader tries to flash firmware
144 * 8e. bootloader writes BCB with "boot-recovery" (keeping "--wipe_cache")
145 * -- after this, rebooting will reformat cache & restart main system --
Doug Zongkerd4208f92010-09-20 12:16:13 -0700146 * 8f. erase_volume() reformats /cache
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800147 * 8g. finish_recovery() erases BCB
148 * -- after this, rebooting will (try to) restart the main system --
149 * 9. main() calls reboot() to boot main system
150 */
151
152static const int MAX_ARG_LENGTH = 4096;
153static const int MAX_ARGS = 100;
154
Doug Zongkerd4208f92010-09-20 12:16:13 -0700155// open a given path, mounting partitions as necessary
Doug Zongker469243e2011-04-12 09:28:10 -0700156FILE*
Doug Zongkerd4208f92010-09-20 12:16:13 -0700157fopen_path(const char *path, const char *mode) {
158 if (ensure_path_mounted(path) != 0) {
159 LOGE("Can't mount %s\n", path);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800160 return NULL;
161 }
162
163 // When writing, try to create the containing directory, if necessary.
164 // Use generous permissions, the system (init.rc) will reset them.
Stephen Smalley779701d2012-02-09 14:13:23 -0500165 if (strchr("wa", mode[0])) dirCreateHierarchy(path, 0777, NULL, 1, sehandle);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800166
167 FILE *fp = fopen(path, mode);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800168 return fp;
169}
170
Elliott Hughesf14af802015-02-10 14:46:14 -0800171bool is_ro_debuggable() {
172 char value[PROPERTY_VALUE_MAX+1];
173 return (property_get("ro.debuggable", value, NULL) == 1 && value[0] == '1');
174}
175
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700176static void redirect_stdio(const char* filename) {
177 // If these fail, there's not really anywhere to complain...
178 freopen(filename, "a", stdout); setbuf(stdout, NULL);
179 freopen(filename, "a", stderr); setbuf(stderr, NULL);
180}
181
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800182// close a file, log an error if the error indicator is set
183static void
184check_and_fclose(FILE *fp, const char *name) {
185 fflush(fp);
186 if (ferror(fp)) LOGE("Error in %s\n(%s)\n", name, strerror(errno));
187 fclose(fp);
188}
189
190// command line args come from, in decreasing precedence:
191// - the actual command line
192// - the bootloader control block (one per line, after "recovery")
193// - the contents of COMMAND_FILE (one per line)
194static void
195get_args(int *argc, char ***argv) {
196 struct bootloader_message boot;
197 memset(&boot, 0, sizeof(boot));
198 get_bootloader_message(&boot); // this may fail, leaving a zeroed structure
Doug Zongkerc87bab12013-11-25 13:53:25 -0800199 stage = strndup(boot.stage, sizeof(boot.stage));
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800200
201 if (boot.command[0] != 0 && boot.command[0] != 255) {
Mark Salyzynf3bb31c2014-03-14 09:39:48 -0700202 LOGI("Boot command: %.*s\n", (int)sizeof(boot.command), boot.command);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800203 }
204
205 if (boot.status[0] != 0 && boot.status[0] != 255) {
Mark Salyzynf3bb31c2014-03-14 09:39:48 -0700206 LOGI("Boot status: %.*s\n", (int)sizeof(boot.status), boot.status);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800207 }
208
209 // --- if arguments weren't supplied, look in the bootloader control block
210 if (*argc <= 1) {
211 boot.recovery[sizeof(boot.recovery) - 1] = '\0'; // Ensure termination
212 const char *arg = strtok(boot.recovery, "\n");
213 if (arg != NULL && !strcmp(arg, "recovery")) {
214 *argv = (char **) malloc(sizeof(char *) * MAX_ARGS);
215 (*argv)[0] = strdup(arg);
216 for (*argc = 1; *argc < MAX_ARGS; ++*argc) {
217 if ((arg = strtok(NULL, "\n")) == NULL) break;
218 (*argv)[*argc] = strdup(arg);
219 }
220 LOGI("Got arguments from boot message\n");
221 } else if (boot.recovery[0] != 0 && boot.recovery[0] != 255) {
222 LOGE("Bad boot message\n\"%.20s\"\n", boot.recovery);
223 }
224 }
225
226 // --- if that doesn't work, try the command file
227 if (*argc <= 1) {
Doug Zongkerd4208f92010-09-20 12:16:13 -0700228 FILE *fp = fopen_path(COMMAND_FILE, "r");
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800229 if (fp != NULL) {
Jin Feng93ffa752013-06-04 17:46:24 +0800230 char *token;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800231 char *argv0 = (*argv)[0];
232 *argv = (char **) malloc(sizeof(char *) * MAX_ARGS);
233 (*argv)[0] = argv0; // use the same program name
234
235 char buf[MAX_ARG_LENGTH];
236 for (*argc = 1; *argc < MAX_ARGS; ++*argc) {
237 if (!fgets(buf, sizeof(buf), fp)) break;
Jin Feng93ffa752013-06-04 17:46:24 +0800238 token = strtok(buf, "\r\n");
239 if (token != NULL) {
240 (*argv)[*argc] = strdup(token); // Strip newline.
241 } else {
242 --*argc;
243 }
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800244 }
245
246 check_and_fclose(fp, COMMAND_FILE);
247 LOGI("Got arguments from %s\n", COMMAND_FILE);
248 }
249 }
250
251 // --> write the arguments we have back into the bootloader control block
252 // always boot into recovery after this (until finish_recovery() is called)
253 strlcpy(boot.command, "boot-recovery", sizeof(boot.command));
254 strlcpy(boot.recovery, "recovery\n", sizeof(boot.recovery));
255 int i;
256 for (i = 1; i < *argc; ++i) {
257 strlcat(boot.recovery, (*argv)[i], sizeof(boot.recovery));
258 strlcat(boot.recovery, "\n", sizeof(boot.recovery));
259 }
260 set_bootloader_message(&boot);
261}
262
Doug Zongker34c98df2009-08-18 12:05:45 -0700263static void
Oscar Montemayor05231562009-11-30 08:40:57 -0800264set_sdcard_update_bootloader_message() {
Doug Zongker34c98df2009-08-18 12:05:45 -0700265 struct bootloader_message boot;
266 memset(&boot, 0, sizeof(boot));
267 strlcpy(boot.command, "boot-recovery", sizeof(boot.command));
268 strlcpy(boot.recovery, "recovery\n", sizeof(boot.recovery));
269 set_bootloader_message(&boot);
270}
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800271
Patrick Tjincd055ee2014-12-09 11:26:40 -0800272// read from kernel log into buffer and write out to file
273static void
274save_kernel_log(const char *destination) {
275 int n;
276 char *buffer;
277 int klog_buf_len;
278 FILE *log;
279
280 klog_buf_len = klogctl(KLOG_SIZE_BUFFER, 0, 0);
281 if (klog_buf_len <= 0) {
282 LOGE("Error getting klog size (%s), using default\n", strerror(errno));
283 klog_buf_len = KLOG_DEFAULT_LEN;
284 }
285
286 buffer = (char *)malloc(klog_buf_len);
287 if (!buffer) {
288 LOGE("Can't alloc %d bytes for klog buffer\n", klog_buf_len);
289 return;
290 }
291
292 n = klogctl(KLOG_READ_ALL, buffer, klog_buf_len);
293 if (n < 0) {
294 LOGE("Error in reading klog (%s)\n", strerror(errno));
295 free(buffer);
296 return;
297 }
298
299 log = fopen_path(destination, "w");
300 if (log == NULL) {
301 LOGE("Can't open %s\n", destination);
302 free(buffer);
303 return;
304 }
305 fwrite(buffer, n, 1, log);
306 check_and_fclose(log, destination);
307 free(buffer);
308}
309
Doug Zongker2c3539e2010-09-29 13:21:30 -0700310// How much of the temp log we have copied to the copy in cache.
311static long tmplog_offset = 0;
312
313static void
Doug Zongkerd0181b82011-10-19 10:51:12 -0700314copy_log_file(const char* source, const char* destination, int append) {
Doug Zongker2c3539e2010-09-29 13:21:30 -0700315 FILE *log = fopen_path(destination, append ? "a" : "w");
316 if (log == NULL) {
317 LOGE("Can't open %s\n", destination);
318 } else {
Doug Zongkerd0181b82011-10-19 10:51:12 -0700319 FILE *tmplog = fopen(source, "r");
320 if (tmplog != NULL) {
Doug Zongker2c3539e2010-09-29 13:21:30 -0700321 if (append) {
322 fseek(tmplog, tmplog_offset, SEEK_SET); // Since last write
323 }
324 char buf[4096];
325 while (fgets(buf, sizeof(buf), tmplog)) fputs(buf, log);
326 if (append) {
327 tmplog_offset = ftell(tmplog);
328 }
Doug Zongkerd0181b82011-10-19 10:51:12 -0700329 check_and_fclose(tmplog, source);
Doug Zongker2c3539e2010-09-29 13:21:30 -0700330 }
331 check_and_fclose(log, destination);
332 }
333}
334
Doug Zongkerda1ebae2013-05-16 11:23:48 -0700335// Rename last_log -> last_log.1 -> last_log.2 -> ... -> last_log.$max
336// Overwrites any existing last_log.$max.
Tao Bao682c34b2015-04-07 17:16:35 -0700337static void rotate_last_logs(int max) {
338 // Logs should only be rotated once.
339 static bool rotated = false;
340 if (rotated) {
341 return;
342 }
343 rotated = true;
344 ensure_path_mounted(LAST_LOG_FILE);
345
Doug Zongkerda1ebae2013-05-16 11:23:48 -0700346 char oldfn[256];
347 char newfn[256];
Tao Bao682c34b2015-04-07 17:16:35 -0700348 for (int i = max-1; i >= 0; --i) {
Doug Zongkerda1ebae2013-05-16 11:23:48 -0700349 snprintf(oldfn, sizeof(oldfn), (i==0) ? LAST_LOG_FILE : (LAST_LOG_FILE ".%d"), i);
350 snprintf(newfn, sizeof(newfn), LAST_LOG_FILE ".%d", i+1);
351 // ignore errors
352 rename(oldfn, newfn);
353 }
354}
Doug Zongker2c3539e2010-09-29 13:21:30 -0700355
Tao Bao682c34b2015-04-07 17:16:35 -0700356static void copy_logs() {
357 // We only rotate and record the log of the current session if there are
358 // actual attempts to modify the flash, such as wipes, installs from BCB
359 // or menu selections. This is to avoid unnecessary rotation (and
360 // possible deletion) of log files, if it does not do anything loggable.
361 if (!modified_flash) {
362 return;
363 }
364
365 rotate_last_logs(KEEP_LOG_COUNT);
366
Doug Zongkerf24fd7e2013-07-02 11:43:25 -0700367 // Copy logs to cache so the system can find out what happened.
368 copy_log_file(TEMPORARY_LOG_FILE, LOG_FILE, true);
369 copy_log_file(TEMPORARY_LOG_FILE, LAST_LOG_FILE, false);
370 copy_log_file(TEMPORARY_INSTALL_FILE, LAST_INSTALL_FILE, false);
Patrick Tjincd055ee2014-12-09 11:26:40 -0800371 save_kernel_log(LAST_KMSG_FILE);
Doug Zongkerf24fd7e2013-07-02 11:43:25 -0700372 chmod(LOG_FILE, 0600);
373 chown(LOG_FILE, 1000, 1000); // system user
Patrick Tjincd055ee2014-12-09 11:26:40 -0800374 chmod(LAST_KMSG_FILE, 0600);
375 chown(LAST_KMSG_FILE, 1000, 1000); // system user
Doug Zongkerf24fd7e2013-07-02 11:43:25 -0700376 chmod(LAST_LOG_FILE, 0640);
377 chmod(LAST_INSTALL_FILE, 0644);
378 sync();
379}
380
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800381// clear the recovery command and prepare to boot a (hopefully working) system,
382// copy our log file to cache as well (for the system to read), and
383// record any intent we were asked to communicate back to the system.
384// this function is idempotent: call it as many times as you like.
385static void
Oscar Montemayor05231562009-11-30 08:40:57 -0800386finish_recovery(const char *send_intent) {
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800387 // By this point, we're ready to return to the main system...
388 if (send_intent != NULL) {
Doug Zongkerd4208f92010-09-20 12:16:13 -0700389 FILE *fp = fopen_path(INTENT_FILE, "w");
Jay Freeman (saurik)619ec2f2008-11-17 01:56:05 +0000390 if (fp == NULL) {
391 LOGE("Can't open %s\n", INTENT_FILE);
392 } else {
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800393 fputs(send_intent, fp);
394 check_and_fclose(fp, INTENT_FILE);
395 }
396 }
397
Doug Zongker4f33e552012-08-23 13:16:12 -0700398 // Save the locale to cache, so if recovery is next started up
399 // without a --locale argument (eg, directly from the bootloader)
400 // it will use the last-known locale.
401 if (locale != NULL) {
402 LOGI("Saving locale \"%s\"\n", locale);
403 FILE* fp = fopen_path(LOCALE_FILE, "w");
404 fwrite(locale, 1, strlen(locale), fp);
405 fflush(fp);
406 fsync(fileno(fp));
407 check_and_fclose(fp, LOCALE_FILE);
408 }
409
Doug Zongkerf24fd7e2013-07-02 11:43:25 -0700410 copy_logs();
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800411
Doug Zongkere5d5ac72012-04-12 11:01:22 -0700412 // Reset to normal system boot so recovery won't cycle indefinitely.
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800413 struct bootloader_message boot;
414 memset(&boot, 0, sizeof(boot));
415 set_bootloader_message(&boot);
416
417 // Remove the command file, so recovery won't repeat indefinitely.
Doug Zongkerd4208f92010-09-20 12:16:13 -0700418 if (ensure_path_mounted(COMMAND_FILE) != 0 ||
419 (unlink(COMMAND_FILE) && errno != ENOENT)) {
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800420 LOGW("Can't unlink %s\n", COMMAND_FILE);
421 }
422
Doug Zongkerd0181b82011-10-19 10:51:12 -0700423 ensure_path_unmounted(CACHE_ROOT);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800424 sync(); // For good measure.
425}
426
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700427typedef struct _saved_log_file {
428 char* name;
429 struct stat st;
430 unsigned char* data;
431 struct _saved_log_file* next;
432} saved_log_file;
433
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800434static int
Doug Zongkerd4208f92010-09-20 12:16:13 -0700435erase_volume(const char *volume) {
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700436 bool is_cache = (strcmp(volume, CACHE_ROOT) == 0);
437
Doug Zongker02ec6b82012-08-22 17:26:40 -0700438 ui->SetBackground(RecoveryUI::ERASING);
Doug Zongker211aebc2011-10-28 15:13:10 -0700439 ui->SetProgressType(RecoveryUI::INDETERMINATE);
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700440
441 saved_log_file* head = NULL;
442
443 if (is_cache) {
444 // If we're reformatting /cache, we load any
445 // "/cache/recovery/last*" files into memory, so we can restore
446 // them after the reformat.
447
448 ensure_path_mounted(volume);
449
450 DIR* d;
451 struct dirent* de;
452 d = opendir(CACHE_LOG_DIR);
453 if (d) {
454 char path[PATH_MAX];
455 strcpy(path, CACHE_LOG_DIR);
456 strcat(path, "/");
457 int path_len = strlen(path);
458 while ((de = readdir(d)) != NULL) {
459 if (strncmp(de->d_name, "last", 4) == 0) {
460 saved_log_file* p = (saved_log_file*) malloc(sizeof(saved_log_file));
461 strcpy(path+path_len, de->d_name);
462 p->name = strdup(path);
463 if (stat(path, &(p->st)) == 0) {
464 // truncate files to 512kb
465 if (p->st.st_size > (1 << 19)) {
466 p->st.st_size = 1 << 19;
467 }
468 p->data = (unsigned char*) malloc(p->st.st_size);
469 FILE* f = fopen(path, "rb");
470 fread(p->data, 1, p->st.st_size, f);
471 fclose(f);
472 p->next = head;
473 head = p;
474 } else {
475 free(p);
476 }
477 }
478 }
479 closedir(d);
480 } else {
481 if (errno != ENOENT) {
482 printf("opendir failed: %s\n", strerror(errno));
483 }
484 }
485 }
486
Doug Zongker211aebc2011-10-28 15:13:10 -0700487 ui->Print("Formatting %s...\n", volume);
Doug Zongker2c3539e2010-09-29 13:21:30 -0700488
Doug Zongkerd0181b82011-10-19 10:51:12 -0700489 ensure_path_unmounted(volume);
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700490 int result = format_volume(volume);
Doug Zongkerd0181b82011-10-19 10:51:12 -0700491
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700492 if (is_cache) {
493 while (head) {
494 FILE* f = fopen_path(head->name, "wb");
495 if (f) {
496 fwrite(head->data, 1, head->st.st_size, f);
497 fclose(f);
498 chmod(head->name, head->st.st_mode);
499 chown(head->name, head->st.st_uid, head->st.st_gid);
500 }
501 free(head->name);
502 free(head->data);
503 saved_log_file* temp = head->next;
504 free(head);
505 head = temp;
506 }
507
Doug Zongker2c3539e2010-09-29 13:21:30 -0700508 // Any part of the log we'd copied to cache is now gone.
509 // Reset the pointer so we copy from the beginning of the temp
510 // log.
511 tmplog_offset = 0;
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700512 copy_logs();
Doug Zongker2c3539e2010-09-29 13:21:30 -0700513 }
514
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700515 return result;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800516}
517
Doug Zongkerf93d8162009-09-22 15:16:02 -0700518static int
Doug Zongker28ce47c2011-10-28 10:33:05 -0700519get_menu_selection(const char* const * headers, const char* const * items,
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700520 int menu_only, int initial_selection, Device* device) {
Doug Zongkerf93d8162009-09-22 15:16:02 -0700521 // throw away keys pressed previously, so user doesn't
522 // accidentally trigger menu items.
Doug Zongker211aebc2011-10-28 15:13:10 -0700523 ui->FlushKeys();
Doug Zongkerf93d8162009-09-22 15:16:02 -0700524
Doug Zongker211aebc2011-10-28 15:13:10 -0700525 ui->StartMenu(headers, items, initial_selection);
Doug Zongker8674a722010-09-15 11:08:23 -0700526 int selected = initial_selection;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800527 int chosen_item = -1;
528
Doug Zongkerf93d8162009-09-22 15:16:02 -0700529 while (chosen_item < 0) {
Doug Zongker211aebc2011-10-28 15:13:10 -0700530 int key = ui->WaitKey();
531 int visible = ui->IsTextVisible();
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800532
Doug Zongker5cae4452011-01-25 13:15:30 -0800533 if (key == -1) { // ui_wait_key() timed out
Doug Zongker211aebc2011-10-28 15:13:10 -0700534 if (ui->WasTextEverVisible()) {
Doug Zongker5cae4452011-01-25 13:15:30 -0800535 continue;
536 } else {
537 LOGI("timed out waiting for key input; rebooting.\n");
Doug Zongker211aebc2011-10-28 15:13:10 -0700538 ui->EndMenu();
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700539 return 0; // XXX fixme
Doug Zongker5cae4452011-01-25 13:15:30 -0800540 }
541 }
542
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700543 int action = device->HandleMenuKey(key, visible);
Doug Zongkerddd6a282009-06-09 12:22:33 -0700544
545 if (action < 0) {
546 switch (action) {
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700547 case Device::kHighlightUp:
Doug Zongkerddd6a282009-06-09 12:22:33 -0700548 --selected;
Doug Zongker211aebc2011-10-28 15:13:10 -0700549 selected = ui->SelectMenu(selected);
Doug Zongkerddd6a282009-06-09 12:22:33 -0700550 break;
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700551 case Device::kHighlightDown:
Doug Zongkerddd6a282009-06-09 12:22:33 -0700552 ++selected;
Doug Zongker211aebc2011-10-28 15:13:10 -0700553 selected = ui->SelectMenu(selected);
Doug Zongkerddd6a282009-06-09 12:22:33 -0700554 break;
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700555 case Device::kInvokeItem:
Doug Zongkerddd6a282009-06-09 12:22:33 -0700556 chosen_item = selected;
557 break;
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700558 case Device::kNoAction:
Doug Zongkerddd6a282009-06-09 12:22:33 -0700559 break;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800560 }
Doug Zongkerf93d8162009-09-22 15:16:02 -0700561 } else if (!menu_only) {
Doug Zongkerddd6a282009-06-09 12:22:33 -0700562 chosen_item = action;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800563 }
Doug Zongkerf93d8162009-09-22 15:16:02 -0700564 }
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800565
Doug Zongker211aebc2011-10-28 15:13:10 -0700566 ui->EndMenu();
Doug Zongkerf93d8162009-09-22 15:16:02 -0700567 return chosen_item;
568}
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800569
Doug Zongker8674a722010-09-15 11:08:23 -0700570static int compare_string(const void* a, const void* b) {
571 return strcmp(*(const char**)a, *(const char**)b);
572}
573
Doug Zongker93950222014-07-08 14:10:23 -0700574// Returns a malloc'd path, or NULL.
Elliott Hughes30694c92015-03-25 15:16:51 -0700575static char* browse_directory(const char* path, Device* device) {
Michael Ward9d2629c2011-06-23 22:14:24 -0700576 ensure_path_mounted(path);
Doug Zongkerc18eeb82010-09-21 16:49:26 -0700577
Elliott Hughes30694c92015-03-25 15:16:51 -0700578 DIR* d = opendir(path);
Doug Zongker8674a722010-09-15 11:08:23 -0700579 if (d == NULL) {
580 LOGE("error opening %s: %s\n", path, strerror(errno));
Doug Zongker93950222014-07-08 14:10:23 -0700581 return NULL;
Doug Zongker8674a722010-09-15 11:08:23 -0700582 }
583
Doug Zongker8674a722010-09-15 11:08:23 -0700584 int d_size = 0;
585 int d_alloc = 10;
Doug Zongker28ce47c2011-10-28 10:33:05 -0700586 char** dirs = (char**)malloc(d_alloc * sizeof(char*));
Doug Zongker8674a722010-09-15 11:08:23 -0700587 int z_size = 1;
588 int z_alloc = 10;
Doug Zongker28ce47c2011-10-28 10:33:05 -0700589 char** zips = (char**)malloc(z_alloc * sizeof(char*));
Doug Zongker8674a722010-09-15 11:08:23 -0700590 zips[0] = strdup("../");
591
Elliott Hughes30694c92015-03-25 15:16:51 -0700592 struct dirent* de;
Doug Zongker8674a722010-09-15 11:08:23 -0700593 while ((de = readdir(d)) != NULL) {
594 int name_len = strlen(de->d_name);
595
596 if (de->d_type == DT_DIR) {
597 // skip "." and ".." entries
598 if (name_len == 1 && de->d_name[0] == '.') continue;
599 if (name_len == 2 && de->d_name[0] == '.' &&
600 de->d_name[1] == '.') continue;
601
602 if (d_size >= d_alloc) {
603 d_alloc *= 2;
Doug Zongker28ce47c2011-10-28 10:33:05 -0700604 dirs = (char**)realloc(dirs, d_alloc * sizeof(char*));
Doug Zongker8674a722010-09-15 11:08:23 -0700605 }
Doug Zongker28ce47c2011-10-28 10:33:05 -0700606 dirs[d_size] = (char*)malloc(name_len + 2);
Doug Zongker8674a722010-09-15 11:08:23 -0700607 strcpy(dirs[d_size], de->d_name);
608 dirs[d_size][name_len] = '/';
609 dirs[d_size][name_len+1] = '\0';
610 ++d_size;
611 } else if (de->d_type == DT_REG &&
612 name_len >= 4 &&
613 strncasecmp(de->d_name + (name_len-4), ".zip", 4) == 0) {
614 if (z_size >= z_alloc) {
615 z_alloc *= 2;
Doug Zongker28ce47c2011-10-28 10:33:05 -0700616 zips = (char**)realloc(zips, z_alloc * sizeof(char*));
Doug Zongker8674a722010-09-15 11:08:23 -0700617 }
618 zips[z_size++] = strdup(de->d_name);
619 }
620 }
621 closedir(d);
622
623 qsort(dirs, d_size, sizeof(char*), compare_string);
624 qsort(zips, z_size, sizeof(char*), compare_string);
625
626 // append dirs to the zips list
627 if (d_size + z_size + 1 > z_alloc) {
628 z_alloc = d_size + z_size + 1;
Doug Zongker28ce47c2011-10-28 10:33:05 -0700629 zips = (char**)realloc(zips, z_alloc * sizeof(char*));
Doug Zongker8674a722010-09-15 11:08:23 -0700630 }
631 memcpy(zips + z_size, dirs, d_size * sizeof(char*));
632 free(dirs);
633 z_size += d_size;
634 zips[z_size] = NULL;
635
Elliott Hughes30694c92015-03-25 15:16:51 -0700636 const char* headers[] = { "Choose a package to install:", path, "", NULL };
637
Doug Zongker93950222014-07-08 14:10:23 -0700638 char* result;
Doug Zongker8674a722010-09-15 11:08:23 -0700639 int chosen_item = 0;
Doug Zongker93950222014-07-08 14:10:23 -0700640 while (true) {
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700641 chosen_item = get_menu_selection(headers, zips, 1, chosen_item, device);
Doug Zongker8674a722010-09-15 11:08:23 -0700642
643 char* item = zips[chosen_item];
644 int item_len = strlen(item);
645 if (chosen_item == 0) { // item 0 is always "../"
Michael Ward9d2629c2011-06-23 22:14:24 -0700646 // go up but continue browsing (if the caller is update_directory)
Doug Zongker93950222014-07-08 14:10:23 -0700647 result = NULL;
Doug Zongker8674a722010-09-15 11:08:23 -0700648 break;
649 }
Doug Zongker93950222014-07-08 14:10:23 -0700650
651 char new_path[PATH_MAX];
652 strlcpy(new_path, path, PATH_MAX);
653 strlcat(new_path, "/", PATH_MAX);
654 strlcat(new_path, item, PATH_MAX);
655
656 if (item[item_len-1] == '/') {
657 // recurse down into a subdirectory
658 new_path[strlen(new_path)-1] = '\0'; // truncate the trailing '/'
659 result = browse_directory(new_path, device);
660 if (result) break;
661 } else {
662 // selected a zip file: return the malloc'd path to the caller.
663 result = strdup(new_path);
664 break;
665 }
666 }
Doug Zongker8674a722010-09-15 11:08:23 -0700667
Elliott Hughes30694c92015-03-25 15:16:51 -0700668 for (int i = 0; i < z_size; ++i) free(zips[i]);
Doug Zongker8674a722010-09-15 11:08:23 -0700669 free(zips);
Doug Zongker8674a722010-09-15 11:08:23 -0700670
671 return result;
672}
673
Elliott Hughes30694c92015-03-25 15:16:51 -0700674static bool yes_no(Device* device, const char* question1, const char* question2) {
675 const char* headers[] = { question1, question2, "", NULL };
676 const char* items[] = { " No", " Yes", NULL };
Doug Zongkerddd6a282009-06-09 12:22:33 -0700677
Elliott Hughes30694c92015-03-25 15:16:51 -0700678 int chosen_item = get_menu_selection(headers, items, 1, 0, device);
679 return (chosen_item == 1);
680}
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800681
Tao Baoe39a9bc2015-03-31 12:19:05 -0700682// Return true on success.
683static bool wipe_data(int should_confirm, Device* device) {
684 if (should_confirm && !yes_no(device, "Wipe all user data?", " THIS CAN NOT BE UNDONE!")) {
685 return false;
Doug Zongkerf93d8162009-09-22 15:16:02 -0700686 }
Doug Zongker1066d2c2009-04-01 13:57:40 -0700687
Tao Bao682c34b2015-04-07 17:16:35 -0700688 modified_flash = true;
689
Doug Zongker211aebc2011-10-28 15:13:10 -0700690 ui->Print("\n-- Wiping data...\n");
Tao Baoe39a9bc2015-03-31 12:19:05 -0700691 if (device->WipeData() == 0 && erase_volume("/data") == 0 && erase_volume("/cache") == 0) {
692 ui->Print("Data wipe complete.\n");
693 return true;
694 } else {
695 ui->Print("Data wipe failed.\n");
696 return false;
697 }
Doug Zongkerf93d8162009-09-22 15:16:02 -0700698}
699
Tao Baoe39a9bc2015-03-31 12:19:05 -0700700// Return true on success.
701static bool wipe_cache(bool should_confirm, Device* device) {
Elliott Hughes30694c92015-03-25 15:16:51 -0700702 if (should_confirm && !yes_no(device, "Wipe cache?", " THIS CAN NOT BE UNDONE!")) {
Tao Baoe39a9bc2015-03-31 12:19:05 -0700703 return false;
Elliott Hughes30694c92015-03-25 15:16:51 -0700704 }
705
Tao Bao682c34b2015-04-07 17:16:35 -0700706 modified_flash = true;
707
Elliott Hughes30694c92015-03-25 15:16:51 -0700708 ui->Print("\n-- Wiping cache...\n");
Tao Baoe39a9bc2015-03-31 12:19:05 -0700709 if (erase_volume("/cache") == 0) {
710 ui->Print("Cache wipe complete.\n");
711 return true;
712 } else {
713 ui->Print("Cache wipe failed.\n");
714 return false;
715 }
Elliott Hughes30694c92015-03-25 15:16:51 -0700716}
717
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700718static void choose_recovery_file(Device* device) {
Patrick Tjincd055ee2014-12-09 11:26:40 -0800719 unsigned int i;
720 unsigned int n;
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700721 static const char** title_headers = NULL;
722 char *filename;
Patrick Tjincd055ee2014-12-09 11:26:40 -0800723 // "Go back" + LAST_KMSG_FILE + KEEP_LOG_COUNT + terminating NULL entry
724 char* entries[KEEP_LOG_COUNT + 3];
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700725 memset(entries, 0, sizeof(entries));
726
Patrick Tjincd055ee2014-12-09 11:26:40 -0800727 n = 0;
728 entries[n++] = strdup("Go back");
729
730 // Add kernel kmsg file if available
731 if ((ensure_path_mounted(LAST_KMSG_FILE) == 0) && (access(LAST_KMSG_FILE, R_OK) == 0)) {
732 entries[n++] = strdup(LAST_KMSG_FILE);
733 }
734
735 // Add LAST_LOG_FILE + LAST_LOG_FILE.x
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700736 for (i = 0; i < KEEP_LOG_COUNT; i++) {
737 char *filename;
738 if (asprintf(&filename, (i==0) ? LAST_LOG_FILE : (LAST_LOG_FILE ".%d"), i) == -1) {
739 // memory allocation failure - return early. Should never happen.
740 return;
741 }
742 if ((ensure_path_mounted(filename) != 0) || (access(filename, R_OK) == -1)) {
743 free(filename);
Patrick Tjincd055ee2014-12-09 11:26:40 -0800744 entries[n++] = NULL;
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700745 break;
746 }
Patrick Tjincd055ee2014-12-09 11:26:40 -0800747 entries[n++] = filename;
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700748 }
749
Elliott Hughes30694c92015-03-25 15:16:51 -0700750 const char* headers[] = { "Select file to view", "", NULL };
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700751
Elliott Hughes8de52072015-04-08 20:06:50 -0700752 while (true) {
Elliott Hughes30694c92015-03-25 15:16:51 -0700753 int chosen_item = get_menu_selection(headers, entries, 1, 0, device);
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700754 if (chosen_item == 0) break;
Elliott Hughes8de52072015-04-08 20:06:50 -0700755
756 // TODO: do we need to redirect? ShowFile could just avoid writing to stdio.
757 redirect_stdio("/dev/null");
758 ui->ShowFile(entries[chosen_item]);
759 redirect_stdio(TEMPORARY_LOG_FILE);
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700760 }
761
Patrick Tjincd055ee2014-12-09 11:26:40 -0800762 for (i = 0; i < (sizeof(entries) / sizeof(*entries)); i++) {
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700763 free(entries[i]);
764 }
765}
766
Tao Bao145d8612015-03-25 15:51:15 -0700767static int apply_from_sdcard(Device* device, bool* wipe_cache) {
Tao Bao682c34b2015-04-07 17:16:35 -0700768 modified_flash = true;
769
Christian Poetzsch4ec58a42015-02-19 10:42:39 +0000770 if (ensure_path_mounted(SDCARD_ROOT) != 0) {
771 ui->Print("\n-- Couldn't mount %s.\n", SDCARD_ROOT);
772 return INSTALL_ERROR;
773 }
774
775 char* path = browse_directory(SDCARD_ROOT, device);
776 if (path == NULL) {
Elliott Hughes018ed312015-04-08 16:51:36 -0700777 ui->Print("\n-- No package file selected.\n");
Christian Poetzsch4ec58a42015-02-19 10:42:39 +0000778 return INSTALL_ERROR;
779 }
780
781 ui->Print("\n-- Install %s ...\n", path);
782 set_sdcard_update_bootloader_message();
783 void* token = start_sdcard_fuse(path);
784
785 int status = install_package(FUSE_SIDELOAD_HOST_PATHNAME, wipe_cache,
786 TEMPORARY_INSTALL_FILE, false);
787
788 finish_sdcard_fuse(token);
789 ensure_path_unmounted(SDCARD_ROOT);
790 return status;
791}
792
Doug Zongker8d9d3d52014-04-01 13:20:23 -0700793// Return REBOOT, SHUTDOWN, or REBOOT_BOOTLOADER. Returning NO_ACTION
794// means to take the default, which is to reboot or shutdown depending
795// on if the --shutdown_after flag was passed to recovery.
796static Device::BuiltinAction
Doug Zongker6c8553d2012-09-24 10:40:47 -0700797prompt_and_wait(Device* device, int status) {
Elliott Hughesbb78d622015-04-09 20:51:08 -0700798 const char* const* headers = device->GetMenuHeaders();
Doug Zongkerf93d8162009-09-22 15:16:02 -0700799
800 for (;;) {
801 finish_recovery(NULL);
Doug Zongker6c8553d2012-09-24 10:40:47 -0700802 switch (status) {
803 case INSTALL_SUCCESS:
804 case INSTALL_NONE:
805 ui->SetBackground(RecoveryUI::NO_COMMAND);
806 break;
807
808 case INSTALL_ERROR:
809 case INSTALL_CORRUPT:
810 ui->SetBackground(RecoveryUI::ERROR);
811 break;
812 }
Doug Zongker211aebc2011-10-28 15:13:10 -0700813 ui->SetProgressType(RecoveryUI::EMPTY);
Doug Zongkerf93d8162009-09-22 15:16:02 -0700814
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700815 int chosen_item = get_menu_selection(headers, device->GetMenuItems(), 0, 0, device);
Doug Zongkerf93d8162009-09-22 15:16:02 -0700816
817 // device-specific code may take some action here. It may
818 // return one of the core actions handled in the switch
819 // statement below.
Doug Zongker8d9d3d52014-04-01 13:20:23 -0700820 Device::BuiltinAction chosen_action = device->InvokeMenuItem(chosen_item);
Doug Zongkerf93d8162009-09-22 15:16:02 -0700821
Elliott Hughes30694c92015-03-25 15:16:51 -0700822 bool should_wipe_cache = false;
Doug Zongker8d9d3d52014-04-01 13:20:23 -0700823 switch (chosen_action) {
824 case Device::NO_ACTION:
825 break;
826
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700827 case Device::REBOOT:
Doug Zongker8d9d3d52014-04-01 13:20:23 -0700828 case Device::SHUTDOWN:
829 case Device::REBOOT_BOOTLOADER:
830 return chosen_action;
Doug Zongkerf93d8162009-09-22 15:16:02 -0700831
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700832 case Device::WIPE_DATA:
833 wipe_data(ui->IsTextVisible(), device);
Doug Zongker8d9d3d52014-04-01 13:20:23 -0700834 if (!ui->IsTextVisible()) return Device::NO_ACTION;
Doug Zongkerf93d8162009-09-22 15:16:02 -0700835 break;
836
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700837 case Device::WIPE_CACHE:
Elliott Hughes30694c92015-03-25 15:16:51 -0700838 wipe_cache(ui->IsTextVisible(), device);
Doug Zongker8d9d3d52014-04-01 13:20:23 -0700839 if (!ui->IsTextVisible()) return Device::NO_ACTION;
Doug Zongkerf93d8162009-09-22 15:16:02 -0700840 break;
841
Christian Poetzsch4ec58a42015-02-19 10:42:39 +0000842 case Device::APPLY_ADB_SIDELOAD:
843 case Device::APPLY_EXT:
844 {
845 bool adb = (chosen_action == Device::APPLY_ADB_SIDELOAD);
846 if (adb) {
Elliott Hughes30694c92015-03-25 15:16:51 -0700847 status = apply_from_adb(ui, &should_wipe_cache, TEMPORARY_INSTALL_FILE);
Doug Zongkerd0181b82011-10-19 10:51:12 -0700848 } else {
Elliott Hughes30694c92015-03-25 15:16:51 -0700849 status = apply_from_sdcard(device, &should_wipe_cache);
Doug Zongkerd0181b82011-10-19 10:51:12 -0700850 }
Doug Zongker945fc682014-07-10 10:50:39 -0700851
Elliott Hughes30694c92015-03-25 15:16:51 -0700852 if (status == INSTALL_SUCCESS && should_wipe_cache) {
Tao Baoe39a9bc2015-03-31 12:19:05 -0700853 if (!wipe_cache(false, device)) {
854 status = INSTALL_ERROR;
855 }
Christian Poetzsch4ec58a42015-02-19 10:42:39 +0000856 }
857
Tao Baoc679f932015-03-30 09:43:49 -0700858 if (status != INSTALL_SUCCESS) {
859 ui->SetBackground(RecoveryUI::ERROR);
860 ui->Print("Installation aborted.\n");
861 copy_logs();
862 } else if (!ui->IsTextVisible()) {
863 return Device::NO_ACTION; // reboot if logs aren't visible
864 } else {
865 ui->Print("\nInstall from %s complete.\n", adb ? "ADB" : "SD card");
Doug Zongker8674a722010-09-15 11:08:23 -0700866 }
Doug Zongkerf93d8162009-09-22 15:16:02 -0700867 }
868 break;
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700869
870 case Device::APPLY_CACHE:
Doug Zongker93950222014-07-08 14:10:23 -0700871 ui->Print("\nAPPLY_CACHE is deprecated.\n");
Michael Ward9d2629c2011-06-23 22:14:24 -0700872 break;
Doug Zongker9270a202012-01-09 15:16:13 -0800873
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700874 case Device::READ_RECOVERY_LASTLOG:
875 choose_recovery_file(device);
876 break;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800877 }
878 }
879}
880
881static void
Oscar Montemayor05231562009-11-30 08:40:57 -0800882print_property(const char *key, const char *name, void *cookie) {
Doug Zongker56c51052010-07-01 09:18:44 -0700883 printf("%s=%s\n", key, name);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800884}
885
Doug Zongker02ec6b82012-08-22 17:26:40 -0700886static void
887load_locale_from_cache() {
888 FILE* fp = fopen_path(LOCALE_FILE, "r");
889 char buffer[80];
890 if (fp != NULL) {
891 fgets(buffer, sizeof(buffer), fp);
892 int j = 0;
Doug Zongker5fa8c232012-09-18 12:37:02 -0700893 unsigned int i;
Doug Zongker02ec6b82012-08-22 17:26:40 -0700894 for (i = 0; i < sizeof(buffer) && buffer[i]; ++i) {
895 if (!isspace(buffer[i])) {
896 buffer[j++] = buffer[i];
897 }
898 }
899 buffer[j] = 0;
900 locale = strdup(buffer);
Devin Kim6016d082012-10-08 09:47:37 -0700901 check_and_fclose(fp, LOCALE_FILE);
Doug Zongker02ec6b82012-08-22 17:26:40 -0700902 }
903}
904
Doug Zongker7c3ae452013-05-14 11:03:02 -0700905static RecoveryUI* gCurrentUI = NULL;
906
907void
908ui_print(const char* format, ...) {
909 char buffer[256];
910
911 va_list ap;
912 va_start(ap, format);
913 vsnprintf(buffer, sizeof(buffer), format, ap);
914 va_end(ap);
915
916 if (gCurrentUI != NULL) {
917 gCurrentUI->Print("%s", buffer);
918 } else {
919 fputs(buffer, stdout);
920 }
921}
922
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800923int
Oscar Montemayor05231562009-11-30 08:40:57 -0800924main(int argc, char **argv) {
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800925 time_t start = time(NULL);
926
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700927 redirect_stdio(TEMPORARY_LOG_FILE);
Doug Zongker9270a202012-01-09 15:16:13 -0800928
929 // If this binary is started with the single argument "--adbd",
930 // instead of being the normal recovery binary, it turns into kind
931 // of a stripped-down version of adbd that only supports the
932 // 'sideload' command. Note this must be a real argument, not
933 // anything in the command file or bootloader control block; the
934 // only way recovery should be run with this argument is when it
935 // starts a copy of itself from the apply_from_adb() function.
936 if (argc == 2 && strcmp(argv[1], "--adbd") == 0) {
Dan Albertf3a57262015-02-19 13:21:14 -0800937 adb_main(0, DEFAULT_ADB_PORT);
Doug Zongker9270a202012-01-09 15:16:13 -0800938 return 0;
939 }
940
Doug Zongker19a8e242014-01-21 09:25:41 -0800941 printf("Starting recovery (pid %d) on %s", getpid(), ctime(&start));
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800942
Doug Zongkerd4208f92010-09-20 12:16:13 -0700943 load_volume_table();
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800944 get_args(&argc, &argv);
945
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800946 const char *send_intent = NULL;
947 const char *update_package = NULL;
Tao Baoe39a9bc2015-03-31 12:19:05 -0700948 bool should_wipe_data = false;
Tao Baoc679f932015-03-30 09:43:49 -0700949 bool should_wipe_cache = false;
Tao Bao145d8612015-03-25 15:51:15 -0700950 bool show_text = false;
Tao Baoc679f932015-03-30 09:43:49 -0700951 bool sideload = false;
952 bool sideload_auto_reboot = false;
Doug Zongkere5d5ac72012-04-12 11:01:22 -0700953 bool just_exit = false;
Doug Zongkerb1d12632014-03-18 10:32:12 -0700954 bool shutdown_after = false;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800955
956 int arg;
957 while ((arg = getopt_long(argc, argv, "", OPTIONS, NULL)) != -1) {
958 switch (arg) {
Tao Baoc679f932015-03-30 09:43:49 -0700959 case 'i': send_intent = optarg; break;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800960 case 'u': update_package = optarg; break;
Tao Baoe39a9bc2015-03-31 12:19:05 -0700961 case 'w': should_wipe_data = true; break;
Tao Baoc679f932015-03-30 09:43:49 -0700962 case 'c': should_wipe_cache = true; break;
Tao Bao145d8612015-03-25 15:51:15 -0700963 case 't': show_text = true; break;
Tao Baoc679f932015-03-30 09:43:49 -0700964 case 's': sideload = true; break;
965 case 'a': sideload = true; sideload_auto_reboot = true; break;
Doug Zongkere5d5ac72012-04-12 11:01:22 -0700966 case 'x': just_exit = true; break;
Doug Zongker02ec6b82012-08-22 17:26:40 -0700967 case 'l': locale = optarg; break;
Doug Zongkerc87bab12013-11-25 13:53:25 -0800968 case 'g': {
969 if (stage == NULL || *stage == '\0') {
970 char buffer[20] = "1/";
971 strncat(buffer, optarg, sizeof(buffer)-3);
972 stage = strdup(buffer);
973 }
974 break;
975 }
Doug Zongkerb1d12632014-03-18 10:32:12 -0700976 case 'p': shutdown_after = true; break;
Jeff Sharkeya6e13ae2014-09-24 11:46:17 -0700977 case 'r': reason = optarg; break;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800978 case '?':
979 LOGE("Invalid command argument\n");
980 continue;
981 }
982 }
983
Doug Zongker02ec6b82012-08-22 17:26:40 -0700984 if (locale == NULL) {
985 load_locale_from_cache();
986 }
987 printf("locale is [%s]\n", locale);
Doug Zongker0d32f252014-02-13 15:07:56 -0800988 printf("stage is [%s]\n", stage);
Jeff Sharkeya6e13ae2014-09-24 11:46:17 -0700989 printf("reason is [%s]\n", reason);
Doug Zongker02ec6b82012-08-22 17:26:40 -0700990
991 Device* device = make_device();
992 ui = device->GetUI();
Doug Zongker7c3ae452013-05-14 11:03:02 -0700993 gCurrentUI = ui;
Doug Zongker02ec6b82012-08-22 17:26:40 -0700994
Doug Zongker5fa8c232012-09-18 12:37:02 -0700995 ui->SetLocale(locale);
Doug Zongker02ec6b82012-08-22 17:26:40 -0700996 ui->Init();
Doug Zongkerc87bab12013-11-25 13:53:25 -0800997
998 int st_cur, st_max;
999 if (stage != NULL && sscanf(stage, "%d/%d", &st_cur, &st_max) == 2) {
1000 ui->SetStage(st_cur, st_max);
1001 }
1002
Doug Zongker02ec6b82012-08-22 17:26:40 -07001003 ui->SetBackground(RecoveryUI::NONE);
1004 if (show_text) ui->ShowText(true);
1005
Stephen Smalley779701d2012-02-09 14:13:23 -05001006 struct selinux_opt seopts[] = {
1007 { SELABEL_OPT_PATH, "/file_contexts" }
1008 };
1009
1010 sehandle = selabel_open(SELABEL_CTX_FILE, seopts, 1);
1011
1012 if (!sehandle) {
Doug Zongkerfafc85b2013-07-09 12:29:45 -07001013 ui->Print("Warning: No file_contexts\n");
Stephen Smalley779701d2012-02-09 14:13:23 -05001014 }
Stephen Smalley779701d2012-02-09 14:13:23 -05001015
Doug Zongkerdaefc1d2011-10-31 09:34:15 -07001016 device->StartRecovery();
Doug Zongkerefa1bab2010-02-01 15:59:12 -08001017
Doug Zongker56c51052010-07-01 09:18:44 -07001018 printf("Command:");
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001019 for (arg = 0; arg < argc; arg++) {
Doug Zongker56c51052010-07-01 09:18:44 -07001020 printf(" \"%s\"", argv[arg]);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001021 }
Doug Zongker9b125b02010-09-22 12:01:37 -07001022 printf("\n");
1023
1024 if (update_package) {
1025 // For backwards compatibility on the cache partition only, if
1026 // we're given an old 'root' path "CACHE:foo", change it to
1027 // "/cache/foo".
1028 if (strncmp(update_package, "CACHE:", 6) == 0) {
1029 int len = strlen(update_package) + 10;
Doug Zongker28ce47c2011-10-28 10:33:05 -07001030 char* modified_path = (char*)malloc(len);
Doug Zongker9b125b02010-09-22 12:01:37 -07001031 strlcpy(modified_path, "/cache/", len);
1032 strlcat(modified_path, update_package+6, len);
1033 printf("(replacing path \"%s\" with \"%s\")\n",
1034 update_package, modified_path);
1035 update_package = modified_path;
1036 }
1037 }
1038 printf("\n");
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001039
1040 property_list(print_property, NULL);
Doug Zongker56c51052010-07-01 09:18:44 -07001041 printf("\n");
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001042
Elliott Hughesbb78d622015-04-09 20:51:08 -07001043 char recovery_build[PROPERTY_VALUE_MAX];
1044 property_get("ro.build.display.id", recovery_build, "");
1045
1046 ui->Print("%s\n", recovery_build);
1047 ui->Print("Supported API: %d\n", RECOVERY_API_VERSION);
1048
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001049 int status = INSTALL_SUCCESS;
1050
Doug Zongker540d57f2011-01-18 13:36:58 -08001051 if (update_package != NULL) {
Tao Baoc679f932015-03-30 09:43:49 -07001052 status = install_package(update_package, &should_wipe_cache, TEMPORARY_INSTALL_FILE, true);
1053 if (status == INSTALL_SUCCESS && should_wipe_cache) {
1054 wipe_cache(false, device);
Doug Zongkerd0181b82011-10-19 10:51:12 -07001055 }
Doug Zongker7c3ae452013-05-14 11:03:02 -07001056 if (status != INSTALL_SUCCESS) {
1057 ui->Print("Installation aborted.\n");
1058
1059 // If this is an eng or userdebug build, then automatically
1060 // turn the text display on if the script fails so the error
1061 // message is visible.
Elliott Hughesf14af802015-02-10 14:46:14 -08001062 if (is_ro_debuggable()) {
Doug Zongker7c3ae452013-05-14 11:03:02 -07001063 ui->ShowText(true);
1064 }
1065 }
Tao Baoe39a9bc2015-03-31 12:19:05 -07001066 } else if (should_wipe_data) {
1067 if (!wipe_data(false, device)) {
1068 status = INSTALL_ERROR;
1069 }
Tao Baoc679f932015-03-30 09:43:49 -07001070 } else if (should_wipe_cache) {
Tao Baoe39a9bc2015-03-31 12:19:05 -07001071 if (!wipe_cache(false, device)) {
1072 status = INSTALL_ERROR;
1073 }
Tao Baoc679f932015-03-30 09:43:49 -07001074 } else if (sideload) {
1075 // 'adb reboot sideload' acts the same as user presses key combinations
1076 // to enter the sideload mode. When 'sideload-auto-reboot' is used, text
1077 // display will NOT be turned on by default. And it will reboot after
1078 // sideload finishes even if there are errors. Unless one turns on the
1079 // text display during the installation. This is to enable automated
1080 // testing.
1081 if (!sideload_auto_reboot) {
1082 ui->ShowText(true);
1083 }
1084 status = apply_from_adb(ui, &should_wipe_cache, TEMPORARY_INSTALL_FILE);
1085 if (status == INSTALL_SUCCESS && should_wipe_cache) {
Tao Baoe39a9bc2015-03-31 12:19:05 -07001086 if (!wipe_cache(false, device)) {
1087 status = INSTALL_ERROR;
1088 }
Tao Baoc679f932015-03-30 09:43:49 -07001089 }
1090 ui->Print("\nInstall from ADB complete (status: %d).\n", status);
1091 if (sideload_auto_reboot) {
1092 ui->Print("Rebooting automatically.\n");
1093 }
Doug Zongkere5d5ac72012-04-12 11:01:22 -07001094 } else if (!just_exit) {
Doug Zongker02ec6b82012-08-22 17:26:40 -07001095 status = INSTALL_NONE; // No command specified
1096 ui->SetBackground(RecoveryUI::NO_COMMAND);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001097 }
1098
Tao Baoc679f932015-03-30 09:43:49 -07001099 if (!sideload_auto_reboot && (status == INSTALL_ERROR || status == INSTALL_CORRUPT)) {
Doug Zongkerf24fd7e2013-07-02 11:43:25 -07001100 copy_logs();
Doug Zongker02ec6b82012-08-22 17:26:40 -07001101 ui->SetBackground(RecoveryUI::ERROR);
1102 }
Tao Baoc679f932015-03-30 09:43:49 -07001103
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001104 Device::BuiltinAction after = shutdown_after ? Device::SHUTDOWN : Device::REBOOT;
Tao Baoc679f932015-03-30 09:43:49 -07001105 if ((status != INSTALL_SUCCESS && !sideload_auto_reboot) || ui->IsTextVisible()) {
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001106 Device::BuiltinAction temp = prompt_and_wait(device, status);
Tao Baoc679f932015-03-30 09:43:49 -07001107 if (temp != Device::NO_ACTION) {
1108 after = temp;
1109 }
Doug Zongker8674a722010-09-15 11:08:23 -07001110 }
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001111
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001112 // Save logs and clean up before rebooting or shutting down.
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001113 finish_recovery(send_intent);
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001114
1115 switch (after) {
1116 case Device::SHUTDOWN:
1117 ui->Print("Shutting down...\n");
1118 property_set(ANDROID_RB_PROPERTY, "shutdown,");
1119 break;
1120
1121 case Device::REBOOT_BOOTLOADER:
1122 ui->Print("Rebooting to bootloader...\n");
1123 property_set(ANDROID_RB_PROPERTY, "reboot,bootloader");
1124 break;
1125
1126 default:
1127 ui->Print("Rebooting...\n");
1128 property_set(ANDROID_RB_PROPERTY, "reboot,");
1129 break;
Doug Zongkerb1d12632014-03-18 10:32:12 -07001130 }
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001131 sleep(5); // should reboot before this finishes
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001132 return EXIT_SUCCESS;
1133}