blob: b7aeaee1fb6c9f22bb5c0cff0a06f2010899dcff [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 Bao04ca4262015-09-10 15:32:24 -070037#include <chrono>
Tao Bao862a4c12016-06-02 11:16:50 -070038#include <string>
39#include <vector>
Tao Bao04ca4262015-09-10 15:32:24 -070040
Tao Bao75238632015-05-27 14:46:17 -070041#include <adb.h>
Elliott Hughes4b166f02015-12-04 15:30:20 -080042#include <android-base/file.h>
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -070043#include <android-base/logging.h>
Tianjie Xu3c62b672016-02-05 18:25:58 -080044#include <android-base/parseint.h>
Elliott Hughescb220402016-09-23 15:30:55 -070045#include <android-base/properties.h>
Elliott Hughes4b166f02015-12-04 15:30:20 -080046#include <android-base/stringprintf.h>
Tao Bao862a4c12016-06-02 11:16:50 -070047#include <android-base/strings.h>
48#include <android-base/unique_fd.h>
Yabin Cui8b309f62016-06-24 18:22:02 -070049#include <bootloader_message/bootloader_message.h>
Tao Bao75238632015-05-27 14:46:17 -070050#include <cutils/android_reboot.h>
Elliott Hughescb220402016-09-23 15:30:55 -070051#include <cutils/properties.h> /* for property_list */
Elliott Hughes4bbd5bf2016-04-01 18:24:39 -070052#include <healthd/BatteryMonitor.h>
Mark Salyzyna4f701a2016-03-09 14:58:16 -080053#include <private/android_logger.h> /* private pmsg functions */
Elliott Hughes4bbd5bf2016-04-01 18:24:39 -070054#include <selinux/label.h>
55#include <selinux/selinux.h>
Tianjie Xu8cf5c8f2016-09-08 20:10:11 -070056#include <ziparchive/zip_archive.h>
Yabin Cui99281df2016-02-17 12:21:52 -080057
Tao Bao75238632015-05-27 14:46:17 -070058#include "adb_install.h"
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080059#include "common.h"
Tao Bao75238632015-05-27 14:46:17 -070060#include "device.h"
Tianjie Xu16255832016-04-30 11:49:59 -070061#include "error_code.h"
Tao Bao75238632015-05-27 14:46:17 -070062#include "fuse_sdcard_provider.h"
63#include "fuse_sideload.h"
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080064#include "install.h"
Josh Gaoacb2a2f2016-08-26 18:24:34 -070065#include "minadbd/minadbd.h"
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080066#include "minui/minui.h"
Tianjie Xu8cf5c8f2016-09-08 20:10:11 -070067#include "otautil/DirUtil.h"
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080068#include "roots.h"
Tianjie Xue113e4d2016-10-21 17:46:13 -070069#include "rotate_logs.h"
Doug Zongker211aebc2011-10-28 15:13:10 -070070#include "screen_ui.h"
Sen Jiangd5304492016-12-09 16:20:49 -080071#include "stub_ui.h"
Tianjie Xue113e4d2016-10-21 17:46:13 -070072#include "ui.h"
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080073
74static const struct option OPTIONS[] = {
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080075 { "update_package", required_argument, NULL, 'u' },
Tianjie Xu3c62b672016-02-05 18:25:58 -080076 { "retry_count", required_argument, NULL, 'n' },
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080077 { "wipe_data", no_argument, NULL, 'w' },
78 { "wipe_cache", no_argument, NULL, 'c' },
Doug Zongker4bc98062010-09-03 11:00:13 -070079 { "show_text", no_argument, NULL, 't' },
Tao Baoc679f932015-03-30 09:43:49 -070080 { "sideload", no_argument, NULL, 's' },
81 { "sideload_auto_reboot", no_argument, NULL, 'a' },
Doug Zongkere5d5ac72012-04-12 11:01:22 -070082 { "just_exit", no_argument, NULL, 'x' },
Doug Zongker02ec6b82012-08-22 17:26:40 -070083 { "locale", required_argument, NULL, 'l' },
Doug Zongkerc87bab12013-11-25 13:53:25 -080084 { "stages", required_argument, NULL, 'g' },
Doug Zongkerb1d12632014-03-18 10:32:12 -070085 { "shutdown_after", no_argument, NULL, 'p' },
Jeff Sharkeya6e13ae2014-09-24 11:46:17 -070086 { "reason", required_argument, NULL, 'r' },
Tianjie Xu35926c42016-04-28 18:06:26 -070087 { "security", no_argument, NULL, 'e'},
Yabin Cui8b309f62016-06-24 18:22:02 -070088 { "wipe_ab", no_argument, NULL, 0 },
Yabin Cuifd99a312016-06-09 14:09:39 -070089 { "wipe_package_size", required_argument, NULL, 0 },
Paul Crowley08404b42016-12-19 13:04:23 -080090 { "prompt_and_wipe_data", no_argument, NULL, 0 },
Doug Zongker988500b2009-10-06 14:41:38 -070091 { NULL, 0, NULL, 0 },
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080092};
93
Tianjie Xu06e57ac2016-07-11 14:04:08 -070094// More bootreasons can be found in "system/core/bootstat/bootstat.cpp".
95static const std::vector<std::string> bootreason_blacklist {
96 "kernel_panic",
97 "Panic",
98};
99
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700100static const char *CACHE_LOG_DIR = "/cache/recovery";
Doug Zongkerd4208f92010-09-20 12:16:13 -0700101static const char *COMMAND_FILE = "/cache/recovery/command";
Doug Zongkerd4208f92010-09-20 12:16:13 -0700102static const char *LOG_FILE = "/cache/recovery/log";
Doug Zongkerd0181b82011-10-19 10:51:12 -0700103static const char *LAST_INSTALL_FILE = "/cache/recovery/last_install";
Doug Zongker8b240cc2012-08-29 15:19:29 -0700104static const char *LOCALE_FILE = "/cache/recovery/last_locale";
Paul Lawrence661f8a62016-02-25 12:42:19 -0800105static const char *CONVERT_FBE_DIR = "/tmp/convert_fbe";
106static const char *CONVERT_FBE_FILE = "/tmp/convert_fbe/convert_fbe";
Michael Ward9d2629c2011-06-23 22:14:24 -0700107static const char *CACHE_ROOT = "/cache";
Paul Lawrenced0db3372015-11-05 13:38:40 -0800108static const char *DATA_ROOT = "/data";
Doug Zongkerd4208f92010-09-20 12:16:13 -0700109static const char *SDCARD_ROOT = "/sdcard";
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800110static const char *TEMPORARY_LOG_FILE = "/tmp/recovery.log";
Doug Zongkerd0181b82011-10-19 10:51:12 -0700111static const char *TEMPORARY_INSTALL_FILE = "/tmp/last_install";
Tao Baof0124322015-04-11 02:04:11 +0000112static const char *LAST_KMSG_FILE = "/cache/recovery/last_kmsg";
Tao Baobef39712015-05-04 18:50:27 -0700113static const char *LAST_LOG_FILE = "/cache/recovery/last_log";
Tianjie Xuc37c5c32016-06-23 16:52:17 -0700114// We will try to apply the update package 5 times at most in case of an I/O error.
115static const int EIO_RETRY_COUNT = 4;
Yabin Cui99281df2016-02-17 12:21:52 -0800116static const int BATTERY_READ_TIMEOUT_IN_SEC = 10;
117// GmsCore enters recovery mode to install package when having enough battery
118// percentage. Normally, the threshold is 40% without charger and 20% with charger.
119// So we should check battery with a slightly lower limitation.
120static const int BATTERY_OK_PERCENTAGE = 20;
121static const int BATTERY_WITH_CHARGER_OK_PERCENTAGE = 15;
Tao Baoac9d94d2016-11-03 11:37:15 -0700122static constexpr const char* RECOVERY_WIPE = "/etc/recovery.wipe";
123static constexpr const char* DEFAULT_LOCALE = "en_US";
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700124
Tao Baoac9d94d2016-11-03 11:37:15 -0700125static std::string locale;
Dan Albert8584fcf2016-10-27 03:08:08 +0000126static bool has_cache = false;
Tao Baoc0319b62016-10-13 15:17:04 -0700127
Tao Baoac9d94d2016-11-03 11:37:15 -0700128RecoveryUI* ui = nullptr;
129bool modified_flash = false;
130const char* stage = nullptr;
131const char* reason = nullptr;
132struct selabel_handle* sehandle;
133
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800134/*
135 * The recovery tool communicates with the main system through /cache files.
136 * /cache/recovery/command - INPUT - command line for tool, one arg per line
137 * /cache/recovery/log - OUTPUT - combined log file from recovery run(s)
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800138 *
139 * The arguments which may be supplied in the recovery.command file:
Doug Zongkerd4208f92010-09-20 12:16:13 -0700140 * --update_package=path - verify install an OTA package file
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800141 * --wipe_data - erase user data (and cache), then reboot
Paul Crowley08404b42016-12-19 13:04:23 -0800142 * --prompt_and_wipe_data - prompt the user that data is corrupt,
143 * with their consent erase user data (and cache), then reboot
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800144 * --wipe_cache - wipe cache (but not user data), then reboot
Oscar Montemayor05231562009-11-30 08:40:57 -0800145 * --set_encrypted_filesystem=on|off - enables / diasables encrypted fs
Doug Zongkere5d5ac72012-04-12 11:01:22 -0700146 * --just_exit - do nothing; exit and reboot
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800147 *
148 * After completing, we remove /cache/recovery/command and reboot.
149 * Arguments may also be supplied in the bootloader control block (BCB).
150 * These important scenarios must be safely restartable at any point:
151 *
152 * FACTORY RESET
153 * 1. user selects "factory reset"
154 * 2. main system writes "--wipe_data" to /cache/recovery/command
155 * 3. main system reboots into recovery
156 * 4. get_args() writes BCB with "boot-recovery" and "--wipe_data"
157 * -- after this, rebooting will restart the erase --
Doug Zongkerd4208f92010-09-20 12:16:13 -0700158 * 5. erase_volume() reformats /data
159 * 6. erase_volume() reformats /cache
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800160 * 7. finish_recovery() erases BCB
161 * -- after this, rebooting will restart the main system --
162 * 8. main() calls reboot() to boot main system
163 *
164 * OTA INSTALL
165 * 1. main system downloads OTA package to /cache/some-filename.zip
Doug Zongker9b125b02010-09-22 12:01:37 -0700166 * 2. main system writes "--update_package=/cache/some-filename.zip"
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800167 * 3. main system reboots into recovery
168 * 4. get_args() writes BCB with "boot-recovery" and "--update_package=..."
169 * -- after this, rebooting will attempt to reinstall the update --
170 * 5. install_package() attempts to install the update
171 * NOTE: the package install must itself be restartable from any point
172 * 6. finish_recovery() erases BCB
173 * -- after this, rebooting will (try to) restart the main system --
174 * 7. ** if install failed **
175 * 7a. prompt_and_wait() shows an error icon and waits for the user
Tao Baoc0336392016-12-13 22:29:49 -0800176 * 7b. the user reboots (pulling the battery, etc) into the main system
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800177 */
178
Doug Zongkerd4208f92010-09-20 12:16:13 -0700179// open a given path, mounting partitions as necessary
Tao Bao04ca4262015-09-10 15:32:24 -0700180FILE* fopen_path(const char *path, const char *mode) {
Doug Zongkerd4208f92010-09-20 12:16:13 -0700181 if (ensure_path_mounted(path) != 0) {
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -0700182 LOG(ERROR) << "Can't mount " << path;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800183 return NULL;
184 }
185
186 // When writing, try to create the containing directory, if necessary.
187 // Use generous permissions, the system (init.rc) will reset them.
Stephen Smalley779701d2012-02-09 14:13:23 -0500188 if (strchr("wa", mode[0])) dirCreateHierarchy(path, 0777, NULL, 1, sehandle);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800189
190 FILE *fp = fopen(path, mode);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800191 return fp;
192}
193
Tao Bao04ca4262015-09-10 15:32:24 -0700194// close a file, log an error if the error indicator is set
195static void check_and_fclose(FILE *fp, const char *name) {
196 fflush(fp);
Tao Baoac9d94d2016-11-03 11:37:15 -0700197 if (fsync(fileno(fp)) == -1) {
198 PLOG(ERROR) << "Failed to fsync " << name;
199 }
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -0700200 if (ferror(fp)) {
201 PLOG(ERROR) << "Error in " << name;
202 }
Tao Bao04ca4262015-09-10 15:32:24 -0700203 fclose(fp);
204}
205
Elliott Hughesf14af802015-02-10 14:46:14 -0800206bool is_ro_debuggable() {
Elliott Hughescb220402016-09-23 15:30:55 -0700207 return android::base::GetBoolProperty("ro.debuggable", false);
Elliott Hughesf14af802015-02-10 14:46:14 -0800208}
209
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700210static void redirect_stdio(const char* filename) {
Tao Bao04ca4262015-09-10 15:32:24 -0700211 int pipefd[2];
212 if (pipe(pipefd) == -1) {
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -0700213 PLOG(ERROR) << "pipe failed";
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700214
Tao Bao04ca4262015-09-10 15:32:24 -0700215 // Fall back to traditional logging mode without timestamps.
216 // If these fail, there's not really anywhere to complain...
217 freopen(filename, "a", stdout); setbuf(stdout, NULL);
218 freopen(filename, "a", stderr); setbuf(stderr, NULL);
219
220 return;
221 }
222
223 pid_t pid = fork();
224 if (pid == -1) {
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -0700225 PLOG(ERROR) << "fork failed";
Tao Bao04ca4262015-09-10 15:32:24 -0700226
227 // Fall back to traditional logging mode without timestamps.
228 // If these fail, there's not really anywhere to complain...
229 freopen(filename, "a", stdout); setbuf(stdout, NULL);
230 freopen(filename, "a", stderr); setbuf(stderr, NULL);
231
232 return;
233 }
234
235 if (pid == 0) {
236 /// Close the unused write end.
237 close(pipefd[1]);
238
239 auto start = std::chrono::steady_clock::now();
240
241 // Child logger to actually write to the log file.
242 FILE* log_fp = fopen(filename, "a");
243 if (log_fp == nullptr) {
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -0700244 PLOG(ERROR) << "fopen \"" << filename << "\" failed";
Tao Bao04ca4262015-09-10 15:32:24 -0700245 close(pipefd[0]);
246 _exit(1);
247 }
248
249 FILE* pipe_fp = fdopen(pipefd[0], "r");
250 if (pipe_fp == nullptr) {
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -0700251 PLOG(ERROR) << "fdopen failed";
Tao Bao04ca4262015-09-10 15:32:24 -0700252 check_and_fclose(log_fp, filename);
253 close(pipefd[0]);
254 _exit(1);
255 }
256
257 char* line = nullptr;
258 size_t len = 0;
259 while (getline(&line, &len, pipe_fp) != -1) {
260 auto now = std::chrono::steady_clock::now();
261 double duration = std::chrono::duration_cast<std::chrono::duration<double>>(
262 now - start).count();
263 if (line[0] == '\n') {
264 fprintf(log_fp, "[%12.6lf]\n", duration);
265 } else {
266 fprintf(log_fp, "[%12.6lf] %s", duration, line);
267 }
268 fflush(log_fp);
269 }
270
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -0700271 PLOG(ERROR) << "getline failed";
Tao Bao04ca4262015-09-10 15:32:24 -0700272
273 free(line);
274 check_and_fclose(log_fp, filename);
275 close(pipefd[0]);
276 _exit(1);
277 } else {
278 // Redirect stdout/stderr to the logger process.
279 // Close the unused read end.
280 close(pipefd[0]);
281
282 setbuf(stdout, nullptr);
283 setbuf(stderr, nullptr);
284
285 if (dup2(pipefd[1], STDOUT_FILENO) == -1) {
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -0700286 PLOG(ERROR) << "dup2 stdout failed";
Tao Bao04ca4262015-09-10 15:32:24 -0700287 }
288 if (dup2(pipefd[1], STDERR_FILENO) == -1) {
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -0700289 PLOG(ERROR) << "dup2 stderr failed";
Tao Bao04ca4262015-09-10 15:32:24 -0700290 }
291
292 close(pipefd[1]);
293 }
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800294}
295
296// command line args come from, in decreasing precedence:
297// - the actual command line
298// - the bootloader control block (one per line, after "recovery")
299// - the contents of COMMAND_FILE (one per line)
Tao Baof0ed1592016-12-02 11:32:19 -0800300static std::vector<std::string> get_args(const int argc, char** const argv) {
301 CHECK_GT(argc, 0);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800302
Tao Baof0ed1592016-12-02 11:32:19 -0800303 bootloader_message boot = {};
304 std::string err;
305 if (!read_bootloader_message(&boot, &err)) {
306 LOG(ERROR) << err;
307 // If fails, leave a zeroed bootloader_message.
308 boot = {};
309 }
310 stage = strndup(boot.stage, sizeof(boot.stage));
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800311
Tao Baof0ed1592016-12-02 11:32:19 -0800312 if (boot.command[0] != 0) {
313 std::string boot_command = std::string(boot.command, sizeof(boot.command));
314 LOG(INFO) << "Boot command: " << boot_command;
315 }
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800316
Tao Baof0ed1592016-12-02 11:32:19 -0800317 if (boot.status[0] != 0) {
318 std::string boot_status = std::string(boot.status, sizeof(boot.status));
319 LOG(INFO) << "Boot status: " << boot_status;
320 }
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800321
Tao Baof0ed1592016-12-02 11:32:19 -0800322 std::vector<std::string> args(argv, argv + argc);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800323
Tao Baof0ed1592016-12-02 11:32:19 -0800324 // --- if arguments weren't supplied, look in the bootloader control block
325 if (argc == 1) {
326 boot.recovery[sizeof(boot.recovery) - 1] = '\0'; // Ensure termination
327 std::string boot_recovery(boot.recovery);
328 std::vector<std::string> tokens = android::base::Split(boot_recovery, "\n");
329 if (!tokens.empty() && tokens[0] == "recovery") {
330 for (auto it = tokens.begin() + 1; it != tokens.end(); it++) {
331 // Skip empty and '\0'-filled tokens.
332 if (!it->empty() && (*it)[0] != '\0') args.push_back(std::move(*it));
333 }
334 LOG(INFO) << "Got " << args.size() << " arguments from boot message";
335 } else if (boot.recovery[0] != 0) {
336 LOG(ERROR) << "Bad boot message: \"" << boot_recovery << "\"";
337 }
338 }
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800339
Tao Baof0ed1592016-12-02 11:32:19 -0800340 // --- if that doesn't work, try the command file (if we have /cache).
341 if (argc == 1 && has_cache) {
342 std::string content;
Tao Bao7d34fa12016-12-08 18:10:48 -0800343 if (ensure_path_mounted(COMMAND_FILE) == 0 &&
344 android::base::ReadFileToString(COMMAND_FILE, &content)) {
Tao Baof0ed1592016-12-02 11:32:19 -0800345 std::vector<std::string> tokens = android::base::Split(content, "\n");
Tao Bao7d34fa12016-12-08 18:10:48 -0800346 // All the arguments in COMMAND_FILE are needed (unlike the BCB message,
347 // COMMAND_FILE doesn't use filename as the first argument).
348 for (auto it = tokens.begin(); it != tokens.end(); it++) {
Tao Baof0ed1592016-12-02 11:32:19 -0800349 // Skip empty and '\0'-filled tokens.
350 if (!it->empty() && (*it)[0] != '\0') args.push_back(std::move(*it));
351 }
352 LOG(INFO) << "Got " << args.size() << " arguments from " << COMMAND_FILE;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800353 }
Tao Baof0ed1592016-12-02 11:32:19 -0800354 }
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800355
Tao Baof0ed1592016-12-02 11:32:19 -0800356 // Write the arguments (excluding the filename in args[0]) back into the
357 // bootloader control block. So the device will always boot into recovery to
358 // finish the pending work, until finish_recovery() is called.
359 std::vector<std::string> options(args.cbegin() + 1, args.cend());
Tao Bao2292db82016-12-13 21:53:31 -0800360 if (!update_bootloader_message(options, &err)) {
361 LOG(ERROR) << "Failed to set BCB message: " << err;
Tao Baof0ed1592016-12-02 11:32:19 -0800362 }
363
364 return args;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800365}
366
Tao Bao2292db82016-12-13 21:53:31 -0800367// Set the BCB to reboot back into recovery (it won't resume the install from
368// sdcard though).
369static void set_sdcard_update_bootloader_message() {
370 std::vector<std::string> options;
371 std::string err;
372 if (!update_bootloader_message(options, &err)) {
373 LOG(ERROR) << "Failed to set BCB message: " << err;
374 }
Doug Zongker34c98df2009-08-18 12:05:45 -0700375}
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800376
Tao Baobef39712015-05-04 18:50:27 -0700377// Read from kernel log into buffer and write out to file.
378static void save_kernel_log(const char* destination) {
379 int klog_buf_len = klogctl(KLOG_SIZE_BUFFER, 0, 0);
Patrick Tjincd055ee2014-12-09 11:26:40 -0800380 if (klog_buf_len <= 0) {
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -0700381 PLOG(ERROR) << "Error getting klog size";
Patrick Tjincd055ee2014-12-09 11:26:40 -0800382 return;
383 }
384
Tao Baobef39712015-05-04 18:50:27 -0700385 std::string buffer(klog_buf_len, 0);
386 int n = klogctl(KLOG_READ_ALL, &buffer[0], klog_buf_len);
387 if (n == -1) {
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -0700388 PLOG(ERROR) << "Error in reading klog";
Patrick Tjincd055ee2014-12-09 11:26:40 -0800389 return;
390 }
Tao Baobef39712015-05-04 18:50:27 -0700391 buffer.resize(n);
392 android::base::WriteStringToFile(buffer, destination);
Patrick Tjincd055ee2014-12-09 11:26:40 -0800393}
394
Mark Salyzyna4f701a2016-03-09 14:58:16 -0800395// write content to the current pmsg session.
396static ssize_t __pmsg_write(const char *filename, const char *buf, size_t len) {
397 return __android_log_pmsg_file_write(LOG_ID_SYSTEM, ANDROID_LOG_INFO,
398 filename, buf, len);
399}
400
401static void copy_log_file_to_pmsg(const char* source, const char* destination) {
402 std::string content;
403 android::base::ReadFileToString(source, &content);
404 __pmsg_write(destination, content.c_str(), content.length());
405}
406
Tao Baof0124322015-04-11 02:04:11 +0000407// How much of the temp log we have copied to the copy in cache.
Chih-Hung Hsieh54a27472016-04-18 11:30:55 -0700408static off_t tmplog_offset = 0;
Tao Baof0124322015-04-11 02:04:11 +0000409
Tao Baobef39712015-05-04 18:50:27 -0700410static void copy_log_file(const char* source, const char* destination, bool append) {
411 FILE* dest_fp = fopen_path(destination, append ? "a" : "w");
412 if (dest_fp == nullptr) {
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -0700413 PLOG(ERROR) << "Can't open " << destination;
Doug Zongker2c3539e2010-09-29 13:21:30 -0700414 } else {
Tao Baobef39712015-05-04 18:50:27 -0700415 FILE* source_fp = fopen(source, "r");
416 if (source_fp != nullptr) {
Tao Baof0124322015-04-11 02:04:11 +0000417 if (append) {
Chih-Hung Hsieh54a27472016-04-18 11:30:55 -0700418 fseeko(source_fp, tmplog_offset, SEEK_SET); // Since last write
Doug Zongker2c3539e2010-09-29 13:21:30 -0700419 }
420 char buf[4096];
Tao Baobef39712015-05-04 18:50:27 -0700421 size_t bytes;
422 while ((bytes = fread(buf, 1, sizeof(buf), source_fp)) != 0) {
423 fwrite(buf, 1, bytes, dest_fp);
Doug Zongker2c3539e2010-09-29 13:21:30 -0700424 }
Tao Baobef39712015-05-04 18:50:27 -0700425 if (append) {
Chih-Hung Hsieh54a27472016-04-18 11:30:55 -0700426 tmplog_offset = ftello(source_fp);
Tao Baobef39712015-05-04 18:50:27 -0700427 }
428 check_and_fclose(source_fp, source);
Doug Zongker2c3539e2010-09-29 13:21:30 -0700429 }
Tao Baobef39712015-05-04 18:50:27 -0700430 check_and_fclose(dest_fp, destination);
Doug Zongker2c3539e2010-09-29 13:21:30 -0700431 }
432}
433
Tao Bao682c34b2015-04-07 17:16:35 -0700434static void copy_logs() {
435 // We only rotate and record the log of the current session if there are
436 // actual attempts to modify the flash, such as wipes, installs from BCB
437 // or menu selections. This is to avoid unnecessary rotation (and
438 // possible deletion) of log files, if it does not do anything loggable.
439 if (!modified_flash) {
440 return;
441 }
442
Mark Salyzyna4f701a2016-03-09 14:58:16 -0800443 // Always write to pmsg, this allows the OTA logs to be caught in logcat -L
444 copy_log_file_to_pmsg(TEMPORARY_LOG_FILE, LAST_LOG_FILE);
445 copy_log_file_to_pmsg(TEMPORARY_INSTALL_FILE, LAST_INSTALL_FILE);
446
447 // We can do nothing for now if there's no /cache partition.
448 if (!has_cache) {
449 return;
450 }
451
Tianjie Xue113e4d2016-10-21 17:46:13 -0700452 ensure_path_mounted(LAST_LOG_FILE);
453 ensure_path_mounted(LAST_KMSG_FILE);
454 rotate_logs(LAST_LOG_FILE, LAST_KMSG_FILE);
Tao Bao682c34b2015-04-07 17:16:35 -0700455
Doug Zongkerf24fd7e2013-07-02 11:43:25 -0700456 // Copy logs to cache so the system can find out what happened.
Tao Baof0124322015-04-11 02:04:11 +0000457 copy_log_file(TEMPORARY_LOG_FILE, LOG_FILE, true);
458 copy_log_file(TEMPORARY_LOG_FILE, LAST_LOG_FILE, false);
459 copy_log_file(TEMPORARY_INSTALL_FILE, LAST_INSTALL_FILE, false);
460 save_kernel_log(LAST_KMSG_FILE);
Doug Zongkerf24fd7e2013-07-02 11:43:25 -0700461 chmod(LOG_FILE, 0600);
462 chown(LOG_FILE, 1000, 1000); // system user
Tao Baof0124322015-04-11 02:04:11 +0000463 chmod(LAST_KMSG_FILE, 0600);
464 chown(LAST_KMSG_FILE, 1000, 1000); // system user
Doug Zongkerf24fd7e2013-07-02 11:43:25 -0700465 chmod(LAST_LOG_FILE, 0640);
466 chmod(LAST_INSTALL_FILE, 0644);
467 sync();
468}
469
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800470// clear the recovery command and prepare to boot a (hopefully working) system,
Tianjie Xuc14d95d2016-03-24 11:50:34 -0700471// copy our log file to cache as well (for the system to read). This function is
472// idempotent: call it as many times as you like.
Tao Baoac9d94d2016-11-03 11:37:15 -0700473static void finish_recovery() {
Doug Zongker4f33e552012-08-23 13:16:12 -0700474 // Save the locale to cache, so if recovery is next started up
475 // without a --locale argument (eg, directly from the bootloader)
476 // it will use the last-known locale.
Tao Baoac9d94d2016-11-03 11:37:15 -0700477 if (!locale.empty() && has_cache) {
478 LOG(INFO) << "Saving locale \"" << locale << "\"";
479
480 FILE* fp = fopen_path(LOCALE_FILE, "w");
481 if (!android::base::WriteStringToFd(locale, fileno(fp))) {
482 PLOG(ERROR) << "Failed to save locale to " << LOCALE_FILE;
Mark Salyzyna4f701a2016-03-09 14:58:16 -0800483 }
Tao Baoac9d94d2016-11-03 11:37:15 -0700484 check_and_fclose(fp, LOCALE_FILE);
Doug Zongker4f33e552012-08-23 13:16:12 -0700485 }
486
Doug Zongkerf24fd7e2013-07-02 11:43:25 -0700487 copy_logs();
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800488
Doug Zongkere5d5ac72012-04-12 11:01:22 -0700489 // Reset to normal system boot so recovery won't cycle indefinitely.
Yabin Cui8b309f62016-06-24 18:22:02 -0700490 std::string err;
Tianjie Xubd56f152016-09-28 16:32:10 -0700491 if (!clear_bootloader_message(&err)) {
Tao Bao2292db82016-12-13 21:53:31 -0800492 LOG(ERROR) << "Failed to clear BCB message: " << err;
Yabin Cui8b309f62016-06-24 18:22:02 -0700493 }
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800494
495 // Remove the command file, so recovery won't repeat indefinitely.
Tao Bao26112e52016-02-25 12:29:40 -0800496 if (has_cache) {
497 if (ensure_path_mounted(COMMAND_FILE) != 0 || (unlink(COMMAND_FILE) && errno != ENOENT)) {
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -0700498 LOG(WARNING) << "Can't unlink " << COMMAND_FILE;
Tao Bao26112e52016-02-25 12:29:40 -0800499 }
500 ensure_path_unmounted(CACHE_ROOT);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800501 }
502
503 sync(); // For good measure.
504}
505
Tao Bao3f5a3822016-12-13 11:14:37 -0800506struct saved_log_file {
507 std::string name;
508 struct stat sb;
509 std::string data;
510};
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700511
Elliott Hughes945548e2015-06-05 17:59:56 -0700512static bool erase_volume(const char* volume) {
Tao Bao3f5a3822016-12-13 11:14:37 -0800513 bool is_cache = (strcmp(volume, CACHE_ROOT) == 0);
514 bool is_data = (strcmp(volume, DATA_ROOT) == 0);
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700515
Tao Bao3f5a3822016-12-13 11:14:37 -0800516 ui->SetBackground(RecoveryUI::ERASING);
517 ui->SetProgressType(RecoveryUI::INDETERMINATE);
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700518
Tao Bao3f5a3822016-12-13 11:14:37 -0800519 std::vector<saved_log_file> log_files;
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700520
Tao Bao3f5a3822016-12-13 11:14:37 -0800521 if (is_cache) {
522 // If we're reformatting /cache, we load any past logs
523 // (i.e. "/cache/recovery/last_*") and the current log
524 // ("/cache/recovery/log") into memory, so we can restore them after
525 // the reformat.
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700526
Tao Bao3f5a3822016-12-13 11:14:37 -0800527 ensure_path_mounted(volume);
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700528
Tao Bao3f5a3822016-12-13 11:14:37 -0800529 struct dirent* de;
530 std::unique_ptr<DIR, decltype(&closedir)> d(opendir(CACHE_LOG_DIR), closedir);
531 if (d) {
532 while ((de = readdir(d.get())) != nullptr) {
533 if (strncmp(de->d_name, "last_", 5) == 0 || strcmp(de->d_name, "log") == 0) {
534 std::string path = android::base::StringPrintf("%s/%s", CACHE_LOG_DIR, de->d_name);
535
536 struct stat sb;
537 if (stat(path.c_str(), &sb) == 0) {
538 // truncate files to 512kb
539 if (sb.st_size > (1 << 19)) {
540 sb.st_size = 1 << 19;
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700541 }
Tao Bao3f5a3822016-12-13 11:14:37 -0800542
543 std::string data(sb.st_size, '\0');
544 FILE* f = fopen(path.c_str(), "rb");
545 fread(&data[0], 1, data.size(), f);
546 fclose(f);
547
548 log_files.emplace_back(saved_log_file{ path, sb, data });
549 }
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700550 }
Tao Bao3f5a3822016-12-13 11:14:37 -0800551 }
Paul Lawrenced0db3372015-11-05 13:38:40 -0800552 } else {
Tao Bao3f5a3822016-12-13 11:14:37 -0800553 if (errno != ENOENT) {
554 PLOG(ERROR) << "Failed to opendir " << CACHE_LOG_DIR;
555 }
Paul Lawrenced0db3372015-11-05 13:38:40 -0800556 }
Tao Bao3f5a3822016-12-13 11:14:37 -0800557 }
Doug Zongkerd0181b82011-10-19 10:51:12 -0700558
Tao Bao3f5a3822016-12-13 11:14:37 -0800559 ui->Print("Formatting %s...\n", volume);
560
561 ensure_path_unmounted(volume);
562
563 int result;
564
565 if (is_data && reason && strcmp(reason, "convert_fbe") == 0) {
566 // Create convert_fbe breadcrumb file to signal to init
567 // to convert to file based encryption, not full disk encryption
568 if (mkdir(CONVERT_FBE_DIR, 0700) != 0) {
569 ui->Print("Failed to make convert_fbe dir %s\n", strerror(errno));
570 return true;
571 }
572 FILE* f = fopen(CONVERT_FBE_FILE, "wb");
573 if (!f) {
574 ui->Print("Failed to convert to file encryption %s\n", strerror(errno));
575 return true;
576 }
577 fclose(f);
578 result = format_volume(volume, CONVERT_FBE_DIR);
579 remove(CONVERT_FBE_FILE);
580 rmdir(CONVERT_FBE_DIR);
581 } else {
582 result = format_volume(volume);
583 }
584
585 if (is_cache) {
586 // Re-create the log dir and write back the log entries.
587 if (ensure_path_mounted(CACHE_LOG_DIR) == 0 &&
588 dirCreateHierarchy(CACHE_LOG_DIR, 0777, nullptr, false, sehandle) == 0) {
589 for (const auto& log : log_files) {
590 if (!android::base::WriteStringToFile(log.data, log.name, log.sb.st_mode, log.sb.st_uid,
591 log.sb.st_gid)) {
592 PLOG(ERROR) << "Failed to write to " << log.name;
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700593 }
Tao Bao3f5a3822016-12-13 11:14:37 -0800594 }
595 } else {
596 PLOG(ERROR) << "Failed to mount / create " << CACHE_LOG_DIR;
Doug Zongker2c3539e2010-09-29 13:21:30 -0700597 }
598
Tao Bao3f5a3822016-12-13 11:14:37 -0800599 // Any part of the log we'd copied to cache is now gone.
600 // Reset the pointer so we copy from the beginning of the temp
601 // log.
602 tmplog_offset = 0;
603 copy_logs();
604 }
605
606 return (result == 0);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800607}
608
Doug Zongkerf93d8162009-09-22 15:16:02 -0700609static int
Doug Zongker28ce47c2011-10-28 10:33:05 -0700610get_menu_selection(const char* const * headers, const char* const * items,
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700611 int menu_only, int initial_selection, Device* device) {
Doug Zongkerf93d8162009-09-22 15:16:02 -0700612 // throw away keys pressed previously, so user doesn't
613 // accidentally trigger menu items.
Doug Zongker211aebc2011-10-28 15:13:10 -0700614 ui->FlushKeys();
Doug Zongkerf93d8162009-09-22 15:16:02 -0700615
Doug Zongker211aebc2011-10-28 15:13:10 -0700616 ui->StartMenu(headers, items, initial_selection);
Doug Zongker8674a722010-09-15 11:08:23 -0700617 int selected = initial_selection;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800618 int chosen_item = -1;
619
Doug Zongkerf93d8162009-09-22 15:16:02 -0700620 while (chosen_item < 0) {
Doug Zongker211aebc2011-10-28 15:13:10 -0700621 int key = ui->WaitKey();
622 int visible = ui->IsTextVisible();
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800623
Doug Zongker5cae4452011-01-25 13:15:30 -0800624 if (key == -1) { // ui_wait_key() timed out
Doug Zongker211aebc2011-10-28 15:13:10 -0700625 if (ui->WasTextEverVisible()) {
Doug Zongker5cae4452011-01-25 13:15:30 -0800626 continue;
627 } else {
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -0700628 LOG(INFO) << "timed out waiting for key input; rebooting.";
Doug Zongker211aebc2011-10-28 15:13:10 -0700629 ui->EndMenu();
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700630 return 0; // XXX fixme
Doug Zongker5cae4452011-01-25 13:15:30 -0800631 }
632 }
633
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700634 int action = device->HandleMenuKey(key, visible);
Doug Zongkerddd6a282009-06-09 12:22:33 -0700635
636 if (action < 0) {
637 switch (action) {
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700638 case Device::kHighlightUp:
Elliott Hughes642aaa72015-04-10 12:47:46 -0700639 selected = ui->SelectMenu(--selected);
Doug Zongkerddd6a282009-06-09 12:22:33 -0700640 break;
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700641 case Device::kHighlightDown:
Elliott Hughes642aaa72015-04-10 12:47:46 -0700642 selected = ui->SelectMenu(++selected);
Doug Zongkerddd6a282009-06-09 12:22:33 -0700643 break;
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700644 case Device::kInvokeItem:
Doug Zongkerddd6a282009-06-09 12:22:33 -0700645 chosen_item = selected;
646 break;
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700647 case Device::kNoAction:
Doug Zongkerddd6a282009-06-09 12:22:33 -0700648 break;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800649 }
Doug Zongkerf93d8162009-09-22 15:16:02 -0700650 } else if (!menu_only) {
Doug Zongkerddd6a282009-06-09 12:22:33 -0700651 chosen_item = action;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800652 }
Doug Zongkerf93d8162009-09-22 15:16:02 -0700653 }
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800654
Doug Zongker211aebc2011-10-28 15:13:10 -0700655 ui->EndMenu();
Doug Zongkerf93d8162009-09-22 15:16:02 -0700656 return chosen_item;
657}
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800658
Doug Zongker8674a722010-09-15 11:08:23 -0700659static int compare_string(const void* a, const void* b) {
660 return strcmp(*(const char**)a, *(const char**)b);
661}
662
Doug Zongker93950222014-07-08 14:10:23 -0700663// Returns a malloc'd path, or NULL.
Elliott Hughes30694c92015-03-25 15:16:51 -0700664static char* browse_directory(const char* path, Device* device) {
Michael Ward9d2629c2011-06-23 22:14:24 -0700665 ensure_path_mounted(path);
Doug Zongkerc18eeb82010-09-21 16:49:26 -0700666
Elliott Hughes30694c92015-03-25 15:16:51 -0700667 DIR* d = opendir(path);
Doug Zongker8674a722010-09-15 11:08:23 -0700668 if (d == NULL) {
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -0700669 PLOG(ERROR) << "error opening " << path;
Doug Zongker93950222014-07-08 14:10:23 -0700670 return NULL;
Doug Zongker8674a722010-09-15 11:08:23 -0700671 }
672
Doug Zongker8674a722010-09-15 11:08:23 -0700673 int d_size = 0;
674 int d_alloc = 10;
Doug Zongker28ce47c2011-10-28 10:33:05 -0700675 char** dirs = (char**)malloc(d_alloc * sizeof(char*));
Doug Zongker8674a722010-09-15 11:08:23 -0700676 int z_size = 1;
677 int z_alloc = 10;
Doug Zongker28ce47c2011-10-28 10:33:05 -0700678 char** zips = (char**)malloc(z_alloc * sizeof(char*));
Doug Zongker8674a722010-09-15 11:08:23 -0700679 zips[0] = strdup("../");
680
Elliott Hughes30694c92015-03-25 15:16:51 -0700681 struct dirent* de;
Doug Zongker8674a722010-09-15 11:08:23 -0700682 while ((de = readdir(d)) != NULL) {
683 int name_len = strlen(de->d_name);
684
685 if (de->d_type == DT_DIR) {
686 // skip "." and ".." entries
687 if (name_len == 1 && de->d_name[0] == '.') continue;
688 if (name_len == 2 && de->d_name[0] == '.' &&
689 de->d_name[1] == '.') continue;
690
691 if (d_size >= d_alloc) {
692 d_alloc *= 2;
Doug Zongker28ce47c2011-10-28 10:33:05 -0700693 dirs = (char**)realloc(dirs, d_alloc * sizeof(char*));
Doug Zongker8674a722010-09-15 11:08:23 -0700694 }
Doug Zongker28ce47c2011-10-28 10:33:05 -0700695 dirs[d_size] = (char*)malloc(name_len + 2);
Doug Zongker8674a722010-09-15 11:08:23 -0700696 strcpy(dirs[d_size], de->d_name);
697 dirs[d_size][name_len] = '/';
698 dirs[d_size][name_len+1] = '\0';
699 ++d_size;
700 } else if (de->d_type == DT_REG &&
701 name_len >= 4 &&
702 strncasecmp(de->d_name + (name_len-4), ".zip", 4) == 0) {
703 if (z_size >= z_alloc) {
704 z_alloc *= 2;
Doug Zongker28ce47c2011-10-28 10:33:05 -0700705 zips = (char**)realloc(zips, z_alloc * sizeof(char*));
Doug Zongker8674a722010-09-15 11:08:23 -0700706 }
707 zips[z_size++] = strdup(de->d_name);
708 }
709 }
710 closedir(d);
711
712 qsort(dirs, d_size, sizeof(char*), compare_string);
713 qsort(zips, z_size, sizeof(char*), compare_string);
714
715 // append dirs to the zips list
716 if (d_size + z_size + 1 > z_alloc) {
717 z_alloc = d_size + z_size + 1;
Doug Zongker28ce47c2011-10-28 10:33:05 -0700718 zips = (char**)realloc(zips, z_alloc * sizeof(char*));
Doug Zongker8674a722010-09-15 11:08:23 -0700719 }
720 memcpy(zips + z_size, dirs, d_size * sizeof(char*));
721 free(dirs);
722 z_size += d_size;
723 zips[z_size] = NULL;
724
Elliott Hughes8fd86d72015-04-13 14:36:02 -0700725 const char* headers[] = { "Choose a package to install:", path, NULL };
Elliott Hughes30694c92015-03-25 15:16:51 -0700726
Doug Zongker93950222014-07-08 14:10:23 -0700727 char* result;
Doug Zongker8674a722010-09-15 11:08:23 -0700728 int chosen_item = 0;
Doug Zongker93950222014-07-08 14:10:23 -0700729 while (true) {
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700730 chosen_item = get_menu_selection(headers, zips, 1, chosen_item, device);
Doug Zongker8674a722010-09-15 11:08:23 -0700731
732 char* item = zips[chosen_item];
733 int item_len = strlen(item);
734 if (chosen_item == 0) { // item 0 is always "../"
Michael Ward9d2629c2011-06-23 22:14:24 -0700735 // go up but continue browsing (if the caller is update_directory)
Doug Zongker93950222014-07-08 14:10:23 -0700736 result = NULL;
Doug Zongker8674a722010-09-15 11:08:23 -0700737 break;
738 }
Doug Zongker93950222014-07-08 14:10:23 -0700739
740 char new_path[PATH_MAX];
741 strlcpy(new_path, path, PATH_MAX);
742 strlcat(new_path, "/", PATH_MAX);
743 strlcat(new_path, item, PATH_MAX);
744
745 if (item[item_len-1] == '/') {
746 // recurse down into a subdirectory
747 new_path[strlen(new_path)-1] = '\0'; // truncate the trailing '/'
748 result = browse_directory(new_path, device);
749 if (result) break;
750 } else {
751 // selected a zip file: return the malloc'd path to the caller.
752 result = strdup(new_path);
753 break;
754 }
755 }
Doug Zongker8674a722010-09-15 11:08:23 -0700756
Elliott Hughes30694c92015-03-25 15:16:51 -0700757 for (int i = 0; i < z_size; ++i) free(zips[i]);
Doug Zongker8674a722010-09-15 11:08:23 -0700758 free(zips);
Doug Zongker8674a722010-09-15 11:08:23 -0700759
760 return result;
761}
762
Elliott Hughes30694c92015-03-25 15:16:51 -0700763static bool yes_no(Device* device, const char* question1, const char* question2) {
Elliott Hughes8fd86d72015-04-13 14:36:02 -0700764 const char* headers[] = { question1, question2, NULL };
Elliott Hughes30694c92015-03-25 15:16:51 -0700765 const char* items[] = { " No", " Yes", NULL };
Doug Zongkerddd6a282009-06-09 12:22:33 -0700766
Elliott Hughes30694c92015-03-25 15:16:51 -0700767 int chosen_item = get_menu_selection(headers, items, 1, 0, device);
768 return (chosen_item == 1);
769}
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800770
Paul Crowley08404b42016-12-19 13:04:23 -0800771static bool ask_to_wipe_data(Device* device) {
772 return yes_no(device, "Wipe all user data?", " THIS CAN NOT BE UNDONE!");
773}
Doug Zongker1066d2c2009-04-01 13:57:40 -0700774
Paul Crowley08404b42016-12-19 13:04:23 -0800775// Return true on success.
776static bool wipe_data(Device* device) {
Tao Bao682c34b2015-04-07 17:16:35 -0700777 modified_flash = true;
778
Doug Zongker211aebc2011-10-28 15:13:10 -0700779 ui->Print("\n-- Wiping data...\n");
Elliott Hughes945548e2015-06-05 17:59:56 -0700780 bool success =
781 device->PreWipeData() &&
782 erase_volume("/data") &&
Tao Bao26112e52016-02-25 12:29:40 -0800783 (has_cache ? erase_volume("/cache") : true) &&
Elliott Hughes945548e2015-06-05 17:59:56 -0700784 device->PostWipeData();
785 ui->Print("Data wipe %s.\n", success ? "complete" : "failed");
786 return success;
Doug Zongkerf93d8162009-09-22 15:16:02 -0700787}
788
Paul Crowley08404b42016-12-19 13:04:23 -0800789static bool prompt_and_wipe_data(Device* device) {
790 const char* const headers[] = {
791 "Boot halted, user data is corrupt",
792 "Wipe all user data to recover",
793 NULL
794 };
795 const char* const items[] = {
796 "Retry boot",
797 "Wipe user data",
798 NULL
799 };
800 for (;;) {
801 int chosen_item = get_menu_selection(headers, items, 1, 0, device);
802 if (chosen_item != 1) {
803 return true; // Just reboot, no wipe; not a failure, user asked for it
804 }
805 if (ask_to_wipe_data(device)) {
806 return wipe_data(device);
807 }
808 }
809}
810
Tao Baoe39a9bc2015-03-31 12:19:05 -0700811// Return true on success.
812static bool wipe_cache(bool should_confirm, Device* device) {
Tao Bao26112e52016-02-25 12:29:40 -0800813 if (!has_cache) {
814 ui->Print("No /cache partition found.\n");
815 return false;
816 }
817
Elliott Hughes30694c92015-03-25 15:16:51 -0700818 if (should_confirm && !yes_no(device, "Wipe cache?", " THIS CAN NOT BE UNDONE!")) {
Tao Baoe39a9bc2015-03-31 12:19:05 -0700819 return false;
Elliott Hughes30694c92015-03-25 15:16:51 -0700820 }
821
Tao Bao682c34b2015-04-07 17:16:35 -0700822 modified_flash = true;
823
Elliott Hughes30694c92015-03-25 15:16:51 -0700824 ui->Print("\n-- Wiping cache...\n");
Elliott Hughes945548e2015-06-05 17:59:56 -0700825 bool success = erase_volume("/cache");
826 ui->Print("Cache wipe %s.\n", success ? "complete" : "failed");
827 return success;
Elliott Hughes30694c92015-03-25 15:16:51 -0700828}
829
Tao Bao862a4c12016-06-02 11:16:50 -0700830// Secure-wipe a given partition. It uses BLKSECDISCARD, if supported.
831// Otherwise, it goes with BLKDISCARD (if device supports BLKDISCARDZEROES) or
832// BLKZEROOUT.
833static bool secure_wipe_partition(const std::string& partition) {
834 android::base::unique_fd fd(TEMP_FAILURE_RETRY(open(partition.c_str(), O_WRONLY)));
835 if (fd == -1) {
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -0700836 PLOG(ERROR) << "failed to open \"" << partition << "\"";
Tao Bao862a4c12016-06-02 11:16:50 -0700837 return false;
838 }
839
840 uint64_t range[2] = {0, 0};
841 if (ioctl(fd, BLKGETSIZE64, &range[1]) == -1 || range[1] == 0) {
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -0700842 PLOG(ERROR) << "failed to get partition size";
Tao Bao862a4c12016-06-02 11:16:50 -0700843 return false;
844 }
845 printf("Secure-wiping \"%s\" from %" PRIu64 " to %" PRIu64 ".\n",
846 partition.c_str(), range[0], range[1]);
847
848 printf("Trying BLKSECDISCARD...\t");
849 if (ioctl(fd, BLKSECDISCARD, &range) == -1) {
850 printf("failed: %s\n", strerror(errno));
851
852 // Use BLKDISCARD if it zeroes out blocks, otherwise use BLKZEROOUT.
853 unsigned int zeroes;
854 if (ioctl(fd, BLKDISCARDZEROES, &zeroes) == 0 && zeroes != 0) {
855 printf("Trying BLKDISCARD...\t");
856 if (ioctl(fd, BLKDISCARD, &range) == -1) {
857 printf("failed: %s\n", strerror(errno));
858 return false;
859 }
860 } else {
861 printf("Trying BLKZEROOUT...\t");
862 if (ioctl(fd, BLKZEROOUT, &range) == -1) {
863 printf("failed: %s\n", strerror(errno));
864 return false;
865 }
866 }
867 }
868
869 printf("done\n");
870 return true;
871}
872
Yabin Cuifd99a312016-06-09 14:09:39 -0700873// Check if the wipe package matches expectation:
874// 1. verify the package.
875// 2. check metadata (ota-type, pre-device and serial number if having one).
876static bool check_wipe_package(size_t wipe_package_size) {
877 if (wipe_package_size == 0) {
878 LOG(ERROR) << "wipe_package_size is zero";
879 return false;
880 }
881 std::string wipe_package;
882 std::string err_str;
883 if (!read_wipe_package(&wipe_package, wipe_package_size, &err_str)) {
884 PLOG(ERROR) << "Failed to read wipe package";
885 return false;
886 }
887 if (!verify_package(reinterpret_cast<const unsigned char*>(wipe_package.data()),
888 wipe_package.size())) {
889 LOG(ERROR) << "Failed to verify package";
890 return false;
891 }
892
893 // Extract metadata
894 ZipArchiveHandle zip;
895 int err = OpenArchiveFromMemory(reinterpret_cast<void*>(&wipe_package[0]),
896 wipe_package.size(), "wipe_package", &zip);
897 if (err != 0) {
898 LOG(ERROR) << "Can't open wipe package : " << ErrorCodeString(err);
899 return false;
900 }
901 std::string metadata;
902 if (!read_metadata_from_package(&zip, &metadata)) {
903 CloseArchive(zip);
904 return false;
905 }
906 CloseArchive(zip);
907
908 // Check metadata
909 std::vector<std::string> lines = android::base::Split(metadata, "\n");
910 bool ota_type_matched = false;
911 bool device_type_matched = false;
912 bool has_serial_number = false;
913 bool serial_number_matched = false;
914 for (const auto& line : lines) {
915 if (line == "ota-type=BRICK") {
916 ota_type_matched = true;
917 } else if (android::base::StartsWith(line, "pre-device=")) {
918 std::string device_type = line.substr(strlen("pre-device="));
919 char real_device_type[PROPERTY_VALUE_MAX];
920 property_get("ro.build.product", real_device_type, "");
921 device_type_matched = (device_type == real_device_type);
922 } else if (android::base::StartsWith(line, "serialno=")) {
923 std::string serial_no = line.substr(strlen("serialno="));
924 char real_serial_no[PROPERTY_VALUE_MAX];
925 property_get("ro.serialno", real_serial_no, "");
926 has_serial_number = true;
927 serial_number_matched = (serial_no == real_serial_no);
928 }
929 }
930 return ota_type_matched && device_type_matched && (!has_serial_number || serial_number_matched);
931}
932
Yabin Cui8b309f62016-06-24 18:22:02 -0700933// Wipe the current A/B device, with a secure wipe of all the partitions in
934// RECOVERY_WIPE.
Yabin Cuifd99a312016-06-09 14:09:39 -0700935static bool wipe_ab_device(size_t wipe_package_size) {
Tao Bao862a4c12016-06-02 11:16:50 -0700936 ui->SetBackground(RecoveryUI::ERASING);
937 ui->SetProgressType(RecoveryUI::INDETERMINATE);
938
Yabin Cuifd99a312016-06-09 14:09:39 -0700939 if (!check_wipe_package(wipe_package_size)) {
940 LOG(ERROR) << "Failed to verify wipe package";
941 return false;
942 }
Tao Bao862a4c12016-06-02 11:16:50 -0700943 std::string partition_list;
Yabin Cui8b309f62016-06-24 18:22:02 -0700944 if (!android::base::ReadFileToString(RECOVERY_WIPE, &partition_list)) {
945 LOG(ERROR) << "failed to read \"" << RECOVERY_WIPE << "\"";
Tao Bao862a4c12016-06-02 11:16:50 -0700946 return false;
947 }
948
949 std::vector<std::string> lines = android::base::Split(partition_list, "\n");
950 for (const std::string& line : lines) {
951 std::string partition = android::base::Trim(line);
952 // Ignore '#' comment or empty lines.
953 if (android::base::StartsWith(partition, "#") || partition.empty()) {
954 continue;
955 }
956
957 // Proceed anyway even if it fails to wipe some partition.
958 secure_wipe_partition(partition);
959 }
960 return true;
961}
962
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700963static void choose_recovery_file(Device* device) {
Elliott Hughesc0491632015-05-06 12:40:05 -0700964 // "Back" + KEEP_LOG_COUNT * 2 + terminating nullptr entry
965 char* entries[1 + KEEP_LOG_COUNT * 2 + 1];
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700966 memset(entries, 0, sizeof(entries));
967
Tao Baobef39712015-05-04 18:50:27 -0700968 unsigned int n = 0;
Patrick Tjincd055ee2014-12-09 11:26:40 -0800969
Tianjie Xua54f75e2016-08-17 12:02:46 -0700970 if (has_cache) {
971 // Add LAST_LOG_FILE + LAST_LOG_FILE.x
972 // Add LAST_KMSG_FILE + LAST_KMSG_FILE.x
973 for (int i = 0; i < KEEP_LOG_COUNT; i++) {
974 char* log_file;
975 int ret;
976 ret = (i == 0) ? asprintf(&log_file, "%s", LAST_LOG_FILE) :
977 asprintf(&log_file, "%s.%d", LAST_LOG_FILE, i);
978 if (ret == -1) {
979 // memory allocation failure - return early. Should never happen.
980 return;
981 }
982 if ((ensure_path_mounted(log_file) != 0) || (access(log_file, R_OK) == -1)) {
983 free(log_file);
984 } else {
985 entries[n++] = log_file;
986 }
Tao Baobef39712015-05-04 18:50:27 -0700987
Tianjie Xua54f75e2016-08-17 12:02:46 -0700988 char* kmsg_file;
989 ret = (i == 0) ? asprintf(&kmsg_file, "%s", LAST_KMSG_FILE) :
990 asprintf(&kmsg_file, "%s.%d", LAST_KMSG_FILE, i);
991 if (ret == -1) {
992 // memory allocation failure - return early. Should never happen.
993 return;
994 }
995 if ((ensure_path_mounted(kmsg_file) != 0) || (access(kmsg_file, R_OK) == -1)) {
996 free(kmsg_file);
997 } else {
998 entries[n++] = kmsg_file;
999 }
Tao Baobef39712015-05-04 18:50:27 -07001000 }
Tianjie Xua54f75e2016-08-17 12:02:46 -07001001 } else {
1002 // If cache partition is not found, view /tmp/recovery.log instead.
1003 ui->Print("No /cache partition found.\n");
1004 if (access(TEMPORARY_LOG_FILE, R_OK) == -1) {
1005 return;
1006 } else{
1007 entries[n++] = strdup(TEMPORARY_LOG_FILE);
Tao Baobef39712015-05-04 18:50:27 -07001008 }
Nick Kralevicha9ad0322014-10-22 18:38:48 -07001009 }
1010
Elliott Hughesc0491632015-05-06 12:40:05 -07001011 entries[n++] = strdup("Back");
1012
Tao Baobef39712015-05-04 18:50:27 -07001013 const char* headers[] = { "Select file to view", nullptr };
Nick Kralevicha9ad0322014-10-22 18:38:48 -07001014
Elliott Hughes8de52072015-04-08 20:06:50 -07001015 while (true) {
Elliott Hughes30694c92015-03-25 15:16:51 -07001016 int chosen_item = get_menu_selection(headers, entries, 1, 0, device);
Elliott Hughesc0491632015-05-06 12:40:05 -07001017 if (strcmp(entries[chosen_item], "Back") == 0) break;
Elliott Hughes8de52072015-04-08 20:06:50 -07001018
Elliott Hughes8de52072015-04-08 20:06:50 -07001019 ui->ShowFile(entries[chosen_item]);
Nick Kralevicha9ad0322014-10-22 18:38:48 -07001020 }
1021
Tao Baobef39712015-05-04 18:50:27 -07001022 for (size_t i = 0; i < (sizeof(entries) / sizeof(*entries)); i++) {
Nick Kralevicha9ad0322014-10-22 18:38:48 -07001023 free(entries[i]);
1024 }
1025}
1026
Elliott Hughes498cda62016-04-14 16:49:04 -07001027static void run_graphics_test(Device* device) {
1028 // Switch to graphics screen.
1029 ui->ShowText(false);
1030
1031 ui->SetProgressType(RecoveryUI::INDETERMINATE);
1032 ui->SetBackground(RecoveryUI::INSTALLING_UPDATE);
1033 sleep(1);
1034
1035 ui->SetBackground(RecoveryUI::ERROR);
1036 sleep(1);
1037
1038 ui->SetBackground(RecoveryUI::NO_COMMAND);
1039 sleep(1);
1040
1041 ui->SetBackground(RecoveryUI::ERASING);
1042 sleep(1);
1043
1044 ui->SetBackground(RecoveryUI::INSTALLING_UPDATE);
1045
1046 ui->SetProgressType(RecoveryUI::DETERMINATE);
1047 ui->ShowProgress(1.0, 10.0);
1048 float fraction = 0.0;
1049 for (size_t i = 0; i < 100; ++i) {
1050 fraction += .01;
1051 ui->SetProgress(fraction);
1052 usleep(100000);
1053 }
1054
1055 ui->ShowText(true);
1056}
1057
Tao Baocdcf28f2016-01-13 15:05:20 -08001058// How long (in seconds) we wait for the fuse-provided package file to
1059// appear, before timing out.
1060#define SDCARD_INSTALL_TIMEOUT 10
1061
Tao Bao145d8612015-03-25 15:51:15 -07001062static int apply_from_sdcard(Device* device, bool* wipe_cache) {
Tao Bao682c34b2015-04-07 17:16:35 -07001063 modified_flash = true;
1064
Christian Poetzsch4ec58a42015-02-19 10:42:39 +00001065 if (ensure_path_mounted(SDCARD_ROOT) != 0) {
1066 ui->Print("\n-- Couldn't mount %s.\n", SDCARD_ROOT);
1067 return INSTALL_ERROR;
1068 }
1069
1070 char* path = browse_directory(SDCARD_ROOT, device);
1071 if (path == NULL) {
Elliott Hughes018ed312015-04-08 16:51:36 -07001072 ui->Print("\n-- No package file selected.\n");
caozhiyuanb4effb92015-06-10 16:46:38 +08001073 ensure_path_unmounted(SDCARD_ROOT);
Christian Poetzsch4ec58a42015-02-19 10:42:39 +00001074 return INSTALL_ERROR;
1075 }
1076
1077 ui->Print("\n-- Install %s ...\n", path);
1078 set_sdcard_update_bootloader_message();
Christian Poetzsch4ec58a42015-02-19 10:42:39 +00001079
Tao Baocdcf28f2016-01-13 15:05:20 -08001080 // We used to use fuse in a thread as opposed to a process. Since accessing
1081 // through fuse involves going from kernel to userspace to kernel, it leads
1082 // to deadlock when a page fault occurs. (Bug: 26313124)
1083 pid_t child;
1084 if ((child = fork()) == 0) {
1085 bool status = start_sdcard_fuse(path);
1086
1087 _exit(status ? EXIT_SUCCESS : EXIT_FAILURE);
1088 }
1089
1090 // FUSE_SIDELOAD_HOST_PATHNAME will start to exist once the fuse in child
1091 // process is ready.
1092 int result = INSTALL_ERROR;
1093 int status;
1094 bool waited = false;
1095 for (int i = 0; i < SDCARD_INSTALL_TIMEOUT; ++i) {
1096 if (waitpid(child, &status, WNOHANG) == -1) {
1097 result = INSTALL_ERROR;
1098 waited = true;
1099 break;
1100 }
1101
1102 struct stat sb;
1103 if (stat(FUSE_SIDELOAD_HOST_PATHNAME, &sb) == -1) {
1104 if (errno == ENOENT && i < SDCARD_INSTALL_TIMEOUT-1) {
1105 sleep(1);
1106 continue;
1107 } else {
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -07001108 LOG(ERROR) << "Timed out waiting for the fuse-provided package.";
Tao Baocdcf28f2016-01-13 15:05:20 -08001109 result = INSTALL_ERROR;
1110 kill(child, SIGKILL);
1111 break;
1112 }
1113 }
1114
1115 result = install_package(FUSE_SIDELOAD_HOST_PATHNAME, wipe_cache,
Tianjie Xu16255832016-04-30 11:49:59 -07001116 TEMPORARY_INSTALL_FILE, false, 0/*retry_count*/);
Tao Baocdcf28f2016-01-13 15:05:20 -08001117 break;
1118 }
Christian Poetzsch4ec58a42015-02-19 10:42:39 +00001119
Tao Baocdcf28f2016-01-13 15:05:20 -08001120 if (!waited) {
1121 // Calling stat() on this magic filename signals the fuse
1122 // filesystem to shut down.
1123 struct stat sb;
1124 stat(FUSE_SIDELOAD_HOST_EXIT_PATHNAME, &sb);
1125
1126 waitpid(child, &status, 0);
1127 }
1128
1129 if (!WIFEXITED(status) || WEXITSTATUS(status) != 0) {
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -07001130 LOG(ERROR) << "Error exit from the fuse process: " << WEXITSTATUS(status);
Tao Baocdcf28f2016-01-13 15:05:20 -08001131 }
1132
Christian Poetzsch4ec58a42015-02-19 10:42:39 +00001133 ensure_path_unmounted(SDCARD_ROOT);
Tao Baocdcf28f2016-01-13 15:05:20 -08001134 return result;
Christian Poetzsch4ec58a42015-02-19 10:42:39 +00001135}
1136
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001137// Return REBOOT, SHUTDOWN, or REBOOT_BOOTLOADER. Returning NO_ACTION
1138// means to take the default, which is to reboot or shutdown depending
1139// on if the --shutdown_after flag was passed to recovery.
1140static Device::BuiltinAction
Doug Zongker6c8553d2012-09-24 10:40:47 -07001141prompt_and_wait(Device* device, int status) {
Doug Zongkerf93d8162009-09-22 15:16:02 -07001142 for (;;) {
Tianjie Xuc14d95d2016-03-24 11:50:34 -07001143 finish_recovery();
Doug Zongker6c8553d2012-09-24 10:40:47 -07001144 switch (status) {
1145 case INSTALL_SUCCESS:
1146 case INSTALL_NONE:
1147 ui->SetBackground(RecoveryUI::NO_COMMAND);
1148 break;
1149
1150 case INSTALL_ERROR:
1151 case INSTALL_CORRUPT:
1152 ui->SetBackground(RecoveryUI::ERROR);
1153 break;
1154 }
Doug Zongker211aebc2011-10-28 15:13:10 -07001155 ui->SetProgressType(RecoveryUI::EMPTY);
Doug Zongkerf93d8162009-09-22 15:16:02 -07001156
Elliott Hughes8fd86d72015-04-13 14:36:02 -07001157 int chosen_item = get_menu_selection(nullptr, device->GetMenuItems(), 0, 0, device);
Doug Zongkerf93d8162009-09-22 15:16:02 -07001158
1159 // device-specific code may take some action here. It may
1160 // return one of the core actions handled in the switch
1161 // statement below.
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001162 Device::BuiltinAction chosen_action = device->InvokeMenuItem(chosen_item);
Doug Zongkerf93d8162009-09-22 15:16:02 -07001163
Elliott Hughes30694c92015-03-25 15:16:51 -07001164 bool should_wipe_cache = false;
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001165 switch (chosen_action) {
1166 case Device::NO_ACTION:
1167 break;
1168
Doug Zongkerdaefc1d2011-10-31 09:34:15 -07001169 case Device::REBOOT:
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001170 case Device::SHUTDOWN:
1171 case Device::REBOOT_BOOTLOADER:
1172 return chosen_action;
Doug Zongkerf93d8162009-09-22 15:16:02 -07001173
Doug Zongkerdaefc1d2011-10-31 09:34:15 -07001174 case Device::WIPE_DATA:
Paul Crowley08404b42016-12-19 13:04:23 -08001175 if (ui->IsTextVisible()) {
1176 if (ask_to_wipe_data(device)) {
1177 wipe_data(device);
1178 }
1179 } else {
1180 wipe_data(device);
1181 return Device::NO_ACTION;
1182 }
Doug Zongkerf93d8162009-09-22 15:16:02 -07001183 break;
1184
Doug Zongkerdaefc1d2011-10-31 09:34:15 -07001185 case Device::WIPE_CACHE:
Elliott Hughes30694c92015-03-25 15:16:51 -07001186 wipe_cache(ui->IsTextVisible(), device);
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001187 if (!ui->IsTextVisible()) return Device::NO_ACTION;
Doug Zongkerf93d8162009-09-22 15:16:02 -07001188 break;
1189
Christian Poetzsch4ec58a42015-02-19 10:42:39 +00001190 case Device::APPLY_ADB_SIDELOAD:
Elliott Hughesec283402015-04-10 10:01:53 -07001191 case Device::APPLY_SDCARD:
Christian Poetzsch4ec58a42015-02-19 10:42:39 +00001192 {
1193 bool adb = (chosen_action == Device::APPLY_ADB_SIDELOAD);
1194 if (adb) {
Elliott Hughes30694c92015-03-25 15:16:51 -07001195 status = apply_from_adb(ui, &should_wipe_cache, TEMPORARY_INSTALL_FILE);
Doug Zongkerd0181b82011-10-19 10:51:12 -07001196 } else {
Elliott Hughes30694c92015-03-25 15:16:51 -07001197 status = apply_from_sdcard(device, &should_wipe_cache);
Doug Zongkerd0181b82011-10-19 10:51:12 -07001198 }
Doug Zongker945fc682014-07-10 10:50:39 -07001199
Elliott Hughes30694c92015-03-25 15:16:51 -07001200 if (status == INSTALL_SUCCESS && should_wipe_cache) {
Tao Baoe39a9bc2015-03-31 12:19:05 -07001201 if (!wipe_cache(false, device)) {
1202 status = INSTALL_ERROR;
1203 }
Christian Poetzsch4ec58a42015-02-19 10:42:39 +00001204 }
1205
Tao Baoc679f932015-03-30 09:43:49 -07001206 if (status != INSTALL_SUCCESS) {
1207 ui->SetBackground(RecoveryUI::ERROR);
1208 ui->Print("Installation aborted.\n");
1209 copy_logs();
1210 } else if (!ui->IsTextVisible()) {
1211 return Device::NO_ACTION; // reboot if logs aren't visible
1212 } else {
1213 ui->Print("\nInstall from %s complete.\n", adb ? "ADB" : "SD card");
Doug Zongker8674a722010-09-15 11:08:23 -07001214 }
Doug Zongkerf93d8162009-09-22 15:16:02 -07001215 }
1216 break;
Doug Zongkerdaefc1d2011-10-31 09:34:15 -07001217
Elliott Hughesec283402015-04-10 10:01:53 -07001218 case Device::VIEW_RECOVERY_LOGS:
1219 choose_recovery_file(device);
Michael Ward9d2629c2011-06-23 22:14:24 -07001220 break;
Doug Zongker9270a202012-01-09 15:16:13 -08001221
Elliott Hughes498cda62016-04-14 16:49:04 -07001222 case Device::RUN_GRAPHICS_TEST:
1223 run_graphics_test(device);
1224 break;
1225
Elliott Hughesec283402015-04-10 10:01:53 -07001226 case Device::MOUNT_SYSTEM:
Tao Baoabb8f772015-07-30 14:43:27 -07001227 // For a system image built with the root directory (i.e.
1228 // system_root_image == "true"), we mount it to /system_root, and symlink /system
1229 // to /system_root/system to make adb shell work (the symlink is created through
1230 // the build system).
1231 // Bug: 22855115
Elliott Hughescb220402016-09-23 15:30:55 -07001232 if (android::base::GetBoolProperty("ro.build.system_root_image", false)) {
Tao Baoabb8f772015-07-30 14:43:27 -07001233 if (ensure_path_mounted_at("/", "/system_root") != -1) {
1234 ui->Print("Mounted /system.\n");
1235 }
1236 } else {
1237 if (ensure_path_mounted("/system") != -1) {
1238 ui->Print("Mounted /system.\n");
1239 }
Elliott Hughesec283402015-04-10 10:01:53 -07001240 }
Tao Baoabb8f772015-07-30 14:43:27 -07001241
Nick Kralevicha9ad0322014-10-22 18:38:48 -07001242 break;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001243 }
1244 }
1245}
1246
1247static void
Oscar Montemayor05231562009-11-30 08:40:57 -08001248print_property(const char *key, const char *name, void *cookie) {
Doug Zongker56c51052010-07-01 09:18:44 -07001249 printf("%s=%s\n", key, name);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001250}
1251
Tao Baoac9d94d2016-11-03 11:37:15 -07001252static std::string load_locale_from_cache() {
1253 if (ensure_path_mounted(LOCALE_FILE) != 0) {
1254 LOG(ERROR) << "Can't mount " << LOCALE_FILE;
1255 return "";
Doug Zongker02ec6b82012-08-22 17:26:40 -07001256 }
Tao Baoac9d94d2016-11-03 11:37:15 -07001257
1258 std::string content;
1259 if (!android::base::ReadFileToString(LOCALE_FILE, &content)) {
1260 PLOG(ERROR) << "Can't read " << LOCALE_FILE;
1261 return "";
1262 }
1263
1264 return android::base::Trim(content);
Doug Zongker02ec6b82012-08-22 17:26:40 -07001265}
1266
Tao Baoac9d94d2016-11-03 11:37:15 -07001267void ui_print(const char* format, ...) {
1268 std::string buffer;
Doug Zongker7c3ae452013-05-14 11:03:02 -07001269 va_list ap;
1270 va_start(ap, format);
Tao Baoac9d94d2016-11-03 11:37:15 -07001271 android::base::StringAppendV(&buffer, format, ap);
Doug Zongker7c3ae452013-05-14 11:03:02 -07001272 va_end(ap);
1273
Tao Baoac9d94d2016-11-03 11:37:15 -07001274 if (ui != nullptr) {
1275 ui->Print("%s", buffer.c_str());
Doug Zongker7c3ae452013-05-14 11:03:02 -07001276 } else {
Tao Baoac9d94d2016-11-03 11:37:15 -07001277 fputs(buffer.c_str(), stdout);
Doug Zongker7c3ae452013-05-14 11:03:02 -07001278 }
1279}
1280
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -07001281static constexpr char log_characters[] = "VDIWEF";
1282
1283void UiLogger(android::base::LogId id, android::base::LogSeverity severity,
1284 const char* tag, const char* file, unsigned int line,
1285 const char* message) {
Tao Baoac9d94d2016-11-03 11:37:15 -07001286 if (severity >= android::base::ERROR && ui != nullptr) {
1287 ui->Print("E:%s\n", message);
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -07001288 } else {
1289 fprintf(stdout, "%c:%s\n", log_characters[severity], message);
1290 }
1291}
1292
Yabin Cui99281df2016-02-17 12:21:52 -08001293static bool is_battery_ok() {
1294 struct healthd_config healthd_config = {
1295 .batteryStatusPath = android::String8(android::String8::kEmptyString),
1296 .batteryHealthPath = android::String8(android::String8::kEmptyString),
1297 .batteryPresentPath = android::String8(android::String8::kEmptyString),
1298 .batteryCapacityPath = android::String8(android::String8::kEmptyString),
1299 .batteryVoltagePath = android::String8(android::String8::kEmptyString),
1300 .batteryTemperaturePath = android::String8(android::String8::kEmptyString),
1301 .batteryTechnologyPath = android::String8(android::String8::kEmptyString),
1302 .batteryCurrentNowPath = android::String8(android::String8::kEmptyString),
1303 .batteryCurrentAvgPath = android::String8(android::String8::kEmptyString),
1304 .batteryChargeCounterPath = android::String8(android::String8::kEmptyString),
1305 .batteryFullChargePath = android::String8(android::String8::kEmptyString),
1306 .batteryCycleCountPath = android::String8(android::String8::kEmptyString),
1307 .energyCounter = NULL,
1308 .boot_min_cap = 0,
1309 .screen_on = NULL
1310 };
1311 healthd_board_init(&healthd_config);
1312
1313 android::BatteryMonitor monitor;
1314 monitor.init(&healthd_config);
1315
1316 int wait_second = 0;
1317 while (true) {
1318 int charge_status = monitor.getChargeStatus();
1319 // Treat unknown status as charged.
1320 bool charged = (charge_status != android::BATTERY_STATUS_DISCHARGING &&
1321 charge_status != android::BATTERY_STATUS_NOT_CHARGING);
1322 android::BatteryProperty capacity;
1323 android::status_t status = monitor.getProperty(android::BATTERY_PROP_CAPACITY, &capacity);
1324 ui_print("charge_status %d, charged %d, status %d, capacity %lld\n", charge_status,
1325 charged, status, capacity.valueInt64);
1326 // At startup, the battery drivers in devices like N5X/N6P take some time to load
1327 // the battery profile. Before the load finishes, it reports value 50 as a fake
1328 // capacity. BATTERY_READ_TIMEOUT_IN_SEC is set that the battery drivers are expected
1329 // to finish loading the battery profile earlier than 10 seconds after kernel startup.
1330 if (status == 0 && capacity.valueInt64 == 50) {
1331 if (wait_second < BATTERY_READ_TIMEOUT_IN_SEC) {
1332 sleep(1);
1333 wait_second++;
1334 continue;
1335 }
1336 }
1337 // If we can't read battery percentage, it may be a device without battery. In this
1338 // situation, use 100 as a fake battery percentage.
1339 if (status != 0) {
1340 capacity.valueInt64 = 100;
1341 }
1342 return (charged && capacity.valueInt64 >= BATTERY_WITH_CHARGER_OK_PERCENTAGE) ||
1343 (!charged && capacity.valueInt64 >= BATTERY_OK_PERCENTAGE);
1344 }
1345}
1346
Tianjie Xu3c62b672016-02-05 18:25:58 -08001347static void set_retry_bootloader_message(int retry_count, int argc, char** argv) {
Tianjie Xubd56f152016-09-28 16:32:10 -07001348 std::vector<std::string> options;
Tianjie Xu3c62b672016-02-05 18:25:58 -08001349 for (int i = 1; i < argc; ++i) {
1350 if (strstr(argv[i], "retry_count") == nullptr) {
Tianjie Xubd56f152016-09-28 16:32:10 -07001351 options.push_back(argv[i]);
Tianjie Xu3c62b672016-02-05 18:25:58 -08001352 }
1353 }
1354
Tianjie Xubd56f152016-09-28 16:32:10 -07001355 // Increment the retry counter by 1.
1356 options.push_back(android::base::StringPrintf("--retry_count=%d", retry_count+1));
Yabin Cui8b309f62016-06-24 18:22:02 -07001357 std::string err;
Tao Bao2292db82016-12-13 21:53:31 -08001358 if (!update_bootloader_message(options, &err)) {
Yabin Cui8b309f62016-06-24 18:22:02 -07001359 LOG(ERROR) << err;
1360 }
Tianjie Xu3c62b672016-02-05 18:25:58 -08001361}
1362
Tianjie Xu06e57ac2016-07-11 14:04:08 -07001363static bool bootreason_in_blacklist() {
1364 char bootreason[PROPERTY_VALUE_MAX];
1365 if (property_get("ro.boot.bootreason", bootreason, nullptr) > 0) {
1366 for (const auto& str : bootreason_blacklist) {
1367 if (strcasecmp(str.c_str(), bootreason) == 0) {
1368 return true;
1369 }
1370 }
1371 }
1372 return false;
1373}
1374
1375static void log_failure_code(ErrorCode code, const char *update_package) {
1376 std::vector<std::string> log_buffer = {
1377 update_package,
1378 "0", // install result
1379 "error: " + std::to_string(code),
1380 };
1381 std::string log_content = android::base::Join(log_buffer, "\n");
1382 if (!android::base::WriteStringToFile(log_content, TEMPORARY_INSTALL_FILE)) {
Tao Baoac9d94d2016-11-03 11:37:15 -07001383 PLOG(ERROR) << "failed to write " << TEMPORARY_INSTALL_FILE;
Tianjie Xu06e57ac2016-07-11 14:04:08 -07001384 }
1385
1386 // Also write the info into last_log.
1387 LOG(INFO) << log_content;
1388}
1389
Yabin Cui99281df2016-02-17 12:21:52 -08001390int main(int argc, char **argv) {
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -07001391 // We don't have logcat yet under recovery; so we'll print error on screen and
1392 // log to stdout (which is redirected to recovery.log) as we used to do.
1393 android::base::InitLogging(argv, &UiLogger);
1394
Mark Salyzyna4f701a2016-03-09 14:58:16 -08001395 // Take last pmsg contents and rewrite it to the current pmsg session.
1396 static const char filter[] = "recovery/";
1397 // Do we need to rotate?
1398 bool doRotate = false;
Tianjie Xue113e4d2016-10-21 17:46:13 -07001399
Mark Salyzyna4f701a2016-03-09 14:58:16 -08001400 __android_log_pmsg_file_read(
1401 LOG_ID_SYSTEM, ANDROID_LOG_INFO, filter,
1402 logbasename, &doRotate);
1403 // Take action to refresh pmsg contents
1404 __android_log_pmsg_file_read(
1405 LOG_ID_SYSTEM, ANDROID_LOG_INFO, filter,
1406 logrotate, &doRotate);
1407
Doug Zongker9270a202012-01-09 15:16:13 -08001408 // If this binary is started with the single argument "--adbd",
1409 // instead of being the normal recovery binary, it turns into kind
1410 // of a stripped-down version of adbd that only supports the
1411 // 'sideload' command. Note this must be a real argument, not
1412 // anything in the command file or bootloader control block; the
1413 // only way recovery should be run with this argument is when it
1414 // starts a copy of itself from the apply_from_adb() function.
1415 if (argc == 2 && strcmp(argv[1], "--adbd") == 0) {
Josh Gaoacb2a2f2016-08-26 18:24:34 -07001416 minadbd_main();
Doug Zongker9270a202012-01-09 15:16:13 -08001417 return 0;
1418 }
1419
Tao Bao04ca4262015-09-10 15:32:24 -07001420 time_t start = time(NULL);
1421
1422 // redirect_stdio should be called only in non-sideload mode. Otherwise
1423 // we may have two logger instances with different timestamps.
1424 redirect_stdio(TEMPORARY_LOG_FILE);
1425
Doug Zongker19a8e242014-01-21 09:25:41 -08001426 printf("Starting recovery (pid %d) on %s", getpid(), ctime(&start));
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001427
Doug Zongkerd4208f92010-09-20 12:16:13 -07001428 load_volume_table();
Tao Bao26112e52016-02-25 12:29:40 -08001429 has_cache = volume_for_path(CACHE_ROOT) != nullptr;
1430
Tao Baof0ed1592016-12-02 11:32:19 -08001431 std::vector<std::string> args = get_args(argc, argv);
1432 std::vector<char*> args_to_parse(args.size());
1433 std::transform(args.cbegin(), args.cend(), args_to_parse.begin(),
1434 [](const std::string& arg) { return const_cast<char*>(arg.c_str()); });
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001435
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001436 const char *update_package = NULL;
Tao Baoe39a9bc2015-03-31 12:19:05 -07001437 bool should_wipe_data = false;
Paul Crowley08404b42016-12-19 13:04:23 -08001438 bool should_prompt_and_wipe_data = false;
Tao Baoc679f932015-03-30 09:43:49 -07001439 bool should_wipe_cache = false;
Yabin Cui8b309f62016-06-24 18:22:02 -07001440 bool should_wipe_ab = false;
Yabin Cuifd99a312016-06-09 14:09:39 -07001441 size_t wipe_package_size = 0;
Tao Bao145d8612015-03-25 15:51:15 -07001442 bool show_text = false;
Tao Baoc679f932015-03-30 09:43:49 -07001443 bool sideload = false;
1444 bool sideload_auto_reboot = false;
Doug Zongkere5d5ac72012-04-12 11:01:22 -07001445 bool just_exit = false;
Doug Zongkerb1d12632014-03-18 10:32:12 -07001446 bool shutdown_after = false;
Tianjie Xu3c62b672016-02-05 18:25:58 -08001447 int retry_count = 0;
Tianjie Xu35926c42016-04-28 18:06:26 -07001448 bool security_update = false;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001449
1450 int arg;
Tao Bao862a4c12016-06-02 11:16:50 -07001451 int option_index;
Tao Baof0ed1592016-12-02 11:32:19 -08001452 while ((arg = getopt_long(args_to_parse.size(), args_to_parse.data(), "", OPTIONS,
1453 &option_index)) != -1) {
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001454 switch (arg) {
Tianjie Xu3c62b672016-02-05 18:25:58 -08001455 case 'n': android::base::ParseInt(optarg, &retry_count, 0); break;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001456 case 'u': update_package = optarg; break;
Tao Baoe39a9bc2015-03-31 12:19:05 -07001457 case 'w': should_wipe_data = true; break;
Tao Baoc679f932015-03-30 09:43:49 -07001458 case 'c': should_wipe_cache = true; break;
Tao Bao145d8612015-03-25 15:51:15 -07001459 case 't': show_text = true; break;
Tao Baoc679f932015-03-30 09:43:49 -07001460 case 's': sideload = true; break;
1461 case 'a': sideload = true; sideload_auto_reboot = true; break;
Doug Zongkere5d5ac72012-04-12 11:01:22 -07001462 case 'x': just_exit = true; break;
Doug Zongker02ec6b82012-08-22 17:26:40 -07001463 case 'l': locale = optarg; break;
Doug Zongkerc87bab12013-11-25 13:53:25 -08001464 case 'g': {
1465 if (stage == NULL || *stage == '\0') {
1466 char buffer[20] = "1/";
1467 strncat(buffer, optarg, sizeof(buffer)-3);
1468 stage = strdup(buffer);
1469 }
1470 break;
1471 }
Doug Zongkerb1d12632014-03-18 10:32:12 -07001472 case 'p': shutdown_after = true; break;
Jeff Sharkeya6e13ae2014-09-24 11:46:17 -07001473 case 'r': reason = optarg; break;
Tianjie Xu35926c42016-04-28 18:06:26 -07001474 case 'e': security_update = true; break;
Tao Bao862a4c12016-06-02 11:16:50 -07001475 case 0: {
Paul Crowley08404b42016-12-19 13:04:23 -08001476 std::string option = OPTIONS[option_index].name;
1477 if (option == "wipe_ab") {
Yabin Cui8b309f62016-06-24 18:22:02 -07001478 should_wipe_ab = true;
Paul Crowley08404b42016-12-19 13:04:23 -08001479 } else if (option == "wipe_package_size") {
Yabin Cuifd99a312016-06-09 14:09:39 -07001480 android::base::ParseUint(optarg, &wipe_package_size);
Paul Crowley08404b42016-12-19 13:04:23 -08001481 } else if (option == "prompt_and_wipe_data") {
1482 should_prompt_and_wipe_data = true;
Tao Bao862a4c12016-06-02 11:16:50 -07001483 }
1484 break;
1485 }
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001486 case '?':
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -07001487 LOG(ERROR) << "Invalid command argument";
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001488 continue;
1489 }
1490 }
1491
Tao Baoac9d94d2016-11-03 11:37:15 -07001492 if (locale.empty()) {
1493 if (has_cache) {
1494 locale = load_locale_from_cache();
1495 }
1496
1497 if (locale.empty()) {
1498 locale = DEFAULT_LOCALE;
1499 }
Doug Zongker02ec6b82012-08-22 17:26:40 -07001500 }
Tao Baoac9d94d2016-11-03 11:37:15 -07001501
1502 printf("locale is [%s]\n", locale.c_str());
Doug Zongker0d32f252014-02-13 15:07:56 -08001503 printf("stage is [%s]\n", stage);
Jeff Sharkeya6e13ae2014-09-24 11:46:17 -07001504 printf("reason is [%s]\n", reason);
Doug Zongker02ec6b82012-08-22 17:26:40 -07001505
1506 Device* device = make_device();
1507 ui = device->GetUI();
1508
Sen Jiangd5304492016-12-09 16:20:49 -08001509 if (!ui->Init()) {
1510 printf("Failed to initialize UI, use stub UI instead.");
1511 ui = new StubRecoveryUI();
1512 }
Tao Baoac9d94d2016-11-03 11:37:15 -07001513 ui->SetLocale(locale.c_str());
Tianjie Xu35926c42016-04-28 18:06:26 -07001514 // Set background string to "installing security update" for security update,
1515 // otherwise set it to "installing system update".
1516 ui->SetSystemUpdateText(security_update);
Doug Zongkerc87bab12013-11-25 13:53:25 -08001517
1518 int st_cur, st_max;
1519 if (stage != NULL && sscanf(stage, "%d/%d", &st_cur, &st_max) == 2) {
1520 ui->SetStage(st_cur, st_max);
1521 }
1522
Doug Zongker02ec6b82012-08-22 17:26:40 -07001523 ui->SetBackground(RecoveryUI::NONE);
1524 if (show_text) ui->ShowText(true);
1525
Stephen Smalley779701d2012-02-09 14:13:23 -05001526 struct selinux_opt seopts[] = {
Tao Baoac9d94d2016-11-03 11:37:15 -07001527 { SELABEL_OPT_PATH, "/file_contexts" }
Stephen Smalley779701d2012-02-09 14:13:23 -05001528 };
1529
1530 sehandle = selabel_open(SELABEL_CTX_FILE, seopts, 1);
1531
1532 if (!sehandle) {
Doug Zongkerfafc85b2013-07-09 12:29:45 -07001533 ui->Print("Warning: No file_contexts\n");
Stephen Smalley779701d2012-02-09 14:13:23 -05001534 }
Stephen Smalley779701d2012-02-09 14:13:23 -05001535
Doug Zongkerdaefc1d2011-10-31 09:34:15 -07001536 device->StartRecovery();
Doug Zongkerefa1bab2010-02-01 15:59:12 -08001537
Doug Zongker56c51052010-07-01 09:18:44 -07001538 printf("Command:");
Tao Baof0ed1592016-12-02 11:32:19 -08001539 for (const auto& arg : args) {
1540 printf(" \"%s\"", arg.c_str());
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001541 }
Tao Baof038ca02016-12-10 09:24:50 -08001542 printf("\n\n");
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001543
1544 property_list(print_property, NULL);
Doug Zongker56c51052010-07-01 09:18:44 -07001545 printf("\n");
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001546
Elliott Hughesbb78d622015-04-09 20:51:08 -07001547 ui->Print("Supported API: %d\n", RECOVERY_API_VERSION);
1548
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001549 int status = INSTALL_SUCCESS;
1550
Doug Zongker540d57f2011-01-18 13:36:58 -08001551 if (update_package != NULL) {
Tao Bao56870012016-04-29 15:37:05 -07001552 // It's not entirely true that we will modify the flash. But we want
1553 // to log the update attempt since update_package is non-NULL.
1554 modified_flash = true;
1555
Yabin Cui99281df2016-02-17 12:21:52 -08001556 if (!is_battery_ok()) {
1557 ui->Print("battery capacity is not enough for installing package, needed is %d%%\n",
1558 BATTERY_OK_PERCENTAGE);
Tianjie Xu16255832016-04-30 11:49:59 -07001559 // Log the error code to last_install when installation skips due to
1560 // low battery.
Tianjie Xu06e57ac2016-07-11 14:04:08 -07001561 log_failure_code(kLowBattery, update_package);
1562 status = INSTALL_SKIPPED;
1563 } else if (bootreason_in_blacklist()) {
1564 // Skip update-on-reboot when bootreason is kernel_panic or similar
1565 ui->Print("bootreason is in the blacklist; skip OTA installation\n");
1566 log_failure_code(kBootreasonInBlacklist, update_package);
Yabin Cui99281df2016-02-17 12:21:52 -08001567 status = INSTALL_SKIPPED;
1568 } else {
1569 status = install_package(update_package, &should_wipe_cache,
Tianjie Xu16255832016-04-30 11:49:59 -07001570 TEMPORARY_INSTALL_FILE, true, retry_count);
Yabin Cui99281df2016-02-17 12:21:52 -08001571 if (status == INSTALL_SUCCESS && should_wipe_cache) {
1572 wipe_cache(false, device);
1573 }
1574 if (status != INSTALL_SUCCESS) {
1575 ui->Print("Installation aborted.\n");
Tianjie Xu3c62b672016-02-05 18:25:58 -08001576 // When I/O error happens, reboot and retry installation EIO_RETRY_COUNT
1577 // times before we abandon this OTA update.
1578 if (status == INSTALL_RETRY && retry_count < EIO_RETRY_COUNT) {
1579 copy_logs();
1580 set_retry_bootloader_message(retry_count, argc, argv);
1581 // Print retry count on screen.
1582 ui->Print("Retry attempt %d\n", retry_count);
Doug Zongker7c3ae452013-05-14 11:03:02 -07001583
Tianjie Xu3c62b672016-02-05 18:25:58 -08001584 // Reboot and retry the update
Elliott Hughescb220402016-09-23 15:30:55 -07001585 if (!android::base::SetProperty(ANDROID_RB_PROPERTY, "reboot,recovery")) {
Tianjie Xu3c62b672016-02-05 18:25:58 -08001586 ui->Print("Reboot failed\n");
1587 } else {
1588 while (true) {
1589 pause();
1590 }
1591 }
1592 }
Yabin Cui99281df2016-02-17 12:21:52 -08001593 // If this is an eng or userdebug build, then automatically
1594 // turn the text display on if the script fails so the error
1595 // message is visible.
1596 if (is_ro_debuggable()) {
1597 ui->ShowText(true);
1598 }
Doug Zongker7c3ae452013-05-14 11:03:02 -07001599 }
1600 }
Tao Baoe39a9bc2015-03-31 12:19:05 -07001601 } else if (should_wipe_data) {
Paul Crowley08404b42016-12-19 13:04:23 -08001602 if (!wipe_data(device)) {
Tao Baoe39a9bc2015-03-31 12:19:05 -07001603 status = INSTALL_ERROR;
1604 }
Paul Crowley08404b42016-12-19 13:04:23 -08001605 } else if (should_prompt_and_wipe_data) {
1606 ui->ShowText(true);
1607 ui->SetBackground(RecoveryUI::ERROR);
1608 if (!prompt_and_wipe_data(device)) {
1609 status = INSTALL_ERROR;
1610 }
1611 ui->ShowText(false);
Tao Baoc679f932015-03-30 09:43:49 -07001612 } else if (should_wipe_cache) {
Tao Baoe39a9bc2015-03-31 12:19:05 -07001613 if (!wipe_cache(false, device)) {
1614 status = INSTALL_ERROR;
1615 }
Yabin Cui8b309f62016-06-24 18:22:02 -07001616 } else if (should_wipe_ab) {
Yabin Cuifd99a312016-06-09 14:09:39 -07001617 if (!wipe_ab_device(wipe_package_size)) {
Tao Bao862a4c12016-06-02 11:16:50 -07001618 status = INSTALL_ERROR;
1619 }
Tao Baoc679f932015-03-30 09:43:49 -07001620 } else if (sideload) {
1621 // 'adb reboot sideload' acts the same as user presses key combinations
1622 // to enter the sideload mode. When 'sideload-auto-reboot' is used, text
1623 // display will NOT be turned on by default. And it will reboot after
1624 // sideload finishes even if there are errors. Unless one turns on the
1625 // text display during the installation. This is to enable automated
1626 // testing.
1627 if (!sideload_auto_reboot) {
1628 ui->ShowText(true);
1629 }
1630 status = apply_from_adb(ui, &should_wipe_cache, TEMPORARY_INSTALL_FILE);
1631 if (status == INSTALL_SUCCESS && should_wipe_cache) {
Tao Baoe39a9bc2015-03-31 12:19:05 -07001632 if (!wipe_cache(false, device)) {
1633 status = INSTALL_ERROR;
1634 }
Tao Baoc679f932015-03-30 09:43:49 -07001635 }
1636 ui->Print("\nInstall from ADB complete (status: %d).\n", status);
1637 if (sideload_auto_reboot) {
1638 ui->Print("Rebooting automatically.\n");
1639 }
Doug Zongkere5d5ac72012-04-12 11:01:22 -07001640 } else if (!just_exit) {
Doug Zongker02ec6b82012-08-22 17:26:40 -07001641 status = INSTALL_NONE; // No command specified
1642 ui->SetBackground(RecoveryUI::NO_COMMAND);
Tao Bao785d22c2015-05-04 09:34:29 -07001643
1644 // http://b/17489952
1645 // If this is an eng or userdebug build, automatically turn on the
1646 // text display if no command is specified.
1647 if (is_ro_debuggable()) {
1648 ui->ShowText(true);
1649 }
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001650 }
1651
Tao Baoc679f932015-03-30 09:43:49 -07001652 if (!sideload_auto_reboot && (status == INSTALL_ERROR || status == INSTALL_CORRUPT)) {
Doug Zongkerf24fd7e2013-07-02 11:43:25 -07001653 copy_logs();
Doug Zongker02ec6b82012-08-22 17:26:40 -07001654 ui->SetBackground(RecoveryUI::ERROR);
1655 }
Tao Baoc679f932015-03-30 09:43:49 -07001656
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001657 Device::BuiltinAction after = shutdown_after ? Device::SHUTDOWN : Device::REBOOT;
Yabin Cui99281df2016-02-17 12:21:52 -08001658 if ((status != INSTALL_SUCCESS && status != INSTALL_SKIPPED && !sideload_auto_reboot) ||
1659 ui->IsTextVisible()) {
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001660 Device::BuiltinAction temp = prompt_and_wait(device, status);
Tao Baoc679f932015-03-30 09:43:49 -07001661 if (temp != Device::NO_ACTION) {
1662 after = temp;
1663 }
Doug Zongker8674a722010-09-15 11:08:23 -07001664 }
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001665
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001666 // Save logs and clean up before rebooting or shutting down.
Tianjie Xuc14d95d2016-03-24 11:50:34 -07001667 finish_recovery();
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001668
1669 switch (after) {
1670 case Device::SHUTDOWN:
1671 ui->Print("Shutting down...\n");
Elliott Hughescb220402016-09-23 15:30:55 -07001672 android::base::SetProperty(ANDROID_RB_PROPERTY, "shutdown,");
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001673 break;
1674
1675 case Device::REBOOT_BOOTLOADER:
1676 ui->Print("Rebooting to bootloader...\n");
Elliott Hughescb220402016-09-23 15:30:55 -07001677 android::base::SetProperty(ANDROID_RB_PROPERTY, "reboot,bootloader");
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001678 break;
1679
1680 default:
1681 ui->Print("Rebooting...\n");
Elliott Hughescb220402016-09-23 15:30:55 -07001682 android::base::SetProperty(ANDROID_RB_PROPERTY, "reboot,");
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001683 break;
Doug Zongkerb1d12632014-03-18 10:32:12 -07001684 }
Tao Bao75238632015-05-27 14:46:17 -07001685 while (true) {
Tao Baoac9d94d2016-11-03 11:37:15 -07001686 pause();
Tao Bao75238632015-05-27 14:46:17 -07001687 }
1688 // Should be unreachable.
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001689 return EXIT_SUCCESS;
1690}