blob: 173baac168e79682239dc59164daa8aa3c3dd3c0 [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 */
Tao Baoe1905ad2017-03-22 14:57:04 -070056#include <private/android_filesystem_config.h> /* for AID_SYSTEM */
Elliott Hughes4bbd5bf2016-04-01 18:24:39 -070057#include <selinux/label.h>
58#include <selinux/selinux.h>
Tianjie Xu8cf5c8f2016-09-08 20:10:11 -070059#include <ziparchive/zip_archive.h>
Yabin Cui99281df2016-02-17 12:21:52 -080060
Tao Bao75238632015-05-27 14:46:17 -070061#include "adb_install.h"
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080062#include "common.h"
Tao Bao75238632015-05-27 14:46:17 -070063#include "device.h"
Tianjie Xu16255832016-04-30 11:49:59 -070064#include "error_code.h"
Tao Bao75238632015-05-27 14:46:17 -070065#include "fuse_sdcard_provider.h"
66#include "fuse_sideload.h"
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080067#include "install.h"
Josh Gaoacb2a2f2016-08-26 18:24:34 -070068#include "minadbd/minadbd.h"
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080069#include "minui/minui.h"
Tianjie Xu8cf5c8f2016-09-08 20:10:11 -070070#include "otautil/DirUtil.h"
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080071#include "roots.h"
Tianjie Xue113e4d2016-10-21 17:46:13 -070072#include "rotate_logs.h"
Doug Zongker211aebc2011-10-28 15:13:10 -070073#include "screen_ui.h"
Sen Jiangd5304492016-12-09 16:20:49 -080074#include "stub_ui.h"
Tianjie Xue113e4d2016-10-21 17:46:13 -070075#include "ui.h"
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080076
77static const struct option OPTIONS[] = {
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080078 { "update_package", required_argument, NULL, 'u' },
Tianjie Xu3c62b672016-02-05 18:25:58 -080079 { "retry_count", required_argument, NULL, 'n' },
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080080 { "wipe_data", no_argument, NULL, 'w' },
81 { "wipe_cache", no_argument, NULL, 'c' },
Doug Zongker4bc98062010-09-03 11:00:13 -070082 { "show_text", no_argument, NULL, 't' },
Tao Baoc679f932015-03-30 09:43:49 -070083 { "sideload", no_argument, NULL, 's' },
84 { "sideload_auto_reboot", no_argument, NULL, 'a' },
Doug Zongkere5d5ac72012-04-12 11:01:22 -070085 { "just_exit", no_argument, NULL, 'x' },
Doug Zongker02ec6b82012-08-22 17:26:40 -070086 { "locale", required_argument, NULL, 'l' },
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";
Tianjie Xu2078b222017-03-22 12:27:26 -0700125static constexpr const char* DEFAULT_LOCALE = "en-US";
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700126
Tao Baoac9d94d2016-11-03 11:37:15 -0700127static std::string locale;
Dan Albert8584fcf2016-10-27 03:08:08 +0000128static bool has_cache = false;
Tao Baoc0319b62016-10-13 15:17:04 -0700129
Tao Baoac9d94d2016-11-03 11:37:15 -0700130RecoveryUI* ui = nullptr;
131bool modified_flash = false;
Tao Baoa8d72bc2016-12-25 18:46:50 -0800132std::string stage;
Tao Baoac9d94d2016-11-03 11:37:15 -0700133const char* reason = nullptr;
134struct selabel_handle* sehandle;
135
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800136/*
137 * The recovery tool communicates with the main system through /cache files.
138 * /cache/recovery/command - INPUT - command line for tool, one arg per line
139 * /cache/recovery/log - OUTPUT - combined log file from recovery run(s)
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800140 *
141 * The arguments which may be supplied in the recovery.command file:
Doug Zongkerd4208f92010-09-20 12:16:13 -0700142 * --update_package=path - verify install an OTA package file
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800143 * --wipe_data - erase user data (and cache), then reboot
Paul Crowley08404b42016-12-19 13:04:23 -0800144 * --prompt_and_wipe_data - prompt the user that data is corrupt,
145 * with their consent erase user data (and cache), then reboot
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800146 * --wipe_cache - wipe cache (but not user data), then reboot
Oscar Montemayor05231562009-11-30 08:40:57 -0800147 * --set_encrypted_filesystem=on|off - enables / diasables encrypted fs
Doug Zongkere5d5ac72012-04-12 11:01:22 -0700148 * --just_exit - do nothing; exit and reboot
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800149 *
150 * After completing, we remove /cache/recovery/command and reboot.
151 * Arguments may also be supplied in the bootloader control block (BCB).
152 * These important scenarios must be safely restartable at any point:
153 *
154 * FACTORY RESET
155 * 1. user selects "factory reset"
156 * 2. main system writes "--wipe_data" to /cache/recovery/command
157 * 3. main system reboots into recovery
158 * 4. get_args() writes BCB with "boot-recovery" and "--wipe_data"
159 * -- after this, rebooting will restart the erase --
Doug Zongkerd4208f92010-09-20 12:16:13 -0700160 * 5. erase_volume() reformats /data
161 * 6. erase_volume() reformats /cache
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800162 * 7. finish_recovery() erases BCB
163 * -- after this, rebooting will restart the main system --
164 * 8. main() calls reboot() to boot main system
165 *
166 * OTA INSTALL
167 * 1. main system downloads OTA package to /cache/some-filename.zip
Doug Zongker9b125b02010-09-22 12:01:37 -0700168 * 2. main system writes "--update_package=/cache/some-filename.zip"
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800169 * 3. main system reboots into recovery
170 * 4. get_args() writes BCB with "boot-recovery" and "--update_package=..."
171 * -- after this, rebooting will attempt to reinstall the update --
172 * 5. install_package() attempts to install the update
173 * NOTE: the package install must itself be restartable from any point
174 * 6. finish_recovery() erases BCB
175 * -- after this, rebooting will (try to) restart the main system --
176 * 7. ** if install failed **
177 * 7a. prompt_and_wait() shows an error icon and waits for the user
Tao Baoc0336392016-12-13 22:29:49 -0800178 * 7b. the user reboots (pulling the battery, etc) into the main system
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800179 */
180
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
Dmitri Plotnikov8706a982017-04-18 08:28:26 -0700212bool reboot(const std::string& command) {
213 std::string cmd = command;
214 if (android::base::GetBoolProperty("ro.boot.quiescent", false)) {
215 cmd += ",quiescent";
216 }
217 return android::base::SetProperty(ANDROID_RB_PROPERTY, cmd);
218}
219
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700220static void redirect_stdio(const char* filename) {
Tao Bao04ca4262015-09-10 15:32:24 -0700221 int pipefd[2];
222 if (pipe(pipefd) == -1) {
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -0700223 PLOG(ERROR) << "pipe failed";
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700224
Tao Bao04ca4262015-09-10 15:32:24 -0700225 // Fall back to traditional logging mode without timestamps.
226 // If these fail, there's not really anywhere to complain...
227 freopen(filename, "a", stdout); setbuf(stdout, NULL);
228 freopen(filename, "a", stderr); setbuf(stderr, NULL);
229
230 return;
231 }
232
233 pid_t pid = fork();
234 if (pid == -1) {
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -0700235 PLOG(ERROR) << "fork failed";
Tao Bao04ca4262015-09-10 15:32:24 -0700236
237 // Fall back to traditional logging mode without timestamps.
238 // If these fail, there's not really anywhere to complain...
239 freopen(filename, "a", stdout); setbuf(stdout, NULL);
240 freopen(filename, "a", stderr); setbuf(stderr, NULL);
241
242 return;
243 }
244
245 if (pid == 0) {
246 /// Close the unused write end.
247 close(pipefd[1]);
248
249 auto start = std::chrono::steady_clock::now();
250
251 // Child logger to actually write to the log file.
252 FILE* log_fp = fopen(filename, "a");
253 if (log_fp == nullptr) {
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -0700254 PLOG(ERROR) << "fopen \"" << filename << "\" failed";
Tao Bao04ca4262015-09-10 15:32:24 -0700255 close(pipefd[0]);
Tao Bao3da88012017-02-03 13:09:23 -0800256 _exit(EXIT_FAILURE);
Tao Bao04ca4262015-09-10 15:32:24 -0700257 }
258
259 FILE* pipe_fp = fdopen(pipefd[0], "r");
260 if (pipe_fp == nullptr) {
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -0700261 PLOG(ERROR) << "fdopen failed";
Tao Bao04ca4262015-09-10 15:32:24 -0700262 check_and_fclose(log_fp, filename);
263 close(pipefd[0]);
Tao Bao3da88012017-02-03 13:09:23 -0800264 _exit(EXIT_FAILURE);
Tao Bao04ca4262015-09-10 15:32:24 -0700265 }
266
267 char* line = nullptr;
268 size_t len = 0;
269 while (getline(&line, &len, pipe_fp) != -1) {
270 auto now = std::chrono::steady_clock::now();
271 double duration = std::chrono::duration_cast<std::chrono::duration<double>>(
272 now - start).count();
273 if (line[0] == '\n') {
274 fprintf(log_fp, "[%12.6lf]\n", duration);
275 } else {
276 fprintf(log_fp, "[%12.6lf] %s", duration, line);
277 }
278 fflush(log_fp);
279 }
280
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -0700281 PLOG(ERROR) << "getline failed";
Tao Bao04ca4262015-09-10 15:32:24 -0700282
283 free(line);
284 check_and_fclose(log_fp, filename);
285 close(pipefd[0]);
Tao Bao3da88012017-02-03 13:09:23 -0800286 _exit(EXIT_FAILURE);
Tao Bao04ca4262015-09-10 15:32:24 -0700287 } else {
288 // Redirect stdout/stderr to the logger process.
289 // Close the unused read end.
290 close(pipefd[0]);
291
292 setbuf(stdout, nullptr);
293 setbuf(stderr, nullptr);
294
295 if (dup2(pipefd[1], STDOUT_FILENO) == -1) {
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -0700296 PLOG(ERROR) << "dup2 stdout failed";
Tao Bao04ca4262015-09-10 15:32:24 -0700297 }
298 if (dup2(pipefd[1], STDERR_FILENO) == -1) {
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -0700299 PLOG(ERROR) << "dup2 stderr failed";
Tao Bao04ca4262015-09-10 15:32:24 -0700300 }
301
302 close(pipefd[1]);
303 }
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800304}
305
306// command line args come from, in decreasing precedence:
307// - the actual command line
308// - the bootloader control block (one per line, after "recovery")
309// - the contents of COMMAND_FILE (one per line)
Tao Baof0ed1592016-12-02 11:32:19 -0800310static std::vector<std::string> get_args(const int argc, char** const argv) {
311 CHECK_GT(argc, 0);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800312
Tao Baof0ed1592016-12-02 11:32:19 -0800313 bootloader_message boot = {};
314 std::string err;
315 if (!read_bootloader_message(&boot, &err)) {
316 LOG(ERROR) << err;
317 // If fails, leave a zeroed bootloader_message.
318 boot = {};
319 }
Tao Baoa8d72bc2016-12-25 18:46:50 -0800320 stage = std::string(boot.stage);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800321
Tao Baof0ed1592016-12-02 11:32:19 -0800322 if (boot.command[0] != 0) {
323 std::string boot_command = std::string(boot.command, sizeof(boot.command));
324 LOG(INFO) << "Boot command: " << boot_command;
325 }
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800326
Tao Baof0ed1592016-12-02 11:32:19 -0800327 if (boot.status[0] != 0) {
328 std::string boot_status = std::string(boot.status, sizeof(boot.status));
329 LOG(INFO) << "Boot status: " << boot_status;
330 }
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800331
Tao Baof0ed1592016-12-02 11:32:19 -0800332 std::vector<std::string> args(argv, argv + argc);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800333
Tao Baof0ed1592016-12-02 11:32:19 -0800334 // --- if arguments weren't supplied, look in the bootloader control block
Tao Bao570af9d2017-01-09 10:29:59 -0800335 if (args.size() == 1) {
Tao Baof0ed1592016-12-02 11:32:19 -0800336 boot.recovery[sizeof(boot.recovery) - 1] = '\0'; // Ensure termination
337 std::string boot_recovery(boot.recovery);
338 std::vector<std::string> tokens = android::base::Split(boot_recovery, "\n");
339 if (!tokens.empty() && tokens[0] == "recovery") {
340 for (auto it = tokens.begin() + 1; it != tokens.end(); it++) {
341 // Skip empty and '\0'-filled tokens.
342 if (!it->empty() && (*it)[0] != '\0') args.push_back(std::move(*it));
343 }
344 LOG(INFO) << "Got " << args.size() << " arguments from boot message";
345 } else if (boot.recovery[0] != 0) {
346 LOG(ERROR) << "Bad boot message: \"" << boot_recovery << "\"";
347 }
348 }
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800349
Tao Baof0ed1592016-12-02 11:32:19 -0800350 // --- if that doesn't work, try the command file (if we have /cache).
Tao Bao570af9d2017-01-09 10:29:59 -0800351 if (args.size() == 1 && has_cache) {
Tao Baof0ed1592016-12-02 11:32:19 -0800352 std::string content;
Tao Bao7d34fa12016-12-08 18:10:48 -0800353 if (ensure_path_mounted(COMMAND_FILE) == 0 &&
354 android::base::ReadFileToString(COMMAND_FILE, &content)) {
Tao Baof0ed1592016-12-02 11:32:19 -0800355 std::vector<std::string> tokens = android::base::Split(content, "\n");
Tao Bao7d34fa12016-12-08 18:10:48 -0800356 // All the arguments in COMMAND_FILE are needed (unlike the BCB message,
357 // COMMAND_FILE doesn't use filename as the first argument).
358 for (auto it = tokens.begin(); it != tokens.end(); it++) {
Tao Baof0ed1592016-12-02 11:32:19 -0800359 // Skip empty and '\0'-filled tokens.
360 if (!it->empty() && (*it)[0] != '\0') args.push_back(std::move(*it));
361 }
362 LOG(INFO) << "Got " << args.size() << " arguments from " << COMMAND_FILE;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800363 }
Tao Baof0ed1592016-12-02 11:32:19 -0800364 }
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800365
Tao Baof0ed1592016-12-02 11:32:19 -0800366 // Write the arguments (excluding the filename in args[0]) back into the
367 // bootloader control block. So the device will always boot into recovery to
368 // finish the pending work, until finish_recovery() is called.
369 std::vector<std::string> options(args.cbegin() + 1, args.cend());
Tao Bao2292db82016-12-13 21:53:31 -0800370 if (!update_bootloader_message(options, &err)) {
371 LOG(ERROR) << "Failed to set BCB message: " << err;
Tao Baof0ed1592016-12-02 11:32:19 -0800372 }
373
374 return args;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800375}
376
Tao Bao2292db82016-12-13 21:53:31 -0800377// Set the BCB to reboot back into recovery (it won't resume the install from
378// sdcard though).
379static void set_sdcard_update_bootloader_message() {
380 std::vector<std::string> options;
381 std::string err;
382 if (!update_bootloader_message(options, &err)) {
383 LOG(ERROR) << "Failed to set BCB message: " << err;
384 }
Doug Zongker34c98df2009-08-18 12:05:45 -0700385}
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800386
Tao Baobef39712015-05-04 18:50:27 -0700387// Read from kernel log into buffer and write out to file.
388static void save_kernel_log(const char* destination) {
389 int klog_buf_len = klogctl(KLOG_SIZE_BUFFER, 0, 0);
Patrick Tjincd055ee2014-12-09 11:26:40 -0800390 if (klog_buf_len <= 0) {
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -0700391 PLOG(ERROR) << "Error getting klog size";
Patrick Tjincd055ee2014-12-09 11:26:40 -0800392 return;
393 }
394
Tao Baobef39712015-05-04 18:50:27 -0700395 std::string buffer(klog_buf_len, 0);
396 int n = klogctl(KLOG_READ_ALL, &buffer[0], klog_buf_len);
397 if (n == -1) {
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -0700398 PLOG(ERROR) << "Error in reading klog";
Patrick Tjincd055ee2014-12-09 11:26:40 -0800399 return;
400 }
Tao Baobef39712015-05-04 18:50:27 -0700401 buffer.resize(n);
402 android::base::WriteStringToFile(buffer, destination);
Patrick Tjincd055ee2014-12-09 11:26:40 -0800403}
404
Mark Salyzyna4f701a2016-03-09 14:58:16 -0800405// write content to the current pmsg session.
406static ssize_t __pmsg_write(const char *filename, const char *buf, size_t len) {
407 return __android_log_pmsg_file_write(LOG_ID_SYSTEM, ANDROID_LOG_INFO,
408 filename, buf, len);
409}
410
411static void copy_log_file_to_pmsg(const char* source, const char* destination) {
412 std::string content;
413 android::base::ReadFileToString(source, &content);
414 __pmsg_write(destination, content.c_str(), content.length());
415}
416
Tao Baof0124322015-04-11 02:04:11 +0000417// How much of the temp log we have copied to the copy in cache.
Chih-Hung Hsieh54a27472016-04-18 11:30:55 -0700418static off_t tmplog_offset = 0;
Tao Baof0124322015-04-11 02:04:11 +0000419
Tao Baobef39712015-05-04 18:50:27 -0700420static void copy_log_file(const char* source, const char* destination, bool append) {
421 FILE* dest_fp = fopen_path(destination, append ? "a" : "w");
422 if (dest_fp == nullptr) {
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -0700423 PLOG(ERROR) << "Can't open " << destination;
Doug Zongker2c3539e2010-09-29 13:21:30 -0700424 } else {
Tao Baobef39712015-05-04 18:50:27 -0700425 FILE* source_fp = fopen(source, "r");
426 if (source_fp != nullptr) {
Tao Baof0124322015-04-11 02:04:11 +0000427 if (append) {
Chih-Hung Hsieh54a27472016-04-18 11:30:55 -0700428 fseeko(source_fp, tmplog_offset, SEEK_SET); // Since last write
Doug Zongker2c3539e2010-09-29 13:21:30 -0700429 }
430 char buf[4096];
Tao Baobef39712015-05-04 18:50:27 -0700431 size_t bytes;
432 while ((bytes = fread(buf, 1, sizeof(buf), source_fp)) != 0) {
433 fwrite(buf, 1, bytes, dest_fp);
Doug Zongker2c3539e2010-09-29 13:21:30 -0700434 }
Tao Baobef39712015-05-04 18:50:27 -0700435 if (append) {
Chih-Hung Hsieh54a27472016-04-18 11:30:55 -0700436 tmplog_offset = ftello(source_fp);
Tao Baobef39712015-05-04 18:50:27 -0700437 }
438 check_and_fclose(source_fp, source);
Doug Zongker2c3539e2010-09-29 13:21:30 -0700439 }
Tao Baobef39712015-05-04 18:50:27 -0700440 check_and_fclose(dest_fp, destination);
Doug Zongker2c3539e2010-09-29 13:21:30 -0700441 }
442}
443
Tao Bao682c34b2015-04-07 17:16:35 -0700444static void copy_logs() {
445 // We only rotate and record the log of the current session if there are
446 // actual attempts to modify the flash, such as wipes, installs from BCB
447 // or menu selections. This is to avoid unnecessary rotation (and
448 // possible deletion) of log files, if it does not do anything loggable.
449 if (!modified_flash) {
450 return;
451 }
452
Mark Salyzyna4f701a2016-03-09 14:58:16 -0800453 // Always write to pmsg, this allows the OTA logs to be caught in logcat -L
454 copy_log_file_to_pmsg(TEMPORARY_LOG_FILE, LAST_LOG_FILE);
455 copy_log_file_to_pmsg(TEMPORARY_INSTALL_FILE, LAST_INSTALL_FILE);
456
457 // We can do nothing for now if there's no /cache partition.
458 if (!has_cache) {
459 return;
460 }
461
Tianjie Xue113e4d2016-10-21 17:46:13 -0700462 ensure_path_mounted(LAST_LOG_FILE);
463 ensure_path_mounted(LAST_KMSG_FILE);
464 rotate_logs(LAST_LOG_FILE, LAST_KMSG_FILE);
Tao Bao682c34b2015-04-07 17:16:35 -0700465
Doug Zongkerf24fd7e2013-07-02 11:43:25 -0700466 // Copy logs to cache so the system can find out what happened.
Tao Baof0124322015-04-11 02:04:11 +0000467 copy_log_file(TEMPORARY_LOG_FILE, LOG_FILE, true);
468 copy_log_file(TEMPORARY_LOG_FILE, LAST_LOG_FILE, false);
469 copy_log_file(TEMPORARY_INSTALL_FILE, LAST_INSTALL_FILE, false);
470 save_kernel_log(LAST_KMSG_FILE);
Doug Zongkerf24fd7e2013-07-02 11:43:25 -0700471 chmod(LOG_FILE, 0600);
Tao Baoe1905ad2017-03-22 14:57:04 -0700472 chown(LOG_FILE, AID_SYSTEM, AID_SYSTEM);
Tao Baof0124322015-04-11 02:04:11 +0000473 chmod(LAST_KMSG_FILE, 0600);
Tao Baoe1905ad2017-03-22 14:57:04 -0700474 chown(LAST_KMSG_FILE, AID_SYSTEM, AID_SYSTEM);
Doug Zongkerf24fd7e2013-07-02 11:43:25 -0700475 chmod(LAST_LOG_FILE, 0640);
476 chmod(LAST_INSTALL_FILE, 0644);
477 sync();
478}
479
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800480// clear the recovery command and prepare to boot a (hopefully working) system,
Tianjie Xuc14d95d2016-03-24 11:50:34 -0700481// copy our log file to cache as well (for the system to read). This function is
482// idempotent: call it as many times as you like.
Tao Baoac9d94d2016-11-03 11:37:15 -0700483static void finish_recovery() {
Doug Zongker4f33e552012-08-23 13:16:12 -0700484 // Save the locale to cache, so if recovery is next started up
485 // without a --locale argument (eg, directly from the bootloader)
486 // it will use the last-known locale.
Tao Baoac9d94d2016-11-03 11:37:15 -0700487 if (!locale.empty() && has_cache) {
488 LOG(INFO) << "Saving locale \"" << locale << "\"";
489
490 FILE* fp = fopen_path(LOCALE_FILE, "w");
491 if (!android::base::WriteStringToFd(locale, fileno(fp))) {
492 PLOG(ERROR) << "Failed to save locale to " << LOCALE_FILE;
Mark Salyzyna4f701a2016-03-09 14:58:16 -0800493 }
Tao Baoac9d94d2016-11-03 11:37:15 -0700494 check_and_fclose(fp, LOCALE_FILE);
Doug Zongker4f33e552012-08-23 13:16:12 -0700495 }
496
Doug Zongkerf24fd7e2013-07-02 11:43:25 -0700497 copy_logs();
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800498
Doug Zongkere5d5ac72012-04-12 11:01:22 -0700499 // Reset to normal system boot so recovery won't cycle indefinitely.
Yabin Cui8b309f62016-06-24 18:22:02 -0700500 std::string err;
Tianjie Xubd56f152016-09-28 16:32:10 -0700501 if (!clear_bootloader_message(&err)) {
Tao Bao2292db82016-12-13 21:53:31 -0800502 LOG(ERROR) << "Failed to clear BCB message: " << err;
Yabin Cui8b309f62016-06-24 18:22:02 -0700503 }
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800504
505 // Remove the command file, so recovery won't repeat indefinitely.
Tao Bao26112e52016-02-25 12:29:40 -0800506 if (has_cache) {
507 if (ensure_path_mounted(COMMAND_FILE) != 0 || (unlink(COMMAND_FILE) && errno != ENOENT)) {
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -0700508 LOG(WARNING) << "Can't unlink " << COMMAND_FILE;
Tao Bao26112e52016-02-25 12:29:40 -0800509 }
510 ensure_path_unmounted(CACHE_ROOT);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800511 }
512
513 sync(); // For good measure.
514}
515
Tao Bao3f5a3822016-12-13 11:14:37 -0800516struct saved_log_file {
517 std::string name;
518 struct stat sb;
519 std::string data;
520};
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700521
Elliott Hughes945548e2015-06-05 17:59:56 -0700522static bool erase_volume(const char* volume) {
Tao Bao3f5a3822016-12-13 11:14:37 -0800523 bool is_cache = (strcmp(volume, CACHE_ROOT) == 0);
524 bool is_data = (strcmp(volume, DATA_ROOT) == 0);
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700525
Tao Bao3f5a3822016-12-13 11:14:37 -0800526 ui->SetBackground(RecoveryUI::ERASING);
527 ui->SetProgressType(RecoveryUI::INDETERMINATE);
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700528
Tao Bao3f5a3822016-12-13 11:14:37 -0800529 std::vector<saved_log_file> log_files;
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700530
Tao Bao3f5a3822016-12-13 11:14:37 -0800531 if (is_cache) {
532 // If we're reformatting /cache, we load any past logs
533 // (i.e. "/cache/recovery/last_*") and the current log
534 // ("/cache/recovery/log") into memory, so we can restore them after
535 // the reformat.
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700536
Tao Bao3f5a3822016-12-13 11:14:37 -0800537 ensure_path_mounted(volume);
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700538
Tao Bao3f5a3822016-12-13 11:14:37 -0800539 struct dirent* de;
540 std::unique_ptr<DIR, decltype(&closedir)> d(opendir(CACHE_LOG_DIR), closedir);
541 if (d) {
542 while ((de = readdir(d.get())) != nullptr) {
543 if (strncmp(de->d_name, "last_", 5) == 0 || strcmp(de->d_name, "log") == 0) {
544 std::string path = android::base::StringPrintf("%s/%s", CACHE_LOG_DIR, de->d_name);
545
546 struct stat sb;
547 if (stat(path.c_str(), &sb) == 0) {
548 // truncate files to 512kb
549 if (sb.st_size > (1 << 19)) {
550 sb.st_size = 1 << 19;
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700551 }
Tao Bao3f5a3822016-12-13 11:14:37 -0800552
553 std::string data(sb.st_size, '\0');
554 FILE* f = fopen(path.c_str(), "rb");
555 fread(&data[0], 1, data.size(), f);
556 fclose(f);
557
558 log_files.emplace_back(saved_log_file{ path, sb, data });
559 }
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700560 }
Tao Bao3f5a3822016-12-13 11:14:37 -0800561 }
Paul Lawrenced0db3372015-11-05 13:38:40 -0800562 } else {
Tao Bao3f5a3822016-12-13 11:14:37 -0800563 if (errno != ENOENT) {
564 PLOG(ERROR) << "Failed to opendir " << CACHE_LOG_DIR;
565 }
Paul Lawrenced0db3372015-11-05 13:38:40 -0800566 }
Tao Bao3f5a3822016-12-13 11:14:37 -0800567 }
Doug Zongkerd0181b82011-10-19 10:51:12 -0700568
Tao Bao3f5a3822016-12-13 11:14:37 -0800569 ui->Print("Formatting %s...\n", volume);
570
571 ensure_path_unmounted(volume);
572
573 int result;
574
575 if (is_data && reason && strcmp(reason, "convert_fbe") == 0) {
576 // Create convert_fbe breadcrumb file to signal to init
577 // to convert to file based encryption, not full disk encryption
578 if (mkdir(CONVERT_FBE_DIR, 0700) != 0) {
579 ui->Print("Failed to make convert_fbe dir %s\n", strerror(errno));
580 return true;
581 }
582 FILE* f = fopen(CONVERT_FBE_FILE, "wb");
583 if (!f) {
584 ui->Print("Failed to convert to file encryption %s\n", strerror(errno));
585 return true;
586 }
587 fclose(f);
588 result = format_volume(volume, CONVERT_FBE_DIR);
589 remove(CONVERT_FBE_FILE);
590 rmdir(CONVERT_FBE_DIR);
591 } else {
592 result = format_volume(volume);
593 }
594
595 if (is_cache) {
596 // Re-create the log dir and write back the log entries.
597 if (ensure_path_mounted(CACHE_LOG_DIR) == 0 &&
598 dirCreateHierarchy(CACHE_LOG_DIR, 0777, nullptr, false, sehandle) == 0) {
599 for (const auto& log : log_files) {
600 if (!android::base::WriteStringToFile(log.data, log.name, log.sb.st_mode, log.sb.st_uid,
601 log.sb.st_gid)) {
602 PLOG(ERROR) << "Failed to write to " << log.name;
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700603 }
Tao Bao3f5a3822016-12-13 11:14:37 -0800604 }
605 } else {
606 PLOG(ERROR) << "Failed to mount / create " << CACHE_LOG_DIR;
Doug Zongker2c3539e2010-09-29 13:21:30 -0700607 }
608
Tao Bao3f5a3822016-12-13 11:14:37 -0800609 // Any part of the log we'd copied to cache is now gone.
610 // Reset the pointer so we copy from the beginning of the temp
611 // log.
612 tmplog_offset = 0;
613 copy_logs();
614 }
615
616 return (result == 0);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800617}
618
Tao Baofc5499f2017-02-23 19:06:53 -0800619// Display a menu with the specified 'headers' and 'items'. Device specific HandleMenuKey() may
620// return a positive number beyond the given range. Caller sets 'menu_only' to true to ensure only
Tao Bao50dd5322017-03-07 14:57:04 -0800621// a menu item gets selected. 'initial_selection' controls the initial cursor location. Returns the
622// (non-negative) chosen item number, or -1 if timed out waiting for input.
Tao Baofc5499f2017-02-23 19:06:53 -0800623static int get_menu_selection(const char* const* headers, const char* const* items, bool menu_only,
624 int initial_selection, Device* device) {
625 // Throw away keys pressed previously, so user doesn't accidentally trigger menu items.
626 ui->FlushKeys();
Doug Zongkerf93d8162009-09-22 15:16:02 -0700627
Tao Baofc5499f2017-02-23 19:06:53 -0800628 ui->StartMenu(headers, items, initial_selection);
Tao Bao50dd5322017-03-07 14:57:04 -0800629
Tao Baofc5499f2017-02-23 19:06:53 -0800630 int selected = initial_selection;
631 int chosen_item = -1;
Tao Baofc5499f2017-02-23 19:06:53 -0800632 while (chosen_item < 0) {
633 int key = ui->WaitKey();
Tao Bao50dd5322017-03-07 14:57:04 -0800634 if (key == -1) { // WaitKey() timed out.
Tao Baofc5499f2017-02-23 19:06:53 -0800635 if (ui->WasTextEverVisible()) {
636 continue;
637 } else {
Tao Bao50dd5322017-03-07 14:57:04 -0800638 LOG(INFO) << "Timed out waiting for key input; rebooting.";
Tao Baofc5499f2017-02-23 19:06:53 -0800639 ui->EndMenu();
Tao Bao50dd5322017-03-07 14:57:04 -0800640 return -1;
Tao Baofc5499f2017-02-23 19:06:53 -0800641 }
Doug Zongkerf93d8162009-09-22 15:16:02 -0700642 }
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800643
Tao Baofc5499f2017-02-23 19:06:53 -0800644 bool visible = ui->IsTextVisible();
645 int action = device->HandleMenuKey(key, visible);
646
647 if (action < 0) {
648 switch (action) {
649 case Device::kHighlightUp:
650 selected = ui->SelectMenu(--selected);
651 break;
652 case Device::kHighlightDown:
653 selected = ui->SelectMenu(++selected);
654 break;
655 case Device::kInvokeItem:
656 chosen_item = selected;
657 break;
658 case Device::kNoAction:
659 break;
660 }
661 } else if (!menu_only) {
662 chosen_item = action;
663 }
664 }
665
666 ui->EndMenu();
667 return chosen_item;
Doug Zongkerf93d8162009-09-22 15:16:02 -0700668}
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800669
Tao Baoc4a18ef2017-02-10 00:13:30 -0800670// Returns the selected filename, or an empty string.
671static std::string browse_directory(const std::string& path, Device* device) {
672 ensure_path_mounted(path.c_str());
Doug Zongker8674a722010-09-15 11:08:23 -0700673
Tao Baoc4a18ef2017-02-10 00:13:30 -0800674 std::unique_ptr<DIR, decltype(&closedir)> d(opendir(path.c_str()), closedir);
675 if (!d) {
676 PLOG(ERROR) << "error opening " << path;
677 return "";
678 }
Doug Zongkerc18eeb82010-09-21 16:49:26 -0700679
Tao Baoc4a18ef2017-02-10 00:13:30 -0800680 std::vector<std::string> dirs;
681 std::vector<std::string> zips = { "../" }; // "../" is always the first entry.
682
683 dirent* de;
684 while ((de = readdir(d.get())) != nullptr) {
685 std::string name(de->d_name);
686
687 if (de->d_type == DT_DIR) {
688 // Skip "." and ".." entries.
689 if (name == "." || name == "..") continue;
690 dirs.push_back(name + "/");
691 } else if (de->d_type == DT_REG && android::base::EndsWithIgnoreCase(name, ".zip")) {
692 zips.push_back(name);
693 }
694 }
695
696 std::sort(dirs.begin(), dirs.end());
697 std::sort(zips.begin(), zips.end());
698
699 // Append dirs to the zips list.
700 zips.insert(zips.end(), dirs.begin(), dirs.end());
701
702 const char* entries[zips.size() + 1];
703 entries[zips.size()] = nullptr;
704 for (size_t i = 0; i < zips.size(); i++) {
705 entries[i] = zips[i].c_str();
706 }
707
708 const char* headers[] = { "Choose a package to install:", path.c_str(), nullptr };
709
710 int chosen_item = 0;
711 while (true) {
Tao Baofc5499f2017-02-23 19:06:53 -0800712 chosen_item = get_menu_selection(headers, entries, true, chosen_item, device);
Tao Baoc4a18ef2017-02-10 00:13:30 -0800713
714 const std::string& item = zips[chosen_item];
715 if (chosen_item == 0) {
716 // Go up but continue browsing (if the caller is browse_directory).
717 return "";
Doug Zongker8674a722010-09-15 11:08:23 -0700718 }
719
Tao Baoc4a18ef2017-02-10 00:13:30 -0800720 std::string new_path = path + "/" + item;
721 if (new_path.back() == '/') {
722 // Recurse down into a subdirectory.
723 new_path.pop_back();
724 std::string result = browse_directory(new_path, device);
725 if (!result.empty()) return result;
726 } else {
727 // Selected a zip file: return the path to the caller.
728 return new_path;
Doug Zongker8674a722010-09-15 11:08:23 -0700729 }
Tao Baoc4a18ef2017-02-10 00:13:30 -0800730 }
Doug Zongker8674a722010-09-15 11:08:23 -0700731
Tao Baoc4a18ef2017-02-10 00:13:30 -0800732 // Unreachable.
Doug Zongker8674a722010-09-15 11:08:23 -0700733}
734
Elliott Hughes30694c92015-03-25 15:16:51 -0700735static bool yes_no(Device* device, const char* question1, const char* question2) {
Elliott Hughes8fd86d72015-04-13 14:36:02 -0700736 const char* headers[] = { question1, question2, NULL };
Elliott Hughes30694c92015-03-25 15:16:51 -0700737 const char* items[] = { " No", " Yes", NULL };
Doug Zongkerddd6a282009-06-09 12:22:33 -0700738
Tao Baofc5499f2017-02-23 19:06:53 -0800739 int chosen_item = get_menu_selection(headers, items, true, 0, device);
Elliott Hughes30694c92015-03-25 15:16:51 -0700740 return (chosen_item == 1);
741}
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800742
Paul Crowley08404b42016-12-19 13:04:23 -0800743static bool ask_to_wipe_data(Device* device) {
744 return yes_no(device, "Wipe all user data?", " THIS CAN NOT BE UNDONE!");
745}
Doug Zongker1066d2c2009-04-01 13:57:40 -0700746
Paul Crowley08404b42016-12-19 13:04:23 -0800747// Return true on success.
748static bool wipe_data(Device* device) {
Tao Bao682c34b2015-04-07 17:16:35 -0700749 modified_flash = true;
750
Doug Zongker211aebc2011-10-28 15:13:10 -0700751 ui->Print("\n-- Wiping data...\n");
Elliott Hughes945548e2015-06-05 17:59:56 -0700752 bool success =
753 device->PreWipeData() &&
754 erase_volume("/data") &&
Tao Bao26112e52016-02-25 12:29:40 -0800755 (has_cache ? erase_volume("/cache") : true) &&
Elliott Hughes945548e2015-06-05 17:59:56 -0700756 device->PostWipeData();
757 ui->Print("Data wipe %s.\n", success ? "complete" : "failed");
758 return success;
Doug Zongkerf93d8162009-09-22 15:16:02 -0700759}
760
Paul Crowley08404b42016-12-19 13:04:23 -0800761static bool prompt_and_wipe_data(Device* device) {
Tao Baofc5499f2017-02-23 19:06:53 -0800762 const char* const headers[] = {
Paul Crowley31ac0c62017-03-23 12:32:40 -0700763 "Can't load Android system. Your data may be corrupt.",
764 "If you continue to get this message, you may need to",
765 "perform a factory data reset and erase all user data",
766 "stored on this device.",
Tao Baofc5499f2017-02-23 19:06:53 -0800767 NULL
768 };
769 const char* const items[] = {
Paul Crowley31ac0c62017-03-23 12:32:40 -0700770 "Try again",
771 "Factory data reset",
Tao Baofc5499f2017-02-23 19:06:53 -0800772 NULL
773 };
774 for (;;) {
775 int chosen_item = get_menu_selection(headers, items, true, 0, device);
776 if (chosen_item != 1) {
777 return true; // Just reboot, no wipe; not a failure, user asked for it
Paul Crowley08404b42016-12-19 13:04:23 -0800778 }
Tao Baofc5499f2017-02-23 19:06:53 -0800779 if (ask_to_wipe_data(device)) {
780 return wipe_data(device);
781 }
782 }
Paul Crowley08404b42016-12-19 13:04:23 -0800783}
784
Tao Baoe39a9bc2015-03-31 12:19:05 -0700785// Return true on success.
786static bool wipe_cache(bool should_confirm, Device* device) {
Tao Bao26112e52016-02-25 12:29:40 -0800787 if (!has_cache) {
788 ui->Print("No /cache partition found.\n");
789 return false;
790 }
791
Elliott Hughes30694c92015-03-25 15:16:51 -0700792 if (should_confirm && !yes_no(device, "Wipe cache?", " THIS CAN NOT BE UNDONE!")) {
Tao Baoe39a9bc2015-03-31 12:19:05 -0700793 return false;
Elliott Hughes30694c92015-03-25 15:16:51 -0700794 }
795
Tao Bao682c34b2015-04-07 17:16:35 -0700796 modified_flash = true;
797
Elliott Hughes30694c92015-03-25 15:16:51 -0700798 ui->Print("\n-- Wiping cache...\n");
Elliott Hughes945548e2015-06-05 17:59:56 -0700799 bool success = erase_volume("/cache");
800 ui->Print("Cache wipe %s.\n", success ? "complete" : "failed");
801 return success;
Elliott Hughes30694c92015-03-25 15:16:51 -0700802}
803
Tao Bao1b2a98b2017-03-24 10:45:34 -0700804// Secure-wipe a given partition. It uses BLKSECDISCARD, if supported. Otherwise, it goes with
805// BLKDISCARD (if device supports BLKDISCARDZEROES) or BLKZEROOUT.
Tao Bao862a4c12016-06-02 11:16:50 -0700806static bool secure_wipe_partition(const std::string& partition) {
Tao Bao1b2a98b2017-03-24 10:45:34 -0700807 android::base::unique_fd fd(TEMP_FAILURE_RETRY(open(partition.c_str(), O_WRONLY)));
808 if (fd == -1) {
809 PLOG(ERROR) << "Failed to open \"" << partition << "\"";
810 return false;
811 }
812
813 uint64_t range[2] = { 0, 0 };
814 if (ioctl(fd, BLKGETSIZE64, &range[1]) == -1 || range[1] == 0) {
815 PLOG(ERROR) << "Failed to get partition size";
816 return false;
817 }
818 LOG(INFO) << "Secure-wiping \"" << partition << "\" from " << range[0] << " to " << range[1];
819
820 LOG(INFO) << " Trying BLKSECDISCARD...";
821 if (ioctl(fd, BLKSECDISCARD, &range) == -1) {
822 PLOG(WARNING) << " Failed";
823
824 // Use BLKDISCARD if it zeroes out blocks, otherwise use BLKZEROOUT.
825 unsigned int zeroes;
826 if (ioctl(fd, BLKDISCARDZEROES, &zeroes) == 0 && zeroes != 0) {
827 LOG(INFO) << " Trying BLKDISCARD...";
828 if (ioctl(fd, BLKDISCARD, &range) == -1) {
829 PLOG(ERROR) << " Failed";
Tao Bao862a4c12016-06-02 11:16:50 -0700830 return false;
Tao Bao1b2a98b2017-03-24 10:45:34 -0700831 }
832 } else {
833 LOG(INFO) << " Trying BLKZEROOUT...";
834 if (ioctl(fd, BLKZEROOUT, &range) == -1) {
835 PLOG(ERROR) << " Failed";
Tao Bao862a4c12016-06-02 11:16:50 -0700836 return false;
Tao Bao1b2a98b2017-03-24 10:45:34 -0700837 }
Tao Bao862a4c12016-06-02 11:16:50 -0700838 }
Tao Bao1b2a98b2017-03-24 10:45:34 -0700839 }
Tao Bao862a4c12016-06-02 11:16:50 -0700840
Tao Bao1b2a98b2017-03-24 10:45:34 -0700841 LOG(INFO) << " Done";
842 return true;
Tao Bao862a4c12016-06-02 11:16:50 -0700843}
844
Yabin Cuifd99a312016-06-09 14:09:39 -0700845// Check if the wipe package matches expectation:
846// 1. verify the package.
847// 2. check metadata (ota-type, pre-device and serial number if having one).
848static bool check_wipe_package(size_t wipe_package_size) {
849 if (wipe_package_size == 0) {
850 LOG(ERROR) << "wipe_package_size is zero";
851 return false;
852 }
853 std::string wipe_package;
854 std::string err_str;
855 if (!read_wipe_package(&wipe_package, wipe_package_size, &err_str)) {
856 PLOG(ERROR) << "Failed to read wipe package";
857 return false;
858 }
859 if (!verify_package(reinterpret_cast<const unsigned char*>(wipe_package.data()),
860 wipe_package.size())) {
861 LOG(ERROR) << "Failed to verify package";
862 return false;
863 }
864
865 // Extract metadata
866 ZipArchiveHandle zip;
Tao Baoefc35592017-01-08 22:45:47 -0800867 int err = OpenArchiveFromMemory(static_cast<void*>(&wipe_package[0]), wipe_package.size(),
868 "wipe_package", &zip);
Yabin Cuifd99a312016-06-09 14:09:39 -0700869 if (err != 0) {
870 LOG(ERROR) << "Can't open wipe package : " << ErrorCodeString(err);
871 return false;
872 }
873 std::string metadata;
Tao Bao1b2a98b2017-03-24 10:45:34 -0700874 if (!read_metadata_from_package(zip, &metadata)) {
Yabin Cuifd99a312016-06-09 14:09:39 -0700875 CloseArchive(zip);
876 return false;
877 }
878 CloseArchive(zip);
879
880 // Check metadata
881 std::vector<std::string> lines = android::base::Split(metadata, "\n");
882 bool ota_type_matched = false;
883 bool device_type_matched = false;
884 bool has_serial_number = false;
885 bool serial_number_matched = false;
886 for (const auto& line : lines) {
887 if (line == "ota-type=BRICK") {
888 ota_type_matched = true;
889 } else if (android::base::StartsWith(line, "pre-device=")) {
890 std::string device_type = line.substr(strlen("pre-device="));
Tao Baoefc35592017-01-08 22:45:47 -0800891 std::string real_device_type = android::base::GetProperty("ro.build.product", "");
Yabin Cuifd99a312016-06-09 14:09:39 -0700892 device_type_matched = (device_type == real_device_type);
893 } else if (android::base::StartsWith(line, "serialno=")) {
894 std::string serial_no = line.substr(strlen("serialno="));
Tao Baoefc35592017-01-08 22:45:47 -0800895 std::string real_serial_no = android::base::GetProperty("ro.serialno", "");
Yabin Cuifd99a312016-06-09 14:09:39 -0700896 has_serial_number = true;
897 serial_number_matched = (serial_no == real_serial_no);
898 }
899 }
900 return ota_type_matched && device_type_matched && (!has_serial_number || serial_number_matched);
901}
902
Yabin Cui8b309f62016-06-24 18:22:02 -0700903// Wipe the current A/B device, with a secure wipe of all the partitions in
904// RECOVERY_WIPE.
Yabin Cuifd99a312016-06-09 14:09:39 -0700905static bool wipe_ab_device(size_t wipe_package_size) {
Tao Bao862a4c12016-06-02 11:16:50 -0700906 ui->SetBackground(RecoveryUI::ERASING);
907 ui->SetProgressType(RecoveryUI::INDETERMINATE);
908
Yabin Cuifd99a312016-06-09 14:09:39 -0700909 if (!check_wipe_package(wipe_package_size)) {
910 LOG(ERROR) << "Failed to verify wipe package";
911 return false;
912 }
Tao Bao862a4c12016-06-02 11:16:50 -0700913 std::string partition_list;
Yabin Cui8b309f62016-06-24 18:22:02 -0700914 if (!android::base::ReadFileToString(RECOVERY_WIPE, &partition_list)) {
915 LOG(ERROR) << "failed to read \"" << RECOVERY_WIPE << "\"";
Tao Bao862a4c12016-06-02 11:16:50 -0700916 return false;
917 }
918
919 std::vector<std::string> lines = android::base::Split(partition_list, "\n");
920 for (const std::string& line : lines) {
921 std::string partition = android::base::Trim(line);
922 // Ignore '#' comment or empty lines.
923 if (android::base::StartsWith(partition, "#") || partition.empty()) {
924 continue;
925 }
926
927 // Proceed anyway even if it fails to wipe some partition.
928 secure_wipe_partition(partition);
929 }
930 return true;
931}
932
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700933static void choose_recovery_file(Device* device) {
Tao Bao08fc6be2017-03-07 00:56:27 -0800934 std::vector<std::string> entries;
935 if (has_cache) {
936 for (int i = 0; i < KEEP_LOG_COUNT; i++) {
937 auto add_to_entries = [&](const char* filename) {
938 std::string log_file(filename);
939 if (i > 0) {
940 log_file += "." + std::to_string(i);
Tao Baobef39712015-05-04 18:50:27 -0700941 }
Tao Bao08fc6be2017-03-07 00:56:27 -0800942
943 if (ensure_path_mounted(log_file.c_str()) == 0 && access(log_file.c_str(), R_OK) == 0) {
944 entries.push_back(std::move(log_file));
945 }
946 };
947
948 // Add LAST_LOG_FILE + LAST_LOG_FILE.x
949 add_to_entries(LAST_LOG_FILE);
950
951 // Add LAST_KMSG_FILE + LAST_KMSG_FILE.x
952 add_to_entries(LAST_KMSG_FILE);
953 }
954 } else {
955 // If cache partition is not found, view /tmp/recovery.log instead.
956 if (access(TEMPORARY_LOG_FILE, R_OK) == -1) {
957 return;
Tianjie Xua54f75e2016-08-17 12:02:46 -0700958 } else {
Tao Bao08fc6be2017-03-07 00:56:27 -0800959 entries.push_back(TEMPORARY_LOG_FILE);
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700960 }
Tao Bao08fc6be2017-03-07 00:56:27 -0800961 }
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700962
Tao Bao08fc6be2017-03-07 00:56:27 -0800963 entries.push_back("Back");
Elliott Hughesc0491632015-05-06 12:40:05 -0700964
Tao Bao08fc6be2017-03-07 00:56:27 -0800965 std::vector<const char*> menu_entries(entries.size());
966 std::transform(entries.cbegin(), entries.cend(), menu_entries.begin(),
967 [](const std::string& entry) { return entry.c_str(); });
968 menu_entries.push_back(nullptr);
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700969
Tao Bao08fc6be2017-03-07 00:56:27 -0800970 const char* headers[] = { "Select file to view", nullptr };
Elliott Hughes8de52072015-04-08 20:06:50 -0700971
Tao Bao08fc6be2017-03-07 00:56:27 -0800972 int chosen_item = 0;
973 while (true) {
Tao Baofc5499f2017-02-23 19:06:53 -0800974 chosen_item = get_menu_selection(headers, menu_entries.data(), true, chosen_item, device);
Tao Bao08fc6be2017-03-07 00:56:27 -0800975 if (entries[chosen_item] == "Back") break;
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700976
Tao Bao08fc6be2017-03-07 00:56:27 -0800977 ui->ShowFile(entries[chosen_item].c_str());
978 }
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700979}
980
Tao Baodb7e8982017-03-06 23:53:16 -0800981static void run_graphics_test() {
982 // Switch to graphics screen.
983 ui->ShowText(false);
Elliott Hughes498cda62016-04-14 16:49:04 -0700984
Tao Baodb7e8982017-03-06 23:53:16 -0800985 ui->SetProgressType(RecoveryUI::INDETERMINATE);
986 ui->SetBackground(RecoveryUI::INSTALLING_UPDATE);
987 sleep(1);
Elliott Hughes498cda62016-04-14 16:49:04 -0700988
Tao Baodb7e8982017-03-06 23:53:16 -0800989 ui->SetBackground(RecoveryUI::ERROR);
990 sleep(1);
Elliott Hughes498cda62016-04-14 16:49:04 -0700991
Tao Baodb7e8982017-03-06 23:53:16 -0800992 ui->SetBackground(RecoveryUI::NO_COMMAND);
993 sleep(1);
Elliott Hughes498cda62016-04-14 16:49:04 -0700994
Tao Baodb7e8982017-03-06 23:53:16 -0800995 ui->SetBackground(RecoveryUI::ERASING);
996 sleep(1);
Elliott Hughes498cda62016-04-14 16:49:04 -0700997
Tao Baodb7e8982017-03-06 23:53:16 -0800998 // Calling SetBackground() after SetStage() to trigger a redraw.
999 ui->SetStage(1, 3);
1000 ui->SetBackground(RecoveryUI::INSTALLING_UPDATE);
1001 sleep(1);
1002 ui->SetStage(2, 3);
1003 ui->SetBackground(RecoveryUI::INSTALLING_UPDATE);
1004 sleep(1);
1005 ui->SetStage(3, 3);
1006 ui->SetBackground(RecoveryUI::INSTALLING_UPDATE);
1007 sleep(1);
Elliott Hughes498cda62016-04-14 16:49:04 -07001008
Tao Baodb7e8982017-03-06 23:53:16 -08001009 ui->SetStage(-1, -1);
1010 ui->SetBackground(RecoveryUI::INSTALLING_UPDATE);
Elliott Hughes498cda62016-04-14 16:49:04 -07001011
Tao Baodb7e8982017-03-06 23:53:16 -08001012 ui->SetProgressType(RecoveryUI::DETERMINATE);
1013 ui->ShowProgress(1.0, 10.0);
1014 float fraction = 0.0;
1015 for (size_t i = 0; i < 100; ++i) {
1016 fraction += .01;
1017 ui->SetProgress(fraction);
1018 usleep(100000);
1019 }
1020
1021 ui->ShowText(true);
Elliott Hughes498cda62016-04-14 16:49:04 -07001022}
1023
Tao Baocdcf28f2016-01-13 15:05:20 -08001024// How long (in seconds) we wait for the fuse-provided package file to
1025// appear, before timing out.
1026#define SDCARD_INSTALL_TIMEOUT 10
1027
Tao Bao145d8612015-03-25 15:51:15 -07001028static int apply_from_sdcard(Device* device, bool* wipe_cache) {
Tao Bao682c34b2015-04-07 17:16:35 -07001029 modified_flash = true;
1030
Christian Poetzsch4ec58a42015-02-19 10:42:39 +00001031 if (ensure_path_mounted(SDCARD_ROOT) != 0) {
1032 ui->Print("\n-- Couldn't mount %s.\n", SDCARD_ROOT);
1033 return INSTALL_ERROR;
1034 }
1035
Tao Baoc4a18ef2017-02-10 00:13:30 -08001036 std::string path = browse_directory(SDCARD_ROOT, device);
1037 if (path.empty()) {
Elliott Hughes018ed312015-04-08 16:51:36 -07001038 ui->Print("\n-- No package file selected.\n");
caozhiyuanb4effb92015-06-10 16:46:38 +08001039 ensure_path_unmounted(SDCARD_ROOT);
Christian Poetzsch4ec58a42015-02-19 10:42:39 +00001040 return INSTALL_ERROR;
1041 }
1042
Tao Baoc4a18ef2017-02-10 00:13:30 -08001043 ui->Print("\n-- Install %s ...\n", path.c_str());
Christian Poetzsch4ec58a42015-02-19 10:42:39 +00001044 set_sdcard_update_bootloader_message();
Christian Poetzsch4ec58a42015-02-19 10:42:39 +00001045
Tao Baocdcf28f2016-01-13 15:05:20 -08001046 // We used to use fuse in a thread as opposed to a process. Since accessing
1047 // through fuse involves going from kernel to userspace to kernel, it leads
1048 // to deadlock when a page fault occurs. (Bug: 26313124)
1049 pid_t child;
1050 if ((child = fork()) == 0) {
Tao Baoc4a18ef2017-02-10 00:13:30 -08001051 bool status = start_sdcard_fuse(path.c_str());
Tao Baocdcf28f2016-01-13 15:05:20 -08001052
1053 _exit(status ? EXIT_SUCCESS : EXIT_FAILURE);
1054 }
1055
1056 // FUSE_SIDELOAD_HOST_PATHNAME will start to exist once the fuse in child
1057 // process is ready.
1058 int result = INSTALL_ERROR;
1059 int status;
1060 bool waited = false;
1061 for (int i = 0; i < SDCARD_INSTALL_TIMEOUT; ++i) {
1062 if (waitpid(child, &status, WNOHANG) == -1) {
1063 result = INSTALL_ERROR;
1064 waited = true;
1065 break;
1066 }
1067
1068 struct stat sb;
1069 if (stat(FUSE_SIDELOAD_HOST_PATHNAME, &sb) == -1) {
1070 if (errno == ENOENT && i < SDCARD_INSTALL_TIMEOUT-1) {
1071 sleep(1);
1072 continue;
1073 } else {
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -07001074 LOG(ERROR) << "Timed out waiting for the fuse-provided package.";
Tao Baocdcf28f2016-01-13 15:05:20 -08001075 result = INSTALL_ERROR;
1076 kill(child, SIGKILL);
1077 break;
1078 }
1079 }
1080
1081 result = install_package(FUSE_SIDELOAD_HOST_PATHNAME, wipe_cache,
Tianjie Xu16255832016-04-30 11:49:59 -07001082 TEMPORARY_INSTALL_FILE, false, 0/*retry_count*/);
Tao Baocdcf28f2016-01-13 15:05:20 -08001083 break;
1084 }
Christian Poetzsch4ec58a42015-02-19 10:42:39 +00001085
Tao Baocdcf28f2016-01-13 15:05:20 -08001086 if (!waited) {
1087 // Calling stat() on this magic filename signals the fuse
1088 // filesystem to shut down.
1089 struct stat sb;
1090 stat(FUSE_SIDELOAD_HOST_EXIT_PATHNAME, &sb);
1091
1092 waitpid(child, &status, 0);
1093 }
1094
1095 if (!WIFEXITED(status) || WEXITSTATUS(status) != 0) {
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -07001096 LOG(ERROR) << "Error exit from the fuse process: " << WEXITSTATUS(status);
Tao Baocdcf28f2016-01-13 15:05:20 -08001097 }
1098
Christian Poetzsch4ec58a42015-02-19 10:42:39 +00001099 ensure_path_unmounted(SDCARD_ROOT);
Tao Baocdcf28f2016-01-13 15:05:20 -08001100 return result;
Christian Poetzsch4ec58a42015-02-19 10:42:39 +00001101}
1102
Tao Bao50dd5322017-03-07 14:57:04 -08001103// Returns REBOOT, SHUTDOWN, or REBOOT_BOOTLOADER. Returning NO_ACTION means to take the default,
1104// which is to reboot or shutdown depending on if the --shutdown_after flag was passed to recovery.
1105static Device::BuiltinAction prompt_and_wait(Device* device, int status) {
1106 for (;;) {
1107 finish_recovery();
1108 switch (status) {
1109 case INSTALL_SUCCESS:
1110 case INSTALL_NONE:
1111 ui->SetBackground(RecoveryUI::NO_COMMAND);
1112 break;
Doug Zongker6c8553d2012-09-24 10:40:47 -07001113
Tao Bao50dd5322017-03-07 14:57:04 -08001114 case INSTALL_ERROR:
1115 case INSTALL_CORRUPT:
1116 ui->SetBackground(RecoveryUI::ERROR);
1117 break;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001118 }
Tao Bao50dd5322017-03-07 14:57:04 -08001119 ui->SetProgressType(RecoveryUI::EMPTY);
1120
1121 int chosen_item = get_menu_selection(nullptr, device->GetMenuItems(), false, 0, device);
1122
1123 // Device-specific code may take some action here. It may return one of the core actions
1124 // handled in the switch statement below.
1125 Device::BuiltinAction chosen_action =
1126 (chosen_item == -1) ? Device::REBOOT : device->InvokeMenuItem(chosen_item);
1127
1128 bool should_wipe_cache = false;
1129 switch (chosen_action) {
1130 case Device::NO_ACTION:
1131 break;
1132
1133 case Device::REBOOT:
1134 case Device::SHUTDOWN:
1135 case Device::REBOOT_BOOTLOADER:
1136 return chosen_action;
1137
1138 case Device::WIPE_DATA:
1139 if (ui->IsTextVisible()) {
1140 if (ask_to_wipe_data(device)) {
1141 wipe_data(device);
1142 }
1143 } else {
1144 wipe_data(device);
1145 return Device::NO_ACTION;
1146 }
1147 break;
1148
1149 case Device::WIPE_CACHE:
1150 wipe_cache(ui->IsTextVisible(), device);
1151 if (!ui->IsTextVisible()) return Device::NO_ACTION;
1152 break;
1153
1154 case Device::APPLY_ADB_SIDELOAD:
1155 case Device::APPLY_SDCARD:
1156 {
1157 bool adb = (chosen_action == Device::APPLY_ADB_SIDELOAD);
1158 if (adb) {
1159 status = apply_from_adb(ui, &should_wipe_cache, TEMPORARY_INSTALL_FILE);
1160 } else {
1161 status = apply_from_sdcard(device, &should_wipe_cache);
1162 }
1163
1164 if (status == INSTALL_SUCCESS && should_wipe_cache) {
1165 if (!wipe_cache(false, device)) {
1166 status = INSTALL_ERROR;
1167 }
1168 }
1169
1170 if (status != INSTALL_SUCCESS) {
1171 ui->SetBackground(RecoveryUI::ERROR);
1172 ui->Print("Installation aborted.\n");
1173 copy_logs();
1174 } else if (!ui->IsTextVisible()) {
1175 return Device::NO_ACTION; // reboot if logs aren't visible
1176 } else {
1177 ui->Print("\nInstall from %s complete.\n", adb ? "ADB" : "SD card");
1178 }
1179 }
1180 break;
1181
1182 case Device::VIEW_RECOVERY_LOGS:
1183 choose_recovery_file(device);
1184 break;
1185
1186 case Device::RUN_GRAPHICS_TEST:
1187 run_graphics_test();
1188 break;
1189
1190 case Device::MOUNT_SYSTEM:
1191 // For a system image built with the root directory (i.e. system_root_image == "true"), we
1192 // mount it to /system_root, and symlink /system to /system_root/system to make adb shell
1193 // work (the symlink is created through the build system). (Bug: 22855115)
1194 if (android::base::GetBoolProperty("ro.build.system_root_image", false)) {
1195 if (ensure_path_mounted_at("/", "/system_root") != -1) {
1196 ui->Print("Mounted /system.\n");
1197 }
1198 } else {
1199 if (ensure_path_mounted("/system") != -1) {
1200 ui->Print("Mounted /system.\n");
1201 }
1202 }
1203 break;
1204 }
1205 }
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001206}
1207
1208static void
Oscar Montemayor05231562009-11-30 08:40:57 -08001209print_property(const char *key, const char *name, void *cookie) {
Doug Zongker56c51052010-07-01 09:18:44 -07001210 printf("%s=%s\n", key, name);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001211}
1212
Tao Baoac9d94d2016-11-03 11:37:15 -07001213static std::string load_locale_from_cache() {
1214 if (ensure_path_mounted(LOCALE_FILE) != 0) {
1215 LOG(ERROR) << "Can't mount " << LOCALE_FILE;
1216 return "";
Doug Zongker02ec6b82012-08-22 17:26:40 -07001217 }
Tao Baoac9d94d2016-11-03 11:37:15 -07001218
1219 std::string content;
1220 if (!android::base::ReadFileToString(LOCALE_FILE, &content)) {
1221 PLOG(ERROR) << "Can't read " << LOCALE_FILE;
1222 return "";
1223 }
1224
1225 return android::base::Trim(content);
Doug Zongker02ec6b82012-08-22 17:26:40 -07001226}
1227
Tao Baoac9d94d2016-11-03 11:37:15 -07001228void ui_print(const char* format, ...) {
1229 std::string buffer;
Doug Zongker7c3ae452013-05-14 11:03:02 -07001230 va_list ap;
1231 va_start(ap, format);
Tao Baoac9d94d2016-11-03 11:37:15 -07001232 android::base::StringAppendV(&buffer, format, ap);
Doug Zongker7c3ae452013-05-14 11:03:02 -07001233 va_end(ap);
1234
Tao Baoac9d94d2016-11-03 11:37:15 -07001235 if (ui != nullptr) {
1236 ui->Print("%s", buffer.c_str());
Doug Zongker7c3ae452013-05-14 11:03:02 -07001237 } else {
Tao Baoac9d94d2016-11-03 11:37:15 -07001238 fputs(buffer.c_str(), stdout);
Doug Zongker7c3ae452013-05-14 11:03:02 -07001239 }
1240}
1241
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -07001242static constexpr char log_characters[] = "VDIWEF";
1243
1244void UiLogger(android::base::LogId id, android::base::LogSeverity severity,
1245 const char* tag, const char* file, unsigned int line,
1246 const char* message) {
Tao Baoac9d94d2016-11-03 11:37:15 -07001247 if (severity >= android::base::ERROR && ui != nullptr) {
1248 ui->Print("E:%s\n", message);
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -07001249 } else {
1250 fprintf(stdout, "%c:%s\n", log_characters[severity], message);
1251 }
1252}
1253
Yabin Cui99281df2016-02-17 12:21:52 -08001254static bool is_battery_ok() {
1255 struct healthd_config healthd_config = {
1256 .batteryStatusPath = android::String8(android::String8::kEmptyString),
1257 .batteryHealthPath = android::String8(android::String8::kEmptyString),
1258 .batteryPresentPath = android::String8(android::String8::kEmptyString),
1259 .batteryCapacityPath = android::String8(android::String8::kEmptyString),
1260 .batteryVoltagePath = android::String8(android::String8::kEmptyString),
1261 .batteryTemperaturePath = android::String8(android::String8::kEmptyString),
1262 .batteryTechnologyPath = android::String8(android::String8::kEmptyString),
1263 .batteryCurrentNowPath = android::String8(android::String8::kEmptyString),
1264 .batteryCurrentAvgPath = android::String8(android::String8::kEmptyString),
1265 .batteryChargeCounterPath = android::String8(android::String8::kEmptyString),
1266 .batteryFullChargePath = android::String8(android::String8::kEmptyString),
1267 .batteryCycleCountPath = android::String8(android::String8::kEmptyString),
1268 .energyCounter = NULL,
1269 .boot_min_cap = 0,
1270 .screen_on = NULL
1271 };
1272 healthd_board_init(&healthd_config);
1273
1274 android::BatteryMonitor monitor;
1275 monitor.init(&healthd_config);
1276
1277 int wait_second = 0;
1278 while (true) {
1279 int charge_status = monitor.getChargeStatus();
1280 // Treat unknown status as charged.
1281 bool charged = (charge_status != android::BATTERY_STATUS_DISCHARGING &&
1282 charge_status != android::BATTERY_STATUS_NOT_CHARGING);
1283 android::BatteryProperty capacity;
1284 android::status_t status = monitor.getProperty(android::BATTERY_PROP_CAPACITY, &capacity);
1285 ui_print("charge_status %d, charged %d, status %d, capacity %lld\n", charge_status,
1286 charged, status, capacity.valueInt64);
1287 // At startup, the battery drivers in devices like N5X/N6P take some time to load
1288 // the battery profile. Before the load finishes, it reports value 50 as a fake
1289 // capacity. BATTERY_READ_TIMEOUT_IN_SEC is set that the battery drivers are expected
1290 // to finish loading the battery profile earlier than 10 seconds after kernel startup.
1291 if (status == 0 && capacity.valueInt64 == 50) {
1292 if (wait_second < BATTERY_READ_TIMEOUT_IN_SEC) {
1293 sleep(1);
1294 wait_second++;
1295 continue;
1296 }
1297 }
1298 // If we can't read battery percentage, it may be a device without battery. In this
1299 // situation, use 100 as a fake battery percentage.
1300 if (status != 0) {
1301 capacity.valueInt64 = 100;
1302 }
1303 return (charged && capacity.valueInt64 >= BATTERY_WITH_CHARGER_OK_PERCENTAGE) ||
1304 (!charged && capacity.valueInt64 >= BATTERY_OK_PERCENTAGE);
1305 }
1306}
1307
Tianjie Xu3c62b672016-02-05 18:25:58 -08001308static void set_retry_bootloader_message(int retry_count, int argc, char** argv) {
Tianjie Xubd56f152016-09-28 16:32:10 -07001309 std::vector<std::string> options;
Tianjie Xu3c62b672016-02-05 18:25:58 -08001310 for (int i = 1; i < argc; ++i) {
1311 if (strstr(argv[i], "retry_count") == nullptr) {
Tianjie Xubd56f152016-09-28 16:32:10 -07001312 options.push_back(argv[i]);
Tianjie Xu3c62b672016-02-05 18:25:58 -08001313 }
1314 }
1315
Tianjie Xubd56f152016-09-28 16:32:10 -07001316 // Increment the retry counter by 1.
1317 options.push_back(android::base::StringPrintf("--retry_count=%d", retry_count+1));
Yabin Cui8b309f62016-06-24 18:22:02 -07001318 std::string err;
Tao Bao2292db82016-12-13 21:53:31 -08001319 if (!update_bootloader_message(options, &err)) {
Yabin Cui8b309f62016-06-24 18:22:02 -07001320 LOG(ERROR) << err;
1321 }
Tianjie Xu3c62b672016-02-05 18:25:58 -08001322}
1323
Tianjie Xu06e57ac2016-07-11 14:04:08 -07001324static bool bootreason_in_blacklist() {
Tao Baoefc35592017-01-08 22:45:47 -08001325 std::string bootreason = android::base::GetProperty("ro.boot.bootreason", "");
1326 if (!bootreason.empty()) {
1327 for (const auto& str : bootreason_blacklist) {
1328 if (strcasecmp(str.c_str(), bootreason.c_str()) == 0) {
1329 return true;
1330 }
Tianjie Xu06e57ac2016-07-11 14:04:08 -07001331 }
Tao Baoefc35592017-01-08 22:45:47 -08001332 }
1333 return false;
Tianjie Xu06e57ac2016-07-11 14:04:08 -07001334}
1335
1336static void log_failure_code(ErrorCode code, const char *update_package) {
1337 std::vector<std::string> log_buffer = {
1338 update_package,
1339 "0", // install result
1340 "error: " + std::to_string(code),
1341 };
1342 std::string log_content = android::base::Join(log_buffer, "\n");
1343 if (!android::base::WriteStringToFile(log_content, TEMPORARY_INSTALL_FILE)) {
Tao Baoac9d94d2016-11-03 11:37:15 -07001344 PLOG(ERROR) << "failed to write " << TEMPORARY_INSTALL_FILE;
Tianjie Xu06e57ac2016-07-11 14:04:08 -07001345 }
1346
1347 // Also write the info into last_log.
1348 LOG(INFO) << log_content;
1349}
1350
Yabin Cui99281df2016-02-17 12:21:52 -08001351int main(int argc, char **argv) {
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -07001352 // We don't have logcat yet under recovery; so we'll print error on screen and
1353 // log to stdout (which is redirected to recovery.log) as we used to do.
1354 android::base::InitLogging(argv, &UiLogger);
1355
Mark Salyzyna4f701a2016-03-09 14:58:16 -08001356 // Take last pmsg contents and rewrite it to the current pmsg session.
1357 static const char filter[] = "recovery/";
1358 // Do we need to rotate?
1359 bool doRotate = false;
Tianjie Xue113e4d2016-10-21 17:46:13 -07001360
Mark Salyzyna4f701a2016-03-09 14:58:16 -08001361 __android_log_pmsg_file_read(
1362 LOG_ID_SYSTEM, ANDROID_LOG_INFO, filter,
1363 logbasename, &doRotate);
1364 // Take action to refresh pmsg contents
1365 __android_log_pmsg_file_read(
1366 LOG_ID_SYSTEM, ANDROID_LOG_INFO, filter,
1367 logrotate, &doRotate);
1368
Doug Zongker9270a202012-01-09 15:16:13 -08001369 // If this binary is started with the single argument "--adbd",
1370 // instead of being the normal recovery binary, it turns into kind
1371 // of a stripped-down version of adbd that only supports the
1372 // 'sideload' command. Note this must be a real argument, not
1373 // anything in the command file or bootloader control block; the
1374 // only way recovery should be run with this argument is when it
1375 // starts a copy of itself from the apply_from_adb() function.
1376 if (argc == 2 && strcmp(argv[1], "--adbd") == 0) {
Josh Gaoacb2a2f2016-08-26 18:24:34 -07001377 minadbd_main();
Doug Zongker9270a202012-01-09 15:16:13 -08001378 return 0;
1379 }
1380
Tao Bao04ca4262015-09-10 15:32:24 -07001381 time_t start = time(NULL);
1382
1383 // redirect_stdio should be called only in non-sideload mode. Otherwise
1384 // we may have two logger instances with different timestamps.
1385 redirect_stdio(TEMPORARY_LOG_FILE);
1386
Doug Zongker19a8e242014-01-21 09:25:41 -08001387 printf("Starting recovery (pid %d) on %s", getpid(), ctime(&start));
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001388
Doug Zongkerd4208f92010-09-20 12:16:13 -07001389 load_volume_table();
Tao Bao26112e52016-02-25 12:29:40 -08001390 has_cache = volume_for_path(CACHE_ROOT) != nullptr;
1391
Tao Baof0ed1592016-12-02 11:32:19 -08001392 std::vector<std::string> args = get_args(argc, argv);
1393 std::vector<char*> args_to_parse(args.size());
1394 std::transform(args.cbegin(), args.cend(), args_to_parse.begin(),
1395 [](const std::string& arg) { return const_cast<char*>(arg.c_str()); });
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001396
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001397 const char *update_package = NULL;
Tao Baoe39a9bc2015-03-31 12:19:05 -07001398 bool should_wipe_data = false;
Paul Crowley08404b42016-12-19 13:04:23 -08001399 bool should_prompt_and_wipe_data = false;
Tao Baoc679f932015-03-30 09:43:49 -07001400 bool should_wipe_cache = false;
Yabin Cui8b309f62016-06-24 18:22:02 -07001401 bool should_wipe_ab = false;
Yabin Cuifd99a312016-06-09 14:09:39 -07001402 size_t wipe_package_size = 0;
Tao Bao145d8612015-03-25 15:51:15 -07001403 bool show_text = false;
Tao Baoc679f932015-03-30 09:43:49 -07001404 bool sideload = false;
1405 bool sideload_auto_reboot = false;
Doug Zongkere5d5ac72012-04-12 11:01:22 -07001406 bool just_exit = false;
Doug Zongkerb1d12632014-03-18 10:32:12 -07001407 bool shutdown_after = false;
Tianjie Xu3c62b672016-02-05 18:25:58 -08001408 int retry_count = 0;
Tianjie Xu35926c42016-04-28 18:06:26 -07001409 bool security_update = false;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001410
1411 int arg;
Tao Bao862a4c12016-06-02 11:16:50 -07001412 int option_index;
Tao Baof0ed1592016-12-02 11:32:19 -08001413 while ((arg = getopt_long(args_to_parse.size(), args_to_parse.data(), "", OPTIONS,
1414 &option_index)) != -1) {
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001415 switch (arg) {
Tianjie Xu3c62b672016-02-05 18:25:58 -08001416 case 'n': android::base::ParseInt(optarg, &retry_count, 0); break;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001417 case 'u': update_package = optarg; break;
Tao Baoe39a9bc2015-03-31 12:19:05 -07001418 case 'w': should_wipe_data = true; break;
Tao Baoc679f932015-03-30 09:43:49 -07001419 case 'c': should_wipe_cache = true; break;
Tao Bao145d8612015-03-25 15:51:15 -07001420 case 't': show_text = true; break;
Tao Baoc679f932015-03-30 09:43:49 -07001421 case 's': sideload = true; break;
1422 case 'a': sideload = true; sideload_auto_reboot = true; break;
Doug Zongkere5d5ac72012-04-12 11:01:22 -07001423 case 'x': just_exit = true; break;
Doug Zongker02ec6b82012-08-22 17:26:40 -07001424 case 'l': locale = optarg; break;
Doug Zongkerb1d12632014-03-18 10:32:12 -07001425 case 'p': shutdown_after = true; break;
Jeff Sharkeya6e13ae2014-09-24 11:46:17 -07001426 case 'r': reason = optarg; break;
Tianjie Xu35926c42016-04-28 18:06:26 -07001427 case 'e': security_update = true; break;
Tao Bao862a4c12016-06-02 11:16:50 -07001428 case 0: {
Paul Crowley08404b42016-12-19 13:04:23 -08001429 std::string option = OPTIONS[option_index].name;
1430 if (option == "wipe_ab") {
Yabin Cui8b309f62016-06-24 18:22:02 -07001431 should_wipe_ab = true;
Paul Crowley08404b42016-12-19 13:04:23 -08001432 } else if (option == "wipe_package_size") {
Yabin Cuifd99a312016-06-09 14:09:39 -07001433 android::base::ParseUint(optarg, &wipe_package_size);
Paul Crowley08404b42016-12-19 13:04:23 -08001434 } else if (option == "prompt_and_wipe_data") {
1435 should_prompt_and_wipe_data = true;
Tao Bao862a4c12016-06-02 11:16:50 -07001436 }
1437 break;
1438 }
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001439 case '?':
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -07001440 LOG(ERROR) << "Invalid command argument";
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001441 continue;
1442 }
1443 }
1444
Tao Baoac9d94d2016-11-03 11:37:15 -07001445 if (locale.empty()) {
1446 if (has_cache) {
1447 locale = load_locale_from_cache();
1448 }
1449
1450 if (locale.empty()) {
1451 locale = DEFAULT_LOCALE;
1452 }
Doug Zongker02ec6b82012-08-22 17:26:40 -07001453 }
Tao Baoac9d94d2016-11-03 11:37:15 -07001454
1455 printf("locale is [%s]\n", locale.c_str());
Tao Baoa8d72bc2016-12-25 18:46:50 -08001456 printf("stage is [%s]\n", stage.c_str());
Jeff Sharkeya6e13ae2014-09-24 11:46:17 -07001457 printf("reason is [%s]\n", reason);
Doug Zongker02ec6b82012-08-22 17:26:40 -07001458
1459 Device* device = make_device();
Dmitri Plotnikov8706a982017-04-18 08:28:26 -07001460 if (android::base::GetBoolProperty("ro.boot.quiescent", false)) {
1461 printf("Quiescent recovery mode.\n");
1462 ui = new StubRecoveryUI();
1463 } else {
1464 ui = device->GetUI();
Doug Zongker02ec6b82012-08-22 17:26:40 -07001465
Dmitri Plotnikov8706a982017-04-18 08:28:26 -07001466 if (!ui->Init(locale)) {
1467 printf("Failed to initialize UI, use stub UI instead.\n");
1468 ui = new StubRecoveryUI();
1469 }
Sen Jiangd5304492016-12-09 16:20:49 -08001470 }
Dmitri Plotnikov8706a982017-04-18 08:28:26 -07001471
Tianjie Xu35926c42016-04-28 18:06:26 -07001472 // Set background string to "installing security update" for security update,
1473 // otherwise set it to "installing system update".
1474 ui->SetSystemUpdateText(security_update);
Doug Zongkerc87bab12013-11-25 13:53:25 -08001475
1476 int st_cur, st_max;
Tao Baoa8d72bc2016-12-25 18:46:50 -08001477 if (!stage.empty() && sscanf(stage.c_str(), "%d/%d", &st_cur, &st_max) == 2) {
Doug Zongkerc87bab12013-11-25 13:53:25 -08001478 ui->SetStage(st_cur, st_max);
1479 }
1480
Doug Zongker02ec6b82012-08-22 17:26:40 -07001481 ui->SetBackground(RecoveryUI::NONE);
1482 if (show_text) ui->ShowText(true);
1483
Stephen Smalley779701d2012-02-09 14:13:23 -05001484 struct selinux_opt seopts[] = {
Tao Baoac9d94d2016-11-03 11:37:15 -07001485 { SELABEL_OPT_PATH, "/file_contexts" }
Stephen Smalley779701d2012-02-09 14:13:23 -05001486 };
1487
1488 sehandle = selabel_open(SELABEL_CTX_FILE, seopts, 1);
1489
1490 if (!sehandle) {
Doug Zongkerfafc85b2013-07-09 12:29:45 -07001491 ui->Print("Warning: No file_contexts\n");
Stephen Smalley779701d2012-02-09 14:13:23 -05001492 }
Stephen Smalley779701d2012-02-09 14:13:23 -05001493
Doug Zongkerdaefc1d2011-10-31 09:34:15 -07001494 device->StartRecovery();
Doug Zongkerefa1bab2010-02-01 15:59:12 -08001495
Doug Zongker56c51052010-07-01 09:18:44 -07001496 printf("Command:");
Tao Baof0ed1592016-12-02 11:32:19 -08001497 for (const auto& arg : args) {
1498 printf(" \"%s\"", arg.c_str());
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001499 }
Tao Baof038ca02016-12-10 09:24:50 -08001500 printf("\n\n");
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001501
1502 property_list(print_property, NULL);
Doug Zongker56c51052010-07-01 09:18:44 -07001503 printf("\n");
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001504
Elliott Hughesbb78d622015-04-09 20:51:08 -07001505 ui->Print("Supported API: %d\n", RECOVERY_API_VERSION);
1506
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001507 int status = INSTALL_SUCCESS;
1508
Doug Zongker540d57f2011-01-18 13:36:58 -08001509 if (update_package != NULL) {
Tao Bao56870012016-04-29 15:37:05 -07001510 // It's not entirely true that we will modify the flash. But we want
1511 // to log the update attempt since update_package is non-NULL.
1512 modified_flash = true;
1513
Yabin Cui99281df2016-02-17 12:21:52 -08001514 if (!is_battery_ok()) {
1515 ui->Print("battery capacity is not enough for installing package, needed is %d%%\n",
1516 BATTERY_OK_PERCENTAGE);
Tianjie Xu16255832016-04-30 11:49:59 -07001517 // Log the error code to last_install when installation skips due to
1518 // low battery.
Tianjie Xu06e57ac2016-07-11 14:04:08 -07001519 log_failure_code(kLowBattery, update_package);
1520 status = INSTALL_SKIPPED;
1521 } else if (bootreason_in_blacklist()) {
1522 // Skip update-on-reboot when bootreason is kernel_panic or similar
1523 ui->Print("bootreason is in the blacklist; skip OTA installation\n");
1524 log_failure_code(kBootreasonInBlacklist, update_package);
Yabin Cui99281df2016-02-17 12:21:52 -08001525 status = INSTALL_SKIPPED;
1526 } else {
1527 status = install_package(update_package, &should_wipe_cache,
Tianjie Xu16255832016-04-30 11:49:59 -07001528 TEMPORARY_INSTALL_FILE, true, retry_count);
Yabin Cui99281df2016-02-17 12:21:52 -08001529 if (status == INSTALL_SUCCESS && should_wipe_cache) {
1530 wipe_cache(false, device);
1531 }
1532 if (status != INSTALL_SUCCESS) {
1533 ui->Print("Installation aborted.\n");
Tianjie Xu3c62b672016-02-05 18:25:58 -08001534 // When I/O error happens, reboot and retry installation EIO_RETRY_COUNT
1535 // times before we abandon this OTA update.
1536 if (status == INSTALL_RETRY && retry_count < EIO_RETRY_COUNT) {
1537 copy_logs();
1538 set_retry_bootloader_message(retry_count, argc, argv);
1539 // Print retry count on screen.
1540 ui->Print("Retry attempt %d\n", retry_count);
Doug Zongker7c3ae452013-05-14 11:03:02 -07001541
Tianjie Xu3c62b672016-02-05 18:25:58 -08001542 // Reboot and retry the update
Dmitri Plotnikov8706a982017-04-18 08:28:26 -07001543 if (!reboot("reboot,recovery")) {
Tianjie Xu3c62b672016-02-05 18:25:58 -08001544 ui->Print("Reboot failed\n");
1545 } else {
1546 while (true) {
1547 pause();
1548 }
1549 }
1550 }
Yabin Cui99281df2016-02-17 12:21:52 -08001551 // If this is an eng or userdebug build, then automatically
1552 // turn the text display on if the script fails so the error
1553 // message is visible.
1554 if (is_ro_debuggable()) {
1555 ui->ShowText(true);
1556 }
Doug Zongker7c3ae452013-05-14 11:03:02 -07001557 }
1558 }
Tao Baoe39a9bc2015-03-31 12:19:05 -07001559 } else if (should_wipe_data) {
Paul Crowley08404b42016-12-19 13:04:23 -08001560 if (!wipe_data(device)) {
Tao Baoe39a9bc2015-03-31 12:19:05 -07001561 status = INSTALL_ERROR;
1562 }
Paul Crowley08404b42016-12-19 13:04:23 -08001563 } else if (should_prompt_and_wipe_data) {
1564 ui->ShowText(true);
1565 ui->SetBackground(RecoveryUI::ERROR);
1566 if (!prompt_and_wipe_data(device)) {
1567 status = INSTALL_ERROR;
1568 }
1569 ui->ShowText(false);
Tao Baoc679f932015-03-30 09:43:49 -07001570 } else if (should_wipe_cache) {
Tao Baoe39a9bc2015-03-31 12:19:05 -07001571 if (!wipe_cache(false, device)) {
1572 status = INSTALL_ERROR;
1573 }
Yabin Cui8b309f62016-06-24 18:22:02 -07001574 } else if (should_wipe_ab) {
Yabin Cuifd99a312016-06-09 14:09:39 -07001575 if (!wipe_ab_device(wipe_package_size)) {
Tao Bao862a4c12016-06-02 11:16:50 -07001576 status = INSTALL_ERROR;
1577 }
Tao Baoc679f932015-03-30 09:43:49 -07001578 } else if (sideload) {
1579 // 'adb reboot sideload' acts the same as user presses key combinations
1580 // to enter the sideload mode. When 'sideload-auto-reboot' is used, text
1581 // display will NOT be turned on by default. And it will reboot after
1582 // sideload finishes even if there are errors. Unless one turns on the
1583 // text display during the installation. This is to enable automated
1584 // testing.
1585 if (!sideload_auto_reboot) {
1586 ui->ShowText(true);
1587 }
1588 status = apply_from_adb(ui, &should_wipe_cache, TEMPORARY_INSTALL_FILE);
1589 if (status == INSTALL_SUCCESS && should_wipe_cache) {
Tao Baoe39a9bc2015-03-31 12:19:05 -07001590 if (!wipe_cache(false, device)) {
1591 status = INSTALL_ERROR;
1592 }
Tao Baoc679f932015-03-30 09:43:49 -07001593 }
1594 ui->Print("\nInstall from ADB complete (status: %d).\n", status);
1595 if (sideload_auto_reboot) {
1596 ui->Print("Rebooting automatically.\n");
1597 }
Doug Zongkere5d5ac72012-04-12 11:01:22 -07001598 } else if (!just_exit) {
Doug Zongker02ec6b82012-08-22 17:26:40 -07001599 status = INSTALL_NONE; // No command specified
1600 ui->SetBackground(RecoveryUI::NO_COMMAND);
Tao Bao785d22c2015-05-04 09:34:29 -07001601
1602 // http://b/17489952
1603 // If this is an eng or userdebug build, automatically turn on the
1604 // text display if no command is specified.
1605 if (is_ro_debuggable()) {
1606 ui->ShowText(true);
1607 }
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001608 }
1609
Tao Baoc679f932015-03-30 09:43:49 -07001610 if (!sideload_auto_reboot && (status == INSTALL_ERROR || status == INSTALL_CORRUPT)) {
Doug Zongkerf24fd7e2013-07-02 11:43:25 -07001611 copy_logs();
Doug Zongker02ec6b82012-08-22 17:26:40 -07001612 ui->SetBackground(RecoveryUI::ERROR);
1613 }
Tao Baoc679f932015-03-30 09:43:49 -07001614
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001615 Device::BuiltinAction after = shutdown_after ? Device::SHUTDOWN : Device::REBOOT;
Yabin Cui99281df2016-02-17 12:21:52 -08001616 if ((status != INSTALL_SUCCESS && status != INSTALL_SKIPPED && !sideload_auto_reboot) ||
1617 ui->IsTextVisible()) {
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001618 Device::BuiltinAction temp = prompt_and_wait(device, status);
Tao Baoc679f932015-03-30 09:43:49 -07001619 if (temp != Device::NO_ACTION) {
1620 after = temp;
1621 }
Doug Zongker8674a722010-09-15 11:08:23 -07001622 }
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001623
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001624 // Save logs and clean up before rebooting or shutting down.
Tianjie Xuc14d95d2016-03-24 11:50:34 -07001625 finish_recovery();
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001626
1627 switch (after) {
1628 case Device::SHUTDOWN:
1629 ui->Print("Shutting down...\n");
Elliott Hughescb220402016-09-23 15:30:55 -07001630 android::base::SetProperty(ANDROID_RB_PROPERTY, "shutdown,");
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001631 break;
1632
1633 case Device::REBOOT_BOOTLOADER:
1634 ui->Print("Rebooting to bootloader...\n");
Elliott Hughescb220402016-09-23 15:30:55 -07001635 android::base::SetProperty(ANDROID_RB_PROPERTY, "reboot,bootloader");
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001636 break;
1637
1638 default:
1639 ui->Print("Rebooting...\n");
Dmitri Plotnikov8706a982017-04-18 08:28:26 -07001640 reboot("reboot,");
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001641 break;
Doug Zongkerb1d12632014-03-18 10:32:12 -07001642 }
Tao Bao75238632015-05-27 14:46:17 -07001643 while (true) {
Tao Baoac9d94d2016-11-03 11:37:15 -07001644 pause();
Tao Bao75238632015-05-27 14:46:17 -07001645 }
1646 // Should be unreachable.
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001647 return EXIT_SUCCESS;
1648}