blob: 9152bb128b04896df82d1c2804a7d34c9aaf6c96 [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 },
Doug Zongker988500b2009-10-06 14:41:38 -070090 { NULL, 0, NULL, 0 },
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080091};
92
Tianjie Xu06e57ac2016-07-11 14:04:08 -070093// More bootreasons can be found in "system/core/bootstat/bootstat.cpp".
94static const std::vector<std::string> bootreason_blacklist {
95 "kernel_panic",
96 "Panic",
97};
98
Doug Zongker6d0d7ac2013-07-09 13:34:55 -070099static const char *CACHE_LOG_DIR = "/cache/recovery";
Doug Zongkerd4208f92010-09-20 12:16:13 -0700100static const char *COMMAND_FILE = "/cache/recovery/command";
Doug Zongkerd4208f92010-09-20 12:16:13 -0700101static const char *LOG_FILE = "/cache/recovery/log";
Doug Zongkerd0181b82011-10-19 10:51:12 -0700102static const char *LAST_INSTALL_FILE = "/cache/recovery/last_install";
Doug Zongker8b240cc2012-08-29 15:19:29 -0700103static const char *LOCALE_FILE = "/cache/recovery/last_locale";
Paul Lawrence661f8a62016-02-25 12:42:19 -0800104static const char *CONVERT_FBE_DIR = "/tmp/convert_fbe";
105static const char *CONVERT_FBE_FILE = "/tmp/convert_fbe/convert_fbe";
Michael Ward9d2629c2011-06-23 22:14:24 -0700106static const char *CACHE_ROOT = "/cache";
Paul Lawrenced0db3372015-11-05 13:38:40 -0800107static const char *DATA_ROOT = "/data";
Doug Zongkerd4208f92010-09-20 12:16:13 -0700108static const char *SDCARD_ROOT = "/sdcard";
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800109static const char *TEMPORARY_LOG_FILE = "/tmp/recovery.log";
Doug Zongkerd0181b82011-10-19 10:51:12 -0700110static const char *TEMPORARY_INSTALL_FILE = "/tmp/last_install";
Tao Baof0124322015-04-11 02:04:11 +0000111static const char *LAST_KMSG_FILE = "/cache/recovery/last_kmsg";
Tao Baobef39712015-05-04 18:50:27 -0700112static const char *LAST_LOG_FILE = "/cache/recovery/last_log";
Tianjie Xuc37c5c32016-06-23 16:52:17 -0700113// We will try to apply the update package 5 times at most in case of an I/O error.
114static const int EIO_RETRY_COUNT = 4;
Yabin Cui99281df2016-02-17 12:21:52 -0800115static const int BATTERY_READ_TIMEOUT_IN_SEC = 10;
116// GmsCore enters recovery mode to install package when having enough battery
117// percentage. Normally, the threshold is 40% without charger and 20% with charger.
118// So we should check battery with a slightly lower limitation.
119static const int BATTERY_OK_PERCENTAGE = 20;
120static const int BATTERY_WITH_CHARGER_OK_PERCENTAGE = 15;
Tao Baoac9d94d2016-11-03 11:37:15 -0700121static constexpr const char* RECOVERY_WIPE = "/etc/recovery.wipe";
122static constexpr const char* DEFAULT_LOCALE = "en_US";
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700123
Tao Baoac9d94d2016-11-03 11:37:15 -0700124static std::string locale;
Dan Albert8584fcf2016-10-27 03:08:08 +0000125static bool has_cache = false;
Tao Baoc0319b62016-10-13 15:17:04 -0700126
Tao Baoac9d94d2016-11-03 11:37:15 -0700127RecoveryUI* ui = nullptr;
128bool modified_flash = false;
129const char* stage = nullptr;
130const char* reason = nullptr;
131struct selabel_handle* sehandle;
132
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800133/*
134 * The recovery tool communicates with the main system through /cache files.
135 * /cache/recovery/command - INPUT - command line for tool, one arg per line
136 * /cache/recovery/log - OUTPUT - combined log file from recovery run(s)
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800137 *
138 * The arguments which may be supplied in the recovery.command file:
Doug Zongkerd4208f92010-09-20 12:16:13 -0700139 * --update_package=path - verify install an OTA package file
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800140 * --wipe_data - erase user data (and cache), then reboot
141 * --wipe_cache - wipe cache (but not user data), then reboot
Oscar Montemayor05231562009-11-30 08:40:57 -0800142 * --set_encrypted_filesystem=on|off - enables / diasables encrypted fs
Doug Zongkere5d5ac72012-04-12 11:01:22 -0700143 * --just_exit - do nothing; exit and reboot
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800144 *
145 * After completing, we remove /cache/recovery/command and reboot.
146 * Arguments may also be supplied in the bootloader control block (BCB).
147 * These important scenarios must be safely restartable at any point:
148 *
149 * FACTORY RESET
150 * 1. user selects "factory reset"
151 * 2. main system writes "--wipe_data" to /cache/recovery/command
152 * 3. main system reboots into recovery
153 * 4. get_args() writes BCB with "boot-recovery" and "--wipe_data"
154 * -- after this, rebooting will restart the erase --
Doug Zongkerd4208f92010-09-20 12:16:13 -0700155 * 5. erase_volume() reformats /data
156 * 6. erase_volume() reformats /cache
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800157 * 7. finish_recovery() erases BCB
158 * -- after this, rebooting will restart the main system --
159 * 8. main() calls reboot() to boot main system
160 *
161 * OTA INSTALL
162 * 1. main system downloads OTA package to /cache/some-filename.zip
Doug Zongker9b125b02010-09-22 12:01:37 -0700163 * 2. main system writes "--update_package=/cache/some-filename.zip"
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800164 * 3. main system reboots into recovery
165 * 4. get_args() writes BCB with "boot-recovery" and "--update_package=..."
166 * -- after this, rebooting will attempt to reinstall the update --
167 * 5. install_package() attempts to install the update
168 * NOTE: the package install must itself be restartable from any point
169 * 6. finish_recovery() erases BCB
170 * -- after this, rebooting will (try to) restart the main system --
171 * 7. ** if install failed **
172 * 7a. prompt_and_wait() shows an error icon and waits for the user
173 * 7b; the user reboots (pulling the battery, etc) into the main system
174 * 8. main() calls maybe_install_firmware_update()
175 * ** if the update contained radio/hboot firmware **:
176 * 8a. m_i_f_u() writes BCB with "boot-recovery" and "--wipe_cache"
177 * -- after this, rebooting will reformat cache & restart main system --
178 * 8b. m_i_f_u() writes firmware image into raw cache partition
179 * 8c. m_i_f_u() writes BCB with "update-radio/hboot" and "--wipe_cache"
180 * -- after this, rebooting will attempt to reinstall firmware --
181 * 8d. bootloader tries to flash firmware
182 * 8e. bootloader writes BCB with "boot-recovery" (keeping "--wipe_cache")
183 * -- after this, rebooting will reformat cache & restart main system --
Doug Zongkerd4208f92010-09-20 12:16:13 -0700184 * 8f. erase_volume() reformats /cache
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800185 * 8g. finish_recovery() erases BCB
186 * -- after this, rebooting will (try to) restart the main system --
187 * 9. main() calls reboot() to boot main system
188 */
189
Doug Zongkerd4208f92010-09-20 12:16:13 -0700190// open a given path, mounting partitions as necessary
Tao Bao04ca4262015-09-10 15:32:24 -0700191FILE* fopen_path(const char *path, const char *mode) {
Doug Zongkerd4208f92010-09-20 12:16:13 -0700192 if (ensure_path_mounted(path) != 0) {
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -0700193 LOG(ERROR) << "Can't mount " << path;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800194 return NULL;
195 }
196
197 // When writing, try to create the containing directory, if necessary.
198 // Use generous permissions, the system (init.rc) will reset them.
Stephen Smalley779701d2012-02-09 14:13:23 -0500199 if (strchr("wa", mode[0])) dirCreateHierarchy(path, 0777, NULL, 1, sehandle);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800200
201 FILE *fp = fopen(path, mode);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800202 return fp;
203}
204
Tao Bao04ca4262015-09-10 15:32:24 -0700205// close a file, log an error if the error indicator is set
206static void check_and_fclose(FILE *fp, const char *name) {
207 fflush(fp);
Tao Baoac9d94d2016-11-03 11:37:15 -0700208 if (fsync(fileno(fp)) == -1) {
209 PLOG(ERROR) << "Failed to fsync " << name;
210 }
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -0700211 if (ferror(fp)) {
212 PLOG(ERROR) << "Error in " << name;
213 }
Tao Bao04ca4262015-09-10 15:32:24 -0700214 fclose(fp);
215}
216
Elliott Hughesf14af802015-02-10 14:46:14 -0800217bool is_ro_debuggable() {
Elliott Hughescb220402016-09-23 15:30:55 -0700218 return android::base::GetBoolProperty("ro.debuggable", false);
Elliott Hughesf14af802015-02-10 14:46:14 -0800219}
220
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700221static void redirect_stdio(const char* filename) {
Tao Bao04ca4262015-09-10 15:32:24 -0700222 int pipefd[2];
223 if (pipe(pipefd) == -1) {
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -0700224 PLOG(ERROR) << "pipe failed";
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700225
Tao Bao04ca4262015-09-10 15:32:24 -0700226 // Fall back to traditional logging mode without timestamps.
227 // If these fail, there's not really anywhere to complain...
228 freopen(filename, "a", stdout); setbuf(stdout, NULL);
229 freopen(filename, "a", stderr); setbuf(stderr, NULL);
230
231 return;
232 }
233
234 pid_t pid = fork();
235 if (pid == -1) {
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -0700236 PLOG(ERROR) << "fork failed";
Tao Bao04ca4262015-09-10 15:32:24 -0700237
238 // Fall back to traditional logging mode without timestamps.
239 // If these fail, there's not really anywhere to complain...
240 freopen(filename, "a", stdout); setbuf(stdout, NULL);
241 freopen(filename, "a", stderr); setbuf(stderr, NULL);
242
243 return;
244 }
245
246 if (pid == 0) {
247 /// Close the unused write end.
248 close(pipefd[1]);
249
250 auto start = std::chrono::steady_clock::now();
251
252 // Child logger to actually write to the log file.
253 FILE* log_fp = fopen(filename, "a");
254 if (log_fp == nullptr) {
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -0700255 PLOG(ERROR) << "fopen \"" << filename << "\" failed";
Tao Bao04ca4262015-09-10 15:32:24 -0700256 close(pipefd[0]);
257 _exit(1);
258 }
259
260 FILE* pipe_fp = fdopen(pipefd[0], "r");
261 if (pipe_fp == nullptr) {
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -0700262 PLOG(ERROR) << "fdopen failed";
Tao Bao04ca4262015-09-10 15:32:24 -0700263 check_and_fclose(log_fp, filename);
264 close(pipefd[0]);
265 _exit(1);
266 }
267
268 char* line = nullptr;
269 size_t len = 0;
270 while (getline(&line, &len, pipe_fp) != -1) {
271 auto now = std::chrono::steady_clock::now();
272 double duration = std::chrono::duration_cast<std::chrono::duration<double>>(
273 now - start).count();
274 if (line[0] == '\n') {
275 fprintf(log_fp, "[%12.6lf]\n", duration);
276 } else {
277 fprintf(log_fp, "[%12.6lf] %s", duration, line);
278 }
279 fflush(log_fp);
280 }
281
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -0700282 PLOG(ERROR) << "getline failed";
Tao Bao04ca4262015-09-10 15:32:24 -0700283
284 free(line);
285 check_and_fclose(log_fp, filename);
286 close(pipefd[0]);
287 _exit(1);
288 } else {
289 // Redirect stdout/stderr to the logger process.
290 // Close the unused read end.
291 close(pipefd[0]);
292
293 setbuf(stdout, nullptr);
294 setbuf(stderr, nullptr);
295
296 if (dup2(pipefd[1], STDOUT_FILENO) == -1) {
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -0700297 PLOG(ERROR) << "dup2 stdout failed";
Tao Bao04ca4262015-09-10 15:32:24 -0700298 }
299 if (dup2(pipefd[1], STDERR_FILENO) == -1) {
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -0700300 PLOG(ERROR) << "dup2 stderr failed";
Tao Bao04ca4262015-09-10 15:32:24 -0700301 }
302
303 close(pipefd[1]);
304 }
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800305}
306
307// command line args come from, in decreasing precedence:
308// - the actual command line
309// - the bootloader control block (one per line, after "recovery")
310// - the contents of COMMAND_FILE (one per line)
Tao Baof0ed1592016-12-02 11:32:19 -0800311static std::vector<std::string> get_args(const int argc, char** const argv) {
312 CHECK_GT(argc, 0);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800313
Tao Baof0ed1592016-12-02 11:32:19 -0800314 bootloader_message boot = {};
315 std::string err;
316 if (!read_bootloader_message(&boot, &err)) {
317 LOG(ERROR) << err;
318 // If fails, leave a zeroed bootloader_message.
319 boot = {};
320 }
321 stage = strndup(boot.stage, sizeof(boot.stage));
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800322
Tao Baof0ed1592016-12-02 11:32:19 -0800323 if (boot.command[0] != 0) {
324 std::string boot_command = std::string(boot.command, sizeof(boot.command));
325 LOG(INFO) << "Boot command: " << boot_command;
326 }
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800327
Tao Baof0ed1592016-12-02 11:32:19 -0800328 if (boot.status[0] != 0) {
329 std::string boot_status = std::string(boot.status, sizeof(boot.status));
330 LOG(INFO) << "Boot status: " << boot_status;
331 }
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800332
Tao Baof0ed1592016-12-02 11:32:19 -0800333 std::vector<std::string> args(argv, argv + argc);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800334
Tao Baof0ed1592016-12-02 11:32:19 -0800335 // --- if arguments weren't supplied, look in the bootloader control block
336 if (argc == 1) {
337 boot.recovery[sizeof(boot.recovery) - 1] = '\0'; // Ensure termination
338 std::string boot_recovery(boot.recovery);
339 std::vector<std::string> tokens = android::base::Split(boot_recovery, "\n");
340 if (!tokens.empty() && tokens[0] == "recovery") {
341 for (auto it = tokens.begin() + 1; it != tokens.end(); it++) {
342 // Skip empty and '\0'-filled tokens.
343 if (!it->empty() && (*it)[0] != '\0') args.push_back(std::move(*it));
344 }
345 LOG(INFO) << "Got " << args.size() << " arguments from boot message";
346 } else if (boot.recovery[0] != 0) {
347 LOG(ERROR) << "Bad boot message: \"" << boot_recovery << "\"";
348 }
349 }
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800350
Tao Baof0ed1592016-12-02 11:32:19 -0800351 // --- if that doesn't work, try the command file (if we have /cache).
352 if (argc == 1 && has_cache) {
353 std::string content;
Tao Bao7d34fa12016-12-08 18:10:48 -0800354 if (ensure_path_mounted(COMMAND_FILE) == 0 &&
355 android::base::ReadFileToString(COMMAND_FILE, &content)) {
Tao Baof0ed1592016-12-02 11:32:19 -0800356 std::vector<std::string> tokens = android::base::Split(content, "\n");
Tao Bao7d34fa12016-12-08 18:10:48 -0800357 // All the arguments in COMMAND_FILE are needed (unlike the BCB message,
358 // COMMAND_FILE doesn't use filename as the first argument).
359 for (auto it = tokens.begin(); it != tokens.end(); it++) {
Tao Baof0ed1592016-12-02 11:32:19 -0800360 // Skip empty and '\0'-filled tokens.
361 if (!it->empty() && (*it)[0] != '\0') args.push_back(std::move(*it));
362 }
363 LOG(INFO) << "Got " << args.size() << " arguments from " << COMMAND_FILE;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800364 }
Tao Baof0ed1592016-12-02 11:32:19 -0800365 }
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800366
Tao Baof0ed1592016-12-02 11:32:19 -0800367 // Write the arguments (excluding the filename in args[0]) back into the
368 // bootloader control block. So the device will always boot into recovery to
369 // finish the pending work, until finish_recovery() is called.
370 std::vector<std::string> options(args.cbegin() + 1, args.cend());
371 if (!write_bootloader_message(options, &err)) {
372 LOG(ERROR) << err;
373 }
374
375 return args;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800376}
377
Doug Zongker34c98df2009-08-18 12:05:45 -0700378static void
Oscar Montemayor05231562009-11-30 08:40:57 -0800379set_sdcard_update_bootloader_message() {
Tianjie Xubd56f152016-09-28 16:32:10 -0700380 std::vector<std::string> options;
Yabin Cui8b309f62016-06-24 18:22:02 -0700381 std::string err;
Tianjie Xubd56f152016-09-28 16:32:10 -0700382 if (!write_bootloader_message(options, &err)) {
Yabin Cui8b309f62016-06-24 18:22:02 -0700383 LOG(ERROR) << 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);
472 chown(LOG_FILE, 1000, 1000); // system user
Tao Baof0124322015-04-11 02:04:11 +0000473 chmod(LAST_KMSG_FILE, 0600);
474 chown(LAST_KMSG_FILE, 1000, 1000); // system user
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)) {
Yabin Cui8b309f62016-06-24 18:22:02 -0700502 LOG(ERROR) << err;
503 }
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
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700516typedef struct _saved_log_file {
517 char* name;
518 struct stat st;
519 unsigned char* data;
520 struct _saved_log_file* next;
521} saved_log_file;
522
Elliott Hughes945548e2015-06-05 17:59:56 -0700523static bool erase_volume(const char* volume) {
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700524 bool is_cache = (strcmp(volume, CACHE_ROOT) == 0);
Paul Lawrenced0db3372015-11-05 13:38:40 -0800525 bool is_data = (strcmp(volume, DATA_ROOT) == 0);
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700526
Doug Zongker02ec6b82012-08-22 17:26:40 -0700527 ui->SetBackground(RecoveryUI::ERASING);
Doug Zongker211aebc2011-10-28 15:13:10 -0700528 ui->SetProgressType(RecoveryUI::INDETERMINATE);
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700529
530 saved_log_file* head = NULL;
531
532 if (is_cache) {
Tao Baobef39712015-05-04 18:50:27 -0700533 // If we're reformatting /cache, we load any past logs
534 // (i.e. "/cache/recovery/last_*") and the current log
535 // ("/cache/recovery/log") into memory, so we can restore them after
536 // the reformat.
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700537
538 ensure_path_mounted(volume);
539
540 DIR* d;
541 struct dirent* de;
542 d = opendir(CACHE_LOG_DIR);
543 if (d) {
544 char path[PATH_MAX];
545 strcpy(path, CACHE_LOG_DIR);
546 strcat(path, "/");
547 int path_len = strlen(path);
548 while ((de = readdir(d)) != NULL) {
Tao Baobef39712015-05-04 18:50:27 -0700549 if (strncmp(de->d_name, "last_", 5) == 0 || strcmp(de->d_name, "log") == 0) {
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700550 saved_log_file* p = (saved_log_file*) malloc(sizeof(saved_log_file));
551 strcpy(path+path_len, de->d_name);
552 p->name = strdup(path);
553 if (stat(path, &(p->st)) == 0) {
554 // truncate files to 512kb
555 if (p->st.st_size > (1 << 19)) {
556 p->st.st_size = 1 << 19;
557 }
558 p->data = (unsigned char*) malloc(p->st.st_size);
559 FILE* f = fopen(path, "rb");
560 fread(p->data, 1, p->st.st_size, f);
561 fclose(f);
562 p->next = head;
563 head = p;
564 } else {
565 free(p);
566 }
567 }
568 }
569 closedir(d);
570 } else {
571 if (errno != ENOENT) {
572 printf("opendir failed: %s\n", strerror(errno));
573 }
574 }
575 }
576
Doug Zongker211aebc2011-10-28 15:13:10 -0700577 ui->Print("Formatting %s...\n", volume);
Doug Zongker2c3539e2010-09-29 13:21:30 -0700578
Doug Zongkerd0181b82011-10-19 10:51:12 -0700579 ensure_path_unmounted(volume);
Paul Lawrenced0db3372015-11-05 13:38:40 -0800580
581 int result;
582
583 if (is_data && reason && strcmp(reason, "convert_fbe") == 0) {
584 // Create convert_fbe breadcrumb file to signal to init
585 // to convert to file based encryption, not full disk encryption
Paul Lawrence661f8a62016-02-25 12:42:19 -0800586 if (mkdir(CONVERT_FBE_DIR, 0700) != 0) {
587 ui->Print("Failed to make convert_fbe dir %s\n", strerror(errno));
588 return true;
589 }
Paul Lawrenced0db3372015-11-05 13:38:40 -0800590 FILE* f = fopen(CONVERT_FBE_FILE, "wb");
591 if (!f) {
Paul Lawrence661f8a62016-02-25 12:42:19 -0800592 ui->Print("Failed to convert to file encryption %s\n", strerror(errno));
Paul Lawrenced0db3372015-11-05 13:38:40 -0800593 return true;
594 }
595 fclose(f);
596 result = format_volume(volume, CONVERT_FBE_DIR);
597 remove(CONVERT_FBE_FILE);
598 rmdir(CONVERT_FBE_DIR);
599 } else {
600 result = format_volume(volume);
601 }
Doug Zongkerd0181b82011-10-19 10:51:12 -0700602
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700603 if (is_cache) {
604 while (head) {
605 FILE* f = fopen_path(head->name, "wb");
606 if (f) {
607 fwrite(head->data, 1, head->st.st_size, f);
608 fclose(f);
609 chmod(head->name, head->st.st_mode);
610 chown(head->name, head->st.st_uid, head->st.st_gid);
611 }
612 free(head->name);
613 free(head->data);
614 saved_log_file* temp = head->next;
615 free(head);
616 head = temp;
617 }
618
Tao Baof0124322015-04-11 02:04:11 +0000619 // Any part of the log we'd copied to cache is now gone.
620 // Reset the pointer so we copy from the beginning of the temp
621 // log.
622 tmplog_offset = 0;
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700623 copy_logs();
Doug Zongker2c3539e2010-09-29 13:21:30 -0700624 }
625
Elliott Hughes945548e2015-06-05 17:59:56 -0700626 return (result == 0);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800627}
628
Doug Zongkerf93d8162009-09-22 15:16:02 -0700629static int
Doug Zongker28ce47c2011-10-28 10:33:05 -0700630get_menu_selection(const char* const * headers, const char* const * items,
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700631 int menu_only, int initial_selection, Device* device) {
Doug Zongkerf93d8162009-09-22 15:16:02 -0700632 // throw away keys pressed previously, so user doesn't
633 // accidentally trigger menu items.
Doug Zongker211aebc2011-10-28 15:13:10 -0700634 ui->FlushKeys();
Doug Zongkerf93d8162009-09-22 15:16:02 -0700635
Doug Zongker211aebc2011-10-28 15:13:10 -0700636 ui->StartMenu(headers, items, initial_selection);
Doug Zongker8674a722010-09-15 11:08:23 -0700637 int selected = initial_selection;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800638 int chosen_item = -1;
639
Doug Zongkerf93d8162009-09-22 15:16:02 -0700640 while (chosen_item < 0) {
Doug Zongker211aebc2011-10-28 15:13:10 -0700641 int key = ui->WaitKey();
642 int visible = ui->IsTextVisible();
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800643
Doug Zongker5cae4452011-01-25 13:15:30 -0800644 if (key == -1) { // ui_wait_key() timed out
Doug Zongker211aebc2011-10-28 15:13:10 -0700645 if (ui->WasTextEverVisible()) {
Doug Zongker5cae4452011-01-25 13:15:30 -0800646 continue;
647 } else {
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -0700648 LOG(INFO) << "timed out waiting for key input; rebooting.";
Doug Zongker211aebc2011-10-28 15:13:10 -0700649 ui->EndMenu();
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700650 return 0; // XXX fixme
Doug Zongker5cae4452011-01-25 13:15:30 -0800651 }
652 }
653
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700654 int action = device->HandleMenuKey(key, visible);
Doug Zongkerddd6a282009-06-09 12:22:33 -0700655
656 if (action < 0) {
657 switch (action) {
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700658 case Device::kHighlightUp:
Elliott Hughes642aaa72015-04-10 12:47:46 -0700659 selected = ui->SelectMenu(--selected);
Doug Zongkerddd6a282009-06-09 12:22:33 -0700660 break;
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700661 case Device::kHighlightDown:
Elliott Hughes642aaa72015-04-10 12:47:46 -0700662 selected = ui->SelectMenu(++selected);
Doug Zongkerddd6a282009-06-09 12:22:33 -0700663 break;
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700664 case Device::kInvokeItem:
Doug Zongkerddd6a282009-06-09 12:22:33 -0700665 chosen_item = selected;
666 break;
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700667 case Device::kNoAction:
Doug Zongkerddd6a282009-06-09 12:22:33 -0700668 break;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800669 }
Doug Zongkerf93d8162009-09-22 15:16:02 -0700670 } else if (!menu_only) {
Doug Zongkerddd6a282009-06-09 12:22:33 -0700671 chosen_item = action;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800672 }
Doug Zongkerf93d8162009-09-22 15:16:02 -0700673 }
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800674
Doug Zongker211aebc2011-10-28 15:13:10 -0700675 ui->EndMenu();
Doug Zongkerf93d8162009-09-22 15:16:02 -0700676 return chosen_item;
677}
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800678
Doug Zongker8674a722010-09-15 11:08:23 -0700679static int compare_string(const void* a, const void* b) {
680 return strcmp(*(const char**)a, *(const char**)b);
681}
682
Doug Zongker93950222014-07-08 14:10:23 -0700683// Returns a malloc'd path, or NULL.
Elliott Hughes30694c92015-03-25 15:16:51 -0700684static char* browse_directory(const char* path, Device* device) {
Michael Ward9d2629c2011-06-23 22:14:24 -0700685 ensure_path_mounted(path);
Doug Zongkerc18eeb82010-09-21 16:49:26 -0700686
Elliott Hughes30694c92015-03-25 15:16:51 -0700687 DIR* d = opendir(path);
Doug Zongker8674a722010-09-15 11:08:23 -0700688 if (d == NULL) {
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -0700689 PLOG(ERROR) << "error opening " << path;
Doug Zongker93950222014-07-08 14:10:23 -0700690 return NULL;
Doug Zongker8674a722010-09-15 11:08:23 -0700691 }
692
Doug Zongker8674a722010-09-15 11:08:23 -0700693 int d_size = 0;
694 int d_alloc = 10;
Doug Zongker28ce47c2011-10-28 10:33:05 -0700695 char** dirs = (char**)malloc(d_alloc * sizeof(char*));
Doug Zongker8674a722010-09-15 11:08:23 -0700696 int z_size = 1;
697 int z_alloc = 10;
Doug Zongker28ce47c2011-10-28 10:33:05 -0700698 char** zips = (char**)malloc(z_alloc * sizeof(char*));
Doug Zongker8674a722010-09-15 11:08:23 -0700699 zips[0] = strdup("../");
700
Elliott Hughes30694c92015-03-25 15:16:51 -0700701 struct dirent* de;
Doug Zongker8674a722010-09-15 11:08:23 -0700702 while ((de = readdir(d)) != NULL) {
703 int name_len = strlen(de->d_name);
704
705 if (de->d_type == DT_DIR) {
706 // skip "." and ".." entries
707 if (name_len == 1 && de->d_name[0] == '.') continue;
708 if (name_len == 2 && de->d_name[0] == '.' &&
709 de->d_name[1] == '.') continue;
710
711 if (d_size >= d_alloc) {
712 d_alloc *= 2;
Doug Zongker28ce47c2011-10-28 10:33:05 -0700713 dirs = (char**)realloc(dirs, d_alloc * sizeof(char*));
Doug Zongker8674a722010-09-15 11:08:23 -0700714 }
Doug Zongker28ce47c2011-10-28 10:33:05 -0700715 dirs[d_size] = (char*)malloc(name_len + 2);
Doug Zongker8674a722010-09-15 11:08:23 -0700716 strcpy(dirs[d_size], de->d_name);
717 dirs[d_size][name_len] = '/';
718 dirs[d_size][name_len+1] = '\0';
719 ++d_size;
720 } else if (de->d_type == DT_REG &&
721 name_len >= 4 &&
722 strncasecmp(de->d_name + (name_len-4), ".zip", 4) == 0) {
723 if (z_size >= z_alloc) {
724 z_alloc *= 2;
Doug Zongker28ce47c2011-10-28 10:33:05 -0700725 zips = (char**)realloc(zips, z_alloc * sizeof(char*));
Doug Zongker8674a722010-09-15 11:08:23 -0700726 }
727 zips[z_size++] = strdup(de->d_name);
728 }
729 }
730 closedir(d);
731
732 qsort(dirs, d_size, sizeof(char*), compare_string);
733 qsort(zips, z_size, sizeof(char*), compare_string);
734
735 // append dirs to the zips list
736 if (d_size + z_size + 1 > z_alloc) {
737 z_alloc = d_size + z_size + 1;
Doug Zongker28ce47c2011-10-28 10:33:05 -0700738 zips = (char**)realloc(zips, z_alloc * sizeof(char*));
Doug Zongker8674a722010-09-15 11:08:23 -0700739 }
740 memcpy(zips + z_size, dirs, d_size * sizeof(char*));
741 free(dirs);
742 z_size += d_size;
743 zips[z_size] = NULL;
744
Elliott Hughes8fd86d72015-04-13 14:36:02 -0700745 const char* headers[] = { "Choose a package to install:", path, NULL };
Elliott Hughes30694c92015-03-25 15:16:51 -0700746
Doug Zongker93950222014-07-08 14:10:23 -0700747 char* result;
Doug Zongker8674a722010-09-15 11:08:23 -0700748 int chosen_item = 0;
Doug Zongker93950222014-07-08 14:10:23 -0700749 while (true) {
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700750 chosen_item = get_menu_selection(headers, zips, 1, chosen_item, device);
Doug Zongker8674a722010-09-15 11:08:23 -0700751
752 char* item = zips[chosen_item];
753 int item_len = strlen(item);
754 if (chosen_item == 0) { // item 0 is always "../"
Michael Ward9d2629c2011-06-23 22:14:24 -0700755 // go up but continue browsing (if the caller is update_directory)
Doug Zongker93950222014-07-08 14:10:23 -0700756 result = NULL;
Doug Zongker8674a722010-09-15 11:08:23 -0700757 break;
758 }
Doug Zongker93950222014-07-08 14:10:23 -0700759
760 char new_path[PATH_MAX];
761 strlcpy(new_path, path, PATH_MAX);
762 strlcat(new_path, "/", PATH_MAX);
763 strlcat(new_path, item, PATH_MAX);
764
765 if (item[item_len-1] == '/') {
766 // recurse down into a subdirectory
767 new_path[strlen(new_path)-1] = '\0'; // truncate the trailing '/'
768 result = browse_directory(new_path, device);
769 if (result) break;
770 } else {
771 // selected a zip file: return the malloc'd path to the caller.
772 result = strdup(new_path);
773 break;
774 }
775 }
Doug Zongker8674a722010-09-15 11:08:23 -0700776
Elliott Hughes30694c92015-03-25 15:16:51 -0700777 for (int i = 0; i < z_size; ++i) free(zips[i]);
Doug Zongker8674a722010-09-15 11:08:23 -0700778 free(zips);
Doug Zongker8674a722010-09-15 11:08:23 -0700779
780 return result;
781}
782
Elliott Hughes30694c92015-03-25 15:16:51 -0700783static bool yes_no(Device* device, const char* question1, const char* question2) {
Elliott Hughes8fd86d72015-04-13 14:36:02 -0700784 const char* headers[] = { question1, question2, NULL };
Elliott Hughes30694c92015-03-25 15:16:51 -0700785 const char* items[] = { " No", " Yes", NULL };
Doug Zongkerddd6a282009-06-09 12:22:33 -0700786
Elliott Hughes30694c92015-03-25 15:16:51 -0700787 int chosen_item = get_menu_selection(headers, items, 1, 0, device);
788 return (chosen_item == 1);
789}
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800790
Tao Baoe39a9bc2015-03-31 12:19:05 -0700791// Return true on success.
792static bool wipe_data(int should_confirm, Device* device) {
793 if (should_confirm && !yes_no(device, "Wipe all user data?", " THIS CAN NOT BE UNDONE!")) {
794 return false;
Doug Zongkerf93d8162009-09-22 15:16:02 -0700795 }
Doug Zongker1066d2c2009-04-01 13:57:40 -0700796
Tao Bao682c34b2015-04-07 17:16:35 -0700797 modified_flash = true;
798
Doug Zongker211aebc2011-10-28 15:13:10 -0700799 ui->Print("\n-- Wiping data...\n");
Elliott Hughes945548e2015-06-05 17:59:56 -0700800 bool success =
801 device->PreWipeData() &&
802 erase_volume("/data") &&
Tao Bao26112e52016-02-25 12:29:40 -0800803 (has_cache ? erase_volume("/cache") : true) &&
Elliott Hughes945548e2015-06-05 17:59:56 -0700804 device->PostWipeData();
805 ui->Print("Data wipe %s.\n", success ? "complete" : "failed");
806 return success;
Doug Zongkerf93d8162009-09-22 15:16:02 -0700807}
808
Tao Baoe39a9bc2015-03-31 12:19:05 -0700809// Return true on success.
810static bool wipe_cache(bool should_confirm, Device* device) {
Tao Bao26112e52016-02-25 12:29:40 -0800811 if (!has_cache) {
812 ui->Print("No /cache partition found.\n");
813 return false;
814 }
815
Elliott Hughes30694c92015-03-25 15:16:51 -0700816 if (should_confirm && !yes_no(device, "Wipe cache?", " THIS CAN NOT BE UNDONE!")) {
Tao Baoe39a9bc2015-03-31 12:19:05 -0700817 return false;
Elliott Hughes30694c92015-03-25 15:16:51 -0700818 }
819
Tao Bao682c34b2015-04-07 17:16:35 -0700820 modified_flash = true;
821
Elliott Hughes30694c92015-03-25 15:16:51 -0700822 ui->Print("\n-- Wiping cache...\n");
Elliott Hughes945548e2015-06-05 17:59:56 -0700823 bool success = erase_volume("/cache");
824 ui->Print("Cache wipe %s.\n", success ? "complete" : "failed");
825 return success;
Elliott Hughes30694c92015-03-25 15:16:51 -0700826}
827
Tao Bao862a4c12016-06-02 11:16:50 -0700828// Secure-wipe a given partition. It uses BLKSECDISCARD, if supported.
829// Otherwise, it goes with BLKDISCARD (if device supports BLKDISCARDZEROES) or
830// BLKZEROOUT.
831static bool secure_wipe_partition(const std::string& partition) {
832 android::base::unique_fd fd(TEMP_FAILURE_RETRY(open(partition.c_str(), O_WRONLY)));
833 if (fd == -1) {
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -0700834 PLOG(ERROR) << "failed to open \"" << partition << "\"";
Tao Bao862a4c12016-06-02 11:16:50 -0700835 return false;
836 }
837
838 uint64_t range[2] = {0, 0};
839 if (ioctl(fd, BLKGETSIZE64, &range[1]) == -1 || range[1] == 0) {
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -0700840 PLOG(ERROR) << "failed to get partition size";
Tao Bao862a4c12016-06-02 11:16:50 -0700841 return false;
842 }
843 printf("Secure-wiping \"%s\" from %" PRIu64 " to %" PRIu64 ".\n",
844 partition.c_str(), range[0], range[1]);
845
846 printf("Trying BLKSECDISCARD...\t");
847 if (ioctl(fd, BLKSECDISCARD, &range) == -1) {
848 printf("failed: %s\n", strerror(errno));
849
850 // Use BLKDISCARD if it zeroes out blocks, otherwise use BLKZEROOUT.
851 unsigned int zeroes;
852 if (ioctl(fd, BLKDISCARDZEROES, &zeroes) == 0 && zeroes != 0) {
853 printf("Trying BLKDISCARD...\t");
854 if (ioctl(fd, BLKDISCARD, &range) == -1) {
855 printf("failed: %s\n", strerror(errno));
856 return false;
857 }
858 } else {
859 printf("Trying BLKZEROOUT...\t");
860 if (ioctl(fd, BLKZEROOUT, &range) == -1) {
861 printf("failed: %s\n", strerror(errno));
862 return false;
863 }
864 }
865 }
866
867 printf("done\n");
868 return true;
869}
870
Yabin Cuifd99a312016-06-09 14:09:39 -0700871// Check if the wipe package matches expectation:
872// 1. verify the package.
873// 2. check metadata (ota-type, pre-device and serial number if having one).
874static bool check_wipe_package(size_t wipe_package_size) {
875 if (wipe_package_size == 0) {
876 LOG(ERROR) << "wipe_package_size is zero";
877 return false;
878 }
879 std::string wipe_package;
880 std::string err_str;
881 if (!read_wipe_package(&wipe_package, wipe_package_size, &err_str)) {
882 PLOG(ERROR) << "Failed to read wipe package";
883 return false;
884 }
885 if (!verify_package(reinterpret_cast<const unsigned char*>(wipe_package.data()),
886 wipe_package.size())) {
887 LOG(ERROR) << "Failed to verify package";
888 return false;
889 }
890
891 // Extract metadata
892 ZipArchiveHandle zip;
893 int err = OpenArchiveFromMemory(reinterpret_cast<void*>(&wipe_package[0]),
894 wipe_package.size(), "wipe_package", &zip);
895 if (err != 0) {
896 LOG(ERROR) << "Can't open wipe package : " << ErrorCodeString(err);
897 return false;
898 }
899 std::string metadata;
900 if (!read_metadata_from_package(&zip, &metadata)) {
901 CloseArchive(zip);
902 return false;
903 }
904 CloseArchive(zip);
905
906 // Check metadata
907 std::vector<std::string> lines = android::base::Split(metadata, "\n");
908 bool ota_type_matched = false;
909 bool device_type_matched = false;
910 bool has_serial_number = false;
911 bool serial_number_matched = false;
912 for (const auto& line : lines) {
913 if (line == "ota-type=BRICK") {
914 ota_type_matched = true;
915 } else if (android::base::StartsWith(line, "pre-device=")) {
916 std::string device_type = line.substr(strlen("pre-device="));
917 char real_device_type[PROPERTY_VALUE_MAX];
918 property_get("ro.build.product", real_device_type, "");
919 device_type_matched = (device_type == real_device_type);
920 } else if (android::base::StartsWith(line, "serialno=")) {
921 std::string serial_no = line.substr(strlen("serialno="));
922 char real_serial_no[PROPERTY_VALUE_MAX];
923 property_get("ro.serialno", real_serial_no, "");
924 has_serial_number = true;
925 serial_number_matched = (serial_no == real_serial_no);
926 }
927 }
928 return ota_type_matched && device_type_matched && (!has_serial_number || serial_number_matched);
929}
930
Yabin Cui8b309f62016-06-24 18:22:02 -0700931// Wipe the current A/B device, with a secure wipe of all the partitions in
932// RECOVERY_WIPE.
Yabin Cuifd99a312016-06-09 14:09:39 -0700933static bool wipe_ab_device(size_t wipe_package_size) {
Tao Bao862a4c12016-06-02 11:16:50 -0700934 ui->SetBackground(RecoveryUI::ERASING);
935 ui->SetProgressType(RecoveryUI::INDETERMINATE);
936
Yabin Cuifd99a312016-06-09 14:09:39 -0700937 if (!check_wipe_package(wipe_package_size)) {
938 LOG(ERROR) << "Failed to verify wipe package";
939 return false;
940 }
Tao Bao862a4c12016-06-02 11:16:50 -0700941 std::string partition_list;
Yabin Cui8b309f62016-06-24 18:22:02 -0700942 if (!android::base::ReadFileToString(RECOVERY_WIPE, &partition_list)) {
943 LOG(ERROR) << "failed to read \"" << RECOVERY_WIPE << "\"";
Tao Bao862a4c12016-06-02 11:16:50 -0700944 return false;
945 }
946
947 std::vector<std::string> lines = android::base::Split(partition_list, "\n");
948 for (const std::string& line : lines) {
949 std::string partition = android::base::Trim(line);
950 // Ignore '#' comment or empty lines.
951 if (android::base::StartsWith(partition, "#") || partition.empty()) {
952 continue;
953 }
954
955 // Proceed anyway even if it fails to wipe some partition.
956 secure_wipe_partition(partition);
957 }
958 return true;
959}
960
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700961static void choose_recovery_file(Device* device) {
Elliott Hughesc0491632015-05-06 12:40:05 -0700962 // "Back" + KEEP_LOG_COUNT * 2 + terminating nullptr entry
963 char* entries[1 + KEEP_LOG_COUNT * 2 + 1];
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700964 memset(entries, 0, sizeof(entries));
965
Tao Baobef39712015-05-04 18:50:27 -0700966 unsigned int n = 0;
Patrick Tjincd055ee2014-12-09 11:26:40 -0800967
Tianjie Xua54f75e2016-08-17 12:02:46 -0700968 if (has_cache) {
969 // Add LAST_LOG_FILE + LAST_LOG_FILE.x
970 // Add LAST_KMSG_FILE + LAST_KMSG_FILE.x
971 for (int i = 0; i < KEEP_LOG_COUNT; i++) {
972 char* log_file;
973 int ret;
974 ret = (i == 0) ? asprintf(&log_file, "%s", LAST_LOG_FILE) :
975 asprintf(&log_file, "%s.%d", LAST_LOG_FILE, i);
976 if (ret == -1) {
977 // memory allocation failure - return early. Should never happen.
978 return;
979 }
980 if ((ensure_path_mounted(log_file) != 0) || (access(log_file, R_OK) == -1)) {
981 free(log_file);
982 } else {
983 entries[n++] = log_file;
984 }
Tao Baobef39712015-05-04 18:50:27 -0700985
Tianjie Xua54f75e2016-08-17 12:02:46 -0700986 char* kmsg_file;
987 ret = (i == 0) ? asprintf(&kmsg_file, "%s", LAST_KMSG_FILE) :
988 asprintf(&kmsg_file, "%s.%d", LAST_KMSG_FILE, i);
989 if (ret == -1) {
990 // memory allocation failure - return early. Should never happen.
991 return;
992 }
993 if ((ensure_path_mounted(kmsg_file) != 0) || (access(kmsg_file, R_OK) == -1)) {
994 free(kmsg_file);
995 } else {
996 entries[n++] = kmsg_file;
997 }
Tao Baobef39712015-05-04 18:50:27 -0700998 }
Tianjie Xua54f75e2016-08-17 12:02:46 -0700999 } else {
1000 // If cache partition is not found, view /tmp/recovery.log instead.
1001 ui->Print("No /cache partition found.\n");
1002 if (access(TEMPORARY_LOG_FILE, R_OK) == -1) {
1003 return;
1004 } else{
1005 entries[n++] = strdup(TEMPORARY_LOG_FILE);
Tao Baobef39712015-05-04 18:50:27 -07001006 }
Nick Kralevicha9ad0322014-10-22 18:38:48 -07001007 }
1008
Elliott Hughesc0491632015-05-06 12:40:05 -07001009 entries[n++] = strdup("Back");
1010
Tao Baobef39712015-05-04 18:50:27 -07001011 const char* headers[] = { "Select file to view", nullptr };
Nick Kralevicha9ad0322014-10-22 18:38:48 -07001012
Elliott Hughes8de52072015-04-08 20:06:50 -07001013 while (true) {
Elliott Hughes30694c92015-03-25 15:16:51 -07001014 int chosen_item = get_menu_selection(headers, entries, 1, 0, device);
Elliott Hughesc0491632015-05-06 12:40:05 -07001015 if (strcmp(entries[chosen_item], "Back") == 0) break;
Elliott Hughes8de52072015-04-08 20:06:50 -07001016
Elliott Hughes8de52072015-04-08 20:06:50 -07001017 ui->ShowFile(entries[chosen_item]);
Nick Kralevicha9ad0322014-10-22 18:38:48 -07001018 }
1019
Tao Baobef39712015-05-04 18:50:27 -07001020 for (size_t i = 0; i < (sizeof(entries) / sizeof(*entries)); i++) {
Nick Kralevicha9ad0322014-10-22 18:38:48 -07001021 free(entries[i]);
1022 }
1023}
1024
Elliott Hughes498cda62016-04-14 16:49:04 -07001025static void run_graphics_test(Device* device) {
1026 // Switch to graphics screen.
1027 ui->ShowText(false);
1028
1029 ui->SetProgressType(RecoveryUI::INDETERMINATE);
1030 ui->SetBackground(RecoveryUI::INSTALLING_UPDATE);
1031 sleep(1);
1032
1033 ui->SetBackground(RecoveryUI::ERROR);
1034 sleep(1);
1035
1036 ui->SetBackground(RecoveryUI::NO_COMMAND);
1037 sleep(1);
1038
1039 ui->SetBackground(RecoveryUI::ERASING);
1040 sleep(1);
1041
1042 ui->SetBackground(RecoveryUI::INSTALLING_UPDATE);
1043
1044 ui->SetProgressType(RecoveryUI::DETERMINATE);
1045 ui->ShowProgress(1.0, 10.0);
1046 float fraction = 0.0;
1047 for (size_t i = 0; i < 100; ++i) {
1048 fraction += .01;
1049 ui->SetProgress(fraction);
1050 usleep(100000);
1051 }
1052
1053 ui->ShowText(true);
1054}
1055
Tao Baocdcf28f2016-01-13 15:05:20 -08001056// How long (in seconds) we wait for the fuse-provided package file to
1057// appear, before timing out.
1058#define SDCARD_INSTALL_TIMEOUT 10
1059
Tao Bao145d8612015-03-25 15:51:15 -07001060static int apply_from_sdcard(Device* device, bool* wipe_cache) {
Tao Bao682c34b2015-04-07 17:16:35 -07001061 modified_flash = true;
1062
Christian Poetzsch4ec58a42015-02-19 10:42:39 +00001063 if (ensure_path_mounted(SDCARD_ROOT) != 0) {
1064 ui->Print("\n-- Couldn't mount %s.\n", SDCARD_ROOT);
1065 return INSTALL_ERROR;
1066 }
1067
1068 char* path = browse_directory(SDCARD_ROOT, device);
1069 if (path == NULL) {
Elliott Hughes018ed312015-04-08 16:51:36 -07001070 ui->Print("\n-- No package file selected.\n");
caozhiyuanb4effb92015-06-10 16:46:38 +08001071 ensure_path_unmounted(SDCARD_ROOT);
Christian Poetzsch4ec58a42015-02-19 10:42:39 +00001072 return INSTALL_ERROR;
1073 }
1074
1075 ui->Print("\n-- Install %s ...\n", path);
1076 set_sdcard_update_bootloader_message();
Christian Poetzsch4ec58a42015-02-19 10:42:39 +00001077
Tao Baocdcf28f2016-01-13 15:05:20 -08001078 // We used to use fuse in a thread as opposed to a process. Since accessing
1079 // through fuse involves going from kernel to userspace to kernel, it leads
1080 // to deadlock when a page fault occurs. (Bug: 26313124)
1081 pid_t child;
1082 if ((child = fork()) == 0) {
1083 bool status = start_sdcard_fuse(path);
1084
1085 _exit(status ? EXIT_SUCCESS : EXIT_FAILURE);
1086 }
1087
1088 // FUSE_SIDELOAD_HOST_PATHNAME will start to exist once the fuse in child
1089 // process is ready.
1090 int result = INSTALL_ERROR;
1091 int status;
1092 bool waited = false;
1093 for (int i = 0; i < SDCARD_INSTALL_TIMEOUT; ++i) {
1094 if (waitpid(child, &status, WNOHANG) == -1) {
1095 result = INSTALL_ERROR;
1096 waited = true;
1097 break;
1098 }
1099
1100 struct stat sb;
1101 if (stat(FUSE_SIDELOAD_HOST_PATHNAME, &sb) == -1) {
1102 if (errno == ENOENT && i < SDCARD_INSTALL_TIMEOUT-1) {
1103 sleep(1);
1104 continue;
1105 } else {
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -07001106 LOG(ERROR) << "Timed out waiting for the fuse-provided package.";
Tao Baocdcf28f2016-01-13 15:05:20 -08001107 result = INSTALL_ERROR;
1108 kill(child, SIGKILL);
1109 break;
1110 }
1111 }
1112
1113 result = install_package(FUSE_SIDELOAD_HOST_PATHNAME, wipe_cache,
Tianjie Xu16255832016-04-30 11:49:59 -07001114 TEMPORARY_INSTALL_FILE, false, 0/*retry_count*/);
Tao Baocdcf28f2016-01-13 15:05:20 -08001115 break;
1116 }
Christian Poetzsch4ec58a42015-02-19 10:42:39 +00001117
Tao Baocdcf28f2016-01-13 15:05:20 -08001118 if (!waited) {
1119 // Calling stat() on this magic filename signals the fuse
1120 // filesystem to shut down.
1121 struct stat sb;
1122 stat(FUSE_SIDELOAD_HOST_EXIT_PATHNAME, &sb);
1123
1124 waitpid(child, &status, 0);
1125 }
1126
1127 if (!WIFEXITED(status) || WEXITSTATUS(status) != 0) {
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -07001128 LOG(ERROR) << "Error exit from the fuse process: " << WEXITSTATUS(status);
Tao Baocdcf28f2016-01-13 15:05:20 -08001129 }
1130
Christian Poetzsch4ec58a42015-02-19 10:42:39 +00001131 ensure_path_unmounted(SDCARD_ROOT);
Tao Baocdcf28f2016-01-13 15:05:20 -08001132 return result;
Christian Poetzsch4ec58a42015-02-19 10:42:39 +00001133}
1134
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001135// Return REBOOT, SHUTDOWN, or REBOOT_BOOTLOADER. Returning NO_ACTION
1136// means to take the default, which is to reboot or shutdown depending
1137// on if the --shutdown_after flag was passed to recovery.
1138static Device::BuiltinAction
Doug Zongker6c8553d2012-09-24 10:40:47 -07001139prompt_and_wait(Device* device, int status) {
Doug Zongkerf93d8162009-09-22 15:16:02 -07001140 for (;;) {
Tianjie Xuc14d95d2016-03-24 11:50:34 -07001141 finish_recovery();
Doug Zongker6c8553d2012-09-24 10:40:47 -07001142 switch (status) {
1143 case INSTALL_SUCCESS:
1144 case INSTALL_NONE:
1145 ui->SetBackground(RecoveryUI::NO_COMMAND);
1146 break;
1147
1148 case INSTALL_ERROR:
1149 case INSTALL_CORRUPT:
1150 ui->SetBackground(RecoveryUI::ERROR);
1151 break;
1152 }
Doug Zongker211aebc2011-10-28 15:13:10 -07001153 ui->SetProgressType(RecoveryUI::EMPTY);
Doug Zongkerf93d8162009-09-22 15:16:02 -07001154
Elliott Hughes8fd86d72015-04-13 14:36:02 -07001155 int chosen_item = get_menu_selection(nullptr, device->GetMenuItems(), 0, 0, device);
Doug Zongkerf93d8162009-09-22 15:16:02 -07001156
1157 // device-specific code may take some action here. It may
1158 // return one of the core actions handled in the switch
1159 // statement below.
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001160 Device::BuiltinAction chosen_action = device->InvokeMenuItem(chosen_item);
Doug Zongkerf93d8162009-09-22 15:16:02 -07001161
Elliott Hughes30694c92015-03-25 15:16:51 -07001162 bool should_wipe_cache = false;
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001163 switch (chosen_action) {
1164 case Device::NO_ACTION:
1165 break;
1166
Doug Zongkerdaefc1d2011-10-31 09:34:15 -07001167 case Device::REBOOT:
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001168 case Device::SHUTDOWN:
1169 case Device::REBOOT_BOOTLOADER:
1170 return chosen_action;
Doug Zongkerf93d8162009-09-22 15:16:02 -07001171
Doug Zongkerdaefc1d2011-10-31 09:34:15 -07001172 case Device::WIPE_DATA:
1173 wipe_data(ui->IsTextVisible(), device);
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001174 if (!ui->IsTextVisible()) return Device::NO_ACTION;
Doug Zongkerf93d8162009-09-22 15:16:02 -07001175 break;
1176
Doug Zongkerdaefc1d2011-10-31 09:34:15 -07001177 case Device::WIPE_CACHE:
Elliott Hughes30694c92015-03-25 15:16:51 -07001178 wipe_cache(ui->IsTextVisible(), device);
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001179 if (!ui->IsTextVisible()) return Device::NO_ACTION;
Doug Zongkerf93d8162009-09-22 15:16:02 -07001180 break;
1181
Christian Poetzsch4ec58a42015-02-19 10:42:39 +00001182 case Device::APPLY_ADB_SIDELOAD:
Elliott Hughesec283402015-04-10 10:01:53 -07001183 case Device::APPLY_SDCARD:
Christian Poetzsch4ec58a42015-02-19 10:42:39 +00001184 {
1185 bool adb = (chosen_action == Device::APPLY_ADB_SIDELOAD);
1186 if (adb) {
Elliott Hughes30694c92015-03-25 15:16:51 -07001187 status = apply_from_adb(ui, &should_wipe_cache, TEMPORARY_INSTALL_FILE);
Doug Zongkerd0181b82011-10-19 10:51:12 -07001188 } else {
Elliott Hughes30694c92015-03-25 15:16:51 -07001189 status = apply_from_sdcard(device, &should_wipe_cache);
Doug Zongkerd0181b82011-10-19 10:51:12 -07001190 }
Doug Zongker945fc682014-07-10 10:50:39 -07001191
Elliott Hughes30694c92015-03-25 15:16:51 -07001192 if (status == INSTALL_SUCCESS && should_wipe_cache) {
Tao Baoe39a9bc2015-03-31 12:19:05 -07001193 if (!wipe_cache(false, device)) {
1194 status = INSTALL_ERROR;
1195 }
Christian Poetzsch4ec58a42015-02-19 10:42:39 +00001196 }
1197
Tao Baoc679f932015-03-30 09:43:49 -07001198 if (status != INSTALL_SUCCESS) {
1199 ui->SetBackground(RecoveryUI::ERROR);
1200 ui->Print("Installation aborted.\n");
1201 copy_logs();
1202 } else if (!ui->IsTextVisible()) {
1203 return Device::NO_ACTION; // reboot if logs aren't visible
1204 } else {
1205 ui->Print("\nInstall from %s complete.\n", adb ? "ADB" : "SD card");
Doug Zongker8674a722010-09-15 11:08:23 -07001206 }
Doug Zongkerf93d8162009-09-22 15:16:02 -07001207 }
1208 break;
Doug Zongkerdaefc1d2011-10-31 09:34:15 -07001209
Elliott Hughesec283402015-04-10 10:01:53 -07001210 case Device::VIEW_RECOVERY_LOGS:
1211 choose_recovery_file(device);
Michael Ward9d2629c2011-06-23 22:14:24 -07001212 break;
Doug Zongker9270a202012-01-09 15:16:13 -08001213
Elliott Hughes498cda62016-04-14 16:49:04 -07001214 case Device::RUN_GRAPHICS_TEST:
1215 run_graphics_test(device);
1216 break;
1217
Elliott Hughesec283402015-04-10 10:01:53 -07001218 case Device::MOUNT_SYSTEM:
Tao Baoabb8f772015-07-30 14:43:27 -07001219 // For a system image built with the root directory (i.e.
1220 // system_root_image == "true"), we mount it to /system_root, and symlink /system
1221 // to /system_root/system to make adb shell work (the symlink is created through
1222 // the build system).
1223 // Bug: 22855115
Elliott Hughescb220402016-09-23 15:30:55 -07001224 if (android::base::GetBoolProperty("ro.build.system_root_image", false)) {
Tao Baoabb8f772015-07-30 14:43:27 -07001225 if (ensure_path_mounted_at("/", "/system_root") != -1) {
1226 ui->Print("Mounted /system.\n");
1227 }
1228 } else {
1229 if (ensure_path_mounted("/system") != -1) {
1230 ui->Print("Mounted /system.\n");
1231 }
Elliott Hughesec283402015-04-10 10:01:53 -07001232 }
Tao Baoabb8f772015-07-30 14:43:27 -07001233
Nick Kralevicha9ad0322014-10-22 18:38:48 -07001234 break;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001235 }
1236 }
1237}
1238
1239static void
Oscar Montemayor05231562009-11-30 08:40:57 -08001240print_property(const char *key, const char *name, void *cookie) {
Doug Zongker56c51052010-07-01 09:18:44 -07001241 printf("%s=%s\n", key, name);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001242}
1243
Tao Baoac9d94d2016-11-03 11:37:15 -07001244static std::string load_locale_from_cache() {
1245 if (ensure_path_mounted(LOCALE_FILE) != 0) {
1246 LOG(ERROR) << "Can't mount " << LOCALE_FILE;
1247 return "";
Doug Zongker02ec6b82012-08-22 17:26:40 -07001248 }
Tao Baoac9d94d2016-11-03 11:37:15 -07001249
1250 std::string content;
1251 if (!android::base::ReadFileToString(LOCALE_FILE, &content)) {
1252 PLOG(ERROR) << "Can't read " << LOCALE_FILE;
1253 return "";
1254 }
1255
1256 return android::base::Trim(content);
Doug Zongker02ec6b82012-08-22 17:26:40 -07001257}
1258
Tao Baoac9d94d2016-11-03 11:37:15 -07001259void ui_print(const char* format, ...) {
1260 std::string buffer;
Doug Zongker7c3ae452013-05-14 11:03:02 -07001261 va_list ap;
1262 va_start(ap, format);
Tao Baoac9d94d2016-11-03 11:37:15 -07001263 android::base::StringAppendV(&buffer, format, ap);
Doug Zongker7c3ae452013-05-14 11:03:02 -07001264 va_end(ap);
1265
Tao Baoac9d94d2016-11-03 11:37:15 -07001266 if (ui != nullptr) {
1267 ui->Print("%s", buffer.c_str());
Doug Zongker7c3ae452013-05-14 11:03:02 -07001268 } else {
Tao Baoac9d94d2016-11-03 11:37:15 -07001269 fputs(buffer.c_str(), stdout);
Doug Zongker7c3ae452013-05-14 11:03:02 -07001270 }
1271}
1272
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -07001273static constexpr char log_characters[] = "VDIWEF";
1274
1275void UiLogger(android::base::LogId id, android::base::LogSeverity severity,
1276 const char* tag, const char* file, unsigned int line,
1277 const char* message) {
Tao Baoac9d94d2016-11-03 11:37:15 -07001278 if (severity >= android::base::ERROR && ui != nullptr) {
1279 ui->Print("E:%s\n", message);
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -07001280 } else {
1281 fprintf(stdout, "%c:%s\n", log_characters[severity], message);
1282 }
1283}
1284
Yabin Cui99281df2016-02-17 12:21:52 -08001285static bool is_battery_ok() {
1286 struct healthd_config healthd_config = {
1287 .batteryStatusPath = android::String8(android::String8::kEmptyString),
1288 .batteryHealthPath = android::String8(android::String8::kEmptyString),
1289 .batteryPresentPath = android::String8(android::String8::kEmptyString),
1290 .batteryCapacityPath = android::String8(android::String8::kEmptyString),
1291 .batteryVoltagePath = android::String8(android::String8::kEmptyString),
1292 .batteryTemperaturePath = android::String8(android::String8::kEmptyString),
1293 .batteryTechnologyPath = android::String8(android::String8::kEmptyString),
1294 .batteryCurrentNowPath = android::String8(android::String8::kEmptyString),
1295 .batteryCurrentAvgPath = android::String8(android::String8::kEmptyString),
1296 .batteryChargeCounterPath = android::String8(android::String8::kEmptyString),
1297 .batteryFullChargePath = android::String8(android::String8::kEmptyString),
1298 .batteryCycleCountPath = android::String8(android::String8::kEmptyString),
1299 .energyCounter = NULL,
1300 .boot_min_cap = 0,
1301 .screen_on = NULL
1302 };
1303 healthd_board_init(&healthd_config);
1304
1305 android::BatteryMonitor monitor;
1306 monitor.init(&healthd_config);
1307
1308 int wait_second = 0;
1309 while (true) {
1310 int charge_status = monitor.getChargeStatus();
1311 // Treat unknown status as charged.
1312 bool charged = (charge_status != android::BATTERY_STATUS_DISCHARGING &&
1313 charge_status != android::BATTERY_STATUS_NOT_CHARGING);
1314 android::BatteryProperty capacity;
1315 android::status_t status = monitor.getProperty(android::BATTERY_PROP_CAPACITY, &capacity);
1316 ui_print("charge_status %d, charged %d, status %d, capacity %lld\n", charge_status,
1317 charged, status, capacity.valueInt64);
1318 // At startup, the battery drivers in devices like N5X/N6P take some time to load
1319 // the battery profile. Before the load finishes, it reports value 50 as a fake
1320 // capacity. BATTERY_READ_TIMEOUT_IN_SEC is set that the battery drivers are expected
1321 // to finish loading the battery profile earlier than 10 seconds after kernel startup.
1322 if (status == 0 && capacity.valueInt64 == 50) {
1323 if (wait_second < BATTERY_READ_TIMEOUT_IN_SEC) {
1324 sleep(1);
1325 wait_second++;
1326 continue;
1327 }
1328 }
1329 // If we can't read battery percentage, it may be a device without battery. In this
1330 // situation, use 100 as a fake battery percentage.
1331 if (status != 0) {
1332 capacity.valueInt64 = 100;
1333 }
1334 return (charged && capacity.valueInt64 >= BATTERY_WITH_CHARGER_OK_PERCENTAGE) ||
1335 (!charged && capacity.valueInt64 >= BATTERY_OK_PERCENTAGE);
1336 }
1337}
1338
Tianjie Xu3c62b672016-02-05 18:25:58 -08001339static void set_retry_bootloader_message(int retry_count, int argc, char** argv) {
Tianjie Xubd56f152016-09-28 16:32:10 -07001340 std::vector<std::string> options;
Tianjie Xu3c62b672016-02-05 18:25:58 -08001341 for (int i = 1; i < argc; ++i) {
1342 if (strstr(argv[i], "retry_count") == nullptr) {
Tianjie Xubd56f152016-09-28 16:32:10 -07001343 options.push_back(argv[i]);
Tianjie Xu3c62b672016-02-05 18:25:58 -08001344 }
1345 }
1346
Tianjie Xubd56f152016-09-28 16:32:10 -07001347 // Increment the retry counter by 1.
1348 options.push_back(android::base::StringPrintf("--retry_count=%d", retry_count+1));
Yabin Cui8b309f62016-06-24 18:22:02 -07001349 std::string err;
Tianjie Xubd56f152016-09-28 16:32:10 -07001350 if (!write_bootloader_message(options, &err)) {
Yabin Cui8b309f62016-06-24 18:22:02 -07001351 LOG(ERROR) << err;
1352 }
Tianjie Xu3c62b672016-02-05 18:25:58 -08001353}
1354
Tianjie Xu06e57ac2016-07-11 14:04:08 -07001355static bool bootreason_in_blacklist() {
1356 char bootreason[PROPERTY_VALUE_MAX];
1357 if (property_get("ro.boot.bootreason", bootreason, nullptr) > 0) {
1358 for (const auto& str : bootreason_blacklist) {
1359 if (strcasecmp(str.c_str(), bootreason) == 0) {
1360 return true;
1361 }
1362 }
1363 }
1364 return false;
1365}
1366
1367static void log_failure_code(ErrorCode code, const char *update_package) {
1368 std::vector<std::string> log_buffer = {
1369 update_package,
1370 "0", // install result
1371 "error: " + std::to_string(code),
1372 };
1373 std::string log_content = android::base::Join(log_buffer, "\n");
1374 if (!android::base::WriteStringToFile(log_content, TEMPORARY_INSTALL_FILE)) {
Tao Baoac9d94d2016-11-03 11:37:15 -07001375 PLOG(ERROR) << "failed to write " << TEMPORARY_INSTALL_FILE;
Tianjie Xu06e57ac2016-07-11 14:04:08 -07001376 }
1377
1378 // Also write the info into last_log.
1379 LOG(INFO) << log_content;
1380}
1381
Yabin Cui99281df2016-02-17 12:21:52 -08001382int main(int argc, char **argv) {
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -07001383 // We don't have logcat yet under recovery; so we'll print error on screen and
1384 // log to stdout (which is redirected to recovery.log) as we used to do.
1385 android::base::InitLogging(argv, &UiLogger);
1386
Mark Salyzyna4f701a2016-03-09 14:58:16 -08001387 // Take last pmsg contents and rewrite it to the current pmsg session.
1388 static const char filter[] = "recovery/";
1389 // Do we need to rotate?
1390 bool doRotate = false;
Tianjie Xue113e4d2016-10-21 17:46:13 -07001391
Mark Salyzyna4f701a2016-03-09 14:58:16 -08001392 __android_log_pmsg_file_read(
1393 LOG_ID_SYSTEM, ANDROID_LOG_INFO, filter,
1394 logbasename, &doRotate);
1395 // Take action to refresh pmsg contents
1396 __android_log_pmsg_file_read(
1397 LOG_ID_SYSTEM, ANDROID_LOG_INFO, filter,
1398 logrotate, &doRotate);
1399
Doug Zongker9270a202012-01-09 15:16:13 -08001400 // If this binary is started with the single argument "--adbd",
1401 // instead of being the normal recovery binary, it turns into kind
1402 // of a stripped-down version of adbd that only supports the
1403 // 'sideload' command. Note this must be a real argument, not
1404 // anything in the command file or bootloader control block; the
1405 // only way recovery should be run with this argument is when it
1406 // starts a copy of itself from the apply_from_adb() function.
1407 if (argc == 2 && strcmp(argv[1], "--adbd") == 0) {
Josh Gaoacb2a2f2016-08-26 18:24:34 -07001408 minadbd_main();
Doug Zongker9270a202012-01-09 15:16:13 -08001409 return 0;
1410 }
1411
Tao Bao04ca4262015-09-10 15:32:24 -07001412 time_t start = time(NULL);
1413
1414 // redirect_stdio should be called only in non-sideload mode. Otherwise
1415 // we may have two logger instances with different timestamps.
1416 redirect_stdio(TEMPORARY_LOG_FILE);
1417
Doug Zongker19a8e242014-01-21 09:25:41 -08001418 printf("Starting recovery (pid %d) on %s", getpid(), ctime(&start));
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001419
Doug Zongkerd4208f92010-09-20 12:16:13 -07001420 load_volume_table();
Tao Bao26112e52016-02-25 12:29:40 -08001421 has_cache = volume_for_path(CACHE_ROOT) != nullptr;
1422
Tao Baof0ed1592016-12-02 11:32:19 -08001423 std::vector<std::string> args = get_args(argc, argv);
1424 std::vector<char*> args_to_parse(args.size());
1425 std::transform(args.cbegin(), args.cend(), args_to_parse.begin(),
1426 [](const std::string& arg) { return const_cast<char*>(arg.c_str()); });
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001427
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001428 const char *update_package = NULL;
Tao Baoe39a9bc2015-03-31 12:19:05 -07001429 bool should_wipe_data = false;
Tao Baoc679f932015-03-30 09:43:49 -07001430 bool should_wipe_cache = false;
Yabin Cui8b309f62016-06-24 18:22:02 -07001431 bool should_wipe_ab = false;
Yabin Cuifd99a312016-06-09 14:09:39 -07001432 size_t wipe_package_size = 0;
Tao Bao145d8612015-03-25 15:51:15 -07001433 bool show_text = false;
Tao Baoc679f932015-03-30 09:43:49 -07001434 bool sideload = false;
1435 bool sideload_auto_reboot = false;
Doug Zongkere5d5ac72012-04-12 11:01:22 -07001436 bool just_exit = false;
Doug Zongkerb1d12632014-03-18 10:32:12 -07001437 bool shutdown_after = false;
Tianjie Xu3c62b672016-02-05 18:25:58 -08001438 int retry_count = 0;
Tianjie Xu35926c42016-04-28 18:06:26 -07001439 bool security_update = false;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001440
1441 int arg;
Tao Bao862a4c12016-06-02 11:16:50 -07001442 int option_index;
Tao Baof0ed1592016-12-02 11:32:19 -08001443 while ((arg = getopt_long(args_to_parse.size(), args_to_parse.data(), "", OPTIONS,
1444 &option_index)) != -1) {
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001445 switch (arg) {
Tianjie Xu3c62b672016-02-05 18:25:58 -08001446 case 'n': android::base::ParseInt(optarg, &retry_count, 0); break;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001447 case 'u': update_package = optarg; break;
Tao Baoe39a9bc2015-03-31 12:19:05 -07001448 case 'w': should_wipe_data = true; break;
Tao Baoc679f932015-03-30 09:43:49 -07001449 case 'c': should_wipe_cache = true; break;
Tao Bao145d8612015-03-25 15:51:15 -07001450 case 't': show_text = true; break;
Tao Baoc679f932015-03-30 09:43:49 -07001451 case 's': sideload = true; break;
1452 case 'a': sideload = true; sideload_auto_reboot = true; break;
Doug Zongkere5d5ac72012-04-12 11:01:22 -07001453 case 'x': just_exit = true; break;
Doug Zongker02ec6b82012-08-22 17:26:40 -07001454 case 'l': locale = optarg; break;
Doug Zongkerc87bab12013-11-25 13:53:25 -08001455 case 'g': {
1456 if (stage == NULL || *stage == '\0') {
1457 char buffer[20] = "1/";
1458 strncat(buffer, optarg, sizeof(buffer)-3);
1459 stage = strdup(buffer);
1460 }
1461 break;
1462 }
Doug Zongkerb1d12632014-03-18 10:32:12 -07001463 case 'p': shutdown_after = true; break;
Jeff Sharkeya6e13ae2014-09-24 11:46:17 -07001464 case 'r': reason = optarg; break;
Tianjie Xu35926c42016-04-28 18:06:26 -07001465 case 'e': security_update = true; break;
Tao Bao862a4c12016-06-02 11:16:50 -07001466 case 0: {
Yabin Cui8b309f62016-06-24 18:22:02 -07001467 if (strcmp(OPTIONS[option_index].name, "wipe_ab") == 0) {
1468 should_wipe_ab = true;
Tao Bao862a4c12016-06-02 11:16:50 -07001469 break;
Yabin Cuifd99a312016-06-09 14:09:39 -07001470 } else if (strcmp(OPTIONS[option_index].name, "wipe_package_size") == 0) {
1471 android::base::ParseUint(optarg, &wipe_package_size);
1472 break;
Tao Bao862a4c12016-06-02 11:16:50 -07001473 }
1474 break;
1475 }
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001476 case '?':
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -07001477 LOG(ERROR) << "Invalid command argument";
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001478 continue;
1479 }
1480 }
1481
Tao Baoac9d94d2016-11-03 11:37:15 -07001482 if (locale.empty()) {
1483 if (has_cache) {
1484 locale = load_locale_from_cache();
1485 }
1486
1487 if (locale.empty()) {
1488 locale = DEFAULT_LOCALE;
1489 }
Doug Zongker02ec6b82012-08-22 17:26:40 -07001490 }
Tao Baoac9d94d2016-11-03 11:37:15 -07001491
1492 printf("locale is [%s]\n", locale.c_str());
Doug Zongker0d32f252014-02-13 15:07:56 -08001493 printf("stage is [%s]\n", stage);
Jeff Sharkeya6e13ae2014-09-24 11:46:17 -07001494 printf("reason is [%s]\n", reason);
Doug Zongker02ec6b82012-08-22 17:26:40 -07001495
1496 Device* device = make_device();
1497 ui = device->GetUI();
1498
Sen Jiangd5304492016-12-09 16:20:49 -08001499 if (!ui->Init()) {
1500 printf("Failed to initialize UI, use stub UI instead.");
1501 ui = new StubRecoveryUI();
1502 }
Tao Baoac9d94d2016-11-03 11:37:15 -07001503 ui->SetLocale(locale.c_str());
Tianjie Xu35926c42016-04-28 18:06:26 -07001504 // Set background string to "installing security update" for security update,
1505 // otherwise set it to "installing system update".
1506 ui->SetSystemUpdateText(security_update);
Doug Zongkerc87bab12013-11-25 13:53:25 -08001507
1508 int st_cur, st_max;
1509 if (stage != NULL && sscanf(stage, "%d/%d", &st_cur, &st_max) == 2) {
1510 ui->SetStage(st_cur, st_max);
1511 }
1512
Doug Zongker02ec6b82012-08-22 17:26:40 -07001513 ui->SetBackground(RecoveryUI::NONE);
1514 if (show_text) ui->ShowText(true);
1515
Stephen Smalley779701d2012-02-09 14:13:23 -05001516 struct selinux_opt seopts[] = {
Tao Baoac9d94d2016-11-03 11:37:15 -07001517 { SELABEL_OPT_PATH, "/file_contexts" }
Stephen Smalley779701d2012-02-09 14:13:23 -05001518 };
1519
1520 sehandle = selabel_open(SELABEL_CTX_FILE, seopts, 1);
1521
1522 if (!sehandle) {
Doug Zongkerfafc85b2013-07-09 12:29:45 -07001523 ui->Print("Warning: No file_contexts\n");
Stephen Smalley779701d2012-02-09 14:13:23 -05001524 }
Stephen Smalley779701d2012-02-09 14:13:23 -05001525
Doug Zongkerdaefc1d2011-10-31 09:34:15 -07001526 device->StartRecovery();
Doug Zongkerefa1bab2010-02-01 15:59:12 -08001527
Doug Zongker56c51052010-07-01 09:18:44 -07001528 printf("Command:");
Tao Baof0ed1592016-12-02 11:32:19 -08001529 for (const auto& arg : args) {
1530 printf(" \"%s\"", arg.c_str());
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001531 }
Tao Baof038ca02016-12-10 09:24:50 -08001532 printf("\n\n");
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001533
1534 property_list(print_property, NULL);
Doug Zongker56c51052010-07-01 09:18:44 -07001535 printf("\n");
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001536
Elliott Hughesbb78d622015-04-09 20:51:08 -07001537 ui->Print("Supported API: %d\n", RECOVERY_API_VERSION);
1538
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001539 int status = INSTALL_SUCCESS;
1540
Doug Zongker540d57f2011-01-18 13:36:58 -08001541 if (update_package != NULL) {
Tao Bao56870012016-04-29 15:37:05 -07001542 // It's not entirely true that we will modify the flash. But we want
1543 // to log the update attempt since update_package is non-NULL.
1544 modified_flash = true;
1545
Yabin Cui99281df2016-02-17 12:21:52 -08001546 if (!is_battery_ok()) {
1547 ui->Print("battery capacity is not enough for installing package, needed is %d%%\n",
1548 BATTERY_OK_PERCENTAGE);
Tianjie Xu16255832016-04-30 11:49:59 -07001549 // Log the error code to last_install when installation skips due to
1550 // low battery.
Tianjie Xu06e57ac2016-07-11 14:04:08 -07001551 log_failure_code(kLowBattery, update_package);
1552 status = INSTALL_SKIPPED;
1553 } else if (bootreason_in_blacklist()) {
1554 // Skip update-on-reboot when bootreason is kernel_panic or similar
1555 ui->Print("bootreason is in the blacklist; skip OTA installation\n");
1556 log_failure_code(kBootreasonInBlacklist, update_package);
Yabin Cui99281df2016-02-17 12:21:52 -08001557 status = INSTALL_SKIPPED;
1558 } else {
1559 status = install_package(update_package, &should_wipe_cache,
Tianjie Xu16255832016-04-30 11:49:59 -07001560 TEMPORARY_INSTALL_FILE, true, retry_count);
Yabin Cui99281df2016-02-17 12:21:52 -08001561 if (status == INSTALL_SUCCESS && should_wipe_cache) {
1562 wipe_cache(false, device);
1563 }
1564 if (status != INSTALL_SUCCESS) {
1565 ui->Print("Installation aborted.\n");
Tianjie Xu3c62b672016-02-05 18:25:58 -08001566 // When I/O error happens, reboot and retry installation EIO_RETRY_COUNT
1567 // times before we abandon this OTA update.
1568 if (status == INSTALL_RETRY && retry_count < EIO_RETRY_COUNT) {
1569 copy_logs();
1570 set_retry_bootloader_message(retry_count, argc, argv);
1571 // Print retry count on screen.
1572 ui->Print("Retry attempt %d\n", retry_count);
Doug Zongker7c3ae452013-05-14 11:03:02 -07001573
Tianjie Xu3c62b672016-02-05 18:25:58 -08001574 // Reboot and retry the update
Elliott Hughescb220402016-09-23 15:30:55 -07001575 if (!android::base::SetProperty(ANDROID_RB_PROPERTY, "reboot,recovery")) {
Tianjie Xu3c62b672016-02-05 18:25:58 -08001576 ui->Print("Reboot failed\n");
1577 } else {
1578 while (true) {
1579 pause();
1580 }
1581 }
1582 }
Yabin Cui99281df2016-02-17 12:21:52 -08001583 // If this is an eng or userdebug build, then automatically
1584 // turn the text display on if the script fails so the error
1585 // message is visible.
1586 if (is_ro_debuggable()) {
1587 ui->ShowText(true);
1588 }
Doug Zongker7c3ae452013-05-14 11:03:02 -07001589 }
1590 }
Tao Baoe39a9bc2015-03-31 12:19:05 -07001591 } else if (should_wipe_data) {
1592 if (!wipe_data(false, device)) {
1593 status = INSTALL_ERROR;
1594 }
Tao Baoc679f932015-03-30 09:43:49 -07001595 } else if (should_wipe_cache) {
Tao Baoe39a9bc2015-03-31 12:19:05 -07001596 if (!wipe_cache(false, device)) {
1597 status = INSTALL_ERROR;
1598 }
Yabin Cui8b309f62016-06-24 18:22:02 -07001599 } else if (should_wipe_ab) {
Yabin Cuifd99a312016-06-09 14:09:39 -07001600 if (!wipe_ab_device(wipe_package_size)) {
Tao Bao862a4c12016-06-02 11:16:50 -07001601 status = INSTALL_ERROR;
1602 }
Tao Baoc679f932015-03-30 09:43:49 -07001603 } else if (sideload) {
1604 // 'adb reboot sideload' acts the same as user presses key combinations
1605 // to enter the sideload mode. When 'sideload-auto-reboot' is used, text
1606 // display will NOT be turned on by default. And it will reboot after
1607 // sideload finishes even if there are errors. Unless one turns on the
1608 // text display during the installation. This is to enable automated
1609 // testing.
1610 if (!sideload_auto_reboot) {
1611 ui->ShowText(true);
1612 }
1613 status = apply_from_adb(ui, &should_wipe_cache, TEMPORARY_INSTALL_FILE);
1614 if (status == INSTALL_SUCCESS && should_wipe_cache) {
Tao Baoe39a9bc2015-03-31 12:19:05 -07001615 if (!wipe_cache(false, device)) {
1616 status = INSTALL_ERROR;
1617 }
Tao Baoc679f932015-03-30 09:43:49 -07001618 }
1619 ui->Print("\nInstall from ADB complete (status: %d).\n", status);
1620 if (sideload_auto_reboot) {
1621 ui->Print("Rebooting automatically.\n");
1622 }
Doug Zongkere5d5ac72012-04-12 11:01:22 -07001623 } else if (!just_exit) {
Doug Zongker02ec6b82012-08-22 17:26:40 -07001624 status = INSTALL_NONE; // No command specified
1625 ui->SetBackground(RecoveryUI::NO_COMMAND);
Tao Bao785d22c2015-05-04 09:34:29 -07001626
1627 // http://b/17489952
1628 // If this is an eng or userdebug build, automatically turn on the
1629 // text display if no command is specified.
1630 if (is_ro_debuggable()) {
1631 ui->ShowText(true);
1632 }
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001633 }
1634
Tao Baoc679f932015-03-30 09:43:49 -07001635 if (!sideload_auto_reboot && (status == INSTALL_ERROR || status == INSTALL_CORRUPT)) {
Doug Zongkerf24fd7e2013-07-02 11:43:25 -07001636 copy_logs();
Doug Zongker02ec6b82012-08-22 17:26:40 -07001637 ui->SetBackground(RecoveryUI::ERROR);
1638 }
Tao Baoc679f932015-03-30 09:43:49 -07001639
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001640 Device::BuiltinAction after = shutdown_after ? Device::SHUTDOWN : Device::REBOOT;
Yabin Cui99281df2016-02-17 12:21:52 -08001641 if ((status != INSTALL_SUCCESS && status != INSTALL_SKIPPED && !sideload_auto_reboot) ||
1642 ui->IsTextVisible()) {
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001643 Device::BuiltinAction temp = prompt_and_wait(device, status);
Tao Baoc679f932015-03-30 09:43:49 -07001644 if (temp != Device::NO_ACTION) {
1645 after = temp;
1646 }
Doug Zongker8674a722010-09-15 11:08:23 -07001647 }
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001648
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001649 // Save logs and clean up before rebooting or shutting down.
Tianjie Xuc14d95d2016-03-24 11:50:34 -07001650 finish_recovery();
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001651
1652 switch (after) {
1653 case Device::SHUTDOWN:
1654 ui->Print("Shutting down...\n");
Elliott Hughescb220402016-09-23 15:30:55 -07001655 android::base::SetProperty(ANDROID_RB_PROPERTY, "shutdown,");
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001656 break;
1657
1658 case Device::REBOOT_BOOTLOADER:
1659 ui->Print("Rebooting to bootloader...\n");
Elliott Hughescb220402016-09-23 15:30:55 -07001660 android::base::SetProperty(ANDROID_RB_PROPERTY, "reboot,bootloader");
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001661 break;
1662
1663 default:
1664 ui->Print("Rebooting...\n");
Elliott Hughescb220402016-09-23 15:30:55 -07001665 android::base::SetProperty(ANDROID_RB_PROPERTY, "reboot,");
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001666 break;
Doug Zongkerb1d12632014-03-18 10:32:12 -07001667 }
Tao Bao75238632015-05-27 14:46:17 -07001668 while (true) {
Tao Baoac9d94d2016-11-03 11:37:15 -07001669 pause();
Tao Bao75238632015-05-27 14:46:17 -07001670 }
1671 // Should be unreachable.
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001672 return EXIT_SUCCESS;
1673}