blob: ff808998c072300fcd5881f1840c0f77f7856e12 [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) {
Elliott Hughesc0491632015-05-06 12:40:05 -0700925 // "Back" + KEEP_LOG_COUNT * 2 + terminating nullptr entry
926 char* entries[1 + KEEP_LOG_COUNT * 2 + 1];
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700927 memset(entries, 0, sizeof(entries));
928
Tao Baobef39712015-05-04 18:50:27 -0700929 unsigned int n = 0;
Patrick Tjincd055ee2014-12-09 11:26:40 -0800930
Tianjie Xua54f75e2016-08-17 12:02:46 -0700931 if (has_cache) {
932 // Add LAST_LOG_FILE + LAST_LOG_FILE.x
933 // Add LAST_KMSG_FILE + LAST_KMSG_FILE.x
934 for (int i = 0; i < KEEP_LOG_COUNT; i++) {
935 char* log_file;
936 int ret;
937 ret = (i == 0) ? asprintf(&log_file, "%s", LAST_LOG_FILE) :
938 asprintf(&log_file, "%s.%d", LAST_LOG_FILE, i);
939 if (ret == -1) {
940 // memory allocation failure - return early. Should never happen.
941 return;
942 }
943 if ((ensure_path_mounted(log_file) != 0) || (access(log_file, R_OK) == -1)) {
944 free(log_file);
945 } else {
946 entries[n++] = log_file;
947 }
Tao Baobef39712015-05-04 18:50:27 -0700948
Tianjie Xua54f75e2016-08-17 12:02:46 -0700949 char* kmsg_file;
950 ret = (i == 0) ? asprintf(&kmsg_file, "%s", LAST_KMSG_FILE) :
951 asprintf(&kmsg_file, "%s.%d", LAST_KMSG_FILE, i);
952 if (ret == -1) {
953 // memory allocation failure - return early. Should never happen.
954 return;
955 }
956 if ((ensure_path_mounted(kmsg_file) != 0) || (access(kmsg_file, R_OK) == -1)) {
957 free(kmsg_file);
958 } else {
959 entries[n++] = kmsg_file;
960 }
Tao Baobef39712015-05-04 18:50:27 -0700961 }
Tianjie Xua54f75e2016-08-17 12:02:46 -0700962 } else {
963 // If cache partition is not found, view /tmp/recovery.log instead.
Tianjie Xua54f75e2016-08-17 12:02:46 -0700964 if (access(TEMPORARY_LOG_FILE, R_OK) == -1) {
965 return;
966 } else{
967 entries[n++] = strdup(TEMPORARY_LOG_FILE);
Tao Baobef39712015-05-04 18:50:27 -0700968 }
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700969 }
970
Elliott Hughesc0491632015-05-06 12:40:05 -0700971 entries[n++] = strdup("Back");
972
Tao Baobef39712015-05-04 18:50:27 -0700973 const char* headers[] = { "Select file to view", nullptr };
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700974
Tao Baoc9447cc2017-02-14 10:37:41 -0800975 int chosen_item = 0;
Elliott Hughes8de52072015-04-08 20:06:50 -0700976 while (true) {
Tao Baoc9447cc2017-02-14 10:37:41 -0800977 chosen_item = get_menu_selection(headers, entries, 1, chosen_item, device);
Elliott Hughesc0491632015-05-06 12:40:05 -0700978 if (strcmp(entries[chosen_item], "Back") == 0) break;
Elliott Hughes8de52072015-04-08 20:06:50 -0700979
Elliott Hughes8de52072015-04-08 20:06:50 -0700980 ui->ShowFile(entries[chosen_item]);
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700981 }
982
Tao Baobef39712015-05-04 18:50:27 -0700983 for (size_t i = 0; i < (sizeof(entries) / sizeof(*entries)); i++) {
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700984 free(entries[i]);
985 }
986}
987
Tao Baodb7e8982017-03-06 23:53:16 -0800988static void run_graphics_test() {
989 // Switch to graphics screen.
990 ui->ShowText(false);
Elliott Hughes498cda62016-04-14 16:49:04 -0700991
Tao Baodb7e8982017-03-06 23:53:16 -0800992 ui->SetProgressType(RecoveryUI::INDETERMINATE);
993 ui->SetBackground(RecoveryUI::INSTALLING_UPDATE);
994 sleep(1);
Elliott Hughes498cda62016-04-14 16:49:04 -0700995
Tao Baodb7e8982017-03-06 23:53:16 -0800996 ui->SetBackground(RecoveryUI::ERROR);
997 sleep(1);
Elliott Hughes498cda62016-04-14 16:49:04 -0700998
Tao Baodb7e8982017-03-06 23:53:16 -0800999 ui->SetBackground(RecoveryUI::NO_COMMAND);
1000 sleep(1);
Elliott Hughes498cda62016-04-14 16:49:04 -07001001
Tao Baodb7e8982017-03-06 23:53:16 -08001002 ui->SetBackground(RecoveryUI::ERASING);
1003 sleep(1);
Elliott Hughes498cda62016-04-14 16:49:04 -07001004
Tao Baodb7e8982017-03-06 23:53:16 -08001005 // Calling SetBackground() after SetStage() to trigger a redraw.
1006 ui->SetStage(1, 3);
1007 ui->SetBackground(RecoveryUI::INSTALLING_UPDATE);
1008 sleep(1);
1009 ui->SetStage(2, 3);
1010 ui->SetBackground(RecoveryUI::INSTALLING_UPDATE);
1011 sleep(1);
1012 ui->SetStage(3, 3);
1013 ui->SetBackground(RecoveryUI::INSTALLING_UPDATE);
1014 sleep(1);
Elliott Hughes498cda62016-04-14 16:49:04 -07001015
Tao Baodb7e8982017-03-06 23:53:16 -08001016 ui->SetStage(-1, -1);
1017 ui->SetBackground(RecoveryUI::INSTALLING_UPDATE);
Elliott Hughes498cda62016-04-14 16:49:04 -07001018
Tao Baodb7e8982017-03-06 23:53:16 -08001019 ui->SetProgressType(RecoveryUI::DETERMINATE);
1020 ui->ShowProgress(1.0, 10.0);
1021 float fraction = 0.0;
1022 for (size_t i = 0; i < 100; ++i) {
1023 fraction += .01;
1024 ui->SetProgress(fraction);
1025 usleep(100000);
1026 }
1027
1028 ui->ShowText(true);
Elliott Hughes498cda62016-04-14 16:49:04 -07001029}
1030
Tao Baocdcf28f2016-01-13 15:05:20 -08001031// How long (in seconds) we wait for the fuse-provided package file to
1032// appear, before timing out.
1033#define SDCARD_INSTALL_TIMEOUT 10
1034
Tao Bao145d8612015-03-25 15:51:15 -07001035static int apply_from_sdcard(Device* device, bool* wipe_cache) {
Tao Bao682c34b2015-04-07 17:16:35 -07001036 modified_flash = true;
1037
Christian Poetzsch4ec58a42015-02-19 10:42:39 +00001038 if (ensure_path_mounted(SDCARD_ROOT) != 0) {
1039 ui->Print("\n-- Couldn't mount %s.\n", SDCARD_ROOT);
1040 return INSTALL_ERROR;
1041 }
1042
Tao Baoc4a18ef2017-02-10 00:13:30 -08001043 std::string path = browse_directory(SDCARD_ROOT, device);
1044 if (path.empty()) {
Elliott Hughes018ed312015-04-08 16:51:36 -07001045 ui->Print("\n-- No package file selected.\n");
caozhiyuanb4effb92015-06-10 16:46:38 +08001046 ensure_path_unmounted(SDCARD_ROOT);
Christian Poetzsch4ec58a42015-02-19 10:42:39 +00001047 return INSTALL_ERROR;
1048 }
1049
Tao Baoc4a18ef2017-02-10 00:13:30 -08001050 ui->Print("\n-- Install %s ...\n", path.c_str());
Christian Poetzsch4ec58a42015-02-19 10:42:39 +00001051 set_sdcard_update_bootloader_message();
Christian Poetzsch4ec58a42015-02-19 10:42:39 +00001052
Tao Baocdcf28f2016-01-13 15:05:20 -08001053 // We used to use fuse in a thread as opposed to a process. Since accessing
1054 // through fuse involves going from kernel to userspace to kernel, it leads
1055 // to deadlock when a page fault occurs. (Bug: 26313124)
1056 pid_t child;
1057 if ((child = fork()) == 0) {
Tao Baoc4a18ef2017-02-10 00:13:30 -08001058 bool status = start_sdcard_fuse(path.c_str());
Tao Baocdcf28f2016-01-13 15:05:20 -08001059
1060 _exit(status ? EXIT_SUCCESS : EXIT_FAILURE);
1061 }
1062
1063 // FUSE_SIDELOAD_HOST_PATHNAME will start to exist once the fuse in child
1064 // process is ready.
1065 int result = INSTALL_ERROR;
1066 int status;
1067 bool waited = false;
1068 for (int i = 0; i < SDCARD_INSTALL_TIMEOUT; ++i) {
1069 if (waitpid(child, &status, WNOHANG) == -1) {
1070 result = INSTALL_ERROR;
1071 waited = true;
1072 break;
1073 }
1074
1075 struct stat sb;
1076 if (stat(FUSE_SIDELOAD_HOST_PATHNAME, &sb) == -1) {
1077 if (errno == ENOENT && i < SDCARD_INSTALL_TIMEOUT-1) {
1078 sleep(1);
1079 continue;
1080 } else {
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -07001081 LOG(ERROR) << "Timed out waiting for the fuse-provided package.";
Tao Baocdcf28f2016-01-13 15:05:20 -08001082 result = INSTALL_ERROR;
1083 kill(child, SIGKILL);
1084 break;
1085 }
1086 }
1087
1088 result = install_package(FUSE_SIDELOAD_HOST_PATHNAME, wipe_cache,
Tianjie Xu16255832016-04-30 11:49:59 -07001089 TEMPORARY_INSTALL_FILE, false, 0/*retry_count*/);
Tao Baocdcf28f2016-01-13 15:05:20 -08001090 break;
1091 }
Christian Poetzsch4ec58a42015-02-19 10:42:39 +00001092
Tao Baocdcf28f2016-01-13 15:05:20 -08001093 if (!waited) {
1094 // Calling stat() on this magic filename signals the fuse
1095 // filesystem to shut down.
1096 struct stat sb;
1097 stat(FUSE_SIDELOAD_HOST_EXIT_PATHNAME, &sb);
1098
1099 waitpid(child, &status, 0);
1100 }
1101
1102 if (!WIFEXITED(status) || WEXITSTATUS(status) != 0) {
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -07001103 LOG(ERROR) << "Error exit from the fuse process: " << WEXITSTATUS(status);
Tao Baocdcf28f2016-01-13 15:05:20 -08001104 }
1105
Christian Poetzsch4ec58a42015-02-19 10:42:39 +00001106 ensure_path_unmounted(SDCARD_ROOT);
Tao Baocdcf28f2016-01-13 15:05:20 -08001107 return result;
Christian Poetzsch4ec58a42015-02-19 10:42:39 +00001108}
1109
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001110// Return REBOOT, SHUTDOWN, or REBOOT_BOOTLOADER. Returning NO_ACTION
1111// means to take the default, which is to reboot or shutdown depending
1112// on if the --shutdown_after flag was passed to recovery.
1113static Device::BuiltinAction
Doug Zongker6c8553d2012-09-24 10:40:47 -07001114prompt_and_wait(Device* device, int status) {
Doug Zongkerf93d8162009-09-22 15:16:02 -07001115 for (;;) {
Tianjie Xuc14d95d2016-03-24 11:50:34 -07001116 finish_recovery();
Doug Zongker6c8553d2012-09-24 10:40:47 -07001117 switch (status) {
1118 case INSTALL_SUCCESS:
1119 case INSTALL_NONE:
1120 ui->SetBackground(RecoveryUI::NO_COMMAND);
1121 break;
1122
1123 case INSTALL_ERROR:
1124 case INSTALL_CORRUPT:
1125 ui->SetBackground(RecoveryUI::ERROR);
1126 break;
1127 }
Doug Zongker211aebc2011-10-28 15:13:10 -07001128 ui->SetProgressType(RecoveryUI::EMPTY);
Doug Zongkerf93d8162009-09-22 15:16:02 -07001129
Elliott Hughes8fd86d72015-04-13 14:36:02 -07001130 int chosen_item = get_menu_selection(nullptr, device->GetMenuItems(), 0, 0, device);
Doug Zongkerf93d8162009-09-22 15:16:02 -07001131
1132 // device-specific code may take some action here. It may
1133 // return one of the core actions handled in the switch
1134 // statement below.
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001135 Device::BuiltinAction chosen_action = device->InvokeMenuItem(chosen_item);
Doug Zongkerf93d8162009-09-22 15:16:02 -07001136
Elliott Hughes30694c92015-03-25 15:16:51 -07001137 bool should_wipe_cache = false;
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001138 switch (chosen_action) {
1139 case Device::NO_ACTION:
1140 break;
1141
Doug Zongkerdaefc1d2011-10-31 09:34:15 -07001142 case Device::REBOOT:
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001143 case Device::SHUTDOWN:
1144 case Device::REBOOT_BOOTLOADER:
1145 return chosen_action;
Doug Zongkerf93d8162009-09-22 15:16:02 -07001146
Doug Zongkerdaefc1d2011-10-31 09:34:15 -07001147 case Device::WIPE_DATA:
Paul Crowley08404b42016-12-19 13:04:23 -08001148 if (ui->IsTextVisible()) {
1149 if (ask_to_wipe_data(device)) {
1150 wipe_data(device);
1151 }
1152 } else {
1153 wipe_data(device);
1154 return Device::NO_ACTION;
1155 }
Doug Zongkerf93d8162009-09-22 15:16:02 -07001156 break;
1157
Doug Zongkerdaefc1d2011-10-31 09:34:15 -07001158 case Device::WIPE_CACHE:
Elliott Hughes30694c92015-03-25 15:16:51 -07001159 wipe_cache(ui->IsTextVisible(), device);
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001160 if (!ui->IsTextVisible()) return Device::NO_ACTION;
Doug Zongkerf93d8162009-09-22 15:16:02 -07001161 break;
1162
Christian Poetzsch4ec58a42015-02-19 10:42:39 +00001163 case Device::APPLY_ADB_SIDELOAD:
Elliott Hughesec283402015-04-10 10:01:53 -07001164 case Device::APPLY_SDCARD:
Christian Poetzsch4ec58a42015-02-19 10:42:39 +00001165 {
1166 bool adb = (chosen_action == Device::APPLY_ADB_SIDELOAD);
1167 if (adb) {
Elliott Hughes30694c92015-03-25 15:16:51 -07001168 status = apply_from_adb(ui, &should_wipe_cache, TEMPORARY_INSTALL_FILE);
Doug Zongkerd0181b82011-10-19 10:51:12 -07001169 } else {
Elliott Hughes30694c92015-03-25 15:16:51 -07001170 status = apply_from_sdcard(device, &should_wipe_cache);
Doug Zongkerd0181b82011-10-19 10:51:12 -07001171 }
Doug Zongker945fc682014-07-10 10:50:39 -07001172
Elliott Hughes30694c92015-03-25 15:16:51 -07001173 if (status == INSTALL_SUCCESS && should_wipe_cache) {
Tao Baoe39a9bc2015-03-31 12:19:05 -07001174 if (!wipe_cache(false, device)) {
1175 status = INSTALL_ERROR;
1176 }
Christian Poetzsch4ec58a42015-02-19 10:42:39 +00001177 }
1178
Tao Baoc679f932015-03-30 09:43:49 -07001179 if (status != INSTALL_SUCCESS) {
1180 ui->SetBackground(RecoveryUI::ERROR);
1181 ui->Print("Installation aborted.\n");
1182 copy_logs();
1183 } else if (!ui->IsTextVisible()) {
1184 return Device::NO_ACTION; // reboot if logs aren't visible
1185 } else {
1186 ui->Print("\nInstall from %s complete.\n", adb ? "ADB" : "SD card");
Doug Zongker8674a722010-09-15 11:08:23 -07001187 }
Doug Zongkerf93d8162009-09-22 15:16:02 -07001188 }
1189 break;
Doug Zongkerdaefc1d2011-10-31 09:34:15 -07001190
Elliott Hughesec283402015-04-10 10:01:53 -07001191 case Device::VIEW_RECOVERY_LOGS:
1192 choose_recovery_file(device);
Michael Ward9d2629c2011-06-23 22:14:24 -07001193 break;
Doug Zongker9270a202012-01-09 15:16:13 -08001194
Elliott Hughes498cda62016-04-14 16:49:04 -07001195 case Device::RUN_GRAPHICS_TEST:
Tao Baodb7e8982017-03-06 23:53:16 -08001196 run_graphics_test();
Elliott Hughes498cda62016-04-14 16:49:04 -07001197 break;
1198
Elliott Hughesec283402015-04-10 10:01:53 -07001199 case Device::MOUNT_SYSTEM:
Tao Baoabb8f772015-07-30 14:43:27 -07001200 // For a system image built with the root directory (i.e.
1201 // system_root_image == "true"), we mount it to /system_root, and symlink /system
1202 // to /system_root/system to make adb shell work (the symlink is created through
1203 // the build system).
1204 // Bug: 22855115
Elliott Hughescb220402016-09-23 15:30:55 -07001205 if (android::base::GetBoolProperty("ro.build.system_root_image", false)) {
Tao Baoabb8f772015-07-30 14:43:27 -07001206 if (ensure_path_mounted_at("/", "/system_root") != -1) {
1207 ui->Print("Mounted /system.\n");
1208 }
1209 } else {
1210 if (ensure_path_mounted("/system") != -1) {
1211 ui->Print("Mounted /system.\n");
1212 }
Elliott Hughesec283402015-04-10 10:01:53 -07001213 }
Tao Baoabb8f772015-07-30 14:43:27 -07001214
Nick Kralevicha9ad0322014-10-22 18:38:48 -07001215 break;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001216 }
1217 }
1218}
1219
1220static void
Oscar Montemayor05231562009-11-30 08:40:57 -08001221print_property(const char *key, const char *name, void *cookie) {
Doug Zongker56c51052010-07-01 09:18:44 -07001222 printf("%s=%s\n", key, name);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001223}
1224
Tao Baoac9d94d2016-11-03 11:37:15 -07001225static std::string load_locale_from_cache() {
1226 if (ensure_path_mounted(LOCALE_FILE) != 0) {
1227 LOG(ERROR) << "Can't mount " << LOCALE_FILE;
1228 return "";
Doug Zongker02ec6b82012-08-22 17:26:40 -07001229 }
Tao Baoac9d94d2016-11-03 11:37:15 -07001230
1231 std::string content;
1232 if (!android::base::ReadFileToString(LOCALE_FILE, &content)) {
1233 PLOG(ERROR) << "Can't read " << LOCALE_FILE;
1234 return "";
1235 }
1236
1237 return android::base::Trim(content);
Doug Zongker02ec6b82012-08-22 17:26:40 -07001238}
1239
Tao Baoac9d94d2016-11-03 11:37:15 -07001240void ui_print(const char* format, ...) {
1241 std::string buffer;
Doug Zongker7c3ae452013-05-14 11:03:02 -07001242 va_list ap;
1243 va_start(ap, format);
Tao Baoac9d94d2016-11-03 11:37:15 -07001244 android::base::StringAppendV(&buffer, format, ap);
Doug Zongker7c3ae452013-05-14 11:03:02 -07001245 va_end(ap);
1246
Tao Baoac9d94d2016-11-03 11:37:15 -07001247 if (ui != nullptr) {
1248 ui->Print("%s", buffer.c_str());
Doug Zongker7c3ae452013-05-14 11:03:02 -07001249 } else {
Tao Baoac9d94d2016-11-03 11:37:15 -07001250 fputs(buffer.c_str(), stdout);
Doug Zongker7c3ae452013-05-14 11:03:02 -07001251 }
1252}
1253
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -07001254static constexpr char log_characters[] = "VDIWEF";
1255
1256void UiLogger(android::base::LogId id, android::base::LogSeverity severity,
1257 const char* tag, const char* file, unsigned int line,
1258 const char* message) {
Tao Baoac9d94d2016-11-03 11:37:15 -07001259 if (severity >= android::base::ERROR && ui != nullptr) {
1260 ui->Print("E:%s\n", message);
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -07001261 } else {
1262 fprintf(stdout, "%c:%s\n", log_characters[severity], message);
1263 }
1264}
1265
Yabin Cui99281df2016-02-17 12:21:52 -08001266static bool is_battery_ok() {
1267 struct healthd_config healthd_config = {
1268 .batteryStatusPath = android::String8(android::String8::kEmptyString),
1269 .batteryHealthPath = android::String8(android::String8::kEmptyString),
1270 .batteryPresentPath = android::String8(android::String8::kEmptyString),
1271 .batteryCapacityPath = android::String8(android::String8::kEmptyString),
1272 .batteryVoltagePath = android::String8(android::String8::kEmptyString),
1273 .batteryTemperaturePath = android::String8(android::String8::kEmptyString),
1274 .batteryTechnologyPath = android::String8(android::String8::kEmptyString),
1275 .batteryCurrentNowPath = android::String8(android::String8::kEmptyString),
1276 .batteryCurrentAvgPath = android::String8(android::String8::kEmptyString),
1277 .batteryChargeCounterPath = android::String8(android::String8::kEmptyString),
1278 .batteryFullChargePath = android::String8(android::String8::kEmptyString),
1279 .batteryCycleCountPath = android::String8(android::String8::kEmptyString),
1280 .energyCounter = NULL,
1281 .boot_min_cap = 0,
1282 .screen_on = NULL
1283 };
1284 healthd_board_init(&healthd_config);
1285
1286 android::BatteryMonitor monitor;
1287 monitor.init(&healthd_config);
1288
1289 int wait_second = 0;
1290 while (true) {
1291 int charge_status = monitor.getChargeStatus();
1292 // Treat unknown status as charged.
1293 bool charged = (charge_status != android::BATTERY_STATUS_DISCHARGING &&
1294 charge_status != android::BATTERY_STATUS_NOT_CHARGING);
1295 android::BatteryProperty capacity;
1296 android::status_t status = monitor.getProperty(android::BATTERY_PROP_CAPACITY, &capacity);
1297 ui_print("charge_status %d, charged %d, status %d, capacity %lld\n", charge_status,
1298 charged, status, capacity.valueInt64);
1299 // At startup, the battery drivers in devices like N5X/N6P take some time to load
1300 // the battery profile. Before the load finishes, it reports value 50 as a fake
1301 // capacity. BATTERY_READ_TIMEOUT_IN_SEC is set that the battery drivers are expected
1302 // to finish loading the battery profile earlier than 10 seconds after kernel startup.
1303 if (status == 0 && capacity.valueInt64 == 50) {
1304 if (wait_second < BATTERY_READ_TIMEOUT_IN_SEC) {
1305 sleep(1);
1306 wait_second++;
1307 continue;
1308 }
1309 }
1310 // If we can't read battery percentage, it may be a device without battery. In this
1311 // situation, use 100 as a fake battery percentage.
1312 if (status != 0) {
1313 capacity.valueInt64 = 100;
1314 }
1315 return (charged && capacity.valueInt64 >= BATTERY_WITH_CHARGER_OK_PERCENTAGE) ||
1316 (!charged && capacity.valueInt64 >= BATTERY_OK_PERCENTAGE);
1317 }
1318}
1319
Tianjie Xu3c62b672016-02-05 18:25:58 -08001320static void set_retry_bootloader_message(int retry_count, int argc, char** argv) {
Tianjie Xubd56f152016-09-28 16:32:10 -07001321 std::vector<std::string> options;
Tianjie Xu3c62b672016-02-05 18:25:58 -08001322 for (int i = 1; i < argc; ++i) {
1323 if (strstr(argv[i], "retry_count") == nullptr) {
Tianjie Xubd56f152016-09-28 16:32:10 -07001324 options.push_back(argv[i]);
Tianjie Xu3c62b672016-02-05 18:25:58 -08001325 }
1326 }
1327
Tianjie Xubd56f152016-09-28 16:32:10 -07001328 // Increment the retry counter by 1.
1329 options.push_back(android::base::StringPrintf("--retry_count=%d", retry_count+1));
Yabin Cui8b309f62016-06-24 18:22:02 -07001330 std::string err;
Tao Bao2292db82016-12-13 21:53:31 -08001331 if (!update_bootloader_message(options, &err)) {
Yabin Cui8b309f62016-06-24 18:22:02 -07001332 LOG(ERROR) << err;
1333 }
Tianjie Xu3c62b672016-02-05 18:25:58 -08001334}
1335
Tianjie Xu06e57ac2016-07-11 14:04:08 -07001336static bool bootreason_in_blacklist() {
Tao Baoefc35592017-01-08 22:45:47 -08001337 std::string bootreason = android::base::GetProperty("ro.boot.bootreason", "");
1338 if (!bootreason.empty()) {
1339 for (const auto& str : bootreason_blacklist) {
1340 if (strcasecmp(str.c_str(), bootreason.c_str()) == 0) {
1341 return true;
1342 }
Tianjie Xu06e57ac2016-07-11 14:04:08 -07001343 }
Tao Baoefc35592017-01-08 22:45:47 -08001344 }
1345 return false;
Tianjie Xu06e57ac2016-07-11 14:04:08 -07001346}
1347
1348static void log_failure_code(ErrorCode code, const char *update_package) {
1349 std::vector<std::string> log_buffer = {
1350 update_package,
1351 "0", // install result
1352 "error: " + std::to_string(code),
1353 };
1354 std::string log_content = android::base::Join(log_buffer, "\n");
1355 if (!android::base::WriteStringToFile(log_content, TEMPORARY_INSTALL_FILE)) {
Tao Baoac9d94d2016-11-03 11:37:15 -07001356 PLOG(ERROR) << "failed to write " << TEMPORARY_INSTALL_FILE;
Tianjie Xu06e57ac2016-07-11 14:04:08 -07001357 }
1358
1359 // Also write the info into last_log.
1360 LOG(INFO) << log_content;
1361}
1362
Yabin Cui99281df2016-02-17 12:21:52 -08001363int main(int argc, char **argv) {
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -07001364 // We don't have logcat yet under recovery; so we'll print error on screen and
1365 // log to stdout (which is redirected to recovery.log) as we used to do.
1366 android::base::InitLogging(argv, &UiLogger);
1367
Mark Salyzyna4f701a2016-03-09 14:58:16 -08001368 // Take last pmsg contents and rewrite it to the current pmsg session.
1369 static const char filter[] = "recovery/";
1370 // Do we need to rotate?
1371 bool doRotate = false;
Tianjie Xue113e4d2016-10-21 17:46:13 -07001372
Mark Salyzyna4f701a2016-03-09 14:58:16 -08001373 __android_log_pmsg_file_read(
1374 LOG_ID_SYSTEM, ANDROID_LOG_INFO, filter,
1375 logbasename, &doRotate);
1376 // Take action to refresh pmsg contents
1377 __android_log_pmsg_file_read(
1378 LOG_ID_SYSTEM, ANDROID_LOG_INFO, filter,
1379 logrotate, &doRotate);
1380
Doug Zongker9270a202012-01-09 15:16:13 -08001381 // If this binary is started with the single argument "--adbd",
1382 // instead of being the normal recovery binary, it turns into kind
1383 // of a stripped-down version of adbd that only supports the
1384 // 'sideload' command. Note this must be a real argument, not
1385 // anything in the command file or bootloader control block; the
1386 // only way recovery should be run with this argument is when it
1387 // starts a copy of itself from the apply_from_adb() function.
1388 if (argc == 2 && strcmp(argv[1], "--adbd") == 0) {
Josh Gaoacb2a2f2016-08-26 18:24:34 -07001389 minadbd_main();
Doug Zongker9270a202012-01-09 15:16:13 -08001390 return 0;
1391 }
1392
Tao Bao04ca4262015-09-10 15:32:24 -07001393 time_t start = time(NULL);
1394
1395 // redirect_stdio should be called only in non-sideload mode. Otherwise
1396 // we may have two logger instances with different timestamps.
1397 redirect_stdio(TEMPORARY_LOG_FILE);
1398
Doug Zongker19a8e242014-01-21 09:25:41 -08001399 printf("Starting recovery (pid %d) on %s", getpid(), ctime(&start));
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001400
Doug Zongkerd4208f92010-09-20 12:16:13 -07001401 load_volume_table();
Tao Bao26112e52016-02-25 12:29:40 -08001402 has_cache = volume_for_path(CACHE_ROOT) != nullptr;
1403
Tao Baof0ed1592016-12-02 11:32:19 -08001404 std::vector<std::string> args = get_args(argc, argv);
1405 std::vector<char*> args_to_parse(args.size());
1406 std::transform(args.cbegin(), args.cend(), args_to_parse.begin(),
1407 [](const std::string& arg) { return const_cast<char*>(arg.c_str()); });
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001408
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001409 const char *update_package = NULL;
Tao Baoe39a9bc2015-03-31 12:19:05 -07001410 bool should_wipe_data = false;
Paul Crowley08404b42016-12-19 13:04:23 -08001411 bool should_prompt_and_wipe_data = false;
Tao Baoc679f932015-03-30 09:43:49 -07001412 bool should_wipe_cache = false;
Yabin Cui8b309f62016-06-24 18:22:02 -07001413 bool should_wipe_ab = false;
Yabin Cuifd99a312016-06-09 14:09:39 -07001414 size_t wipe_package_size = 0;
Tao Bao145d8612015-03-25 15:51:15 -07001415 bool show_text = false;
Tao Baoc679f932015-03-30 09:43:49 -07001416 bool sideload = false;
1417 bool sideload_auto_reboot = false;
Doug Zongkere5d5ac72012-04-12 11:01:22 -07001418 bool just_exit = false;
Doug Zongkerb1d12632014-03-18 10:32:12 -07001419 bool shutdown_after = false;
Tianjie Xu3c62b672016-02-05 18:25:58 -08001420 int retry_count = 0;
Tianjie Xu35926c42016-04-28 18:06:26 -07001421 bool security_update = false;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001422
1423 int arg;
Tao Bao862a4c12016-06-02 11:16:50 -07001424 int option_index;
Tao Baof0ed1592016-12-02 11:32:19 -08001425 while ((arg = getopt_long(args_to_parse.size(), args_to_parse.data(), "", OPTIONS,
1426 &option_index)) != -1) {
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001427 switch (arg) {
Tianjie Xu3c62b672016-02-05 18:25:58 -08001428 case 'n': android::base::ParseInt(optarg, &retry_count, 0); break;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001429 case 'u': update_package = optarg; break;
Tao Baoe39a9bc2015-03-31 12:19:05 -07001430 case 'w': should_wipe_data = true; break;
Tao Baoc679f932015-03-30 09:43:49 -07001431 case 'c': should_wipe_cache = true; break;
Tao Bao145d8612015-03-25 15:51:15 -07001432 case 't': show_text = true; break;
Tao Baoc679f932015-03-30 09:43:49 -07001433 case 's': sideload = true; break;
1434 case 'a': sideload = true; sideload_auto_reboot = true; break;
Doug Zongkere5d5ac72012-04-12 11:01:22 -07001435 case 'x': just_exit = true; break;
Doug Zongker02ec6b82012-08-22 17:26:40 -07001436 case 'l': locale = optarg; break;
Doug Zongkerc87bab12013-11-25 13:53:25 -08001437 case 'g': {
1438 if (stage == NULL || *stage == '\0') {
1439 char buffer[20] = "1/";
1440 strncat(buffer, optarg, sizeof(buffer)-3);
1441 stage = strdup(buffer);
1442 }
1443 break;
1444 }
Doug Zongkerb1d12632014-03-18 10:32:12 -07001445 case 'p': shutdown_after = true; break;
Jeff Sharkeya6e13ae2014-09-24 11:46:17 -07001446 case 'r': reason = optarg; break;
Tianjie Xu35926c42016-04-28 18:06:26 -07001447 case 'e': security_update = true; break;
Tao Bao862a4c12016-06-02 11:16:50 -07001448 case 0: {
Paul Crowley08404b42016-12-19 13:04:23 -08001449 std::string option = OPTIONS[option_index].name;
1450 if (option == "wipe_ab") {
Yabin Cui8b309f62016-06-24 18:22:02 -07001451 should_wipe_ab = true;
Paul Crowley08404b42016-12-19 13:04:23 -08001452 } else if (option == "wipe_package_size") {
Yabin Cuifd99a312016-06-09 14:09:39 -07001453 android::base::ParseUint(optarg, &wipe_package_size);
Paul Crowley08404b42016-12-19 13:04:23 -08001454 } else if (option == "prompt_and_wipe_data") {
1455 should_prompt_and_wipe_data = true;
Tao Bao862a4c12016-06-02 11:16:50 -07001456 }
1457 break;
1458 }
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001459 case '?':
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -07001460 LOG(ERROR) << "Invalid command argument";
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001461 continue;
1462 }
1463 }
1464
Tao Baoac9d94d2016-11-03 11:37:15 -07001465 if (locale.empty()) {
1466 if (has_cache) {
1467 locale = load_locale_from_cache();
1468 }
1469
1470 if (locale.empty()) {
1471 locale = DEFAULT_LOCALE;
1472 }
Doug Zongker02ec6b82012-08-22 17:26:40 -07001473 }
Tao Baoac9d94d2016-11-03 11:37:15 -07001474
1475 printf("locale is [%s]\n", locale.c_str());
Doug Zongker0d32f252014-02-13 15:07:56 -08001476 printf("stage is [%s]\n", stage);
Jeff Sharkeya6e13ae2014-09-24 11:46:17 -07001477 printf("reason is [%s]\n", reason);
Doug Zongker02ec6b82012-08-22 17:26:40 -07001478
1479 Device* device = make_device();
1480 ui = device->GetUI();
1481
Tao Bao736d59c2017-01-03 10:15:33 -08001482 if (!ui->Init(locale)) {
Sen Jiangd5304492016-12-09 16:20:49 -08001483 printf("Failed to initialize UI, use stub UI instead.");
1484 ui = new StubRecoveryUI();
1485 }
Tianjie Xu35926c42016-04-28 18:06:26 -07001486 // Set background string to "installing security update" for security update,
1487 // otherwise set it to "installing system update".
1488 ui->SetSystemUpdateText(security_update);
Doug Zongkerc87bab12013-11-25 13:53:25 -08001489
1490 int st_cur, st_max;
1491 if (stage != NULL && sscanf(stage, "%d/%d", &st_cur, &st_max) == 2) {
1492 ui->SetStage(st_cur, st_max);
1493 }
1494
Doug Zongker02ec6b82012-08-22 17:26:40 -07001495 ui->SetBackground(RecoveryUI::NONE);
1496 if (show_text) ui->ShowText(true);
1497
Stephen Smalley779701d2012-02-09 14:13:23 -05001498 struct selinux_opt seopts[] = {
Tao Baoac9d94d2016-11-03 11:37:15 -07001499 { SELABEL_OPT_PATH, "/file_contexts" }
Stephen Smalley779701d2012-02-09 14:13:23 -05001500 };
1501
1502 sehandle = selabel_open(SELABEL_CTX_FILE, seopts, 1);
1503
1504 if (!sehandle) {
Doug Zongkerfafc85b2013-07-09 12:29:45 -07001505 ui->Print("Warning: No file_contexts\n");
Stephen Smalley779701d2012-02-09 14:13:23 -05001506 }
Stephen Smalley779701d2012-02-09 14:13:23 -05001507
Doug Zongkerdaefc1d2011-10-31 09:34:15 -07001508 device->StartRecovery();
Doug Zongkerefa1bab2010-02-01 15:59:12 -08001509
Doug Zongker56c51052010-07-01 09:18:44 -07001510 printf("Command:");
Tao Baof0ed1592016-12-02 11:32:19 -08001511 for (const auto& arg : args) {
1512 printf(" \"%s\"", arg.c_str());
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001513 }
Tao Baof038ca02016-12-10 09:24:50 -08001514 printf("\n\n");
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001515
1516 property_list(print_property, NULL);
Doug Zongker56c51052010-07-01 09:18:44 -07001517 printf("\n");
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001518
Elliott Hughesbb78d622015-04-09 20:51:08 -07001519 ui->Print("Supported API: %d\n", RECOVERY_API_VERSION);
1520
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001521 int status = INSTALL_SUCCESS;
1522
Doug Zongker540d57f2011-01-18 13:36:58 -08001523 if (update_package != NULL) {
Tao Bao56870012016-04-29 15:37:05 -07001524 // It's not entirely true that we will modify the flash. But we want
1525 // to log the update attempt since update_package is non-NULL.
1526 modified_flash = true;
1527
Yabin Cui99281df2016-02-17 12:21:52 -08001528 if (!is_battery_ok()) {
1529 ui->Print("battery capacity is not enough for installing package, needed is %d%%\n",
1530 BATTERY_OK_PERCENTAGE);
Tianjie Xu16255832016-04-30 11:49:59 -07001531 // Log the error code to last_install when installation skips due to
1532 // low battery.
Tianjie Xu06e57ac2016-07-11 14:04:08 -07001533 log_failure_code(kLowBattery, update_package);
1534 status = INSTALL_SKIPPED;
1535 } else if (bootreason_in_blacklist()) {
1536 // Skip update-on-reboot when bootreason is kernel_panic or similar
1537 ui->Print("bootreason is in the blacklist; skip OTA installation\n");
1538 log_failure_code(kBootreasonInBlacklist, update_package);
Yabin Cui99281df2016-02-17 12:21:52 -08001539 status = INSTALL_SKIPPED;
1540 } else {
1541 status = install_package(update_package, &should_wipe_cache,
Tianjie Xu16255832016-04-30 11:49:59 -07001542 TEMPORARY_INSTALL_FILE, true, retry_count);
Yabin Cui99281df2016-02-17 12:21:52 -08001543 if (status == INSTALL_SUCCESS && should_wipe_cache) {
1544 wipe_cache(false, device);
1545 }
1546 if (status != INSTALL_SUCCESS) {
1547 ui->Print("Installation aborted.\n");
Tianjie Xu3c62b672016-02-05 18:25:58 -08001548 // When I/O error happens, reboot and retry installation EIO_RETRY_COUNT
1549 // times before we abandon this OTA update.
1550 if (status == INSTALL_RETRY && retry_count < EIO_RETRY_COUNT) {
1551 copy_logs();
1552 set_retry_bootloader_message(retry_count, argc, argv);
1553 // Print retry count on screen.
1554 ui->Print("Retry attempt %d\n", retry_count);
Doug Zongker7c3ae452013-05-14 11:03:02 -07001555
Tianjie Xu3c62b672016-02-05 18:25:58 -08001556 // Reboot and retry the update
Elliott Hughescb220402016-09-23 15:30:55 -07001557 if (!android::base::SetProperty(ANDROID_RB_PROPERTY, "reboot,recovery")) {
Tianjie Xu3c62b672016-02-05 18:25:58 -08001558 ui->Print("Reboot failed\n");
1559 } else {
1560 while (true) {
1561 pause();
1562 }
1563 }
1564 }
Yabin Cui99281df2016-02-17 12:21:52 -08001565 // If this is an eng or userdebug build, then automatically
1566 // turn the text display on if the script fails so the error
1567 // message is visible.
1568 if (is_ro_debuggable()) {
1569 ui->ShowText(true);
1570 }
Doug Zongker7c3ae452013-05-14 11:03:02 -07001571 }
1572 }
Tao Baoe39a9bc2015-03-31 12:19:05 -07001573 } else if (should_wipe_data) {
Paul Crowley08404b42016-12-19 13:04:23 -08001574 if (!wipe_data(device)) {
Tao Baoe39a9bc2015-03-31 12:19:05 -07001575 status = INSTALL_ERROR;
1576 }
Paul Crowley08404b42016-12-19 13:04:23 -08001577 } else if (should_prompt_and_wipe_data) {
1578 ui->ShowText(true);
1579 ui->SetBackground(RecoveryUI::ERROR);
1580 if (!prompt_and_wipe_data(device)) {
1581 status = INSTALL_ERROR;
1582 }
1583 ui->ShowText(false);
Tao Baoc679f932015-03-30 09:43:49 -07001584 } else if (should_wipe_cache) {
Tao Baoe39a9bc2015-03-31 12:19:05 -07001585 if (!wipe_cache(false, device)) {
1586 status = INSTALL_ERROR;
1587 }
Yabin Cui8b309f62016-06-24 18:22:02 -07001588 } else if (should_wipe_ab) {
Yabin Cuifd99a312016-06-09 14:09:39 -07001589 if (!wipe_ab_device(wipe_package_size)) {
Tao Bao862a4c12016-06-02 11:16:50 -07001590 status = INSTALL_ERROR;
1591 }
Tao Baoc679f932015-03-30 09:43:49 -07001592 } else if (sideload) {
1593 // 'adb reboot sideload' acts the same as user presses key combinations
1594 // to enter the sideload mode. When 'sideload-auto-reboot' is used, text
1595 // display will NOT be turned on by default. And it will reboot after
1596 // sideload finishes even if there are errors. Unless one turns on the
1597 // text display during the installation. This is to enable automated
1598 // testing.
1599 if (!sideload_auto_reboot) {
1600 ui->ShowText(true);
1601 }
1602 status = apply_from_adb(ui, &should_wipe_cache, TEMPORARY_INSTALL_FILE);
1603 if (status == INSTALL_SUCCESS && should_wipe_cache) {
Tao Baoe39a9bc2015-03-31 12:19:05 -07001604 if (!wipe_cache(false, device)) {
1605 status = INSTALL_ERROR;
1606 }
Tao Baoc679f932015-03-30 09:43:49 -07001607 }
1608 ui->Print("\nInstall from ADB complete (status: %d).\n", status);
1609 if (sideload_auto_reboot) {
1610 ui->Print("Rebooting automatically.\n");
1611 }
Doug Zongkere5d5ac72012-04-12 11:01:22 -07001612 } else if (!just_exit) {
Doug Zongker02ec6b82012-08-22 17:26:40 -07001613 status = INSTALL_NONE; // No command specified
1614 ui->SetBackground(RecoveryUI::NO_COMMAND);
Tao Bao785d22c2015-05-04 09:34:29 -07001615
1616 // http://b/17489952
1617 // If this is an eng or userdebug build, automatically turn on the
1618 // text display if no command is specified.
1619 if (is_ro_debuggable()) {
1620 ui->ShowText(true);
1621 }
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001622 }
1623
Tao Baoc679f932015-03-30 09:43:49 -07001624 if (!sideload_auto_reboot && (status == INSTALL_ERROR || status == INSTALL_CORRUPT)) {
Doug Zongkerf24fd7e2013-07-02 11:43:25 -07001625 copy_logs();
Doug Zongker02ec6b82012-08-22 17:26:40 -07001626 ui->SetBackground(RecoveryUI::ERROR);
1627 }
Tao Baoc679f932015-03-30 09:43:49 -07001628
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001629 Device::BuiltinAction after = shutdown_after ? Device::SHUTDOWN : Device::REBOOT;
Yabin Cui99281df2016-02-17 12:21:52 -08001630 if ((status != INSTALL_SUCCESS && status != INSTALL_SKIPPED && !sideload_auto_reboot) ||
1631 ui->IsTextVisible()) {
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001632 Device::BuiltinAction temp = prompt_and_wait(device, status);
Tao Baoc679f932015-03-30 09:43:49 -07001633 if (temp != Device::NO_ACTION) {
1634 after = temp;
1635 }
Doug Zongker8674a722010-09-15 11:08:23 -07001636 }
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001637
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001638 // Save logs and clean up before rebooting or shutting down.
Tianjie Xuc14d95d2016-03-24 11:50:34 -07001639 finish_recovery();
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001640
1641 switch (after) {
1642 case Device::SHUTDOWN:
1643 ui->Print("Shutting down...\n");
Elliott Hughescb220402016-09-23 15:30:55 -07001644 android::base::SetProperty(ANDROID_RB_PROPERTY, "shutdown,");
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001645 break;
1646
1647 case Device::REBOOT_BOOTLOADER:
1648 ui->Print("Rebooting to bootloader...\n");
Elliott Hughescb220402016-09-23 15:30:55 -07001649 android::base::SetProperty(ANDROID_RB_PROPERTY, "reboot,bootloader");
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001650 break;
1651
1652 default:
1653 ui->Print("Rebooting...\n");
Elliott Hughescb220402016-09-23 15:30:55 -07001654 android::base::SetProperty(ANDROID_RB_PROPERTY, "reboot,");
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001655 break;
Doug Zongkerb1d12632014-03-18 10:32:12 -07001656 }
Tao Bao75238632015-05-27 14:46:17 -07001657 while (true) {
Tao Baoac9d94d2016-11-03 11:37:15 -07001658 pause();
Tao Bao75238632015-05-27 14:46:17 -07001659 }
1660 // Should be unreachable.
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001661 return EXIT_SUCCESS;
1662}