blob: f53e20c8c40466d7c1c1169833dc7497c9e8b13c [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"
Tianjie Xue113e4d2016-10-21 17:46:13 -070071#include "ui.h"
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080072
73static const struct option OPTIONS[] = {
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080074 { "update_package", required_argument, NULL, 'u' },
Tianjie Xu3c62b672016-02-05 18:25:58 -080075 { "retry_count", required_argument, NULL, 'n' },
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080076 { "wipe_data", no_argument, NULL, 'w' },
77 { "wipe_cache", no_argument, NULL, 'c' },
Doug Zongker4bc98062010-09-03 11:00:13 -070078 { "show_text", no_argument, NULL, 't' },
Tao Baoc679f932015-03-30 09:43:49 -070079 { "sideload", no_argument, NULL, 's' },
80 { "sideload_auto_reboot", no_argument, NULL, 'a' },
Doug Zongkere5d5ac72012-04-12 11:01:22 -070081 { "just_exit", no_argument, NULL, 'x' },
Doug Zongker02ec6b82012-08-22 17:26:40 -070082 { "locale", required_argument, NULL, 'l' },
Doug Zongkerc87bab12013-11-25 13:53:25 -080083 { "stages", required_argument, NULL, 'g' },
Doug Zongkerb1d12632014-03-18 10:32:12 -070084 { "shutdown_after", no_argument, NULL, 'p' },
Jeff Sharkeya6e13ae2014-09-24 11:46:17 -070085 { "reason", required_argument, NULL, 'r' },
Tianjie Xu35926c42016-04-28 18:06:26 -070086 { "security", no_argument, NULL, 'e'},
Yabin Cui8b309f62016-06-24 18:22:02 -070087 { "wipe_ab", no_argument, NULL, 0 },
Yabin Cuifd99a312016-06-09 14:09:39 -070088 { "wipe_package_size", required_argument, NULL, 0 },
Doug Zongker988500b2009-10-06 14:41:38 -070089 { NULL, 0, NULL, 0 },
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080090};
91
Tianjie Xu06e57ac2016-07-11 14:04:08 -070092// More bootreasons can be found in "system/core/bootstat/bootstat.cpp".
93static const std::vector<std::string> bootreason_blacklist {
94 "kernel_panic",
95 "Panic",
96};
97
Doug Zongker6d0d7ac2013-07-09 13:34:55 -070098static const char *CACHE_LOG_DIR = "/cache/recovery";
Doug Zongkerd4208f92010-09-20 12:16:13 -070099static const char *COMMAND_FILE = "/cache/recovery/command";
Doug Zongkerd4208f92010-09-20 12:16:13 -0700100static const char *LOG_FILE = "/cache/recovery/log";
Doug Zongkerd0181b82011-10-19 10:51:12 -0700101static const char *LAST_INSTALL_FILE = "/cache/recovery/last_install";
Doug Zongker8b240cc2012-08-29 15:19:29 -0700102static const char *LOCALE_FILE = "/cache/recovery/last_locale";
Paul Lawrence661f8a62016-02-25 12:42:19 -0800103static const char *CONVERT_FBE_DIR = "/tmp/convert_fbe";
104static const char *CONVERT_FBE_FILE = "/tmp/convert_fbe/convert_fbe";
Michael Ward9d2629c2011-06-23 22:14:24 -0700105static const char *CACHE_ROOT = "/cache";
Paul Lawrenced0db3372015-11-05 13:38:40 -0800106static const char *DATA_ROOT = "/data";
Doug Zongkerd4208f92010-09-20 12:16:13 -0700107static const char *SDCARD_ROOT = "/sdcard";
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800108static const char *TEMPORARY_LOG_FILE = "/tmp/recovery.log";
Doug Zongkerd0181b82011-10-19 10:51:12 -0700109static const char *TEMPORARY_INSTALL_FILE = "/tmp/last_install";
Tao Baof0124322015-04-11 02:04:11 +0000110static const char *LAST_KMSG_FILE = "/cache/recovery/last_kmsg";
Tao Baobef39712015-05-04 18:50:27 -0700111static const char *LAST_LOG_FILE = "/cache/recovery/last_log";
Tianjie Xuc37c5c32016-06-23 16:52:17 -0700112// We will try to apply the update package 5 times at most in case of an I/O error.
113static const int EIO_RETRY_COUNT = 4;
Yabin Cui99281df2016-02-17 12:21:52 -0800114static const int BATTERY_READ_TIMEOUT_IN_SEC = 10;
115// GmsCore enters recovery mode to install package when having enough battery
116// percentage. Normally, the threshold is 40% without charger and 20% with charger.
117// So we should check battery with a slightly lower limitation.
118static const int BATTERY_OK_PERCENTAGE = 20;
119static const int BATTERY_WITH_CHARGER_OK_PERCENTAGE = 15;
Tao Baoac9d94d2016-11-03 11:37:15 -0700120static constexpr const char* RECOVERY_WIPE = "/etc/recovery.wipe";
121static constexpr const char* DEFAULT_LOCALE = "en_US";
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700122
Tao Baoac9d94d2016-11-03 11:37:15 -0700123static std::string locale;
Dan Albert8584fcf2016-10-27 03:08:08 +0000124static bool has_cache = false;
Tao Baoc0319b62016-10-13 15:17:04 -0700125
Tao Baoac9d94d2016-11-03 11:37:15 -0700126RecoveryUI* ui = nullptr;
127bool modified_flash = false;
128const char* stage = nullptr;
129const char* reason = nullptr;
130struct selabel_handle* sehandle;
131
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800132/*
133 * The recovery tool communicates with the main system through /cache files.
134 * /cache/recovery/command - INPUT - command line for tool, one arg per line
135 * /cache/recovery/log - OUTPUT - combined log file from recovery run(s)
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800136 *
137 * The arguments which may be supplied in the recovery.command file:
Doug Zongkerd4208f92010-09-20 12:16:13 -0700138 * --update_package=path - verify install an OTA package file
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800139 * --wipe_data - erase user data (and cache), then reboot
140 * --wipe_cache - wipe cache (but not user data), then reboot
Oscar Montemayor05231562009-11-30 08:40:57 -0800141 * --set_encrypted_filesystem=on|off - enables / diasables encrypted fs
Doug Zongkere5d5ac72012-04-12 11:01:22 -0700142 * --just_exit - do nothing; exit and reboot
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800143 *
144 * After completing, we remove /cache/recovery/command and reboot.
145 * Arguments may also be supplied in the bootloader control block (BCB).
146 * These important scenarios must be safely restartable at any point:
147 *
148 * FACTORY RESET
149 * 1. user selects "factory reset"
150 * 2. main system writes "--wipe_data" to /cache/recovery/command
151 * 3. main system reboots into recovery
152 * 4. get_args() writes BCB with "boot-recovery" and "--wipe_data"
153 * -- after this, rebooting will restart the erase --
Doug Zongkerd4208f92010-09-20 12:16:13 -0700154 * 5. erase_volume() reformats /data
155 * 6. erase_volume() reformats /cache
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800156 * 7. finish_recovery() erases BCB
157 * -- after this, rebooting will restart the main system --
158 * 8. main() calls reboot() to boot main system
159 *
160 * OTA INSTALL
161 * 1. main system downloads OTA package to /cache/some-filename.zip
Doug Zongker9b125b02010-09-22 12:01:37 -0700162 * 2. main system writes "--update_package=/cache/some-filename.zip"
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800163 * 3. main system reboots into recovery
164 * 4. get_args() writes BCB with "boot-recovery" and "--update_package=..."
165 * -- after this, rebooting will attempt to reinstall the update --
166 * 5. install_package() attempts to install the update
167 * NOTE: the package install must itself be restartable from any point
168 * 6. finish_recovery() erases BCB
169 * -- after this, rebooting will (try to) restart the main system --
170 * 7. ** if install failed **
171 * 7a. prompt_and_wait() shows an error icon and waits for the user
Tao Baoc0336392016-12-13 22:29:49 -0800172 * 7b. the user reboots (pulling the battery, etc) into the main system
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800173 */
174
Doug Zongkerd4208f92010-09-20 12:16:13 -0700175// open a given path, mounting partitions as necessary
Tao Bao04ca4262015-09-10 15:32:24 -0700176FILE* fopen_path(const char *path, const char *mode) {
Doug Zongkerd4208f92010-09-20 12:16:13 -0700177 if (ensure_path_mounted(path) != 0) {
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -0700178 LOG(ERROR) << "Can't mount " << path;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800179 return NULL;
180 }
181
182 // When writing, try to create the containing directory, if necessary.
183 // Use generous permissions, the system (init.rc) will reset them.
Stephen Smalley779701d2012-02-09 14:13:23 -0500184 if (strchr("wa", mode[0])) dirCreateHierarchy(path, 0777, NULL, 1, sehandle);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800185
186 FILE *fp = fopen(path, mode);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800187 return fp;
188}
189
Tao Bao04ca4262015-09-10 15:32:24 -0700190// close a file, log an error if the error indicator is set
191static void check_and_fclose(FILE *fp, const char *name) {
192 fflush(fp);
Tao Baoac9d94d2016-11-03 11:37:15 -0700193 if (fsync(fileno(fp)) == -1) {
194 PLOG(ERROR) << "Failed to fsync " << name;
195 }
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -0700196 if (ferror(fp)) {
197 PLOG(ERROR) << "Error in " << name;
198 }
Tao Bao04ca4262015-09-10 15:32:24 -0700199 fclose(fp);
200}
201
Elliott Hughesf14af802015-02-10 14:46:14 -0800202bool is_ro_debuggable() {
Elliott Hughescb220402016-09-23 15:30:55 -0700203 return android::base::GetBoolProperty("ro.debuggable", false);
Elliott Hughesf14af802015-02-10 14:46:14 -0800204}
205
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700206static void redirect_stdio(const char* filename) {
Tao Bao04ca4262015-09-10 15:32:24 -0700207 int pipefd[2];
208 if (pipe(pipefd) == -1) {
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -0700209 PLOG(ERROR) << "pipe failed";
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700210
Tao Bao04ca4262015-09-10 15:32:24 -0700211 // Fall back to traditional logging mode without timestamps.
212 // If these fail, there's not really anywhere to complain...
213 freopen(filename, "a", stdout); setbuf(stdout, NULL);
214 freopen(filename, "a", stderr); setbuf(stderr, NULL);
215
216 return;
217 }
218
219 pid_t pid = fork();
220 if (pid == -1) {
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -0700221 PLOG(ERROR) << "fork failed";
Tao Bao04ca4262015-09-10 15:32:24 -0700222
223 // Fall back to traditional logging mode without timestamps.
224 // If these fail, there's not really anywhere to complain...
225 freopen(filename, "a", stdout); setbuf(stdout, NULL);
226 freopen(filename, "a", stderr); setbuf(stderr, NULL);
227
228 return;
229 }
230
231 if (pid == 0) {
232 /// Close the unused write end.
233 close(pipefd[1]);
234
235 auto start = std::chrono::steady_clock::now();
236
237 // Child logger to actually write to the log file.
238 FILE* log_fp = fopen(filename, "a");
239 if (log_fp == nullptr) {
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -0700240 PLOG(ERROR) << "fopen \"" << filename << "\" failed";
Tao Bao04ca4262015-09-10 15:32:24 -0700241 close(pipefd[0]);
242 _exit(1);
243 }
244
245 FILE* pipe_fp = fdopen(pipefd[0], "r");
246 if (pipe_fp == nullptr) {
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -0700247 PLOG(ERROR) << "fdopen failed";
Tao Bao04ca4262015-09-10 15:32:24 -0700248 check_and_fclose(log_fp, filename);
249 close(pipefd[0]);
250 _exit(1);
251 }
252
253 char* line = nullptr;
254 size_t len = 0;
255 while (getline(&line, &len, pipe_fp) != -1) {
256 auto now = std::chrono::steady_clock::now();
257 double duration = std::chrono::duration_cast<std::chrono::duration<double>>(
258 now - start).count();
259 if (line[0] == '\n') {
260 fprintf(log_fp, "[%12.6lf]\n", duration);
261 } else {
262 fprintf(log_fp, "[%12.6lf] %s", duration, line);
263 }
264 fflush(log_fp);
265 }
266
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -0700267 PLOG(ERROR) << "getline failed";
Tao Bao04ca4262015-09-10 15:32:24 -0700268
269 free(line);
270 check_and_fclose(log_fp, filename);
271 close(pipefd[0]);
272 _exit(1);
273 } else {
274 // Redirect stdout/stderr to the logger process.
275 // Close the unused read end.
276 close(pipefd[0]);
277
278 setbuf(stdout, nullptr);
279 setbuf(stderr, nullptr);
280
281 if (dup2(pipefd[1], STDOUT_FILENO) == -1) {
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -0700282 PLOG(ERROR) << "dup2 stdout failed";
Tao Bao04ca4262015-09-10 15:32:24 -0700283 }
284 if (dup2(pipefd[1], STDERR_FILENO) == -1) {
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -0700285 PLOG(ERROR) << "dup2 stderr failed";
Tao Bao04ca4262015-09-10 15:32:24 -0700286 }
287
288 close(pipefd[1]);
289 }
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800290}
291
292// command line args come from, in decreasing precedence:
293// - the actual command line
294// - the bootloader control block (one per line, after "recovery")
295// - the contents of COMMAND_FILE (one per line)
Tao Baof0ed1592016-12-02 11:32:19 -0800296static std::vector<std::string> get_args(const int argc, char** const argv) {
297 CHECK_GT(argc, 0);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800298
Tao Baof0ed1592016-12-02 11:32:19 -0800299 bootloader_message boot = {};
300 std::string err;
301 if (!read_bootloader_message(&boot, &err)) {
302 LOG(ERROR) << err;
303 // If fails, leave a zeroed bootloader_message.
304 boot = {};
305 }
306 stage = strndup(boot.stage, sizeof(boot.stage));
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800307
Tao Baof0ed1592016-12-02 11:32:19 -0800308 if (boot.command[0] != 0) {
309 std::string boot_command = std::string(boot.command, sizeof(boot.command));
310 LOG(INFO) << "Boot command: " << boot_command;
311 }
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800312
Tao Baof0ed1592016-12-02 11:32:19 -0800313 if (boot.status[0] != 0) {
314 std::string boot_status = std::string(boot.status, sizeof(boot.status));
315 LOG(INFO) << "Boot status: " << boot_status;
316 }
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800317
Tao Baof0ed1592016-12-02 11:32:19 -0800318 std::vector<std::string> args(argv, argv + argc);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800319
Tao Baof0ed1592016-12-02 11:32:19 -0800320 // --- if arguments weren't supplied, look in the bootloader control block
321 if (argc == 1) {
322 boot.recovery[sizeof(boot.recovery) - 1] = '\0'; // Ensure termination
323 std::string boot_recovery(boot.recovery);
324 std::vector<std::string> tokens = android::base::Split(boot_recovery, "\n");
325 if (!tokens.empty() && tokens[0] == "recovery") {
326 for (auto it = tokens.begin() + 1; it != tokens.end(); it++) {
327 // Skip empty and '\0'-filled tokens.
328 if (!it->empty() && (*it)[0] != '\0') args.push_back(std::move(*it));
329 }
330 LOG(INFO) << "Got " << args.size() << " arguments from boot message";
331 } else if (boot.recovery[0] != 0) {
332 LOG(ERROR) << "Bad boot message: \"" << boot_recovery << "\"";
333 }
334 }
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800335
Tao Baof0ed1592016-12-02 11:32:19 -0800336 // --- if that doesn't work, try the command file (if we have /cache).
337 if (argc == 1 && has_cache) {
338 std::string content;
Tao Bao7d34fa12016-12-08 18:10:48 -0800339 if (ensure_path_mounted(COMMAND_FILE) == 0 &&
340 android::base::ReadFileToString(COMMAND_FILE, &content)) {
Tao Baof0ed1592016-12-02 11:32:19 -0800341 std::vector<std::string> tokens = android::base::Split(content, "\n");
Tao Bao7d34fa12016-12-08 18:10:48 -0800342 // All the arguments in COMMAND_FILE are needed (unlike the BCB message,
343 // COMMAND_FILE doesn't use filename as the first argument).
344 for (auto it = tokens.begin(); it != tokens.end(); it++) {
Tao Baof0ed1592016-12-02 11:32:19 -0800345 // Skip empty and '\0'-filled tokens.
346 if (!it->empty() && (*it)[0] != '\0') args.push_back(std::move(*it));
347 }
348 LOG(INFO) << "Got " << args.size() << " arguments from " << COMMAND_FILE;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800349 }
Tao Baof0ed1592016-12-02 11:32:19 -0800350 }
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800351
Tao Baof0ed1592016-12-02 11:32:19 -0800352 // Write the arguments (excluding the filename in args[0]) back into the
353 // bootloader control block. So the device will always boot into recovery to
354 // finish the pending work, until finish_recovery() is called.
355 std::vector<std::string> options(args.cbegin() + 1, args.cend());
356 if (!write_bootloader_message(options, &err)) {
357 LOG(ERROR) << err;
358 }
359
360 return args;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800361}
362
Doug Zongker34c98df2009-08-18 12:05:45 -0700363static void
Oscar Montemayor05231562009-11-30 08:40:57 -0800364set_sdcard_update_bootloader_message() {
Tianjie Xubd56f152016-09-28 16:32:10 -0700365 std::vector<std::string> options;
Yabin Cui8b309f62016-06-24 18:22:02 -0700366 std::string err;
Tianjie Xubd56f152016-09-28 16:32:10 -0700367 if (!write_bootloader_message(options, &err)) {
Yabin Cui8b309f62016-06-24 18:22:02 -0700368 LOG(ERROR) << err;
369 }
Doug Zongker34c98df2009-08-18 12:05:45 -0700370}
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800371
Tao Baobef39712015-05-04 18:50:27 -0700372// Read from kernel log into buffer and write out to file.
373static void save_kernel_log(const char* destination) {
374 int klog_buf_len = klogctl(KLOG_SIZE_BUFFER, 0, 0);
Patrick Tjincd055ee2014-12-09 11:26:40 -0800375 if (klog_buf_len <= 0) {
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -0700376 PLOG(ERROR) << "Error getting klog size";
Patrick Tjincd055ee2014-12-09 11:26:40 -0800377 return;
378 }
379
Tao Baobef39712015-05-04 18:50:27 -0700380 std::string buffer(klog_buf_len, 0);
381 int n = klogctl(KLOG_READ_ALL, &buffer[0], klog_buf_len);
382 if (n == -1) {
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -0700383 PLOG(ERROR) << "Error in reading klog";
Patrick Tjincd055ee2014-12-09 11:26:40 -0800384 return;
385 }
Tao Baobef39712015-05-04 18:50:27 -0700386 buffer.resize(n);
387 android::base::WriteStringToFile(buffer, destination);
Patrick Tjincd055ee2014-12-09 11:26:40 -0800388}
389
Mark Salyzyna4f701a2016-03-09 14:58:16 -0800390// write content to the current pmsg session.
391static ssize_t __pmsg_write(const char *filename, const char *buf, size_t len) {
392 return __android_log_pmsg_file_write(LOG_ID_SYSTEM, ANDROID_LOG_INFO,
393 filename, buf, len);
394}
395
396static void copy_log_file_to_pmsg(const char* source, const char* destination) {
397 std::string content;
398 android::base::ReadFileToString(source, &content);
399 __pmsg_write(destination, content.c_str(), content.length());
400}
401
Tao Baof0124322015-04-11 02:04:11 +0000402// How much of the temp log we have copied to the copy in cache.
Chih-Hung Hsieh54a27472016-04-18 11:30:55 -0700403static off_t tmplog_offset = 0;
Tao Baof0124322015-04-11 02:04:11 +0000404
Tao Baobef39712015-05-04 18:50:27 -0700405static void copy_log_file(const char* source, const char* destination, bool append) {
406 FILE* dest_fp = fopen_path(destination, append ? "a" : "w");
407 if (dest_fp == nullptr) {
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -0700408 PLOG(ERROR) << "Can't open " << destination;
Doug Zongker2c3539e2010-09-29 13:21:30 -0700409 } else {
Tao Baobef39712015-05-04 18:50:27 -0700410 FILE* source_fp = fopen(source, "r");
411 if (source_fp != nullptr) {
Tao Baof0124322015-04-11 02:04:11 +0000412 if (append) {
Chih-Hung Hsieh54a27472016-04-18 11:30:55 -0700413 fseeko(source_fp, tmplog_offset, SEEK_SET); // Since last write
Doug Zongker2c3539e2010-09-29 13:21:30 -0700414 }
415 char buf[4096];
Tao Baobef39712015-05-04 18:50:27 -0700416 size_t bytes;
417 while ((bytes = fread(buf, 1, sizeof(buf), source_fp)) != 0) {
418 fwrite(buf, 1, bytes, dest_fp);
Doug Zongker2c3539e2010-09-29 13:21:30 -0700419 }
Tao Baobef39712015-05-04 18:50:27 -0700420 if (append) {
Chih-Hung Hsieh54a27472016-04-18 11:30:55 -0700421 tmplog_offset = ftello(source_fp);
Tao Baobef39712015-05-04 18:50:27 -0700422 }
423 check_and_fclose(source_fp, source);
Doug Zongker2c3539e2010-09-29 13:21:30 -0700424 }
Tao Baobef39712015-05-04 18:50:27 -0700425 check_and_fclose(dest_fp, destination);
Doug Zongker2c3539e2010-09-29 13:21:30 -0700426 }
427}
428
Tao Bao682c34b2015-04-07 17:16:35 -0700429static void copy_logs() {
430 // We only rotate and record the log of the current session if there are
431 // actual attempts to modify the flash, such as wipes, installs from BCB
432 // or menu selections. This is to avoid unnecessary rotation (and
433 // possible deletion) of log files, if it does not do anything loggable.
434 if (!modified_flash) {
435 return;
436 }
437
Mark Salyzyna4f701a2016-03-09 14:58:16 -0800438 // Always write to pmsg, this allows the OTA logs to be caught in logcat -L
439 copy_log_file_to_pmsg(TEMPORARY_LOG_FILE, LAST_LOG_FILE);
440 copy_log_file_to_pmsg(TEMPORARY_INSTALL_FILE, LAST_INSTALL_FILE);
441
442 // We can do nothing for now if there's no /cache partition.
443 if (!has_cache) {
444 return;
445 }
446
Tianjie Xue113e4d2016-10-21 17:46:13 -0700447 ensure_path_mounted(LAST_LOG_FILE);
448 ensure_path_mounted(LAST_KMSG_FILE);
449 rotate_logs(LAST_LOG_FILE, LAST_KMSG_FILE);
Tao Bao682c34b2015-04-07 17:16:35 -0700450
Doug Zongkerf24fd7e2013-07-02 11:43:25 -0700451 // Copy logs to cache so the system can find out what happened.
Tao Baof0124322015-04-11 02:04:11 +0000452 copy_log_file(TEMPORARY_LOG_FILE, LOG_FILE, true);
453 copy_log_file(TEMPORARY_LOG_FILE, LAST_LOG_FILE, false);
454 copy_log_file(TEMPORARY_INSTALL_FILE, LAST_INSTALL_FILE, false);
455 save_kernel_log(LAST_KMSG_FILE);
Doug Zongkerf24fd7e2013-07-02 11:43:25 -0700456 chmod(LOG_FILE, 0600);
457 chown(LOG_FILE, 1000, 1000); // system user
Tao Baof0124322015-04-11 02:04:11 +0000458 chmod(LAST_KMSG_FILE, 0600);
459 chown(LAST_KMSG_FILE, 1000, 1000); // system user
Doug Zongkerf24fd7e2013-07-02 11:43:25 -0700460 chmod(LAST_LOG_FILE, 0640);
461 chmod(LAST_INSTALL_FILE, 0644);
462 sync();
463}
464
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800465// clear the recovery command and prepare to boot a (hopefully working) system,
Tianjie Xuc14d95d2016-03-24 11:50:34 -0700466// copy our log file to cache as well (for the system to read). This function is
467// idempotent: call it as many times as you like.
Tao Baoac9d94d2016-11-03 11:37:15 -0700468static void finish_recovery() {
Doug Zongker4f33e552012-08-23 13:16:12 -0700469 // Save the locale to cache, so if recovery is next started up
470 // without a --locale argument (eg, directly from the bootloader)
471 // it will use the last-known locale.
Tao Baoac9d94d2016-11-03 11:37:15 -0700472 if (!locale.empty() && has_cache) {
473 LOG(INFO) << "Saving locale \"" << locale << "\"";
474
475 FILE* fp = fopen_path(LOCALE_FILE, "w");
476 if (!android::base::WriteStringToFd(locale, fileno(fp))) {
477 PLOG(ERROR) << "Failed to save locale to " << LOCALE_FILE;
Mark Salyzyna4f701a2016-03-09 14:58:16 -0800478 }
Tao Baoac9d94d2016-11-03 11:37:15 -0700479 check_and_fclose(fp, LOCALE_FILE);
Doug Zongker4f33e552012-08-23 13:16:12 -0700480 }
481
Doug Zongkerf24fd7e2013-07-02 11:43:25 -0700482 copy_logs();
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800483
Doug Zongkere5d5ac72012-04-12 11:01:22 -0700484 // Reset to normal system boot so recovery won't cycle indefinitely.
Yabin Cui8b309f62016-06-24 18:22:02 -0700485 std::string err;
Tianjie Xubd56f152016-09-28 16:32:10 -0700486 if (!clear_bootloader_message(&err)) {
Yabin Cui8b309f62016-06-24 18:22:02 -0700487 LOG(ERROR) << err;
488 }
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800489
490 // Remove the command file, so recovery won't repeat indefinitely.
Tao Bao26112e52016-02-25 12:29:40 -0800491 if (has_cache) {
492 if (ensure_path_mounted(COMMAND_FILE) != 0 || (unlink(COMMAND_FILE) && errno != ENOENT)) {
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -0700493 LOG(WARNING) << "Can't unlink " << COMMAND_FILE;
Tao Bao26112e52016-02-25 12:29:40 -0800494 }
495 ensure_path_unmounted(CACHE_ROOT);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800496 }
497
498 sync(); // For good measure.
499}
500
Tao Bao3f5a3822016-12-13 11:14:37 -0800501struct saved_log_file {
502 std::string name;
503 struct stat sb;
504 std::string data;
505};
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700506
Elliott Hughes945548e2015-06-05 17:59:56 -0700507static bool erase_volume(const char* volume) {
Tao Bao3f5a3822016-12-13 11:14:37 -0800508 bool is_cache = (strcmp(volume, CACHE_ROOT) == 0);
509 bool is_data = (strcmp(volume, DATA_ROOT) == 0);
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700510
Tao Bao3f5a3822016-12-13 11:14:37 -0800511 ui->SetBackground(RecoveryUI::ERASING);
512 ui->SetProgressType(RecoveryUI::INDETERMINATE);
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700513
Tao Bao3f5a3822016-12-13 11:14:37 -0800514 std::vector<saved_log_file> log_files;
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700515
Tao Bao3f5a3822016-12-13 11:14:37 -0800516 if (is_cache) {
517 // If we're reformatting /cache, we load any past logs
518 // (i.e. "/cache/recovery/last_*") and the current log
519 // ("/cache/recovery/log") into memory, so we can restore them after
520 // the reformat.
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700521
Tao Bao3f5a3822016-12-13 11:14:37 -0800522 ensure_path_mounted(volume);
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700523
Tao Bao3f5a3822016-12-13 11:14:37 -0800524 struct dirent* de;
525 std::unique_ptr<DIR, decltype(&closedir)> d(opendir(CACHE_LOG_DIR), closedir);
526 if (d) {
527 while ((de = readdir(d.get())) != nullptr) {
528 if (strncmp(de->d_name, "last_", 5) == 0 || strcmp(de->d_name, "log") == 0) {
529 std::string path = android::base::StringPrintf("%s/%s", CACHE_LOG_DIR, de->d_name);
530
531 struct stat sb;
532 if (stat(path.c_str(), &sb) == 0) {
533 // truncate files to 512kb
534 if (sb.st_size > (1 << 19)) {
535 sb.st_size = 1 << 19;
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700536 }
Tao Bao3f5a3822016-12-13 11:14:37 -0800537
538 std::string data(sb.st_size, '\0');
539 FILE* f = fopen(path.c_str(), "rb");
540 fread(&data[0], 1, data.size(), f);
541 fclose(f);
542
543 log_files.emplace_back(saved_log_file{ path, sb, data });
544 }
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700545 }
Tao Bao3f5a3822016-12-13 11:14:37 -0800546 }
Paul Lawrenced0db3372015-11-05 13:38:40 -0800547 } else {
Tao Bao3f5a3822016-12-13 11:14:37 -0800548 if (errno != ENOENT) {
549 PLOG(ERROR) << "Failed to opendir " << CACHE_LOG_DIR;
550 }
Paul Lawrenced0db3372015-11-05 13:38:40 -0800551 }
Tao Bao3f5a3822016-12-13 11:14:37 -0800552 }
Doug Zongkerd0181b82011-10-19 10:51:12 -0700553
Tao Bao3f5a3822016-12-13 11:14:37 -0800554 ui->Print("Formatting %s...\n", volume);
555
556 ensure_path_unmounted(volume);
557
558 int result;
559
560 if (is_data && reason && strcmp(reason, "convert_fbe") == 0) {
561 // Create convert_fbe breadcrumb file to signal to init
562 // to convert to file based encryption, not full disk encryption
563 if (mkdir(CONVERT_FBE_DIR, 0700) != 0) {
564 ui->Print("Failed to make convert_fbe dir %s\n", strerror(errno));
565 return true;
566 }
567 FILE* f = fopen(CONVERT_FBE_FILE, "wb");
568 if (!f) {
569 ui->Print("Failed to convert to file encryption %s\n", strerror(errno));
570 return true;
571 }
572 fclose(f);
573 result = format_volume(volume, CONVERT_FBE_DIR);
574 remove(CONVERT_FBE_FILE);
575 rmdir(CONVERT_FBE_DIR);
576 } else {
577 result = format_volume(volume);
578 }
579
580 if (is_cache) {
581 // Re-create the log dir and write back the log entries.
582 if (ensure_path_mounted(CACHE_LOG_DIR) == 0 &&
583 dirCreateHierarchy(CACHE_LOG_DIR, 0777, nullptr, false, sehandle) == 0) {
584 for (const auto& log : log_files) {
585 if (!android::base::WriteStringToFile(log.data, log.name, log.sb.st_mode, log.sb.st_uid,
586 log.sb.st_gid)) {
587 PLOG(ERROR) << "Failed to write to " << log.name;
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700588 }
Tao Bao3f5a3822016-12-13 11:14:37 -0800589 }
590 } else {
591 PLOG(ERROR) << "Failed to mount / create " << CACHE_LOG_DIR;
Doug Zongker2c3539e2010-09-29 13:21:30 -0700592 }
593
Tao Bao3f5a3822016-12-13 11:14:37 -0800594 // Any part of the log we'd copied to cache is now gone.
595 // Reset the pointer so we copy from the beginning of the temp
596 // log.
597 tmplog_offset = 0;
598 copy_logs();
599 }
600
601 return (result == 0);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800602}
603
Doug Zongkerf93d8162009-09-22 15:16:02 -0700604static int
Doug Zongker28ce47c2011-10-28 10:33:05 -0700605get_menu_selection(const char* const * headers, const char* const * items,
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700606 int menu_only, int initial_selection, Device* device) {
Doug Zongkerf93d8162009-09-22 15:16:02 -0700607 // throw away keys pressed previously, so user doesn't
608 // accidentally trigger menu items.
Doug Zongker211aebc2011-10-28 15:13:10 -0700609 ui->FlushKeys();
Doug Zongkerf93d8162009-09-22 15:16:02 -0700610
Doug Zongker211aebc2011-10-28 15:13:10 -0700611 ui->StartMenu(headers, items, initial_selection);
Doug Zongker8674a722010-09-15 11:08:23 -0700612 int selected = initial_selection;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800613 int chosen_item = -1;
614
Doug Zongkerf93d8162009-09-22 15:16:02 -0700615 while (chosen_item < 0) {
Doug Zongker211aebc2011-10-28 15:13:10 -0700616 int key = ui->WaitKey();
617 int visible = ui->IsTextVisible();
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800618
Doug Zongker5cae4452011-01-25 13:15:30 -0800619 if (key == -1) { // ui_wait_key() timed out
Doug Zongker211aebc2011-10-28 15:13:10 -0700620 if (ui->WasTextEverVisible()) {
Doug Zongker5cae4452011-01-25 13:15:30 -0800621 continue;
622 } else {
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -0700623 LOG(INFO) << "timed out waiting for key input; rebooting.";
Doug Zongker211aebc2011-10-28 15:13:10 -0700624 ui->EndMenu();
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700625 return 0; // XXX fixme
Doug Zongker5cae4452011-01-25 13:15:30 -0800626 }
627 }
628
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700629 int action = device->HandleMenuKey(key, visible);
Doug Zongkerddd6a282009-06-09 12:22:33 -0700630
631 if (action < 0) {
632 switch (action) {
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700633 case Device::kHighlightUp:
Elliott Hughes642aaa72015-04-10 12:47:46 -0700634 selected = ui->SelectMenu(--selected);
Doug Zongkerddd6a282009-06-09 12:22:33 -0700635 break;
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700636 case Device::kHighlightDown:
Elliott Hughes642aaa72015-04-10 12:47:46 -0700637 selected = ui->SelectMenu(++selected);
Doug Zongkerddd6a282009-06-09 12:22:33 -0700638 break;
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700639 case Device::kInvokeItem:
Doug Zongkerddd6a282009-06-09 12:22:33 -0700640 chosen_item = selected;
641 break;
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700642 case Device::kNoAction:
Doug Zongkerddd6a282009-06-09 12:22:33 -0700643 break;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800644 }
Doug Zongkerf93d8162009-09-22 15:16:02 -0700645 } else if (!menu_only) {
Doug Zongkerddd6a282009-06-09 12:22:33 -0700646 chosen_item = action;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800647 }
Doug Zongkerf93d8162009-09-22 15:16:02 -0700648 }
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800649
Doug Zongker211aebc2011-10-28 15:13:10 -0700650 ui->EndMenu();
Doug Zongkerf93d8162009-09-22 15:16:02 -0700651 return chosen_item;
652}
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800653
Doug Zongker8674a722010-09-15 11:08:23 -0700654static int compare_string(const void* a, const void* b) {
655 return strcmp(*(const char**)a, *(const char**)b);
656}
657
Doug Zongker93950222014-07-08 14:10:23 -0700658// Returns a malloc'd path, or NULL.
Elliott Hughes30694c92015-03-25 15:16:51 -0700659static char* browse_directory(const char* path, Device* device) {
Michael Ward9d2629c2011-06-23 22:14:24 -0700660 ensure_path_mounted(path);
Doug Zongkerc18eeb82010-09-21 16:49:26 -0700661
Elliott Hughes30694c92015-03-25 15:16:51 -0700662 DIR* d = opendir(path);
Doug Zongker8674a722010-09-15 11:08:23 -0700663 if (d == NULL) {
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -0700664 PLOG(ERROR) << "error opening " << path;
Doug Zongker93950222014-07-08 14:10:23 -0700665 return NULL;
Doug Zongker8674a722010-09-15 11:08:23 -0700666 }
667
Doug Zongker8674a722010-09-15 11:08:23 -0700668 int d_size = 0;
669 int d_alloc = 10;
Doug Zongker28ce47c2011-10-28 10:33:05 -0700670 char** dirs = (char**)malloc(d_alloc * sizeof(char*));
Doug Zongker8674a722010-09-15 11:08:23 -0700671 int z_size = 1;
672 int z_alloc = 10;
Doug Zongker28ce47c2011-10-28 10:33:05 -0700673 char** zips = (char**)malloc(z_alloc * sizeof(char*));
Doug Zongker8674a722010-09-15 11:08:23 -0700674 zips[0] = strdup("../");
675
Elliott Hughes30694c92015-03-25 15:16:51 -0700676 struct dirent* de;
Doug Zongker8674a722010-09-15 11:08:23 -0700677 while ((de = readdir(d)) != NULL) {
678 int name_len = strlen(de->d_name);
679
680 if (de->d_type == DT_DIR) {
681 // skip "." and ".." entries
682 if (name_len == 1 && de->d_name[0] == '.') continue;
683 if (name_len == 2 && de->d_name[0] == '.' &&
684 de->d_name[1] == '.') continue;
685
686 if (d_size >= d_alloc) {
687 d_alloc *= 2;
Doug Zongker28ce47c2011-10-28 10:33:05 -0700688 dirs = (char**)realloc(dirs, d_alloc * sizeof(char*));
Doug Zongker8674a722010-09-15 11:08:23 -0700689 }
Doug Zongker28ce47c2011-10-28 10:33:05 -0700690 dirs[d_size] = (char*)malloc(name_len + 2);
Doug Zongker8674a722010-09-15 11:08:23 -0700691 strcpy(dirs[d_size], de->d_name);
692 dirs[d_size][name_len] = '/';
693 dirs[d_size][name_len+1] = '\0';
694 ++d_size;
695 } else if (de->d_type == DT_REG &&
696 name_len >= 4 &&
697 strncasecmp(de->d_name + (name_len-4), ".zip", 4) == 0) {
698 if (z_size >= z_alloc) {
699 z_alloc *= 2;
Doug Zongker28ce47c2011-10-28 10:33:05 -0700700 zips = (char**)realloc(zips, z_alloc * sizeof(char*));
Doug Zongker8674a722010-09-15 11:08:23 -0700701 }
702 zips[z_size++] = strdup(de->d_name);
703 }
704 }
705 closedir(d);
706
707 qsort(dirs, d_size, sizeof(char*), compare_string);
708 qsort(zips, z_size, sizeof(char*), compare_string);
709
710 // append dirs to the zips list
711 if (d_size + z_size + 1 > z_alloc) {
712 z_alloc = d_size + z_size + 1;
Doug Zongker28ce47c2011-10-28 10:33:05 -0700713 zips = (char**)realloc(zips, z_alloc * sizeof(char*));
Doug Zongker8674a722010-09-15 11:08:23 -0700714 }
715 memcpy(zips + z_size, dirs, d_size * sizeof(char*));
716 free(dirs);
717 z_size += d_size;
718 zips[z_size] = NULL;
719
Elliott Hughes8fd86d72015-04-13 14:36:02 -0700720 const char* headers[] = { "Choose a package to install:", path, NULL };
Elliott Hughes30694c92015-03-25 15:16:51 -0700721
Doug Zongker93950222014-07-08 14:10:23 -0700722 char* result;
Doug Zongker8674a722010-09-15 11:08:23 -0700723 int chosen_item = 0;
Doug Zongker93950222014-07-08 14:10:23 -0700724 while (true) {
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700725 chosen_item = get_menu_selection(headers, zips, 1, chosen_item, device);
Doug Zongker8674a722010-09-15 11:08:23 -0700726
727 char* item = zips[chosen_item];
728 int item_len = strlen(item);
729 if (chosen_item == 0) { // item 0 is always "../"
Michael Ward9d2629c2011-06-23 22:14:24 -0700730 // go up but continue browsing (if the caller is update_directory)
Doug Zongker93950222014-07-08 14:10:23 -0700731 result = NULL;
Doug Zongker8674a722010-09-15 11:08:23 -0700732 break;
733 }
Doug Zongker93950222014-07-08 14:10:23 -0700734
735 char new_path[PATH_MAX];
736 strlcpy(new_path, path, PATH_MAX);
737 strlcat(new_path, "/", PATH_MAX);
738 strlcat(new_path, item, PATH_MAX);
739
740 if (item[item_len-1] == '/') {
741 // recurse down into a subdirectory
742 new_path[strlen(new_path)-1] = '\0'; // truncate the trailing '/'
743 result = browse_directory(new_path, device);
744 if (result) break;
745 } else {
746 // selected a zip file: return the malloc'd path to the caller.
747 result = strdup(new_path);
748 break;
749 }
750 }
Doug Zongker8674a722010-09-15 11:08:23 -0700751
Elliott Hughes30694c92015-03-25 15:16:51 -0700752 for (int i = 0; i < z_size; ++i) free(zips[i]);
Doug Zongker8674a722010-09-15 11:08:23 -0700753 free(zips);
Doug Zongker8674a722010-09-15 11:08:23 -0700754
755 return result;
756}
757
Elliott Hughes30694c92015-03-25 15:16:51 -0700758static bool yes_no(Device* device, const char* question1, const char* question2) {
Elliott Hughes8fd86d72015-04-13 14:36:02 -0700759 const char* headers[] = { question1, question2, NULL };
Elliott Hughes30694c92015-03-25 15:16:51 -0700760 const char* items[] = { " No", " Yes", NULL };
Doug Zongkerddd6a282009-06-09 12:22:33 -0700761
Elliott Hughes30694c92015-03-25 15:16:51 -0700762 int chosen_item = get_menu_selection(headers, items, 1, 0, device);
763 return (chosen_item == 1);
764}
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800765
Tao Baoe39a9bc2015-03-31 12:19:05 -0700766// Return true on success.
767static bool wipe_data(int should_confirm, Device* device) {
768 if (should_confirm && !yes_no(device, "Wipe all user data?", " THIS CAN NOT BE UNDONE!")) {
769 return false;
Doug Zongkerf93d8162009-09-22 15:16:02 -0700770 }
Doug Zongker1066d2c2009-04-01 13:57:40 -0700771
Tao Bao682c34b2015-04-07 17:16:35 -0700772 modified_flash = true;
773
Doug Zongker211aebc2011-10-28 15:13:10 -0700774 ui->Print("\n-- Wiping data...\n");
Elliott Hughes945548e2015-06-05 17:59:56 -0700775 bool success =
776 device->PreWipeData() &&
777 erase_volume("/data") &&
Tao Bao26112e52016-02-25 12:29:40 -0800778 (has_cache ? erase_volume("/cache") : true) &&
Elliott Hughes945548e2015-06-05 17:59:56 -0700779 device->PostWipeData();
780 ui->Print("Data wipe %s.\n", success ? "complete" : "failed");
781 return success;
Doug Zongkerf93d8162009-09-22 15:16:02 -0700782}
783
Tao Baoe39a9bc2015-03-31 12:19:05 -0700784// Return true on success.
785static bool wipe_cache(bool should_confirm, Device* device) {
Tao Bao26112e52016-02-25 12:29:40 -0800786 if (!has_cache) {
787 ui->Print("No /cache partition found.\n");
788 return false;
789 }
790
Elliott Hughes30694c92015-03-25 15:16:51 -0700791 if (should_confirm && !yes_no(device, "Wipe cache?", " THIS CAN NOT BE UNDONE!")) {
Tao Baoe39a9bc2015-03-31 12:19:05 -0700792 return false;
Elliott Hughes30694c92015-03-25 15:16:51 -0700793 }
794
Tao Bao682c34b2015-04-07 17:16:35 -0700795 modified_flash = true;
796
Elliott Hughes30694c92015-03-25 15:16:51 -0700797 ui->Print("\n-- Wiping cache...\n");
Elliott Hughes945548e2015-06-05 17:59:56 -0700798 bool success = erase_volume("/cache");
799 ui->Print("Cache wipe %s.\n", success ? "complete" : "failed");
800 return success;
Elliott Hughes30694c92015-03-25 15:16:51 -0700801}
802
Tao Bao862a4c12016-06-02 11:16:50 -0700803// Secure-wipe a given partition. It uses BLKSECDISCARD, if supported.
804// Otherwise, it goes with BLKDISCARD (if device supports BLKDISCARDZEROES) or
805// BLKZEROOUT.
806static bool secure_wipe_partition(const std::string& partition) {
807 android::base::unique_fd fd(TEMP_FAILURE_RETRY(open(partition.c_str(), O_WRONLY)));
808 if (fd == -1) {
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -0700809 PLOG(ERROR) << "failed to open \"" << partition << "\"";
Tao Bao862a4c12016-06-02 11:16:50 -0700810 return false;
811 }
812
813 uint64_t range[2] = {0, 0};
814 if (ioctl(fd, BLKGETSIZE64, &range[1]) == -1 || range[1] == 0) {
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -0700815 PLOG(ERROR) << "failed to get partition size";
Tao Bao862a4c12016-06-02 11:16:50 -0700816 return false;
817 }
818 printf("Secure-wiping \"%s\" from %" PRIu64 " to %" PRIu64 ".\n",
819 partition.c_str(), range[0], range[1]);
820
821 printf("Trying BLKSECDISCARD...\t");
822 if (ioctl(fd, BLKSECDISCARD, &range) == -1) {
823 printf("failed: %s\n", strerror(errno));
824
825 // Use BLKDISCARD if it zeroes out blocks, otherwise use BLKZEROOUT.
826 unsigned int zeroes;
827 if (ioctl(fd, BLKDISCARDZEROES, &zeroes) == 0 && zeroes != 0) {
828 printf("Trying BLKDISCARD...\t");
829 if (ioctl(fd, BLKDISCARD, &range) == -1) {
830 printf("failed: %s\n", strerror(errno));
831 return false;
832 }
833 } else {
834 printf("Trying BLKZEROOUT...\t");
835 if (ioctl(fd, BLKZEROOUT, &range) == -1) {
836 printf("failed: %s\n", strerror(errno));
837 return false;
838 }
839 }
840 }
841
842 printf("done\n");
843 return true;
844}
845
Yabin Cuifd99a312016-06-09 14:09:39 -0700846// Check if the wipe package matches expectation:
847// 1. verify the package.
848// 2. check metadata (ota-type, pre-device and serial number if having one).
849static bool check_wipe_package(size_t wipe_package_size) {
850 if (wipe_package_size == 0) {
851 LOG(ERROR) << "wipe_package_size is zero";
852 return false;
853 }
854 std::string wipe_package;
855 std::string err_str;
856 if (!read_wipe_package(&wipe_package, wipe_package_size, &err_str)) {
857 PLOG(ERROR) << "Failed to read wipe package";
858 return false;
859 }
860 if (!verify_package(reinterpret_cast<const unsigned char*>(wipe_package.data()),
861 wipe_package.size())) {
862 LOG(ERROR) << "Failed to verify package";
863 return false;
864 }
865
866 // Extract metadata
867 ZipArchiveHandle zip;
868 int err = OpenArchiveFromMemory(reinterpret_cast<void*>(&wipe_package[0]),
869 wipe_package.size(), "wipe_package", &zip);
870 if (err != 0) {
871 LOG(ERROR) << "Can't open wipe package : " << ErrorCodeString(err);
872 return false;
873 }
874 std::string metadata;
875 if (!read_metadata_from_package(&zip, &metadata)) {
876 CloseArchive(zip);
877 return false;
878 }
879 CloseArchive(zip);
880
881 // Check metadata
882 std::vector<std::string> lines = android::base::Split(metadata, "\n");
883 bool ota_type_matched = false;
884 bool device_type_matched = false;
885 bool has_serial_number = false;
886 bool serial_number_matched = false;
887 for (const auto& line : lines) {
888 if (line == "ota-type=BRICK") {
889 ota_type_matched = true;
890 } else if (android::base::StartsWith(line, "pre-device=")) {
891 std::string device_type = line.substr(strlen("pre-device="));
892 char real_device_type[PROPERTY_VALUE_MAX];
893 property_get("ro.build.product", real_device_type, "");
894 device_type_matched = (device_type == real_device_type);
895 } else if (android::base::StartsWith(line, "serialno=")) {
896 std::string serial_no = line.substr(strlen("serialno="));
897 char real_serial_no[PROPERTY_VALUE_MAX];
898 property_get("ro.serialno", real_serial_no, "");
899 has_serial_number = true;
900 serial_number_matched = (serial_no == real_serial_no);
901 }
902 }
903 return ota_type_matched && device_type_matched && (!has_serial_number || serial_number_matched);
904}
905
Yabin Cui8b309f62016-06-24 18:22:02 -0700906// Wipe the current A/B device, with a secure wipe of all the partitions in
907// RECOVERY_WIPE.
Yabin Cuifd99a312016-06-09 14:09:39 -0700908static bool wipe_ab_device(size_t wipe_package_size) {
Tao Bao862a4c12016-06-02 11:16:50 -0700909 ui->SetBackground(RecoveryUI::ERASING);
910 ui->SetProgressType(RecoveryUI::INDETERMINATE);
911
Yabin Cuifd99a312016-06-09 14:09:39 -0700912 if (!check_wipe_package(wipe_package_size)) {
913 LOG(ERROR) << "Failed to verify wipe package";
914 return false;
915 }
Tao Bao862a4c12016-06-02 11:16:50 -0700916 std::string partition_list;
Yabin Cui8b309f62016-06-24 18:22:02 -0700917 if (!android::base::ReadFileToString(RECOVERY_WIPE, &partition_list)) {
918 LOG(ERROR) << "failed to read \"" << RECOVERY_WIPE << "\"";
Tao Bao862a4c12016-06-02 11:16:50 -0700919 return false;
920 }
921
922 std::vector<std::string> lines = android::base::Split(partition_list, "\n");
923 for (const std::string& line : lines) {
924 std::string partition = android::base::Trim(line);
925 // Ignore '#' comment or empty lines.
926 if (android::base::StartsWith(partition, "#") || partition.empty()) {
927 continue;
928 }
929
930 // Proceed anyway even if it fails to wipe some partition.
931 secure_wipe_partition(partition);
932 }
933 return true;
934}
935
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700936static void choose_recovery_file(Device* device) {
Elliott Hughesc0491632015-05-06 12:40:05 -0700937 // "Back" + KEEP_LOG_COUNT * 2 + terminating nullptr entry
938 char* entries[1 + KEEP_LOG_COUNT * 2 + 1];
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700939 memset(entries, 0, sizeof(entries));
940
Tao Baobef39712015-05-04 18:50:27 -0700941 unsigned int n = 0;
Patrick Tjincd055ee2014-12-09 11:26:40 -0800942
Tianjie Xua54f75e2016-08-17 12:02:46 -0700943 if (has_cache) {
944 // Add LAST_LOG_FILE + LAST_LOG_FILE.x
945 // Add LAST_KMSG_FILE + LAST_KMSG_FILE.x
946 for (int i = 0; i < KEEP_LOG_COUNT; i++) {
947 char* log_file;
948 int ret;
949 ret = (i == 0) ? asprintf(&log_file, "%s", LAST_LOG_FILE) :
950 asprintf(&log_file, "%s.%d", LAST_LOG_FILE, i);
951 if (ret == -1) {
952 // memory allocation failure - return early. Should never happen.
953 return;
954 }
955 if ((ensure_path_mounted(log_file) != 0) || (access(log_file, R_OK) == -1)) {
956 free(log_file);
957 } else {
958 entries[n++] = log_file;
959 }
Tao Baobef39712015-05-04 18:50:27 -0700960
Tianjie Xua54f75e2016-08-17 12:02:46 -0700961 char* kmsg_file;
962 ret = (i == 0) ? asprintf(&kmsg_file, "%s", LAST_KMSG_FILE) :
963 asprintf(&kmsg_file, "%s.%d", LAST_KMSG_FILE, i);
964 if (ret == -1) {
965 // memory allocation failure - return early. Should never happen.
966 return;
967 }
968 if ((ensure_path_mounted(kmsg_file) != 0) || (access(kmsg_file, R_OK) == -1)) {
969 free(kmsg_file);
970 } else {
971 entries[n++] = kmsg_file;
972 }
Tao Baobef39712015-05-04 18:50:27 -0700973 }
Tianjie Xua54f75e2016-08-17 12:02:46 -0700974 } else {
975 // If cache partition is not found, view /tmp/recovery.log instead.
976 ui->Print("No /cache partition found.\n");
977 if (access(TEMPORARY_LOG_FILE, R_OK) == -1) {
978 return;
979 } else{
980 entries[n++] = strdup(TEMPORARY_LOG_FILE);
Tao Baobef39712015-05-04 18:50:27 -0700981 }
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700982 }
983
Elliott Hughesc0491632015-05-06 12:40:05 -0700984 entries[n++] = strdup("Back");
985
Tao Baobef39712015-05-04 18:50:27 -0700986 const char* headers[] = { "Select file to view", nullptr };
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700987
Elliott Hughes8de52072015-04-08 20:06:50 -0700988 while (true) {
Elliott Hughes30694c92015-03-25 15:16:51 -0700989 int chosen_item = get_menu_selection(headers, entries, 1, 0, device);
Elliott Hughesc0491632015-05-06 12:40:05 -0700990 if (strcmp(entries[chosen_item], "Back") == 0) break;
Elliott Hughes8de52072015-04-08 20:06:50 -0700991
Elliott Hughes8de52072015-04-08 20:06:50 -0700992 ui->ShowFile(entries[chosen_item]);
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700993 }
994
Tao Baobef39712015-05-04 18:50:27 -0700995 for (size_t i = 0; i < (sizeof(entries) / sizeof(*entries)); i++) {
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700996 free(entries[i]);
997 }
998}
999
Elliott Hughes498cda62016-04-14 16:49:04 -07001000static void run_graphics_test(Device* device) {
1001 // Switch to graphics screen.
1002 ui->ShowText(false);
1003
1004 ui->SetProgressType(RecoveryUI::INDETERMINATE);
1005 ui->SetBackground(RecoveryUI::INSTALLING_UPDATE);
1006 sleep(1);
1007
1008 ui->SetBackground(RecoveryUI::ERROR);
1009 sleep(1);
1010
1011 ui->SetBackground(RecoveryUI::NO_COMMAND);
1012 sleep(1);
1013
1014 ui->SetBackground(RecoveryUI::ERASING);
1015 sleep(1);
1016
1017 ui->SetBackground(RecoveryUI::INSTALLING_UPDATE);
1018
1019 ui->SetProgressType(RecoveryUI::DETERMINATE);
1020 ui->ShowProgress(1.0, 10.0);
1021 float fraction = 0.0;
1022 for (size_t i = 0; i < 100; ++i) {
1023 fraction += .01;
1024 ui->SetProgress(fraction);
1025 usleep(100000);
1026 }
1027
1028 ui->ShowText(true);
1029}
1030
Tao Baocdcf28f2016-01-13 15:05:20 -08001031// How long (in seconds) we wait for the fuse-provided package file to
1032// appear, before timing out.
1033#define SDCARD_INSTALL_TIMEOUT 10
1034
Tao Bao145d8612015-03-25 15:51:15 -07001035static int apply_from_sdcard(Device* device, bool* wipe_cache) {
Tao Bao682c34b2015-04-07 17:16:35 -07001036 modified_flash = true;
1037
Christian Poetzsch4ec58a42015-02-19 10:42:39 +00001038 if (ensure_path_mounted(SDCARD_ROOT) != 0) {
1039 ui->Print("\n-- Couldn't mount %s.\n", SDCARD_ROOT);
1040 return INSTALL_ERROR;
1041 }
1042
1043 char* path = browse_directory(SDCARD_ROOT, device);
1044 if (path == NULL) {
Elliott Hughes018ed312015-04-08 16:51:36 -07001045 ui->Print("\n-- No package file selected.\n");
caozhiyuanb4effb92015-06-10 16:46:38 +08001046 ensure_path_unmounted(SDCARD_ROOT);
Christian Poetzsch4ec58a42015-02-19 10:42:39 +00001047 return INSTALL_ERROR;
1048 }
1049
1050 ui->Print("\n-- Install %s ...\n", path);
1051 set_sdcard_update_bootloader_message();
Christian Poetzsch4ec58a42015-02-19 10:42:39 +00001052
Tao Baocdcf28f2016-01-13 15:05:20 -08001053 // We used to use fuse in a thread as opposed to a process. Since accessing
1054 // through fuse involves going from kernel to userspace to kernel, it leads
1055 // to deadlock when a page fault occurs. (Bug: 26313124)
1056 pid_t child;
1057 if ((child = fork()) == 0) {
1058 bool status = start_sdcard_fuse(path);
1059
1060 _exit(status ? EXIT_SUCCESS : EXIT_FAILURE);
1061 }
1062
1063 // FUSE_SIDELOAD_HOST_PATHNAME will start to exist once the fuse in child
1064 // process is ready.
1065 int result = INSTALL_ERROR;
1066 int status;
1067 bool waited = false;
1068 for (int i = 0; i < SDCARD_INSTALL_TIMEOUT; ++i) {
1069 if (waitpid(child, &status, WNOHANG) == -1) {
1070 result = INSTALL_ERROR;
1071 waited = true;
1072 break;
1073 }
1074
1075 struct stat sb;
1076 if (stat(FUSE_SIDELOAD_HOST_PATHNAME, &sb) == -1) {
1077 if (errno == ENOENT && i < SDCARD_INSTALL_TIMEOUT-1) {
1078 sleep(1);
1079 continue;
1080 } else {
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -07001081 LOG(ERROR) << "Timed out waiting for the fuse-provided package.";
Tao Baocdcf28f2016-01-13 15:05:20 -08001082 result = INSTALL_ERROR;
1083 kill(child, SIGKILL);
1084 break;
1085 }
1086 }
1087
1088 result = install_package(FUSE_SIDELOAD_HOST_PATHNAME, wipe_cache,
Tianjie Xu16255832016-04-30 11:49:59 -07001089 TEMPORARY_INSTALL_FILE, false, 0/*retry_count*/);
Tao Baocdcf28f2016-01-13 15:05:20 -08001090 break;
1091 }
Christian Poetzsch4ec58a42015-02-19 10:42:39 +00001092
Tao Baocdcf28f2016-01-13 15:05:20 -08001093 if (!waited) {
1094 // Calling stat() on this magic filename signals the fuse
1095 // filesystem to shut down.
1096 struct stat sb;
1097 stat(FUSE_SIDELOAD_HOST_EXIT_PATHNAME, &sb);
1098
1099 waitpid(child, &status, 0);
1100 }
1101
1102 if (!WIFEXITED(status) || WEXITSTATUS(status) != 0) {
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -07001103 LOG(ERROR) << "Error exit from the fuse process: " << WEXITSTATUS(status);
Tao Baocdcf28f2016-01-13 15:05:20 -08001104 }
1105
Christian Poetzsch4ec58a42015-02-19 10:42:39 +00001106 ensure_path_unmounted(SDCARD_ROOT);
Tao Baocdcf28f2016-01-13 15:05:20 -08001107 return result;
Christian Poetzsch4ec58a42015-02-19 10:42:39 +00001108}
1109
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001110// Return REBOOT, SHUTDOWN, or REBOOT_BOOTLOADER. Returning NO_ACTION
1111// means to take the default, which is to reboot or shutdown depending
1112// on if the --shutdown_after flag was passed to recovery.
1113static Device::BuiltinAction
Doug Zongker6c8553d2012-09-24 10:40:47 -07001114prompt_and_wait(Device* device, int status) {
Doug Zongkerf93d8162009-09-22 15:16:02 -07001115 for (;;) {
Tianjie Xuc14d95d2016-03-24 11:50:34 -07001116 finish_recovery();
Doug Zongker6c8553d2012-09-24 10:40:47 -07001117 switch (status) {
1118 case INSTALL_SUCCESS:
1119 case INSTALL_NONE:
1120 ui->SetBackground(RecoveryUI::NO_COMMAND);
1121 break;
1122
1123 case INSTALL_ERROR:
1124 case INSTALL_CORRUPT:
1125 ui->SetBackground(RecoveryUI::ERROR);
1126 break;
1127 }
Doug Zongker211aebc2011-10-28 15:13:10 -07001128 ui->SetProgressType(RecoveryUI::EMPTY);
Doug Zongkerf93d8162009-09-22 15:16:02 -07001129
Elliott Hughes8fd86d72015-04-13 14:36:02 -07001130 int chosen_item = get_menu_selection(nullptr, device->GetMenuItems(), 0, 0, device);
Doug Zongkerf93d8162009-09-22 15:16:02 -07001131
1132 // device-specific code may take some action here. It may
1133 // return one of the core actions handled in the switch
1134 // statement below.
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001135 Device::BuiltinAction chosen_action = device->InvokeMenuItem(chosen_item);
Doug Zongkerf93d8162009-09-22 15:16:02 -07001136
Elliott Hughes30694c92015-03-25 15:16:51 -07001137 bool should_wipe_cache = false;
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001138 switch (chosen_action) {
1139 case Device::NO_ACTION:
1140 break;
1141
Doug Zongkerdaefc1d2011-10-31 09:34:15 -07001142 case Device::REBOOT:
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001143 case Device::SHUTDOWN:
1144 case Device::REBOOT_BOOTLOADER:
1145 return chosen_action;
Doug Zongkerf93d8162009-09-22 15:16:02 -07001146
Doug Zongkerdaefc1d2011-10-31 09:34:15 -07001147 case Device::WIPE_DATA:
1148 wipe_data(ui->IsTextVisible(), device);
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001149 if (!ui->IsTextVisible()) return Device::NO_ACTION;
Doug Zongkerf93d8162009-09-22 15:16:02 -07001150 break;
1151
Doug Zongkerdaefc1d2011-10-31 09:34:15 -07001152 case Device::WIPE_CACHE:
Elliott Hughes30694c92015-03-25 15:16:51 -07001153 wipe_cache(ui->IsTextVisible(), device);
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001154 if (!ui->IsTextVisible()) return Device::NO_ACTION;
Doug Zongkerf93d8162009-09-22 15:16:02 -07001155 break;
1156
Christian Poetzsch4ec58a42015-02-19 10:42:39 +00001157 case Device::APPLY_ADB_SIDELOAD:
Elliott Hughesec283402015-04-10 10:01:53 -07001158 case Device::APPLY_SDCARD:
Christian Poetzsch4ec58a42015-02-19 10:42:39 +00001159 {
1160 bool adb = (chosen_action == Device::APPLY_ADB_SIDELOAD);
1161 if (adb) {
Elliott Hughes30694c92015-03-25 15:16:51 -07001162 status = apply_from_adb(ui, &should_wipe_cache, TEMPORARY_INSTALL_FILE);
Doug Zongkerd0181b82011-10-19 10:51:12 -07001163 } else {
Elliott Hughes30694c92015-03-25 15:16:51 -07001164 status = apply_from_sdcard(device, &should_wipe_cache);
Doug Zongkerd0181b82011-10-19 10:51:12 -07001165 }
Doug Zongker945fc682014-07-10 10:50:39 -07001166
Elliott Hughes30694c92015-03-25 15:16:51 -07001167 if (status == INSTALL_SUCCESS && should_wipe_cache) {
Tao Baoe39a9bc2015-03-31 12:19:05 -07001168 if (!wipe_cache(false, device)) {
1169 status = INSTALL_ERROR;
1170 }
Christian Poetzsch4ec58a42015-02-19 10:42:39 +00001171 }
1172
Tao Baoc679f932015-03-30 09:43:49 -07001173 if (status != INSTALL_SUCCESS) {
1174 ui->SetBackground(RecoveryUI::ERROR);
1175 ui->Print("Installation aborted.\n");
1176 copy_logs();
1177 } else if (!ui->IsTextVisible()) {
1178 return Device::NO_ACTION; // reboot if logs aren't visible
1179 } else {
1180 ui->Print("\nInstall from %s complete.\n", adb ? "ADB" : "SD card");
Doug Zongker8674a722010-09-15 11:08:23 -07001181 }
Doug Zongkerf93d8162009-09-22 15:16:02 -07001182 }
1183 break;
Doug Zongkerdaefc1d2011-10-31 09:34:15 -07001184
Elliott Hughesec283402015-04-10 10:01:53 -07001185 case Device::VIEW_RECOVERY_LOGS:
1186 choose_recovery_file(device);
Michael Ward9d2629c2011-06-23 22:14:24 -07001187 break;
Doug Zongker9270a202012-01-09 15:16:13 -08001188
Elliott Hughes498cda62016-04-14 16:49:04 -07001189 case Device::RUN_GRAPHICS_TEST:
1190 run_graphics_test(device);
1191 break;
1192
Elliott Hughesec283402015-04-10 10:01:53 -07001193 case Device::MOUNT_SYSTEM:
Tao Baoabb8f772015-07-30 14:43:27 -07001194 // For a system image built with the root directory (i.e.
1195 // system_root_image == "true"), we mount it to /system_root, and symlink /system
1196 // to /system_root/system to make adb shell work (the symlink is created through
1197 // the build system).
1198 // Bug: 22855115
Elliott Hughescb220402016-09-23 15:30:55 -07001199 if (android::base::GetBoolProperty("ro.build.system_root_image", false)) {
Tao Baoabb8f772015-07-30 14:43:27 -07001200 if (ensure_path_mounted_at("/", "/system_root") != -1) {
1201 ui->Print("Mounted /system.\n");
1202 }
1203 } else {
1204 if (ensure_path_mounted("/system") != -1) {
1205 ui->Print("Mounted /system.\n");
1206 }
Elliott Hughesec283402015-04-10 10:01:53 -07001207 }
Tao Baoabb8f772015-07-30 14:43:27 -07001208
Nick Kralevicha9ad0322014-10-22 18:38:48 -07001209 break;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001210 }
1211 }
1212}
1213
1214static void
Oscar Montemayor05231562009-11-30 08:40:57 -08001215print_property(const char *key, const char *name, void *cookie) {
Doug Zongker56c51052010-07-01 09:18:44 -07001216 printf("%s=%s\n", key, name);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001217}
1218
Tao Baoac9d94d2016-11-03 11:37:15 -07001219static std::string load_locale_from_cache() {
1220 if (ensure_path_mounted(LOCALE_FILE) != 0) {
1221 LOG(ERROR) << "Can't mount " << LOCALE_FILE;
1222 return "";
Doug Zongker02ec6b82012-08-22 17:26:40 -07001223 }
Tao Baoac9d94d2016-11-03 11:37:15 -07001224
1225 std::string content;
1226 if (!android::base::ReadFileToString(LOCALE_FILE, &content)) {
1227 PLOG(ERROR) << "Can't read " << LOCALE_FILE;
1228 return "";
1229 }
1230
1231 return android::base::Trim(content);
Doug Zongker02ec6b82012-08-22 17:26:40 -07001232}
1233
Tao Baoac9d94d2016-11-03 11:37:15 -07001234void ui_print(const char* format, ...) {
1235 std::string buffer;
Doug Zongker7c3ae452013-05-14 11:03:02 -07001236 va_list ap;
1237 va_start(ap, format);
Tao Baoac9d94d2016-11-03 11:37:15 -07001238 android::base::StringAppendV(&buffer, format, ap);
Doug Zongker7c3ae452013-05-14 11:03:02 -07001239 va_end(ap);
1240
Tao Baoac9d94d2016-11-03 11:37:15 -07001241 if (ui != nullptr) {
1242 ui->Print("%s", buffer.c_str());
Doug Zongker7c3ae452013-05-14 11:03:02 -07001243 } else {
Tao Baoac9d94d2016-11-03 11:37:15 -07001244 fputs(buffer.c_str(), stdout);
Doug Zongker7c3ae452013-05-14 11:03:02 -07001245 }
1246}
1247
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -07001248static constexpr char log_characters[] = "VDIWEF";
1249
1250void UiLogger(android::base::LogId id, android::base::LogSeverity severity,
1251 const char* tag, const char* file, unsigned int line,
1252 const char* message) {
Tao Baoac9d94d2016-11-03 11:37:15 -07001253 if (severity >= android::base::ERROR && ui != nullptr) {
1254 ui->Print("E:%s\n", message);
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -07001255 } else {
1256 fprintf(stdout, "%c:%s\n", log_characters[severity], message);
1257 }
1258}
1259
Yabin Cui99281df2016-02-17 12:21:52 -08001260static bool is_battery_ok() {
1261 struct healthd_config healthd_config = {
1262 .batteryStatusPath = android::String8(android::String8::kEmptyString),
1263 .batteryHealthPath = android::String8(android::String8::kEmptyString),
1264 .batteryPresentPath = android::String8(android::String8::kEmptyString),
1265 .batteryCapacityPath = android::String8(android::String8::kEmptyString),
1266 .batteryVoltagePath = android::String8(android::String8::kEmptyString),
1267 .batteryTemperaturePath = android::String8(android::String8::kEmptyString),
1268 .batteryTechnologyPath = android::String8(android::String8::kEmptyString),
1269 .batteryCurrentNowPath = android::String8(android::String8::kEmptyString),
1270 .batteryCurrentAvgPath = android::String8(android::String8::kEmptyString),
1271 .batteryChargeCounterPath = android::String8(android::String8::kEmptyString),
1272 .batteryFullChargePath = android::String8(android::String8::kEmptyString),
1273 .batteryCycleCountPath = android::String8(android::String8::kEmptyString),
1274 .energyCounter = NULL,
1275 .boot_min_cap = 0,
1276 .screen_on = NULL
1277 };
1278 healthd_board_init(&healthd_config);
1279
1280 android::BatteryMonitor monitor;
1281 monitor.init(&healthd_config);
1282
1283 int wait_second = 0;
1284 while (true) {
1285 int charge_status = monitor.getChargeStatus();
1286 // Treat unknown status as charged.
1287 bool charged = (charge_status != android::BATTERY_STATUS_DISCHARGING &&
1288 charge_status != android::BATTERY_STATUS_NOT_CHARGING);
1289 android::BatteryProperty capacity;
1290 android::status_t status = monitor.getProperty(android::BATTERY_PROP_CAPACITY, &capacity);
1291 ui_print("charge_status %d, charged %d, status %d, capacity %lld\n", charge_status,
1292 charged, status, capacity.valueInt64);
1293 // At startup, the battery drivers in devices like N5X/N6P take some time to load
1294 // the battery profile. Before the load finishes, it reports value 50 as a fake
1295 // capacity. BATTERY_READ_TIMEOUT_IN_SEC is set that the battery drivers are expected
1296 // to finish loading the battery profile earlier than 10 seconds after kernel startup.
1297 if (status == 0 && capacity.valueInt64 == 50) {
1298 if (wait_second < BATTERY_READ_TIMEOUT_IN_SEC) {
1299 sleep(1);
1300 wait_second++;
1301 continue;
1302 }
1303 }
1304 // If we can't read battery percentage, it may be a device without battery. In this
1305 // situation, use 100 as a fake battery percentage.
1306 if (status != 0) {
1307 capacity.valueInt64 = 100;
1308 }
1309 return (charged && capacity.valueInt64 >= BATTERY_WITH_CHARGER_OK_PERCENTAGE) ||
1310 (!charged && capacity.valueInt64 >= BATTERY_OK_PERCENTAGE);
1311 }
1312}
1313
Tianjie Xu3c62b672016-02-05 18:25:58 -08001314static void set_retry_bootloader_message(int retry_count, int argc, char** argv) {
Tianjie Xubd56f152016-09-28 16:32:10 -07001315 std::vector<std::string> options;
Tianjie Xu3c62b672016-02-05 18:25:58 -08001316 for (int i = 1; i < argc; ++i) {
1317 if (strstr(argv[i], "retry_count") == nullptr) {
Tianjie Xubd56f152016-09-28 16:32:10 -07001318 options.push_back(argv[i]);
Tianjie Xu3c62b672016-02-05 18:25:58 -08001319 }
1320 }
1321
Tianjie Xubd56f152016-09-28 16:32:10 -07001322 // Increment the retry counter by 1.
1323 options.push_back(android::base::StringPrintf("--retry_count=%d", retry_count+1));
Yabin Cui8b309f62016-06-24 18:22:02 -07001324 std::string err;
Tianjie Xubd56f152016-09-28 16:32:10 -07001325 if (!write_bootloader_message(options, &err)) {
Yabin Cui8b309f62016-06-24 18:22:02 -07001326 LOG(ERROR) << err;
1327 }
Tianjie Xu3c62b672016-02-05 18:25:58 -08001328}
1329
Tianjie Xu06e57ac2016-07-11 14:04:08 -07001330static bool bootreason_in_blacklist() {
1331 char bootreason[PROPERTY_VALUE_MAX];
1332 if (property_get("ro.boot.bootreason", bootreason, nullptr) > 0) {
1333 for (const auto& str : bootreason_blacklist) {
1334 if (strcasecmp(str.c_str(), bootreason) == 0) {
1335 return true;
1336 }
1337 }
1338 }
1339 return false;
1340}
1341
1342static void log_failure_code(ErrorCode code, const char *update_package) {
1343 std::vector<std::string> log_buffer = {
1344 update_package,
1345 "0", // install result
1346 "error: " + std::to_string(code),
1347 };
1348 std::string log_content = android::base::Join(log_buffer, "\n");
1349 if (!android::base::WriteStringToFile(log_content, TEMPORARY_INSTALL_FILE)) {
Tao Baoac9d94d2016-11-03 11:37:15 -07001350 PLOG(ERROR) << "failed to write " << TEMPORARY_INSTALL_FILE;
Tianjie Xu06e57ac2016-07-11 14:04:08 -07001351 }
1352
1353 // Also write the info into last_log.
1354 LOG(INFO) << log_content;
1355}
1356
Yabin Cui99281df2016-02-17 12:21:52 -08001357int main(int argc, char **argv) {
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -07001358 // We don't have logcat yet under recovery; so we'll print error on screen and
1359 // log to stdout (which is redirected to recovery.log) as we used to do.
1360 android::base::InitLogging(argv, &UiLogger);
1361
Mark Salyzyna4f701a2016-03-09 14:58:16 -08001362 // Take last pmsg contents and rewrite it to the current pmsg session.
1363 static const char filter[] = "recovery/";
1364 // Do we need to rotate?
1365 bool doRotate = false;
Tianjie Xue113e4d2016-10-21 17:46:13 -07001366
Mark Salyzyna4f701a2016-03-09 14:58:16 -08001367 __android_log_pmsg_file_read(
1368 LOG_ID_SYSTEM, ANDROID_LOG_INFO, filter,
1369 logbasename, &doRotate);
1370 // Take action to refresh pmsg contents
1371 __android_log_pmsg_file_read(
1372 LOG_ID_SYSTEM, ANDROID_LOG_INFO, filter,
1373 logrotate, &doRotate);
1374
Doug Zongker9270a202012-01-09 15:16:13 -08001375 // If this binary is started with the single argument "--adbd",
1376 // instead of being the normal recovery binary, it turns into kind
1377 // of a stripped-down version of adbd that only supports the
1378 // 'sideload' command. Note this must be a real argument, not
1379 // anything in the command file or bootloader control block; the
1380 // only way recovery should be run with this argument is when it
1381 // starts a copy of itself from the apply_from_adb() function.
1382 if (argc == 2 && strcmp(argv[1], "--adbd") == 0) {
Josh Gaoacb2a2f2016-08-26 18:24:34 -07001383 minadbd_main();
Doug Zongker9270a202012-01-09 15:16:13 -08001384 return 0;
1385 }
1386
Tao Bao04ca4262015-09-10 15:32:24 -07001387 time_t start = time(NULL);
1388
1389 // redirect_stdio should be called only in non-sideload mode. Otherwise
1390 // we may have two logger instances with different timestamps.
1391 redirect_stdio(TEMPORARY_LOG_FILE);
1392
Doug Zongker19a8e242014-01-21 09:25:41 -08001393 printf("Starting recovery (pid %d) on %s", getpid(), ctime(&start));
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001394
Doug Zongkerd4208f92010-09-20 12:16:13 -07001395 load_volume_table();
Tao Bao26112e52016-02-25 12:29:40 -08001396 has_cache = volume_for_path(CACHE_ROOT) != nullptr;
1397
Tao Baof0ed1592016-12-02 11:32:19 -08001398 std::vector<std::string> args = get_args(argc, argv);
1399 std::vector<char*> args_to_parse(args.size());
1400 std::transform(args.cbegin(), args.cend(), args_to_parse.begin(),
1401 [](const std::string& arg) { return const_cast<char*>(arg.c_str()); });
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001402
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001403 const char *update_package = NULL;
Tao Baoe39a9bc2015-03-31 12:19:05 -07001404 bool should_wipe_data = false;
Tao Baoc679f932015-03-30 09:43:49 -07001405 bool should_wipe_cache = false;
Yabin Cui8b309f62016-06-24 18:22:02 -07001406 bool should_wipe_ab = false;
Yabin Cuifd99a312016-06-09 14:09:39 -07001407 size_t wipe_package_size = 0;
Tao Bao145d8612015-03-25 15:51:15 -07001408 bool show_text = false;
Tao Baoc679f932015-03-30 09:43:49 -07001409 bool sideload = false;
1410 bool sideload_auto_reboot = false;
Doug Zongkere5d5ac72012-04-12 11:01:22 -07001411 bool just_exit = false;
Doug Zongkerb1d12632014-03-18 10:32:12 -07001412 bool shutdown_after = false;
Tianjie Xu3c62b672016-02-05 18:25:58 -08001413 int retry_count = 0;
Tianjie Xu35926c42016-04-28 18:06:26 -07001414 bool security_update = false;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001415
1416 int arg;
Tao Bao862a4c12016-06-02 11:16:50 -07001417 int option_index;
Tao Baof0ed1592016-12-02 11:32:19 -08001418 while ((arg = getopt_long(args_to_parse.size(), args_to_parse.data(), "", OPTIONS,
1419 &option_index)) != -1) {
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001420 switch (arg) {
Tianjie Xu3c62b672016-02-05 18:25:58 -08001421 case 'n': android::base::ParseInt(optarg, &retry_count, 0); break;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001422 case 'u': update_package = optarg; break;
Tao Baoe39a9bc2015-03-31 12:19:05 -07001423 case 'w': should_wipe_data = true; break;
Tao Baoc679f932015-03-30 09:43:49 -07001424 case 'c': should_wipe_cache = true; break;
Tao Bao145d8612015-03-25 15:51:15 -07001425 case 't': show_text = true; break;
Tao Baoc679f932015-03-30 09:43:49 -07001426 case 's': sideload = true; break;
1427 case 'a': sideload = true; sideload_auto_reboot = true; break;
Doug Zongkere5d5ac72012-04-12 11:01:22 -07001428 case 'x': just_exit = true; break;
Doug Zongker02ec6b82012-08-22 17:26:40 -07001429 case 'l': locale = optarg; break;
Doug Zongkerc87bab12013-11-25 13:53:25 -08001430 case 'g': {
1431 if (stage == NULL || *stage == '\0') {
1432 char buffer[20] = "1/";
1433 strncat(buffer, optarg, sizeof(buffer)-3);
1434 stage = strdup(buffer);
1435 }
1436 break;
1437 }
Doug Zongkerb1d12632014-03-18 10:32:12 -07001438 case 'p': shutdown_after = true; break;
Jeff Sharkeya6e13ae2014-09-24 11:46:17 -07001439 case 'r': reason = optarg; break;
Tianjie Xu35926c42016-04-28 18:06:26 -07001440 case 'e': security_update = true; break;
Tao Bao862a4c12016-06-02 11:16:50 -07001441 case 0: {
Yabin Cui8b309f62016-06-24 18:22:02 -07001442 if (strcmp(OPTIONS[option_index].name, "wipe_ab") == 0) {
1443 should_wipe_ab = true;
Tao Bao862a4c12016-06-02 11:16:50 -07001444 break;
Yabin Cuifd99a312016-06-09 14:09:39 -07001445 } else if (strcmp(OPTIONS[option_index].name, "wipe_package_size") == 0) {
1446 android::base::ParseUint(optarg, &wipe_package_size);
1447 break;
Tao Bao862a4c12016-06-02 11:16:50 -07001448 }
1449 break;
1450 }
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001451 case '?':
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -07001452 LOG(ERROR) << "Invalid command argument";
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001453 continue;
1454 }
1455 }
1456
Tao Baoac9d94d2016-11-03 11:37:15 -07001457 if (locale.empty()) {
1458 if (has_cache) {
1459 locale = load_locale_from_cache();
1460 }
1461
1462 if (locale.empty()) {
1463 locale = DEFAULT_LOCALE;
1464 }
Doug Zongker02ec6b82012-08-22 17:26:40 -07001465 }
Tao Baoac9d94d2016-11-03 11:37:15 -07001466
1467 printf("locale is [%s]\n", locale.c_str());
Doug Zongker0d32f252014-02-13 15:07:56 -08001468 printf("stage is [%s]\n", stage);
Jeff Sharkeya6e13ae2014-09-24 11:46:17 -07001469 printf("reason is [%s]\n", reason);
Doug Zongker02ec6b82012-08-22 17:26:40 -07001470
1471 Device* device = make_device();
1472 ui = device->GetUI();
1473
Tao Baoac9d94d2016-11-03 11:37:15 -07001474 ui->SetLocale(locale.c_str());
Doug Zongker02ec6b82012-08-22 17:26:40 -07001475 ui->Init();
Tianjie Xu35926c42016-04-28 18:06:26 -07001476 // Set background string to "installing security update" for security update,
1477 // otherwise set it to "installing system update".
1478 ui->SetSystemUpdateText(security_update);
Doug Zongkerc87bab12013-11-25 13:53:25 -08001479
1480 int st_cur, st_max;
1481 if (stage != NULL && sscanf(stage, "%d/%d", &st_cur, &st_max) == 2) {
1482 ui->SetStage(st_cur, st_max);
1483 }
1484
Doug Zongker02ec6b82012-08-22 17:26:40 -07001485 ui->SetBackground(RecoveryUI::NONE);
1486 if (show_text) ui->ShowText(true);
1487
Stephen Smalley779701d2012-02-09 14:13:23 -05001488 struct selinux_opt seopts[] = {
Tao Baoac9d94d2016-11-03 11:37:15 -07001489 { SELABEL_OPT_PATH, "/file_contexts" }
Stephen Smalley779701d2012-02-09 14:13:23 -05001490 };
1491
1492 sehandle = selabel_open(SELABEL_CTX_FILE, seopts, 1);
1493
1494 if (!sehandle) {
Doug Zongkerfafc85b2013-07-09 12:29:45 -07001495 ui->Print("Warning: No file_contexts\n");
Stephen Smalley779701d2012-02-09 14:13:23 -05001496 }
Stephen Smalley779701d2012-02-09 14:13:23 -05001497
Doug Zongkerdaefc1d2011-10-31 09:34:15 -07001498 device->StartRecovery();
Doug Zongkerefa1bab2010-02-01 15:59:12 -08001499
Doug Zongker56c51052010-07-01 09:18:44 -07001500 printf("Command:");
Tao Baof0ed1592016-12-02 11:32:19 -08001501 for (const auto& arg : args) {
1502 printf(" \"%s\"", arg.c_str());
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001503 }
Tao Baof038ca02016-12-10 09:24:50 -08001504 printf("\n\n");
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001505
1506 property_list(print_property, NULL);
Doug Zongker56c51052010-07-01 09:18:44 -07001507 printf("\n");
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001508
Elliott Hughesbb78d622015-04-09 20:51:08 -07001509 ui->Print("Supported API: %d\n", RECOVERY_API_VERSION);
1510
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001511 int status = INSTALL_SUCCESS;
1512
Doug Zongker540d57f2011-01-18 13:36:58 -08001513 if (update_package != NULL) {
Tao Bao56870012016-04-29 15:37:05 -07001514 // It's not entirely true that we will modify the flash. But we want
1515 // to log the update attempt since update_package is non-NULL.
1516 modified_flash = true;
1517
Yabin Cui99281df2016-02-17 12:21:52 -08001518 if (!is_battery_ok()) {
1519 ui->Print("battery capacity is not enough for installing package, needed is %d%%\n",
1520 BATTERY_OK_PERCENTAGE);
Tianjie Xu16255832016-04-30 11:49:59 -07001521 // Log the error code to last_install when installation skips due to
1522 // low battery.
Tianjie Xu06e57ac2016-07-11 14:04:08 -07001523 log_failure_code(kLowBattery, update_package);
1524 status = INSTALL_SKIPPED;
1525 } else if (bootreason_in_blacklist()) {
1526 // Skip update-on-reboot when bootreason is kernel_panic or similar
1527 ui->Print("bootreason is in the blacklist; skip OTA installation\n");
1528 log_failure_code(kBootreasonInBlacklist, update_package);
Yabin Cui99281df2016-02-17 12:21:52 -08001529 status = INSTALL_SKIPPED;
1530 } else {
1531 status = install_package(update_package, &should_wipe_cache,
Tianjie Xu16255832016-04-30 11:49:59 -07001532 TEMPORARY_INSTALL_FILE, true, retry_count);
Yabin Cui99281df2016-02-17 12:21:52 -08001533 if (status == INSTALL_SUCCESS && should_wipe_cache) {
1534 wipe_cache(false, device);
1535 }
1536 if (status != INSTALL_SUCCESS) {
1537 ui->Print("Installation aborted.\n");
Tianjie Xu3c62b672016-02-05 18:25:58 -08001538 // When I/O error happens, reboot and retry installation EIO_RETRY_COUNT
1539 // times before we abandon this OTA update.
1540 if (status == INSTALL_RETRY && retry_count < EIO_RETRY_COUNT) {
1541 copy_logs();
1542 set_retry_bootloader_message(retry_count, argc, argv);
1543 // Print retry count on screen.
1544 ui->Print("Retry attempt %d\n", retry_count);
Doug Zongker7c3ae452013-05-14 11:03:02 -07001545
Tianjie Xu3c62b672016-02-05 18:25:58 -08001546 // Reboot and retry the update
Elliott Hughescb220402016-09-23 15:30:55 -07001547 if (!android::base::SetProperty(ANDROID_RB_PROPERTY, "reboot,recovery")) {
Tianjie Xu3c62b672016-02-05 18:25:58 -08001548 ui->Print("Reboot failed\n");
1549 } else {
1550 while (true) {
1551 pause();
1552 }
1553 }
1554 }
Yabin Cui99281df2016-02-17 12:21:52 -08001555 // If this is an eng or userdebug build, then automatically
1556 // turn the text display on if the script fails so the error
1557 // message is visible.
1558 if (is_ro_debuggable()) {
1559 ui->ShowText(true);
1560 }
Doug Zongker7c3ae452013-05-14 11:03:02 -07001561 }
1562 }
Tao Baoe39a9bc2015-03-31 12:19:05 -07001563 } else if (should_wipe_data) {
1564 if (!wipe_data(false, device)) {
1565 status = INSTALL_ERROR;
1566 }
Tao Baoc679f932015-03-30 09:43:49 -07001567 } else if (should_wipe_cache) {
Tao Baoe39a9bc2015-03-31 12:19:05 -07001568 if (!wipe_cache(false, device)) {
1569 status = INSTALL_ERROR;
1570 }
Yabin Cui8b309f62016-06-24 18:22:02 -07001571 } else if (should_wipe_ab) {
Yabin Cuifd99a312016-06-09 14:09:39 -07001572 if (!wipe_ab_device(wipe_package_size)) {
Tao Bao862a4c12016-06-02 11:16:50 -07001573 status = INSTALL_ERROR;
1574 }
Tao Baoc679f932015-03-30 09:43:49 -07001575 } else if (sideload) {
1576 // 'adb reboot sideload' acts the same as user presses key combinations
1577 // to enter the sideload mode. When 'sideload-auto-reboot' is used, text
1578 // display will NOT be turned on by default. And it will reboot after
1579 // sideload finishes even if there are errors. Unless one turns on the
1580 // text display during the installation. This is to enable automated
1581 // testing.
1582 if (!sideload_auto_reboot) {
1583 ui->ShowText(true);
1584 }
1585 status = apply_from_adb(ui, &should_wipe_cache, TEMPORARY_INSTALL_FILE);
1586 if (status == INSTALL_SUCCESS && should_wipe_cache) {
Tao Baoe39a9bc2015-03-31 12:19:05 -07001587 if (!wipe_cache(false, device)) {
1588 status = INSTALL_ERROR;
1589 }
Tao Baoc679f932015-03-30 09:43:49 -07001590 }
1591 ui->Print("\nInstall from ADB complete (status: %d).\n", status);
1592 if (sideload_auto_reboot) {
1593 ui->Print("Rebooting automatically.\n");
1594 }
Doug Zongkere5d5ac72012-04-12 11:01:22 -07001595 } else if (!just_exit) {
Doug Zongker02ec6b82012-08-22 17:26:40 -07001596 status = INSTALL_NONE; // No command specified
1597 ui->SetBackground(RecoveryUI::NO_COMMAND);
Tao Bao785d22c2015-05-04 09:34:29 -07001598
1599 // http://b/17489952
1600 // If this is an eng or userdebug build, automatically turn on the
1601 // text display if no command is specified.
1602 if (is_ro_debuggable()) {
1603 ui->ShowText(true);
1604 }
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001605 }
1606
Tao Baoc679f932015-03-30 09:43:49 -07001607 if (!sideload_auto_reboot && (status == INSTALL_ERROR || status == INSTALL_CORRUPT)) {
Doug Zongkerf24fd7e2013-07-02 11:43:25 -07001608 copy_logs();
Doug Zongker02ec6b82012-08-22 17:26:40 -07001609 ui->SetBackground(RecoveryUI::ERROR);
1610 }
Tao Baoc679f932015-03-30 09:43:49 -07001611
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001612 Device::BuiltinAction after = shutdown_after ? Device::SHUTDOWN : Device::REBOOT;
Yabin Cui99281df2016-02-17 12:21:52 -08001613 if ((status != INSTALL_SUCCESS && status != INSTALL_SKIPPED && !sideload_auto_reboot) ||
1614 ui->IsTextVisible()) {
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001615 Device::BuiltinAction temp = prompt_and_wait(device, status);
Tao Baoc679f932015-03-30 09:43:49 -07001616 if (temp != Device::NO_ACTION) {
1617 after = temp;
1618 }
Doug Zongker8674a722010-09-15 11:08:23 -07001619 }
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001620
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001621 // Save logs and clean up before rebooting or shutting down.
Tianjie Xuc14d95d2016-03-24 11:50:34 -07001622 finish_recovery();
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001623
1624 switch (after) {
1625 case Device::SHUTDOWN:
1626 ui->Print("Shutting down...\n");
Elliott Hughescb220402016-09-23 15:30:55 -07001627 android::base::SetProperty(ANDROID_RB_PROPERTY, "shutdown,");
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001628 break;
1629
1630 case Device::REBOOT_BOOTLOADER:
1631 ui->Print("Rebooting to bootloader...\n");
Elliott Hughescb220402016-09-23 15:30:55 -07001632 android::base::SetProperty(ANDROID_RB_PROPERTY, "reboot,bootloader");
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001633 break;
1634
1635 default:
1636 ui->Print("Rebooting...\n");
Elliott Hughescb220402016-09-23 15:30:55 -07001637 android::base::SetProperty(ANDROID_RB_PROPERTY, "reboot,");
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001638 break;
Doug Zongkerb1d12632014-03-18 10:32:12 -07001639 }
Tao Bao75238632015-05-27 14:46:17 -07001640 while (true) {
Tao Baoac9d94d2016-11-03 11:37:15 -07001641 pause();
Tao Bao75238632015-05-27 14:46:17 -07001642 }
1643 // Should be unreachable.
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001644 return EXIT_SUCCESS;
1645}