blob: d7bbb13d308102f9af2ea7f916f4dcbb9ec5896b [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>
Tao Bao862a4c12016-06-02 11:16:50 -070022#include <inttypes.h>
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080023#include <limits.h>
Tao Bao862a4c12016-06-02 11:16:50 -070024#include <linux/fs.h>
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080025#include <linux/input.h>
Doug Zongker7c3ae452013-05-14 11:03:02 -070026#include <stdarg.h>
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080027#include <stdio.h>
28#include <stdlib.h>
29#include <string.h>
Patrick Tjincd055ee2014-12-09 11:26:40 -080030#include <sys/klog.h>
Doug Zongker23ceeea2010-07-08 17:27:55 -070031#include <sys/stat.h>
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080032#include <sys/types.h>
Tao Baocdcf28f2016-01-13 15:05:20 -080033#include <sys/wait.h>
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080034#include <time.h>
35#include <unistd.h>
36
Tao Baoc4a18ef2017-02-10 00:13:30 -080037#include <algorithm>
Tao Bao04ca4262015-09-10 15:32:24 -070038#include <chrono>
Tao Baoc4a18ef2017-02-10 00:13:30 -080039#include <memory>
Tao Bao862a4c12016-06-02 11:16:50 -070040#include <string>
41#include <vector>
Tao Bao04ca4262015-09-10 15:32:24 -070042
Elliott Hughes4b166f02015-12-04 15:30:20 -080043#include <android-base/file.h>
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -070044#include <android-base/logging.h>
Tianjie Xu3c62b672016-02-05 18:25:58 -080045#include <android-base/parseint.h>
Elliott Hughescb220402016-09-23 15:30:55 -070046#include <android-base/properties.h>
Elliott Hughes4b166f02015-12-04 15:30:20 -080047#include <android-base/stringprintf.h>
Tao Bao862a4c12016-06-02 11:16:50 -070048#include <android-base/strings.h>
49#include <android-base/unique_fd.h>
Yabin Cui8b309f62016-06-24 18:22:02 -070050#include <bootloader_message/bootloader_message.h>
Tao Bao75238632015-05-27 14:46:17 -070051#include <cutils/android_reboot.h>
Elliott Hughescb220402016-09-23 15:30:55 -070052#include <cutils/properties.h> /* for property_list */
Elliott Hughes4bbd5bf2016-04-01 18:24:39 -070053#include <healthd/BatteryMonitor.h>
Mark Salyzyna4f701a2016-03-09 14:58:16 -080054#include <private/android_logger.h> /* private pmsg functions */
Tao Baoe1905ad2017-03-22 14:57:04 -070055#include <private/android_filesystem_config.h> /* for AID_SYSTEM */
Jeff Vander Stoepe35926e2017-06-14 15:30:39 -070056#include <selinux/android.h>
Elliott Hughes4bbd5bf2016-04-01 18:24:39 -070057#include <selinux/label.h>
58#include <selinux/selinux.h>
Tianjie Xu8cf5c8f2016-09-08 20:10:11 -070059#include <ziparchive/zip_archive.h>
Yabin Cui99281df2016-02-17 12:21:52 -080060
Tao Bao75238632015-05-27 14:46:17 -070061#include "adb_install.h"
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080062#include "common.h"
Tao Bao75238632015-05-27 14:46:17 -070063#include "device.h"
64#include "fuse_sdcard_provider.h"
65#include "fuse_sideload.h"
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080066#include "install.h"
Josh Gaoacb2a2f2016-08-26 18:24:34 -070067#include "minadbd/minadbd.h"
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080068#include "minui/minui.h"
Tianjie Xu8cf5c8f2016-09-08 20:10:11 -070069#include "otautil/DirUtil.h"
Tao Bao1fc5bf32017-10-06 07:43:41 -070070#include "otautil/error_code.h"
Tao Bao641fa972018-04-25 18:59:40 -070071#include "otautil/paths.h"
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080072#include "roots.h"
Tianjie Xue113e4d2016-10-21 17:46:13 -070073#include "rotate_logs.h"
Doug Zongker211aebc2011-10-28 15:13:10 -070074#include "screen_ui.h"
Sen Jiangd5304492016-12-09 16:20:49 -080075#include "stub_ui.h"
Tianjie Xue113e4d2016-10-21 17:46:13 -070076#include "ui.h"
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080077
Tianjie Xu06e57ac2016-07-11 14:04:08 -070078// More bootreasons can be found in "system/core/bootstat/bootstat.cpp".
79static const std::vector<std::string> bootreason_blacklist {
80 "kernel_panic",
81 "Panic",
82};
83
Doug Zongker6d0d7ac2013-07-09 13:34:55 -070084static const char *CACHE_LOG_DIR = "/cache/recovery";
Doug Zongkerd4208f92010-09-20 12:16:13 -070085static const char *COMMAND_FILE = "/cache/recovery/command";
Doug Zongkerd4208f92010-09-20 12:16:13 -070086static const char *LOG_FILE = "/cache/recovery/log";
Doug Zongkerd0181b82011-10-19 10:51:12 -070087static const char *LAST_INSTALL_FILE = "/cache/recovery/last_install";
Doug Zongker8b240cc2012-08-29 15:19:29 -070088static const char *LOCALE_FILE = "/cache/recovery/last_locale";
Paul Lawrence661f8a62016-02-25 12:42:19 -080089static const char *CONVERT_FBE_DIR = "/tmp/convert_fbe";
90static const char *CONVERT_FBE_FILE = "/tmp/convert_fbe/convert_fbe";
Michael Ward9d2629c2011-06-23 22:14:24 -070091static const char *CACHE_ROOT = "/cache";
Paul Lawrenced0db3372015-11-05 13:38:40 -080092static const char *DATA_ROOT = "/data";
Paul Crowley3b4d5162016-06-08 13:51:41 -070093static const char* METADATA_ROOT = "/metadata";
Doug Zongkerd4208f92010-09-20 12:16:13 -070094static const char *SDCARD_ROOT = "/sdcard";
Tao Baof0124322015-04-11 02:04:11 +000095static const char *LAST_KMSG_FILE = "/cache/recovery/last_kmsg";
Tao Baobef39712015-05-04 18:50:27 -070096static const char *LAST_LOG_FILE = "/cache/recovery/last_log";
Tianjie Xu69575552017-05-16 15:51:46 -070097// We will try to apply the update package 5 times at most in case of an I/O error or
98// bspatch | imgpatch error.
99static const int RETRY_LIMIT = 4;
Tao Baoac9d94d2016-11-03 11:37:15 -0700100static constexpr const char* RECOVERY_WIPE = "/etc/recovery.wipe";
Tianjie Xu2078b222017-03-22 12:27:26 -0700101static constexpr const char* DEFAULT_LOCALE = "en-US";
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700102
Tao Baobd0ddcd2017-05-04 13:03:18 -0700103// We define RECOVERY_API_VERSION in Android.mk, which will be picked up by build system and packed
104// into target_files.zip. Assert the version defined in code and in Android.mk are consistent.
105static_assert(kRecoveryApiVersion == RECOVERY_API_VERSION, "Mismatching recovery API versions.");
106
Tao Baoac9d94d2016-11-03 11:37:15 -0700107static std::string locale;
Dan Albert8584fcf2016-10-27 03:08:08 +0000108static bool has_cache = false;
Tao Baoc0319b62016-10-13 15:17:04 -0700109
Tao Baoac9d94d2016-11-03 11:37:15 -0700110RecoveryUI* ui = nullptr;
111bool modified_flash = false;
Tao Baoa8d72bc2016-12-25 18:46:50 -0800112std::string stage;
Tao Baoac9d94d2016-11-03 11:37:15 -0700113const char* reason = nullptr;
114struct selabel_handle* sehandle;
115
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800116/*
117 * The recovery tool communicates with the main system through /cache files.
118 * /cache/recovery/command - INPUT - command line for tool, one arg per line
119 * /cache/recovery/log - OUTPUT - combined log file from recovery run(s)
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800120 *
121 * The arguments which may be supplied in the recovery.command file:
Doug Zongkerd4208f92010-09-20 12:16:13 -0700122 * --update_package=path - verify install an OTA package file
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800123 * --wipe_data - erase user data (and cache), then reboot
Tao Baof9f17342018-04-27 10:44:04 -0700124 * --prompt_and_wipe_data - prompt the user that data is corrupt, with their consent erase user
125 * data (and cache), then reboot
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800126 * --wipe_cache - wipe cache (but not user data), then reboot
Tao Baof9f17342018-04-27 10:44:04 -0700127 * --show_text - show the recovery text menu, used by some bootloader (e.g. http://b/36872519).
Oscar Montemayor05231562009-11-30 08:40:57 -0800128 * --set_encrypted_filesystem=on|off - enables / diasables encrypted fs
Doug Zongkere5d5ac72012-04-12 11:01:22 -0700129 * --just_exit - do nothing; exit and reboot
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800130 *
131 * After completing, we remove /cache/recovery/command and reboot.
132 * Arguments may also be supplied in the bootloader control block (BCB).
133 * These important scenarios must be safely restartable at any point:
134 *
135 * FACTORY RESET
136 * 1. user selects "factory reset"
137 * 2. main system writes "--wipe_data" to /cache/recovery/command
138 * 3. main system reboots into recovery
139 * 4. get_args() writes BCB with "boot-recovery" and "--wipe_data"
140 * -- after this, rebooting will restart the erase --
Doug Zongkerd4208f92010-09-20 12:16:13 -0700141 * 5. erase_volume() reformats /data
142 * 6. erase_volume() reformats /cache
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800143 * 7. finish_recovery() erases BCB
144 * -- after this, rebooting will restart the main system --
145 * 8. main() calls reboot() to boot main system
146 *
147 * OTA INSTALL
148 * 1. main system downloads OTA package to /cache/some-filename.zip
Doug Zongker9b125b02010-09-22 12:01:37 -0700149 * 2. main system writes "--update_package=/cache/some-filename.zip"
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800150 * 3. main system reboots into recovery
151 * 4. get_args() writes BCB with "boot-recovery" and "--update_package=..."
152 * -- after this, rebooting will attempt to reinstall the update --
153 * 5. install_package() attempts to install the update
154 * NOTE: the package install must itself be restartable from any point
155 * 6. finish_recovery() erases BCB
156 * -- after this, rebooting will (try to) restart the main system --
157 * 7. ** if install failed **
158 * 7a. prompt_and_wait() shows an error icon and waits for the user
Tao Baoc0336392016-12-13 22:29:49 -0800159 * 7b. the user reboots (pulling the battery, etc) into the main system
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800160 */
161
Tao Baoac3d1ed2017-07-23 00:01:02 -0700162// Open a given path, mounting partitions as necessary.
Tao Bao641fa972018-04-25 18:59:40 -0700163FILE* fopen_path(const std::string& path, const char* mode) {
164 if (ensure_path_mounted(path.c_str()) != 0) {
Tao Baoac3d1ed2017-07-23 00:01:02 -0700165 LOG(ERROR) << "Can't mount " << path;
166 return nullptr;
167 }
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800168
Tao Baoac3d1ed2017-07-23 00:01:02 -0700169 // When writing, try to create the containing directory, if necessary. Use generous permissions,
170 // the system (init.rc) will reset them.
171 if (strchr("wa", mode[0])) {
172 mkdir_recursively(path, 0777, true, sehandle);
173 }
Tao Bao641fa972018-04-25 18:59:40 -0700174 return fopen(path.c_str(), mode);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800175}
176
Tao Bao04ca4262015-09-10 15:32:24 -0700177// close a file, log an error if the error indicator is set
Tao Bao641fa972018-04-25 18:59:40 -0700178static void check_and_fclose(FILE* fp, const std::string& name) {
179 fflush(fp);
180 if (fsync(fileno(fp)) == -1) {
181 PLOG(ERROR) << "Failed to fsync " << name;
182 }
183 if (ferror(fp)) {
184 PLOG(ERROR) << "Error in " << name;
185 }
186 fclose(fp);
Tao Bao04ca4262015-09-10 15:32:24 -0700187}
188
Elliott Hughesf14af802015-02-10 14:46:14 -0800189bool is_ro_debuggable() {
Elliott Hughescb220402016-09-23 15:30:55 -0700190 return android::base::GetBoolProperty("ro.debuggable", false);
Elliott Hughesf14af802015-02-10 14:46:14 -0800191}
192
Dmitri Plotnikov8706a982017-04-18 08:28:26 -0700193bool reboot(const std::string& command) {
194 std::string cmd = command;
195 if (android::base::GetBoolProperty("ro.boot.quiescent", false)) {
196 cmd += ",quiescent";
197 }
198 return android::base::SetProperty(ANDROID_RB_PROPERTY, cmd);
199}
200
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700201static void redirect_stdio(const char* filename) {
Tao Bao04ca4262015-09-10 15:32:24 -0700202 int pipefd[2];
203 if (pipe(pipefd) == -1) {
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -0700204 PLOG(ERROR) << "pipe failed";
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700205
Tao Bao04ca4262015-09-10 15:32:24 -0700206 // Fall back to traditional logging mode without timestamps.
207 // If these fail, there's not really anywhere to complain...
208 freopen(filename, "a", stdout); setbuf(stdout, NULL);
209 freopen(filename, "a", stderr); setbuf(stderr, NULL);
210
211 return;
212 }
213
214 pid_t pid = fork();
215 if (pid == -1) {
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -0700216 PLOG(ERROR) << "fork failed";
Tao Bao04ca4262015-09-10 15:32:24 -0700217
218 // Fall back to traditional logging mode without timestamps.
219 // If these fail, there's not really anywhere to complain...
220 freopen(filename, "a", stdout); setbuf(stdout, NULL);
221 freopen(filename, "a", stderr); setbuf(stderr, NULL);
222
223 return;
224 }
225
226 if (pid == 0) {
227 /// Close the unused write end.
228 close(pipefd[1]);
229
230 auto start = std::chrono::steady_clock::now();
231
232 // Child logger to actually write to the log file.
Tianjie Xude6735e2017-07-10 15:13:33 -0700233 FILE* log_fp = fopen(filename, "ae");
Tao Bao04ca4262015-09-10 15:32:24 -0700234 if (log_fp == nullptr) {
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -0700235 PLOG(ERROR) << "fopen \"" << filename << "\" failed";
Tao Bao04ca4262015-09-10 15:32:24 -0700236 close(pipefd[0]);
Tao Bao3da88012017-02-03 13:09:23 -0800237 _exit(EXIT_FAILURE);
Tao Bao04ca4262015-09-10 15:32:24 -0700238 }
239
240 FILE* pipe_fp = fdopen(pipefd[0], "r");
241 if (pipe_fp == nullptr) {
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -0700242 PLOG(ERROR) << "fdopen failed";
Tao Bao04ca4262015-09-10 15:32:24 -0700243 check_and_fclose(log_fp, filename);
244 close(pipefd[0]);
Tao Bao3da88012017-02-03 13:09:23 -0800245 _exit(EXIT_FAILURE);
Tao Bao04ca4262015-09-10 15:32:24 -0700246 }
247
248 char* line = nullptr;
249 size_t len = 0;
250 while (getline(&line, &len, pipe_fp) != -1) {
251 auto now = std::chrono::steady_clock::now();
252 double duration = std::chrono::duration_cast<std::chrono::duration<double>>(
253 now - start).count();
254 if (line[0] == '\n') {
255 fprintf(log_fp, "[%12.6lf]\n", duration);
256 } else {
257 fprintf(log_fp, "[%12.6lf] %s", duration, line);
258 }
259 fflush(log_fp);
260 }
261
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -0700262 PLOG(ERROR) << "getline failed";
Tao Bao04ca4262015-09-10 15:32:24 -0700263
264 free(line);
265 check_and_fclose(log_fp, filename);
266 close(pipefd[0]);
Tao Bao3da88012017-02-03 13:09:23 -0800267 _exit(EXIT_FAILURE);
Tao Bao04ca4262015-09-10 15:32:24 -0700268 } else {
269 // Redirect stdout/stderr to the logger process.
270 // Close the unused read end.
271 close(pipefd[0]);
272
273 setbuf(stdout, nullptr);
274 setbuf(stderr, nullptr);
275
276 if (dup2(pipefd[1], STDOUT_FILENO) == -1) {
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -0700277 PLOG(ERROR) << "dup2 stdout failed";
Tao Bao04ca4262015-09-10 15:32:24 -0700278 }
279 if (dup2(pipefd[1], STDERR_FILENO) == -1) {
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -0700280 PLOG(ERROR) << "dup2 stderr failed";
Tao Bao04ca4262015-09-10 15:32:24 -0700281 }
282
283 close(pipefd[1]);
284 }
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800285}
286
287// command line args come from, in decreasing precedence:
288// - the actual command line
289// - the bootloader control block (one per line, after "recovery")
290// - the contents of COMMAND_FILE (one per line)
Tao Baof0ed1592016-12-02 11:32:19 -0800291static std::vector<std::string> get_args(const int argc, char** const argv) {
292 CHECK_GT(argc, 0);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800293
Tao Baof0ed1592016-12-02 11:32:19 -0800294 bootloader_message boot = {};
295 std::string err;
296 if (!read_bootloader_message(&boot, &err)) {
297 LOG(ERROR) << err;
298 // If fails, leave a zeroed bootloader_message.
299 boot = {};
300 }
Tao Baoa8d72bc2016-12-25 18:46:50 -0800301 stage = std::string(boot.stage);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800302
Tao Baof0ed1592016-12-02 11:32:19 -0800303 if (boot.command[0] != 0) {
304 std::string boot_command = std::string(boot.command, sizeof(boot.command));
305 LOG(INFO) << "Boot command: " << boot_command;
306 }
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800307
Tao Baof0ed1592016-12-02 11:32:19 -0800308 if (boot.status[0] != 0) {
309 std::string boot_status = std::string(boot.status, sizeof(boot.status));
310 LOG(INFO) << "Boot status: " << boot_status;
311 }
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800312
Tao Baof0ed1592016-12-02 11:32:19 -0800313 std::vector<std::string> args(argv, argv + argc);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800314
Tao Baof0ed1592016-12-02 11:32:19 -0800315 // --- if arguments weren't supplied, look in the bootloader control block
Tao Bao570af9d2017-01-09 10:29:59 -0800316 if (args.size() == 1) {
Tao Baof0ed1592016-12-02 11:32:19 -0800317 boot.recovery[sizeof(boot.recovery) - 1] = '\0'; // Ensure termination
318 std::string boot_recovery(boot.recovery);
319 std::vector<std::string> tokens = android::base::Split(boot_recovery, "\n");
320 if (!tokens.empty() && tokens[0] == "recovery") {
321 for (auto it = tokens.begin() + 1; it != tokens.end(); it++) {
322 // Skip empty and '\0'-filled tokens.
323 if (!it->empty() && (*it)[0] != '\0') args.push_back(std::move(*it));
324 }
325 LOG(INFO) << "Got " << args.size() << " arguments from boot message";
326 } else if (boot.recovery[0] != 0) {
327 LOG(ERROR) << "Bad boot message: \"" << boot_recovery << "\"";
328 }
329 }
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800330
Tao Baof0ed1592016-12-02 11:32:19 -0800331 // --- if that doesn't work, try the command file (if we have /cache).
Tao Bao570af9d2017-01-09 10:29:59 -0800332 if (args.size() == 1 && has_cache) {
Tao Baof0ed1592016-12-02 11:32:19 -0800333 std::string content;
Tao Bao7d34fa12016-12-08 18:10:48 -0800334 if (ensure_path_mounted(COMMAND_FILE) == 0 &&
335 android::base::ReadFileToString(COMMAND_FILE, &content)) {
Tao Baof0ed1592016-12-02 11:32:19 -0800336 std::vector<std::string> tokens = android::base::Split(content, "\n");
Tao Bao7d34fa12016-12-08 18:10:48 -0800337 // All the arguments in COMMAND_FILE are needed (unlike the BCB message,
338 // COMMAND_FILE doesn't use filename as the first argument).
339 for (auto it = tokens.begin(); it != tokens.end(); it++) {
Tao Baof0ed1592016-12-02 11:32:19 -0800340 // Skip empty and '\0'-filled tokens.
341 if (!it->empty() && (*it)[0] != '\0') args.push_back(std::move(*it));
342 }
343 LOG(INFO) << "Got " << args.size() << " arguments from " << COMMAND_FILE;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800344 }
Tao Baof0ed1592016-12-02 11:32:19 -0800345 }
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800346
Tao Baof0ed1592016-12-02 11:32:19 -0800347 // Write the arguments (excluding the filename in args[0]) back into the
348 // bootloader control block. So the device will always boot into recovery to
349 // finish the pending work, until finish_recovery() is called.
350 std::vector<std::string> options(args.cbegin() + 1, args.cend());
Tao Bao2292db82016-12-13 21:53:31 -0800351 if (!update_bootloader_message(options, &err)) {
352 LOG(ERROR) << "Failed to set BCB message: " << err;
Tao Baof0ed1592016-12-02 11:32:19 -0800353 }
354
355 return args;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800356}
357
Tao Bao2292db82016-12-13 21:53:31 -0800358// Set the BCB to reboot back into recovery (it won't resume the install from
359// sdcard though).
360static void set_sdcard_update_bootloader_message() {
361 std::vector<std::string> options;
362 std::string err;
363 if (!update_bootloader_message(options, &err)) {
364 LOG(ERROR) << "Failed to set BCB message: " << err;
365 }
Doug Zongker34c98df2009-08-18 12:05:45 -0700366}
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800367
Tao Baobef39712015-05-04 18:50:27 -0700368// Read from kernel log into buffer and write out to file.
369static void save_kernel_log(const char* destination) {
370 int klog_buf_len = klogctl(KLOG_SIZE_BUFFER, 0, 0);
Patrick Tjincd055ee2014-12-09 11:26:40 -0800371 if (klog_buf_len <= 0) {
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -0700372 PLOG(ERROR) << "Error getting klog size";
Patrick Tjincd055ee2014-12-09 11:26:40 -0800373 return;
374 }
375
Tao Baobef39712015-05-04 18:50:27 -0700376 std::string buffer(klog_buf_len, 0);
377 int n = klogctl(KLOG_READ_ALL, &buffer[0], klog_buf_len);
378 if (n == -1) {
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -0700379 PLOG(ERROR) << "Error in reading klog";
Patrick Tjincd055ee2014-12-09 11:26:40 -0800380 return;
381 }
Tao Baobef39712015-05-04 18:50:27 -0700382 buffer.resize(n);
383 android::base::WriteStringToFile(buffer, destination);
Patrick Tjincd055ee2014-12-09 11:26:40 -0800384}
385
Tao Bao641fa972018-04-25 18:59:40 -0700386// Writes content to the current pmsg session.
387static ssize_t __pmsg_write(const std::string& filename, const std::string& buf) {
388 return __android_log_pmsg_file_write(LOG_ID_SYSTEM, ANDROID_LOG_INFO, filename.c_str(),
389 buf.data(), buf.size());
Mark Salyzyna4f701a2016-03-09 14:58:16 -0800390}
391
Tao Bao641fa972018-04-25 18:59:40 -0700392static void copy_log_file_to_pmsg(const std::string& source, const std::string& destination) {
393 std::string content;
394 android::base::ReadFileToString(source, &content);
395 __pmsg_write(destination, content);
Mark Salyzyna4f701a2016-03-09 14:58:16 -0800396}
397
Tao Baof0124322015-04-11 02:04:11 +0000398// How much of the temp log we have copied to the copy in cache.
Chih-Hung Hsieh54a27472016-04-18 11:30:55 -0700399static off_t tmplog_offset = 0;
Tao Baof0124322015-04-11 02:04:11 +0000400
Tao Bao641fa972018-04-25 18:59:40 -0700401static void copy_log_file(const std::string& source, const std::string& destination, bool append) {
Tianjie Xude6735e2017-07-10 15:13:33 -0700402 FILE* dest_fp = fopen_path(destination, append ? "ae" : "we");
403 if (dest_fp == nullptr) {
404 PLOG(ERROR) << "Can't open " << destination;
405 } else {
Tao Bao641fa972018-04-25 18:59:40 -0700406 FILE* source_fp = fopen(source.c_str(), "re");
Tianjie Xude6735e2017-07-10 15:13:33 -0700407 if (source_fp != nullptr) {
408 if (append) {
409 fseeko(source_fp, tmplog_offset, SEEK_SET); // Since last write
410 }
411 char buf[4096];
412 size_t bytes;
413 while ((bytes = fread(buf, 1, sizeof(buf), source_fp)) != 0) {
414 fwrite(buf, 1, bytes, dest_fp);
415 }
416 if (append) {
417 tmplog_offset = ftello(source_fp);
418 }
419 check_and_fclose(source_fp, source);
Doug Zongker2c3539e2010-09-29 13:21:30 -0700420 }
Tianjie Xude6735e2017-07-10 15:13:33 -0700421 check_and_fclose(dest_fp, destination);
422 }
Doug Zongker2c3539e2010-09-29 13:21:30 -0700423}
424
Tao Bao682c34b2015-04-07 17:16:35 -0700425static void copy_logs() {
Tao Bao641fa972018-04-25 18:59:40 -0700426 // We only rotate and record the log of the current session if there are actual attempts to modify
427 // the flash, such as wipes, installs from BCB or menu selections. This is to avoid unnecessary
428 // rotation (and possible deletion) of log files, if it does not do anything loggable.
429 if (!modified_flash) {
430 return;
431 }
Tao Bao682c34b2015-04-07 17:16:35 -0700432
Tao Bao641fa972018-04-25 18:59:40 -0700433 // Always write to pmsg, this allows the OTA logs to be caught in `logcat -L`.
434 copy_log_file_to_pmsg(Paths::Get().temporary_log_file(), LAST_LOG_FILE);
435 copy_log_file_to_pmsg(Paths::Get().temporary_install_file(), LAST_INSTALL_FILE);
Mark Salyzyna4f701a2016-03-09 14:58:16 -0800436
Tao Bao641fa972018-04-25 18:59:40 -0700437 // We can do nothing for now if there's no /cache partition.
438 if (!has_cache) {
439 return;
440 }
Mark Salyzyna4f701a2016-03-09 14:58:16 -0800441
Tao Bao641fa972018-04-25 18:59:40 -0700442 ensure_path_mounted(LAST_LOG_FILE);
443 ensure_path_mounted(LAST_KMSG_FILE);
444 rotate_logs(LAST_LOG_FILE, LAST_KMSG_FILE);
Tao Bao682c34b2015-04-07 17:16:35 -0700445
Tao Bao641fa972018-04-25 18:59:40 -0700446 // Copy logs to cache so the system can find out what happened.
447 copy_log_file(Paths::Get().temporary_log_file(), LOG_FILE, true);
448 copy_log_file(Paths::Get().temporary_log_file(), LAST_LOG_FILE, false);
449 copy_log_file(Paths::Get().temporary_install_file(), LAST_INSTALL_FILE, false);
450 save_kernel_log(LAST_KMSG_FILE);
451 chmod(LOG_FILE, 0600);
452 chown(LOG_FILE, AID_SYSTEM, AID_SYSTEM);
453 chmod(LAST_KMSG_FILE, 0600);
454 chown(LAST_KMSG_FILE, AID_SYSTEM, AID_SYSTEM);
455 chmod(LAST_LOG_FILE, 0640);
456 chmod(LAST_INSTALL_FILE, 0644);
457 sync();
Doug Zongkerf24fd7e2013-07-02 11:43:25 -0700458}
459
Tao Baoec579032017-07-21 12:13:15 -0700460// Clear the recovery command and prepare to boot a (hopefully working) system,
Tianjie Xuc14d95d2016-03-24 11:50:34 -0700461// copy our log file to cache as well (for the system to read). This function is
462// idempotent: call it as many times as you like.
Tao Baoac9d94d2016-11-03 11:37:15 -0700463static void finish_recovery() {
Tao Baoec579032017-07-21 12:13:15 -0700464 // Save the locale to cache, so if recovery is next started up without a '--locale' argument
465 // (e.g., directly from the bootloader) it will use the last-known locale.
466 if (!locale.empty() && has_cache) {
467 LOG(INFO) << "Saving locale \"" << locale << "\"";
468 if (ensure_path_mounted(LOCALE_FILE) != 0) {
469 LOG(ERROR) << "Failed to mount " << LOCALE_FILE;
470 } else if (!android::base::WriteStringToFile(locale, LOCALE_FILE)) {
471 PLOG(ERROR) << "Failed to save locale to " << LOCALE_FILE;
Doug Zongker4f33e552012-08-23 13:16:12 -0700472 }
Tao Baoec579032017-07-21 12:13:15 -0700473 }
Doug Zongker4f33e552012-08-23 13:16:12 -0700474
Tao Baoec579032017-07-21 12:13:15 -0700475 copy_logs();
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800476
Tao Baoec579032017-07-21 12:13:15 -0700477 // Reset to normal system boot so recovery won't cycle indefinitely.
478 std::string err;
479 if (!clear_bootloader_message(&err)) {
480 LOG(ERROR) << "Failed to clear BCB message: " << err;
481 }
482
483 // Remove the command file, so recovery won't repeat indefinitely.
484 if (has_cache) {
485 if (ensure_path_mounted(COMMAND_FILE) != 0 || (unlink(COMMAND_FILE) && errno != ENOENT)) {
486 LOG(WARNING) << "Can't unlink " << COMMAND_FILE;
Yabin Cui8b309f62016-06-24 18:22:02 -0700487 }
Tao Baoec579032017-07-21 12:13:15 -0700488 ensure_path_unmounted(CACHE_ROOT);
489 }
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800490
Tao Baoec579032017-07-21 12:13:15 -0700491 sync(); // For good measure.
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800492}
493
Tao Bao3f5a3822016-12-13 11:14:37 -0800494struct saved_log_file {
495 std::string name;
496 struct stat sb;
497 std::string data;
498};
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700499
Elliott Hughes945548e2015-06-05 17:59:56 -0700500static bool erase_volume(const char* volume) {
Tao Bao3f5a3822016-12-13 11:14:37 -0800501 bool is_cache = (strcmp(volume, CACHE_ROOT) == 0);
502 bool is_data = (strcmp(volume, DATA_ROOT) == 0);
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700503
Tao Bao3f5a3822016-12-13 11:14:37 -0800504 ui->SetBackground(RecoveryUI::ERASING);
505 ui->SetProgressType(RecoveryUI::INDETERMINATE);
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700506
Tao Bao3f5a3822016-12-13 11:14:37 -0800507 std::vector<saved_log_file> log_files;
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700508
Tao Bao3f5a3822016-12-13 11:14:37 -0800509 if (is_cache) {
510 // If we're reformatting /cache, we load any past logs
511 // (i.e. "/cache/recovery/last_*") and the current log
512 // ("/cache/recovery/log") into memory, so we can restore them after
513 // the reformat.
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700514
Tao Bao3f5a3822016-12-13 11:14:37 -0800515 ensure_path_mounted(volume);
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700516
Tao Bao3f5a3822016-12-13 11:14:37 -0800517 struct dirent* de;
518 std::unique_ptr<DIR, decltype(&closedir)> d(opendir(CACHE_LOG_DIR), closedir);
519 if (d) {
520 while ((de = readdir(d.get())) != nullptr) {
521 if (strncmp(de->d_name, "last_", 5) == 0 || strcmp(de->d_name, "log") == 0) {
522 std::string path = android::base::StringPrintf("%s/%s", CACHE_LOG_DIR, de->d_name);
523
524 struct stat sb;
525 if (stat(path.c_str(), &sb) == 0) {
526 // truncate files to 512kb
527 if (sb.st_size > (1 << 19)) {
528 sb.st_size = 1 << 19;
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700529 }
Tao Bao3f5a3822016-12-13 11:14:37 -0800530
531 std::string data(sb.st_size, '\0');
Tianjie Xude6735e2017-07-10 15:13:33 -0700532 FILE* f = fopen(path.c_str(), "rbe");
Tao Bao3f5a3822016-12-13 11:14:37 -0800533 fread(&data[0], 1, data.size(), f);
534 fclose(f);
535
536 log_files.emplace_back(saved_log_file{ path, sb, data });
537 }
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700538 }
Tao Bao3f5a3822016-12-13 11:14:37 -0800539 }
Paul Lawrenced0db3372015-11-05 13:38:40 -0800540 } else {
Tao Bao3f5a3822016-12-13 11:14:37 -0800541 if (errno != ENOENT) {
542 PLOG(ERROR) << "Failed to opendir " << CACHE_LOG_DIR;
543 }
Paul Lawrenced0db3372015-11-05 13:38:40 -0800544 }
Tao Bao3f5a3822016-12-13 11:14:37 -0800545 }
Doug Zongkerd0181b82011-10-19 10:51:12 -0700546
Tao Bao3f5a3822016-12-13 11:14:37 -0800547 ui->Print("Formatting %s...\n", volume);
548
549 ensure_path_unmounted(volume);
550
551 int result;
552
553 if (is_data && reason && strcmp(reason, "convert_fbe") == 0) {
554 // Create convert_fbe breadcrumb file to signal to init
555 // to convert to file based encryption, not full disk encryption
556 if (mkdir(CONVERT_FBE_DIR, 0700) != 0) {
557 ui->Print("Failed to make convert_fbe dir %s\n", strerror(errno));
558 return true;
559 }
Tianjie Xude6735e2017-07-10 15:13:33 -0700560 FILE* f = fopen(CONVERT_FBE_FILE, "wbe");
Tao Bao3f5a3822016-12-13 11:14:37 -0800561 if (!f) {
562 ui->Print("Failed to convert to file encryption %s\n", strerror(errno));
563 return true;
564 }
565 fclose(f);
566 result = format_volume(volume, CONVERT_FBE_DIR);
567 remove(CONVERT_FBE_FILE);
568 rmdir(CONVERT_FBE_DIR);
569 } else {
570 result = format_volume(volume);
571 }
572
573 if (is_cache) {
574 // Re-create the log dir and write back the log entries.
575 if (ensure_path_mounted(CACHE_LOG_DIR) == 0 &&
Tao Baoac3d1ed2017-07-23 00:01:02 -0700576 mkdir_recursively(CACHE_LOG_DIR, 0777, false, sehandle) == 0) {
Tao Bao3f5a3822016-12-13 11:14:37 -0800577 for (const auto& log : log_files) {
578 if (!android::base::WriteStringToFile(log.data, log.name, log.sb.st_mode, log.sb.st_uid,
579 log.sb.st_gid)) {
580 PLOG(ERROR) << "Failed to write to " << log.name;
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700581 }
Tao Bao3f5a3822016-12-13 11:14:37 -0800582 }
583 } else {
584 PLOG(ERROR) << "Failed to mount / create " << CACHE_LOG_DIR;
Doug Zongker2c3539e2010-09-29 13:21:30 -0700585 }
586
Tao Bao3f5a3822016-12-13 11:14:37 -0800587 // Any part of the log we'd copied to cache is now gone.
588 // Reset the pointer so we copy from the beginning of the temp
589 // log.
590 tmplog_offset = 0;
591 copy_logs();
592 }
593
594 return (result == 0);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800595}
596
Tao Baofc5499f2017-02-23 19:06:53 -0800597// Display a menu with the specified 'headers' and 'items'. Device specific HandleMenuKey() may
598// return a positive number beyond the given range. Caller sets 'menu_only' to true to ensure only
Tao Bao50dd5322017-03-07 14:57:04 -0800599// a menu item gets selected. 'initial_selection' controls the initial cursor location. Returns the
600// (non-negative) chosen item number, or -1 if timed out waiting for input.
Tao Baofc5499f2017-02-23 19:06:53 -0800601static int get_menu_selection(const char* const* headers, const char* const* items, bool menu_only,
602 int initial_selection, Device* device) {
603 // Throw away keys pressed previously, so user doesn't accidentally trigger menu items.
604 ui->FlushKeys();
Doug Zongkerf93d8162009-09-22 15:16:02 -0700605
Tao Baofc5499f2017-02-23 19:06:53 -0800606 ui->StartMenu(headers, items, initial_selection);
Tao Bao50dd5322017-03-07 14:57:04 -0800607
Tao Baofc5499f2017-02-23 19:06:53 -0800608 int selected = initial_selection;
609 int chosen_item = -1;
Tao Baofc5499f2017-02-23 19:06:53 -0800610 while (chosen_item < 0) {
611 int key = ui->WaitKey();
Tao Bao50dd5322017-03-07 14:57:04 -0800612 if (key == -1) { // WaitKey() timed out.
Tao Baofc5499f2017-02-23 19:06:53 -0800613 if (ui->WasTextEverVisible()) {
614 continue;
615 } else {
Tao Bao50dd5322017-03-07 14:57:04 -0800616 LOG(INFO) << "Timed out waiting for key input; rebooting.";
Tao Baofc5499f2017-02-23 19:06:53 -0800617 ui->EndMenu();
Tao Bao50dd5322017-03-07 14:57:04 -0800618 return -1;
Tao Baofc5499f2017-02-23 19:06:53 -0800619 }
Doug Zongkerf93d8162009-09-22 15:16:02 -0700620 }
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800621
Tao Baofc5499f2017-02-23 19:06:53 -0800622 bool visible = ui->IsTextVisible();
623 int action = device->HandleMenuKey(key, visible);
624
625 if (action < 0) {
626 switch (action) {
627 case Device::kHighlightUp:
628 selected = ui->SelectMenu(--selected);
629 break;
630 case Device::kHighlightDown:
631 selected = ui->SelectMenu(++selected);
632 break;
633 case Device::kInvokeItem:
634 chosen_item = selected;
635 break;
636 case Device::kNoAction:
637 break;
638 }
639 } else if (!menu_only) {
640 chosen_item = action;
641 }
642 }
643
644 ui->EndMenu();
645 return chosen_item;
Doug Zongkerf93d8162009-09-22 15:16:02 -0700646}
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800647
Tao Baoc4a18ef2017-02-10 00:13:30 -0800648// Returns the selected filename, or an empty string.
649static std::string browse_directory(const std::string& path, Device* device) {
650 ensure_path_mounted(path.c_str());
Doug Zongker8674a722010-09-15 11:08:23 -0700651
Tao Baoc4a18ef2017-02-10 00:13:30 -0800652 std::unique_ptr<DIR, decltype(&closedir)> d(opendir(path.c_str()), closedir);
653 if (!d) {
654 PLOG(ERROR) << "error opening " << path;
655 return "";
656 }
Doug Zongkerc18eeb82010-09-21 16:49:26 -0700657
Tao Baoc4a18ef2017-02-10 00:13:30 -0800658 std::vector<std::string> dirs;
659 std::vector<std::string> zips = { "../" }; // "../" is always the first entry.
660
661 dirent* de;
662 while ((de = readdir(d.get())) != nullptr) {
663 std::string name(de->d_name);
664
665 if (de->d_type == DT_DIR) {
666 // Skip "." and ".." entries.
667 if (name == "." || name == "..") continue;
668 dirs.push_back(name + "/");
669 } else if (de->d_type == DT_REG && android::base::EndsWithIgnoreCase(name, ".zip")) {
670 zips.push_back(name);
671 }
672 }
673
674 std::sort(dirs.begin(), dirs.end());
675 std::sort(zips.begin(), zips.end());
676
677 // Append dirs to the zips list.
678 zips.insert(zips.end(), dirs.begin(), dirs.end());
679
680 const char* entries[zips.size() + 1];
681 entries[zips.size()] = nullptr;
682 for (size_t i = 0; i < zips.size(); i++) {
683 entries[i] = zips[i].c_str();
684 }
685
686 const char* headers[] = { "Choose a package to install:", path.c_str(), nullptr };
687
688 int chosen_item = 0;
689 while (true) {
Tao Baofc5499f2017-02-23 19:06:53 -0800690 chosen_item = get_menu_selection(headers, entries, true, chosen_item, device);
Tao Baoc4a18ef2017-02-10 00:13:30 -0800691
692 const std::string& item = zips[chosen_item];
693 if (chosen_item == 0) {
694 // Go up but continue browsing (if the caller is browse_directory).
695 return "";
Doug Zongker8674a722010-09-15 11:08:23 -0700696 }
697
Tao Baoc4a18ef2017-02-10 00:13:30 -0800698 std::string new_path = path + "/" + item;
699 if (new_path.back() == '/') {
700 // Recurse down into a subdirectory.
701 new_path.pop_back();
702 std::string result = browse_directory(new_path, device);
703 if (!result.empty()) return result;
704 } else {
705 // Selected a zip file: return the path to the caller.
706 return new_path;
Doug Zongker8674a722010-09-15 11:08:23 -0700707 }
Tao Baoc4a18ef2017-02-10 00:13:30 -0800708 }
Doug Zongker8674a722010-09-15 11:08:23 -0700709
Tao Baoc4a18ef2017-02-10 00:13:30 -0800710 // Unreachable.
Doug Zongker8674a722010-09-15 11:08:23 -0700711}
712
Elliott Hughes30694c92015-03-25 15:16:51 -0700713static bool yes_no(Device* device, const char* question1, const char* question2) {
Elliott Hughes8fd86d72015-04-13 14:36:02 -0700714 const char* headers[] = { question1, question2, NULL };
Elliott Hughes30694c92015-03-25 15:16:51 -0700715 const char* items[] = { " No", " Yes", NULL };
Doug Zongkerddd6a282009-06-09 12:22:33 -0700716
Tao Baofc5499f2017-02-23 19:06:53 -0800717 int chosen_item = get_menu_selection(headers, items, true, 0, device);
Elliott Hughes30694c92015-03-25 15:16:51 -0700718 return (chosen_item == 1);
719}
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800720
Paul Crowley08404b42016-12-19 13:04:23 -0800721static bool ask_to_wipe_data(Device* device) {
722 return yes_no(device, "Wipe all user data?", " THIS CAN NOT BE UNDONE!");
723}
Doug Zongker1066d2c2009-04-01 13:57:40 -0700724
Paul Crowley08404b42016-12-19 13:04:23 -0800725// Return true on success.
726static bool wipe_data(Device* device) {
Tao Bao682c34b2015-04-07 17:16:35 -0700727 modified_flash = true;
728
Doug Zongker211aebc2011-10-28 15:13:10 -0700729 ui->Print("\n-- Wiping data...\n");
Paul Crowley3b4d5162016-06-08 13:51:41 -0700730 bool success = device->PreWipeData();
731 if (success) {
732 success &= erase_volume(DATA_ROOT);
733 if (has_cache) {
734 success &= erase_volume(CACHE_ROOT);
735 }
736 if (volume_for_mount_point(METADATA_ROOT) != nullptr) {
737 success &= erase_volume(METADATA_ROOT);
738 }
739 }
740 if (success) {
741 success &= device->PostWipeData();
742 }
Elliott Hughes945548e2015-06-05 17:59:56 -0700743 ui->Print("Data wipe %s.\n", success ? "complete" : "failed");
744 return success;
Doug Zongkerf93d8162009-09-22 15:16:02 -0700745}
746
Paul Crowley08404b42016-12-19 13:04:23 -0800747static bool prompt_and_wipe_data(Device* device) {
Tao Bao2bbc6d62017-08-13 23:48:55 -0700748 // Use a single string and let ScreenRecoveryUI handles the wrapping.
Tao Baofc5499f2017-02-23 19:06:53 -0800749 const char* const headers[] = {
Tao Bao2bbc6d62017-08-13 23:48:55 -0700750 "Can't load Android system. Your data may be corrupt. "
751 "If you continue to get this message, you may need to "
752 "perform a factory data reset and erase all user data "
Paul Crowley31ac0c62017-03-23 12:32:40 -0700753 "stored on this device.",
Tao Bao2bbc6d62017-08-13 23:48:55 -0700754 nullptr
Tao Baofc5499f2017-02-23 19:06:53 -0800755 };
756 const char* const items[] = {
Paul Crowley31ac0c62017-03-23 12:32:40 -0700757 "Try again",
758 "Factory data reset",
Tao Baofc5499f2017-02-23 19:06:53 -0800759 NULL
760 };
761 for (;;) {
762 int chosen_item = get_menu_selection(headers, items, true, 0, device);
763 if (chosen_item != 1) {
764 return true; // Just reboot, no wipe; not a failure, user asked for it
Paul Crowley08404b42016-12-19 13:04:23 -0800765 }
Tao Baofc5499f2017-02-23 19:06:53 -0800766 if (ask_to_wipe_data(device)) {
767 return wipe_data(device);
768 }
769 }
Paul Crowley08404b42016-12-19 13:04:23 -0800770}
771
Tao Baoe39a9bc2015-03-31 12:19:05 -0700772// Return true on success.
773static bool wipe_cache(bool should_confirm, Device* device) {
Tao Bao26112e52016-02-25 12:29:40 -0800774 if (!has_cache) {
775 ui->Print("No /cache partition found.\n");
776 return false;
777 }
778
Elliott Hughes30694c92015-03-25 15:16:51 -0700779 if (should_confirm && !yes_no(device, "Wipe cache?", " THIS CAN NOT BE UNDONE!")) {
Tao Baoe39a9bc2015-03-31 12:19:05 -0700780 return false;
Elliott Hughes30694c92015-03-25 15:16:51 -0700781 }
782
Tao Bao682c34b2015-04-07 17:16:35 -0700783 modified_flash = true;
784
Elliott Hughes30694c92015-03-25 15:16:51 -0700785 ui->Print("\n-- Wiping cache...\n");
Elliott Hughes945548e2015-06-05 17:59:56 -0700786 bool success = erase_volume("/cache");
787 ui->Print("Cache wipe %s.\n", success ? "complete" : "failed");
788 return success;
Elliott Hughes30694c92015-03-25 15:16:51 -0700789}
790
Tao Bao1b2a98b2017-03-24 10:45:34 -0700791// Secure-wipe a given partition. It uses BLKSECDISCARD, if supported. Otherwise, it goes with
792// BLKDISCARD (if device supports BLKDISCARDZEROES) or BLKZEROOUT.
Tao Bao862a4c12016-06-02 11:16:50 -0700793static bool secure_wipe_partition(const std::string& partition) {
Tao Bao1b2a98b2017-03-24 10:45:34 -0700794 android::base::unique_fd fd(TEMP_FAILURE_RETRY(open(partition.c_str(), O_WRONLY)));
795 if (fd == -1) {
796 PLOG(ERROR) << "Failed to open \"" << partition << "\"";
797 return false;
798 }
799
800 uint64_t range[2] = { 0, 0 };
801 if (ioctl(fd, BLKGETSIZE64, &range[1]) == -1 || range[1] == 0) {
802 PLOG(ERROR) << "Failed to get partition size";
803 return false;
804 }
805 LOG(INFO) << "Secure-wiping \"" << partition << "\" from " << range[0] << " to " << range[1];
806
807 LOG(INFO) << " Trying BLKSECDISCARD...";
808 if (ioctl(fd, BLKSECDISCARD, &range) == -1) {
809 PLOG(WARNING) << " Failed";
810
811 // Use BLKDISCARD if it zeroes out blocks, otherwise use BLKZEROOUT.
812 unsigned int zeroes;
813 if (ioctl(fd, BLKDISCARDZEROES, &zeroes) == 0 && zeroes != 0) {
814 LOG(INFO) << " Trying BLKDISCARD...";
815 if (ioctl(fd, BLKDISCARD, &range) == -1) {
816 PLOG(ERROR) << " Failed";
Tao Bao862a4c12016-06-02 11:16:50 -0700817 return false;
Tao Bao1b2a98b2017-03-24 10:45:34 -0700818 }
819 } else {
820 LOG(INFO) << " Trying BLKZEROOUT...";
821 if (ioctl(fd, BLKZEROOUT, &range) == -1) {
822 PLOG(ERROR) << " Failed";
Tao Bao862a4c12016-06-02 11:16:50 -0700823 return false;
Tao Bao1b2a98b2017-03-24 10:45:34 -0700824 }
Tao Bao862a4c12016-06-02 11:16:50 -0700825 }
Tao Bao1b2a98b2017-03-24 10:45:34 -0700826 }
Tao Bao862a4c12016-06-02 11:16:50 -0700827
Tao Bao1b2a98b2017-03-24 10:45:34 -0700828 LOG(INFO) << " Done";
829 return true;
Tao Bao862a4c12016-06-02 11:16:50 -0700830}
831
Yabin Cuifd99a312016-06-09 14:09:39 -0700832// Check if the wipe package matches expectation:
833// 1. verify the package.
834// 2. check metadata (ota-type, pre-device and serial number if having one).
835static bool check_wipe_package(size_t wipe_package_size) {
836 if (wipe_package_size == 0) {
837 LOG(ERROR) << "wipe_package_size is zero";
838 return false;
839 }
840 std::string wipe_package;
841 std::string err_str;
842 if (!read_wipe_package(&wipe_package, wipe_package_size, &err_str)) {
843 PLOG(ERROR) << "Failed to read wipe package";
844 return false;
845 }
846 if (!verify_package(reinterpret_cast<const unsigned char*>(wipe_package.data()),
847 wipe_package.size())) {
848 LOG(ERROR) << "Failed to verify package";
849 return false;
850 }
851
852 // Extract metadata
853 ZipArchiveHandle zip;
Tao Baoefc35592017-01-08 22:45:47 -0800854 int err = OpenArchiveFromMemory(static_cast<void*>(&wipe_package[0]), wipe_package.size(),
855 "wipe_package", &zip);
Yabin Cuifd99a312016-06-09 14:09:39 -0700856 if (err != 0) {
857 LOG(ERROR) << "Can't open wipe package : " << ErrorCodeString(err);
858 return false;
859 }
860 std::string metadata;
Tao Bao1b2a98b2017-03-24 10:45:34 -0700861 if (!read_metadata_from_package(zip, &metadata)) {
Yabin Cuifd99a312016-06-09 14:09:39 -0700862 CloseArchive(zip);
863 return false;
864 }
865 CloseArchive(zip);
866
867 // Check metadata
868 std::vector<std::string> lines = android::base::Split(metadata, "\n");
869 bool ota_type_matched = false;
870 bool device_type_matched = false;
871 bool has_serial_number = false;
872 bool serial_number_matched = false;
873 for (const auto& line : lines) {
874 if (line == "ota-type=BRICK") {
875 ota_type_matched = true;
876 } else if (android::base::StartsWith(line, "pre-device=")) {
877 std::string device_type = line.substr(strlen("pre-device="));
Tao Baoefc35592017-01-08 22:45:47 -0800878 std::string real_device_type = android::base::GetProperty("ro.build.product", "");
Yabin Cuifd99a312016-06-09 14:09:39 -0700879 device_type_matched = (device_type == real_device_type);
880 } else if (android::base::StartsWith(line, "serialno=")) {
881 std::string serial_no = line.substr(strlen("serialno="));
Tao Baoefc35592017-01-08 22:45:47 -0800882 std::string real_serial_no = android::base::GetProperty("ro.serialno", "");
Yabin Cuifd99a312016-06-09 14:09:39 -0700883 has_serial_number = true;
884 serial_number_matched = (serial_no == real_serial_no);
885 }
886 }
887 return ota_type_matched && device_type_matched && (!has_serial_number || serial_number_matched);
888}
889
Yabin Cui8b309f62016-06-24 18:22:02 -0700890// Wipe the current A/B device, with a secure wipe of all the partitions in
891// RECOVERY_WIPE.
Yabin Cuifd99a312016-06-09 14:09:39 -0700892static bool wipe_ab_device(size_t wipe_package_size) {
Tao Bao862a4c12016-06-02 11:16:50 -0700893 ui->SetBackground(RecoveryUI::ERASING);
894 ui->SetProgressType(RecoveryUI::INDETERMINATE);
895
Yabin Cuifd99a312016-06-09 14:09:39 -0700896 if (!check_wipe_package(wipe_package_size)) {
897 LOG(ERROR) << "Failed to verify wipe package";
898 return false;
899 }
Tao Bao862a4c12016-06-02 11:16:50 -0700900 std::string partition_list;
Yabin Cui8b309f62016-06-24 18:22:02 -0700901 if (!android::base::ReadFileToString(RECOVERY_WIPE, &partition_list)) {
902 LOG(ERROR) << "failed to read \"" << RECOVERY_WIPE << "\"";
Tao Bao862a4c12016-06-02 11:16:50 -0700903 return false;
904 }
905
906 std::vector<std::string> lines = android::base::Split(partition_list, "\n");
907 for (const std::string& line : lines) {
908 std::string partition = android::base::Trim(line);
909 // Ignore '#' comment or empty lines.
910 if (android::base::StartsWith(partition, "#") || partition.empty()) {
911 continue;
912 }
913
914 // Proceed anyway even if it fails to wipe some partition.
915 secure_wipe_partition(partition);
916 }
917 return true;
918}
919
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700920static void choose_recovery_file(Device* device) {
Tao Bao08fc6be2017-03-07 00:56:27 -0800921 std::vector<std::string> entries;
922 if (has_cache) {
923 for (int i = 0; i < KEEP_LOG_COUNT; i++) {
924 auto add_to_entries = [&](const char* filename) {
925 std::string log_file(filename);
926 if (i > 0) {
927 log_file += "." + std::to_string(i);
Tao Baobef39712015-05-04 18:50:27 -0700928 }
Tao Bao08fc6be2017-03-07 00:56:27 -0800929
930 if (ensure_path_mounted(log_file.c_str()) == 0 && access(log_file.c_str(), R_OK) == 0) {
931 entries.push_back(std::move(log_file));
932 }
933 };
934
935 // Add LAST_LOG_FILE + LAST_LOG_FILE.x
936 add_to_entries(LAST_LOG_FILE);
937
938 // Add LAST_KMSG_FILE + LAST_KMSG_FILE.x
939 add_to_entries(LAST_KMSG_FILE);
940 }
941 } else {
942 // If cache partition is not found, view /tmp/recovery.log instead.
Tao Bao641fa972018-04-25 18:59:40 -0700943 if (access(Paths::Get().temporary_log_file().c_str(), R_OK) == -1) {
Tao Bao08fc6be2017-03-07 00:56:27 -0800944 return;
Tianjie Xua54f75e2016-08-17 12:02:46 -0700945 } else {
Tao Bao641fa972018-04-25 18:59:40 -0700946 entries.push_back(Paths::Get().temporary_log_file());
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700947 }
Tao Bao08fc6be2017-03-07 00:56:27 -0800948 }
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700949
Tao Bao08fc6be2017-03-07 00:56:27 -0800950 entries.push_back("Back");
Elliott Hughesc0491632015-05-06 12:40:05 -0700951
Tao Bao08fc6be2017-03-07 00:56:27 -0800952 std::vector<const char*> menu_entries(entries.size());
953 std::transform(entries.cbegin(), entries.cend(), menu_entries.begin(),
954 [](const std::string& entry) { return entry.c_str(); });
955 menu_entries.push_back(nullptr);
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700956
Tao Bao08fc6be2017-03-07 00:56:27 -0800957 const char* headers[] = { "Select file to view", nullptr };
Elliott Hughes8de52072015-04-08 20:06:50 -0700958
Tao Bao08fc6be2017-03-07 00:56:27 -0800959 int chosen_item = 0;
960 while (true) {
Tao Baofc5499f2017-02-23 19:06:53 -0800961 chosen_item = get_menu_selection(headers, menu_entries.data(), true, chosen_item, device);
Tao Bao08fc6be2017-03-07 00:56:27 -0800962 if (entries[chosen_item] == "Back") break;
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700963
Tao Bao08fc6be2017-03-07 00:56:27 -0800964 ui->ShowFile(entries[chosen_item].c_str());
965 }
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700966}
967
Tao Baodb7e8982017-03-06 23:53:16 -0800968static void run_graphics_test() {
969 // Switch to graphics screen.
970 ui->ShowText(false);
Elliott Hughes498cda62016-04-14 16:49:04 -0700971
Tao Baodb7e8982017-03-06 23:53:16 -0800972 ui->SetProgressType(RecoveryUI::INDETERMINATE);
973 ui->SetBackground(RecoveryUI::INSTALLING_UPDATE);
974 sleep(1);
Elliott Hughes498cda62016-04-14 16:49:04 -0700975
Tao Baodb7e8982017-03-06 23:53:16 -0800976 ui->SetBackground(RecoveryUI::ERROR);
977 sleep(1);
Elliott Hughes498cda62016-04-14 16:49:04 -0700978
Tao Baodb7e8982017-03-06 23:53:16 -0800979 ui->SetBackground(RecoveryUI::NO_COMMAND);
980 sleep(1);
Elliott Hughes498cda62016-04-14 16:49:04 -0700981
Tao Baodb7e8982017-03-06 23:53:16 -0800982 ui->SetBackground(RecoveryUI::ERASING);
983 sleep(1);
Elliott Hughes498cda62016-04-14 16:49:04 -0700984
Tao Baodb7e8982017-03-06 23:53:16 -0800985 // Calling SetBackground() after SetStage() to trigger a redraw.
986 ui->SetStage(1, 3);
987 ui->SetBackground(RecoveryUI::INSTALLING_UPDATE);
988 sleep(1);
989 ui->SetStage(2, 3);
990 ui->SetBackground(RecoveryUI::INSTALLING_UPDATE);
991 sleep(1);
992 ui->SetStage(3, 3);
993 ui->SetBackground(RecoveryUI::INSTALLING_UPDATE);
994 sleep(1);
Elliott Hughes498cda62016-04-14 16:49:04 -0700995
Tao Baodb7e8982017-03-06 23:53:16 -0800996 ui->SetStage(-1, -1);
997 ui->SetBackground(RecoveryUI::INSTALLING_UPDATE);
Elliott Hughes498cda62016-04-14 16:49:04 -0700998
Tao Baodb7e8982017-03-06 23:53:16 -0800999 ui->SetProgressType(RecoveryUI::DETERMINATE);
1000 ui->ShowProgress(1.0, 10.0);
1001 float fraction = 0.0;
1002 for (size_t i = 0; i < 100; ++i) {
1003 fraction += .01;
1004 ui->SetProgress(fraction);
1005 usleep(100000);
1006 }
1007
1008 ui->ShowText(true);
Elliott Hughes498cda62016-04-14 16:49:04 -07001009}
1010
Tao Baocdcf28f2016-01-13 15:05:20 -08001011// How long (in seconds) we wait for the fuse-provided package file to
1012// appear, before timing out.
1013#define SDCARD_INSTALL_TIMEOUT 10
1014
Tao Bao145d8612015-03-25 15:51:15 -07001015static int apply_from_sdcard(Device* device, bool* wipe_cache) {
Tao Bao682c34b2015-04-07 17:16:35 -07001016 modified_flash = true;
1017
Christian Poetzsch4ec58a42015-02-19 10:42:39 +00001018 if (ensure_path_mounted(SDCARD_ROOT) != 0) {
1019 ui->Print("\n-- Couldn't mount %s.\n", SDCARD_ROOT);
1020 return INSTALL_ERROR;
1021 }
1022
Tao Baoc4a18ef2017-02-10 00:13:30 -08001023 std::string path = browse_directory(SDCARD_ROOT, device);
1024 if (path.empty()) {
Elliott Hughes018ed312015-04-08 16:51:36 -07001025 ui->Print("\n-- No package file selected.\n");
caozhiyuanb4effb92015-06-10 16:46:38 +08001026 ensure_path_unmounted(SDCARD_ROOT);
Christian Poetzsch4ec58a42015-02-19 10:42:39 +00001027 return INSTALL_ERROR;
1028 }
1029
Tao Baoc4a18ef2017-02-10 00:13:30 -08001030 ui->Print("\n-- Install %s ...\n", path.c_str());
Christian Poetzsch4ec58a42015-02-19 10:42:39 +00001031 set_sdcard_update_bootloader_message();
Christian Poetzsch4ec58a42015-02-19 10:42:39 +00001032
Tao Baocdcf28f2016-01-13 15:05:20 -08001033 // We used to use fuse in a thread as opposed to a process. Since accessing
1034 // through fuse involves going from kernel to userspace to kernel, it leads
1035 // to deadlock when a page fault occurs. (Bug: 26313124)
1036 pid_t child;
1037 if ((child = fork()) == 0) {
Tao Baoc4a18ef2017-02-10 00:13:30 -08001038 bool status = start_sdcard_fuse(path.c_str());
Tao Baocdcf28f2016-01-13 15:05:20 -08001039
1040 _exit(status ? EXIT_SUCCESS : EXIT_FAILURE);
1041 }
1042
1043 // FUSE_SIDELOAD_HOST_PATHNAME will start to exist once the fuse in child
1044 // process is ready.
1045 int result = INSTALL_ERROR;
1046 int status;
1047 bool waited = false;
1048 for (int i = 0; i < SDCARD_INSTALL_TIMEOUT; ++i) {
1049 if (waitpid(child, &status, WNOHANG) == -1) {
1050 result = INSTALL_ERROR;
1051 waited = true;
1052 break;
1053 }
1054
1055 struct stat sb;
1056 if (stat(FUSE_SIDELOAD_HOST_PATHNAME, &sb) == -1) {
1057 if (errno == ENOENT && i < SDCARD_INSTALL_TIMEOUT-1) {
1058 sleep(1);
1059 continue;
1060 } else {
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -07001061 LOG(ERROR) << "Timed out waiting for the fuse-provided package.";
Tao Baocdcf28f2016-01-13 15:05:20 -08001062 result = INSTALL_ERROR;
1063 kill(child, SIGKILL);
1064 break;
1065 }
1066 }
1067
Tao Bao641fa972018-04-25 18:59:40 -07001068 result = install_package(FUSE_SIDELOAD_HOST_PATHNAME, wipe_cache, false, 0 /*retry_count*/);
Tao Baocdcf28f2016-01-13 15:05:20 -08001069 break;
1070 }
Christian Poetzsch4ec58a42015-02-19 10:42:39 +00001071
Tao Baocdcf28f2016-01-13 15:05:20 -08001072 if (!waited) {
1073 // Calling stat() on this magic filename signals the fuse
1074 // filesystem to shut down.
1075 struct stat sb;
1076 stat(FUSE_SIDELOAD_HOST_EXIT_PATHNAME, &sb);
1077
1078 waitpid(child, &status, 0);
1079 }
1080
1081 if (!WIFEXITED(status) || WEXITSTATUS(status) != 0) {
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -07001082 LOG(ERROR) << "Error exit from the fuse process: " << WEXITSTATUS(status);
Tao Baocdcf28f2016-01-13 15:05:20 -08001083 }
1084
Christian Poetzsch4ec58a42015-02-19 10:42:39 +00001085 ensure_path_unmounted(SDCARD_ROOT);
Tao Baocdcf28f2016-01-13 15:05:20 -08001086 return result;
Christian Poetzsch4ec58a42015-02-19 10:42:39 +00001087}
1088
Tao Bao50dd5322017-03-07 14:57:04 -08001089// Returns REBOOT, SHUTDOWN, or REBOOT_BOOTLOADER. Returning NO_ACTION means to take the default,
1090// which is to reboot or shutdown depending on if the --shutdown_after flag was passed to recovery.
1091static Device::BuiltinAction prompt_and_wait(Device* device, int status) {
1092 for (;;) {
1093 finish_recovery();
1094 switch (status) {
1095 case INSTALL_SUCCESS:
1096 case INSTALL_NONE:
1097 ui->SetBackground(RecoveryUI::NO_COMMAND);
1098 break;
Doug Zongker6c8553d2012-09-24 10:40:47 -07001099
Tao Bao50dd5322017-03-07 14:57:04 -08001100 case INSTALL_ERROR:
1101 case INSTALL_CORRUPT:
1102 ui->SetBackground(RecoveryUI::ERROR);
1103 break;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001104 }
Tao Bao50dd5322017-03-07 14:57:04 -08001105 ui->SetProgressType(RecoveryUI::EMPTY);
1106
1107 int chosen_item = get_menu_selection(nullptr, device->GetMenuItems(), false, 0, device);
1108
1109 // Device-specific code may take some action here. It may return one of the core actions
1110 // handled in the switch statement below.
1111 Device::BuiltinAction chosen_action =
1112 (chosen_item == -1) ? Device::REBOOT : device->InvokeMenuItem(chosen_item);
1113
1114 bool should_wipe_cache = false;
1115 switch (chosen_action) {
1116 case Device::NO_ACTION:
1117 break;
1118
1119 case Device::REBOOT:
1120 case Device::SHUTDOWN:
1121 case Device::REBOOT_BOOTLOADER:
1122 return chosen_action;
1123
1124 case Device::WIPE_DATA:
1125 if (ui->IsTextVisible()) {
1126 if (ask_to_wipe_data(device)) {
1127 wipe_data(device);
1128 }
1129 } else {
1130 wipe_data(device);
1131 return Device::NO_ACTION;
1132 }
1133 break;
1134
1135 case Device::WIPE_CACHE:
1136 wipe_cache(ui->IsTextVisible(), device);
1137 if (!ui->IsTextVisible()) return Device::NO_ACTION;
1138 break;
1139
1140 case Device::APPLY_ADB_SIDELOAD:
1141 case Device::APPLY_SDCARD:
1142 {
1143 bool adb = (chosen_action == Device::APPLY_ADB_SIDELOAD);
1144 if (adb) {
Tao Bao641fa972018-04-25 18:59:40 -07001145 status = apply_from_adb(&should_wipe_cache);
Tao Bao50dd5322017-03-07 14:57:04 -08001146 } else {
1147 status = apply_from_sdcard(device, &should_wipe_cache);
1148 }
1149
1150 if (status == INSTALL_SUCCESS && should_wipe_cache) {
1151 if (!wipe_cache(false, device)) {
1152 status = INSTALL_ERROR;
1153 }
1154 }
1155
1156 if (status != INSTALL_SUCCESS) {
1157 ui->SetBackground(RecoveryUI::ERROR);
1158 ui->Print("Installation aborted.\n");
1159 copy_logs();
1160 } else if (!ui->IsTextVisible()) {
1161 return Device::NO_ACTION; // reboot if logs aren't visible
1162 } else {
1163 ui->Print("\nInstall from %s complete.\n", adb ? "ADB" : "SD card");
1164 }
1165 }
1166 break;
1167
1168 case Device::VIEW_RECOVERY_LOGS:
1169 choose_recovery_file(device);
1170 break;
1171
1172 case Device::RUN_GRAPHICS_TEST:
1173 run_graphics_test();
1174 break;
1175
Tianjie Xu29d55752017-09-20 17:53:46 -07001176 case Device::RUN_LOCALE_TEST: {
1177 ScreenRecoveryUI* screen_ui = static_cast<ScreenRecoveryUI*>(ui);
1178 screen_ui->CheckBackgroundTextImages(locale);
1179 break;
1180 }
Tao Bao50dd5322017-03-07 14:57:04 -08001181 case Device::MOUNT_SYSTEM:
1182 // For a system image built with the root directory (i.e. system_root_image == "true"), we
1183 // mount it to /system_root, and symlink /system to /system_root/system to make adb shell
1184 // work (the symlink is created through the build system). (Bug: 22855115)
1185 if (android::base::GetBoolProperty("ro.build.system_root_image", false)) {
1186 if (ensure_path_mounted_at("/", "/system_root") != -1) {
1187 ui->Print("Mounted /system.\n");
1188 }
1189 } else {
1190 if (ensure_path_mounted("/system") != -1) {
1191 ui->Print("Mounted /system.\n");
1192 }
1193 }
1194 break;
1195 }
1196 }
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001197}
1198
Tao Bao99f0d9e2016-10-13 12:46:38 -07001199static void print_property(const char* key, const char* name, void* /* cookie */) {
1200 printf("%s=%s\n", key, name);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001201}
1202
Tao Baoac9d94d2016-11-03 11:37:15 -07001203static std::string load_locale_from_cache() {
1204 if (ensure_path_mounted(LOCALE_FILE) != 0) {
1205 LOG(ERROR) << "Can't mount " << LOCALE_FILE;
1206 return "";
Doug Zongker02ec6b82012-08-22 17:26:40 -07001207 }
Tao Baoac9d94d2016-11-03 11:37:15 -07001208
1209 std::string content;
1210 if (!android::base::ReadFileToString(LOCALE_FILE, &content)) {
1211 PLOG(ERROR) << "Can't read " << LOCALE_FILE;
1212 return "";
1213 }
1214
1215 return android::base::Trim(content);
Doug Zongker02ec6b82012-08-22 17:26:40 -07001216}
1217
Tao Baoac9d94d2016-11-03 11:37:15 -07001218void ui_print(const char* format, ...) {
1219 std::string buffer;
Doug Zongker7c3ae452013-05-14 11:03:02 -07001220 va_list ap;
1221 va_start(ap, format);
Tao Baoac9d94d2016-11-03 11:37:15 -07001222 android::base::StringAppendV(&buffer, format, ap);
Doug Zongker7c3ae452013-05-14 11:03:02 -07001223 va_end(ap);
1224
Tao Baoac9d94d2016-11-03 11:37:15 -07001225 if (ui != nullptr) {
1226 ui->Print("%s", buffer.c_str());
Doug Zongker7c3ae452013-05-14 11:03:02 -07001227 } else {
Tao Baoac9d94d2016-11-03 11:37:15 -07001228 fputs(buffer.c_str(), stdout);
Doug Zongker7c3ae452013-05-14 11:03:02 -07001229 }
1230}
1231
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -07001232static constexpr char log_characters[] = "VDIWEF";
1233
Tao Bao99f0d9e2016-10-13 12:46:38 -07001234void UiLogger(android::base::LogId /* id */, android::base::LogSeverity severity,
1235 const char* /* tag */, const char* /* file */, unsigned int /* line */,
1236 const char* message) {
1237 if (severity >= android::base::ERROR && ui != nullptr) {
1238 ui->Print("E:%s\n", message);
1239 } else {
1240 fprintf(stdout, "%c:%s\n", log_characters[severity], message);
1241 }
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -07001242}
1243
Tao Baof2ea6d72018-04-26 10:40:36 -07001244static bool is_battery_ok(int* required_battery_level) {
1245 struct healthd_config healthd_config = {
1246 .batteryStatusPath = android::String8(android::String8::kEmptyString),
1247 .batteryHealthPath = android::String8(android::String8::kEmptyString),
1248 .batteryPresentPath = android::String8(android::String8::kEmptyString),
1249 .batteryCapacityPath = android::String8(android::String8::kEmptyString),
1250 .batteryVoltagePath = android::String8(android::String8::kEmptyString),
1251 .batteryTemperaturePath = android::String8(android::String8::kEmptyString),
1252 .batteryTechnologyPath = android::String8(android::String8::kEmptyString),
1253 .batteryCurrentNowPath = android::String8(android::String8::kEmptyString),
1254 .batteryCurrentAvgPath = android::String8(android::String8::kEmptyString),
1255 .batteryChargeCounterPath = android::String8(android::String8::kEmptyString),
1256 .batteryFullChargePath = android::String8(android::String8::kEmptyString),
1257 .batteryCycleCountPath = android::String8(android::String8::kEmptyString),
1258 .energyCounter = nullptr,
1259 .boot_min_cap = 0,
1260 .screen_on = nullptr
1261 };
1262 healthd_board_init(&healthd_config);
Yabin Cui99281df2016-02-17 12:21:52 -08001263
Tao Baof2ea6d72018-04-26 10:40:36 -07001264 android::BatteryMonitor monitor;
1265 monitor.init(&healthd_config);
Yabin Cui99281df2016-02-17 12:21:52 -08001266
Tao Baof2ea6d72018-04-26 10:40:36 -07001267 static constexpr int BATTERY_READ_TIMEOUT_IN_SEC = 10;
1268 int wait_second = 0;
1269 while (true) {
1270 int charge_status = monitor.getChargeStatus();
1271 // Treat unknown status as charged.
1272 bool charged = (charge_status != android::BATTERY_STATUS_DISCHARGING &&
1273 charge_status != android::BATTERY_STATUS_NOT_CHARGING);
1274 android::BatteryProperty capacity;
1275 android::status_t status = monitor.getProperty(android::BATTERY_PROP_CAPACITY, &capacity);
1276 ui_print("charge_status %d, charged %d, status %d, capacity %" PRId64 "\n", charge_status,
1277 charged, status, capacity.valueInt64);
1278 // At startup, the battery drivers in devices like N5X/N6P take some time to load
1279 // the battery profile. Before the load finishes, it reports value 50 as a fake
1280 // capacity. BATTERY_READ_TIMEOUT_IN_SEC is set that the battery drivers are expected
1281 // to finish loading the battery profile earlier than 10 seconds after kernel startup.
1282 if (status == 0 && capacity.valueInt64 == 50) {
1283 if (wait_second < BATTERY_READ_TIMEOUT_IN_SEC) {
1284 sleep(1);
1285 wait_second++;
1286 continue;
1287 }
Yabin Cui99281df2016-02-17 12:21:52 -08001288 }
Tao Baof2ea6d72018-04-26 10:40:36 -07001289 // If we can't read battery percentage, it may be a device without battery. In this situation,
1290 // use 100 as a fake battery percentage.
1291 if (status != 0) {
1292 capacity.valueInt64 = 100;
1293 }
1294
1295 // GmsCore enters recovery mode to install package when having enough battery percentage.
1296 // Normally, the threshold is 40% without charger and 20% with charger. So we should check
1297 // battery with a slightly lower limitation.
1298 static constexpr int BATTERY_OK_PERCENTAGE = 20;
1299 static constexpr int BATTERY_WITH_CHARGER_OK_PERCENTAGE = 15;
1300 *required_battery_level = charged ? BATTERY_WITH_CHARGER_OK_PERCENTAGE : BATTERY_OK_PERCENTAGE;
1301 return capacity.valueInt64 >= *required_battery_level;
1302 }
Yabin Cui99281df2016-02-17 12:21:52 -08001303}
1304
Tianjie Xu99b73be2017-11-28 17:23:06 -08001305// Set the retry count to |retry_count| in BCB.
Tianjie Xu72449c92017-05-16 18:07:31 -07001306static void set_retry_bootloader_message(int retry_count, const std::vector<std::string>& args) {
1307 std::vector<std::string> options;
1308 for (const auto& arg : args) {
1309 if (!android::base::StartsWith(arg, "--retry_count")) {
1310 options.push_back(arg);
Tianjie Xu3c62b672016-02-05 18:25:58 -08001311 }
Tianjie Xu72449c92017-05-16 18:07:31 -07001312 }
Tianjie Xu3c62b672016-02-05 18:25:58 -08001313
Tianjie Xu99b73be2017-11-28 17:23:06 -08001314 // Update the retry counter in BCB.
1315 options.push_back(android::base::StringPrintf("--retry_count=%d", retry_count));
Tianjie Xu72449c92017-05-16 18:07:31 -07001316 std::string err;
1317 if (!update_bootloader_message(options, &err)) {
1318 LOG(ERROR) << err;
1319 }
Tianjie Xu3c62b672016-02-05 18:25:58 -08001320}
1321
Tianjie Xu06e57ac2016-07-11 14:04:08 -07001322static bool bootreason_in_blacklist() {
Tao Baoefc35592017-01-08 22:45:47 -08001323 std::string bootreason = android::base::GetProperty("ro.boot.bootreason", "");
1324 if (!bootreason.empty()) {
1325 for (const auto& str : bootreason_blacklist) {
1326 if (strcasecmp(str.c_str(), bootreason.c_str()) == 0) {
1327 return true;
1328 }
Tianjie Xu06e57ac2016-07-11 14:04:08 -07001329 }
Tao Baoefc35592017-01-08 22:45:47 -08001330 }
1331 return false;
Tianjie Xu06e57ac2016-07-11 14:04:08 -07001332}
1333
Tao Bao641fa972018-04-25 18:59:40 -07001334static void log_failure_code(ErrorCode code, const std::string& update_package) {
1335 std::vector<std::string> log_buffer = {
1336 update_package,
1337 "0", // install result
1338 "error: " + std::to_string(code),
1339 };
1340 std::string log_content = android::base::Join(log_buffer, "\n");
1341 const std::string& install_file = Paths::Get().temporary_install_file();
1342 if (!android::base::WriteStringToFile(log_content, install_file)) {
1343 PLOG(ERROR) << "Failed to write " << install_file;
1344 }
Tianjie Xu06e57ac2016-07-11 14:04:08 -07001345
Tao Bao641fa972018-04-25 18:59:40 -07001346 // Also write the info into last_log.
1347 LOG(INFO) << log_content;
Tianjie Xu06e57ac2016-07-11 14:04:08 -07001348}
1349
Yabin Cui99281df2016-02-17 12:21:52 -08001350int main(int argc, char **argv) {
Tianjie Xu99b73be2017-11-28 17:23:06 -08001351 // We don't have logcat yet under recovery; so we'll print error on screen and
1352 // log to stdout (which is redirected to recovery.log) as we used to do.
1353 android::base::InitLogging(argv, &UiLogger);
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -07001354
Tianjie Xu99b73be2017-11-28 17:23:06 -08001355 // Take last pmsg contents and rewrite it to the current pmsg session.
1356 static const char filter[] = "recovery/";
1357 // Do we need to rotate?
1358 bool doRotate = false;
Tianjie Xue113e4d2016-10-21 17:46:13 -07001359
Tianjie Xu99b73be2017-11-28 17:23:06 -08001360 __android_log_pmsg_file_read(LOG_ID_SYSTEM, ANDROID_LOG_INFO, filter, logbasename, &doRotate);
1361 // Take action to refresh pmsg contents
1362 __android_log_pmsg_file_read(LOG_ID_SYSTEM, ANDROID_LOG_INFO, filter, logrotate, &doRotate);
Mark Salyzyna4f701a2016-03-09 14:58:16 -08001363
Tianjie Xu99b73be2017-11-28 17:23:06 -08001364 // If this binary is started with the single argument "--adbd",
1365 // instead of being the normal recovery binary, it turns into kind
1366 // of a stripped-down version of adbd that only supports the
1367 // 'sideload' command. Note this must be a real argument, not
1368 // anything in the command file or bootloader control block; the
1369 // only way recovery should be run with this argument is when it
1370 // starts a copy of itself from the apply_from_adb() function.
1371 if (argc == 2 && strcmp(argv[1], "--adbd") == 0) {
1372 minadbd_main();
1373 return 0;
1374 }
1375
1376 time_t start = time(nullptr);
1377
1378 // redirect_stdio should be called only in non-sideload mode. Otherwise
1379 // we may have two logger instances with different timestamps.
Tao Bao641fa972018-04-25 18:59:40 -07001380 redirect_stdio(Paths::Get().temporary_log_file().c_str());
Tianjie Xu99b73be2017-11-28 17:23:06 -08001381
1382 printf("Starting recovery (pid %d) on %s", getpid(), ctime(&start));
1383
1384 load_volume_table();
1385 has_cache = volume_for_mount_point(CACHE_ROOT) != nullptr;
1386
1387 std::vector<std::string> args = get_args(argc, argv);
1388 std::vector<char*> args_to_parse(args.size());
1389 std::transform(args.cbegin(), args.cend(), args_to_parse.begin(),
1390 [](const std::string& arg) { return const_cast<char*>(arg.c_str()); });
1391
Tao Baof9f17342018-04-27 10:44:04 -07001392 static constexpr struct option OPTIONS[] = {
1393 { "just_exit", no_argument, nullptr, 'x' },
1394 { "locale", required_argument, nullptr, 0 },
1395 { "prompt_and_wipe_data", no_argument, nullptr, 0 },
1396 { "reason", required_argument, nullptr, 0 },
1397 { "retry_count", required_argument, nullptr, 0 },
1398 { "security", no_argument, nullptr, 0 },
1399 { "show_text", no_argument, nullptr, 't' },
1400 { "shutdown_after", no_argument, nullptr, 0 },
1401 { "sideload", no_argument, nullptr, 0 },
1402 { "sideload_auto_reboot", no_argument, nullptr, 0 },
1403 { "update_package", required_argument, nullptr, 0 },
1404 { "wipe_ab", no_argument, nullptr, 0 },
1405 { "wipe_cache", no_argument, nullptr, 0 },
1406 { "wipe_data", no_argument, nullptr, 0 },
1407 { "wipe_package_size", required_argument, nullptr, 0 },
1408 { nullptr, 0, nullptr, 0 },
1409 };
1410
Tianjie Xu99b73be2017-11-28 17:23:06 -08001411 const char* update_package = nullptr;
1412 bool should_wipe_data = false;
1413 bool should_prompt_and_wipe_data = false;
1414 bool should_wipe_cache = false;
1415 bool should_wipe_ab = false;
1416 size_t wipe_package_size = 0;
1417 bool show_text = false;
1418 bool sideload = false;
1419 bool sideload_auto_reboot = false;
1420 bool just_exit = false;
1421 bool shutdown_after = false;
1422 int retry_count = 0;
1423 bool security_update = false;
1424
1425 int arg;
1426 int option_index;
1427 while ((arg = getopt_long(args_to_parse.size(), args_to_parse.data(), "", OPTIONS,
1428 &option_index)) != -1) {
1429 switch (arg) {
Tianjie Xu99b73be2017-11-28 17:23:06 -08001430 case 't':
1431 show_text = true;
1432 break;
Tianjie Xu99b73be2017-11-28 17:23:06 -08001433 case 'x':
1434 just_exit = true;
1435 break;
Tianjie Xu99b73be2017-11-28 17:23:06 -08001436 case 0: {
1437 std::string option = OPTIONS[option_index].name;
Tao Baof9f17342018-04-27 10:44:04 -07001438 if (option == "locale") {
1439 locale = optarg;
Tianjie Xu99b73be2017-11-28 17:23:06 -08001440 } else if (option == "prompt_and_wipe_data") {
1441 should_prompt_and_wipe_data = true;
Tao Baof9f17342018-04-27 10:44:04 -07001442 } else if (option == "reason") {
1443 reason = optarg;
1444 } else if (option == "retry_count") {
1445 android::base::ParseInt(optarg, &retry_count, 0);
1446 } else if (option == "security") {
1447 security_update = true;
1448 } else if (option == "sideload") {
1449 sideload = true;
1450 } else if (option == "sideload_auto_reboot") {
1451 sideload = true;
1452 sideload_auto_reboot = true;
1453 } else if (option == "shutdown_after") {
1454 shutdown_after = true;
1455 } else if (option == "update_package") {
1456 update_package = optarg;
1457 } else if (option == "wipe_ab") {
1458 should_wipe_ab = true;
1459 } else if (option == "wipe_cache") {
1460 should_wipe_cache = true;
1461 } else if (option == "wipe_data") {
1462 should_wipe_data = true;
1463 } else if (option == "wipe_package_size") {
1464 android::base::ParseUint(optarg, &wipe_package_size);
Tianjie Xu99b73be2017-11-28 17:23:06 -08001465 }
1466 break;
1467 }
1468 case '?':
1469 LOG(ERROR) << "Invalid command argument";
1470 continue;
Doug Zongker9270a202012-01-09 15:16:13 -08001471 }
Tianjie Xu99b73be2017-11-28 17:23:06 -08001472 }
Doug Zongker9270a202012-01-09 15:16:13 -08001473
Tianjie Xu99b73be2017-11-28 17:23:06 -08001474 if (locale.empty()) {
1475 if (has_cache) {
1476 locale = load_locale_from_cache();
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001477 }
1478
Tao Baoac9d94d2016-11-03 11:37:15 -07001479 if (locale.empty()) {
Tianjie Xu99b73be2017-11-28 17:23:06 -08001480 locale = DEFAULT_LOCALE;
Doug Zongker02ec6b82012-08-22 17:26:40 -07001481 }
Tianjie Xu99b73be2017-11-28 17:23:06 -08001482 }
Tao Baoac9d94d2016-11-03 11:37:15 -07001483
Tianjie Xu99b73be2017-11-28 17:23:06 -08001484 printf("locale is [%s]\n", locale.c_str());
1485 printf("stage is [%s]\n", stage.c_str());
1486 printf("reason is [%s]\n", reason);
Doug Zongker02ec6b82012-08-22 17:26:40 -07001487
Tianjie Xu99b73be2017-11-28 17:23:06 -08001488 Device* device = make_device();
1489 if (android::base::GetBoolProperty("ro.boot.quiescent", false)) {
1490 printf("Quiescent recovery mode.\n");
1491 ui = new StubRecoveryUI();
1492 } else {
1493 ui = device->GetUI();
1494
1495 if (!ui->Init(locale)) {
1496 printf("Failed to initialize UI, use stub UI instead.\n");
1497 ui = new StubRecoveryUI();
1498 }
1499 }
1500
1501 // Set background string to "installing security update" for security update,
1502 // otherwise set it to "installing system update".
1503 ui->SetSystemUpdateText(security_update);
1504
1505 int st_cur, st_max;
1506 if (!stage.empty() && sscanf(stage.c_str(), "%d/%d", &st_cur, &st_max) == 2) {
1507 ui->SetStage(st_cur, st_max);
1508 }
1509
1510 ui->SetBackground(RecoveryUI::NONE);
1511 if (show_text) ui->ShowText(true);
1512
1513 sehandle = selinux_android_file_context_handle();
1514 selinux_android_set_sehandle(sehandle);
1515 if (!sehandle) {
1516 ui->Print("Warning: No file_contexts\n");
1517 }
1518
1519 device->StartRecovery();
1520
1521 printf("Command:");
1522 for (const auto& arg : args) {
1523 printf(" \"%s\"", arg.c_str());
1524 }
1525 printf("\n\n");
1526
1527 property_list(print_property, nullptr);
1528 printf("\n");
1529
1530 ui->Print("Supported API: %d\n", kRecoveryApiVersion);
1531
1532 int status = INSTALL_SUCCESS;
1533
1534 if (update_package != nullptr) {
1535 // It's not entirely true that we will modify the flash. But we want
1536 // to log the update attempt since update_package is non-NULL.
1537 modified_flash = true;
1538
Tao Baof2ea6d72018-04-26 10:40:36 -07001539 int required_battery_level;
1540 if (retry_count == 0 && !is_battery_ok(&required_battery_level)) {
1541 ui->Print("battery capacity is not enough for installing package: %d%% needed\n",
1542 required_battery_level);
Tianjie Xu99b73be2017-11-28 17:23:06 -08001543 // Log the error code to last_install when installation skips due to
1544 // low battery.
1545 log_failure_code(kLowBattery, update_package);
1546 status = INSTALL_SKIPPED;
Tianjie Xua6f49bd2018-03-26 14:32:11 -07001547 } else if (retry_count == 0 && bootreason_in_blacklist()) {
Tianjie Xu99b73be2017-11-28 17:23:06 -08001548 // Skip update-on-reboot when bootreason is kernel_panic or similar
1549 ui->Print("bootreason is in the blacklist; skip OTA installation\n");
1550 log_failure_code(kBootreasonInBlacklist, update_package);
1551 status = INSTALL_SKIPPED;
Dmitri Plotnikov8706a982017-04-18 08:28:26 -07001552 } else {
Tianjie Xu99b73be2017-11-28 17:23:06 -08001553 // It's a fresh update. Initialize the retry_count in the BCB to 1; therefore we can later
1554 // identify the interrupted update due to unexpected reboots.
1555 if (retry_count == 0) {
1556 set_retry_bootloader_message(retry_count + 1, args);
Tao Bao7022f332017-07-25 09:52:36 -07001557 }
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001558
Tao Bao641fa972018-04-25 18:59:40 -07001559 status = install_package(update_package, &should_wipe_cache, true, retry_count);
Tianjie Xu99b73be2017-11-28 17:23:06 -08001560 if (status == INSTALL_SUCCESS && should_wipe_cache) {
1561 wipe_cache(false, device);
1562 }
1563 if (status != INSTALL_SUCCESS) {
1564 ui->Print("Installation aborted.\n");
1565 // When I/O error happens, reboot and retry installation RETRY_LIMIT
1566 // times before we abandon this OTA update.
1567 if (status == INSTALL_RETRY && retry_count < RETRY_LIMIT) {
1568 copy_logs();
1569 retry_count += 1;
1570 set_retry_bootloader_message(retry_count, args);
1571 // Print retry count on screen.
1572 ui->Print("Retry attempt %d\n", retry_count);
1573
1574 // Reboot and retry the update
1575 if (!reboot("reboot,recovery")) {
1576 ui->Print("Reboot failed\n");
1577 } else {
1578 while (true) {
1579 pause();
1580 }
1581 }
Tianjie Xud9d16292017-04-20 18:08:21 -07001582 }
Tianjie Xu99b73be2017-11-28 17:23:06 -08001583 // If this is an eng or userdebug build, then automatically
1584 // turn the text display on if the script fails so the error
1585 // message is visible.
1586 if (is_ro_debuggable()) {
1587 ui->ShowText(true);
Tao Baoc679f932015-03-30 09:43:49 -07001588 }
Tianjie Xu99b73be2017-11-28 17:23:06 -08001589 }
Doug Zongker8674a722010-09-15 11:08:23 -07001590 }
Tianjie Xu99b73be2017-11-28 17:23:06 -08001591 } else if (should_wipe_data) {
1592 if (!wipe_data(device)) {
1593 status = INSTALL_ERROR;
Doug Zongkerb1d12632014-03-18 10:32:12 -07001594 }
Tianjie Xu99b73be2017-11-28 17:23:06 -08001595 } else if (should_prompt_and_wipe_data) {
1596 ui->ShowText(true);
1597 ui->SetBackground(RecoveryUI::ERROR);
1598 if (!prompt_and_wipe_data(device)) {
1599 status = INSTALL_ERROR;
Tao Bao75238632015-05-27 14:46:17 -07001600 }
Tianjie Xu99b73be2017-11-28 17:23:06 -08001601 ui->ShowText(false);
1602 } else if (should_wipe_cache) {
1603 if (!wipe_cache(false, device)) {
1604 status = INSTALL_ERROR;
1605 }
1606 } else if (should_wipe_ab) {
1607 if (!wipe_ab_device(wipe_package_size)) {
1608 status = INSTALL_ERROR;
1609 }
1610 } else if (sideload) {
1611 // 'adb reboot sideload' acts the same as user presses key combinations
1612 // to enter the sideload mode. When 'sideload-auto-reboot' is used, text
1613 // display will NOT be turned on by default. And it will reboot after
1614 // sideload finishes even if there are errors. Unless one turns on the
1615 // text display during the installation. This is to enable automated
1616 // testing.
1617 if (!sideload_auto_reboot) {
1618 ui->ShowText(true);
1619 }
Tao Bao641fa972018-04-25 18:59:40 -07001620 status = apply_from_adb(&should_wipe_cache);
Tianjie Xu99b73be2017-11-28 17:23:06 -08001621 if (status == INSTALL_SUCCESS && should_wipe_cache) {
1622 if (!wipe_cache(false, device)) {
1623 status = INSTALL_ERROR;
1624 }
1625 }
1626 ui->Print("\nInstall from ADB complete (status: %d).\n", status);
1627 if (sideload_auto_reboot) {
1628 ui->Print("Rebooting automatically.\n");
1629 }
1630 } else if (!just_exit) {
1631 // If this is an eng or userdebug build, automatically turn on the text display if no command
1632 // is specified. Note that this should be called before setting the background to avoid
1633 // flickering the background image.
1634 if (is_ro_debuggable()) {
1635 ui->ShowText(true);
1636 }
1637 status = INSTALL_NONE; // No command specified
1638 ui->SetBackground(RecoveryUI::NO_COMMAND);
1639 }
1640
1641 if (status == INSTALL_ERROR || status == INSTALL_CORRUPT) {
1642 ui->SetBackground(RecoveryUI::ERROR);
1643 if (!ui->IsTextVisible()) {
1644 sleep(5);
1645 }
1646 }
1647
1648 Device::BuiltinAction after = shutdown_after ? Device::SHUTDOWN : Device::REBOOT;
1649 // 1. If the recovery menu is visible, prompt and wait for commands.
1650 // 2. If the state is INSTALL_NONE, wait for commands. (i.e. In user build, manually reboot into
1651 // recovery to sideload a package.)
1652 // 3. sideload_auto_reboot is an option only available in user-debug build, reboot the device
1653 // without waiting.
1654 // 4. In all other cases, reboot the device. Therefore, normal users will observe the device
1655 // reboot after it shows the "error" screen for 5s.
1656 if ((status == INSTALL_NONE && !sideload_auto_reboot) || ui->IsTextVisible()) {
1657 Device::BuiltinAction temp = prompt_and_wait(device, status);
1658 if (temp != Device::NO_ACTION) {
1659 after = temp;
1660 }
1661 }
1662
1663 // Save logs and clean up before rebooting or shutting down.
1664 finish_recovery();
1665
1666 switch (after) {
1667 case Device::SHUTDOWN:
1668 ui->Print("Shutting down...\n");
1669 android::base::SetProperty(ANDROID_RB_PROPERTY, "shutdown,");
1670 break;
1671
1672 case Device::REBOOT_BOOTLOADER:
1673 ui->Print("Rebooting to bootloader...\n");
1674 android::base::SetProperty(ANDROID_RB_PROPERTY, "reboot,bootloader");
1675 break;
1676
1677 default:
1678 ui->Print("Rebooting...\n");
1679 reboot("reboot,");
1680 break;
1681 }
1682 while (true) {
1683 pause();
1684 }
1685 // Should be unreachable.
1686 return EXIT_SUCCESS;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001687}