blob: 3b388bc1d0b218e0fb1228ab85f0a0c465a1d715 [file] [log] [blame]
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001/*
2 * Copyright (C) 2007 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17#include <ctype.h>
Doug Zongker7c3ae452013-05-14 11:03:02 -070018#include <dirent.h>
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080019#include <errno.h>
20#include <fcntl.h>
21#include <getopt.h>
22#include <limits.h>
23#include <linux/input.h>
Doug Zongker7c3ae452013-05-14 11:03:02 -070024#include <stdarg.h>
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080025#include <stdio.h>
26#include <stdlib.h>
27#include <string.h>
Patrick Tjincd055ee2014-12-09 11:26:40 -080028#include <sys/klog.h>
Doug Zongker23ceeea2010-07-08 17:27:55 -070029#include <sys/stat.h>
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080030#include <sys/types.h>
31#include <time.h>
32#include <unistd.h>
33
Tao Bao04ca4262015-09-10 15:32:24 -070034#include <chrono>
35
Tao Bao75238632015-05-27 14:46:17 -070036#include <adb.h>
Elliott Hughes4b166f02015-12-04 15:30:20 -080037#include <android-base/file.h>
38#include <android-base/stringprintf.h>
Tao Bao75238632015-05-27 14:46:17 -070039#include <cutils/android_reboot.h>
40#include <cutils/properties.h>
Tao Baobef39712015-05-04 18:50:27 -070041
Tao Bao75238632015-05-27 14:46:17 -070042#include "adb_install.h"
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080043#include "bootloader.h"
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080044#include "common.h"
Tao Bao75238632015-05-27 14:46:17 -070045#include "device.h"
46#include "fuse_sdcard_provider.h"
47#include "fuse_sideload.h"
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080048#include "install.h"
49#include "minui/minui.h"
50#include "minzip/DirUtil.h"
51#include "roots.h"
Doug Zongker28ce47c2011-10-28 10:33:05 -070052#include "ui.h"
Doug Zongker211aebc2011-10-28 15:13:10 -070053#include "screen_ui.h"
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080054
Stephen Smalley779701d2012-02-09 14:13:23 -050055struct selabel_handle *sehandle;
56
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080057static const struct option OPTIONS[] = {
Tao Baoc679f932015-03-30 09:43:49 -070058 { "send_intent", required_argument, NULL, 'i' },
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080059 { "update_package", required_argument, NULL, 'u' },
60 { "wipe_data", no_argument, NULL, 'w' },
61 { "wipe_cache", no_argument, NULL, 'c' },
Doug Zongker4bc98062010-09-03 11:00:13 -070062 { "show_text", no_argument, NULL, 't' },
Tao Baoc679f932015-03-30 09:43:49 -070063 { "sideload", no_argument, NULL, 's' },
64 { "sideload_auto_reboot", no_argument, NULL, 'a' },
Doug Zongkere5d5ac72012-04-12 11:01:22 -070065 { "just_exit", no_argument, NULL, 'x' },
Doug Zongker02ec6b82012-08-22 17:26:40 -070066 { "locale", required_argument, NULL, 'l' },
Doug Zongkerc87bab12013-11-25 13:53:25 -080067 { "stages", required_argument, NULL, 'g' },
Doug Zongkerb1d12632014-03-18 10:32:12 -070068 { "shutdown_after", no_argument, NULL, 'p' },
Jeff Sharkeya6e13ae2014-09-24 11:46:17 -070069 { "reason", required_argument, NULL, 'r' },
Doug Zongker988500b2009-10-06 14:41:38 -070070 { NULL, 0, NULL, 0 },
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080071};
72
Doug Zongker6d0d7ac2013-07-09 13:34:55 -070073static const char *CACHE_LOG_DIR = "/cache/recovery";
Doug Zongkerd4208f92010-09-20 12:16:13 -070074static const char *COMMAND_FILE = "/cache/recovery/command";
75static const char *INTENT_FILE = "/cache/recovery/intent";
76static const char *LOG_FILE = "/cache/recovery/log";
Doug Zongkerd0181b82011-10-19 10:51:12 -070077static const char *LAST_INSTALL_FILE = "/cache/recovery/last_install";
Doug Zongker8b240cc2012-08-29 15:19:29 -070078static const char *LOCALE_FILE = "/cache/recovery/last_locale";
Paul Lawrenced0db3372015-11-05 13:38:40 -080079static const char *CONVERT_FBE_DIR = "/cache/recovery/convert_fbe";
80static const char *CONVERT_FBE_FILE = "/cache/recovery/convert_fbe/convert_fbe";
Michael Ward9d2629c2011-06-23 22:14:24 -070081static const char *CACHE_ROOT = "/cache";
Paul Lawrenced0db3372015-11-05 13:38:40 -080082static const char *DATA_ROOT = "/data";
Doug Zongkerd4208f92010-09-20 12:16:13 -070083static const char *SDCARD_ROOT = "/sdcard";
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080084static const char *TEMPORARY_LOG_FILE = "/tmp/recovery.log";
Doug Zongkerd0181b82011-10-19 10:51:12 -070085static const char *TEMPORARY_INSTALL_FILE = "/tmp/last_install";
Tao Baof0124322015-04-11 02:04:11 +000086static const char *LAST_KMSG_FILE = "/cache/recovery/last_kmsg";
Tao Baobef39712015-05-04 18:50:27 -070087static const char *LAST_LOG_FILE = "/cache/recovery/last_log";
88static const int KEEP_LOG_COUNT = 10;
Nick Kralevicha9ad0322014-10-22 18:38:48 -070089
Doug Zongker211aebc2011-10-28 15:13:10 -070090RecoveryUI* ui = NULL;
Doug Zongker02ec6b82012-08-22 17:26:40 -070091char* locale = NULL;
Doug Zongkerc87bab12013-11-25 13:53:25 -080092char* stage = NULL;
Jeff Sharkeya6e13ae2014-09-24 11:46:17 -070093char* reason = NULL;
Tao Bao682c34b2015-04-07 17:16:35 -070094bool modified_flash = false;
Doug Zongker211aebc2011-10-28 15:13:10 -070095
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080096/*
97 * The recovery tool communicates with the main system through /cache files.
98 * /cache/recovery/command - INPUT - command line for tool, one arg per line
99 * /cache/recovery/log - OUTPUT - combined log file from recovery run(s)
100 * /cache/recovery/intent - OUTPUT - intent that was passed in
101 *
102 * The arguments which may be supplied in the recovery.command file:
103 * --send_intent=anystring - write the text out to recovery.intent
Doug Zongkerd4208f92010-09-20 12:16:13 -0700104 * --update_package=path - verify install an OTA package file
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800105 * --wipe_data - erase user data (and cache), then reboot
106 * --wipe_cache - wipe cache (but not user data), then reboot
Oscar Montemayor05231562009-11-30 08:40:57 -0800107 * --set_encrypted_filesystem=on|off - enables / diasables encrypted fs
Doug Zongkere5d5ac72012-04-12 11:01:22 -0700108 * --just_exit - do nothing; exit and reboot
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800109 *
110 * After completing, we remove /cache/recovery/command and reboot.
111 * Arguments may also be supplied in the bootloader control block (BCB).
112 * These important scenarios must be safely restartable at any point:
113 *
114 * FACTORY RESET
115 * 1. user selects "factory reset"
116 * 2. main system writes "--wipe_data" to /cache/recovery/command
117 * 3. main system reboots into recovery
118 * 4. get_args() writes BCB with "boot-recovery" and "--wipe_data"
119 * -- after this, rebooting will restart the erase --
Doug Zongkerd4208f92010-09-20 12:16:13 -0700120 * 5. erase_volume() reformats /data
121 * 6. erase_volume() reformats /cache
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800122 * 7. finish_recovery() erases BCB
123 * -- after this, rebooting will restart the main system --
124 * 8. main() calls reboot() to boot main system
125 *
126 * OTA INSTALL
127 * 1. main system downloads OTA package to /cache/some-filename.zip
Doug Zongker9b125b02010-09-22 12:01:37 -0700128 * 2. main system writes "--update_package=/cache/some-filename.zip"
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800129 * 3. main system reboots into recovery
130 * 4. get_args() writes BCB with "boot-recovery" and "--update_package=..."
131 * -- after this, rebooting will attempt to reinstall the update --
132 * 5. install_package() attempts to install the update
133 * NOTE: the package install must itself be restartable from any point
134 * 6. finish_recovery() erases BCB
135 * -- after this, rebooting will (try to) restart the main system --
136 * 7. ** if install failed **
137 * 7a. prompt_and_wait() shows an error icon and waits for the user
138 * 7b; the user reboots (pulling the battery, etc) into the main system
139 * 8. main() calls maybe_install_firmware_update()
140 * ** if the update contained radio/hboot firmware **:
141 * 8a. m_i_f_u() writes BCB with "boot-recovery" and "--wipe_cache"
142 * -- after this, rebooting will reformat cache & restart main system --
143 * 8b. m_i_f_u() writes firmware image into raw cache partition
144 * 8c. m_i_f_u() writes BCB with "update-radio/hboot" and "--wipe_cache"
145 * -- after this, rebooting will attempt to reinstall firmware --
146 * 8d. bootloader tries to flash firmware
147 * 8e. bootloader writes BCB with "boot-recovery" (keeping "--wipe_cache")
148 * -- after this, rebooting will reformat cache & restart main system --
Doug Zongkerd4208f92010-09-20 12:16:13 -0700149 * 8f. erase_volume() reformats /cache
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800150 * 8g. finish_recovery() erases BCB
151 * -- after this, rebooting will (try to) restart the main system --
152 * 9. main() calls reboot() to boot main system
153 */
154
155static const int MAX_ARG_LENGTH = 4096;
156static const int MAX_ARGS = 100;
157
Doug Zongkerd4208f92010-09-20 12:16:13 -0700158// open a given path, mounting partitions as necessary
Tao Bao04ca4262015-09-10 15:32:24 -0700159FILE* fopen_path(const char *path, const char *mode) {
Doug Zongkerd4208f92010-09-20 12:16:13 -0700160 if (ensure_path_mounted(path) != 0) {
161 LOGE("Can't mount %s\n", path);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800162 return NULL;
163 }
164
165 // When writing, try to create the containing directory, if necessary.
166 // Use generous permissions, the system (init.rc) will reset them.
Stephen Smalley779701d2012-02-09 14:13:23 -0500167 if (strchr("wa", mode[0])) dirCreateHierarchy(path, 0777, NULL, 1, sehandle);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800168
169 FILE *fp = fopen(path, mode);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800170 return fp;
171}
172
Tao Bao04ca4262015-09-10 15:32:24 -0700173// close a file, log an error if the error indicator is set
174static void check_and_fclose(FILE *fp, const char *name) {
175 fflush(fp);
176 if (ferror(fp)) LOGE("Error in %s\n(%s)\n", name, strerror(errno));
177 fclose(fp);
178}
179
Elliott Hughesf14af802015-02-10 14:46:14 -0800180bool is_ro_debuggable() {
181 char value[PROPERTY_VALUE_MAX+1];
182 return (property_get("ro.debuggable", value, NULL) == 1 && value[0] == '1');
183}
184
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700185static void redirect_stdio(const char* filename) {
Tao Bao04ca4262015-09-10 15:32:24 -0700186 int pipefd[2];
187 if (pipe(pipefd) == -1) {
188 LOGE("pipe failed: %s\n", strerror(errno));
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700189
Tao Bao04ca4262015-09-10 15:32:24 -0700190 // Fall back to traditional logging mode without timestamps.
191 // If these fail, there's not really anywhere to complain...
192 freopen(filename, "a", stdout); setbuf(stdout, NULL);
193 freopen(filename, "a", stderr); setbuf(stderr, NULL);
194
195 return;
196 }
197
198 pid_t pid = fork();
199 if (pid == -1) {
200 LOGE("fork failed: %s\n", strerror(errno));
201
202 // Fall back to traditional logging mode without timestamps.
203 // If these fail, there's not really anywhere to complain...
204 freopen(filename, "a", stdout); setbuf(stdout, NULL);
205 freopen(filename, "a", stderr); setbuf(stderr, NULL);
206
207 return;
208 }
209
210 if (pid == 0) {
211 /// Close the unused write end.
212 close(pipefd[1]);
213
214 auto start = std::chrono::steady_clock::now();
215
216 // Child logger to actually write to the log file.
217 FILE* log_fp = fopen(filename, "a");
218 if (log_fp == nullptr) {
219 LOGE("fopen \"%s\" failed: %s\n", filename, strerror(errno));
220 close(pipefd[0]);
221 _exit(1);
222 }
223
224 FILE* pipe_fp = fdopen(pipefd[0], "r");
225 if (pipe_fp == nullptr) {
226 LOGE("fdopen failed: %s\n", strerror(errno));
227 check_and_fclose(log_fp, filename);
228 close(pipefd[0]);
229 _exit(1);
230 }
231
232 char* line = nullptr;
233 size_t len = 0;
234 while (getline(&line, &len, pipe_fp) != -1) {
235 auto now = std::chrono::steady_clock::now();
236 double duration = std::chrono::duration_cast<std::chrono::duration<double>>(
237 now - start).count();
238 if (line[0] == '\n') {
239 fprintf(log_fp, "[%12.6lf]\n", duration);
240 } else {
241 fprintf(log_fp, "[%12.6lf] %s", duration, line);
242 }
243 fflush(log_fp);
244 }
245
246 LOGE("getline failed: %s\n", strerror(errno));
247
248 free(line);
249 check_and_fclose(log_fp, filename);
250 close(pipefd[0]);
251 _exit(1);
252 } else {
253 // Redirect stdout/stderr to the logger process.
254 // Close the unused read end.
255 close(pipefd[0]);
256
257 setbuf(stdout, nullptr);
258 setbuf(stderr, nullptr);
259
260 if (dup2(pipefd[1], STDOUT_FILENO) == -1) {
261 LOGE("dup2 stdout failed: %s\n", strerror(errno));
262 }
263 if (dup2(pipefd[1], STDERR_FILENO) == -1) {
264 LOGE("dup2 stderr failed: %s\n", strerror(errno));
265 }
266
267 close(pipefd[1]);
268 }
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800269}
270
271// command line args come from, in decreasing precedence:
272// - the actual command line
273// - the bootloader control block (one per line, after "recovery")
274// - the contents of COMMAND_FILE (one per line)
275static void
276get_args(int *argc, char ***argv) {
277 struct bootloader_message boot;
278 memset(&boot, 0, sizeof(boot));
279 get_bootloader_message(&boot); // this may fail, leaving a zeroed structure
Doug Zongkerc87bab12013-11-25 13:53:25 -0800280 stage = strndup(boot.stage, sizeof(boot.stage));
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800281
282 if (boot.command[0] != 0 && boot.command[0] != 255) {
Mark Salyzynf3bb31c2014-03-14 09:39:48 -0700283 LOGI("Boot command: %.*s\n", (int)sizeof(boot.command), boot.command);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800284 }
285
286 if (boot.status[0] != 0 && boot.status[0] != 255) {
Mark Salyzynf3bb31c2014-03-14 09:39:48 -0700287 LOGI("Boot status: %.*s\n", (int)sizeof(boot.status), boot.status);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800288 }
289
290 // --- if arguments weren't supplied, look in the bootloader control block
291 if (*argc <= 1) {
292 boot.recovery[sizeof(boot.recovery) - 1] = '\0'; // Ensure termination
293 const char *arg = strtok(boot.recovery, "\n");
294 if (arg != NULL && !strcmp(arg, "recovery")) {
295 *argv = (char **) malloc(sizeof(char *) * MAX_ARGS);
296 (*argv)[0] = strdup(arg);
297 for (*argc = 1; *argc < MAX_ARGS; ++*argc) {
298 if ((arg = strtok(NULL, "\n")) == NULL) break;
299 (*argv)[*argc] = strdup(arg);
300 }
301 LOGI("Got arguments from boot message\n");
302 } else if (boot.recovery[0] != 0 && boot.recovery[0] != 255) {
303 LOGE("Bad boot message\n\"%.20s\"\n", boot.recovery);
304 }
305 }
306
307 // --- if that doesn't work, try the command file
308 if (*argc <= 1) {
Doug Zongkerd4208f92010-09-20 12:16:13 -0700309 FILE *fp = fopen_path(COMMAND_FILE, "r");
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800310 if (fp != NULL) {
Jin Feng93ffa752013-06-04 17:46:24 +0800311 char *token;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800312 char *argv0 = (*argv)[0];
313 *argv = (char **) malloc(sizeof(char *) * MAX_ARGS);
314 (*argv)[0] = argv0; // use the same program name
315
316 char buf[MAX_ARG_LENGTH];
317 for (*argc = 1; *argc < MAX_ARGS; ++*argc) {
318 if (!fgets(buf, sizeof(buf), fp)) break;
Jin Feng93ffa752013-06-04 17:46:24 +0800319 token = strtok(buf, "\r\n");
320 if (token != NULL) {
321 (*argv)[*argc] = strdup(token); // Strip newline.
322 } else {
323 --*argc;
324 }
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800325 }
326
327 check_and_fclose(fp, COMMAND_FILE);
328 LOGI("Got arguments from %s\n", COMMAND_FILE);
329 }
330 }
331
332 // --> write the arguments we have back into the bootloader control block
333 // always boot into recovery after this (until finish_recovery() is called)
334 strlcpy(boot.command, "boot-recovery", sizeof(boot.command));
335 strlcpy(boot.recovery, "recovery\n", sizeof(boot.recovery));
336 int i;
337 for (i = 1; i < *argc; ++i) {
338 strlcat(boot.recovery, (*argv)[i], sizeof(boot.recovery));
339 strlcat(boot.recovery, "\n", sizeof(boot.recovery));
340 }
341 set_bootloader_message(&boot);
342}
343
Doug Zongker34c98df2009-08-18 12:05:45 -0700344static void
Oscar Montemayor05231562009-11-30 08:40:57 -0800345set_sdcard_update_bootloader_message() {
Doug Zongker34c98df2009-08-18 12:05:45 -0700346 struct bootloader_message boot;
347 memset(&boot, 0, sizeof(boot));
348 strlcpy(boot.command, "boot-recovery", sizeof(boot.command));
349 strlcpy(boot.recovery, "recovery\n", sizeof(boot.recovery));
350 set_bootloader_message(&boot);
351}
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800352
Tao Baobef39712015-05-04 18:50:27 -0700353// Read from kernel log into buffer and write out to file.
354static void save_kernel_log(const char* destination) {
355 int klog_buf_len = klogctl(KLOG_SIZE_BUFFER, 0, 0);
Patrick Tjincd055ee2014-12-09 11:26:40 -0800356 if (klog_buf_len <= 0) {
Tao Baobef39712015-05-04 18:50:27 -0700357 LOGE("Error getting klog size: %s\n", strerror(errno));
Patrick Tjincd055ee2014-12-09 11:26:40 -0800358 return;
359 }
360
Tao Baobef39712015-05-04 18:50:27 -0700361 std::string buffer(klog_buf_len, 0);
362 int n = klogctl(KLOG_READ_ALL, &buffer[0], klog_buf_len);
363 if (n == -1) {
364 LOGE("Error in reading klog: %s\n", strerror(errno));
Patrick Tjincd055ee2014-12-09 11:26:40 -0800365 return;
366 }
Tao Baobef39712015-05-04 18:50:27 -0700367 buffer.resize(n);
368 android::base::WriteStringToFile(buffer, destination);
Patrick Tjincd055ee2014-12-09 11:26:40 -0800369}
370
Tao Baof0124322015-04-11 02:04:11 +0000371// How much of the temp log we have copied to the copy in cache.
372static long tmplog_offset = 0;
373
Tao Baobef39712015-05-04 18:50:27 -0700374static void copy_log_file(const char* source, const char* destination, bool append) {
375 FILE* dest_fp = fopen_path(destination, append ? "a" : "w");
376 if (dest_fp == nullptr) {
Doug Zongker2c3539e2010-09-29 13:21:30 -0700377 LOGE("Can't open %s\n", destination);
378 } else {
Tao Baobef39712015-05-04 18:50:27 -0700379 FILE* source_fp = fopen(source, "r");
380 if (source_fp != nullptr) {
Tao Baof0124322015-04-11 02:04:11 +0000381 if (append) {
Tao Baobef39712015-05-04 18:50:27 -0700382 fseek(source_fp, tmplog_offset, SEEK_SET); // Since last write
Doug Zongker2c3539e2010-09-29 13:21:30 -0700383 }
384 char buf[4096];
Tao Baobef39712015-05-04 18:50:27 -0700385 size_t bytes;
386 while ((bytes = fread(buf, 1, sizeof(buf), source_fp)) != 0) {
387 fwrite(buf, 1, bytes, dest_fp);
Doug Zongker2c3539e2010-09-29 13:21:30 -0700388 }
Tao Baobef39712015-05-04 18:50:27 -0700389 if (append) {
390 tmplog_offset = ftell(source_fp);
391 }
392 check_and_fclose(source_fp, source);
Doug Zongker2c3539e2010-09-29 13:21:30 -0700393 }
Tao Baobef39712015-05-04 18:50:27 -0700394 check_and_fclose(dest_fp, destination);
Doug Zongker2c3539e2010-09-29 13:21:30 -0700395 }
396}
397
Tao Baobef39712015-05-04 18:50:27 -0700398// Rename last_log -> last_log.1 -> last_log.2 -> ... -> last_log.$max.
399// Similarly rename last_kmsg -> last_kmsg.1 -> ... -> last_kmsg.$max.
400// Overwrite any existing last_log.$max and last_kmsg.$max.
401static void rotate_logs(int max) {
Tao Bao682c34b2015-04-07 17:16:35 -0700402 // Logs should only be rotated once.
403 static bool rotated = false;
404 if (rotated) {
405 return;
406 }
407 rotated = true;
408 ensure_path_mounted(LAST_LOG_FILE);
Tao Baobef39712015-05-04 18:50:27 -0700409 ensure_path_mounted(LAST_KMSG_FILE);
Tao Bao682c34b2015-04-07 17:16:35 -0700410
Tao Bao682c34b2015-04-07 17:16:35 -0700411 for (int i = max-1; i >= 0; --i) {
Tao Bao80e46e02015-06-03 10:49:29 -0700412 std::string old_log = android::base::StringPrintf("%s", LAST_LOG_FILE);
413 if (i > 0) {
414 old_log += "." + std::to_string(i);
415 }
Tao Baobef39712015-05-04 18:50:27 -0700416 std::string new_log = android::base::StringPrintf("%s.%d", LAST_LOG_FILE, i+1);
417 // Ignore errors if old_log doesn't exist.
418 rename(old_log.c_str(), new_log.c_str());
419
Tao Bao80e46e02015-06-03 10:49:29 -0700420 std::string old_kmsg = android::base::StringPrintf("%s", LAST_KMSG_FILE);
421 if (i > 0) {
422 old_kmsg += "." + std::to_string(i);
423 }
Tao Baobef39712015-05-04 18:50:27 -0700424 std::string new_kmsg = android::base::StringPrintf("%s.%d", LAST_KMSG_FILE, i+1);
425 rename(old_kmsg.c_str(), new_kmsg.c_str());
Doug Zongkerda1ebae2013-05-16 11:23:48 -0700426 }
427}
Doug Zongker2c3539e2010-09-29 13:21:30 -0700428
Tao Bao682c34b2015-04-07 17:16:35 -0700429static void copy_logs() {
430 // We only rotate and record the log of the current session if there are
431 // actual attempts to modify the flash, such as wipes, installs from BCB
432 // or menu selections. This is to avoid unnecessary rotation (and
433 // possible deletion) of log files, if it does not do anything loggable.
434 if (!modified_flash) {
435 return;
436 }
437
Tao Baobef39712015-05-04 18:50:27 -0700438 rotate_logs(KEEP_LOG_COUNT);
Tao Bao682c34b2015-04-07 17:16:35 -0700439
Doug Zongkerf24fd7e2013-07-02 11:43:25 -0700440 // Copy logs to cache so the system can find out what happened.
Tao Baof0124322015-04-11 02:04:11 +0000441 copy_log_file(TEMPORARY_LOG_FILE, LOG_FILE, true);
442 copy_log_file(TEMPORARY_LOG_FILE, LAST_LOG_FILE, false);
443 copy_log_file(TEMPORARY_INSTALL_FILE, LAST_INSTALL_FILE, false);
444 save_kernel_log(LAST_KMSG_FILE);
Doug Zongkerf24fd7e2013-07-02 11:43:25 -0700445 chmod(LOG_FILE, 0600);
446 chown(LOG_FILE, 1000, 1000); // system user
Tao Baof0124322015-04-11 02:04:11 +0000447 chmod(LAST_KMSG_FILE, 0600);
448 chown(LAST_KMSG_FILE, 1000, 1000); // system user
Doug Zongkerf24fd7e2013-07-02 11:43:25 -0700449 chmod(LAST_LOG_FILE, 0640);
450 chmod(LAST_INSTALL_FILE, 0644);
451 sync();
452}
453
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800454// clear the recovery command and prepare to boot a (hopefully working) system,
455// copy our log file to cache as well (for the system to read), and
456// record any intent we were asked to communicate back to the system.
457// this function is idempotent: call it as many times as you like.
458static void
Oscar Montemayor05231562009-11-30 08:40:57 -0800459finish_recovery(const char *send_intent) {
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800460 // By this point, we're ready to return to the main system...
461 if (send_intent != NULL) {
Doug Zongkerd4208f92010-09-20 12:16:13 -0700462 FILE *fp = fopen_path(INTENT_FILE, "w");
Jay Freeman (saurik)619ec2f2008-11-17 01:56:05 +0000463 if (fp == NULL) {
464 LOGE("Can't open %s\n", INTENT_FILE);
465 } else {
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800466 fputs(send_intent, fp);
467 check_and_fclose(fp, INTENT_FILE);
468 }
469 }
470
Doug Zongker4f33e552012-08-23 13:16:12 -0700471 // Save the locale to cache, so if recovery is next started up
472 // without a --locale argument (eg, directly from the bootloader)
473 // it will use the last-known locale.
474 if (locale != NULL) {
475 LOGI("Saving locale \"%s\"\n", locale);
476 FILE* fp = fopen_path(LOCALE_FILE, "w");
477 fwrite(locale, 1, strlen(locale), fp);
478 fflush(fp);
479 fsync(fileno(fp));
480 check_and_fclose(fp, LOCALE_FILE);
481 }
482
Doug Zongkerf24fd7e2013-07-02 11:43:25 -0700483 copy_logs();
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800484
Doug Zongkere5d5ac72012-04-12 11:01:22 -0700485 // Reset to normal system boot so recovery won't cycle indefinitely.
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800486 struct bootloader_message boot;
487 memset(&boot, 0, sizeof(boot));
488 set_bootloader_message(&boot);
489
490 // Remove the command file, so recovery won't repeat indefinitely.
Doug Zongkerd4208f92010-09-20 12:16:13 -0700491 if (ensure_path_mounted(COMMAND_FILE) != 0 ||
492 (unlink(COMMAND_FILE) && errno != ENOENT)) {
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800493 LOGW("Can't unlink %s\n", COMMAND_FILE);
494 }
495
Doug Zongkerd0181b82011-10-19 10:51:12 -0700496 ensure_path_unmounted(CACHE_ROOT);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800497 sync(); // For good measure.
498}
499
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700500typedef struct _saved_log_file {
501 char* name;
502 struct stat st;
503 unsigned char* data;
504 struct _saved_log_file* next;
505} saved_log_file;
506
Elliott Hughes945548e2015-06-05 17:59:56 -0700507static bool erase_volume(const char* volume) {
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700508 bool is_cache = (strcmp(volume, CACHE_ROOT) == 0);
Paul Lawrenced0db3372015-11-05 13:38:40 -0800509 bool is_data = (strcmp(volume, DATA_ROOT) == 0);
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700510
Doug Zongker02ec6b82012-08-22 17:26:40 -0700511 ui->SetBackground(RecoveryUI::ERASING);
Doug Zongker211aebc2011-10-28 15:13:10 -0700512 ui->SetProgressType(RecoveryUI::INDETERMINATE);
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700513
514 saved_log_file* head = NULL;
515
516 if (is_cache) {
Tao Baobef39712015-05-04 18:50:27 -0700517 // If we're reformatting /cache, we load any past logs
518 // (i.e. "/cache/recovery/last_*") and the current log
519 // ("/cache/recovery/log") into memory, so we can restore them after
520 // the reformat.
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700521
522 ensure_path_mounted(volume);
523
524 DIR* d;
525 struct dirent* de;
526 d = opendir(CACHE_LOG_DIR);
527 if (d) {
528 char path[PATH_MAX];
529 strcpy(path, CACHE_LOG_DIR);
530 strcat(path, "/");
531 int path_len = strlen(path);
532 while ((de = readdir(d)) != NULL) {
Tao Baobef39712015-05-04 18:50:27 -0700533 if (strncmp(de->d_name, "last_", 5) == 0 || strcmp(de->d_name, "log") == 0) {
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700534 saved_log_file* p = (saved_log_file*) malloc(sizeof(saved_log_file));
535 strcpy(path+path_len, de->d_name);
536 p->name = strdup(path);
537 if (stat(path, &(p->st)) == 0) {
538 // truncate files to 512kb
539 if (p->st.st_size > (1 << 19)) {
540 p->st.st_size = 1 << 19;
541 }
542 p->data = (unsigned char*) malloc(p->st.st_size);
543 FILE* f = fopen(path, "rb");
544 fread(p->data, 1, p->st.st_size, f);
545 fclose(f);
546 p->next = head;
547 head = p;
548 } else {
549 free(p);
550 }
551 }
552 }
553 closedir(d);
554 } else {
555 if (errno != ENOENT) {
556 printf("opendir failed: %s\n", strerror(errno));
557 }
558 }
559 }
560
Doug Zongker211aebc2011-10-28 15:13:10 -0700561 ui->Print("Formatting %s...\n", volume);
Doug Zongker2c3539e2010-09-29 13:21:30 -0700562
Doug Zongkerd0181b82011-10-19 10:51:12 -0700563 ensure_path_unmounted(volume);
Paul Lawrenced0db3372015-11-05 13:38:40 -0800564
565 int result;
566
567 if (is_data && reason && strcmp(reason, "convert_fbe") == 0) {
568 // Create convert_fbe breadcrumb file to signal to init
569 // to convert to file based encryption, not full disk encryption
570 mkdir(CONVERT_FBE_DIR, 0700);
571 FILE* f = fopen(CONVERT_FBE_FILE, "wb");
572 if (!f) {
573 ui->Print("Failed to convert to file encryption\n");
574 return true;
575 }
576 fclose(f);
577 result = format_volume(volume, CONVERT_FBE_DIR);
578 remove(CONVERT_FBE_FILE);
579 rmdir(CONVERT_FBE_DIR);
580 } else {
581 result = format_volume(volume);
582 }
Doug Zongkerd0181b82011-10-19 10:51:12 -0700583
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700584 if (is_cache) {
585 while (head) {
586 FILE* f = fopen_path(head->name, "wb");
587 if (f) {
588 fwrite(head->data, 1, head->st.st_size, f);
589 fclose(f);
590 chmod(head->name, head->st.st_mode);
591 chown(head->name, head->st.st_uid, head->st.st_gid);
592 }
593 free(head->name);
594 free(head->data);
595 saved_log_file* temp = head->next;
596 free(head);
597 head = temp;
598 }
599
Tao Baof0124322015-04-11 02:04:11 +0000600 // Any part of the log we'd copied to cache is now gone.
601 // Reset the pointer so we copy from the beginning of the temp
602 // log.
603 tmplog_offset = 0;
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700604 copy_logs();
Doug Zongker2c3539e2010-09-29 13:21:30 -0700605 }
606
Elliott Hughes945548e2015-06-05 17:59:56 -0700607 return (result == 0);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800608}
609
Doug Zongkerf93d8162009-09-22 15:16:02 -0700610static int
Doug Zongker28ce47c2011-10-28 10:33:05 -0700611get_menu_selection(const char* const * headers, const char* const * items,
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700612 int menu_only, int initial_selection, Device* device) {
Doug Zongkerf93d8162009-09-22 15:16:02 -0700613 // throw away keys pressed previously, so user doesn't
614 // accidentally trigger menu items.
Doug Zongker211aebc2011-10-28 15:13:10 -0700615 ui->FlushKeys();
Doug Zongkerf93d8162009-09-22 15:16:02 -0700616
Doug Zongker211aebc2011-10-28 15:13:10 -0700617 ui->StartMenu(headers, items, initial_selection);
Doug Zongker8674a722010-09-15 11:08:23 -0700618 int selected = initial_selection;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800619 int chosen_item = -1;
620
Doug Zongkerf93d8162009-09-22 15:16:02 -0700621 while (chosen_item < 0) {
Doug Zongker211aebc2011-10-28 15:13:10 -0700622 int key = ui->WaitKey();
623 int visible = ui->IsTextVisible();
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800624
Doug Zongker5cae4452011-01-25 13:15:30 -0800625 if (key == -1) { // ui_wait_key() timed out
Doug Zongker211aebc2011-10-28 15:13:10 -0700626 if (ui->WasTextEverVisible()) {
Doug Zongker5cae4452011-01-25 13:15:30 -0800627 continue;
628 } else {
629 LOGI("timed out waiting for key input; rebooting.\n");
Doug Zongker211aebc2011-10-28 15:13:10 -0700630 ui->EndMenu();
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700631 return 0; // XXX fixme
Doug Zongker5cae4452011-01-25 13:15:30 -0800632 }
633 }
634
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700635 int action = device->HandleMenuKey(key, visible);
Doug Zongkerddd6a282009-06-09 12:22:33 -0700636
637 if (action < 0) {
638 switch (action) {
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700639 case Device::kHighlightUp:
Elliott Hughes642aaa72015-04-10 12:47:46 -0700640 selected = ui->SelectMenu(--selected);
Doug Zongkerddd6a282009-06-09 12:22:33 -0700641 break;
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700642 case Device::kHighlightDown:
Elliott Hughes642aaa72015-04-10 12:47:46 -0700643 selected = ui->SelectMenu(++selected);
Doug Zongkerddd6a282009-06-09 12:22:33 -0700644 break;
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700645 case Device::kInvokeItem:
Doug Zongkerddd6a282009-06-09 12:22:33 -0700646 chosen_item = selected;
647 break;
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700648 case Device::kNoAction:
Doug Zongkerddd6a282009-06-09 12:22:33 -0700649 break;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800650 }
Doug Zongkerf93d8162009-09-22 15:16:02 -0700651 } else if (!menu_only) {
Doug Zongkerddd6a282009-06-09 12:22:33 -0700652 chosen_item = action;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800653 }
Doug Zongkerf93d8162009-09-22 15:16:02 -0700654 }
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800655
Doug Zongker211aebc2011-10-28 15:13:10 -0700656 ui->EndMenu();
Doug Zongkerf93d8162009-09-22 15:16:02 -0700657 return chosen_item;
658}
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800659
Doug Zongker8674a722010-09-15 11:08:23 -0700660static int compare_string(const void* a, const void* b) {
661 return strcmp(*(const char**)a, *(const char**)b);
662}
663
Doug Zongker93950222014-07-08 14:10:23 -0700664// Returns a malloc'd path, or NULL.
Elliott Hughes30694c92015-03-25 15:16:51 -0700665static char* browse_directory(const char* path, Device* device) {
Michael Ward9d2629c2011-06-23 22:14:24 -0700666 ensure_path_mounted(path);
Doug Zongkerc18eeb82010-09-21 16:49:26 -0700667
Elliott Hughes30694c92015-03-25 15:16:51 -0700668 DIR* d = opendir(path);
Doug Zongker8674a722010-09-15 11:08:23 -0700669 if (d == NULL) {
670 LOGE("error opening %s: %s\n", path, strerror(errno));
Doug Zongker93950222014-07-08 14:10:23 -0700671 return NULL;
Doug Zongker8674a722010-09-15 11:08:23 -0700672 }
673
Doug Zongker8674a722010-09-15 11:08:23 -0700674 int d_size = 0;
675 int d_alloc = 10;
Doug Zongker28ce47c2011-10-28 10:33:05 -0700676 char** dirs = (char**)malloc(d_alloc * sizeof(char*));
Doug Zongker8674a722010-09-15 11:08:23 -0700677 int z_size = 1;
678 int z_alloc = 10;
Doug Zongker28ce47c2011-10-28 10:33:05 -0700679 char** zips = (char**)malloc(z_alloc * sizeof(char*));
Doug Zongker8674a722010-09-15 11:08:23 -0700680 zips[0] = strdup("../");
681
Elliott Hughes30694c92015-03-25 15:16:51 -0700682 struct dirent* de;
Doug Zongker8674a722010-09-15 11:08:23 -0700683 while ((de = readdir(d)) != NULL) {
684 int name_len = strlen(de->d_name);
685
686 if (de->d_type == DT_DIR) {
687 // skip "." and ".." entries
688 if (name_len == 1 && de->d_name[0] == '.') continue;
689 if (name_len == 2 && de->d_name[0] == '.' &&
690 de->d_name[1] == '.') continue;
691
692 if (d_size >= d_alloc) {
693 d_alloc *= 2;
Doug Zongker28ce47c2011-10-28 10:33:05 -0700694 dirs = (char**)realloc(dirs, d_alloc * sizeof(char*));
Doug Zongker8674a722010-09-15 11:08:23 -0700695 }
Doug Zongker28ce47c2011-10-28 10:33:05 -0700696 dirs[d_size] = (char*)malloc(name_len + 2);
Doug Zongker8674a722010-09-15 11:08:23 -0700697 strcpy(dirs[d_size], de->d_name);
698 dirs[d_size][name_len] = '/';
699 dirs[d_size][name_len+1] = '\0';
700 ++d_size;
701 } else if (de->d_type == DT_REG &&
702 name_len >= 4 &&
703 strncasecmp(de->d_name + (name_len-4), ".zip", 4) == 0) {
704 if (z_size >= z_alloc) {
705 z_alloc *= 2;
Doug Zongker28ce47c2011-10-28 10:33:05 -0700706 zips = (char**)realloc(zips, z_alloc * sizeof(char*));
Doug Zongker8674a722010-09-15 11:08:23 -0700707 }
708 zips[z_size++] = strdup(de->d_name);
709 }
710 }
711 closedir(d);
712
713 qsort(dirs, d_size, sizeof(char*), compare_string);
714 qsort(zips, z_size, sizeof(char*), compare_string);
715
716 // append dirs to the zips list
717 if (d_size + z_size + 1 > z_alloc) {
718 z_alloc = d_size + z_size + 1;
Doug Zongker28ce47c2011-10-28 10:33:05 -0700719 zips = (char**)realloc(zips, z_alloc * sizeof(char*));
Doug Zongker8674a722010-09-15 11:08:23 -0700720 }
721 memcpy(zips + z_size, dirs, d_size * sizeof(char*));
722 free(dirs);
723 z_size += d_size;
724 zips[z_size] = NULL;
725
Elliott Hughes8fd86d72015-04-13 14:36:02 -0700726 const char* headers[] = { "Choose a package to install:", path, NULL };
Elliott Hughes30694c92015-03-25 15:16:51 -0700727
Doug Zongker93950222014-07-08 14:10:23 -0700728 char* result;
Doug Zongker8674a722010-09-15 11:08:23 -0700729 int chosen_item = 0;
Doug Zongker93950222014-07-08 14:10:23 -0700730 while (true) {
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700731 chosen_item = get_menu_selection(headers, zips, 1, chosen_item, device);
Doug Zongker8674a722010-09-15 11:08:23 -0700732
733 char* item = zips[chosen_item];
734 int item_len = strlen(item);
735 if (chosen_item == 0) { // item 0 is always "../"
Michael Ward9d2629c2011-06-23 22:14:24 -0700736 // go up but continue browsing (if the caller is update_directory)
Doug Zongker93950222014-07-08 14:10:23 -0700737 result = NULL;
Doug Zongker8674a722010-09-15 11:08:23 -0700738 break;
739 }
Doug Zongker93950222014-07-08 14:10:23 -0700740
741 char new_path[PATH_MAX];
742 strlcpy(new_path, path, PATH_MAX);
743 strlcat(new_path, "/", PATH_MAX);
744 strlcat(new_path, item, PATH_MAX);
745
746 if (item[item_len-1] == '/') {
747 // recurse down into a subdirectory
748 new_path[strlen(new_path)-1] = '\0'; // truncate the trailing '/'
749 result = browse_directory(new_path, device);
750 if (result) break;
751 } else {
752 // selected a zip file: return the malloc'd path to the caller.
753 result = strdup(new_path);
754 break;
755 }
756 }
Doug Zongker8674a722010-09-15 11:08:23 -0700757
Elliott Hughes30694c92015-03-25 15:16:51 -0700758 for (int i = 0; i < z_size; ++i) free(zips[i]);
Doug Zongker8674a722010-09-15 11:08:23 -0700759 free(zips);
Doug Zongker8674a722010-09-15 11:08:23 -0700760
761 return result;
762}
763
Elliott Hughes30694c92015-03-25 15:16:51 -0700764static bool yes_no(Device* device, const char* question1, const char* question2) {
Elliott Hughes8fd86d72015-04-13 14:36:02 -0700765 const char* headers[] = { question1, question2, NULL };
Elliott Hughes30694c92015-03-25 15:16:51 -0700766 const char* items[] = { " No", " Yes", NULL };
Doug Zongkerddd6a282009-06-09 12:22:33 -0700767
Elliott Hughes30694c92015-03-25 15:16:51 -0700768 int chosen_item = get_menu_selection(headers, items, 1, 0, device);
769 return (chosen_item == 1);
770}
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800771
Tao Baoe39a9bc2015-03-31 12:19:05 -0700772// Return true on success.
773static bool wipe_data(int should_confirm, Device* device) {
774 if (should_confirm && !yes_no(device, "Wipe all user data?", " THIS CAN NOT BE UNDONE!")) {
775 return false;
Doug Zongkerf93d8162009-09-22 15:16:02 -0700776 }
Doug Zongker1066d2c2009-04-01 13:57:40 -0700777
Tao Bao682c34b2015-04-07 17:16:35 -0700778 modified_flash = true;
779
Doug Zongker211aebc2011-10-28 15:13:10 -0700780 ui->Print("\n-- Wiping data...\n");
Elliott Hughes945548e2015-06-05 17:59:56 -0700781 bool success =
782 device->PreWipeData() &&
783 erase_volume("/data") &&
784 erase_volume("/cache") &&
785 device->PostWipeData();
786 ui->Print("Data wipe %s.\n", success ? "complete" : "failed");
787 return success;
Doug Zongkerf93d8162009-09-22 15:16:02 -0700788}
789
Tao Baoe39a9bc2015-03-31 12:19:05 -0700790// Return true on success.
791static bool wipe_cache(bool should_confirm, Device* device) {
Elliott Hughes30694c92015-03-25 15:16:51 -0700792 if (should_confirm && !yes_no(device, "Wipe cache?", " THIS CAN NOT BE UNDONE!")) {
Tao Baoe39a9bc2015-03-31 12:19:05 -0700793 return false;
Elliott Hughes30694c92015-03-25 15:16:51 -0700794 }
795
Tao Bao682c34b2015-04-07 17:16:35 -0700796 modified_flash = true;
797
Elliott Hughes30694c92015-03-25 15:16:51 -0700798 ui->Print("\n-- Wiping cache...\n");
Elliott Hughes945548e2015-06-05 17:59:56 -0700799 bool success = erase_volume("/cache");
800 ui->Print("Cache wipe %s.\n", success ? "complete" : "failed");
801 return success;
Elliott Hughes30694c92015-03-25 15:16:51 -0700802}
803
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700804static void choose_recovery_file(Device* device) {
Elliott Hughesc0491632015-05-06 12:40:05 -0700805 // "Back" + KEEP_LOG_COUNT * 2 + terminating nullptr entry
806 char* entries[1 + KEEP_LOG_COUNT * 2 + 1];
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700807 memset(entries, 0, sizeof(entries));
808
Tao Baobef39712015-05-04 18:50:27 -0700809 unsigned int n = 0;
Patrick Tjincd055ee2014-12-09 11:26:40 -0800810
Patrick Tjincd055ee2014-12-09 11:26:40 -0800811 // Add LAST_LOG_FILE + LAST_LOG_FILE.x
Tao Baobef39712015-05-04 18:50:27 -0700812 // Add LAST_KMSG_FILE + LAST_KMSG_FILE.x
813 for (int i = 0; i < KEEP_LOG_COUNT; i++) {
814 char* log_file;
Tao Bao80e46e02015-06-03 10:49:29 -0700815 int ret;
816 ret = (i == 0) ? asprintf(&log_file, "%s", LAST_LOG_FILE) :
817 asprintf(&log_file, "%s.%d", LAST_LOG_FILE, i);
818 if (ret == -1) {
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700819 // memory allocation failure - return early. Should never happen.
820 return;
821 }
Tao Baobef39712015-05-04 18:50:27 -0700822 if ((ensure_path_mounted(log_file) != 0) || (access(log_file, R_OK) == -1)) {
823 free(log_file);
824 } else {
825 entries[n++] = log_file;
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700826 }
Tao Baobef39712015-05-04 18:50:27 -0700827
828 char* kmsg_file;
Tao Bao80e46e02015-06-03 10:49:29 -0700829 ret = (i == 0) ? asprintf(&kmsg_file, "%s", LAST_KMSG_FILE) :
830 asprintf(&kmsg_file, "%s.%d", LAST_KMSG_FILE, i);
831 if (ret == -1) {
Tao Baobef39712015-05-04 18:50:27 -0700832 // memory allocation failure - return early. Should never happen.
833 return;
834 }
835 if ((ensure_path_mounted(kmsg_file) != 0) || (access(kmsg_file, R_OK) == -1)) {
836 free(kmsg_file);
837 } else {
838 entries[n++] = kmsg_file;
839 }
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700840 }
841
Elliott Hughesc0491632015-05-06 12:40:05 -0700842 entries[n++] = strdup("Back");
843
Tao Baobef39712015-05-04 18:50:27 -0700844 const char* headers[] = { "Select file to view", nullptr };
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700845
Elliott Hughes8de52072015-04-08 20:06:50 -0700846 while (true) {
Elliott Hughes30694c92015-03-25 15:16:51 -0700847 int chosen_item = get_menu_selection(headers, entries, 1, 0, device);
Elliott Hughesc0491632015-05-06 12:40:05 -0700848 if (strcmp(entries[chosen_item], "Back") == 0) break;
Elliott Hughes8de52072015-04-08 20:06:50 -0700849
Elliott Hughes8de52072015-04-08 20:06:50 -0700850 ui->ShowFile(entries[chosen_item]);
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700851 }
852
Tao Baobef39712015-05-04 18:50:27 -0700853 for (size_t i = 0; i < (sizeof(entries) / sizeof(*entries)); i++) {
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700854 free(entries[i]);
855 }
856}
857
Tao Bao145d8612015-03-25 15:51:15 -0700858static int apply_from_sdcard(Device* device, bool* wipe_cache) {
Tao Bao682c34b2015-04-07 17:16:35 -0700859 modified_flash = true;
860
Christian Poetzsch4ec58a42015-02-19 10:42:39 +0000861 if (ensure_path_mounted(SDCARD_ROOT) != 0) {
862 ui->Print("\n-- Couldn't mount %s.\n", SDCARD_ROOT);
863 return INSTALL_ERROR;
864 }
865
866 char* path = browse_directory(SDCARD_ROOT, device);
867 if (path == NULL) {
Elliott Hughes018ed312015-04-08 16:51:36 -0700868 ui->Print("\n-- No package file selected.\n");
caozhiyuanb4effb92015-06-10 16:46:38 +0800869 ensure_path_unmounted(SDCARD_ROOT);
Christian Poetzsch4ec58a42015-02-19 10:42:39 +0000870 return INSTALL_ERROR;
871 }
872
873 ui->Print("\n-- Install %s ...\n", path);
874 set_sdcard_update_bootloader_message();
875 void* token = start_sdcard_fuse(path);
876
877 int status = install_package(FUSE_SIDELOAD_HOST_PATHNAME, wipe_cache,
878 TEMPORARY_INSTALL_FILE, false);
879
880 finish_sdcard_fuse(token);
881 ensure_path_unmounted(SDCARD_ROOT);
882 return status;
883}
884
Doug Zongker8d9d3d52014-04-01 13:20:23 -0700885// Return REBOOT, SHUTDOWN, or REBOOT_BOOTLOADER. Returning NO_ACTION
886// means to take the default, which is to reboot or shutdown depending
887// on if the --shutdown_after flag was passed to recovery.
888static Device::BuiltinAction
Doug Zongker6c8553d2012-09-24 10:40:47 -0700889prompt_and_wait(Device* device, int status) {
Doug Zongkerf93d8162009-09-22 15:16:02 -0700890 for (;;) {
891 finish_recovery(NULL);
Doug Zongker6c8553d2012-09-24 10:40:47 -0700892 switch (status) {
893 case INSTALL_SUCCESS:
894 case INSTALL_NONE:
895 ui->SetBackground(RecoveryUI::NO_COMMAND);
896 break;
897
898 case INSTALL_ERROR:
899 case INSTALL_CORRUPT:
900 ui->SetBackground(RecoveryUI::ERROR);
901 break;
902 }
Doug Zongker211aebc2011-10-28 15:13:10 -0700903 ui->SetProgressType(RecoveryUI::EMPTY);
Doug Zongkerf93d8162009-09-22 15:16:02 -0700904
Elliott Hughes8fd86d72015-04-13 14:36:02 -0700905 int chosen_item = get_menu_selection(nullptr, device->GetMenuItems(), 0, 0, device);
Doug Zongkerf93d8162009-09-22 15:16:02 -0700906
907 // device-specific code may take some action here. It may
908 // return one of the core actions handled in the switch
909 // statement below.
Doug Zongker8d9d3d52014-04-01 13:20:23 -0700910 Device::BuiltinAction chosen_action = device->InvokeMenuItem(chosen_item);
Doug Zongkerf93d8162009-09-22 15:16:02 -0700911
Elliott Hughes30694c92015-03-25 15:16:51 -0700912 bool should_wipe_cache = false;
Doug Zongker8d9d3d52014-04-01 13:20:23 -0700913 switch (chosen_action) {
914 case Device::NO_ACTION:
915 break;
916
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700917 case Device::REBOOT:
Doug Zongker8d9d3d52014-04-01 13:20:23 -0700918 case Device::SHUTDOWN:
919 case Device::REBOOT_BOOTLOADER:
920 return chosen_action;
Doug Zongkerf93d8162009-09-22 15:16:02 -0700921
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700922 case Device::WIPE_DATA:
923 wipe_data(ui->IsTextVisible(), device);
Doug Zongker8d9d3d52014-04-01 13:20:23 -0700924 if (!ui->IsTextVisible()) return Device::NO_ACTION;
Doug Zongkerf93d8162009-09-22 15:16:02 -0700925 break;
926
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700927 case Device::WIPE_CACHE:
Elliott Hughes30694c92015-03-25 15:16:51 -0700928 wipe_cache(ui->IsTextVisible(), device);
Doug Zongker8d9d3d52014-04-01 13:20:23 -0700929 if (!ui->IsTextVisible()) return Device::NO_ACTION;
Doug Zongkerf93d8162009-09-22 15:16:02 -0700930 break;
931
Christian Poetzsch4ec58a42015-02-19 10:42:39 +0000932 case Device::APPLY_ADB_SIDELOAD:
Elliott Hughesec283402015-04-10 10:01:53 -0700933 case Device::APPLY_SDCARD:
Christian Poetzsch4ec58a42015-02-19 10:42:39 +0000934 {
935 bool adb = (chosen_action == Device::APPLY_ADB_SIDELOAD);
936 if (adb) {
Elliott Hughes30694c92015-03-25 15:16:51 -0700937 status = apply_from_adb(ui, &should_wipe_cache, TEMPORARY_INSTALL_FILE);
Doug Zongkerd0181b82011-10-19 10:51:12 -0700938 } else {
Elliott Hughes30694c92015-03-25 15:16:51 -0700939 status = apply_from_sdcard(device, &should_wipe_cache);
Doug Zongkerd0181b82011-10-19 10:51:12 -0700940 }
Doug Zongker945fc682014-07-10 10:50:39 -0700941
Elliott Hughes30694c92015-03-25 15:16:51 -0700942 if (status == INSTALL_SUCCESS && should_wipe_cache) {
Tao Baoe39a9bc2015-03-31 12:19:05 -0700943 if (!wipe_cache(false, device)) {
944 status = INSTALL_ERROR;
945 }
Christian Poetzsch4ec58a42015-02-19 10:42:39 +0000946 }
947
Tao Baoc679f932015-03-30 09:43:49 -0700948 if (status != INSTALL_SUCCESS) {
949 ui->SetBackground(RecoveryUI::ERROR);
950 ui->Print("Installation aborted.\n");
951 copy_logs();
952 } else if (!ui->IsTextVisible()) {
953 return Device::NO_ACTION; // reboot if logs aren't visible
954 } else {
955 ui->Print("\nInstall from %s complete.\n", adb ? "ADB" : "SD card");
Doug Zongker8674a722010-09-15 11:08:23 -0700956 }
Doug Zongkerf93d8162009-09-22 15:16:02 -0700957 }
958 break;
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700959
Elliott Hughesec283402015-04-10 10:01:53 -0700960 case Device::VIEW_RECOVERY_LOGS:
961 choose_recovery_file(device);
Michael Ward9d2629c2011-06-23 22:14:24 -0700962 break;
Doug Zongker9270a202012-01-09 15:16:13 -0800963
Elliott Hughesec283402015-04-10 10:01:53 -0700964 case Device::MOUNT_SYSTEM:
Tao Baoabb8f772015-07-30 14:43:27 -0700965 char system_root_image[PROPERTY_VALUE_MAX];
966 property_get("ro.build.system_root_image", system_root_image, "");
967
968 // For a system image built with the root directory (i.e.
969 // system_root_image == "true"), we mount it to /system_root, and symlink /system
970 // to /system_root/system to make adb shell work (the symlink is created through
971 // the build system).
972 // Bug: 22855115
973 if (strcmp(system_root_image, "true") == 0) {
974 if (ensure_path_mounted_at("/", "/system_root") != -1) {
975 ui->Print("Mounted /system.\n");
976 }
977 } else {
978 if (ensure_path_mounted("/system") != -1) {
979 ui->Print("Mounted /system.\n");
980 }
Elliott Hughesec283402015-04-10 10:01:53 -0700981 }
Tao Baoabb8f772015-07-30 14:43:27 -0700982
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700983 break;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800984 }
985 }
986}
987
988static void
Oscar Montemayor05231562009-11-30 08:40:57 -0800989print_property(const char *key, const char *name, void *cookie) {
Doug Zongker56c51052010-07-01 09:18:44 -0700990 printf("%s=%s\n", key, name);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800991}
992
Doug Zongker02ec6b82012-08-22 17:26:40 -0700993static void
994load_locale_from_cache() {
995 FILE* fp = fopen_path(LOCALE_FILE, "r");
996 char buffer[80];
997 if (fp != NULL) {
998 fgets(buffer, sizeof(buffer), fp);
999 int j = 0;
Doug Zongker5fa8c232012-09-18 12:37:02 -07001000 unsigned int i;
Doug Zongker02ec6b82012-08-22 17:26:40 -07001001 for (i = 0; i < sizeof(buffer) && buffer[i]; ++i) {
1002 if (!isspace(buffer[i])) {
1003 buffer[j++] = buffer[i];
1004 }
1005 }
1006 buffer[j] = 0;
1007 locale = strdup(buffer);
Devin Kim6016d082012-10-08 09:47:37 -07001008 check_and_fclose(fp, LOCALE_FILE);
Doug Zongker02ec6b82012-08-22 17:26:40 -07001009 }
1010}
1011
Doug Zongker7c3ae452013-05-14 11:03:02 -07001012static RecoveryUI* gCurrentUI = NULL;
1013
1014void
1015ui_print(const char* format, ...) {
1016 char buffer[256];
1017
1018 va_list ap;
1019 va_start(ap, format);
1020 vsnprintf(buffer, sizeof(buffer), format, ap);
1021 va_end(ap);
1022
1023 if (gCurrentUI != NULL) {
1024 gCurrentUI->Print("%s", buffer);
1025 } else {
1026 fputs(buffer, stdout);
1027 }
1028}
1029
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001030int
Oscar Montemayor05231562009-11-30 08:40:57 -08001031main(int argc, char **argv) {
Doug Zongker9270a202012-01-09 15:16:13 -08001032 // If this binary is started with the single argument "--adbd",
1033 // instead of being the normal recovery binary, it turns into kind
1034 // of a stripped-down version of adbd that only supports the
1035 // 'sideload' command. Note this must be a real argument, not
1036 // anything in the command file or bootloader control block; the
1037 // only way recovery should be run with this argument is when it
1038 // starts a copy of itself from the apply_from_adb() function.
1039 if (argc == 2 && strcmp(argv[1], "--adbd") == 0) {
Elliott Hughes9f4fdb32015-11-20 13:03:24 -08001040 adb_server_main(0, DEFAULT_ADB_PORT, -1);
Doug Zongker9270a202012-01-09 15:16:13 -08001041 return 0;
1042 }
1043
Tao Bao04ca4262015-09-10 15:32:24 -07001044 time_t start = time(NULL);
1045
1046 // redirect_stdio should be called only in non-sideload mode. Otherwise
1047 // we may have two logger instances with different timestamps.
1048 redirect_stdio(TEMPORARY_LOG_FILE);
1049
Doug Zongker19a8e242014-01-21 09:25:41 -08001050 printf("Starting recovery (pid %d) on %s", getpid(), ctime(&start));
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001051
Doug Zongkerd4208f92010-09-20 12:16:13 -07001052 load_volume_table();
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001053 get_args(&argc, &argv);
1054
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001055 const char *send_intent = NULL;
1056 const char *update_package = NULL;
Tao Baoe39a9bc2015-03-31 12:19:05 -07001057 bool should_wipe_data = false;
Tao Baoc679f932015-03-30 09:43:49 -07001058 bool should_wipe_cache = false;
Tao Bao145d8612015-03-25 15:51:15 -07001059 bool show_text = false;
Tao Baoc679f932015-03-30 09:43:49 -07001060 bool sideload = false;
1061 bool sideload_auto_reboot = false;
Doug Zongkere5d5ac72012-04-12 11:01:22 -07001062 bool just_exit = false;
Doug Zongkerb1d12632014-03-18 10:32:12 -07001063 bool shutdown_after = false;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001064
1065 int arg;
1066 while ((arg = getopt_long(argc, argv, "", OPTIONS, NULL)) != -1) {
1067 switch (arg) {
Tao Baoc679f932015-03-30 09:43:49 -07001068 case 'i': send_intent = optarg; break;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001069 case 'u': update_package = optarg; break;
Tao Baoe39a9bc2015-03-31 12:19:05 -07001070 case 'w': should_wipe_data = true; break;
Tao Baoc679f932015-03-30 09:43:49 -07001071 case 'c': should_wipe_cache = true; break;
Tao Bao145d8612015-03-25 15:51:15 -07001072 case 't': show_text = true; break;
Tao Baoc679f932015-03-30 09:43:49 -07001073 case 's': sideload = true; break;
1074 case 'a': sideload = true; sideload_auto_reboot = true; break;
Doug Zongkere5d5ac72012-04-12 11:01:22 -07001075 case 'x': just_exit = true; break;
Doug Zongker02ec6b82012-08-22 17:26:40 -07001076 case 'l': locale = optarg; break;
Doug Zongkerc87bab12013-11-25 13:53:25 -08001077 case 'g': {
1078 if (stage == NULL || *stage == '\0') {
1079 char buffer[20] = "1/";
1080 strncat(buffer, optarg, sizeof(buffer)-3);
1081 stage = strdup(buffer);
1082 }
1083 break;
1084 }
Doug Zongkerb1d12632014-03-18 10:32:12 -07001085 case 'p': shutdown_after = true; break;
Jeff Sharkeya6e13ae2014-09-24 11:46:17 -07001086 case 'r': reason = optarg; break;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001087 case '?':
1088 LOGE("Invalid command argument\n");
1089 continue;
1090 }
1091 }
1092
Doug Zongker02ec6b82012-08-22 17:26:40 -07001093 if (locale == NULL) {
1094 load_locale_from_cache();
1095 }
1096 printf("locale is [%s]\n", locale);
Doug Zongker0d32f252014-02-13 15:07:56 -08001097 printf("stage is [%s]\n", stage);
Jeff Sharkeya6e13ae2014-09-24 11:46:17 -07001098 printf("reason is [%s]\n", reason);
Doug Zongker02ec6b82012-08-22 17:26:40 -07001099
1100 Device* device = make_device();
1101 ui = device->GetUI();
Doug Zongker7c3ae452013-05-14 11:03:02 -07001102 gCurrentUI = ui;
Doug Zongker02ec6b82012-08-22 17:26:40 -07001103
Doug Zongker5fa8c232012-09-18 12:37:02 -07001104 ui->SetLocale(locale);
Doug Zongker02ec6b82012-08-22 17:26:40 -07001105 ui->Init();
Doug Zongkerc87bab12013-11-25 13:53:25 -08001106
1107 int st_cur, st_max;
1108 if (stage != NULL && sscanf(stage, "%d/%d", &st_cur, &st_max) == 2) {
1109 ui->SetStage(st_cur, st_max);
1110 }
1111
Doug Zongker02ec6b82012-08-22 17:26:40 -07001112 ui->SetBackground(RecoveryUI::NONE);
1113 if (show_text) ui->ShowText(true);
1114
Stephen Smalley779701d2012-02-09 14:13:23 -05001115 struct selinux_opt seopts[] = {
1116 { SELABEL_OPT_PATH, "/file_contexts" }
1117 };
1118
1119 sehandle = selabel_open(SELABEL_CTX_FILE, seopts, 1);
1120
1121 if (!sehandle) {
Doug Zongkerfafc85b2013-07-09 12:29:45 -07001122 ui->Print("Warning: No file_contexts\n");
Stephen Smalley779701d2012-02-09 14:13:23 -05001123 }
Stephen Smalley779701d2012-02-09 14:13:23 -05001124
Doug Zongkerdaefc1d2011-10-31 09:34:15 -07001125 device->StartRecovery();
Doug Zongkerefa1bab2010-02-01 15:59:12 -08001126
Doug Zongker56c51052010-07-01 09:18:44 -07001127 printf("Command:");
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001128 for (arg = 0; arg < argc; arg++) {
Doug Zongker56c51052010-07-01 09:18:44 -07001129 printf(" \"%s\"", argv[arg]);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001130 }
Doug Zongker9b125b02010-09-22 12:01:37 -07001131 printf("\n");
1132
1133 if (update_package) {
1134 // For backwards compatibility on the cache partition only, if
1135 // we're given an old 'root' path "CACHE:foo", change it to
1136 // "/cache/foo".
1137 if (strncmp(update_package, "CACHE:", 6) == 0) {
1138 int len = strlen(update_package) + 10;
Doug Zongker28ce47c2011-10-28 10:33:05 -07001139 char* modified_path = (char*)malloc(len);
Jeremy Compostella1b7d9b72015-07-29 17:17:03 +02001140 if (modified_path) {
1141 strlcpy(modified_path, "/cache/", len);
1142 strlcat(modified_path, update_package+6, len);
1143 printf("(replacing path \"%s\" with \"%s\")\n",
1144 update_package, modified_path);
1145 update_package = modified_path;
1146 }
1147 else
1148 printf("modified_path allocation failed\n");
Doug Zongker9b125b02010-09-22 12:01:37 -07001149 }
1150 }
1151 printf("\n");
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001152
1153 property_list(print_property, NULL);
Doug Zongker56c51052010-07-01 09:18:44 -07001154 printf("\n");
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001155
Elliott Hughesbb78d622015-04-09 20:51:08 -07001156 ui->Print("Supported API: %d\n", RECOVERY_API_VERSION);
1157
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001158 int status = INSTALL_SUCCESS;
1159
Doug Zongker540d57f2011-01-18 13:36:58 -08001160 if (update_package != NULL) {
Tao Baoc679f932015-03-30 09:43:49 -07001161 status = install_package(update_package, &should_wipe_cache, TEMPORARY_INSTALL_FILE, true);
1162 if (status == INSTALL_SUCCESS && should_wipe_cache) {
1163 wipe_cache(false, device);
Doug Zongkerd0181b82011-10-19 10:51:12 -07001164 }
Doug Zongker7c3ae452013-05-14 11:03:02 -07001165 if (status != INSTALL_SUCCESS) {
1166 ui->Print("Installation aborted.\n");
1167
1168 // If this is an eng or userdebug build, then automatically
1169 // turn the text display on if the script fails so the error
1170 // message is visible.
Elliott Hughesf14af802015-02-10 14:46:14 -08001171 if (is_ro_debuggable()) {
Doug Zongker7c3ae452013-05-14 11:03:02 -07001172 ui->ShowText(true);
1173 }
1174 }
Tao Baoe39a9bc2015-03-31 12:19:05 -07001175 } else if (should_wipe_data) {
1176 if (!wipe_data(false, device)) {
1177 status = INSTALL_ERROR;
1178 }
Tao Baoc679f932015-03-30 09:43:49 -07001179 } else if (should_wipe_cache) {
Tao Baoe39a9bc2015-03-31 12:19:05 -07001180 if (!wipe_cache(false, device)) {
1181 status = INSTALL_ERROR;
1182 }
Tao Baoc679f932015-03-30 09:43:49 -07001183 } else if (sideload) {
1184 // 'adb reboot sideload' acts the same as user presses key combinations
1185 // to enter the sideload mode. When 'sideload-auto-reboot' is used, text
1186 // display will NOT be turned on by default. And it will reboot after
1187 // sideload finishes even if there are errors. Unless one turns on the
1188 // text display during the installation. This is to enable automated
1189 // testing.
1190 if (!sideload_auto_reboot) {
1191 ui->ShowText(true);
1192 }
1193 status = apply_from_adb(ui, &should_wipe_cache, TEMPORARY_INSTALL_FILE);
1194 if (status == INSTALL_SUCCESS && should_wipe_cache) {
Tao Baoe39a9bc2015-03-31 12:19:05 -07001195 if (!wipe_cache(false, device)) {
1196 status = INSTALL_ERROR;
1197 }
Tao Baoc679f932015-03-30 09:43:49 -07001198 }
1199 ui->Print("\nInstall from ADB complete (status: %d).\n", status);
1200 if (sideload_auto_reboot) {
1201 ui->Print("Rebooting automatically.\n");
1202 }
Doug Zongkere5d5ac72012-04-12 11:01:22 -07001203 } else if (!just_exit) {
Doug Zongker02ec6b82012-08-22 17:26:40 -07001204 status = INSTALL_NONE; // No command specified
1205 ui->SetBackground(RecoveryUI::NO_COMMAND);
Tao Bao785d22c2015-05-04 09:34:29 -07001206
1207 // http://b/17489952
1208 // If this is an eng or userdebug build, automatically turn on the
1209 // text display if no command is specified.
1210 if (is_ro_debuggable()) {
1211 ui->ShowText(true);
1212 }
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001213 }
1214
Tao Baoc679f932015-03-30 09:43:49 -07001215 if (!sideload_auto_reboot && (status == INSTALL_ERROR || status == INSTALL_CORRUPT)) {
Doug Zongkerf24fd7e2013-07-02 11:43:25 -07001216 copy_logs();
Doug Zongker02ec6b82012-08-22 17:26:40 -07001217 ui->SetBackground(RecoveryUI::ERROR);
1218 }
Tao Baoc679f932015-03-30 09:43:49 -07001219
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001220 Device::BuiltinAction after = shutdown_after ? Device::SHUTDOWN : Device::REBOOT;
Tao Baoc679f932015-03-30 09:43:49 -07001221 if ((status != INSTALL_SUCCESS && !sideload_auto_reboot) || ui->IsTextVisible()) {
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001222 Device::BuiltinAction temp = prompt_and_wait(device, status);
Tao Baoc679f932015-03-30 09:43:49 -07001223 if (temp != Device::NO_ACTION) {
1224 after = temp;
1225 }
Doug Zongker8674a722010-09-15 11:08:23 -07001226 }
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001227
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001228 // Save logs and clean up before rebooting or shutting down.
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001229 finish_recovery(send_intent);
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001230
1231 switch (after) {
1232 case Device::SHUTDOWN:
1233 ui->Print("Shutting down...\n");
1234 property_set(ANDROID_RB_PROPERTY, "shutdown,");
1235 break;
1236
1237 case Device::REBOOT_BOOTLOADER:
1238 ui->Print("Rebooting to bootloader...\n");
1239 property_set(ANDROID_RB_PROPERTY, "reboot,bootloader");
1240 break;
1241
1242 default:
1243 ui->Print("Rebooting...\n");
1244 property_set(ANDROID_RB_PROPERTY, "reboot,");
1245 break;
Doug Zongkerb1d12632014-03-18 10:32:12 -07001246 }
Tao Bao75238632015-05-27 14:46:17 -07001247 while (true) {
1248 pause();
1249 }
1250 // Should be unreachable.
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001251 return EXIT_SUCCESS;
1252}