blob: c5ead451aa2a561df8cad3d298318566cdf4e4d6 [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 */
Elliott Hughes4bbd5bf2016-04-01 18:24:39 -070056#include <selinux/label.h>
57#include <selinux/selinux.h>
Tianjie Xu8cf5c8f2016-09-08 20:10:11 -070058#include <ziparchive/zip_archive.h>
Yabin Cui99281df2016-02-17 12:21:52 -080059
Tao Bao75238632015-05-27 14:46:17 -070060#include "adb_install.h"
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080061#include "common.h"
Tao Bao75238632015-05-27 14:46:17 -070062#include "device.h"
Tianjie Xu16255832016-04-30 11:49:59 -070063#include "error_code.h"
Tao Bao75238632015-05-27 14:46:17 -070064#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"
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080070#include "roots.h"
Tianjie Xue113e4d2016-10-21 17:46:13 -070071#include "rotate_logs.h"
Doug Zongker211aebc2011-10-28 15:13:10 -070072#include "screen_ui.h"
Sen Jiangd5304492016-12-09 16:20:49 -080073#include "stub_ui.h"
Tianjie Xue113e4d2016-10-21 17:46:13 -070074#include "ui.h"
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080075
76static const struct option OPTIONS[] = {
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080077 { "update_package", required_argument, NULL, 'u' },
Tianjie Xu3c62b672016-02-05 18:25:58 -080078 { "retry_count", required_argument, NULL, 'n' },
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080079 { "wipe_data", no_argument, NULL, 'w' },
80 { "wipe_cache", no_argument, NULL, 'c' },
Doug Zongker4bc98062010-09-03 11:00:13 -070081 { "show_text", no_argument, NULL, 't' },
Tao Baoc679f932015-03-30 09:43:49 -070082 { "sideload", no_argument, NULL, 's' },
83 { "sideload_auto_reboot", no_argument, NULL, 'a' },
Doug Zongkere5d5ac72012-04-12 11:01:22 -070084 { "just_exit", no_argument, NULL, 'x' },
Doug Zongker02ec6b82012-08-22 17:26:40 -070085 { "locale", required_argument, NULL, 'l' },
Doug Zongkerb1d12632014-03-18 10:32:12 -070086 { "shutdown_after", no_argument, NULL, 'p' },
Jeff Sharkeya6e13ae2014-09-24 11:46:17 -070087 { "reason", required_argument, NULL, 'r' },
Tianjie Xu35926c42016-04-28 18:06:26 -070088 { "security", no_argument, NULL, 'e'},
Yabin Cui8b309f62016-06-24 18:22:02 -070089 { "wipe_ab", no_argument, NULL, 0 },
Yabin Cuifd99a312016-06-09 14:09:39 -070090 { "wipe_package_size", required_argument, NULL, 0 },
Paul Crowley08404b42016-12-19 13:04:23 -080091 { "prompt_and_wipe_data", no_argument, NULL, 0 },
Doug Zongker988500b2009-10-06 14:41:38 -070092 { NULL, 0, NULL, 0 },
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080093};
94
Tianjie Xu06e57ac2016-07-11 14:04:08 -070095// More bootreasons can be found in "system/core/bootstat/bootstat.cpp".
96static const std::vector<std::string> bootreason_blacklist {
97 "kernel_panic",
98 "Panic",
99};
100
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700101static const char *CACHE_LOG_DIR = "/cache/recovery";
Doug Zongkerd4208f92010-09-20 12:16:13 -0700102static const char *COMMAND_FILE = "/cache/recovery/command";
Doug Zongkerd4208f92010-09-20 12:16:13 -0700103static const char *LOG_FILE = "/cache/recovery/log";
Doug Zongkerd0181b82011-10-19 10:51:12 -0700104static const char *LAST_INSTALL_FILE = "/cache/recovery/last_install";
Doug Zongker8b240cc2012-08-29 15:19:29 -0700105static const char *LOCALE_FILE = "/cache/recovery/last_locale";
Paul Lawrence661f8a62016-02-25 12:42:19 -0800106static const char *CONVERT_FBE_DIR = "/tmp/convert_fbe";
107static const char *CONVERT_FBE_FILE = "/tmp/convert_fbe/convert_fbe";
Michael Ward9d2629c2011-06-23 22:14:24 -0700108static const char *CACHE_ROOT = "/cache";
Paul Lawrenced0db3372015-11-05 13:38:40 -0800109static const char *DATA_ROOT = "/data";
Doug Zongkerd4208f92010-09-20 12:16:13 -0700110static const char *SDCARD_ROOT = "/sdcard";
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800111static const char *TEMPORARY_LOG_FILE = "/tmp/recovery.log";
Doug Zongkerd0181b82011-10-19 10:51:12 -0700112static const char *TEMPORARY_INSTALL_FILE = "/tmp/last_install";
Tao Baof0124322015-04-11 02:04:11 +0000113static const char *LAST_KMSG_FILE = "/cache/recovery/last_kmsg";
Tao Baobef39712015-05-04 18:50:27 -0700114static const char *LAST_LOG_FILE = "/cache/recovery/last_log";
Tianjie Xu69575552017-05-16 15:51:46 -0700115// We will try to apply the update package 5 times at most in case of an I/O error or
116// bspatch | imgpatch error.
117static const int RETRY_LIMIT = 4;
Yabin Cui99281df2016-02-17 12:21:52 -0800118static const int BATTERY_READ_TIMEOUT_IN_SEC = 10;
119// GmsCore enters recovery mode to install package when having enough battery
120// percentage. Normally, the threshold is 40% without charger and 20% with charger.
121// So we should check battery with a slightly lower limitation.
122static const int BATTERY_OK_PERCENTAGE = 20;
123static const int BATTERY_WITH_CHARGER_OK_PERCENTAGE = 15;
Tao Baoac9d94d2016-11-03 11:37:15 -0700124static constexpr const char* RECOVERY_WIPE = "/etc/recovery.wipe";
Tianjie Xu2078b222017-03-22 12:27:26 -0700125static constexpr const char* DEFAULT_LOCALE = "en-US";
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700126
Tao Baoac9d94d2016-11-03 11:37:15 -0700127static std::string locale;
Dan Albert8584fcf2016-10-27 03:08:08 +0000128static bool has_cache = false;
Tao Baoc0319b62016-10-13 15:17:04 -0700129
Tao Baoac9d94d2016-11-03 11:37:15 -0700130RecoveryUI* ui = nullptr;
131bool modified_flash = false;
Tao Baoa8d72bc2016-12-25 18:46:50 -0800132std::string stage;
Tao Baoac9d94d2016-11-03 11:37:15 -0700133const char* reason = nullptr;
134struct selabel_handle* sehandle;
135
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800136/*
137 * The recovery tool communicates with the main system through /cache files.
138 * /cache/recovery/command - INPUT - command line for tool, one arg per line
139 * /cache/recovery/log - OUTPUT - combined log file from recovery run(s)
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800140 *
141 * The arguments which may be supplied in the recovery.command file:
Doug Zongkerd4208f92010-09-20 12:16:13 -0700142 * --update_package=path - verify install an OTA package file
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800143 * --wipe_data - erase user data (and cache), then reboot
Paul Crowley08404b42016-12-19 13:04:23 -0800144 * --prompt_and_wipe_data - prompt the user that data is corrupt,
145 * with their consent erase user data (and cache), then reboot
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800146 * --wipe_cache - wipe cache (but not user data), then reboot
Oscar Montemayor05231562009-11-30 08:40:57 -0800147 * --set_encrypted_filesystem=on|off - enables / diasables encrypted fs
Doug Zongkere5d5ac72012-04-12 11:01:22 -0700148 * --just_exit - do nothing; exit and reboot
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800149 *
150 * After completing, we remove /cache/recovery/command and reboot.
151 * Arguments may also be supplied in the bootloader control block (BCB).
152 * These important scenarios must be safely restartable at any point:
153 *
154 * FACTORY RESET
155 * 1. user selects "factory reset"
156 * 2. main system writes "--wipe_data" to /cache/recovery/command
157 * 3. main system reboots into recovery
158 * 4. get_args() writes BCB with "boot-recovery" and "--wipe_data"
159 * -- after this, rebooting will restart the erase --
Doug Zongkerd4208f92010-09-20 12:16:13 -0700160 * 5. erase_volume() reformats /data
161 * 6. erase_volume() reformats /cache
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800162 * 7. finish_recovery() erases BCB
163 * -- after this, rebooting will restart the main system --
164 * 8. main() calls reboot() to boot main system
165 *
166 * OTA INSTALL
167 * 1. main system downloads OTA package to /cache/some-filename.zip
Doug Zongker9b125b02010-09-22 12:01:37 -0700168 * 2. main system writes "--update_package=/cache/some-filename.zip"
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800169 * 3. main system reboots into recovery
170 * 4. get_args() writes BCB with "boot-recovery" and "--update_package=..."
171 * -- after this, rebooting will attempt to reinstall the update --
172 * 5. install_package() attempts to install the update
173 * NOTE: the package install must itself be restartable from any point
174 * 6. finish_recovery() erases BCB
175 * -- after this, rebooting will (try to) restart the main system --
176 * 7. ** if install failed **
177 * 7a. prompt_and_wait() shows an error icon and waits for the user
Tao Baoc0336392016-12-13 22:29:49 -0800178 * 7b. the user reboots (pulling the battery, etc) into the main system
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800179 */
180
Tao Baoac3d1ed2017-07-23 00:01:02 -0700181// Open a given path, mounting partitions as necessary.
182FILE* fopen_path(const char* path, const char* mode) {
183 if (ensure_path_mounted(path) != 0) {
184 LOG(ERROR) << "Can't mount " << path;
185 return nullptr;
186 }
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800187
Tao Baoac3d1ed2017-07-23 00:01:02 -0700188 // When writing, try to create the containing directory, if necessary. Use generous permissions,
189 // the system (init.rc) will reset them.
190 if (strchr("wa", mode[0])) {
191 mkdir_recursively(path, 0777, true, sehandle);
192 }
193 return fopen(path, mode);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800194}
195
Tao Bao04ca4262015-09-10 15:32:24 -0700196// close a file, log an error if the error indicator is set
197static void check_and_fclose(FILE *fp, const char *name) {
198 fflush(fp);
Tao Baoac9d94d2016-11-03 11:37:15 -0700199 if (fsync(fileno(fp)) == -1) {
200 PLOG(ERROR) << "Failed to fsync " << name;
201 }
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -0700202 if (ferror(fp)) {
203 PLOG(ERROR) << "Error in " << name;
204 }
Tao Bao04ca4262015-09-10 15:32:24 -0700205 fclose(fp);
206}
207
Elliott Hughesf14af802015-02-10 14:46:14 -0800208bool is_ro_debuggable() {
Elliott Hughescb220402016-09-23 15:30:55 -0700209 return android::base::GetBoolProperty("ro.debuggable", false);
Elliott Hughesf14af802015-02-10 14:46:14 -0800210}
211
Dmitri Plotnikov8706a982017-04-18 08:28:26 -0700212bool reboot(const std::string& command) {
213 std::string cmd = command;
214 if (android::base::GetBoolProperty("ro.boot.quiescent", false)) {
215 cmd += ",quiescent";
216 }
217 return android::base::SetProperty(ANDROID_RB_PROPERTY, cmd);
218}
219
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700220static void redirect_stdio(const char* filename) {
Tao Bao04ca4262015-09-10 15:32:24 -0700221 int pipefd[2];
222 if (pipe(pipefd) == -1) {
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -0700223 PLOG(ERROR) << "pipe failed";
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700224
Tao Bao04ca4262015-09-10 15:32:24 -0700225 // Fall back to traditional logging mode without timestamps.
226 // If these fail, there's not really anywhere to complain...
227 freopen(filename, "a", stdout); setbuf(stdout, NULL);
228 freopen(filename, "a", stderr); setbuf(stderr, NULL);
229
230 return;
231 }
232
233 pid_t pid = fork();
234 if (pid == -1) {
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -0700235 PLOG(ERROR) << "fork failed";
Tao Bao04ca4262015-09-10 15:32:24 -0700236
237 // Fall back to traditional logging mode without timestamps.
238 // If these fail, there's not really anywhere to complain...
239 freopen(filename, "a", stdout); setbuf(stdout, NULL);
240 freopen(filename, "a", stderr); setbuf(stderr, NULL);
241
242 return;
243 }
244
245 if (pid == 0) {
246 /// Close the unused write end.
247 close(pipefd[1]);
248
249 auto start = std::chrono::steady_clock::now();
250
251 // Child logger to actually write to the log file.
Tianjie Xude6735e2017-07-10 15:13:33 -0700252 FILE* log_fp = fopen(filename, "ae");
Tao Bao04ca4262015-09-10 15:32:24 -0700253 if (log_fp == nullptr) {
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -0700254 PLOG(ERROR) << "fopen \"" << filename << "\" failed";
Tao Bao04ca4262015-09-10 15:32:24 -0700255 close(pipefd[0]);
Tao Bao3da88012017-02-03 13:09:23 -0800256 _exit(EXIT_FAILURE);
Tao Bao04ca4262015-09-10 15:32:24 -0700257 }
258
259 FILE* pipe_fp = fdopen(pipefd[0], "r");
260 if (pipe_fp == nullptr) {
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -0700261 PLOG(ERROR) << "fdopen failed";
Tao Bao04ca4262015-09-10 15:32:24 -0700262 check_and_fclose(log_fp, filename);
263 close(pipefd[0]);
Tao Bao3da88012017-02-03 13:09:23 -0800264 _exit(EXIT_FAILURE);
Tao Bao04ca4262015-09-10 15:32:24 -0700265 }
266
267 char* line = nullptr;
268 size_t len = 0;
269 while (getline(&line, &len, pipe_fp) != -1) {
270 auto now = std::chrono::steady_clock::now();
271 double duration = std::chrono::duration_cast<std::chrono::duration<double>>(
272 now - start).count();
273 if (line[0] == '\n') {
274 fprintf(log_fp, "[%12.6lf]\n", duration);
275 } else {
276 fprintf(log_fp, "[%12.6lf] %s", duration, line);
277 }
278 fflush(log_fp);
279 }
280
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -0700281 PLOG(ERROR) << "getline failed";
Tao Bao04ca4262015-09-10 15:32:24 -0700282
283 free(line);
284 check_and_fclose(log_fp, filename);
285 close(pipefd[0]);
Tao Bao3da88012017-02-03 13:09:23 -0800286 _exit(EXIT_FAILURE);
Tao Bao04ca4262015-09-10 15:32:24 -0700287 } else {
288 // Redirect stdout/stderr to the logger process.
289 // Close the unused read end.
290 close(pipefd[0]);
291
292 setbuf(stdout, nullptr);
293 setbuf(stderr, nullptr);
294
295 if (dup2(pipefd[1], STDOUT_FILENO) == -1) {
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -0700296 PLOG(ERROR) << "dup2 stdout failed";
Tao Bao04ca4262015-09-10 15:32:24 -0700297 }
298 if (dup2(pipefd[1], STDERR_FILENO) == -1) {
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -0700299 PLOG(ERROR) << "dup2 stderr failed";
Tao Bao04ca4262015-09-10 15:32:24 -0700300 }
301
302 close(pipefd[1]);
303 }
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800304}
305
306// command line args come from, in decreasing precedence:
307// - the actual command line
308// - the bootloader control block (one per line, after "recovery")
309// - the contents of COMMAND_FILE (one per line)
Tao Baof0ed1592016-12-02 11:32:19 -0800310static std::vector<std::string> get_args(const int argc, char** const argv) {
311 CHECK_GT(argc, 0);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800312
Tao Baof0ed1592016-12-02 11:32:19 -0800313 bootloader_message boot = {};
314 std::string err;
315 if (!read_bootloader_message(&boot, &err)) {
316 LOG(ERROR) << err;
317 // If fails, leave a zeroed bootloader_message.
318 boot = {};
319 }
Tao Baoa8d72bc2016-12-25 18:46:50 -0800320 stage = std::string(boot.stage);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800321
Tao Baof0ed1592016-12-02 11:32:19 -0800322 if (boot.command[0] != 0) {
323 std::string boot_command = std::string(boot.command, sizeof(boot.command));
324 LOG(INFO) << "Boot command: " << boot_command;
325 }
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800326
Tao Baof0ed1592016-12-02 11:32:19 -0800327 if (boot.status[0] != 0) {
328 std::string boot_status = std::string(boot.status, sizeof(boot.status));
329 LOG(INFO) << "Boot status: " << boot_status;
330 }
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800331
Tao Baof0ed1592016-12-02 11:32:19 -0800332 std::vector<std::string> args(argv, argv + argc);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800333
Tao Baof0ed1592016-12-02 11:32:19 -0800334 // --- if arguments weren't supplied, look in the bootloader control block
Tao Bao570af9d2017-01-09 10:29:59 -0800335 if (args.size() == 1) {
Tao Baof0ed1592016-12-02 11:32:19 -0800336 boot.recovery[sizeof(boot.recovery) - 1] = '\0'; // Ensure termination
337 std::string boot_recovery(boot.recovery);
338 std::vector<std::string> tokens = android::base::Split(boot_recovery, "\n");
339 if (!tokens.empty() && tokens[0] == "recovery") {
340 for (auto it = tokens.begin() + 1; it != tokens.end(); it++) {
341 // Skip empty and '\0'-filled tokens.
342 if (!it->empty() && (*it)[0] != '\0') args.push_back(std::move(*it));
343 }
344 LOG(INFO) << "Got " << args.size() << " arguments from boot message";
345 } else if (boot.recovery[0] != 0) {
346 LOG(ERROR) << "Bad boot message: \"" << boot_recovery << "\"";
347 }
348 }
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800349
Tao Baof0ed1592016-12-02 11:32:19 -0800350 // --- if that doesn't work, try the command file (if we have /cache).
Tao Bao570af9d2017-01-09 10:29:59 -0800351 if (args.size() == 1 && has_cache) {
Tao Baof0ed1592016-12-02 11:32:19 -0800352 std::string content;
Tao Bao7d34fa12016-12-08 18:10:48 -0800353 if (ensure_path_mounted(COMMAND_FILE) == 0 &&
354 android::base::ReadFileToString(COMMAND_FILE, &content)) {
Tao Baof0ed1592016-12-02 11:32:19 -0800355 std::vector<std::string> tokens = android::base::Split(content, "\n");
Tao Bao7d34fa12016-12-08 18:10:48 -0800356 // All the arguments in COMMAND_FILE are needed (unlike the BCB message,
357 // COMMAND_FILE doesn't use filename as the first argument).
358 for (auto it = tokens.begin(); it != tokens.end(); it++) {
Tao Baof0ed1592016-12-02 11:32:19 -0800359 // Skip empty and '\0'-filled tokens.
360 if (!it->empty() && (*it)[0] != '\0') args.push_back(std::move(*it));
361 }
362 LOG(INFO) << "Got " << args.size() << " arguments from " << COMMAND_FILE;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800363 }
Tao Baof0ed1592016-12-02 11:32:19 -0800364 }
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800365
Tao Baof0ed1592016-12-02 11:32:19 -0800366 // Write the arguments (excluding the filename in args[0]) back into the
367 // bootloader control block. So the device will always boot into recovery to
368 // finish the pending work, until finish_recovery() is called.
369 std::vector<std::string> options(args.cbegin() + 1, args.cend());
Tao Bao2292db82016-12-13 21:53:31 -0800370 if (!update_bootloader_message(options, &err)) {
371 LOG(ERROR) << "Failed to set BCB message: " << err;
Tao Baof0ed1592016-12-02 11:32:19 -0800372 }
373
374 return args;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800375}
376
Tao Bao2292db82016-12-13 21:53:31 -0800377// Set the BCB to reboot back into recovery (it won't resume the install from
378// sdcard though).
379static void set_sdcard_update_bootloader_message() {
380 std::vector<std::string> options;
381 std::string err;
382 if (!update_bootloader_message(options, &err)) {
383 LOG(ERROR) << "Failed to set BCB message: " << err;
384 }
Doug Zongker34c98df2009-08-18 12:05:45 -0700385}
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800386
Tao Baobef39712015-05-04 18:50:27 -0700387// Read from kernel log into buffer and write out to file.
388static void save_kernel_log(const char* destination) {
389 int klog_buf_len = klogctl(KLOG_SIZE_BUFFER, 0, 0);
Patrick Tjincd055ee2014-12-09 11:26:40 -0800390 if (klog_buf_len <= 0) {
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -0700391 PLOG(ERROR) << "Error getting klog size";
Patrick Tjincd055ee2014-12-09 11:26:40 -0800392 return;
393 }
394
Tao Baobef39712015-05-04 18:50:27 -0700395 std::string buffer(klog_buf_len, 0);
396 int n = klogctl(KLOG_READ_ALL, &buffer[0], klog_buf_len);
397 if (n == -1) {
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -0700398 PLOG(ERROR) << "Error in reading klog";
Patrick Tjincd055ee2014-12-09 11:26:40 -0800399 return;
400 }
Tao Baobef39712015-05-04 18:50:27 -0700401 buffer.resize(n);
402 android::base::WriteStringToFile(buffer, destination);
Patrick Tjincd055ee2014-12-09 11:26:40 -0800403}
404
Mark Salyzyna4f701a2016-03-09 14:58:16 -0800405// write content to the current pmsg session.
406static ssize_t __pmsg_write(const char *filename, const char *buf, size_t len) {
407 return __android_log_pmsg_file_write(LOG_ID_SYSTEM, ANDROID_LOG_INFO,
408 filename, buf, len);
409}
410
411static void copy_log_file_to_pmsg(const char* source, const char* destination) {
412 std::string content;
413 android::base::ReadFileToString(source, &content);
414 __pmsg_write(destination, content.c_str(), content.length());
415}
416
Tao Baof0124322015-04-11 02:04:11 +0000417// How much of the temp log we have copied to the copy in cache.
Chih-Hung Hsieh54a27472016-04-18 11:30:55 -0700418static off_t tmplog_offset = 0;
Tao Baof0124322015-04-11 02:04:11 +0000419
Tao Baobef39712015-05-04 18:50:27 -0700420static void copy_log_file(const char* source, const char* destination, bool append) {
Tianjie Xude6735e2017-07-10 15:13:33 -0700421 FILE* dest_fp = fopen_path(destination, append ? "ae" : "we");
422 if (dest_fp == nullptr) {
423 PLOG(ERROR) << "Can't open " << destination;
424 } else {
425 FILE* source_fp = fopen(source, "re");
426 if (source_fp != nullptr) {
427 if (append) {
428 fseeko(source_fp, tmplog_offset, SEEK_SET); // Since last write
429 }
430 char buf[4096];
431 size_t bytes;
432 while ((bytes = fread(buf, 1, sizeof(buf), source_fp)) != 0) {
433 fwrite(buf, 1, bytes, dest_fp);
434 }
435 if (append) {
436 tmplog_offset = ftello(source_fp);
437 }
438 check_and_fclose(source_fp, source);
Doug Zongker2c3539e2010-09-29 13:21:30 -0700439 }
Tianjie Xude6735e2017-07-10 15:13:33 -0700440 check_and_fclose(dest_fp, destination);
441 }
Doug Zongker2c3539e2010-09-29 13:21:30 -0700442}
443
Tao Bao682c34b2015-04-07 17:16:35 -0700444static void copy_logs() {
445 // We only rotate and record the log of the current session if there are
446 // actual attempts to modify the flash, such as wipes, installs from BCB
447 // or menu selections. This is to avoid unnecessary rotation (and
448 // possible deletion) of log files, if it does not do anything loggable.
449 if (!modified_flash) {
450 return;
451 }
452
Mark Salyzyna4f701a2016-03-09 14:58:16 -0800453 // Always write to pmsg, this allows the OTA logs to be caught in logcat -L
454 copy_log_file_to_pmsg(TEMPORARY_LOG_FILE, LAST_LOG_FILE);
455 copy_log_file_to_pmsg(TEMPORARY_INSTALL_FILE, LAST_INSTALL_FILE);
456
457 // We can do nothing for now if there's no /cache partition.
458 if (!has_cache) {
459 return;
460 }
461
Tianjie Xue113e4d2016-10-21 17:46:13 -0700462 ensure_path_mounted(LAST_LOG_FILE);
463 ensure_path_mounted(LAST_KMSG_FILE);
464 rotate_logs(LAST_LOG_FILE, LAST_KMSG_FILE);
Tao Bao682c34b2015-04-07 17:16:35 -0700465
Doug Zongkerf24fd7e2013-07-02 11:43:25 -0700466 // Copy logs to cache so the system can find out what happened.
Tao Baof0124322015-04-11 02:04:11 +0000467 copy_log_file(TEMPORARY_LOG_FILE, LOG_FILE, true);
468 copy_log_file(TEMPORARY_LOG_FILE, LAST_LOG_FILE, false);
469 copy_log_file(TEMPORARY_INSTALL_FILE, LAST_INSTALL_FILE, false);
470 save_kernel_log(LAST_KMSG_FILE);
Doug Zongkerf24fd7e2013-07-02 11:43:25 -0700471 chmod(LOG_FILE, 0600);
Tao Baoe1905ad2017-03-22 14:57:04 -0700472 chown(LOG_FILE, AID_SYSTEM, AID_SYSTEM);
Tao Baof0124322015-04-11 02:04:11 +0000473 chmod(LAST_KMSG_FILE, 0600);
Tao Baoe1905ad2017-03-22 14:57:04 -0700474 chown(LAST_KMSG_FILE, AID_SYSTEM, AID_SYSTEM);
Doug Zongkerf24fd7e2013-07-02 11:43:25 -0700475 chmod(LAST_LOG_FILE, 0640);
476 chmod(LAST_INSTALL_FILE, 0644);
477 sync();
478}
479
Tao Baoec579032017-07-21 12:13:15 -0700480// Clear the recovery command and prepare to boot a (hopefully working) system,
Tianjie Xuc14d95d2016-03-24 11:50:34 -0700481// copy our log file to cache as well (for the system to read). This function is
482// idempotent: call it as many times as you like.
Tao Baoac9d94d2016-11-03 11:37:15 -0700483static void finish_recovery() {
Tao Baoec579032017-07-21 12:13:15 -0700484 // Save the locale to cache, so if recovery is next started up without a '--locale' argument
485 // (e.g., directly from the bootloader) it will use the last-known locale.
486 if (!locale.empty() && has_cache) {
487 LOG(INFO) << "Saving locale \"" << locale << "\"";
488 if (ensure_path_mounted(LOCALE_FILE) != 0) {
489 LOG(ERROR) << "Failed to mount " << LOCALE_FILE;
490 } else if (!android::base::WriteStringToFile(locale, LOCALE_FILE)) {
491 PLOG(ERROR) << "Failed to save locale to " << LOCALE_FILE;
Doug Zongker4f33e552012-08-23 13:16:12 -0700492 }
Tao Baoec579032017-07-21 12:13:15 -0700493 }
Doug Zongker4f33e552012-08-23 13:16:12 -0700494
Tao Baoec579032017-07-21 12:13:15 -0700495 copy_logs();
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800496
Tao Baoec579032017-07-21 12:13:15 -0700497 // Reset to normal system boot so recovery won't cycle indefinitely.
498 std::string err;
499 if (!clear_bootloader_message(&err)) {
500 LOG(ERROR) << "Failed to clear BCB message: " << err;
501 }
502
503 // Remove the command file, so recovery won't repeat indefinitely.
504 if (has_cache) {
505 if (ensure_path_mounted(COMMAND_FILE) != 0 || (unlink(COMMAND_FILE) && errno != ENOENT)) {
506 LOG(WARNING) << "Can't unlink " << COMMAND_FILE;
Yabin Cui8b309f62016-06-24 18:22:02 -0700507 }
Tao Baoec579032017-07-21 12:13:15 -0700508 ensure_path_unmounted(CACHE_ROOT);
509 }
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800510
Tao Baoec579032017-07-21 12:13:15 -0700511 sync(); // For good measure.
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800512}
513
Tao Bao3f5a3822016-12-13 11:14:37 -0800514struct saved_log_file {
515 std::string name;
516 struct stat sb;
517 std::string data;
518};
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700519
Elliott Hughes945548e2015-06-05 17:59:56 -0700520static bool erase_volume(const char* volume) {
Tao Bao3f5a3822016-12-13 11:14:37 -0800521 bool is_cache = (strcmp(volume, CACHE_ROOT) == 0);
522 bool is_data = (strcmp(volume, DATA_ROOT) == 0);
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700523
Tao Bao3f5a3822016-12-13 11:14:37 -0800524 ui->SetBackground(RecoveryUI::ERASING);
525 ui->SetProgressType(RecoveryUI::INDETERMINATE);
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700526
Tao Bao3f5a3822016-12-13 11:14:37 -0800527 std::vector<saved_log_file> log_files;
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700528
Tao Bao3f5a3822016-12-13 11:14:37 -0800529 if (is_cache) {
530 // If we're reformatting /cache, we load any past logs
531 // (i.e. "/cache/recovery/last_*") and the current log
532 // ("/cache/recovery/log") into memory, so we can restore them after
533 // the reformat.
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700534
Tao Bao3f5a3822016-12-13 11:14:37 -0800535 ensure_path_mounted(volume);
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700536
Tao Bao3f5a3822016-12-13 11:14:37 -0800537 struct dirent* de;
538 std::unique_ptr<DIR, decltype(&closedir)> d(opendir(CACHE_LOG_DIR), closedir);
539 if (d) {
540 while ((de = readdir(d.get())) != nullptr) {
541 if (strncmp(de->d_name, "last_", 5) == 0 || strcmp(de->d_name, "log") == 0) {
542 std::string path = android::base::StringPrintf("%s/%s", CACHE_LOG_DIR, de->d_name);
543
544 struct stat sb;
545 if (stat(path.c_str(), &sb) == 0) {
546 // truncate files to 512kb
547 if (sb.st_size > (1 << 19)) {
548 sb.st_size = 1 << 19;
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700549 }
Tao Bao3f5a3822016-12-13 11:14:37 -0800550
551 std::string data(sb.st_size, '\0');
Tianjie Xude6735e2017-07-10 15:13:33 -0700552 FILE* f = fopen(path.c_str(), "rbe");
Tao Bao3f5a3822016-12-13 11:14:37 -0800553 fread(&data[0], 1, data.size(), f);
554 fclose(f);
555
556 log_files.emplace_back(saved_log_file{ path, sb, data });
557 }
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700558 }
Tao Bao3f5a3822016-12-13 11:14:37 -0800559 }
Paul Lawrenced0db3372015-11-05 13:38:40 -0800560 } else {
Tao Bao3f5a3822016-12-13 11:14:37 -0800561 if (errno != ENOENT) {
562 PLOG(ERROR) << "Failed to opendir " << CACHE_LOG_DIR;
563 }
Paul Lawrenced0db3372015-11-05 13:38:40 -0800564 }
Tao Bao3f5a3822016-12-13 11:14:37 -0800565 }
Doug Zongkerd0181b82011-10-19 10:51:12 -0700566
Tao Bao3f5a3822016-12-13 11:14:37 -0800567 ui->Print("Formatting %s...\n", volume);
568
569 ensure_path_unmounted(volume);
570
571 int result;
572
573 if (is_data && reason && strcmp(reason, "convert_fbe") == 0) {
574 // Create convert_fbe breadcrumb file to signal to init
575 // to convert to file based encryption, not full disk encryption
576 if (mkdir(CONVERT_FBE_DIR, 0700) != 0) {
577 ui->Print("Failed to make convert_fbe dir %s\n", strerror(errno));
578 return true;
579 }
Tianjie Xude6735e2017-07-10 15:13:33 -0700580 FILE* f = fopen(CONVERT_FBE_FILE, "wbe");
Tao Bao3f5a3822016-12-13 11:14:37 -0800581 if (!f) {
582 ui->Print("Failed to convert to file encryption %s\n", strerror(errno));
583 return true;
584 }
585 fclose(f);
586 result = format_volume(volume, CONVERT_FBE_DIR);
587 remove(CONVERT_FBE_FILE);
588 rmdir(CONVERT_FBE_DIR);
589 } else {
590 result = format_volume(volume);
591 }
592
593 if (is_cache) {
594 // Re-create the log dir and write back the log entries.
595 if (ensure_path_mounted(CACHE_LOG_DIR) == 0 &&
Tao Baoac3d1ed2017-07-23 00:01:02 -0700596 mkdir_recursively(CACHE_LOG_DIR, 0777, false, sehandle) == 0) {
Tao Bao3f5a3822016-12-13 11:14:37 -0800597 for (const auto& log : log_files) {
598 if (!android::base::WriteStringToFile(log.data, log.name, log.sb.st_mode, log.sb.st_uid,
599 log.sb.st_gid)) {
600 PLOG(ERROR) << "Failed to write to " << log.name;
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700601 }
Tao Bao3f5a3822016-12-13 11:14:37 -0800602 }
603 } else {
604 PLOG(ERROR) << "Failed to mount / create " << CACHE_LOG_DIR;
Doug Zongker2c3539e2010-09-29 13:21:30 -0700605 }
606
Tao Bao3f5a3822016-12-13 11:14:37 -0800607 // Any part of the log we'd copied to cache is now gone.
608 // Reset the pointer so we copy from the beginning of the temp
609 // log.
610 tmplog_offset = 0;
611 copy_logs();
612 }
613
614 return (result == 0);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800615}
616
Tao Baofc5499f2017-02-23 19:06:53 -0800617// Display a menu with the specified 'headers' and 'items'. Device specific HandleMenuKey() may
618// return a positive number beyond the given range. Caller sets 'menu_only' to true to ensure only
Tao Bao50dd5322017-03-07 14:57:04 -0800619// a menu item gets selected. 'initial_selection' controls the initial cursor location. Returns the
620// (non-negative) chosen item number, or -1 if timed out waiting for input.
Tao Baofc5499f2017-02-23 19:06:53 -0800621static int get_menu_selection(const char* const* headers, const char* const* items, bool menu_only,
622 int initial_selection, Device* device) {
623 // Throw away keys pressed previously, so user doesn't accidentally trigger menu items.
624 ui->FlushKeys();
Doug Zongkerf93d8162009-09-22 15:16:02 -0700625
Tao Baofc5499f2017-02-23 19:06:53 -0800626 ui->StartMenu(headers, items, initial_selection);
Tao Bao50dd5322017-03-07 14:57:04 -0800627
Tao Baofc5499f2017-02-23 19:06:53 -0800628 int selected = initial_selection;
629 int chosen_item = -1;
Tao Baofc5499f2017-02-23 19:06:53 -0800630 while (chosen_item < 0) {
631 int key = ui->WaitKey();
Tao Bao50dd5322017-03-07 14:57:04 -0800632 if (key == -1) { // WaitKey() timed out.
Tao Baofc5499f2017-02-23 19:06:53 -0800633 if (ui->WasTextEverVisible()) {
634 continue;
635 } else {
Tao Bao50dd5322017-03-07 14:57:04 -0800636 LOG(INFO) << "Timed out waiting for key input; rebooting.";
Tao Baofc5499f2017-02-23 19:06:53 -0800637 ui->EndMenu();
Tao Bao50dd5322017-03-07 14:57:04 -0800638 return -1;
Tao Baofc5499f2017-02-23 19:06:53 -0800639 }
Doug Zongkerf93d8162009-09-22 15:16:02 -0700640 }
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800641
Tao Baofc5499f2017-02-23 19:06:53 -0800642 bool visible = ui->IsTextVisible();
643 int action = device->HandleMenuKey(key, visible);
644
645 if (action < 0) {
646 switch (action) {
647 case Device::kHighlightUp:
648 selected = ui->SelectMenu(--selected);
649 break;
650 case Device::kHighlightDown:
651 selected = ui->SelectMenu(++selected);
652 break;
653 case Device::kInvokeItem:
654 chosen_item = selected;
655 break;
656 case Device::kNoAction:
657 break;
658 }
659 } else if (!menu_only) {
660 chosen_item = action;
661 }
662 }
663
664 ui->EndMenu();
665 return chosen_item;
Doug Zongkerf93d8162009-09-22 15:16:02 -0700666}
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800667
Tao Baoc4a18ef2017-02-10 00:13:30 -0800668// Returns the selected filename, or an empty string.
669static std::string browse_directory(const std::string& path, Device* device) {
670 ensure_path_mounted(path.c_str());
Doug Zongker8674a722010-09-15 11:08:23 -0700671
Tao Baoc4a18ef2017-02-10 00:13:30 -0800672 std::unique_ptr<DIR, decltype(&closedir)> d(opendir(path.c_str()), closedir);
673 if (!d) {
674 PLOG(ERROR) << "error opening " << path;
675 return "";
676 }
Doug Zongkerc18eeb82010-09-21 16:49:26 -0700677
Tao Baoc4a18ef2017-02-10 00:13:30 -0800678 std::vector<std::string> dirs;
679 std::vector<std::string> zips = { "../" }; // "../" is always the first entry.
680
681 dirent* de;
682 while ((de = readdir(d.get())) != nullptr) {
683 std::string name(de->d_name);
684
685 if (de->d_type == DT_DIR) {
686 // Skip "." and ".." entries.
687 if (name == "." || name == "..") continue;
688 dirs.push_back(name + "/");
689 } else if (de->d_type == DT_REG && android::base::EndsWithIgnoreCase(name, ".zip")) {
690 zips.push_back(name);
691 }
692 }
693
694 std::sort(dirs.begin(), dirs.end());
695 std::sort(zips.begin(), zips.end());
696
697 // Append dirs to the zips list.
698 zips.insert(zips.end(), dirs.begin(), dirs.end());
699
700 const char* entries[zips.size() + 1];
701 entries[zips.size()] = nullptr;
702 for (size_t i = 0; i < zips.size(); i++) {
703 entries[i] = zips[i].c_str();
704 }
705
706 const char* headers[] = { "Choose a package to install:", path.c_str(), nullptr };
707
708 int chosen_item = 0;
709 while (true) {
Tao Baofc5499f2017-02-23 19:06:53 -0800710 chosen_item = get_menu_selection(headers, entries, true, chosen_item, device);
Tao Baoc4a18ef2017-02-10 00:13:30 -0800711
712 const std::string& item = zips[chosen_item];
713 if (chosen_item == 0) {
714 // Go up but continue browsing (if the caller is browse_directory).
715 return "";
Doug Zongker8674a722010-09-15 11:08:23 -0700716 }
717
Tao Baoc4a18ef2017-02-10 00:13:30 -0800718 std::string new_path = path + "/" + item;
719 if (new_path.back() == '/') {
720 // Recurse down into a subdirectory.
721 new_path.pop_back();
722 std::string result = browse_directory(new_path, device);
723 if (!result.empty()) return result;
724 } else {
725 // Selected a zip file: return the path to the caller.
726 return new_path;
Doug Zongker8674a722010-09-15 11:08:23 -0700727 }
Tao Baoc4a18ef2017-02-10 00:13:30 -0800728 }
Doug Zongker8674a722010-09-15 11:08:23 -0700729
Tao Baoc4a18ef2017-02-10 00:13:30 -0800730 // Unreachable.
Doug Zongker8674a722010-09-15 11:08:23 -0700731}
732
Elliott Hughes30694c92015-03-25 15:16:51 -0700733static bool yes_no(Device* device, const char* question1, const char* question2) {
Elliott Hughes8fd86d72015-04-13 14:36:02 -0700734 const char* headers[] = { question1, question2, NULL };
Elliott Hughes30694c92015-03-25 15:16:51 -0700735 const char* items[] = { " No", " Yes", NULL };
Doug Zongkerddd6a282009-06-09 12:22:33 -0700736
Tao Baofc5499f2017-02-23 19:06:53 -0800737 int chosen_item = get_menu_selection(headers, items, true, 0, device);
Elliott Hughes30694c92015-03-25 15:16:51 -0700738 return (chosen_item == 1);
739}
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800740
Paul Crowley08404b42016-12-19 13:04:23 -0800741static bool ask_to_wipe_data(Device* device) {
742 return yes_no(device, "Wipe all user data?", " THIS CAN NOT BE UNDONE!");
743}
Doug Zongker1066d2c2009-04-01 13:57:40 -0700744
Paul Crowley08404b42016-12-19 13:04:23 -0800745// Return true on success.
746static bool wipe_data(Device* device) {
Tao Bao682c34b2015-04-07 17:16:35 -0700747 modified_flash = true;
748
Doug Zongker211aebc2011-10-28 15:13:10 -0700749 ui->Print("\n-- Wiping data...\n");
Elliott Hughes945548e2015-06-05 17:59:56 -0700750 bool success =
751 device->PreWipeData() &&
752 erase_volume("/data") &&
Tao Bao26112e52016-02-25 12:29:40 -0800753 (has_cache ? erase_volume("/cache") : true) &&
Elliott Hughes945548e2015-06-05 17:59:56 -0700754 device->PostWipeData();
755 ui->Print("Data wipe %s.\n", success ? "complete" : "failed");
756 return success;
Doug Zongkerf93d8162009-09-22 15:16:02 -0700757}
758
Paul Crowley08404b42016-12-19 13:04:23 -0800759static bool prompt_and_wipe_data(Device* device) {
Tao Bao2bbc6d62017-08-13 23:48:55 -0700760 // Use a single string and let ScreenRecoveryUI handles the wrapping.
Tao Baofc5499f2017-02-23 19:06:53 -0800761 const char* const headers[] = {
Tao Bao2bbc6d62017-08-13 23:48:55 -0700762 "Can't load Android system. Your data may be corrupt. "
763 "If you continue to get this message, you may need to "
764 "perform a factory data reset and erase all user data "
Paul Crowley31ac0c62017-03-23 12:32:40 -0700765 "stored on this device.",
Tao Bao2bbc6d62017-08-13 23:48:55 -0700766 nullptr
Tao Baofc5499f2017-02-23 19:06:53 -0800767 };
768 const char* const items[] = {
Paul Crowley31ac0c62017-03-23 12:32:40 -0700769 "Try again",
770 "Factory data reset",
Tao Baofc5499f2017-02-23 19:06:53 -0800771 NULL
772 };
773 for (;;) {
774 int chosen_item = get_menu_selection(headers, items, true, 0, device);
775 if (chosen_item != 1) {
776 return true; // Just reboot, no wipe; not a failure, user asked for it
Paul Crowley08404b42016-12-19 13:04:23 -0800777 }
Tao Baofc5499f2017-02-23 19:06:53 -0800778 if (ask_to_wipe_data(device)) {
779 return wipe_data(device);
780 }
781 }
Paul Crowley08404b42016-12-19 13:04:23 -0800782}
783
Tao Baoe39a9bc2015-03-31 12:19:05 -0700784// Return true on success.
785static bool wipe_cache(bool should_confirm, Device* device) {
Tao Bao26112e52016-02-25 12:29:40 -0800786 if (!has_cache) {
787 ui->Print("No /cache partition found.\n");
788 return false;
789 }
790
Elliott Hughes30694c92015-03-25 15:16:51 -0700791 if (should_confirm && !yes_no(device, "Wipe cache?", " THIS CAN NOT BE UNDONE!")) {
Tao Baoe39a9bc2015-03-31 12:19:05 -0700792 return false;
Elliott Hughes30694c92015-03-25 15:16:51 -0700793 }
794
Tao Bao682c34b2015-04-07 17:16:35 -0700795 modified_flash = true;
796
Elliott Hughes30694c92015-03-25 15:16:51 -0700797 ui->Print("\n-- Wiping cache...\n");
Elliott Hughes945548e2015-06-05 17:59:56 -0700798 bool success = erase_volume("/cache");
799 ui->Print("Cache wipe %s.\n", success ? "complete" : "failed");
800 return success;
Elliott Hughes30694c92015-03-25 15:16:51 -0700801}
802
Tao Bao1b2a98b2017-03-24 10:45:34 -0700803// Secure-wipe a given partition. It uses BLKSECDISCARD, if supported. Otherwise, it goes with
804// BLKDISCARD (if device supports BLKDISCARDZEROES) or BLKZEROOUT.
Tao Bao862a4c12016-06-02 11:16:50 -0700805static bool secure_wipe_partition(const std::string& partition) {
Tao Bao1b2a98b2017-03-24 10:45:34 -0700806 android::base::unique_fd fd(TEMP_FAILURE_RETRY(open(partition.c_str(), O_WRONLY)));
807 if (fd == -1) {
808 PLOG(ERROR) << "Failed to open \"" << partition << "\"";
809 return false;
810 }
811
812 uint64_t range[2] = { 0, 0 };
813 if (ioctl(fd, BLKGETSIZE64, &range[1]) == -1 || range[1] == 0) {
814 PLOG(ERROR) << "Failed to get partition size";
815 return false;
816 }
817 LOG(INFO) << "Secure-wiping \"" << partition << "\" from " << range[0] << " to " << range[1];
818
819 LOG(INFO) << " Trying BLKSECDISCARD...";
820 if (ioctl(fd, BLKSECDISCARD, &range) == -1) {
821 PLOG(WARNING) << " Failed";
822
823 // Use BLKDISCARD if it zeroes out blocks, otherwise use BLKZEROOUT.
824 unsigned int zeroes;
825 if (ioctl(fd, BLKDISCARDZEROES, &zeroes) == 0 && zeroes != 0) {
826 LOG(INFO) << " Trying BLKDISCARD...";
827 if (ioctl(fd, BLKDISCARD, &range) == -1) {
828 PLOG(ERROR) << " Failed";
Tao Bao862a4c12016-06-02 11:16:50 -0700829 return false;
Tao Bao1b2a98b2017-03-24 10:45:34 -0700830 }
831 } else {
832 LOG(INFO) << " Trying BLKZEROOUT...";
833 if (ioctl(fd, BLKZEROOUT, &range) == -1) {
834 PLOG(ERROR) << " Failed";
Tao Bao862a4c12016-06-02 11:16:50 -0700835 return false;
Tao Bao1b2a98b2017-03-24 10:45:34 -0700836 }
Tao Bao862a4c12016-06-02 11:16:50 -0700837 }
Tao Bao1b2a98b2017-03-24 10:45:34 -0700838 }
Tao Bao862a4c12016-06-02 11:16:50 -0700839
Tao Bao1b2a98b2017-03-24 10:45:34 -0700840 LOG(INFO) << " Done";
841 return true;
Tao Bao862a4c12016-06-02 11:16:50 -0700842}
843
Yabin Cuifd99a312016-06-09 14:09:39 -0700844// Check if the wipe package matches expectation:
845// 1. verify the package.
846// 2. check metadata (ota-type, pre-device and serial number if having one).
847static bool check_wipe_package(size_t wipe_package_size) {
848 if (wipe_package_size == 0) {
849 LOG(ERROR) << "wipe_package_size is zero";
850 return false;
851 }
852 std::string wipe_package;
853 std::string err_str;
854 if (!read_wipe_package(&wipe_package, wipe_package_size, &err_str)) {
855 PLOG(ERROR) << "Failed to read wipe package";
856 return false;
857 }
858 if (!verify_package(reinterpret_cast<const unsigned char*>(wipe_package.data()),
859 wipe_package.size())) {
860 LOG(ERROR) << "Failed to verify package";
861 return false;
862 }
863
864 // Extract metadata
865 ZipArchiveHandle zip;
Tao Baoefc35592017-01-08 22:45:47 -0800866 int err = OpenArchiveFromMemory(static_cast<void*>(&wipe_package[0]), wipe_package.size(),
867 "wipe_package", &zip);
Yabin Cuifd99a312016-06-09 14:09:39 -0700868 if (err != 0) {
869 LOG(ERROR) << "Can't open wipe package : " << ErrorCodeString(err);
870 return false;
871 }
872 std::string metadata;
Tao Bao1b2a98b2017-03-24 10:45:34 -0700873 if (!read_metadata_from_package(zip, &metadata)) {
Yabin Cuifd99a312016-06-09 14:09:39 -0700874 CloseArchive(zip);
875 return false;
876 }
877 CloseArchive(zip);
878
879 // Check metadata
880 std::vector<std::string> lines = android::base::Split(metadata, "\n");
881 bool ota_type_matched = false;
882 bool device_type_matched = false;
883 bool has_serial_number = false;
884 bool serial_number_matched = false;
885 for (const auto& line : lines) {
886 if (line == "ota-type=BRICK") {
887 ota_type_matched = true;
888 } else if (android::base::StartsWith(line, "pre-device=")) {
889 std::string device_type = line.substr(strlen("pre-device="));
Tao Baoefc35592017-01-08 22:45:47 -0800890 std::string real_device_type = android::base::GetProperty("ro.build.product", "");
Yabin Cuifd99a312016-06-09 14:09:39 -0700891 device_type_matched = (device_type == real_device_type);
892 } else if (android::base::StartsWith(line, "serialno=")) {
893 std::string serial_no = line.substr(strlen("serialno="));
Tao Baoefc35592017-01-08 22:45:47 -0800894 std::string real_serial_no = android::base::GetProperty("ro.serialno", "");
Yabin Cuifd99a312016-06-09 14:09:39 -0700895 has_serial_number = true;
896 serial_number_matched = (serial_no == real_serial_no);
897 }
898 }
899 return ota_type_matched && device_type_matched && (!has_serial_number || serial_number_matched);
900}
901
Yabin Cui8b309f62016-06-24 18:22:02 -0700902// Wipe the current A/B device, with a secure wipe of all the partitions in
903// RECOVERY_WIPE.
Yabin Cuifd99a312016-06-09 14:09:39 -0700904static bool wipe_ab_device(size_t wipe_package_size) {
Tao Bao862a4c12016-06-02 11:16:50 -0700905 ui->SetBackground(RecoveryUI::ERASING);
906 ui->SetProgressType(RecoveryUI::INDETERMINATE);
907
Yabin Cuifd99a312016-06-09 14:09:39 -0700908 if (!check_wipe_package(wipe_package_size)) {
909 LOG(ERROR) << "Failed to verify wipe package";
910 return false;
911 }
Tao Bao862a4c12016-06-02 11:16:50 -0700912 std::string partition_list;
Yabin Cui8b309f62016-06-24 18:22:02 -0700913 if (!android::base::ReadFileToString(RECOVERY_WIPE, &partition_list)) {
914 LOG(ERROR) << "failed to read \"" << RECOVERY_WIPE << "\"";
Tao Bao862a4c12016-06-02 11:16:50 -0700915 return false;
916 }
917
918 std::vector<std::string> lines = android::base::Split(partition_list, "\n");
919 for (const std::string& line : lines) {
920 std::string partition = android::base::Trim(line);
921 // Ignore '#' comment or empty lines.
922 if (android::base::StartsWith(partition, "#") || partition.empty()) {
923 continue;
924 }
925
926 // Proceed anyway even if it fails to wipe some partition.
927 secure_wipe_partition(partition);
928 }
929 return true;
930}
931
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700932static void choose_recovery_file(Device* device) {
Tao Bao08fc6be2017-03-07 00:56:27 -0800933 std::vector<std::string> entries;
934 if (has_cache) {
935 for (int i = 0; i < KEEP_LOG_COUNT; i++) {
936 auto add_to_entries = [&](const char* filename) {
937 std::string log_file(filename);
938 if (i > 0) {
939 log_file += "." + std::to_string(i);
Tao Baobef39712015-05-04 18:50:27 -0700940 }
Tao Bao08fc6be2017-03-07 00:56:27 -0800941
942 if (ensure_path_mounted(log_file.c_str()) == 0 && access(log_file.c_str(), R_OK) == 0) {
943 entries.push_back(std::move(log_file));
944 }
945 };
946
947 // Add LAST_LOG_FILE + LAST_LOG_FILE.x
948 add_to_entries(LAST_LOG_FILE);
949
950 // Add LAST_KMSG_FILE + LAST_KMSG_FILE.x
951 add_to_entries(LAST_KMSG_FILE);
952 }
953 } else {
954 // If cache partition is not found, view /tmp/recovery.log instead.
955 if (access(TEMPORARY_LOG_FILE, R_OK) == -1) {
956 return;
Tianjie Xua54f75e2016-08-17 12:02:46 -0700957 } else {
Tao Bao08fc6be2017-03-07 00:56:27 -0800958 entries.push_back(TEMPORARY_LOG_FILE);
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700959 }
Tao Bao08fc6be2017-03-07 00:56:27 -0800960 }
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700961
Tao Bao08fc6be2017-03-07 00:56:27 -0800962 entries.push_back("Back");
Elliott Hughesc0491632015-05-06 12:40:05 -0700963
Tao Bao08fc6be2017-03-07 00:56:27 -0800964 std::vector<const char*> menu_entries(entries.size());
965 std::transform(entries.cbegin(), entries.cend(), menu_entries.begin(),
966 [](const std::string& entry) { return entry.c_str(); });
967 menu_entries.push_back(nullptr);
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700968
Tao Bao08fc6be2017-03-07 00:56:27 -0800969 const char* headers[] = { "Select file to view", nullptr };
Elliott Hughes8de52072015-04-08 20:06:50 -0700970
Tao Bao08fc6be2017-03-07 00:56:27 -0800971 int chosen_item = 0;
972 while (true) {
Tao Baofc5499f2017-02-23 19:06:53 -0800973 chosen_item = get_menu_selection(headers, menu_entries.data(), true, chosen_item, device);
Tao Bao08fc6be2017-03-07 00:56:27 -0800974 if (entries[chosen_item] == "Back") break;
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700975
Tao Bao08fc6be2017-03-07 00:56:27 -0800976 ui->ShowFile(entries[chosen_item].c_str());
977 }
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700978}
979
Tao Baodb7e8982017-03-06 23:53:16 -0800980static void run_graphics_test() {
981 // Switch to graphics screen.
982 ui->ShowText(false);
Elliott Hughes498cda62016-04-14 16:49:04 -0700983
Tao Baodb7e8982017-03-06 23:53:16 -0800984 ui->SetProgressType(RecoveryUI::INDETERMINATE);
985 ui->SetBackground(RecoveryUI::INSTALLING_UPDATE);
986 sleep(1);
Elliott Hughes498cda62016-04-14 16:49:04 -0700987
Tao Baodb7e8982017-03-06 23:53:16 -0800988 ui->SetBackground(RecoveryUI::ERROR);
989 sleep(1);
Elliott Hughes498cda62016-04-14 16:49:04 -0700990
Tao Baodb7e8982017-03-06 23:53:16 -0800991 ui->SetBackground(RecoveryUI::NO_COMMAND);
992 sleep(1);
Elliott Hughes498cda62016-04-14 16:49:04 -0700993
Tao Baodb7e8982017-03-06 23:53:16 -0800994 ui->SetBackground(RecoveryUI::ERASING);
995 sleep(1);
Elliott Hughes498cda62016-04-14 16:49:04 -0700996
Tao Baodb7e8982017-03-06 23:53:16 -0800997 // Calling SetBackground() after SetStage() to trigger a redraw.
998 ui->SetStage(1, 3);
999 ui->SetBackground(RecoveryUI::INSTALLING_UPDATE);
1000 sleep(1);
1001 ui->SetStage(2, 3);
1002 ui->SetBackground(RecoveryUI::INSTALLING_UPDATE);
1003 sleep(1);
1004 ui->SetStage(3, 3);
1005 ui->SetBackground(RecoveryUI::INSTALLING_UPDATE);
1006 sleep(1);
Elliott Hughes498cda62016-04-14 16:49:04 -07001007
Tao Baodb7e8982017-03-06 23:53:16 -08001008 ui->SetStage(-1, -1);
1009 ui->SetBackground(RecoveryUI::INSTALLING_UPDATE);
Elliott Hughes498cda62016-04-14 16:49:04 -07001010
Tao Baodb7e8982017-03-06 23:53:16 -08001011 ui->SetProgressType(RecoveryUI::DETERMINATE);
1012 ui->ShowProgress(1.0, 10.0);
1013 float fraction = 0.0;
1014 for (size_t i = 0; i < 100; ++i) {
1015 fraction += .01;
1016 ui->SetProgress(fraction);
1017 usleep(100000);
1018 }
1019
1020 ui->ShowText(true);
Elliott Hughes498cda62016-04-14 16:49:04 -07001021}
1022
Tao Baocdcf28f2016-01-13 15:05:20 -08001023// How long (in seconds) we wait for the fuse-provided package file to
1024// appear, before timing out.
1025#define SDCARD_INSTALL_TIMEOUT 10
1026
Tao Bao145d8612015-03-25 15:51:15 -07001027static int apply_from_sdcard(Device* device, bool* wipe_cache) {
Tao Bao682c34b2015-04-07 17:16:35 -07001028 modified_flash = true;
1029
Christian Poetzsch4ec58a42015-02-19 10:42:39 +00001030 if (ensure_path_mounted(SDCARD_ROOT) != 0) {
1031 ui->Print("\n-- Couldn't mount %s.\n", SDCARD_ROOT);
1032 return INSTALL_ERROR;
1033 }
1034
Tao Baoc4a18ef2017-02-10 00:13:30 -08001035 std::string path = browse_directory(SDCARD_ROOT, device);
1036 if (path.empty()) {
Elliott Hughes018ed312015-04-08 16:51:36 -07001037 ui->Print("\n-- No package file selected.\n");
caozhiyuanb4effb92015-06-10 16:46:38 +08001038 ensure_path_unmounted(SDCARD_ROOT);
Christian Poetzsch4ec58a42015-02-19 10:42:39 +00001039 return INSTALL_ERROR;
1040 }
1041
Tao Baoc4a18ef2017-02-10 00:13:30 -08001042 ui->Print("\n-- Install %s ...\n", path.c_str());
Christian Poetzsch4ec58a42015-02-19 10:42:39 +00001043 set_sdcard_update_bootloader_message();
Christian Poetzsch4ec58a42015-02-19 10:42:39 +00001044
Tao Baocdcf28f2016-01-13 15:05:20 -08001045 // We used to use fuse in a thread as opposed to a process. Since accessing
1046 // through fuse involves going from kernel to userspace to kernel, it leads
1047 // to deadlock when a page fault occurs. (Bug: 26313124)
1048 pid_t child;
1049 if ((child = fork()) == 0) {
Tao Baoc4a18ef2017-02-10 00:13:30 -08001050 bool status = start_sdcard_fuse(path.c_str());
Tao Baocdcf28f2016-01-13 15:05:20 -08001051
1052 _exit(status ? EXIT_SUCCESS : EXIT_FAILURE);
1053 }
1054
1055 // FUSE_SIDELOAD_HOST_PATHNAME will start to exist once the fuse in child
1056 // process is ready.
1057 int result = INSTALL_ERROR;
1058 int status;
1059 bool waited = false;
1060 for (int i = 0; i < SDCARD_INSTALL_TIMEOUT; ++i) {
1061 if (waitpid(child, &status, WNOHANG) == -1) {
1062 result = INSTALL_ERROR;
1063 waited = true;
1064 break;
1065 }
1066
1067 struct stat sb;
1068 if (stat(FUSE_SIDELOAD_HOST_PATHNAME, &sb) == -1) {
1069 if (errno == ENOENT && i < SDCARD_INSTALL_TIMEOUT-1) {
1070 sleep(1);
1071 continue;
1072 } else {
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -07001073 LOG(ERROR) << "Timed out waiting for the fuse-provided package.";
Tao Baocdcf28f2016-01-13 15:05:20 -08001074 result = INSTALL_ERROR;
1075 kill(child, SIGKILL);
1076 break;
1077 }
1078 }
1079
1080 result = install_package(FUSE_SIDELOAD_HOST_PATHNAME, wipe_cache,
Tianjie Xu16255832016-04-30 11:49:59 -07001081 TEMPORARY_INSTALL_FILE, false, 0/*retry_count*/);
Tao Baocdcf28f2016-01-13 15:05:20 -08001082 break;
1083 }
Christian Poetzsch4ec58a42015-02-19 10:42:39 +00001084
Tao Baocdcf28f2016-01-13 15:05:20 -08001085 if (!waited) {
1086 // Calling stat() on this magic filename signals the fuse
1087 // filesystem to shut down.
1088 struct stat sb;
1089 stat(FUSE_SIDELOAD_HOST_EXIT_PATHNAME, &sb);
1090
1091 waitpid(child, &status, 0);
1092 }
1093
1094 if (!WIFEXITED(status) || WEXITSTATUS(status) != 0) {
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -07001095 LOG(ERROR) << "Error exit from the fuse process: " << WEXITSTATUS(status);
Tao Baocdcf28f2016-01-13 15:05:20 -08001096 }
1097
Christian Poetzsch4ec58a42015-02-19 10:42:39 +00001098 ensure_path_unmounted(SDCARD_ROOT);
Tao Baocdcf28f2016-01-13 15:05:20 -08001099 return result;
Christian Poetzsch4ec58a42015-02-19 10:42:39 +00001100}
1101
Tao Bao50dd5322017-03-07 14:57:04 -08001102// Returns REBOOT, SHUTDOWN, or REBOOT_BOOTLOADER. Returning NO_ACTION means to take the default,
1103// which is to reboot or shutdown depending on if the --shutdown_after flag was passed to recovery.
1104static Device::BuiltinAction prompt_and_wait(Device* device, int status) {
1105 for (;;) {
1106 finish_recovery();
1107 switch (status) {
1108 case INSTALL_SUCCESS:
1109 case INSTALL_NONE:
1110 ui->SetBackground(RecoveryUI::NO_COMMAND);
1111 break;
Doug Zongker6c8553d2012-09-24 10:40:47 -07001112
Tao Bao50dd5322017-03-07 14:57:04 -08001113 case INSTALL_ERROR:
1114 case INSTALL_CORRUPT:
1115 ui->SetBackground(RecoveryUI::ERROR);
1116 break;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001117 }
Tao Bao50dd5322017-03-07 14:57:04 -08001118 ui->SetProgressType(RecoveryUI::EMPTY);
1119
1120 int chosen_item = get_menu_selection(nullptr, device->GetMenuItems(), false, 0, device);
1121
1122 // Device-specific code may take some action here. It may return one of the core actions
1123 // handled in the switch statement below.
1124 Device::BuiltinAction chosen_action =
1125 (chosen_item == -1) ? Device::REBOOT : device->InvokeMenuItem(chosen_item);
1126
1127 bool should_wipe_cache = false;
1128 switch (chosen_action) {
1129 case Device::NO_ACTION:
1130 break;
1131
1132 case Device::REBOOT:
1133 case Device::SHUTDOWN:
1134 case Device::REBOOT_BOOTLOADER:
1135 return chosen_action;
1136
1137 case Device::WIPE_DATA:
1138 if (ui->IsTextVisible()) {
1139 if (ask_to_wipe_data(device)) {
1140 wipe_data(device);
1141 }
1142 } else {
1143 wipe_data(device);
1144 return Device::NO_ACTION;
1145 }
1146 break;
1147
1148 case Device::WIPE_CACHE:
1149 wipe_cache(ui->IsTextVisible(), device);
1150 if (!ui->IsTextVisible()) return Device::NO_ACTION;
1151 break;
1152
1153 case Device::APPLY_ADB_SIDELOAD:
1154 case Device::APPLY_SDCARD:
1155 {
1156 bool adb = (chosen_action == Device::APPLY_ADB_SIDELOAD);
1157 if (adb) {
Tao Bao0150d012017-05-01 11:31:28 -07001158 status = apply_from_adb(&should_wipe_cache, TEMPORARY_INSTALL_FILE);
Tao Bao50dd5322017-03-07 14:57:04 -08001159 } else {
1160 status = apply_from_sdcard(device, &should_wipe_cache);
1161 }
1162
1163 if (status == INSTALL_SUCCESS && should_wipe_cache) {
1164 if (!wipe_cache(false, device)) {
1165 status = INSTALL_ERROR;
1166 }
1167 }
1168
1169 if (status != INSTALL_SUCCESS) {
1170 ui->SetBackground(RecoveryUI::ERROR);
1171 ui->Print("Installation aborted.\n");
1172 copy_logs();
1173 } else if (!ui->IsTextVisible()) {
1174 return Device::NO_ACTION; // reboot if logs aren't visible
1175 } else {
1176 ui->Print("\nInstall from %s complete.\n", adb ? "ADB" : "SD card");
1177 }
1178 }
1179 break;
1180
1181 case Device::VIEW_RECOVERY_LOGS:
1182 choose_recovery_file(device);
1183 break;
1184
1185 case Device::RUN_GRAPHICS_TEST:
1186 run_graphics_test();
1187 break;
1188
1189 case Device::MOUNT_SYSTEM:
1190 // For a system image built with the root directory (i.e. system_root_image == "true"), we
1191 // mount it to /system_root, and symlink /system to /system_root/system to make adb shell
1192 // work (the symlink is created through the build system). (Bug: 22855115)
1193 if (android::base::GetBoolProperty("ro.build.system_root_image", false)) {
1194 if (ensure_path_mounted_at("/", "/system_root") != -1) {
1195 ui->Print("Mounted /system.\n");
1196 }
1197 } else {
1198 if (ensure_path_mounted("/system") != -1) {
1199 ui->Print("Mounted /system.\n");
1200 }
1201 }
1202 break;
1203 }
1204 }
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001205}
1206
1207static void
Oscar Montemayor05231562009-11-30 08:40:57 -08001208print_property(const char *key, const char *name, void *cookie) {
Doug Zongker56c51052010-07-01 09:18:44 -07001209 printf("%s=%s\n", key, name);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001210}
1211
Tao Baoac9d94d2016-11-03 11:37:15 -07001212static std::string load_locale_from_cache() {
1213 if (ensure_path_mounted(LOCALE_FILE) != 0) {
1214 LOG(ERROR) << "Can't mount " << LOCALE_FILE;
1215 return "";
Doug Zongker02ec6b82012-08-22 17:26:40 -07001216 }
Tao Baoac9d94d2016-11-03 11:37:15 -07001217
1218 std::string content;
1219 if (!android::base::ReadFileToString(LOCALE_FILE, &content)) {
1220 PLOG(ERROR) << "Can't read " << LOCALE_FILE;
1221 return "";
1222 }
1223
1224 return android::base::Trim(content);
Doug Zongker02ec6b82012-08-22 17:26:40 -07001225}
1226
Tao Baoac9d94d2016-11-03 11:37:15 -07001227void ui_print(const char* format, ...) {
1228 std::string buffer;
Doug Zongker7c3ae452013-05-14 11:03:02 -07001229 va_list ap;
1230 va_start(ap, format);
Tao Baoac9d94d2016-11-03 11:37:15 -07001231 android::base::StringAppendV(&buffer, format, ap);
Doug Zongker7c3ae452013-05-14 11:03:02 -07001232 va_end(ap);
1233
Tao Baoac9d94d2016-11-03 11:37:15 -07001234 if (ui != nullptr) {
1235 ui->Print("%s", buffer.c_str());
Doug Zongker7c3ae452013-05-14 11:03:02 -07001236 } else {
Tao Baoac9d94d2016-11-03 11:37:15 -07001237 fputs(buffer.c_str(), stdout);
Doug Zongker7c3ae452013-05-14 11:03:02 -07001238 }
1239}
1240
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -07001241static constexpr char log_characters[] = "VDIWEF";
1242
1243void UiLogger(android::base::LogId id, android::base::LogSeverity severity,
1244 const char* tag, const char* file, unsigned int line,
1245 const char* message) {
Tao Baoac9d94d2016-11-03 11:37:15 -07001246 if (severity >= android::base::ERROR && ui != nullptr) {
1247 ui->Print("E:%s\n", message);
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -07001248 } else {
1249 fprintf(stdout, "%c:%s\n", log_characters[severity], message);
1250 }
1251}
1252
Yabin Cui99281df2016-02-17 12:21:52 -08001253static bool is_battery_ok() {
1254 struct healthd_config healthd_config = {
1255 .batteryStatusPath = android::String8(android::String8::kEmptyString),
1256 .batteryHealthPath = android::String8(android::String8::kEmptyString),
1257 .batteryPresentPath = android::String8(android::String8::kEmptyString),
1258 .batteryCapacityPath = android::String8(android::String8::kEmptyString),
1259 .batteryVoltagePath = android::String8(android::String8::kEmptyString),
1260 .batteryTemperaturePath = android::String8(android::String8::kEmptyString),
1261 .batteryTechnologyPath = android::String8(android::String8::kEmptyString),
1262 .batteryCurrentNowPath = android::String8(android::String8::kEmptyString),
1263 .batteryCurrentAvgPath = android::String8(android::String8::kEmptyString),
1264 .batteryChargeCounterPath = android::String8(android::String8::kEmptyString),
1265 .batteryFullChargePath = android::String8(android::String8::kEmptyString),
1266 .batteryCycleCountPath = android::String8(android::String8::kEmptyString),
1267 .energyCounter = NULL,
1268 .boot_min_cap = 0,
1269 .screen_on = NULL
1270 };
1271 healthd_board_init(&healthd_config);
1272
1273 android::BatteryMonitor monitor;
1274 monitor.init(&healthd_config);
1275
1276 int wait_second = 0;
1277 while (true) {
1278 int charge_status = monitor.getChargeStatus();
1279 // Treat unknown status as charged.
1280 bool charged = (charge_status != android::BATTERY_STATUS_DISCHARGING &&
1281 charge_status != android::BATTERY_STATUS_NOT_CHARGING);
1282 android::BatteryProperty capacity;
1283 android::status_t status = monitor.getProperty(android::BATTERY_PROP_CAPACITY, &capacity);
1284 ui_print("charge_status %d, charged %d, status %d, capacity %lld\n", charge_status,
1285 charged, status, capacity.valueInt64);
1286 // At startup, the battery drivers in devices like N5X/N6P take some time to load
1287 // the battery profile. Before the load finishes, it reports value 50 as a fake
1288 // capacity. BATTERY_READ_TIMEOUT_IN_SEC is set that the battery drivers are expected
1289 // to finish loading the battery profile earlier than 10 seconds after kernel startup.
1290 if (status == 0 && capacity.valueInt64 == 50) {
1291 if (wait_second < BATTERY_READ_TIMEOUT_IN_SEC) {
1292 sleep(1);
1293 wait_second++;
1294 continue;
1295 }
1296 }
1297 // If we can't read battery percentage, it may be a device without battery. In this
1298 // situation, use 100 as a fake battery percentage.
1299 if (status != 0) {
1300 capacity.valueInt64 = 100;
1301 }
1302 return (charged && capacity.valueInt64 >= BATTERY_WITH_CHARGER_OK_PERCENTAGE) ||
1303 (!charged && capacity.valueInt64 >= BATTERY_OK_PERCENTAGE);
1304 }
1305}
1306
Tianjie Xu72449c92017-05-16 18:07:31 -07001307static void set_retry_bootloader_message(int retry_count, const std::vector<std::string>& args) {
1308 std::vector<std::string> options;
1309 for (const auto& arg : args) {
1310 if (!android::base::StartsWith(arg, "--retry_count")) {
1311 options.push_back(arg);
Tianjie Xu3c62b672016-02-05 18:25:58 -08001312 }
Tianjie Xu72449c92017-05-16 18:07:31 -07001313 }
Tianjie Xu3c62b672016-02-05 18:25:58 -08001314
Tianjie Xu72449c92017-05-16 18:07:31 -07001315 // Increment the retry counter by 1.
1316 options.push_back(android::base::StringPrintf("--retry_count=%d", retry_count + 1));
1317 std::string err;
1318 if (!update_bootloader_message(options, &err)) {
1319 LOG(ERROR) << err;
1320 }
Tianjie Xu3c62b672016-02-05 18:25:58 -08001321}
1322
Tianjie Xu06e57ac2016-07-11 14:04:08 -07001323static bool bootreason_in_blacklist() {
Tao Baoefc35592017-01-08 22:45:47 -08001324 std::string bootreason = android::base::GetProperty("ro.boot.bootreason", "");
1325 if (!bootreason.empty()) {
1326 for (const auto& str : bootreason_blacklist) {
1327 if (strcasecmp(str.c_str(), bootreason.c_str()) == 0) {
1328 return true;
1329 }
Tianjie Xu06e57ac2016-07-11 14:04:08 -07001330 }
Tao Baoefc35592017-01-08 22:45:47 -08001331 }
1332 return false;
Tianjie Xu06e57ac2016-07-11 14:04:08 -07001333}
1334
1335static void log_failure_code(ErrorCode code, const char *update_package) {
1336 std::vector<std::string> log_buffer = {
1337 update_package,
1338 "0", // install result
1339 "error: " + std::to_string(code),
1340 };
1341 std::string log_content = android::base::Join(log_buffer, "\n");
1342 if (!android::base::WriteStringToFile(log_content, TEMPORARY_INSTALL_FILE)) {
Tao Baoac9d94d2016-11-03 11:37:15 -07001343 PLOG(ERROR) << "failed to write " << TEMPORARY_INSTALL_FILE;
Tianjie Xu06e57ac2016-07-11 14:04:08 -07001344 }
1345
1346 // Also write the info into last_log.
1347 LOG(INFO) << log_content;
1348}
1349
Yabin Cui99281df2016-02-17 12:21:52 -08001350int main(int argc, char **argv) {
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -07001351 // 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);
1354
Mark Salyzyna4f701a2016-03-09 14:58:16 -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
Mark Salyzyna4f701a2016-03-09 14:58:16 -08001360 __android_log_pmsg_file_read(
1361 LOG_ID_SYSTEM, ANDROID_LOG_INFO, filter,
1362 logbasename, &doRotate);
1363 // Take action to refresh pmsg contents
1364 __android_log_pmsg_file_read(
1365 LOG_ID_SYSTEM, ANDROID_LOG_INFO, filter,
1366 logrotate, &doRotate);
1367
Doug Zongker9270a202012-01-09 15:16:13 -08001368 // If this binary is started with the single argument "--adbd",
1369 // instead of being the normal recovery binary, it turns into kind
1370 // of a stripped-down version of adbd that only supports the
1371 // 'sideload' command. Note this must be a real argument, not
1372 // anything in the command file or bootloader control block; the
1373 // only way recovery should be run with this argument is when it
1374 // starts a copy of itself from the apply_from_adb() function.
1375 if (argc == 2 && strcmp(argv[1], "--adbd") == 0) {
Josh Gaoacb2a2f2016-08-26 18:24:34 -07001376 minadbd_main();
Doug Zongker9270a202012-01-09 15:16:13 -08001377 return 0;
1378 }
1379
Tao Bao04ca4262015-09-10 15:32:24 -07001380 time_t start = time(NULL);
1381
1382 // redirect_stdio should be called only in non-sideload mode. Otherwise
1383 // we may have two logger instances with different timestamps.
1384 redirect_stdio(TEMPORARY_LOG_FILE);
1385
Doug Zongker19a8e242014-01-21 09:25:41 -08001386 printf("Starting recovery (pid %d) on %s", getpid(), ctime(&start));
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001387
Doug Zongkerd4208f92010-09-20 12:16:13 -07001388 load_volume_table();
Tao Bao26112e52016-02-25 12:29:40 -08001389 has_cache = volume_for_path(CACHE_ROOT) != nullptr;
1390
Tao Baof0ed1592016-12-02 11:32:19 -08001391 std::vector<std::string> args = get_args(argc, argv);
1392 std::vector<char*> args_to_parse(args.size());
1393 std::transform(args.cbegin(), args.cend(), args_to_parse.begin(),
1394 [](const std::string& arg) { return const_cast<char*>(arg.c_str()); });
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001395
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001396 const char *update_package = NULL;
Tao Baoe39a9bc2015-03-31 12:19:05 -07001397 bool should_wipe_data = false;
Paul Crowley08404b42016-12-19 13:04:23 -08001398 bool should_prompt_and_wipe_data = false;
Tao Baoc679f932015-03-30 09:43:49 -07001399 bool should_wipe_cache = false;
Yabin Cui8b309f62016-06-24 18:22:02 -07001400 bool should_wipe_ab = false;
Yabin Cuifd99a312016-06-09 14:09:39 -07001401 size_t wipe_package_size = 0;
Tao Bao145d8612015-03-25 15:51:15 -07001402 bool show_text = false;
Tao Baoc679f932015-03-30 09:43:49 -07001403 bool sideload = false;
1404 bool sideload_auto_reboot = false;
Doug Zongkere5d5ac72012-04-12 11:01:22 -07001405 bool just_exit = false;
Doug Zongkerb1d12632014-03-18 10:32:12 -07001406 bool shutdown_after = false;
Tianjie Xu3c62b672016-02-05 18:25:58 -08001407 int retry_count = 0;
Tianjie Xu35926c42016-04-28 18:06:26 -07001408 bool security_update = false;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001409
1410 int arg;
Tao Bao862a4c12016-06-02 11:16:50 -07001411 int option_index;
Tao Baof0ed1592016-12-02 11:32:19 -08001412 while ((arg = getopt_long(args_to_parse.size(), args_to_parse.data(), "", OPTIONS,
1413 &option_index)) != -1) {
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001414 switch (arg) {
Tianjie Xu3c62b672016-02-05 18:25:58 -08001415 case 'n': android::base::ParseInt(optarg, &retry_count, 0); break;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001416 case 'u': update_package = optarg; break;
Tao Baoe39a9bc2015-03-31 12:19:05 -07001417 case 'w': should_wipe_data = true; break;
Tao Baoc679f932015-03-30 09:43:49 -07001418 case 'c': should_wipe_cache = true; break;
Tao Bao145d8612015-03-25 15:51:15 -07001419 case 't': show_text = true; break;
Tao Baoc679f932015-03-30 09:43:49 -07001420 case 's': sideload = true; break;
1421 case 'a': sideload = true; sideload_auto_reboot = true; break;
Doug Zongkere5d5ac72012-04-12 11:01:22 -07001422 case 'x': just_exit = true; break;
Doug Zongker02ec6b82012-08-22 17:26:40 -07001423 case 'l': locale = optarg; break;
Doug Zongkerb1d12632014-03-18 10:32:12 -07001424 case 'p': shutdown_after = true; break;
Jeff Sharkeya6e13ae2014-09-24 11:46:17 -07001425 case 'r': reason = optarg; break;
Tianjie Xu35926c42016-04-28 18:06:26 -07001426 case 'e': security_update = true; break;
Tao Bao862a4c12016-06-02 11:16:50 -07001427 case 0: {
Paul Crowley08404b42016-12-19 13:04:23 -08001428 std::string option = OPTIONS[option_index].name;
1429 if (option == "wipe_ab") {
Yabin Cui8b309f62016-06-24 18:22:02 -07001430 should_wipe_ab = true;
Paul Crowley08404b42016-12-19 13:04:23 -08001431 } else if (option == "wipe_package_size") {
Yabin Cuifd99a312016-06-09 14:09:39 -07001432 android::base::ParseUint(optarg, &wipe_package_size);
Paul Crowley08404b42016-12-19 13:04:23 -08001433 } else if (option == "prompt_and_wipe_data") {
1434 should_prompt_and_wipe_data = true;
Tao Bao862a4c12016-06-02 11:16:50 -07001435 }
1436 break;
1437 }
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001438 case '?':
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -07001439 LOG(ERROR) << "Invalid command argument";
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001440 continue;
1441 }
1442 }
1443
Tao Baoac9d94d2016-11-03 11:37:15 -07001444 if (locale.empty()) {
1445 if (has_cache) {
1446 locale = load_locale_from_cache();
1447 }
1448
1449 if (locale.empty()) {
1450 locale = DEFAULT_LOCALE;
1451 }
Doug Zongker02ec6b82012-08-22 17:26:40 -07001452 }
Tao Baoac9d94d2016-11-03 11:37:15 -07001453
1454 printf("locale is [%s]\n", locale.c_str());
Tao Baoa8d72bc2016-12-25 18:46:50 -08001455 printf("stage is [%s]\n", stage.c_str());
Jeff Sharkeya6e13ae2014-09-24 11:46:17 -07001456 printf("reason is [%s]\n", reason);
Doug Zongker02ec6b82012-08-22 17:26:40 -07001457
1458 Device* device = make_device();
Dmitri Plotnikov8706a982017-04-18 08:28:26 -07001459 if (android::base::GetBoolProperty("ro.boot.quiescent", false)) {
1460 printf("Quiescent recovery mode.\n");
1461 ui = new StubRecoveryUI();
1462 } else {
1463 ui = device->GetUI();
Doug Zongker02ec6b82012-08-22 17:26:40 -07001464
Dmitri Plotnikov8706a982017-04-18 08:28:26 -07001465 if (!ui->Init(locale)) {
1466 printf("Failed to initialize UI, use stub UI instead.\n");
1467 ui = new StubRecoveryUI();
1468 }
Sen Jiangd5304492016-12-09 16:20:49 -08001469 }
Dmitri Plotnikov8706a982017-04-18 08:28:26 -07001470
Tianjie Xu35926c42016-04-28 18:06:26 -07001471 // Set background string to "installing security update" for security update,
1472 // otherwise set it to "installing system update".
1473 ui->SetSystemUpdateText(security_update);
Doug Zongkerc87bab12013-11-25 13:53:25 -08001474
1475 int st_cur, st_max;
Tao Baoa8d72bc2016-12-25 18:46:50 -08001476 if (!stage.empty() && sscanf(stage.c_str(), "%d/%d", &st_cur, &st_max) == 2) {
Doug Zongkerc87bab12013-11-25 13:53:25 -08001477 ui->SetStage(st_cur, st_max);
1478 }
1479
Doug Zongker02ec6b82012-08-22 17:26:40 -07001480 ui->SetBackground(RecoveryUI::NONE);
1481 if (show_text) ui->ShowText(true);
1482
Stephen Smalley779701d2012-02-09 14:13:23 -05001483 struct selinux_opt seopts[] = {
Tao Baoac9d94d2016-11-03 11:37:15 -07001484 { SELABEL_OPT_PATH, "/file_contexts" }
Stephen Smalley779701d2012-02-09 14:13:23 -05001485 };
1486
1487 sehandle = selabel_open(SELABEL_CTX_FILE, seopts, 1);
1488
1489 if (!sehandle) {
Doug Zongkerfafc85b2013-07-09 12:29:45 -07001490 ui->Print("Warning: No file_contexts\n");
Stephen Smalley779701d2012-02-09 14:13:23 -05001491 }
Stephen Smalley779701d2012-02-09 14:13:23 -05001492
Doug Zongkerdaefc1d2011-10-31 09:34:15 -07001493 device->StartRecovery();
Doug Zongkerefa1bab2010-02-01 15:59:12 -08001494
Doug Zongker56c51052010-07-01 09:18:44 -07001495 printf("Command:");
Tao Baof0ed1592016-12-02 11:32:19 -08001496 for (const auto& arg : args) {
1497 printf(" \"%s\"", arg.c_str());
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001498 }
Tao Baof038ca02016-12-10 09:24:50 -08001499 printf("\n\n");
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001500
1501 property_list(print_property, NULL);
Doug Zongker56c51052010-07-01 09:18:44 -07001502 printf("\n");
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001503
Tao Bao8be0f392017-05-04 00:29:31 +00001504 ui->Print("Supported API: %d\n", RECOVERY_API_VERSION);
Elliott Hughesbb78d622015-04-09 20:51:08 -07001505
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001506 int status = INSTALL_SUCCESS;
1507
Doug Zongker540d57f2011-01-18 13:36:58 -08001508 if (update_package != NULL) {
Tao Bao56870012016-04-29 15:37:05 -07001509 // It's not entirely true that we will modify the flash. But we want
1510 // to log the update attempt since update_package is non-NULL.
1511 modified_flash = true;
1512
Yabin Cui99281df2016-02-17 12:21:52 -08001513 if (!is_battery_ok()) {
1514 ui->Print("battery capacity is not enough for installing package, needed is %d%%\n",
1515 BATTERY_OK_PERCENTAGE);
Tianjie Xu16255832016-04-30 11:49:59 -07001516 // Log the error code to last_install when installation skips due to
1517 // low battery.
Tianjie Xu06e57ac2016-07-11 14:04:08 -07001518 log_failure_code(kLowBattery, update_package);
1519 status = INSTALL_SKIPPED;
1520 } else if (bootreason_in_blacklist()) {
1521 // Skip update-on-reboot when bootreason is kernel_panic or similar
1522 ui->Print("bootreason is in the blacklist; skip OTA installation\n");
1523 log_failure_code(kBootreasonInBlacklist, update_package);
Yabin Cui99281df2016-02-17 12:21:52 -08001524 status = INSTALL_SKIPPED;
1525 } else {
1526 status = install_package(update_package, &should_wipe_cache,
Tianjie Xu16255832016-04-30 11:49:59 -07001527 TEMPORARY_INSTALL_FILE, true, retry_count);
Yabin Cui99281df2016-02-17 12:21:52 -08001528 if (status == INSTALL_SUCCESS && should_wipe_cache) {
1529 wipe_cache(false, device);
1530 }
1531 if (status != INSTALL_SUCCESS) {
1532 ui->Print("Installation aborted.\n");
Tianjie Xu69575552017-05-16 15:51:46 -07001533 // When I/O error happens, reboot and retry installation RETRY_LIMIT
Tianjie Xu3c62b672016-02-05 18:25:58 -08001534 // times before we abandon this OTA update.
Tianjie Xu69575552017-05-16 15:51:46 -07001535 if (status == INSTALL_RETRY && retry_count < RETRY_LIMIT) {
Tianjie Xu3c62b672016-02-05 18:25:58 -08001536 copy_logs();
Tianjie Xu72449c92017-05-16 18:07:31 -07001537 set_retry_bootloader_message(retry_count, args);
Tianjie Xu3c62b672016-02-05 18:25:58 -08001538 // Print retry count on screen.
1539 ui->Print("Retry attempt %d\n", retry_count);
Doug Zongker7c3ae452013-05-14 11:03:02 -07001540
Tianjie Xu3c62b672016-02-05 18:25:58 -08001541 // Reboot and retry the update
Dmitri Plotnikov8706a982017-04-18 08:28:26 -07001542 if (!reboot("reboot,recovery")) {
Tianjie Xu3c62b672016-02-05 18:25:58 -08001543 ui->Print("Reboot failed\n");
1544 } else {
1545 while (true) {
1546 pause();
1547 }
1548 }
1549 }
Yabin Cui99281df2016-02-17 12:21:52 -08001550 // If this is an eng or userdebug build, then automatically
1551 // turn the text display on if the script fails so the error
1552 // message is visible.
1553 if (is_ro_debuggable()) {
1554 ui->ShowText(true);
1555 }
Doug Zongker7c3ae452013-05-14 11:03:02 -07001556 }
1557 }
Tao Baoe39a9bc2015-03-31 12:19:05 -07001558 } else if (should_wipe_data) {
Paul Crowley08404b42016-12-19 13:04:23 -08001559 if (!wipe_data(device)) {
Tao Baoe39a9bc2015-03-31 12:19:05 -07001560 status = INSTALL_ERROR;
1561 }
Paul Crowley08404b42016-12-19 13:04:23 -08001562 } else if (should_prompt_and_wipe_data) {
1563 ui->ShowText(true);
1564 ui->SetBackground(RecoveryUI::ERROR);
1565 if (!prompt_and_wipe_data(device)) {
1566 status = INSTALL_ERROR;
1567 }
1568 ui->ShowText(false);
Tao Baoc679f932015-03-30 09:43:49 -07001569 } else if (should_wipe_cache) {
Tao Baoe39a9bc2015-03-31 12:19:05 -07001570 if (!wipe_cache(false, device)) {
1571 status = INSTALL_ERROR;
1572 }
Yabin Cui8b309f62016-06-24 18:22:02 -07001573 } else if (should_wipe_ab) {
Yabin Cuifd99a312016-06-09 14:09:39 -07001574 if (!wipe_ab_device(wipe_package_size)) {
Tao Bao862a4c12016-06-02 11:16:50 -07001575 status = INSTALL_ERROR;
1576 }
Tao Baoc679f932015-03-30 09:43:49 -07001577 } else if (sideload) {
1578 // 'adb reboot sideload' acts the same as user presses key combinations
1579 // to enter the sideload mode. When 'sideload-auto-reboot' is used, text
1580 // display will NOT be turned on by default. And it will reboot after
1581 // sideload finishes even if there are errors. Unless one turns on the
1582 // text display during the installation. This is to enable automated
1583 // testing.
1584 if (!sideload_auto_reboot) {
1585 ui->ShowText(true);
1586 }
Tao Bao0150d012017-05-01 11:31:28 -07001587 status = apply_from_adb(&should_wipe_cache, TEMPORARY_INSTALL_FILE);
Tao Baoc679f932015-03-30 09:43:49 -07001588 if (status == INSTALL_SUCCESS && should_wipe_cache) {
Tao Baoe39a9bc2015-03-31 12:19:05 -07001589 if (!wipe_cache(false, device)) {
1590 status = INSTALL_ERROR;
1591 }
Tao Baoc679f932015-03-30 09:43:49 -07001592 }
1593 ui->Print("\nInstall from ADB complete (status: %d).\n", status);
1594 if (sideload_auto_reboot) {
1595 ui->Print("Rebooting automatically.\n");
1596 }
Doug Zongkere5d5ac72012-04-12 11:01:22 -07001597 } else if (!just_exit) {
Tao Bao7022f332017-07-25 09:52:36 -07001598 // If this is an eng or userdebug build, automatically turn on the text display if no command
1599 // is specified. Note that this should be called before setting the background to avoid
1600 // flickering the background image.
1601 if (is_ro_debuggable()) {
1602 ui->ShowText(true);
1603 }
1604 status = INSTALL_NONE; // No command specified
1605 ui->SetBackground(RecoveryUI::NO_COMMAND);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001606 }
1607
Tianjie Xud9d16292017-04-20 18:08:21 -07001608 if (status == INSTALL_ERROR || status == INSTALL_CORRUPT) {
Doug Zongker02ec6b82012-08-22 17:26:40 -07001609 ui->SetBackground(RecoveryUI::ERROR);
Tianjie Xud9d16292017-04-20 18:08:21 -07001610 if (!ui->IsTextVisible()) {
1611 sleep(5);
1612 }
Doug Zongker02ec6b82012-08-22 17:26:40 -07001613 }
Tao Baoc679f932015-03-30 09:43:49 -07001614
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001615 Device::BuiltinAction after = shutdown_after ? Device::SHUTDOWN : Device::REBOOT;
Tianjie Xud9d16292017-04-20 18:08:21 -07001616 // 1. If the recovery menu is visible, prompt and wait for commands.
1617 // 2. If the state is INSTALL_NONE, wait for commands. (i.e. In user build, manually reboot into
1618 // recovery to sideload a package.)
1619 // 3. sideload_auto_reboot is an option only available in user-debug build, reboot the device
1620 // without waiting.
1621 // 4. In all other cases, reboot the device. Therefore, normal users will observe the device
1622 // reboot after it shows the "error" screen for 5s.
1623 if ((status == INSTALL_NONE && !sideload_auto_reboot) || ui->IsTextVisible()) {
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001624 Device::BuiltinAction temp = prompt_and_wait(device, status);
Tao Baoc679f932015-03-30 09:43:49 -07001625 if (temp != Device::NO_ACTION) {
1626 after = temp;
1627 }
Doug Zongker8674a722010-09-15 11:08:23 -07001628 }
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001629
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001630 // Save logs and clean up before rebooting or shutting down.
Tianjie Xuc14d95d2016-03-24 11:50:34 -07001631 finish_recovery();
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001632
1633 switch (after) {
1634 case Device::SHUTDOWN:
1635 ui->Print("Shutting down...\n");
Elliott Hughescb220402016-09-23 15:30:55 -07001636 android::base::SetProperty(ANDROID_RB_PROPERTY, "shutdown,");
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001637 break;
1638
1639 case Device::REBOOT_BOOTLOADER:
1640 ui->Print("Rebooting to bootloader...\n");
Elliott Hughescb220402016-09-23 15:30:55 -07001641 android::base::SetProperty(ANDROID_RB_PROPERTY, "reboot,bootloader");
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001642 break;
1643
1644 default:
1645 ui->Print("Rebooting...\n");
Dmitri Plotnikov8706a982017-04-18 08:28:26 -07001646 reboot("reboot,");
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001647 break;
Doug Zongkerb1d12632014-03-18 10:32:12 -07001648 }
Tao Bao75238632015-05-27 14:46:17 -07001649 while (true) {
Tao Baoac9d94d2016-11-03 11:37:15 -07001650 pause();
Tao Bao75238632015-05-27 14:46:17 -07001651 }
1652 // Should be unreachable.
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001653 return EXIT_SUCCESS;
1654}