blob: 223ca94d014dd6a957a026c0182fbe8e89c0aa2e [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
Tao Bao75238632015-05-27 14:46:17 -070043#include <adb.h>
Elliott Hughes4b166f02015-12-04 15:30:20 -080044#include <android-base/file.h>
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -070045#include <android-base/logging.h>
Tianjie Xu3c62b672016-02-05 18:25:58 -080046#include <android-base/parseint.h>
Elliott Hughescb220402016-09-23 15:30:55 -070047#include <android-base/properties.h>
Elliott Hughes4b166f02015-12-04 15:30:20 -080048#include <android-base/stringprintf.h>
Tao Bao862a4c12016-06-02 11:16:50 -070049#include <android-base/strings.h>
50#include <android-base/unique_fd.h>
Yabin Cui8b309f62016-06-24 18:22:02 -070051#include <bootloader_message/bootloader_message.h>
Tao Bao75238632015-05-27 14:46:17 -070052#include <cutils/android_reboot.h>
Elliott Hughescb220402016-09-23 15:30:55 -070053#include <cutils/properties.h> /* for property_list */
Elliott Hughes4bbd5bf2016-04-01 18:24:39 -070054#include <healthd/BatteryMonitor.h>
Mark Salyzyna4f701a2016-03-09 14:58:16 -080055#include <private/android_logger.h> /* private pmsg functions */
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 Zongkerc87bab12013-11-25 13:53:25 -080086 { "stages", required_argument, NULL, 'g' },
Doug Zongkerb1d12632014-03-18 10:32:12 -070087 { "shutdown_after", no_argument, NULL, 'p' },
Jeff Sharkeya6e13ae2014-09-24 11:46:17 -070088 { "reason", required_argument, NULL, 'r' },
Tianjie Xu35926c42016-04-28 18:06:26 -070089 { "security", no_argument, NULL, 'e'},
Yabin Cui8b309f62016-06-24 18:22:02 -070090 { "wipe_ab", no_argument, NULL, 0 },
Yabin Cuifd99a312016-06-09 14:09:39 -070091 { "wipe_package_size", required_argument, NULL, 0 },
Paul Crowley08404b42016-12-19 13:04:23 -080092 { "prompt_and_wipe_data", no_argument, NULL, 0 },
Doug Zongker988500b2009-10-06 14:41:38 -070093 { NULL, 0, NULL, 0 },
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080094};
95
Tianjie Xu06e57ac2016-07-11 14:04:08 -070096// More bootreasons can be found in "system/core/bootstat/bootstat.cpp".
97static const std::vector<std::string> bootreason_blacklist {
98 "kernel_panic",
99 "Panic",
100};
101
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700102static const char *CACHE_LOG_DIR = "/cache/recovery";
Doug Zongkerd4208f92010-09-20 12:16:13 -0700103static const char *COMMAND_FILE = "/cache/recovery/command";
Doug Zongkerd4208f92010-09-20 12:16:13 -0700104static const char *LOG_FILE = "/cache/recovery/log";
Doug Zongkerd0181b82011-10-19 10:51:12 -0700105static const char *LAST_INSTALL_FILE = "/cache/recovery/last_install";
Doug Zongker8b240cc2012-08-29 15:19:29 -0700106static const char *LOCALE_FILE = "/cache/recovery/last_locale";
Paul Lawrence661f8a62016-02-25 12:42:19 -0800107static const char *CONVERT_FBE_DIR = "/tmp/convert_fbe";
108static const char *CONVERT_FBE_FILE = "/tmp/convert_fbe/convert_fbe";
Michael Ward9d2629c2011-06-23 22:14:24 -0700109static const char *CACHE_ROOT = "/cache";
Paul Lawrenced0db3372015-11-05 13:38:40 -0800110static const char *DATA_ROOT = "/data";
Doug Zongkerd4208f92010-09-20 12:16:13 -0700111static const char *SDCARD_ROOT = "/sdcard";
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800112static const char *TEMPORARY_LOG_FILE = "/tmp/recovery.log";
Doug Zongkerd0181b82011-10-19 10:51:12 -0700113static const char *TEMPORARY_INSTALL_FILE = "/tmp/last_install";
Tao Baof0124322015-04-11 02:04:11 +0000114static const char *LAST_KMSG_FILE = "/cache/recovery/last_kmsg";
Tao Baobef39712015-05-04 18:50:27 -0700115static const char *LAST_LOG_FILE = "/cache/recovery/last_log";
Tianjie Xuc37c5c32016-06-23 16:52:17 -0700116// We will try to apply the update package 5 times at most in case of an I/O error.
117static const int EIO_RETRY_COUNT = 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";
125static 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;
132const char* stage = nullptr;
133const 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
Doug Zongkerd4208f92010-09-20 12:16:13 -0700181// open a given path, mounting partitions as necessary
Tao Bao04ca4262015-09-10 15:32:24 -0700182FILE* fopen_path(const char *path, const char *mode) {
Doug Zongkerd4208f92010-09-20 12:16:13 -0700183 if (ensure_path_mounted(path) != 0) {
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -0700184 LOG(ERROR) << "Can't mount " << path;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800185 return NULL;
186 }
187
188 // When writing, try to create the containing directory, if necessary.
189 // Use generous permissions, the system (init.rc) will reset them.
Stephen Smalley779701d2012-02-09 14:13:23 -0500190 if (strchr("wa", mode[0])) dirCreateHierarchy(path, 0777, NULL, 1, sehandle);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800191
192 FILE *fp = fopen(path, mode);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800193 return fp;
194}
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
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700212static void redirect_stdio(const char* filename) {
Tao Bao04ca4262015-09-10 15:32:24 -0700213 int pipefd[2];
214 if (pipe(pipefd) == -1) {
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -0700215 PLOG(ERROR) << "pipe failed";
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700216
Tao Bao04ca4262015-09-10 15:32:24 -0700217 // Fall back to traditional logging mode without timestamps.
218 // If these fail, there's not really anywhere to complain...
219 freopen(filename, "a", stdout); setbuf(stdout, NULL);
220 freopen(filename, "a", stderr); setbuf(stderr, NULL);
221
222 return;
223 }
224
225 pid_t pid = fork();
226 if (pid == -1) {
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -0700227 PLOG(ERROR) << "fork failed";
Tao Bao04ca4262015-09-10 15:32:24 -0700228
229 // Fall back to traditional logging mode without timestamps.
230 // If these fail, there's not really anywhere to complain...
231 freopen(filename, "a", stdout); setbuf(stdout, NULL);
232 freopen(filename, "a", stderr); setbuf(stderr, NULL);
233
234 return;
235 }
236
237 if (pid == 0) {
238 /// Close the unused write end.
239 close(pipefd[1]);
240
241 auto start = std::chrono::steady_clock::now();
242
243 // Child logger to actually write to the log file.
244 FILE* log_fp = fopen(filename, "a");
245 if (log_fp == nullptr) {
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -0700246 PLOG(ERROR) << "fopen \"" << filename << "\" failed";
Tao Bao04ca4262015-09-10 15:32:24 -0700247 close(pipefd[0]);
Tao Bao3da88012017-02-03 13:09:23 -0800248 _exit(EXIT_FAILURE);
Tao Bao04ca4262015-09-10 15:32:24 -0700249 }
250
251 FILE* pipe_fp = fdopen(pipefd[0], "r");
252 if (pipe_fp == nullptr) {
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -0700253 PLOG(ERROR) << "fdopen failed";
Tao Bao04ca4262015-09-10 15:32:24 -0700254 check_and_fclose(log_fp, filename);
255 close(pipefd[0]);
Tao Bao3da88012017-02-03 13:09:23 -0800256 _exit(EXIT_FAILURE);
Tao Bao04ca4262015-09-10 15:32:24 -0700257 }
258
259 char* line = nullptr;
260 size_t len = 0;
261 while (getline(&line, &len, pipe_fp) != -1) {
262 auto now = std::chrono::steady_clock::now();
263 double duration = std::chrono::duration_cast<std::chrono::duration<double>>(
264 now - start).count();
265 if (line[0] == '\n') {
266 fprintf(log_fp, "[%12.6lf]\n", duration);
267 } else {
268 fprintf(log_fp, "[%12.6lf] %s", duration, line);
269 }
270 fflush(log_fp);
271 }
272
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -0700273 PLOG(ERROR) << "getline failed";
Tao Bao04ca4262015-09-10 15:32:24 -0700274
275 free(line);
276 check_and_fclose(log_fp, filename);
277 close(pipefd[0]);
Tao Bao3da88012017-02-03 13:09:23 -0800278 _exit(EXIT_FAILURE);
Tao Bao04ca4262015-09-10 15:32:24 -0700279 } else {
280 // Redirect stdout/stderr to the logger process.
281 // Close the unused read end.
282 close(pipefd[0]);
283
284 setbuf(stdout, nullptr);
285 setbuf(stderr, nullptr);
286
287 if (dup2(pipefd[1], STDOUT_FILENO) == -1) {
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -0700288 PLOG(ERROR) << "dup2 stdout failed";
Tao Bao04ca4262015-09-10 15:32:24 -0700289 }
290 if (dup2(pipefd[1], STDERR_FILENO) == -1) {
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -0700291 PLOG(ERROR) << "dup2 stderr failed";
Tao Bao04ca4262015-09-10 15:32:24 -0700292 }
293
294 close(pipefd[1]);
295 }
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800296}
297
298// command line args come from, in decreasing precedence:
299// - the actual command line
300// - the bootloader control block (one per line, after "recovery")
301// - the contents of COMMAND_FILE (one per line)
Tao Baof0ed1592016-12-02 11:32:19 -0800302static std::vector<std::string> get_args(const int argc, char** const argv) {
303 CHECK_GT(argc, 0);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800304
Tao Baof0ed1592016-12-02 11:32:19 -0800305 bootloader_message boot = {};
306 std::string err;
307 if (!read_bootloader_message(&boot, &err)) {
308 LOG(ERROR) << err;
309 // If fails, leave a zeroed bootloader_message.
310 boot = {};
311 }
312 stage = strndup(boot.stage, sizeof(boot.stage));
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800313
Tao Baof0ed1592016-12-02 11:32:19 -0800314 if (boot.command[0] != 0) {
315 std::string boot_command = std::string(boot.command, sizeof(boot.command));
316 LOG(INFO) << "Boot command: " << boot_command;
317 }
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800318
Tao Baof0ed1592016-12-02 11:32:19 -0800319 if (boot.status[0] != 0) {
320 std::string boot_status = std::string(boot.status, sizeof(boot.status));
321 LOG(INFO) << "Boot status: " << boot_status;
322 }
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800323
Tao Baof0ed1592016-12-02 11:32:19 -0800324 std::vector<std::string> args(argv, argv + argc);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800325
Tao Baof0ed1592016-12-02 11:32:19 -0800326 // --- if arguments weren't supplied, look in the bootloader control block
Tao Bao570af9d2017-01-09 10:29:59 -0800327 if (args.size() == 1) {
Tao Baof0ed1592016-12-02 11:32:19 -0800328 boot.recovery[sizeof(boot.recovery) - 1] = '\0'; // Ensure termination
329 std::string boot_recovery(boot.recovery);
330 std::vector<std::string> tokens = android::base::Split(boot_recovery, "\n");
331 if (!tokens.empty() && tokens[0] == "recovery") {
332 for (auto it = tokens.begin() + 1; it != tokens.end(); it++) {
333 // Skip empty and '\0'-filled tokens.
334 if (!it->empty() && (*it)[0] != '\0') args.push_back(std::move(*it));
335 }
336 LOG(INFO) << "Got " << args.size() << " arguments from boot message";
337 } else if (boot.recovery[0] != 0) {
338 LOG(ERROR) << "Bad boot message: \"" << boot_recovery << "\"";
339 }
340 }
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800341
Tao Baof0ed1592016-12-02 11:32:19 -0800342 // --- if that doesn't work, try the command file (if we have /cache).
Tao Bao570af9d2017-01-09 10:29:59 -0800343 if (args.size() == 1 && has_cache) {
Tao Baof0ed1592016-12-02 11:32:19 -0800344 std::string content;
Tao Bao7d34fa12016-12-08 18:10:48 -0800345 if (ensure_path_mounted(COMMAND_FILE) == 0 &&
346 android::base::ReadFileToString(COMMAND_FILE, &content)) {
Tao Baof0ed1592016-12-02 11:32:19 -0800347 std::vector<std::string> tokens = android::base::Split(content, "\n");
Tao Bao7d34fa12016-12-08 18:10:48 -0800348 // All the arguments in COMMAND_FILE are needed (unlike the BCB message,
349 // COMMAND_FILE doesn't use filename as the first argument).
350 for (auto it = tokens.begin(); it != tokens.end(); it++) {
Tao Baof0ed1592016-12-02 11:32:19 -0800351 // Skip empty and '\0'-filled tokens.
352 if (!it->empty() && (*it)[0] != '\0') args.push_back(std::move(*it));
353 }
354 LOG(INFO) << "Got " << args.size() << " arguments from " << COMMAND_FILE;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800355 }
Tao Baof0ed1592016-12-02 11:32:19 -0800356 }
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800357
Tao Baof0ed1592016-12-02 11:32:19 -0800358 // Write the arguments (excluding the filename in args[0]) back into the
359 // bootloader control block. So the device will always boot into recovery to
360 // finish the pending work, until finish_recovery() is called.
361 std::vector<std::string> options(args.cbegin() + 1, args.cend());
Tao Bao2292db82016-12-13 21:53:31 -0800362 if (!update_bootloader_message(options, &err)) {
363 LOG(ERROR) << "Failed to set BCB message: " << err;
Tao Baof0ed1592016-12-02 11:32:19 -0800364 }
365
366 return args;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800367}
368
Tao Bao2292db82016-12-13 21:53:31 -0800369// Set the BCB to reboot back into recovery (it won't resume the install from
370// sdcard though).
371static void set_sdcard_update_bootloader_message() {
372 std::vector<std::string> options;
373 std::string err;
374 if (!update_bootloader_message(options, &err)) {
375 LOG(ERROR) << "Failed to set BCB message: " << err;
376 }
Doug Zongker34c98df2009-08-18 12:05:45 -0700377}
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800378
Tao Baobef39712015-05-04 18:50:27 -0700379// Read from kernel log into buffer and write out to file.
380static void save_kernel_log(const char* destination) {
381 int klog_buf_len = klogctl(KLOG_SIZE_BUFFER, 0, 0);
Patrick Tjincd055ee2014-12-09 11:26:40 -0800382 if (klog_buf_len <= 0) {
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -0700383 PLOG(ERROR) << "Error getting klog size";
Patrick Tjincd055ee2014-12-09 11:26:40 -0800384 return;
385 }
386
Tao Baobef39712015-05-04 18:50:27 -0700387 std::string buffer(klog_buf_len, 0);
388 int n = klogctl(KLOG_READ_ALL, &buffer[0], klog_buf_len);
389 if (n == -1) {
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -0700390 PLOG(ERROR) << "Error in reading klog";
Patrick Tjincd055ee2014-12-09 11:26:40 -0800391 return;
392 }
Tao Baobef39712015-05-04 18:50:27 -0700393 buffer.resize(n);
394 android::base::WriteStringToFile(buffer, destination);
Patrick Tjincd055ee2014-12-09 11:26:40 -0800395}
396
Mark Salyzyna4f701a2016-03-09 14:58:16 -0800397// write content to the current pmsg session.
398static ssize_t __pmsg_write(const char *filename, const char *buf, size_t len) {
399 return __android_log_pmsg_file_write(LOG_ID_SYSTEM, ANDROID_LOG_INFO,
400 filename, buf, len);
401}
402
403static void copy_log_file_to_pmsg(const char* source, const char* destination) {
404 std::string content;
405 android::base::ReadFileToString(source, &content);
406 __pmsg_write(destination, content.c_str(), content.length());
407}
408
Tao Baof0124322015-04-11 02:04:11 +0000409// How much of the temp log we have copied to the copy in cache.
Chih-Hung Hsieh54a27472016-04-18 11:30:55 -0700410static off_t tmplog_offset = 0;
Tao Baof0124322015-04-11 02:04:11 +0000411
Tao Baobef39712015-05-04 18:50:27 -0700412static void copy_log_file(const char* source, const char* destination, bool append) {
413 FILE* dest_fp = fopen_path(destination, append ? "a" : "w");
414 if (dest_fp == nullptr) {
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -0700415 PLOG(ERROR) << "Can't open " << destination;
Doug Zongker2c3539e2010-09-29 13:21:30 -0700416 } else {
Tao Baobef39712015-05-04 18:50:27 -0700417 FILE* source_fp = fopen(source, "r");
418 if (source_fp != nullptr) {
Tao Baof0124322015-04-11 02:04:11 +0000419 if (append) {
Chih-Hung Hsieh54a27472016-04-18 11:30:55 -0700420 fseeko(source_fp, tmplog_offset, SEEK_SET); // Since last write
Doug Zongker2c3539e2010-09-29 13:21:30 -0700421 }
422 char buf[4096];
Tao Baobef39712015-05-04 18:50:27 -0700423 size_t bytes;
424 while ((bytes = fread(buf, 1, sizeof(buf), source_fp)) != 0) {
425 fwrite(buf, 1, bytes, dest_fp);
Doug Zongker2c3539e2010-09-29 13:21:30 -0700426 }
Tao Baobef39712015-05-04 18:50:27 -0700427 if (append) {
Chih-Hung Hsieh54a27472016-04-18 11:30:55 -0700428 tmplog_offset = ftello(source_fp);
Tao Baobef39712015-05-04 18:50:27 -0700429 }
430 check_and_fclose(source_fp, source);
Doug Zongker2c3539e2010-09-29 13:21:30 -0700431 }
Tao Baobef39712015-05-04 18:50:27 -0700432 check_and_fclose(dest_fp, destination);
Doug Zongker2c3539e2010-09-29 13:21:30 -0700433 }
434}
435
Tao Bao682c34b2015-04-07 17:16:35 -0700436static void copy_logs() {
437 // We only rotate and record the log of the current session if there are
438 // actual attempts to modify the flash, such as wipes, installs from BCB
439 // or menu selections. This is to avoid unnecessary rotation (and
440 // possible deletion) of log files, if it does not do anything loggable.
441 if (!modified_flash) {
442 return;
443 }
444
Mark Salyzyna4f701a2016-03-09 14:58:16 -0800445 // Always write to pmsg, this allows the OTA logs to be caught in logcat -L
446 copy_log_file_to_pmsg(TEMPORARY_LOG_FILE, LAST_LOG_FILE);
447 copy_log_file_to_pmsg(TEMPORARY_INSTALL_FILE, LAST_INSTALL_FILE);
448
449 // We can do nothing for now if there's no /cache partition.
450 if (!has_cache) {
451 return;
452 }
453
Tianjie Xue113e4d2016-10-21 17:46:13 -0700454 ensure_path_mounted(LAST_LOG_FILE);
455 ensure_path_mounted(LAST_KMSG_FILE);
456 rotate_logs(LAST_LOG_FILE, LAST_KMSG_FILE);
Tao Bao682c34b2015-04-07 17:16:35 -0700457
Doug Zongkerf24fd7e2013-07-02 11:43:25 -0700458 // Copy logs to cache so the system can find out what happened.
Tao Baof0124322015-04-11 02:04:11 +0000459 copy_log_file(TEMPORARY_LOG_FILE, LOG_FILE, true);
460 copy_log_file(TEMPORARY_LOG_FILE, LAST_LOG_FILE, false);
461 copy_log_file(TEMPORARY_INSTALL_FILE, LAST_INSTALL_FILE, false);
462 save_kernel_log(LAST_KMSG_FILE);
Doug Zongkerf24fd7e2013-07-02 11:43:25 -0700463 chmod(LOG_FILE, 0600);
464 chown(LOG_FILE, 1000, 1000); // system user
Tao Baof0124322015-04-11 02:04:11 +0000465 chmod(LAST_KMSG_FILE, 0600);
466 chown(LAST_KMSG_FILE, 1000, 1000); // system user
Doug Zongkerf24fd7e2013-07-02 11:43:25 -0700467 chmod(LAST_LOG_FILE, 0640);
468 chmod(LAST_INSTALL_FILE, 0644);
469 sync();
470}
471
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800472// clear the recovery command and prepare to boot a (hopefully working) system,
Tianjie Xuc14d95d2016-03-24 11:50:34 -0700473// copy our log file to cache as well (for the system to read). This function is
474// idempotent: call it as many times as you like.
Tao Baoac9d94d2016-11-03 11:37:15 -0700475static void finish_recovery() {
Doug Zongker4f33e552012-08-23 13:16:12 -0700476 // Save the locale to cache, so if recovery is next started up
477 // without a --locale argument (eg, directly from the bootloader)
478 // it will use the last-known locale.
Tao Baoac9d94d2016-11-03 11:37:15 -0700479 if (!locale.empty() && has_cache) {
480 LOG(INFO) << "Saving locale \"" << locale << "\"";
481
482 FILE* fp = fopen_path(LOCALE_FILE, "w");
483 if (!android::base::WriteStringToFd(locale, fileno(fp))) {
484 PLOG(ERROR) << "Failed to save locale to " << LOCALE_FILE;
Mark Salyzyna4f701a2016-03-09 14:58:16 -0800485 }
Tao Baoac9d94d2016-11-03 11:37:15 -0700486 check_and_fclose(fp, LOCALE_FILE);
Doug Zongker4f33e552012-08-23 13:16:12 -0700487 }
488
Doug Zongkerf24fd7e2013-07-02 11:43:25 -0700489 copy_logs();
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800490
Doug Zongkere5d5ac72012-04-12 11:01:22 -0700491 // Reset to normal system boot so recovery won't cycle indefinitely.
Yabin Cui8b309f62016-06-24 18:22:02 -0700492 std::string err;
Tianjie Xubd56f152016-09-28 16:32:10 -0700493 if (!clear_bootloader_message(&err)) {
Tao Bao2292db82016-12-13 21:53:31 -0800494 LOG(ERROR) << "Failed to clear BCB message: " << err;
Yabin Cui8b309f62016-06-24 18:22:02 -0700495 }
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800496
497 // Remove the command file, so recovery won't repeat indefinitely.
Tao Bao26112e52016-02-25 12:29:40 -0800498 if (has_cache) {
499 if (ensure_path_mounted(COMMAND_FILE) != 0 || (unlink(COMMAND_FILE) && errno != ENOENT)) {
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -0700500 LOG(WARNING) << "Can't unlink " << COMMAND_FILE;
Tao Bao26112e52016-02-25 12:29:40 -0800501 }
502 ensure_path_unmounted(CACHE_ROOT);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800503 }
504
505 sync(); // For good measure.
506}
507
Tao Bao3f5a3822016-12-13 11:14:37 -0800508struct saved_log_file {
509 std::string name;
510 struct stat sb;
511 std::string data;
512};
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700513
Elliott Hughes945548e2015-06-05 17:59:56 -0700514static bool erase_volume(const char* volume) {
Tao Bao3f5a3822016-12-13 11:14:37 -0800515 bool is_cache = (strcmp(volume, CACHE_ROOT) == 0);
516 bool is_data = (strcmp(volume, DATA_ROOT) == 0);
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700517
Tao Bao3f5a3822016-12-13 11:14:37 -0800518 ui->SetBackground(RecoveryUI::ERASING);
519 ui->SetProgressType(RecoveryUI::INDETERMINATE);
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700520
Tao Bao3f5a3822016-12-13 11:14:37 -0800521 std::vector<saved_log_file> log_files;
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700522
Tao Bao3f5a3822016-12-13 11:14:37 -0800523 if (is_cache) {
524 // If we're reformatting /cache, we load any past logs
525 // (i.e. "/cache/recovery/last_*") and the current log
526 // ("/cache/recovery/log") into memory, so we can restore them after
527 // the reformat.
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700528
Tao Bao3f5a3822016-12-13 11:14:37 -0800529 ensure_path_mounted(volume);
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700530
Tao Bao3f5a3822016-12-13 11:14:37 -0800531 struct dirent* de;
532 std::unique_ptr<DIR, decltype(&closedir)> d(opendir(CACHE_LOG_DIR), closedir);
533 if (d) {
534 while ((de = readdir(d.get())) != nullptr) {
535 if (strncmp(de->d_name, "last_", 5) == 0 || strcmp(de->d_name, "log") == 0) {
536 std::string path = android::base::StringPrintf("%s/%s", CACHE_LOG_DIR, de->d_name);
537
538 struct stat sb;
539 if (stat(path.c_str(), &sb) == 0) {
540 // truncate files to 512kb
541 if (sb.st_size > (1 << 19)) {
542 sb.st_size = 1 << 19;
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700543 }
Tao Bao3f5a3822016-12-13 11:14:37 -0800544
545 std::string data(sb.st_size, '\0');
546 FILE* f = fopen(path.c_str(), "rb");
547 fread(&data[0], 1, data.size(), f);
548 fclose(f);
549
550 log_files.emplace_back(saved_log_file{ path, sb, data });
551 }
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700552 }
Tao Bao3f5a3822016-12-13 11:14:37 -0800553 }
Paul Lawrenced0db3372015-11-05 13:38:40 -0800554 } else {
Tao Bao3f5a3822016-12-13 11:14:37 -0800555 if (errno != ENOENT) {
556 PLOG(ERROR) << "Failed to opendir " << CACHE_LOG_DIR;
557 }
Paul Lawrenced0db3372015-11-05 13:38:40 -0800558 }
Tao Bao3f5a3822016-12-13 11:14:37 -0800559 }
Doug Zongkerd0181b82011-10-19 10:51:12 -0700560
Tao Bao3f5a3822016-12-13 11:14:37 -0800561 ui->Print("Formatting %s...\n", volume);
562
563 ensure_path_unmounted(volume);
564
565 int result;
566
567 if (is_data && reason && strcmp(reason, "convert_fbe") == 0) {
568 // Create convert_fbe breadcrumb file to signal to init
569 // to convert to file based encryption, not full disk encryption
570 if (mkdir(CONVERT_FBE_DIR, 0700) != 0) {
571 ui->Print("Failed to make convert_fbe dir %s\n", strerror(errno));
572 return true;
573 }
574 FILE* f = fopen(CONVERT_FBE_FILE, "wb");
575 if (!f) {
576 ui->Print("Failed to convert to file encryption %s\n", strerror(errno));
577 return true;
578 }
579 fclose(f);
580 result = format_volume(volume, CONVERT_FBE_DIR);
581 remove(CONVERT_FBE_FILE);
582 rmdir(CONVERT_FBE_DIR);
583 } else {
584 result = format_volume(volume);
585 }
586
587 if (is_cache) {
588 // Re-create the log dir and write back the log entries.
589 if (ensure_path_mounted(CACHE_LOG_DIR) == 0 &&
590 dirCreateHierarchy(CACHE_LOG_DIR, 0777, nullptr, false, sehandle) == 0) {
591 for (const auto& log : log_files) {
592 if (!android::base::WriteStringToFile(log.data, log.name, log.sb.st_mode, log.sb.st_uid,
593 log.sb.st_gid)) {
594 PLOG(ERROR) << "Failed to write to " << log.name;
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700595 }
Tao Bao3f5a3822016-12-13 11:14:37 -0800596 }
597 } else {
598 PLOG(ERROR) << "Failed to mount / create " << CACHE_LOG_DIR;
Doug Zongker2c3539e2010-09-29 13:21:30 -0700599 }
600
Tao Bao3f5a3822016-12-13 11:14:37 -0800601 // Any part of the log we'd copied to cache is now gone.
602 // Reset the pointer so we copy from the beginning of the temp
603 // log.
604 tmplog_offset = 0;
605 copy_logs();
606 }
607
608 return (result == 0);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800609}
610
Doug Zongkerf93d8162009-09-22 15:16:02 -0700611static int
Doug Zongker28ce47c2011-10-28 10:33:05 -0700612get_menu_selection(const char* const * headers, const char* const * items,
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700613 int menu_only, int initial_selection, Device* device) {
Doug Zongkerf93d8162009-09-22 15:16:02 -0700614 // throw away keys pressed previously, so user doesn't
615 // accidentally trigger menu items.
Doug Zongker211aebc2011-10-28 15:13:10 -0700616 ui->FlushKeys();
Doug Zongkerf93d8162009-09-22 15:16:02 -0700617
Doug Zongker211aebc2011-10-28 15:13:10 -0700618 ui->StartMenu(headers, items, initial_selection);
Doug Zongker8674a722010-09-15 11:08:23 -0700619 int selected = initial_selection;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800620 int chosen_item = -1;
621
Doug Zongkerf93d8162009-09-22 15:16:02 -0700622 while (chosen_item < 0) {
Doug Zongker211aebc2011-10-28 15:13:10 -0700623 int key = ui->WaitKey();
624 int visible = ui->IsTextVisible();
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800625
Doug Zongker5cae4452011-01-25 13:15:30 -0800626 if (key == -1) { // ui_wait_key() timed out
Doug Zongker211aebc2011-10-28 15:13:10 -0700627 if (ui->WasTextEverVisible()) {
Doug Zongker5cae4452011-01-25 13:15:30 -0800628 continue;
629 } else {
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -0700630 LOG(INFO) << "timed out waiting for key input; rebooting.";
Doug Zongker211aebc2011-10-28 15:13:10 -0700631 ui->EndMenu();
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700632 return 0; // XXX fixme
Doug Zongker5cae4452011-01-25 13:15:30 -0800633 }
634 }
635
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700636 int action = device->HandleMenuKey(key, visible);
Doug Zongkerddd6a282009-06-09 12:22:33 -0700637
638 if (action < 0) {
639 switch (action) {
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700640 case Device::kHighlightUp:
Elliott Hughes642aaa72015-04-10 12:47:46 -0700641 selected = ui->SelectMenu(--selected);
Doug Zongkerddd6a282009-06-09 12:22:33 -0700642 break;
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700643 case Device::kHighlightDown:
Elliott Hughes642aaa72015-04-10 12:47:46 -0700644 selected = ui->SelectMenu(++selected);
Doug Zongkerddd6a282009-06-09 12:22:33 -0700645 break;
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700646 case Device::kInvokeItem:
Doug Zongkerddd6a282009-06-09 12:22:33 -0700647 chosen_item = selected;
648 break;
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700649 case Device::kNoAction:
Doug Zongkerddd6a282009-06-09 12:22:33 -0700650 break;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800651 }
Doug Zongkerf93d8162009-09-22 15:16:02 -0700652 } else if (!menu_only) {
Doug Zongkerddd6a282009-06-09 12:22:33 -0700653 chosen_item = action;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800654 }
Doug Zongkerf93d8162009-09-22 15:16:02 -0700655 }
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800656
Doug Zongker211aebc2011-10-28 15:13:10 -0700657 ui->EndMenu();
Doug Zongkerf93d8162009-09-22 15:16:02 -0700658 return chosen_item;
659}
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800660
Tao Baoc4a18ef2017-02-10 00:13:30 -0800661// Returns the selected filename, or an empty string.
662static std::string browse_directory(const std::string& path, Device* device) {
663 ensure_path_mounted(path.c_str());
Doug Zongker8674a722010-09-15 11:08:23 -0700664
Tao Baoc4a18ef2017-02-10 00:13:30 -0800665 std::unique_ptr<DIR, decltype(&closedir)> d(opendir(path.c_str()), closedir);
666 if (!d) {
667 PLOG(ERROR) << "error opening " << path;
668 return "";
669 }
Doug Zongkerc18eeb82010-09-21 16:49:26 -0700670
Tao Baoc4a18ef2017-02-10 00:13:30 -0800671 std::vector<std::string> dirs;
672 std::vector<std::string> zips = { "../" }; // "../" is always the first entry.
673
674 dirent* de;
675 while ((de = readdir(d.get())) != nullptr) {
676 std::string name(de->d_name);
677
678 if (de->d_type == DT_DIR) {
679 // Skip "." and ".." entries.
680 if (name == "." || name == "..") continue;
681 dirs.push_back(name + "/");
682 } else if (de->d_type == DT_REG && android::base::EndsWithIgnoreCase(name, ".zip")) {
683 zips.push_back(name);
684 }
685 }
686
687 std::sort(dirs.begin(), dirs.end());
688 std::sort(zips.begin(), zips.end());
689
690 // Append dirs to the zips list.
691 zips.insert(zips.end(), dirs.begin(), dirs.end());
692
693 const char* entries[zips.size() + 1];
694 entries[zips.size()] = nullptr;
695 for (size_t i = 0; i < zips.size(); i++) {
696 entries[i] = zips[i].c_str();
697 }
698
699 const char* headers[] = { "Choose a package to install:", path.c_str(), nullptr };
700
701 int chosen_item = 0;
702 while (true) {
703 chosen_item = get_menu_selection(headers, entries, 1, chosen_item, device);
704
705 const std::string& item = zips[chosen_item];
706 if (chosen_item == 0) {
707 // Go up but continue browsing (if the caller is browse_directory).
708 return "";
Doug Zongker8674a722010-09-15 11:08:23 -0700709 }
710
Tao Baoc4a18ef2017-02-10 00:13:30 -0800711 std::string new_path = path + "/" + item;
712 if (new_path.back() == '/') {
713 // Recurse down into a subdirectory.
714 new_path.pop_back();
715 std::string result = browse_directory(new_path, device);
716 if (!result.empty()) return result;
717 } else {
718 // Selected a zip file: return the path to the caller.
719 return new_path;
Doug Zongker8674a722010-09-15 11:08:23 -0700720 }
Tao Baoc4a18ef2017-02-10 00:13:30 -0800721 }
Doug Zongker8674a722010-09-15 11:08:23 -0700722
Tao Baoc4a18ef2017-02-10 00:13:30 -0800723 // Unreachable.
Doug Zongker8674a722010-09-15 11:08:23 -0700724}
725
Elliott Hughes30694c92015-03-25 15:16:51 -0700726static bool yes_no(Device* device, const char* question1, const char* question2) {
Elliott Hughes8fd86d72015-04-13 14:36:02 -0700727 const char* headers[] = { question1, question2, NULL };
Elliott Hughes30694c92015-03-25 15:16:51 -0700728 const char* items[] = { " No", " Yes", NULL };
Doug Zongkerddd6a282009-06-09 12:22:33 -0700729
Elliott Hughes30694c92015-03-25 15:16:51 -0700730 int chosen_item = get_menu_selection(headers, items, 1, 0, device);
731 return (chosen_item == 1);
732}
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800733
Paul Crowley08404b42016-12-19 13:04:23 -0800734static bool ask_to_wipe_data(Device* device) {
735 return yes_no(device, "Wipe all user data?", " THIS CAN NOT BE UNDONE!");
736}
Doug Zongker1066d2c2009-04-01 13:57:40 -0700737
Paul Crowley08404b42016-12-19 13:04:23 -0800738// Return true on success.
739static bool wipe_data(Device* device) {
Tao Bao682c34b2015-04-07 17:16:35 -0700740 modified_flash = true;
741
Doug Zongker211aebc2011-10-28 15:13:10 -0700742 ui->Print("\n-- Wiping data...\n");
Elliott Hughes945548e2015-06-05 17:59:56 -0700743 bool success =
744 device->PreWipeData() &&
745 erase_volume("/data") &&
Tao Bao26112e52016-02-25 12:29:40 -0800746 (has_cache ? erase_volume("/cache") : true) &&
Elliott Hughes945548e2015-06-05 17:59:56 -0700747 device->PostWipeData();
748 ui->Print("Data wipe %s.\n", success ? "complete" : "failed");
749 return success;
Doug Zongkerf93d8162009-09-22 15:16:02 -0700750}
751
Paul Crowley08404b42016-12-19 13:04:23 -0800752static bool prompt_and_wipe_data(Device* device) {
753 const char* const headers[] = {
754 "Boot halted, user data is corrupt",
755 "Wipe all user data to recover",
756 NULL
757 };
758 const char* const items[] = {
759 "Retry boot",
760 "Wipe user data",
761 NULL
762 };
763 for (;;) {
764 int chosen_item = get_menu_selection(headers, items, 1, 0, device);
765 if (chosen_item != 1) {
766 return true; // Just reboot, no wipe; not a failure, user asked for it
767 }
768 if (ask_to_wipe_data(device)) {
769 return wipe_data(device);
770 }
771 }
772}
773
Tao Baoe39a9bc2015-03-31 12:19:05 -0700774// Return true on success.
775static bool wipe_cache(bool should_confirm, Device* device) {
Tao Bao26112e52016-02-25 12:29:40 -0800776 if (!has_cache) {
777 ui->Print("No /cache partition found.\n");
778 return false;
779 }
780
Elliott Hughes30694c92015-03-25 15:16:51 -0700781 if (should_confirm && !yes_no(device, "Wipe cache?", " THIS CAN NOT BE UNDONE!")) {
Tao Baoe39a9bc2015-03-31 12:19:05 -0700782 return false;
Elliott Hughes30694c92015-03-25 15:16:51 -0700783 }
784
Tao Bao682c34b2015-04-07 17:16:35 -0700785 modified_flash = true;
786
Elliott Hughes30694c92015-03-25 15:16:51 -0700787 ui->Print("\n-- Wiping cache...\n");
Elliott Hughes945548e2015-06-05 17:59:56 -0700788 bool success = erase_volume("/cache");
789 ui->Print("Cache wipe %s.\n", success ? "complete" : "failed");
790 return success;
Elliott Hughes30694c92015-03-25 15:16:51 -0700791}
792
Tao Bao862a4c12016-06-02 11:16:50 -0700793// Secure-wipe a given partition. It uses BLKSECDISCARD, if supported.
794// Otherwise, it goes with BLKDISCARD (if device supports BLKDISCARDZEROES) or
795// BLKZEROOUT.
796static bool secure_wipe_partition(const std::string& partition) {
797 android::base::unique_fd fd(TEMP_FAILURE_RETRY(open(partition.c_str(), O_WRONLY)));
798 if (fd == -1) {
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -0700799 PLOG(ERROR) << "failed to open \"" << partition << "\"";
Tao Bao862a4c12016-06-02 11:16:50 -0700800 return false;
801 }
802
803 uint64_t range[2] = {0, 0};
804 if (ioctl(fd, BLKGETSIZE64, &range[1]) == -1 || range[1] == 0) {
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -0700805 PLOG(ERROR) << "failed to get partition size";
Tao Bao862a4c12016-06-02 11:16:50 -0700806 return false;
807 }
808 printf("Secure-wiping \"%s\" from %" PRIu64 " to %" PRIu64 ".\n",
809 partition.c_str(), range[0], range[1]);
810
811 printf("Trying BLKSECDISCARD...\t");
812 if (ioctl(fd, BLKSECDISCARD, &range) == -1) {
813 printf("failed: %s\n", strerror(errno));
814
815 // Use BLKDISCARD if it zeroes out blocks, otherwise use BLKZEROOUT.
816 unsigned int zeroes;
817 if (ioctl(fd, BLKDISCARDZEROES, &zeroes) == 0 && zeroes != 0) {
818 printf("Trying BLKDISCARD...\t");
819 if (ioctl(fd, BLKDISCARD, &range) == -1) {
820 printf("failed: %s\n", strerror(errno));
821 return false;
822 }
823 } else {
824 printf("Trying BLKZEROOUT...\t");
825 if (ioctl(fd, BLKZEROOUT, &range) == -1) {
826 printf("failed: %s\n", strerror(errno));
827 return false;
828 }
829 }
830 }
831
832 printf("done\n");
833 return true;
834}
835
Yabin Cuifd99a312016-06-09 14:09:39 -0700836// Check if the wipe package matches expectation:
837// 1. verify the package.
838// 2. check metadata (ota-type, pre-device and serial number if having one).
839static bool check_wipe_package(size_t wipe_package_size) {
840 if (wipe_package_size == 0) {
841 LOG(ERROR) << "wipe_package_size is zero";
842 return false;
843 }
844 std::string wipe_package;
845 std::string err_str;
846 if (!read_wipe_package(&wipe_package, wipe_package_size, &err_str)) {
847 PLOG(ERROR) << "Failed to read wipe package";
848 return false;
849 }
850 if (!verify_package(reinterpret_cast<const unsigned char*>(wipe_package.data()),
851 wipe_package.size())) {
852 LOG(ERROR) << "Failed to verify package";
853 return false;
854 }
855
856 // Extract metadata
857 ZipArchiveHandle zip;
Tao Baoefc35592017-01-08 22:45:47 -0800858 int err = OpenArchiveFromMemory(static_cast<void*>(&wipe_package[0]), wipe_package.size(),
859 "wipe_package", &zip);
Yabin Cuifd99a312016-06-09 14:09:39 -0700860 if (err != 0) {
861 LOG(ERROR) << "Can't open wipe package : " << ErrorCodeString(err);
862 return false;
863 }
864 std::string metadata;
865 if (!read_metadata_from_package(&zip, &metadata)) {
866 CloseArchive(zip);
867 return false;
868 }
869 CloseArchive(zip);
870
871 // Check metadata
872 std::vector<std::string> lines = android::base::Split(metadata, "\n");
873 bool ota_type_matched = false;
874 bool device_type_matched = false;
875 bool has_serial_number = false;
876 bool serial_number_matched = false;
877 for (const auto& line : lines) {
878 if (line == "ota-type=BRICK") {
879 ota_type_matched = true;
880 } else if (android::base::StartsWith(line, "pre-device=")) {
881 std::string device_type = line.substr(strlen("pre-device="));
Tao Baoefc35592017-01-08 22:45:47 -0800882 std::string real_device_type = android::base::GetProperty("ro.build.product", "");
Yabin Cuifd99a312016-06-09 14:09:39 -0700883 device_type_matched = (device_type == real_device_type);
884 } else if (android::base::StartsWith(line, "serialno=")) {
885 std::string serial_no = line.substr(strlen("serialno="));
Tao Baoefc35592017-01-08 22:45:47 -0800886 std::string real_serial_no = android::base::GetProperty("ro.serialno", "");
Yabin Cuifd99a312016-06-09 14:09:39 -0700887 has_serial_number = true;
888 serial_number_matched = (serial_no == real_serial_no);
889 }
890 }
891 return ota_type_matched && device_type_matched && (!has_serial_number || serial_number_matched);
892}
893
Yabin Cui8b309f62016-06-24 18:22:02 -0700894// Wipe the current A/B device, with a secure wipe of all the partitions in
895// RECOVERY_WIPE.
Yabin Cuifd99a312016-06-09 14:09:39 -0700896static bool wipe_ab_device(size_t wipe_package_size) {
Tao Bao862a4c12016-06-02 11:16:50 -0700897 ui->SetBackground(RecoveryUI::ERASING);
898 ui->SetProgressType(RecoveryUI::INDETERMINATE);
899
Yabin Cuifd99a312016-06-09 14:09:39 -0700900 if (!check_wipe_package(wipe_package_size)) {
901 LOG(ERROR) << "Failed to verify wipe package";
902 return false;
903 }
Tao Bao862a4c12016-06-02 11:16:50 -0700904 std::string partition_list;
Yabin Cui8b309f62016-06-24 18:22:02 -0700905 if (!android::base::ReadFileToString(RECOVERY_WIPE, &partition_list)) {
906 LOG(ERROR) << "failed to read \"" << RECOVERY_WIPE << "\"";
Tao Bao862a4c12016-06-02 11:16:50 -0700907 return false;
908 }
909
910 std::vector<std::string> lines = android::base::Split(partition_list, "\n");
911 for (const std::string& line : lines) {
912 std::string partition = android::base::Trim(line);
913 // Ignore '#' comment or empty lines.
914 if (android::base::StartsWith(partition, "#") || partition.empty()) {
915 continue;
916 }
917
918 // Proceed anyway even if it fails to wipe some partition.
919 secure_wipe_partition(partition);
920 }
921 return true;
922}
923
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700924static void choose_recovery_file(Device* device) {
Tao Bao08fc6be2017-03-07 00:56:27 -0800925 std::vector<std::string> entries;
926 if (has_cache) {
927 for (int i = 0; i < KEEP_LOG_COUNT; i++) {
928 auto add_to_entries = [&](const char* filename) {
929 std::string log_file(filename);
930 if (i > 0) {
931 log_file += "." + std::to_string(i);
Tao Baobef39712015-05-04 18:50:27 -0700932 }
Tao Bao08fc6be2017-03-07 00:56:27 -0800933
934 if (ensure_path_mounted(log_file.c_str()) == 0 && access(log_file.c_str(), R_OK) == 0) {
935 entries.push_back(std::move(log_file));
936 }
937 };
938
939 // Add LAST_LOG_FILE + LAST_LOG_FILE.x
940 add_to_entries(LAST_LOG_FILE);
941
942 // Add LAST_KMSG_FILE + LAST_KMSG_FILE.x
943 add_to_entries(LAST_KMSG_FILE);
944 }
945 } else {
946 // If cache partition is not found, view /tmp/recovery.log instead.
947 if (access(TEMPORARY_LOG_FILE, R_OK) == -1) {
948 return;
Tianjie Xua54f75e2016-08-17 12:02:46 -0700949 } else {
Tao Bao08fc6be2017-03-07 00:56:27 -0800950 entries.push_back(TEMPORARY_LOG_FILE);
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700951 }
Tao Bao08fc6be2017-03-07 00:56:27 -0800952 }
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700953
Tao Bao08fc6be2017-03-07 00:56:27 -0800954 entries.push_back("Back");
Elliott Hughesc0491632015-05-06 12:40:05 -0700955
Tao Bao08fc6be2017-03-07 00:56:27 -0800956 std::vector<const char*> menu_entries(entries.size());
957 std::transform(entries.cbegin(), entries.cend(), menu_entries.begin(),
958 [](const std::string& entry) { return entry.c_str(); });
959 menu_entries.push_back(nullptr);
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700960
Tao Bao08fc6be2017-03-07 00:56:27 -0800961 const char* headers[] = { "Select file to view", nullptr };
Elliott Hughes8de52072015-04-08 20:06:50 -0700962
Tao Bao08fc6be2017-03-07 00:56:27 -0800963 int chosen_item = 0;
964 while (true) {
965 chosen_item = get_menu_selection(headers, menu_entries.data(), 1, chosen_item, device);
966 if (entries[chosen_item] == "Back") break;
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700967
Tao Bao08fc6be2017-03-07 00:56:27 -0800968 ui->ShowFile(entries[chosen_item].c_str());
969 }
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700970}
971
Elliott Hughes498cda62016-04-14 16:49:04 -0700972static void run_graphics_test(Device* device) {
973 // Switch to graphics screen.
974 ui->ShowText(false);
975
976 ui->SetProgressType(RecoveryUI::INDETERMINATE);
977 ui->SetBackground(RecoveryUI::INSTALLING_UPDATE);
978 sleep(1);
979
980 ui->SetBackground(RecoveryUI::ERROR);
981 sleep(1);
982
983 ui->SetBackground(RecoveryUI::NO_COMMAND);
984 sleep(1);
985
986 ui->SetBackground(RecoveryUI::ERASING);
987 sleep(1);
988
989 ui->SetBackground(RecoveryUI::INSTALLING_UPDATE);
990
991 ui->SetProgressType(RecoveryUI::DETERMINATE);
992 ui->ShowProgress(1.0, 10.0);
993 float fraction = 0.0;
994 for (size_t i = 0; i < 100; ++i) {
995 fraction += .01;
996 ui->SetProgress(fraction);
997 usleep(100000);
998 }
999
1000 ui->ShowText(true);
1001}
1002
Tao Baocdcf28f2016-01-13 15:05:20 -08001003// How long (in seconds) we wait for the fuse-provided package file to
1004// appear, before timing out.
1005#define SDCARD_INSTALL_TIMEOUT 10
1006
Tao Bao145d8612015-03-25 15:51:15 -07001007static int apply_from_sdcard(Device* device, bool* wipe_cache) {
Tao Bao682c34b2015-04-07 17:16:35 -07001008 modified_flash = true;
1009
Christian Poetzsch4ec58a42015-02-19 10:42:39 +00001010 if (ensure_path_mounted(SDCARD_ROOT) != 0) {
1011 ui->Print("\n-- Couldn't mount %s.\n", SDCARD_ROOT);
1012 return INSTALL_ERROR;
1013 }
1014
Tao Baoc4a18ef2017-02-10 00:13:30 -08001015 std::string path = browse_directory(SDCARD_ROOT, device);
1016 if (path.empty()) {
Elliott Hughes018ed312015-04-08 16:51:36 -07001017 ui->Print("\n-- No package file selected.\n");
caozhiyuanb4effb92015-06-10 16:46:38 +08001018 ensure_path_unmounted(SDCARD_ROOT);
Christian Poetzsch4ec58a42015-02-19 10:42:39 +00001019 return INSTALL_ERROR;
1020 }
1021
Tao Baoc4a18ef2017-02-10 00:13:30 -08001022 ui->Print("\n-- Install %s ...\n", path.c_str());
Christian Poetzsch4ec58a42015-02-19 10:42:39 +00001023 set_sdcard_update_bootloader_message();
Christian Poetzsch4ec58a42015-02-19 10:42:39 +00001024
Tao Baocdcf28f2016-01-13 15:05:20 -08001025 // We used to use fuse in a thread as opposed to a process. Since accessing
1026 // through fuse involves going from kernel to userspace to kernel, it leads
1027 // to deadlock when a page fault occurs. (Bug: 26313124)
1028 pid_t child;
1029 if ((child = fork()) == 0) {
Tao Baoc4a18ef2017-02-10 00:13:30 -08001030 bool status = start_sdcard_fuse(path.c_str());
Tao Baocdcf28f2016-01-13 15:05:20 -08001031
1032 _exit(status ? EXIT_SUCCESS : EXIT_FAILURE);
1033 }
1034
1035 // FUSE_SIDELOAD_HOST_PATHNAME will start to exist once the fuse in child
1036 // process is ready.
1037 int result = INSTALL_ERROR;
1038 int status;
1039 bool waited = false;
1040 for (int i = 0; i < SDCARD_INSTALL_TIMEOUT; ++i) {
1041 if (waitpid(child, &status, WNOHANG) == -1) {
1042 result = INSTALL_ERROR;
1043 waited = true;
1044 break;
1045 }
1046
1047 struct stat sb;
1048 if (stat(FUSE_SIDELOAD_HOST_PATHNAME, &sb) == -1) {
1049 if (errno == ENOENT && i < SDCARD_INSTALL_TIMEOUT-1) {
1050 sleep(1);
1051 continue;
1052 } else {
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -07001053 LOG(ERROR) << "Timed out waiting for the fuse-provided package.";
Tao Baocdcf28f2016-01-13 15:05:20 -08001054 result = INSTALL_ERROR;
1055 kill(child, SIGKILL);
1056 break;
1057 }
1058 }
1059
1060 result = install_package(FUSE_SIDELOAD_HOST_PATHNAME, wipe_cache,
Tianjie Xu16255832016-04-30 11:49:59 -07001061 TEMPORARY_INSTALL_FILE, false, 0/*retry_count*/);
Tao Baocdcf28f2016-01-13 15:05:20 -08001062 break;
1063 }
Christian Poetzsch4ec58a42015-02-19 10:42:39 +00001064
Tao Baocdcf28f2016-01-13 15:05:20 -08001065 if (!waited) {
1066 // Calling stat() on this magic filename signals the fuse
1067 // filesystem to shut down.
1068 struct stat sb;
1069 stat(FUSE_SIDELOAD_HOST_EXIT_PATHNAME, &sb);
1070
1071 waitpid(child, &status, 0);
1072 }
1073
1074 if (!WIFEXITED(status) || WEXITSTATUS(status) != 0) {
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -07001075 LOG(ERROR) << "Error exit from the fuse process: " << WEXITSTATUS(status);
Tao Baocdcf28f2016-01-13 15:05:20 -08001076 }
1077
Christian Poetzsch4ec58a42015-02-19 10:42:39 +00001078 ensure_path_unmounted(SDCARD_ROOT);
Tao Baocdcf28f2016-01-13 15:05:20 -08001079 return result;
Christian Poetzsch4ec58a42015-02-19 10:42:39 +00001080}
1081
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001082// Return REBOOT, SHUTDOWN, or REBOOT_BOOTLOADER. Returning NO_ACTION
1083// means to take the default, which is to reboot or shutdown depending
1084// on if the --shutdown_after flag was passed to recovery.
1085static Device::BuiltinAction
Doug Zongker6c8553d2012-09-24 10:40:47 -07001086prompt_and_wait(Device* device, int status) {
Doug Zongkerf93d8162009-09-22 15:16:02 -07001087 for (;;) {
Tianjie Xuc14d95d2016-03-24 11:50:34 -07001088 finish_recovery();
Doug Zongker6c8553d2012-09-24 10:40:47 -07001089 switch (status) {
1090 case INSTALL_SUCCESS:
1091 case INSTALL_NONE:
1092 ui->SetBackground(RecoveryUI::NO_COMMAND);
1093 break;
1094
1095 case INSTALL_ERROR:
1096 case INSTALL_CORRUPT:
1097 ui->SetBackground(RecoveryUI::ERROR);
1098 break;
1099 }
Doug Zongker211aebc2011-10-28 15:13:10 -07001100 ui->SetProgressType(RecoveryUI::EMPTY);
Doug Zongkerf93d8162009-09-22 15:16:02 -07001101
Elliott Hughes8fd86d72015-04-13 14:36:02 -07001102 int chosen_item = get_menu_selection(nullptr, device->GetMenuItems(), 0, 0, device);
Doug Zongkerf93d8162009-09-22 15:16:02 -07001103
1104 // device-specific code may take some action here. It may
1105 // return one of the core actions handled in the switch
1106 // statement below.
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001107 Device::BuiltinAction chosen_action = device->InvokeMenuItem(chosen_item);
Doug Zongkerf93d8162009-09-22 15:16:02 -07001108
Elliott Hughes30694c92015-03-25 15:16:51 -07001109 bool should_wipe_cache = false;
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001110 switch (chosen_action) {
1111 case Device::NO_ACTION:
1112 break;
1113
Doug Zongkerdaefc1d2011-10-31 09:34:15 -07001114 case Device::REBOOT:
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001115 case Device::SHUTDOWN:
1116 case Device::REBOOT_BOOTLOADER:
1117 return chosen_action;
Doug Zongkerf93d8162009-09-22 15:16:02 -07001118
Doug Zongkerdaefc1d2011-10-31 09:34:15 -07001119 case Device::WIPE_DATA:
Paul Crowley08404b42016-12-19 13:04:23 -08001120 if (ui->IsTextVisible()) {
1121 if (ask_to_wipe_data(device)) {
1122 wipe_data(device);
1123 }
1124 } else {
1125 wipe_data(device);
1126 return Device::NO_ACTION;
1127 }
Doug Zongkerf93d8162009-09-22 15:16:02 -07001128 break;
1129
Doug Zongkerdaefc1d2011-10-31 09:34:15 -07001130 case Device::WIPE_CACHE:
Elliott Hughes30694c92015-03-25 15:16:51 -07001131 wipe_cache(ui->IsTextVisible(), device);
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001132 if (!ui->IsTextVisible()) return Device::NO_ACTION;
Doug Zongkerf93d8162009-09-22 15:16:02 -07001133 break;
1134
Christian Poetzsch4ec58a42015-02-19 10:42:39 +00001135 case Device::APPLY_ADB_SIDELOAD:
Elliott Hughesec283402015-04-10 10:01:53 -07001136 case Device::APPLY_SDCARD:
Christian Poetzsch4ec58a42015-02-19 10:42:39 +00001137 {
1138 bool adb = (chosen_action == Device::APPLY_ADB_SIDELOAD);
1139 if (adb) {
Elliott Hughes30694c92015-03-25 15:16:51 -07001140 status = apply_from_adb(ui, &should_wipe_cache, TEMPORARY_INSTALL_FILE);
Doug Zongkerd0181b82011-10-19 10:51:12 -07001141 } else {
Elliott Hughes30694c92015-03-25 15:16:51 -07001142 status = apply_from_sdcard(device, &should_wipe_cache);
Doug Zongkerd0181b82011-10-19 10:51:12 -07001143 }
Doug Zongker945fc682014-07-10 10:50:39 -07001144
Elliott Hughes30694c92015-03-25 15:16:51 -07001145 if (status == INSTALL_SUCCESS && should_wipe_cache) {
Tao Baoe39a9bc2015-03-31 12:19:05 -07001146 if (!wipe_cache(false, device)) {
1147 status = INSTALL_ERROR;
1148 }
Christian Poetzsch4ec58a42015-02-19 10:42:39 +00001149 }
1150
Tao Baoc679f932015-03-30 09:43:49 -07001151 if (status != INSTALL_SUCCESS) {
1152 ui->SetBackground(RecoveryUI::ERROR);
1153 ui->Print("Installation aborted.\n");
1154 copy_logs();
1155 } else if (!ui->IsTextVisible()) {
1156 return Device::NO_ACTION; // reboot if logs aren't visible
1157 } else {
1158 ui->Print("\nInstall from %s complete.\n", adb ? "ADB" : "SD card");
Doug Zongker8674a722010-09-15 11:08:23 -07001159 }
Doug Zongkerf93d8162009-09-22 15:16:02 -07001160 }
1161 break;
Doug Zongkerdaefc1d2011-10-31 09:34:15 -07001162
Elliott Hughesec283402015-04-10 10:01:53 -07001163 case Device::VIEW_RECOVERY_LOGS:
1164 choose_recovery_file(device);
Michael Ward9d2629c2011-06-23 22:14:24 -07001165 break;
Doug Zongker9270a202012-01-09 15:16:13 -08001166
Elliott Hughes498cda62016-04-14 16:49:04 -07001167 case Device::RUN_GRAPHICS_TEST:
1168 run_graphics_test(device);
1169 break;
1170
Elliott Hughesec283402015-04-10 10:01:53 -07001171 case Device::MOUNT_SYSTEM:
Tao Baoabb8f772015-07-30 14:43:27 -07001172 // For a system image built with the root directory (i.e.
1173 // system_root_image == "true"), we mount it to /system_root, and symlink /system
1174 // to /system_root/system to make adb shell work (the symlink is created through
1175 // the build system).
1176 // Bug: 22855115
Elliott Hughescb220402016-09-23 15:30:55 -07001177 if (android::base::GetBoolProperty("ro.build.system_root_image", false)) {
Tao Baoabb8f772015-07-30 14:43:27 -07001178 if (ensure_path_mounted_at("/", "/system_root") != -1) {
1179 ui->Print("Mounted /system.\n");
1180 }
1181 } else {
1182 if (ensure_path_mounted("/system") != -1) {
1183 ui->Print("Mounted /system.\n");
1184 }
Elliott Hughesec283402015-04-10 10:01:53 -07001185 }
Tao Baoabb8f772015-07-30 14:43:27 -07001186
Nick Kralevicha9ad0322014-10-22 18:38:48 -07001187 break;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001188 }
1189 }
1190}
1191
1192static void
Oscar Montemayor05231562009-11-30 08:40:57 -08001193print_property(const char *key, const char *name, void *cookie) {
Doug Zongker56c51052010-07-01 09:18:44 -07001194 printf("%s=%s\n", key, name);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001195}
1196
Tao Baoac9d94d2016-11-03 11:37:15 -07001197static std::string load_locale_from_cache() {
1198 if (ensure_path_mounted(LOCALE_FILE) != 0) {
1199 LOG(ERROR) << "Can't mount " << LOCALE_FILE;
1200 return "";
Doug Zongker02ec6b82012-08-22 17:26:40 -07001201 }
Tao Baoac9d94d2016-11-03 11:37:15 -07001202
1203 std::string content;
1204 if (!android::base::ReadFileToString(LOCALE_FILE, &content)) {
1205 PLOG(ERROR) << "Can't read " << LOCALE_FILE;
1206 return "";
1207 }
1208
1209 return android::base::Trim(content);
Doug Zongker02ec6b82012-08-22 17:26:40 -07001210}
1211
Tao Baoac9d94d2016-11-03 11:37:15 -07001212void ui_print(const char* format, ...) {
1213 std::string buffer;
Doug Zongker7c3ae452013-05-14 11:03:02 -07001214 va_list ap;
1215 va_start(ap, format);
Tao Baoac9d94d2016-11-03 11:37:15 -07001216 android::base::StringAppendV(&buffer, format, ap);
Doug Zongker7c3ae452013-05-14 11:03:02 -07001217 va_end(ap);
1218
Tao Baoac9d94d2016-11-03 11:37:15 -07001219 if (ui != nullptr) {
1220 ui->Print("%s", buffer.c_str());
Doug Zongker7c3ae452013-05-14 11:03:02 -07001221 } else {
Tao Baoac9d94d2016-11-03 11:37:15 -07001222 fputs(buffer.c_str(), stdout);
Doug Zongker7c3ae452013-05-14 11:03:02 -07001223 }
1224}
1225
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -07001226static constexpr char log_characters[] = "VDIWEF";
1227
1228void UiLogger(android::base::LogId id, android::base::LogSeverity severity,
1229 const char* tag, const char* file, unsigned int line,
1230 const char* message) {
Tao Baoac9d94d2016-11-03 11:37:15 -07001231 if (severity >= android::base::ERROR && ui != nullptr) {
1232 ui->Print("E:%s\n", message);
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -07001233 } else {
1234 fprintf(stdout, "%c:%s\n", log_characters[severity], message);
1235 }
1236}
1237
Yabin Cui99281df2016-02-17 12:21:52 -08001238static bool is_battery_ok() {
1239 struct healthd_config healthd_config = {
1240 .batteryStatusPath = android::String8(android::String8::kEmptyString),
1241 .batteryHealthPath = android::String8(android::String8::kEmptyString),
1242 .batteryPresentPath = android::String8(android::String8::kEmptyString),
1243 .batteryCapacityPath = android::String8(android::String8::kEmptyString),
1244 .batteryVoltagePath = android::String8(android::String8::kEmptyString),
1245 .batteryTemperaturePath = android::String8(android::String8::kEmptyString),
1246 .batteryTechnologyPath = android::String8(android::String8::kEmptyString),
1247 .batteryCurrentNowPath = android::String8(android::String8::kEmptyString),
1248 .batteryCurrentAvgPath = android::String8(android::String8::kEmptyString),
1249 .batteryChargeCounterPath = android::String8(android::String8::kEmptyString),
1250 .batteryFullChargePath = android::String8(android::String8::kEmptyString),
1251 .batteryCycleCountPath = android::String8(android::String8::kEmptyString),
1252 .energyCounter = NULL,
1253 .boot_min_cap = 0,
1254 .screen_on = NULL
1255 };
1256 healthd_board_init(&healthd_config);
1257
1258 android::BatteryMonitor monitor;
1259 monitor.init(&healthd_config);
1260
1261 int wait_second = 0;
1262 while (true) {
1263 int charge_status = monitor.getChargeStatus();
1264 // Treat unknown status as charged.
1265 bool charged = (charge_status != android::BATTERY_STATUS_DISCHARGING &&
1266 charge_status != android::BATTERY_STATUS_NOT_CHARGING);
1267 android::BatteryProperty capacity;
1268 android::status_t status = monitor.getProperty(android::BATTERY_PROP_CAPACITY, &capacity);
1269 ui_print("charge_status %d, charged %d, status %d, capacity %lld\n", charge_status,
1270 charged, status, capacity.valueInt64);
1271 // At startup, the battery drivers in devices like N5X/N6P take some time to load
1272 // the battery profile. Before the load finishes, it reports value 50 as a fake
1273 // capacity. BATTERY_READ_TIMEOUT_IN_SEC is set that the battery drivers are expected
1274 // to finish loading the battery profile earlier than 10 seconds after kernel startup.
1275 if (status == 0 && capacity.valueInt64 == 50) {
1276 if (wait_second < BATTERY_READ_TIMEOUT_IN_SEC) {
1277 sleep(1);
1278 wait_second++;
1279 continue;
1280 }
1281 }
1282 // If we can't read battery percentage, it may be a device without battery. In this
1283 // situation, use 100 as a fake battery percentage.
1284 if (status != 0) {
1285 capacity.valueInt64 = 100;
1286 }
1287 return (charged && capacity.valueInt64 >= BATTERY_WITH_CHARGER_OK_PERCENTAGE) ||
1288 (!charged && capacity.valueInt64 >= BATTERY_OK_PERCENTAGE);
1289 }
1290}
1291
Tianjie Xu3c62b672016-02-05 18:25:58 -08001292static void set_retry_bootloader_message(int retry_count, int argc, char** argv) {
Tianjie Xubd56f152016-09-28 16:32:10 -07001293 std::vector<std::string> options;
Tianjie Xu3c62b672016-02-05 18:25:58 -08001294 for (int i = 1; i < argc; ++i) {
1295 if (strstr(argv[i], "retry_count") == nullptr) {
Tianjie Xubd56f152016-09-28 16:32:10 -07001296 options.push_back(argv[i]);
Tianjie Xu3c62b672016-02-05 18:25:58 -08001297 }
1298 }
1299
Tianjie Xubd56f152016-09-28 16:32:10 -07001300 // Increment the retry counter by 1.
1301 options.push_back(android::base::StringPrintf("--retry_count=%d", retry_count+1));
Yabin Cui8b309f62016-06-24 18:22:02 -07001302 std::string err;
Tao Bao2292db82016-12-13 21:53:31 -08001303 if (!update_bootloader_message(options, &err)) {
Yabin Cui8b309f62016-06-24 18:22:02 -07001304 LOG(ERROR) << err;
1305 }
Tianjie Xu3c62b672016-02-05 18:25:58 -08001306}
1307
Tianjie Xu06e57ac2016-07-11 14:04:08 -07001308static bool bootreason_in_blacklist() {
Tao Baoefc35592017-01-08 22:45:47 -08001309 std::string bootreason = android::base::GetProperty("ro.boot.bootreason", "");
1310 if (!bootreason.empty()) {
1311 for (const auto& str : bootreason_blacklist) {
1312 if (strcasecmp(str.c_str(), bootreason.c_str()) == 0) {
1313 return true;
1314 }
Tianjie Xu06e57ac2016-07-11 14:04:08 -07001315 }
Tao Baoefc35592017-01-08 22:45:47 -08001316 }
1317 return false;
Tianjie Xu06e57ac2016-07-11 14:04:08 -07001318}
1319
1320static void log_failure_code(ErrorCode code, const char *update_package) {
1321 std::vector<std::string> log_buffer = {
1322 update_package,
1323 "0", // install result
1324 "error: " + std::to_string(code),
1325 };
1326 std::string log_content = android::base::Join(log_buffer, "\n");
1327 if (!android::base::WriteStringToFile(log_content, TEMPORARY_INSTALL_FILE)) {
Tao Baoac9d94d2016-11-03 11:37:15 -07001328 PLOG(ERROR) << "failed to write " << TEMPORARY_INSTALL_FILE;
Tianjie Xu06e57ac2016-07-11 14:04:08 -07001329 }
1330
1331 // Also write the info into last_log.
1332 LOG(INFO) << log_content;
1333}
1334
Yabin Cui99281df2016-02-17 12:21:52 -08001335int main(int argc, char **argv) {
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -07001336 // We don't have logcat yet under recovery; so we'll print error on screen and
1337 // log to stdout (which is redirected to recovery.log) as we used to do.
1338 android::base::InitLogging(argv, &UiLogger);
1339
Mark Salyzyna4f701a2016-03-09 14:58:16 -08001340 // Take last pmsg contents and rewrite it to the current pmsg session.
1341 static const char filter[] = "recovery/";
1342 // Do we need to rotate?
1343 bool doRotate = false;
Tianjie Xue113e4d2016-10-21 17:46:13 -07001344
Mark Salyzyna4f701a2016-03-09 14:58:16 -08001345 __android_log_pmsg_file_read(
1346 LOG_ID_SYSTEM, ANDROID_LOG_INFO, filter,
1347 logbasename, &doRotate);
1348 // Take action to refresh pmsg contents
1349 __android_log_pmsg_file_read(
1350 LOG_ID_SYSTEM, ANDROID_LOG_INFO, filter,
1351 logrotate, &doRotate);
1352
Doug Zongker9270a202012-01-09 15:16:13 -08001353 // If this binary is started with the single argument "--adbd",
1354 // instead of being the normal recovery binary, it turns into kind
1355 // of a stripped-down version of adbd that only supports the
1356 // 'sideload' command. Note this must be a real argument, not
1357 // anything in the command file or bootloader control block; the
1358 // only way recovery should be run with this argument is when it
1359 // starts a copy of itself from the apply_from_adb() function.
1360 if (argc == 2 && strcmp(argv[1], "--adbd") == 0) {
Josh Gaoacb2a2f2016-08-26 18:24:34 -07001361 minadbd_main();
Doug Zongker9270a202012-01-09 15:16:13 -08001362 return 0;
1363 }
1364
Tao Bao04ca4262015-09-10 15:32:24 -07001365 time_t start = time(NULL);
1366
1367 // redirect_stdio should be called only in non-sideload mode. Otherwise
1368 // we may have two logger instances with different timestamps.
1369 redirect_stdio(TEMPORARY_LOG_FILE);
1370
Doug Zongker19a8e242014-01-21 09:25:41 -08001371 printf("Starting recovery (pid %d) on %s", getpid(), ctime(&start));
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001372
Doug Zongkerd4208f92010-09-20 12:16:13 -07001373 load_volume_table();
Tao Bao26112e52016-02-25 12:29:40 -08001374 has_cache = volume_for_path(CACHE_ROOT) != nullptr;
1375
Tao Baof0ed1592016-12-02 11:32:19 -08001376 std::vector<std::string> args = get_args(argc, argv);
1377 std::vector<char*> args_to_parse(args.size());
1378 std::transform(args.cbegin(), args.cend(), args_to_parse.begin(),
1379 [](const std::string& arg) { return const_cast<char*>(arg.c_str()); });
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001380
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001381 const char *update_package = NULL;
Tao Baoe39a9bc2015-03-31 12:19:05 -07001382 bool should_wipe_data = false;
Paul Crowley08404b42016-12-19 13:04:23 -08001383 bool should_prompt_and_wipe_data = false;
Tao Baoc679f932015-03-30 09:43:49 -07001384 bool should_wipe_cache = false;
Yabin Cui8b309f62016-06-24 18:22:02 -07001385 bool should_wipe_ab = false;
Yabin Cuifd99a312016-06-09 14:09:39 -07001386 size_t wipe_package_size = 0;
Tao Bao145d8612015-03-25 15:51:15 -07001387 bool show_text = false;
Tao Baoc679f932015-03-30 09:43:49 -07001388 bool sideload = false;
1389 bool sideload_auto_reboot = false;
Doug Zongkere5d5ac72012-04-12 11:01:22 -07001390 bool just_exit = false;
Doug Zongkerb1d12632014-03-18 10:32:12 -07001391 bool shutdown_after = false;
Tianjie Xu3c62b672016-02-05 18:25:58 -08001392 int retry_count = 0;
Tianjie Xu35926c42016-04-28 18:06:26 -07001393 bool security_update = false;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001394
1395 int arg;
Tao Bao862a4c12016-06-02 11:16:50 -07001396 int option_index;
Tao Baof0ed1592016-12-02 11:32:19 -08001397 while ((arg = getopt_long(args_to_parse.size(), args_to_parse.data(), "", OPTIONS,
1398 &option_index)) != -1) {
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001399 switch (arg) {
Tianjie Xu3c62b672016-02-05 18:25:58 -08001400 case 'n': android::base::ParseInt(optarg, &retry_count, 0); break;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001401 case 'u': update_package = optarg; break;
Tao Baoe39a9bc2015-03-31 12:19:05 -07001402 case 'w': should_wipe_data = true; break;
Tao Baoc679f932015-03-30 09:43:49 -07001403 case 'c': should_wipe_cache = true; break;
Tao Bao145d8612015-03-25 15:51:15 -07001404 case 't': show_text = true; break;
Tao Baoc679f932015-03-30 09:43:49 -07001405 case 's': sideload = true; break;
1406 case 'a': sideload = true; sideload_auto_reboot = true; break;
Doug Zongkere5d5ac72012-04-12 11:01:22 -07001407 case 'x': just_exit = true; break;
Doug Zongker02ec6b82012-08-22 17:26:40 -07001408 case 'l': locale = optarg; break;
Doug Zongkerc87bab12013-11-25 13:53:25 -08001409 case 'g': {
1410 if (stage == NULL || *stage == '\0') {
1411 char buffer[20] = "1/";
1412 strncat(buffer, optarg, sizeof(buffer)-3);
1413 stage = strdup(buffer);
1414 }
1415 break;
1416 }
Doug Zongkerb1d12632014-03-18 10:32:12 -07001417 case 'p': shutdown_after = true; break;
Jeff Sharkeya6e13ae2014-09-24 11:46:17 -07001418 case 'r': reason = optarg; break;
Tianjie Xu35926c42016-04-28 18:06:26 -07001419 case 'e': security_update = true; break;
Tao Bao862a4c12016-06-02 11:16:50 -07001420 case 0: {
Paul Crowley08404b42016-12-19 13:04:23 -08001421 std::string option = OPTIONS[option_index].name;
1422 if (option == "wipe_ab") {
Yabin Cui8b309f62016-06-24 18:22:02 -07001423 should_wipe_ab = true;
Paul Crowley08404b42016-12-19 13:04:23 -08001424 } else if (option == "wipe_package_size") {
Yabin Cuifd99a312016-06-09 14:09:39 -07001425 android::base::ParseUint(optarg, &wipe_package_size);
Paul Crowley08404b42016-12-19 13:04:23 -08001426 } else if (option == "prompt_and_wipe_data") {
1427 should_prompt_and_wipe_data = true;
Tao Bao862a4c12016-06-02 11:16:50 -07001428 }
1429 break;
1430 }
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001431 case '?':
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -07001432 LOG(ERROR) << "Invalid command argument";
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001433 continue;
1434 }
1435 }
1436
Tao Baoac9d94d2016-11-03 11:37:15 -07001437 if (locale.empty()) {
1438 if (has_cache) {
1439 locale = load_locale_from_cache();
1440 }
1441
1442 if (locale.empty()) {
1443 locale = DEFAULT_LOCALE;
1444 }
Doug Zongker02ec6b82012-08-22 17:26:40 -07001445 }
Tao Baoac9d94d2016-11-03 11:37:15 -07001446
1447 printf("locale is [%s]\n", locale.c_str());
Doug Zongker0d32f252014-02-13 15:07:56 -08001448 printf("stage is [%s]\n", stage);
Jeff Sharkeya6e13ae2014-09-24 11:46:17 -07001449 printf("reason is [%s]\n", reason);
Doug Zongker02ec6b82012-08-22 17:26:40 -07001450
1451 Device* device = make_device();
1452 ui = device->GetUI();
1453
Tao Bao736d59c2017-01-03 10:15:33 -08001454 if (!ui->Init(locale)) {
Sen Jiangd5304492016-12-09 16:20:49 -08001455 printf("Failed to initialize UI, use stub UI instead.");
1456 ui = new StubRecoveryUI();
1457 }
Tianjie Xu35926c42016-04-28 18:06:26 -07001458 // Set background string to "installing security update" for security update,
1459 // otherwise set it to "installing system update".
1460 ui->SetSystemUpdateText(security_update);
Doug Zongkerc87bab12013-11-25 13:53:25 -08001461
1462 int st_cur, st_max;
1463 if (stage != NULL && sscanf(stage, "%d/%d", &st_cur, &st_max) == 2) {
1464 ui->SetStage(st_cur, st_max);
1465 }
1466
Doug Zongker02ec6b82012-08-22 17:26:40 -07001467 ui->SetBackground(RecoveryUI::NONE);
1468 if (show_text) ui->ShowText(true);
1469
Stephen Smalley779701d2012-02-09 14:13:23 -05001470 struct selinux_opt seopts[] = {
Tao Baoac9d94d2016-11-03 11:37:15 -07001471 { SELABEL_OPT_PATH, "/file_contexts" }
Stephen Smalley779701d2012-02-09 14:13:23 -05001472 };
1473
1474 sehandle = selabel_open(SELABEL_CTX_FILE, seopts, 1);
1475
1476 if (!sehandle) {
Doug Zongkerfafc85b2013-07-09 12:29:45 -07001477 ui->Print("Warning: No file_contexts\n");
Stephen Smalley779701d2012-02-09 14:13:23 -05001478 }
Stephen Smalley779701d2012-02-09 14:13:23 -05001479
Doug Zongkerdaefc1d2011-10-31 09:34:15 -07001480 device->StartRecovery();
Doug Zongkerefa1bab2010-02-01 15:59:12 -08001481
Doug Zongker56c51052010-07-01 09:18:44 -07001482 printf("Command:");
Tao Baof0ed1592016-12-02 11:32:19 -08001483 for (const auto& arg : args) {
1484 printf(" \"%s\"", arg.c_str());
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001485 }
Tao Baof038ca02016-12-10 09:24:50 -08001486 printf("\n\n");
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001487
1488 property_list(print_property, NULL);
Doug Zongker56c51052010-07-01 09:18:44 -07001489 printf("\n");
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001490
Elliott Hughesbb78d622015-04-09 20:51:08 -07001491 ui->Print("Supported API: %d\n", RECOVERY_API_VERSION);
1492
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001493 int status = INSTALL_SUCCESS;
1494
Doug Zongker540d57f2011-01-18 13:36:58 -08001495 if (update_package != NULL) {
Tao Bao56870012016-04-29 15:37:05 -07001496 // It's not entirely true that we will modify the flash. But we want
1497 // to log the update attempt since update_package is non-NULL.
1498 modified_flash = true;
1499
Yabin Cui99281df2016-02-17 12:21:52 -08001500 if (!is_battery_ok()) {
1501 ui->Print("battery capacity is not enough for installing package, needed is %d%%\n",
1502 BATTERY_OK_PERCENTAGE);
Tianjie Xu16255832016-04-30 11:49:59 -07001503 // Log the error code to last_install when installation skips due to
1504 // low battery.
Tianjie Xu06e57ac2016-07-11 14:04:08 -07001505 log_failure_code(kLowBattery, update_package);
1506 status = INSTALL_SKIPPED;
1507 } else if (bootreason_in_blacklist()) {
1508 // Skip update-on-reboot when bootreason is kernel_panic or similar
1509 ui->Print("bootreason is in the blacklist; skip OTA installation\n");
1510 log_failure_code(kBootreasonInBlacklist, update_package);
Yabin Cui99281df2016-02-17 12:21:52 -08001511 status = INSTALL_SKIPPED;
1512 } else {
1513 status = install_package(update_package, &should_wipe_cache,
Tianjie Xu16255832016-04-30 11:49:59 -07001514 TEMPORARY_INSTALL_FILE, true, retry_count);
Yabin Cui99281df2016-02-17 12:21:52 -08001515 if (status == INSTALL_SUCCESS && should_wipe_cache) {
1516 wipe_cache(false, device);
1517 }
1518 if (status != INSTALL_SUCCESS) {
1519 ui->Print("Installation aborted.\n");
Tianjie Xu3c62b672016-02-05 18:25:58 -08001520 // When I/O error happens, reboot and retry installation EIO_RETRY_COUNT
1521 // times before we abandon this OTA update.
1522 if (status == INSTALL_RETRY && retry_count < EIO_RETRY_COUNT) {
1523 copy_logs();
1524 set_retry_bootloader_message(retry_count, argc, argv);
1525 // Print retry count on screen.
1526 ui->Print("Retry attempt %d\n", retry_count);
Doug Zongker7c3ae452013-05-14 11:03:02 -07001527
Tianjie Xu3c62b672016-02-05 18:25:58 -08001528 // Reboot and retry the update
Elliott Hughescb220402016-09-23 15:30:55 -07001529 if (!android::base::SetProperty(ANDROID_RB_PROPERTY, "reboot,recovery")) {
Tianjie Xu3c62b672016-02-05 18:25:58 -08001530 ui->Print("Reboot failed\n");
1531 } else {
1532 while (true) {
1533 pause();
1534 }
1535 }
1536 }
Yabin Cui99281df2016-02-17 12:21:52 -08001537 // If this is an eng or userdebug build, then automatically
1538 // turn the text display on if the script fails so the error
1539 // message is visible.
1540 if (is_ro_debuggable()) {
1541 ui->ShowText(true);
1542 }
Doug Zongker7c3ae452013-05-14 11:03:02 -07001543 }
1544 }
Tao Baoe39a9bc2015-03-31 12:19:05 -07001545 } else if (should_wipe_data) {
Paul Crowley08404b42016-12-19 13:04:23 -08001546 if (!wipe_data(device)) {
Tao Baoe39a9bc2015-03-31 12:19:05 -07001547 status = INSTALL_ERROR;
1548 }
Paul Crowley08404b42016-12-19 13:04:23 -08001549 } else if (should_prompt_and_wipe_data) {
1550 ui->ShowText(true);
1551 ui->SetBackground(RecoveryUI::ERROR);
1552 if (!prompt_and_wipe_data(device)) {
1553 status = INSTALL_ERROR;
1554 }
1555 ui->ShowText(false);
Tao Baoc679f932015-03-30 09:43:49 -07001556 } else if (should_wipe_cache) {
Tao Baoe39a9bc2015-03-31 12:19:05 -07001557 if (!wipe_cache(false, device)) {
1558 status = INSTALL_ERROR;
1559 }
Yabin Cui8b309f62016-06-24 18:22:02 -07001560 } else if (should_wipe_ab) {
Yabin Cuifd99a312016-06-09 14:09:39 -07001561 if (!wipe_ab_device(wipe_package_size)) {
Tao Bao862a4c12016-06-02 11:16:50 -07001562 status = INSTALL_ERROR;
1563 }
Tao Baoc679f932015-03-30 09:43:49 -07001564 } else if (sideload) {
1565 // 'adb reboot sideload' acts the same as user presses key combinations
1566 // to enter the sideload mode. When 'sideload-auto-reboot' is used, text
1567 // display will NOT be turned on by default. And it will reboot after
1568 // sideload finishes even if there are errors. Unless one turns on the
1569 // text display during the installation. This is to enable automated
1570 // testing.
1571 if (!sideload_auto_reboot) {
1572 ui->ShowText(true);
1573 }
1574 status = apply_from_adb(ui, &should_wipe_cache, TEMPORARY_INSTALL_FILE);
1575 if (status == INSTALL_SUCCESS && should_wipe_cache) {
Tao Baoe39a9bc2015-03-31 12:19:05 -07001576 if (!wipe_cache(false, device)) {
1577 status = INSTALL_ERROR;
1578 }
Tao Baoc679f932015-03-30 09:43:49 -07001579 }
1580 ui->Print("\nInstall from ADB complete (status: %d).\n", status);
1581 if (sideload_auto_reboot) {
1582 ui->Print("Rebooting automatically.\n");
1583 }
Doug Zongkere5d5ac72012-04-12 11:01:22 -07001584 } else if (!just_exit) {
Doug Zongker02ec6b82012-08-22 17:26:40 -07001585 status = INSTALL_NONE; // No command specified
1586 ui->SetBackground(RecoveryUI::NO_COMMAND);
Tao Bao785d22c2015-05-04 09:34:29 -07001587
1588 // http://b/17489952
1589 // If this is an eng or userdebug build, automatically turn on the
1590 // text display if no command is specified.
1591 if (is_ro_debuggable()) {
1592 ui->ShowText(true);
1593 }
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001594 }
1595
Tao Baoc679f932015-03-30 09:43:49 -07001596 if (!sideload_auto_reboot && (status == INSTALL_ERROR || status == INSTALL_CORRUPT)) {
Doug Zongkerf24fd7e2013-07-02 11:43:25 -07001597 copy_logs();
Doug Zongker02ec6b82012-08-22 17:26:40 -07001598 ui->SetBackground(RecoveryUI::ERROR);
1599 }
Tao Baoc679f932015-03-30 09:43:49 -07001600
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001601 Device::BuiltinAction after = shutdown_after ? Device::SHUTDOWN : Device::REBOOT;
Yabin Cui99281df2016-02-17 12:21:52 -08001602 if ((status != INSTALL_SUCCESS && status != INSTALL_SKIPPED && !sideload_auto_reboot) ||
1603 ui->IsTextVisible()) {
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001604 Device::BuiltinAction temp = prompt_and_wait(device, status);
Tao Baoc679f932015-03-30 09:43:49 -07001605 if (temp != Device::NO_ACTION) {
1606 after = temp;
1607 }
Doug Zongker8674a722010-09-15 11:08:23 -07001608 }
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001609
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001610 // Save logs and clean up before rebooting or shutting down.
Tianjie Xuc14d95d2016-03-24 11:50:34 -07001611 finish_recovery();
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001612
1613 switch (after) {
1614 case Device::SHUTDOWN:
1615 ui->Print("Shutting down...\n");
Elliott Hughescb220402016-09-23 15:30:55 -07001616 android::base::SetProperty(ANDROID_RB_PROPERTY, "shutdown,");
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001617 break;
1618
1619 case Device::REBOOT_BOOTLOADER:
1620 ui->Print("Rebooting to bootloader...\n");
Elliott Hughescb220402016-09-23 15:30:55 -07001621 android::base::SetProperty(ANDROID_RB_PROPERTY, "reboot,bootloader");
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001622 break;
1623
1624 default:
1625 ui->Print("Rebooting...\n");
Elliott Hughescb220402016-09-23 15:30:55 -07001626 android::base::SetProperty(ANDROID_RB_PROPERTY, "reboot,");
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001627 break;
Doug Zongkerb1d12632014-03-18 10:32:12 -07001628 }
Tao Bao75238632015-05-27 14:46:17 -07001629 while (true) {
Tao Baoac9d94d2016-11-03 11:37:15 -07001630 pause();
Tao Bao75238632015-05-27 14:46:17 -07001631 }
1632 // Should be unreachable.
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001633 return EXIT_SUCCESS;
1634}