blob: e777c46cd2198fa24e76c08cd19146c69083fb41 [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
172 * 7b; the user reboots (pulling the battery, etc) into the main system
173 * 8. main() calls maybe_install_firmware_update()
174 * ** if the update contained radio/hboot firmware **:
175 * 8a. m_i_f_u() writes BCB with "boot-recovery" and "--wipe_cache"
176 * -- after this, rebooting will reformat cache & restart main system --
177 * 8b. m_i_f_u() writes firmware image into raw cache partition
178 * 8c. m_i_f_u() writes BCB with "update-radio/hboot" and "--wipe_cache"
179 * -- after this, rebooting will attempt to reinstall firmware --
180 * 8d. bootloader tries to flash firmware
181 * 8e. bootloader writes BCB with "boot-recovery" (keeping "--wipe_cache")
182 * -- after this, rebooting will reformat cache & restart main system --
Doug Zongkerd4208f92010-09-20 12:16:13 -0700183 * 8f. erase_volume() reformats /cache
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800184 * 8g. finish_recovery() erases BCB
185 * -- after this, rebooting will (try to) restart the main system --
186 * 9. main() calls reboot() to boot main system
187 */
188
Doug Zongkerd4208f92010-09-20 12:16:13 -0700189// open a given path, mounting partitions as necessary
Tao Bao04ca4262015-09-10 15:32:24 -0700190FILE* fopen_path(const char *path, const char *mode) {
Doug Zongkerd4208f92010-09-20 12:16:13 -0700191 if (ensure_path_mounted(path) != 0) {
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -0700192 LOG(ERROR) << "Can't mount " << path;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800193 return NULL;
194 }
195
196 // When writing, try to create the containing directory, if necessary.
197 // Use generous permissions, the system (init.rc) will reset them.
Stephen Smalley779701d2012-02-09 14:13:23 -0500198 if (strchr("wa", mode[0])) dirCreateHierarchy(path, 0777, NULL, 1, sehandle);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800199
200 FILE *fp = fopen(path, mode);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800201 return fp;
202}
203
Tao Bao04ca4262015-09-10 15:32:24 -0700204// close a file, log an error if the error indicator is set
205static void check_and_fclose(FILE *fp, const char *name) {
206 fflush(fp);
Tao Baoac9d94d2016-11-03 11:37:15 -0700207 if (fsync(fileno(fp)) == -1) {
208 PLOG(ERROR) << "Failed to fsync " << name;
209 }
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -0700210 if (ferror(fp)) {
211 PLOG(ERROR) << "Error in " << name;
212 }
Tao Bao04ca4262015-09-10 15:32:24 -0700213 fclose(fp);
214}
215
Elliott Hughesf14af802015-02-10 14:46:14 -0800216bool is_ro_debuggable() {
Elliott Hughescb220402016-09-23 15:30:55 -0700217 return android::base::GetBoolProperty("ro.debuggable", false);
Elliott Hughesf14af802015-02-10 14:46:14 -0800218}
219
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700220static void redirect_stdio(const char* filename) {
Tao Bao04ca4262015-09-10 15:32:24 -0700221 int pipefd[2];
222 if (pipe(pipefd) == -1) {
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -0700223 PLOG(ERROR) << "pipe failed";
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700224
Tao Bao04ca4262015-09-10 15:32:24 -0700225 // Fall back to traditional logging mode without timestamps.
226 // If these fail, there's not really anywhere to complain...
227 freopen(filename, "a", stdout); setbuf(stdout, NULL);
228 freopen(filename, "a", stderr); setbuf(stderr, NULL);
229
230 return;
231 }
232
233 pid_t pid = fork();
234 if (pid == -1) {
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -0700235 PLOG(ERROR) << "fork failed";
Tao Bao04ca4262015-09-10 15:32:24 -0700236
237 // Fall back to traditional logging mode without timestamps.
238 // If these fail, there's not really anywhere to complain...
239 freopen(filename, "a", stdout); setbuf(stdout, NULL);
240 freopen(filename, "a", stderr); setbuf(stderr, NULL);
241
242 return;
243 }
244
245 if (pid == 0) {
246 /// Close the unused write end.
247 close(pipefd[1]);
248
249 auto start = std::chrono::steady_clock::now();
250
251 // Child logger to actually write to the log file.
252 FILE* log_fp = fopen(filename, "a");
253 if (log_fp == nullptr) {
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -0700254 PLOG(ERROR) << "fopen \"" << filename << "\" failed";
Tao Bao04ca4262015-09-10 15:32:24 -0700255 close(pipefd[0]);
256 _exit(1);
257 }
258
259 FILE* pipe_fp = fdopen(pipefd[0], "r");
260 if (pipe_fp == nullptr) {
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -0700261 PLOG(ERROR) << "fdopen failed";
Tao Bao04ca4262015-09-10 15:32:24 -0700262 check_and_fclose(log_fp, filename);
263 close(pipefd[0]);
264 _exit(1);
265 }
266
267 char* line = nullptr;
268 size_t len = 0;
269 while (getline(&line, &len, pipe_fp) != -1) {
270 auto now = std::chrono::steady_clock::now();
271 double duration = std::chrono::duration_cast<std::chrono::duration<double>>(
272 now - start).count();
273 if (line[0] == '\n') {
274 fprintf(log_fp, "[%12.6lf]\n", duration);
275 } else {
276 fprintf(log_fp, "[%12.6lf] %s", duration, line);
277 }
278 fflush(log_fp);
279 }
280
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -0700281 PLOG(ERROR) << "getline failed";
Tao Bao04ca4262015-09-10 15:32:24 -0700282
283 free(line);
284 check_and_fclose(log_fp, filename);
285 close(pipefd[0]);
286 _exit(1);
287 } else {
288 // Redirect stdout/stderr to the logger process.
289 // Close the unused read end.
290 close(pipefd[0]);
291
292 setbuf(stdout, nullptr);
293 setbuf(stderr, nullptr);
294
295 if (dup2(pipefd[1], STDOUT_FILENO) == -1) {
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -0700296 PLOG(ERROR) << "dup2 stdout failed";
Tao Bao04ca4262015-09-10 15:32:24 -0700297 }
298 if (dup2(pipefd[1], STDERR_FILENO) == -1) {
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -0700299 PLOG(ERROR) << "dup2 stderr failed";
Tao Bao04ca4262015-09-10 15:32:24 -0700300 }
301
302 close(pipefd[1]);
303 }
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800304}
305
306// command line args come from, in decreasing precedence:
307// - the actual command line
308// - the bootloader control block (one per line, after "recovery")
309// - the contents of COMMAND_FILE (one per line)
Tao Baof0ed1592016-12-02 11:32:19 -0800310static std::vector<std::string> get_args(const int argc, char** const argv) {
311 CHECK_GT(argc, 0);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800312
Tao Baof0ed1592016-12-02 11:32:19 -0800313 bootloader_message boot = {};
314 std::string err;
315 if (!read_bootloader_message(&boot, &err)) {
316 LOG(ERROR) << err;
317 // If fails, leave a zeroed bootloader_message.
318 boot = {};
319 }
320 stage = strndup(boot.stage, sizeof(boot.stage));
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800321
Tao Baof0ed1592016-12-02 11:32:19 -0800322 if (boot.command[0] != 0) {
323 std::string boot_command = std::string(boot.command, sizeof(boot.command));
324 LOG(INFO) << "Boot command: " << boot_command;
325 }
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800326
Tao Baof0ed1592016-12-02 11:32:19 -0800327 if (boot.status[0] != 0) {
328 std::string boot_status = std::string(boot.status, sizeof(boot.status));
329 LOG(INFO) << "Boot status: " << boot_status;
330 }
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800331
Tao Baof0ed1592016-12-02 11:32:19 -0800332 std::vector<std::string> args(argv, argv + argc);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800333
Tao Baof0ed1592016-12-02 11:32:19 -0800334 // --- if arguments weren't supplied, look in the bootloader control block
335 if (argc == 1) {
336 boot.recovery[sizeof(boot.recovery) - 1] = '\0'; // Ensure termination
337 std::string boot_recovery(boot.recovery);
338 std::vector<std::string> tokens = android::base::Split(boot_recovery, "\n");
339 if (!tokens.empty() && tokens[0] == "recovery") {
340 for (auto it = tokens.begin() + 1; it != tokens.end(); it++) {
341 // Skip empty and '\0'-filled tokens.
342 if (!it->empty() && (*it)[0] != '\0') args.push_back(std::move(*it));
343 }
344 LOG(INFO) << "Got " << args.size() << " arguments from boot message";
345 } else if (boot.recovery[0] != 0) {
346 LOG(ERROR) << "Bad boot message: \"" << boot_recovery << "\"";
347 }
348 }
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800349
Tao Baof0ed1592016-12-02 11:32:19 -0800350 // --- if that doesn't work, try the command file (if we have /cache).
351 if (argc == 1 && has_cache) {
352 std::string content;
Tao Bao7d34fa12016-12-08 18:10:48 -0800353 if (ensure_path_mounted(COMMAND_FILE) == 0 &&
354 android::base::ReadFileToString(COMMAND_FILE, &content)) {
Tao Baof0ed1592016-12-02 11:32:19 -0800355 std::vector<std::string> tokens = android::base::Split(content, "\n");
Tao Bao7d34fa12016-12-08 18:10:48 -0800356 // All the arguments in COMMAND_FILE are needed (unlike the BCB message,
357 // COMMAND_FILE doesn't use filename as the first argument).
358 for (auto it = tokens.begin(); it != tokens.end(); it++) {
Tao Baof0ed1592016-12-02 11:32:19 -0800359 // Skip empty and '\0'-filled tokens.
360 if (!it->empty() && (*it)[0] != '\0') args.push_back(std::move(*it));
361 }
362 LOG(INFO) << "Got " << args.size() << " arguments from " << COMMAND_FILE;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800363 }
Tao Baof0ed1592016-12-02 11:32:19 -0800364 }
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800365
Tao Baof0ed1592016-12-02 11:32:19 -0800366 // Write the arguments (excluding the filename in args[0]) back into the
367 // bootloader control block. So the device will always boot into recovery to
368 // finish the pending work, until finish_recovery() is called.
369 std::vector<std::string> options(args.cbegin() + 1, args.cend());
370 if (!write_bootloader_message(options, &err)) {
371 LOG(ERROR) << err;
372 }
373
374 return args;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800375}
376
Doug Zongker34c98df2009-08-18 12:05:45 -0700377static void
Oscar Montemayor05231562009-11-30 08:40:57 -0800378set_sdcard_update_bootloader_message() {
Tianjie Xubd56f152016-09-28 16:32:10 -0700379 std::vector<std::string> options;
Yabin Cui8b309f62016-06-24 18:22:02 -0700380 std::string err;
Tianjie Xubd56f152016-09-28 16:32:10 -0700381 if (!write_bootloader_message(options, &err)) {
Yabin Cui8b309f62016-06-24 18:22:02 -0700382 LOG(ERROR) << err;
383 }
Doug Zongker34c98df2009-08-18 12:05:45 -0700384}
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800385
Tao Baobef39712015-05-04 18:50:27 -0700386// Read from kernel log into buffer and write out to file.
387static void save_kernel_log(const char* destination) {
388 int klog_buf_len = klogctl(KLOG_SIZE_BUFFER, 0, 0);
Patrick Tjincd055ee2014-12-09 11:26:40 -0800389 if (klog_buf_len <= 0) {
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -0700390 PLOG(ERROR) << "Error getting klog size";
Patrick Tjincd055ee2014-12-09 11:26:40 -0800391 return;
392 }
393
Tao Baobef39712015-05-04 18:50:27 -0700394 std::string buffer(klog_buf_len, 0);
395 int n = klogctl(KLOG_READ_ALL, &buffer[0], klog_buf_len);
396 if (n == -1) {
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -0700397 PLOG(ERROR) << "Error in reading klog";
Patrick Tjincd055ee2014-12-09 11:26:40 -0800398 return;
399 }
Tao Baobef39712015-05-04 18:50:27 -0700400 buffer.resize(n);
401 android::base::WriteStringToFile(buffer, destination);
Patrick Tjincd055ee2014-12-09 11:26:40 -0800402}
403
Mark Salyzyna4f701a2016-03-09 14:58:16 -0800404// write content to the current pmsg session.
405static ssize_t __pmsg_write(const char *filename, const char *buf, size_t len) {
406 return __android_log_pmsg_file_write(LOG_ID_SYSTEM, ANDROID_LOG_INFO,
407 filename, buf, len);
408}
409
410static void copy_log_file_to_pmsg(const char* source, const char* destination) {
411 std::string content;
412 android::base::ReadFileToString(source, &content);
413 __pmsg_write(destination, content.c_str(), content.length());
414}
415
Tao Baof0124322015-04-11 02:04:11 +0000416// How much of the temp log we have copied to the copy in cache.
Chih-Hung Hsieh54a27472016-04-18 11:30:55 -0700417static off_t tmplog_offset = 0;
Tao Baof0124322015-04-11 02:04:11 +0000418
Tao Baobef39712015-05-04 18:50:27 -0700419static void copy_log_file(const char* source, const char* destination, bool append) {
420 FILE* dest_fp = fopen_path(destination, append ? "a" : "w");
421 if (dest_fp == nullptr) {
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -0700422 PLOG(ERROR) << "Can't open " << destination;
Doug Zongker2c3539e2010-09-29 13:21:30 -0700423 } else {
Tao Baobef39712015-05-04 18:50:27 -0700424 FILE* source_fp = fopen(source, "r");
425 if (source_fp != nullptr) {
Tao Baof0124322015-04-11 02:04:11 +0000426 if (append) {
Chih-Hung Hsieh54a27472016-04-18 11:30:55 -0700427 fseeko(source_fp, tmplog_offset, SEEK_SET); // Since last write
Doug Zongker2c3539e2010-09-29 13:21:30 -0700428 }
429 char buf[4096];
Tao Baobef39712015-05-04 18:50:27 -0700430 size_t bytes;
431 while ((bytes = fread(buf, 1, sizeof(buf), source_fp)) != 0) {
432 fwrite(buf, 1, bytes, dest_fp);
Doug Zongker2c3539e2010-09-29 13:21:30 -0700433 }
Tao Baobef39712015-05-04 18:50:27 -0700434 if (append) {
Chih-Hung Hsieh54a27472016-04-18 11:30:55 -0700435 tmplog_offset = ftello(source_fp);
Tao Baobef39712015-05-04 18:50:27 -0700436 }
437 check_and_fclose(source_fp, source);
Doug Zongker2c3539e2010-09-29 13:21:30 -0700438 }
Tao Baobef39712015-05-04 18:50:27 -0700439 check_and_fclose(dest_fp, destination);
Doug Zongker2c3539e2010-09-29 13:21:30 -0700440 }
441}
442
Tao Bao682c34b2015-04-07 17:16:35 -0700443static void copy_logs() {
444 // We only rotate and record the log of the current session if there are
445 // actual attempts to modify the flash, such as wipes, installs from BCB
446 // or menu selections. This is to avoid unnecessary rotation (and
447 // possible deletion) of log files, if it does not do anything loggable.
448 if (!modified_flash) {
449 return;
450 }
451
Mark Salyzyna4f701a2016-03-09 14:58:16 -0800452 // Always write to pmsg, this allows the OTA logs to be caught in logcat -L
453 copy_log_file_to_pmsg(TEMPORARY_LOG_FILE, LAST_LOG_FILE);
454 copy_log_file_to_pmsg(TEMPORARY_INSTALL_FILE, LAST_INSTALL_FILE);
455
456 // We can do nothing for now if there's no /cache partition.
457 if (!has_cache) {
458 return;
459 }
460
Tianjie Xue113e4d2016-10-21 17:46:13 -0700461 ensure_path_mounted(LAST_LOG_FILE);
462 ensure_path_mounted(LAST_KMSG_FILE);
463 rotate_logs(LAST_LOG_FILE, LAST_KMSG_FILE);
Tao Bao682c34b2015-04-07 17:16:35 -0700464
Doug Zongkerf24fd7e2013-07-02 11:43:25 -0700465 // Copy logs to cache so the system can find out what happened.
Tao Baof0124322015-04-11 02:04:11 +0000466 copy_log_file(TEMPORARY_LOG_FILE, LOG_FILE, true);
467 copy_log_file(TEMPORARY_LOG_FILE, LAST_LOG_FILE, false);
468 copy_log_file(TEMPORARY_INSTALL_FILE, LAST_INSTALL_FILE, false);
469 save_kernel_log(LAST_KMSG_FILE);
Doug Zongkerf24fd7e2013-07-02 11:43:25 -0700470 chmod(LOG_FILE, 0600);
471 chown(LOG_FILE, 1000, 1000); // system user
Tao Baof0124322015-04-11 02:04:11 +0000472 chmod(LAST_KMSG_FILE, 0600);
473 chown(LAST_KMSG_FILE, 1000, 1000); // system user
Doug Zongkerf24fd7e2013-07-02 11:43:25 -0700474 chmod(LAST_LOG_FILE, 0640);
475 chmod(LAST_INSTALL_FILE, 0644);
476 sync();
477}
478
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800479// clear the recovery command and prepare to boot a (hopefully working) system,
Tianjie Xuc14d95d2016-03-24 11:50:34 -0700480// copy our log file to cache as well (for the system to read). This function is
481// idempotent: call it as many times as you like.
Tao Baoac9d94d2016-11-03 11:37:15 -0700482static void finish_recovery() {
Doug Zongker4f33e552012-08-23 13:16:12 -0700483 // Save the locale to cache, so if recovery is next started up
484 // without a --locale argument (eg, directly from the bootloader)
485 // it will use the last-known locale.
Tao Baoac9d94d2016-11-03 11:37:15 -0700486 if (!locale.empty() && has_cache) {
487 LOG(INFO) << "Saving locale \"" << locale << "\"";
488
489 FILE* fp = fopen_path(LOCALE_FILE, "w");
490 if (!android::base::WriteStringToFd(locale, fileno(fp))) {
491 PLOG(ERROR) << "Failed to save locale to " << LOCALE_FILE;
Mark Salyzyna4f701a2016-03-09 14:58:16 -0800492 }
Tao Baoac9d94d2016-11-03 11:37:15 -0700493 check_and_fclose(fp, LOCALE_FILE);
Doug Zongker4f33e552012-08-23 13:16:12 -0700494 }
495
Doug Zongkerf24fd7e2013-07-02 11:43:25 -0700496 copy_logs();
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800497
Doug Zongkere5d5ac72012-04-12 11:01:22 -0700498 // Reset to normal system boot so recovery won't cycle indefinitely.
Yabin Cui8b309f62016-06-24 18:22:02 -0700499 std::string err;
Tianjie Xubd56f152016-09-28 16:32:10 -0700500 if (!clear_bootloader_message(&err)) {
Yabin Cui8b309f62016-06-24 18:22:02 -0700501 LOG(ERROR) << err;
502 }
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800503
504 // Remove the command file, so recovery won't repeat indefinitely.
Tao Bao26112e52016-02-25 12:29:40 -0800505 if (has_cache) {
506 if (ensure_path_mounted(COMMAND_FILE) != 0 || (unlink(COMMAND_FILE) && errno != ENOENT)) {
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -0700507 LOG(WARNING) << "Can't unlink " << COMMAND_FILE;
Tao Bao26112e52016-02-25 12:29:40 -0800508 }
509 ensure_path_unmounted(CACHE_ROOT);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800510 }
511
512 sync(); // For good measure.
513}
514
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700515typedef struct _saved_log_file {
516 char* name;
517 struct stat st;
518 unsigned char* data;
519 struct _saved_log_file* next;
520} saved_log_file;
521
Elliott Hughes945548e2015-06-05 17:59:56 -0700522static bool erase_volume(const char* volume) {
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700523 bool is_cache = (strcmp(volume, CACHE_ROOT) == 0);
Paul Lawrenced0db3372015-11-05 13:38:40 -0800524 bool is_data = (strcmp(volume, DATA_ROOT) == 0);
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700525
Doug Zongker02ec6b82012-08-22 17:26:40 -0700526 ui->SetBackground(RecoveryUI::ERASING);
Doug Zongker211aebc2011-10-28 15:13:10 -0700527 ui->SetProgressType(RecoveryUI::INDETERMINATE);
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700528
529 saved_log_file* head = NULL;
530
531 if (is_cache) {
Tao Baobef39712015-05-04 18:50:27 -0700532 // If we're reformatting /cache, we load any past logs
533 // (i.e. "/cache/recovery/last_*") and the current log
534 // ("/cache/recovery/log") into memory, so we can restore them after
535 // the reformat.
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700536
537 ensure_path_mounted(volume);
538
539 DIR* d;
540 struct dirent* de;
541 d = opendir(CACHE_LOG_DIR);
542 if (d) {
543 char path[PATH_MAX];
544 strcpy(path, CACHE_LOG_DIR);
545 strcat(path, "/");
546 int path_len = strlen(path);
547 while ((de = readdir(d)) != NULL) {
Tao Baobef39712015-05-04 18:50:27 -0700548 if (strncmp(de->d_name, "last_", 5) == 0 || strcmp(de->d_name, "log") == 0) {
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700549 saved_log_file* p = (saved_log_file*) malloc(sizeof(saved_log_file));
550 strcpy(path+path_len, de->d_name);
551 p->name = strdup(path);
552 if (stat(path, &(p->st)) == 0) {
553 // truncate files to 512kb
554 if (p->st.st_size > (1 << 19)) {
555 p->st.st_size = 1 << 19;
556 }
557 p->data = (unsigned char*) malloc(p->st.st_size);
558 FILE* f = fopen(path, "rb");
559 fread(p->data, 1, p->st.st_size, f);
560 fclose(f);
561 p->next = head;
562 head = p;
563 } else {
564 free(p);
565 }
566 }
567 }
568 closedir(d);
569 } else {
570 if (errno != ENOENT) {
571 printf("opendir failed: %s\n", strerror(errno));
572 }
573 }
574 }
575
Doug Zongker211aebc2011-10-28 15:13:10 -0700576 ui->Print("Formatting %s...\n", volume);
Doug Zongker2c3539e2010-09-29 13:21:30 -0700577
Doug Zongkerd0181b82011-10-19 10:51:12 -0700578 ensure_path_unmounted(volume);
Paul Lawrenced0db3372015-11-05 13:38:40 -0800579
580 int result;
581
582 if (is_data && reason && strcmp(reason, "convert_fbe") == 0) {
583 // Create convert_fbe breadcrumb file to signal to init
584 // to convert to file based encryption, not full disk encryption
Paul Lawrence661f8a62016-02-25 12:42:19 -0800585 if (mkdir(CONVERT_FBE_DIR, 0700) != 0) {
586 ui->Print("Failed to make convert_fbe dir %s\n", strerror(errno));
587 return true;
588 }
Paul Lawrenced0db3372015-11-05 13:38:40 -0800589 FILE* f = fopen(CONVERT_FBE_FILE, "wb");
590 if (!f) {
Paul Lawrence661f8a62016-02-25 12:42:19 -0800591 ui->Print("Failed to convert to file encryption %s\n", strerror(errno));
Paul Lawrenced0db3372015-11-05 13:38:40 -0800592 return true;
593 }
594 fclose(f);
595 result = format_volume(volume, CONVERT_FBE_DIR);
596 remove(CONVERT_FBE_FILE);
597 rmdir(CONVERT_FBE_DIR);
598 } else {
599 result = format_volume(volume);
600 }
Doug Zongkerd0181b82011-10-19 10:51:12 -0700601
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700602 if (is_cache) {
603 while (head) {
604 FILE* f = fopen_path(head->name, "wb");
605 if (f) {
606 fwrite(head->data, 1, head->st.st_size, f);
607 fclose(f);
608 chmod(head->name, head->st.st_mode);
609 chown(head->name, head->st.st_uid, head->st.st_gid);
610 }
611 free(head->name);
612 free(head->data);
613 saved_log_file* temp = head->next;
614 free(head);
615 head = temp;
616 }
617
Tao Baof0124322015-04-11 02:04:11 +0000618 // Any part of the log we'd copied to cache is now gone.
619 // Reset the pointer so we copy from the beginning of the temp
620 // log.
621 tmplog_offset = 0;
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700622 copy_logs();
Doug Zongker2c3539e2010-09-29 13:21:30 -0700623 }
624
Elliott Hughes945548e2015-06-05 17:59:56 -0700625 return (result == 0);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800626}
627
Doug Zongkerf93d8162009-09-22 15:16:02 -0700628static int
Doug Zongker28ce47c2011-10-28 10:33:05 -0700629get_menu_selection(const char* const * headers, const char* const * items,
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700630 int menu_only, int initial_selection, Device* device) {
Doug Zongkerf93d8162009-09-22 15:16:02 -0700631 // throw away keys pressed previously, so user doesn't
632 // accidentally trigger menu items.
Doug Zongker211aebc2011-10-28 15:13:10 -0700633 ui->FlushKeys();
Doug Zongkerf93d8162009-09-22 15:16:02 -0700634
Doug Zongker211aebc2011-10-28 15:13:10 -0700635 ui->StartMenu(headers, items, initial_selection);
Doug Zongker8674a722010-09-15 11:08:23 -0700636 int selected = initial_selection;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800637 int chosen_item = -1;
638
Doug Zongkerf93d8162009-09-22 15:16:02 -0700639 while (chosen_item < 0) {
Doug Zongker211aebc2011-10-28 15:13:10 -0700640 int key = ui->WaitKey();
641 int visible = ui->IsTextVisible();
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800642
Doug Zongker5cae4452011-01-25 13:15:30 -0800643 if (key == -1) { // ui_wait_key() timed out
Doug Zongker211aebc2011-10-28 15:13:10 -0700644 if (ui->WasTextEverVisible()) {
Doug Zongker5cae4452011-01-25 13:15:30 -0800645 continue;
646 } else {
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -0700647 LOG(INFO) << "timed out waiting for key input; rebooting.";
Doug Zongker211aebc2011-10-28 15:13:10 -0700648 ui->EndMenu();
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700649 return 0; // XXX fixme
Doug Zongker5cae4452011-01-25 13:15:30 -0800650 }
651 }
652
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700653 int action = device->HandleMenuKey(key, visible);
Doug Zongkerddd6a282009-06-09 12:22:33 -0700654
655 if (action < 0) {
656 switch (action) {
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700657 case Device::kHighlightUp:
Elliott Hughes642aaa72015-04-10 12:47:46 -0700658 selected = ui->SelectMenu(--selected);
Doug Zongkerddd6a282009-06-09 12:22:33 -0700659 break;
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700660 case Device::kHighlightDown:
Elliott Hughes642aaa72015-04-10 12:47:46 -0700661 selected = ui->SelectMenu(++selected);
Doug Zongkerddd6a282009-06-09 12:22:33 -0700662 break;
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700663 case Device::kInvokeItem:
Doug Zongkerddd6a282009-06-09 12:22:33 -0700664 chosen_item = selected;
665 break;
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700666 case Device::kNoAction:
Doug Zongkerddd6a282009-06-09 12:22:33 -0700667 break;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800668 }
Doug Zongkerf93d8162009-09-22 15:16:02 -0700669 } else if (!menu_only) {
Doug Zongkerddd6a282009-06-09 12:22:33 -0700670 chosen_item = action;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800671 }
Doug Zongkerf93d8162009-09-22 15:16:02 -0700672 }
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800673
Doug Zongker211aebc2011-10-28 15:13:10 -0700674 ui->EndMenu();
Doug Zongkerf93d8162009-09-22 15:16:02 -0700675 return chosen_item;
676}
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800677
Doug Zongker8674a722010-09-15 11:08:23 -0700678static int compare_string(const void* a, const void* b) {
679 return strcmp(*(const char**)a, *(const char**)b);
680}
681
Doug Zongker93950222014-07-08 14:10:23 -0700682// Returns a malloc'd path, or NULL.
Elliott Hughes30694c92015-03-25 15:16:51 -0700683static char* browse_directory(const char* path, Device* device) {
Michael Ward9d2629c2011-06-23 22:14:24 -0700684 ensure_path_mounted(path);
Doug Zongkerc18eeb82010-09-21 16:49:26 -0700685
Elliott Hughes30694c92015-03-25 15:16:51 -0700686 DIR* d = opendir(path);
Doug Zongker8674a722010-09-15 11:08:23 -0700687 if (d == NULL) {
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -0700688 PLOG(ERROR) << "error opening " << path;
Doug Zongker93950222014-07-08 14:10:23 -0700689 return NULL;
Doug Zongker8674a722010-09-15 11:08:23 -0700690 }
691
Doug Zongker8674a722010-09-15 11:08:23 -0700692 int d_size = 0;
693 int d_alloc = 10;
Doug Zongker28ce47c2011-10-28 10:33:05 -0700694 char** dirs = (char**)malloc(d_alloc * sizeof(char*));
Doug Zongker8674a722010-09-15 11:08:23 -0700695 int z_size = 1;
696 int z_alloc = 10;
Doug Zongker28ce47c2011-10-28 10:33:05 -0700697 char** zips = (char**)malloc(z_alloc * sizeof(char*));
Doug Zongker8674a722010-09-15 11:08:23 -0700698 zips[0] = strdup("../");
699
Elliott Hughes30694c92015-03-25 15:16:51 -0700700 struct dirent* de;
Doug Zongker8674a722010-09-15 11:08:23 -0700701 while ((de = readdir(d)) != NULL) {
702 int name_len = strlen(de->d_name);
703
704 if (de->d_type == DT_DIR) {
705 // skip "." and ".." entries
706 if (name_len == 1 && de->d_name[0] == '.') continue;
707 if (name_len == 2 && de->d_name[0] == '.' &&
708 de->d_name[1] == '.') continue;
709
710 if (d_size >= d_alloc) {
711 d_alloc *= 2;
Doug Zongker28ce47c2011-10-28 10:33:05 -0700712 dirs = (char**)realloc(dirs, d_alloc * sizeof(char*));
Doug Zongker8674a722010-09-15 11:08:23 -0700713 }
Doug Zongker28ce47c2011-10-28 10:33:05 -0700714 dirs[d_size] = (char*)malloc(name_len + 2);
Doug Zongker8674a722010-09-15 11:08:23 -0700715 strcpy(dirs[d_size], de->d_name);
716 dirs[d_size][name_len] = '/';
717 dirs[d_size][name_len+1] = '\0';
718 ++d_size;
719 } else if (de->d_type == DT_REG &&
720 name_len >= 4 &&
721 strncasecmp(de->d_name + (name_len-4), ".zip", 4) == 0) {
722 if (z_size >= z_alloc) {
723 z_alloc *= 2;
Doug Zongker28ce47c2011-10-28 10:33:05 -0700724 zips = (char**)realloc(zips, z_alloc * sizeof(char*));
Doug Zongker8674a722010-09-15 11:08:23 -0700725 }
726 zips[z_size++] = strdup(de->d_name);
727 }
728 }
729 closedir(d);
730
731 qsort(dirs, d_size, sizeof(char*), compare_string);
732 qsort(zips, z_size, sizeof(char*), compare_string);
733
734 // append dirs to the zips list
735 if (d_size + z_size + 1 > z_alloc) {
736 z_alloc = d_size + z_size + 1;
Doug Zongker28ce47c2011-10-28 10:33:05 -0700737 zips = (char**)realloc(zips, z_alloc * sizeof(char*));
Doug Zongker8674a722010-09-15 11:08:23 -0700738 }
739 memcpy(zips + z_size, dirs, d_size * sizeof(char*));
740 free(dirs);
741 z_size += d_size;
742 zips[z_size] = NULL;
743
Elliott Hughes8fd86d72015-04-13 14:36:02 -0700744 const char* headers[] = { "Choose a package to install:", path, NULL };
Elliott Hughes30694c92015-03-25 15:16:51 -0700745
Doug Zongker93950222014-07-08 14:10:23 -0700746 char* result;
Doug Zongker8674a722010-09-15 11:08:23 -0700747 int chosen_item = 0;
Doug Zongker93950222014-07-08 14:10:23 -0700748 while (true) {
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700749 chosen_item = get_menu_selection(headers, zips, 1, chosen_item, device);
Doug Zongker8674a722010-09-15 11:08:23 -0700750
751 char* item = zips[chosen_item];
752 int item_len = strlen(item);
753 if (chosen_item == 0) { // item 0 is always "../"
Michael Ward9d2629c2011-06-23 22:14:24 -0700754 // go up but continue browsing (if the caller is update_directory)
Doug Zongker93950222014-07-08 14:10:23 -0700755 result = NULL;
Doug Zongker8674a722010-09-15 11:08:23 -0700756 break;
757 }
Doug Zongker93950222014-07-08 14:10:23 -0700758
759 char new_path[PATH_MAX];
760 strlcpy(new_path, path, PATH_MAX);
761 strlcat(new_path, "/", PATH_MAX);
762 strlcat(new_path, item, PATH_MAX);
763
764 if (item[item_len-1] == '/') {
765 // recurse down into a subdirectory
766 new_path[strlen(new_path)-1] = '\0'; // truncate the trailing '/'
767 result = browse_directory(new_path, device);
768 if (result) break;
769 } else {
770 // selected a zip file: return the malloc'd path to the caller.
771 result = strdup(new_path);
772 break;
773 }
774 }
Doug Zongker8674a722010-09-15 11:08:23 -0700775
Elliott Hughes30694c92015-03-25 15:16:51 -0700776 for (int i = 0; i < z_size; ++i) free(zips[i]);
Doug Zongker8674a722010-09-15 11:08:23 -0700777 free(zips);
Doug Zongker8674a722010-09-15 11:08:23 -0700778
779 return result;
780}
781
Elliott Hughes30694c92015-03-25 15:16:51 -0700782static bool yes_no(Device* device, const char* question1, const char* question2) {
Elliott Hughes8fd86d72015-04-13 14:36:02 -0700783 const char* headers[] = { question1, question2, NULL };
Elliott Hughes30694c92015-03-25 15:16:51 -0700784 const char* items[] = { " No", " Yes", NULL };
Doug Zongkerddd6a282009-06-09 12:22:33 -0700785
Elliott Hughes30694c92015-03-25 15:16:51 -0700786 int chosen_item = get_menu_selection(headers, items, 1, 0, device);
787 return (chosen_item == 1);
788}
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800789
Tao Baoe39a9bc2015-03-31 12:19:05 -0700790// Return true on success.
791static bool wipe_data(int should_confirm, Device* device) {
792 if (should_confirm && !yes_no(device, "Wipe all user data?", " THIS CAN NOT BE UNDONE!")) {
793 return false;
Doug Zongkerf93d8162009-09-22 15:16:02 -0700794 }
Doug Zongker1066d2c2009-04-01 13:57:40 -0700795
Tao Bao682c34b2015-04-07 17:16:35 -0700796 modified_flash = true;
797
Doug Zongker211aebc2011-10-28 15:13:10 -0700798 ui->Print("\n-- Wiping data...\n");
Elliott Hughes945548e2015-06-05 17:59:56 -0700799 bool success =
800 device->PreWipeData() &&
801 erase_volume("/data") &&
Tao Bao26112e52016-02-25 12:29:40 -0800802 (has_cache ? erase_volume("/cache") : true) &&
Elliott Hughes945548e2015-06-05 17:59:56 -0700803 device->PostWipeData();
804 ui->Print("Data wipe %s.\n", success ? "complete" : "failed");
805 return success;
Doug Zongkerf93d8162009-09-22 15:16:02 -0700806}
807
Tao Baoe39a9bc2015-03-31 12:19:05 -0700808// Return true on success.
809static bool wipe_cache(bool should_confirm, Device* device) {
Tao Bao26112e52016-02-25 12:29:40 -0800810 if (!has_cache) {
811 ui->Print("No /cache partition found.\n");
812 return false;
813 }
814
Elliott Hughes30694c92015-03-25 15:16:51 -0700815 if (should_confirm && !yes_no(device, "Wipe cache?", " THIS CAN NOT BE UNDONE!")) {
Tao Baoe39a9bc2015-03-31 12:19:05 -0700816 return false;
Elliott Hughes30694c92015-03-25 15:16:51 -0700817 }
818
Tao Bao682c34b2015-04-07 17:16:35 -0700819 modified_flash = true;
820
Elliott Hughes30694c92015-03-25 15:16:51 -0700821 ui->Print("\n-- Wiping cache...\n");
Elliott Hughes945548e2015-06-05 17:59:56 -0700822 bool success = erase_volume("/cache");
823 ui->Print("Cache wipe %s.\n", success ? "complete" : "failed");
824 return success;
Elliott Hughes30694c92015-03-25 15:16:51 -0700825}
826
Tao Bao862a4c12016-06-02 11:16:50 -0700827// Secure-wipe a given partition. It uses BLKSECDISCARD, if supported.
828// Otherwise, it goes with BLKDISCARD (if device supports BLKDISCARDZEROES) or
829// BLKZEROOUT.
830static bool secure_wipe_partition(const std::string& partition) {
831 android::base::unique_fd fd(TEMP_FAILURE_RETRY(open(partition.c_str(), O_WRONLY)));
832 if (fd == -1) {
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -0700833 PLOG(ERROR) << "failed to open \"" << partition << "\"";
Tao Bao862a4c12016-06-02 11:16:50 -0700834 return false;
835 }
836
837 uint64_t range[2] = {0, 0};
838 if (ioctl(fd, BLKGETSIZE64, &range[1]) == -1 || range[1] == 0) {
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -0700839 PLOG(ERROR) << "failed to get partition size";
Tao Bao862a4c12016-06-02 11:16:50 -0700840 return false;
841 }
842 printf("Secure-wiping \"%s\" from %" PRIu64 " to %" PRIu64 ".\n",
843 partition.c_str(), range[0], range[1]);
844
845 printf("Trying BLKSECDISCARD...\t");
846 if (ioctl(fd, BLKSECDISCARD, &range) == -1) {
847 printf("failed: %s\n", strerror(errno));
848
849 // Use BLKDISCARD if it zeroes out blocks, otherwise use BLKZEROOUT.
850 unsigned int zeroes;
851 if (ioctl(fd, BLKDISCARDZEROES, &zeroes) == 0 && zeroes != 0) {
852 printf("Trying BLKDISCARD...\t");
853 if (ioctl(fd, BLKDISCARD, &range) == -1) {
854 printf("failed: %s\n", strerror(errno));
855 return false;
856 }
857 } else {
858 printf("Trying BLKZEROOUT...\t");
859 if (ioctl(fd, BLKZEROOUT, &range) == -1) {
860 printf("failed: %s\n", strerror(errno));
861 return false;
862 }
863 }
864 }
865
866 printf("done\n");
867 return true;
868}
869
Yabin Cuifd99a312016-06-09 14:09:39 -0700870// Check if the wipe package matches expectation:
871// 1. verify the package.
872// 2. check metadata (ota-type, pre-device and serial number if having one).
873static bool check_wipe_package(size_t wipe_package_size) {
874 if (wipe_package_size == 0) {
875 LOG(ERROR) << "wipe_package_size is zero";
876 return false;
877 }
878 std::string wipe_package;
879 std::string err_str;
880 if (!read_wipe_package(&wipe_package, wipe_package_size, &err_str)) {
881 PLOG(ERROR) << "Failed to read wipe package";
882 return false;
883 }
884 if (!verify_package(reinterpret_cast<const unsigned char*>(wipe_package.data()),
885 wipe_package.size())) {
886 LOG(ERROR) << "Failed to verify package";
887 return false;
888 }
889
890 // Extract metadata
891 ZipArchiveHandle zip;
892 int err = OpenArchiveFromMemory(reinterpret_cast<void*>(&wipe_package[0]),
893 wipe_package.size(), "wipe_package", &zip);
894 if (err != 0) {
895 LOG(ERROR) << "Can't open wipe package : " << ErrorCodeString(err);
896 return false;
897 }
898 std::string metadata;
899 if (!read_metadata_from_package(&zip, &metadata)) {
900 CloseArchive(zip);
901 return false;
902 }
903 CloseArchive(zip);
904
905 // Check metadata
906 std::vector<std::string> lines = android::base::Split(metadata, "\n");
907 bool ota_type_matched = false;
908 bool device_type_matched = false;
909 bool has_serial_number = false;
910 bool serial_number_matched = false;
911 for (const auto& line : lines) {
912 if (line == "ota-type=BRICK") {
913 ota_type_matched = true;
914 } else if (android::base::StartsWith(line, "pre-device=")) {
915 std::string device_type = line.substr(strlen("pre-device="));
916 char real_device_type[PROPERTY_VALUE_MAX];
917 property_get("ro.build.product", real_device_type, "");
918 device_type_matched = (device_type == real_device_type);
919 } else if (android::base::StartsWith(line, "serialno=")) {
920 std::string serial_no = line.substr(strlen("serialno="));
921 char real_serial_no[PROPERTY_VALUE_MAX];
922 property_get("ro.serialno", real_serial_no, "");
923 has_serial_number = true;
924 serial_number_matched = (serial_no == real_serial_no);
925 }
926 }
927 return ota_type_matched && device_type_matched && (!has_serial_number || serial_number_matched);
928}
929
Yabin Cui8b309f62016-06-24 18:22:02 -0700930// Wipe the current A/B device, with a secure wipe of all the partitions in
931// RECOVERY_WIPE.
Yabin Cuifd99a312016-06-09 14:09:39 -0700932static bool wipe_ab_device(size_t wipe_package_size) {
Tao Bao862a4c12016-06-02 11:16:50 -0700933 ui->SetBackground(RecoveryUI::ERASING);
934 ui->SetProgressType(RecoveryUI::INDETERMINATE);
935
Yabin Cuifd99a312016-06-09 14:09:39 -0700936 if (!check_wipe_package(wipe_package_size)) {
937 LOG(ERROR) << "Failed to verify wipe package";
938 return false;
939 }
Tao Bao862a4c12016-06-02 11:16:50 -0700940 std::string partition_list;
Yabin Cui8b309f62016-06-24 18:22:02 -0700941 if (!android::base::ReadFileToString(RECOVERY_WIPE, &partition_list)) {
942 LOG(ERROR) << "failed to read \"" << RECOVERY_WIPE << "\"";
Tao Bao862a4c12016-06-02 11:16:50 -0700943 return false;
944 }
945
946 std::vector<std::string> lines = android::base::Split(partition_list, "\n");
947 for (const std::string& line : lines) {
948 std::string partition = android::base::Trim(line);
949 // Ignore '#' comment or empty lines.
950 if (android::base::StartsWith(partition, "#") || partition.empty()) {
951 continue;
952 }
953
954 // Proceed anyway even if it fails to wipe some partition.
955 secure_wipe_partition(partition);
956 }
957 return true;
958}
959
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700960static void choose_recovery_file(Device* device) {
Elliott Hughesc0491632015-05-06 12:40:05 -0700961 // "Back" + KEEP_LOG_COUNT * 2 + terminating nullptr entry
962 char* entries[1 + KEEP_LOG_COUNT * 2 + 1];
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700963 memset(entries, 0, sizeof(entries));
964
Tao Baobef39712015-05-04 18:50:27 -0700965 unsigned int n = 0;
Patrick Tjincd055ee2014-12-09 11:26:40 -0800966
Tianjie Xua54f75e2016-08-17 12:02:46 -0700967 if (has_cache) {
968 // Add LAST_LOG_FILE + LAST_LOG_FILE.x
969 // Add LAST_KMSG_FILE + LAST_KMSG_FILE.x
970 for (int i = 0; i < KEEP_LOG_COUNT; i++) {
971 char* log_file;
972 int ret;
973 ret = (i == 0) ? asprintf(&log_file, "%s", LAST_LOG_FILE) :
974 asprintf(&log_file, "%s.%d", LAST_LOG_FILE, i);
975 if (ret == -1) {
976 // memory allocation failure - return early. Should never happen.
977 return;
978 }
979 if ((ensure_path_mounted(log_file) != 0) || (access(log_file, R_OK) == -1)) {
980 free(log_file);
981 } else {
982 entries[n++] = log_file;
983 }
Tao Baobef39712015-05-04 18:50:27 -0700984
Tianjie Xua54f75e2016-08-17 12:02:46 -0700985 char* kmsg_file;
986 ret = (i == 0) ? asprintf(&kmsg_file, "%s", LAST_KMSG_FILE) :
987 asprintf(&kmsg_file, "%s.%d", LAST_KMSG_FILE, i);
988 if (ret == -1) {
989 // memory allocation failure - return early. Should never happen.
990 return;
991 }
992 if ((ensure_path_mounted(kmsg_file) != 0) || (access(kmsg_file, R_OK) == -1)) {
993 free(kmsg_file);
994 } else {
995 entries[n++] = kmsg_file;
996 }
Tao Baobef39712015-05-04 18:50:27 -0700997 }
Tianjie Xua54f75e2016-08-17 12:02:46 -0700998 } else {
999 // If cache partition is not found, view /tmp/recovery.log instead.
1000 ui->Print("No /cache partition found.\n");
1001 if (access(TEMPORARY_LOG_FILE, R_OK) == -1) {
1002 return;
1003 } else{
1004 entries[n++] = strdup(TEMPORARY_LOG_FILE);
Tao Baobef39712015-05-04 18:50:27 -07001005 }
Nick Kralevicha9ad0322014-10-22 18:38:48 -07001006 }
1007
Elliott Hughesc0491632015-05-06 12:40:05 -07001008 entries[n++] = strdup("Back");
1009
Tao Baobef39712015-05-04 18:50:27 -07001010 const char* headers[] = { "Select file to view", nullptr };
Nick Kralevicha9ad0322014-10-22 18:38:48 -07001011
Elliott Hughes8de52072015-04-08 20:06:50 -07001012 while (true) {
Elliott Hughes30694c92015-03-25 15:16:51 -07001013 int chosen_item = get_menu_selection(headers, entries, 1, 0, device);
Elliott Hughesc0491632015-05-06 12:40:05 -07001014 if (strcmp(entries[chosen_item], "Back") == 0) break;
Elliott Hughes8de52072015-04-08 20:06:50 -07001015
Elliott Hughes8de52072015-04-08 20:06:50 -07001016 ui->ShowFile(entries[chosen_item]);
Nick Kralevicha9ad0322014-10-22 18:38:48 -07001017 }
1018
Tao Baobef39712015-05-04 18:50:27 -07001019 for (size_t i = 0; i < (sizeof(entries) / sizeof(*entries)); i++) {
Nick Kralevicha9ad0322014-10-22 18:38:48 -07001020 free(entries[i]);
1021 }
1022}
1023
Elliott Hughes498cda62016-04-14 16:49:04 -07001024static void run_graphics_test(Device* device) {
1025 // Switch to graphics screen.
1026 ui->ShowText(false);
1027
1028 ui->SetProgressType(RecoveryUI::INDETERMINATE);
1029 ui->SetBackground(RecoveryUI::INSTALLING_UPDATE);
1030 sleep(1);
1031
1032 ui->SetBackground(RecoveryUI::ERROR);
1033 sleep(1);
1034
1035 ui->SetBackground(RecoveryUI::NO_COMMAND);
1036 sleep(1);
1037
1038 ui->SetBackground(RecoveryUI::ERASING);
1039 sleep(1);
1040
1041 ui->SetBackground(RecoveryUI::INSTALLING_UPDATE);
1042
1043 ui->SetProgressType(RecoveryUI::DETERMINATE);
1044 ui->ShowProgress(1.0, 10.0);
1045 float fraction = 0.0;
1046 for (size_t i = 0; i < 100; ++i) {
1047 fraction += .01;
1048 ui->SetProgress(fraction);
1049 usleep(100000);
1050 }
1051
1052 ui->ShowText(true);
1053}
1054
Tao Baocdcf28f2016-01-13 15:05:20 -08001055// How long (in seconds) we wait for the fuse-provided package file to
1056// appear, before timing out.
1057#define SDCARD_INSTALL_TIMEOUT 10
1058
Tao Bao145d8612015-03-25 15:51:15 -07001059static int apply_from_sdcard(Device* device, bool* wipe_cache) {
Tao Bao682c34b2015-04-07 17:16:35 -07001060 modified_flash = true;
1061
Christian Poetzsch4ec58a42015-02-19 10:42:39 +00001062 if (ensure_path_mounted(SDCARD_ROOT) != 0) {
1063 ui->Print("\n-- Couldn't mount %s.\n", SDCARD_ROOT);
1064 return INSTALL_ERROR;
1065 }
1066
1067 char* path = browse_directory(SDCARD_ROOT, device);
1068 if (path == NULL) {
Elliott Hughes018ed312015-04-08 16:51:36 -07001069 ui->Print("\n-- No package file selected.\n");
caozhiyuanb4effb92015-06-10 16:46:38 +08001070 ensure_path_unmounted(SDCARD_ROOT);
Christian Poetzsch4ec58a42015-02-19 10:42:39 +00001071 return INSTALL_ERROR;
1072 }
1073
1074 ui->Print("\n-- Install %s ...\n", path);
1075 set_sdcard_update_bootloader_message();
Christian Poetzsch4ec58a42015-02-19 10:42:39 +00001076
Tao Baocdcf28f2016-01-13 15:05:20 -08001077 // We used to use fuse in a thread as opposed to a process. Since accessing
1078 // through fuse involves going from kernel to userspace to kernel, it leads
1079 // to deadlock when a page fault occurs. (Bug: 26313124)
1080 pid_t child;
1081 if ((child = fork()) == 0) {
1082 bool status = start_sdcard_fuse(path);
1083
1084 _exit(status ? EXIT_SUCCESS : EXIT_FAILURE);
1085 }
1086
1087 // FUSE_SIDELOAD_HOST_PATHNAME will start to exist once the fuse in child
1088 // process is ready.
1089 int result = INSTALL_ERROR;
1090 int status;
1091 bool waited = false;
1092 for (int i = 0; i < SDCARD_INSTALL_TIMEOUT; ++i) {
1093 if (waitpid(child, &status, WNOHANG) == -1) {
1094 result = INSTALL_ERROR;
1095 waited = true;
1096 break;
1097 }
1098
1099 struct stat sb;
1100 if (stat(FUSE_SIDELOAD_HOST_PATHNAME, &sb) == -1) {
1101 if (errno == ENOENT && i < SDCARD_INSTALL_TIMEOUT-1) {
1102 sleep(1);
1103 continue;
1104 } else {
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -07001105 LOG(ERROR) << "Timed out waiting for the fuse-provided package.";
Tao Baocdcf28f2016-01-13 15:05:20 -08001106 result = INSTALL_ERROR;
1107 kill(child, SIGKILL);
1108 break;
1109 }
1110 }
1111
1112 result = install_package(FUSE_SIDELOAD_HOST_PATHNAME, wipe_cache,
Tianjie Xu16255832016-04-30 11:49:59 -07001113 TEMPORARY_INSTALL_FILE, false, 0/*retry_count*/);
Tao Baocdcf28f2016-01-13 15:05:20 -08001114 break;
1115 }
Christian Poetzsch4ec58a42015-02-19 10:42:39 +00001116
Tao Baocdcf28f2016-01-13 15:05:20 -08001117 if (!waited) {
1118 // Calling stat() on this magic filename signals the fuse
1119 // filesystem to shut down.
1120 struct stat sb;
1121 stat(FUSE_SIDELOAD_HOST_EXIT_PATHNAME, &sb);
1122
1123 waitpid(child, &status, 0);
1124 }
1125
1126 if (!WIFEXITED(status) || WEXITSTATUS(status) != 0) {
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -07001127 LOG(ERROR) << "Error exit from the fuse process: " << WEXITSTATUS(status);
Tao Baocdcf28f2016-01-13 15:05:20 -08001128 }
1129
Christian Poetzsch4ec58a42015-02-19 10:42:39 +00001130 ensure_path_unmounted(SDCARD_ROOT);
Tao Baocdcf28f2016-01-13 15:05:20 -08001131 return result;
Christian Poetzsch4ec58a42015-02-19 10:42:39 +00001132}
1133
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001134// Return REBOOT, SHUTDOWN, or REBOOT_BOOTLOADER. Returning NO_ACTION
1135// means to take the default, which is to reboot or shutdown depending
1136// on if the --shutdown_after flag was passed to recovery.
1137static Device::BuiltinAction
Doug Zongker6c8553d2012-09-24 10:40:47 -07001138prompt_and_wait(Device* device, int status) {
Doug Zongkerf93d8162009-09-22 15:16:02 -07001139 for (;;) {
Tianjie Xuc14d95d2016-03-24 11:50:34 -07001140 finish_recovery();
Doug Zongker6c8553d2012-09-24 10:40:47 -07001141 switch (status) {
1142 case INSTALL_SUCCESS:
1143 case INSTALL_NONE:
1144 ui->SetBackground(RecoveryUI::NO_COMMAND);
1145 break;
1146
1147 case INSTALL_ERROR:
1148 case INSTALL_CORRUPT:
1149 ui->SetBackground(RecoveryUI::ERROR);
1150 break;
1151 }
Doug Zongker211aebc2011-10-28 15:13:10 -07001152 ui->SetProgressType(RecoveryUI::EMPTY);
Doug Zongkerf93d8162009-09-22 15:16:02 -07001153
Elliott Hughes8fd86d72015-04-13 14:36:02 -07001154 int chosen_item = get_menu_selection(nullptr, device->GetMenuItems(), 0, 0, device);
Doug Zongkerf93d8162009-09-22 15:16:02 -07001155
1156 // device-specific code may take some action here. It may
1157 // return one of the core actions handled in the switch
1158 // statement below.
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001159 Device::BuiltinAction chosen_action = device->InvokeMenuItem(chosen_item);
Doug Zongkerf93d8162009-09-22 15:16:02 -07001160
Elliott Hughes30694c92015-03-25 15:16:51 -07001161 bool should_wipe_cache = false;
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001162 switch (chosen_action) {
1163 case Device::NO_ACTION:
1164 break;
1165
Doug Zongkerdaefc1d2011-10-31 09:34:15 -07001166 case Device::REBOOT:
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001167 case Device::SHUTDOWN:
1168 case Device::REBOOT_BOOTLOADER:
1169 return chosen_action;
Doug Zongkerf93d8162009-09-22 15:16:02 -07001170
Doug Zongkerdaefc1d2011-10-31 09:34:15 -07001171 case Device::WIPE_DATA:
1172 wipe_data(ui->IsTextVisible(), device);
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001173 if (!ui->IsTextVisible()) return Device::NO_ACTION;
Doug Zongkerf93d8162009-09-22 15:16:02 -07001174 break;
1175
Doug Zongkerdaefc1d2011-10-31 09:34:15 -07001176 case Device::WIPE_CACHE:
Elliott Hughes30694c92015-03-25 15:16:51 -07001177 wipe_cache(ui->IsTextVisible(), device);
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001178 if (!ui->IsTextVisible()) return Device::NO_ACTION;
Doug Zongkerf93d8162009-09-22 15:16:02 -07001179 break;
1180
Christian Poetzsch4ec58a42015-02-19 10:42:39 +00001181 case Device::APPLY_ADB_SIDELOAD:
Elliott Hughesec283402015-04-10 10:01:53 -07001182 case Device::APPLY_SDCARD:
Christian Poetzsch4ec58a42015-02-19 10:42:39 +00001183 {
1184 bool adb = (chosen_action == Device::APPLY_ADB_SIDELOAD);
1185 if (adb) {
Elliott Hughes30694c92015-03-25 15:16:51 -07001186 status = apply_from_adb(ui, &should_wipe_cache, TEMPORARY_INSTALL_FILE);
Doug Zongkerd0181b82011-10-19 10:51:12 -07001187 } else {
Elliott Hughes30694c92015-03-25 15:16:51 -07001188 status = apply_from_sdcard(device, &should_wipe_cache);
Doug Zongkerd0181b82011-10-19 10:51:12 -07001189 }
Doug Zongker945fc682014-07-10 10:50:39 -07001190
Elliott Hughes30694c92015-03-25 15:16:51 -07001191 if (status == INSTALL_SUCCESS && should_wipe_cache) {
Tao Baoe39a9bc2015-03-31 12:19:05 -07001192 if (!wipe_cache(false, device)) {
1193 status = INSTALL_ERROR;
1194 }
Christian Poetzsch4ec58a42015-02-19 10:42:39 +00001195 }
1196
Tao Baoc679f932015-03-30 09:43:49 -07001197 if (status != INSTALL_SUCCESS) {
1198 ui->SetBackground(RecoveryUI::ERROR);
1199 ui->Print("Installation aborted.\n");
1200 copy_logs();
1201 } else if (!ui->IsTextVisible()) {
1202 return Device::NO_ACTION; // reboot if logs aren't visible
1203 } else {
1204 ui->Print("\nInstall from %s complete.\n", adb ? "ADB" : "SD card");
Doug Zongker8674a722010-09-15 11:08:23 -07001205 }
Doug Zongkerf93d8162009-09-22 15:16:02 -07001206 }
1207 break;
Doug Zongkerdaefc1d2011-10-31 09:34:15 -07001208
Elliott Hughesec283402015-04-10 10:01:53 -07001209 case Device::VIEW_RECOVERY_LOGS:
1210 choose_recovery_file(device);
Michael Ward9d2629c2011-06-23 22:14:24 -07001211 break;
Doug Zongker9270a202012-01-09 15:16:13 -08001212
Elliott Hughes498cda62016-04-14 16:49:04 -07001213 case Device::RUN_GRAPHICS_TEST:
1214 run_graphics_test(device);
1215 break;
1216
Elliott Hughesec283402015-04-10 10:01:53 -07001217 case Device::MOUNT_SYSTEM:
Tao Baoabb8f772015-07-30 14:43:27 -07001218 // For a system image built with the root directory (i.e.
1219 // system_root_image == "true"), we mount it to /system_root, and symlink /system
1220 // to /system_root/system to make adb shell work (the symlink is created through
1221 // the build system).
1222 // Bug: 22855115
Elliott Hughescb220402016-09-23 15:30:55 -07001223 if (android::base::GetBoolProperty("ro.build.system_root_image", false)) {
Tao Baoabb8f772015-07-30 14:43:27 -07001224 if (ensure_path_mounted_at("/", "/system_root") != -1) {
1225 ui->Print("Mounted /system.\n");
1226 }
1227 } else {
1228 if (ensure_path_mounted("/system") != -1) {
1229 ui->Print("Mounted /system.\n");
1230 }
Elliott Hughesec283402015-04-10 10:01:53 -07001231 }
Tao Baoabb8f772015-07-30 14:43:27 -07001232
Nick Kralevicha9ad0322014-10-22 18:38:48 -07001233 break;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001234 }
1235 }
1236}
1237
1238static void
Oscar Montemayor05231562009-11-30 08:40:57 -08001239print_property(const char *key, const char *name, void *cookie) {
Doug Zongker56c51052010-07-01 09:18:44 -07001240 printf("%s=%s\n", key, name);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001241}
1242
Tao Baoac9d94d2016-11-03 11:37:15 -07001243static std::string load_locale_from_cache() {
1244 if (ensure_path_mounted(LOCALE_FILE) != 0) {
1245 LOG(ERROR) << "Can't mount " << LOCALE_FILE;
1246 return "";
Doug Zongker02ec6b82012-08-22 17:26:40 -07001247 }
Tao Baoac9d94d2016-11-03 11:37:15 -07001248
1249 std::string content;
1250 if (!android::base::ReadFileToString(LOCALE_FILE, &content)) {
1251 PLOG(ERROR) << "Can't read " << LOCALE_FILE;
1252 return "";
1253 }
1254
1255 return android::base::Trim(content);
Doug Zongker02ec6b82012-08-22 17:26:40 -07001256}
1257
Tao Baoac9d94d2016-11-03 11:37:15 -07001258void ui_print(const char* format, ...) {
1259 std::string buffer;
Doug Zongker7c3ae452013-05-14 11:03:02 -07001260 va_list ap;
1261 va_start(ap, format);
Tao Baoac9d94d2016-11-03 11:37:15 -07001262 android::base::StringAppendV(&buffer, format, ap);
Doug Zongker7c3ae452013-05-14 11:03:02 -07001263 va_end(ap);
1264
Tao Baoac9d94d2016-11-03 11:37:15 -07001265 if (ui != nullptr) {
1266 ui->Print("%s", buffer.c_str());
Doug Zongker7c3ae452013-05-14 11:03:02 -07001267 } else {
Tao Baoac9d94d2016-11-03 11:37:15 -07001268 fputs(buffer.c_str(), stdout);
Doug Zongker7c3ae452013-05-14 11:03:02 -07001269 }
1270}
1271
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -07001272static constexpr char log_characters[] = "VDIWEF";
1273
1274void UiLogger(android::base::LogId id, android::base::LogSeverity severity,
1275 const char* tag, const char* file, unsigned int line,
1276 const char* message) {
Tao Baoac9d94d2016-11-03 11:37:15 -07001277 if (severity >= android::base::ERROR && ui != nullptr) {
1278 ui->Print("E:%s\n", message);
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -07001279 } else {
1280 fprintf(stdout, "%c:%s\n", log_characters[severity], message);
1281 }
1282}
1283
Yabin Cui99281df2016-02-17 12:21:52 -08001284static bool is_battery_ok() {
1285 struct healthd_config healthd_config = {
1286 .batteryStatusPath = android::String8(android::String8::kEmptyString),
1287 .batteryHealthPath = android::String8(android::String8::kEmptyString),
1288 .batteryPresentPath = android::String8(android::String8::kEmptyString),
1289 .batteryCapacityPath = android::String8(android::String8::kEmptyString),
1290 .batteryVoltagePath = android::String8(android::String8::kEmptyString),
1291 .batteryTemperaturePath = android::String8(android::String8::kEmptyString),
1292 .batteryTechnologyPath = android::String8(android::String8::kEmptyString),
1293 .batteryCurrentNowPath = android::String8(android::String8::kEmptyString),
1294 .batteryCurrentAvgPath = android::String8(android::String8::kEmptyString),
1295 .batteryChargeCounterPath = android::String8(android::String8::kEmptyString),
1296 .batteryFullChargePath = android::String8(android::String8::kEmptyString),
1297 .batteryCycleCountPath = android::String8(android::String8::kEmptyString),
1298 .energyCounter = NULL,
1299 .boot_min_cap = 0,
1300 .screen_on = NULL
1301 };
1302 healthd_board_init(&healthd_config);
1303
1304 android::BatteryMonitor monitor;
1305 monitor.init(&healthd_config);
1306
1307 int wait_second = 0;
1308 while (true) {
1309 int charge_status = monitor.getChargeStatus();
1310 // Treat unknown status as charged.
1311 bool charged = (charge_status != android::BATTERY_STATUS_DISCHARGING &&
1312 charge_status != android::BATTERY_STATUS_NOT_CHARGING);
1313 android::BatteryProperty capacity;
1314 android::status_t status = monitor.getProperty(android::BATTERY_PROP_CAPACITY, &capacity);
1315 ui_print("charge_status %d, charged %d, status %d, capacity %lld\n", charge_status,
1316 charged, status, capacity.valueInt64);
1317 // At startup, the battery drivers in devices like N5X/N6P take some time to load
1318 // the battery profile. Before the load finishes, it reports value 50 as a fake
1319 // capacity. BATTERY_READ_TIMEOUT_IN_SEC is set that the battery drivers are expected
1320 // to finish loading the battery profile earlier than 10 seconds after kernel startup.
1321 if (status == 0 && capacity.valueInt64 == 50) {
1322 if (wait_second < BATTERY_READ_TIMEOUT_IN_SEC) {
1323 sleep(1);
1324 wait_second++;
1325 continue;
1326 }
1327 }
1328 // If we can't read battery percentage, it may be a device without battery. In this
1329 // situation, use 100 as a fake battery percentage.
1330 if (status != 0) {
1331 capacity.valueInt64 = 100;
1332 }
1333 return (charged && capacity.valueInt64 >= BATTERY_WITH_CHARGER_OK_PERCENTAGE) ||
1334 (!charged && capacity.valueInt64 >= BATTERY_OK_PERCENTAGE);
1335 }
1336}
1337
Tianjie Xu3c62b672016-02-05 18:25:58 -08001338static void set_retry_bootloader_message(int retry_count, int argc, char** argv) {
Tianjie Xubd56f152016-09-28 16:32:10 -07001339 std::vector<std::string> options;
Tianjie Xu3c62b672016-02-05 18:25:58 -08001340 for (int i = 1; i < argc; ++i) {
1341 if (strstr(argv[i], "retry_count") == nullptr) {
Tianjie Xubd56f152016-09-28 16:32:10 -07001342 options.push_back(argv[i]);
Tianjie Xu3c62b672016-02-05 18:25:58 -08001343 }
1344 }
1345
Tianjie Xubd56f152016-09-28 16:32:10 -07001346 // Increment the retry counter by 1.
1347 options.push_back(android::base::StringPrintf("--retry_count=%d", retry_count+1));
Yabin Cui8b309f62016-06-24 18:22:02 -07001348 std::string err;
Tianjie Xubd56f152016-09-28 16:32:10 -07001349 if (!write_bootloader_message(options, &err)) {
Yabin Cui8b309f62016-06-24 18:22:02 -07001350 LOG(ERROR) << err;
1351 }
Tianjie Xu3c62b672016-02-05 18:25:58 -08001352}
1353
Tianjie Xu06e57ac2016-07-11 14:04:08 -07001354static bool bootreason_in_blacklist() {
1355 char bootreason[PROPERTY_VALUE_MAX];
1356 if (property_get("ro.boot.bootreason", bootreason, nullptr) > 0) {
1357 for (const auto& str : bootreason_blacklist) {
1358 if (strcasecmp(str.c_str(), bootreason) == 0) {
1359 return true;
1360 }
1361 }
1362 }
1363 return false;
1364}
1365
1366static void log_failure_code(ErrorCode code, const char *update_package) {
1367 std::vector<std::string> log_buffer = {
1368 update_package,
1369 "0", // install result
1370 "error: " + std::to_string(code),
1371 };
1372 std::string log_content = android::base::Join(log_buffer, "\n");
1373 if (!android::base::WriteStringToFile(log_content, TEMPORARY_INSTALL_FILE)) {
Tao Baoac9d94d2016-11-03 11:37:15 -07001374 PLOG(ERROR) << "failed to write " << TEMPORARY_INSTALL_FILE;
Tianjie Xu06e57ac2016-07-11 14:04:08 -07001375 }
1376
1377 // Also write the info into last_log.
1378 LOG(INFO) << log_content;
1379}
1380
Yabin Cui99281df2016-02-17 12:21:52 -08001381int main(int argc, char **argv) {
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -07001382 // We don't have logcat yet under recovery; so we'll print error on screen and
1383 // log to stdout (which is redirected to recovery.log) as we used to do.
1384 android::base::InitLogging(argv, &UiLogger);
1385
Mark Salyzyna4f701a2016-03-09 14:58:16 -08001386 // Take last pmsg contents and rewrite it to the current pmsg session.
1387 static const char filter[] = "recovery/";
1388 // Do we need to rotate?
1389 bool doRotate = false;
Tianjie Xue113e4d2016-10-21 17:46:13 -07001390
Mark Salyzyna4f701a2016-03-09 14:58:16 -08001391 __android_log_pmsg_file_read(
1392 LOG_ID_SYSTEM, ANDROID_LOG_INFO, filter,
1393 logbasename, &doRotate);
1394 // Take action to refresh pmsg contents
1395 __android_log_pmsg_file_read(
1396 LOG_ID_SYSTEM, ANDROID_LOG_INFO, filter,
1397 logrotate, &doRotate);
1398
Doug Zongker9270a202012-01-09 15:16:13 -08001399 // If this binary is started with the single argument "--adbd",
1400 // instead of being the normal recovery binary, it turns into kind
1401 // of a stripped-down version of adbd that only supports the
1402 // 'sideload' command. Note this must be a real argument, not
1403 // anything in the command file or bootloader control block; the
1404 // only way recovery should be run with this argument is when it
1405 // starts a copy of itself from the apply_from_adb() function.
1406 if (argc == 2 && strcmp(argv[1], "--adbd") == 0) {
Josh Gaoacb2a2f2016-08-26 18:24:34 -07001407 minadbd_main();
Doug Zongker9270a202012-01-09 15:16:13 -08001408 return 0;
1409 }
1410
Tao Bao04ca4262015-09-10 15:32:24 -07001411 time_t start = time(NULL);
1412
1413 // redirect_stdio should be called only in non-sideload mode. Otherwise
1414 // we may have two logger instances with different timestamps.
1415 redirect_stdio(TEMPORARY_LOG_FILE);
1416
Doug Zongker19a8e242014-01-21 09:25:41 -08001417 printf("Starting recovery (pid %d) on %s", getpid(), ctime(&start));
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001418
Doug Zongkerd4208f92010-09-20 12:16:13 -07001419 load_volume_table();
Tao Bao26112e52016-02-25 12:29:40 -08001420 has_cache = volume_for_path(CACHE_ROOT) != nullptr;
1421
Tao Baof0ed1592016-12-02 11:32:19 -08001422 std::vector<std::string> args = get_args(argc, argv);
1423 std::vector<char*> args_to_parse(args.size());
1424 std::transform(args.cbegin(), args.cend(), args_to_parse.begin(),
1425 [](const std::string& arg) { return const_cast<char*>(arg.c_str()); });
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001426
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001427 const char *update_package = NULL;
Tao Baoe39a9bc2015-03-31 12:19:05 -07001428 bool should_wipe_data = false;
Tao Baoc679f932015-03-30 09:43:49 -07001429 bool should_wipe_cache = false;
Yabin Cui8b309f62016-06-24 18:22:02 -07001430 bool should_wipe_ab = false;
Yabin Cuifd99a312016-06-09 14:09:39 -07001431 size_t wipe_package_size = 0;
Tao Bao145d8612015-03-25 15:51:15 -07001432 bool show_text = false;
Tao Baoc679f932015-03-30 09:43:49 -07001433 bool sideload = false;
1434 bool sideload_auto_reboot = false;
Doug Zongkere5d5ac72012-04-12 11:01:22 -07001435 bool just_exit = false;
Doug Zongkerb1d12632014-03-18 10:32:12 -07001436 bool shutdown_after = false;
Tianjie Xu3c62b672016-02-05 18:25:58 -08001437 int retry_count = 0;
Tianjie Xu35926c42016-04-28 18:06:26 -07001438 bool security_update = false;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001439
1440 int arg;
Tao Bao862a4c12016-06-02 11:16:50 -07001441 int option_index;
Tao Baof0ed1592016-12-02 11:32:19 -08001442 while ((arg = getopt_long(args_to_parse.size(), args_to_parse.data(), "", OPTIONS,
1443 &option_index)) != -1) {
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001444 switch (arg) {
Tianjie Xu3c62b672016-02-05 18:25:58 -08001445 case 'n': android::base::ParseInt(optarg, &retry_count, 0); break;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001446 case 'u': update_package = optarg; break;
Tao Baoe39a9bc2015-03-31 12:19:05 -07001447 case 'w': should_wipe_data = true; break;
Tao Baoc679f932015-03-30 09:43:49 -07001448 case 'c': should_wipe_cache = true; break;
Tao Bao145d8612015-03-25 15:51:15 -07001449 case 't': show_text = true; break;
Tao Baoc679f932015-03-30 09:43:49 -07001450 case 's': sideload = true; break;
1451 case 'a': sideload = true; sideload_auto_reboot = true; break;
Doug Zongkere5d5ac72012-04-12 11:01:22 -07001452 case 'x': just_exit = true; break;
Doug Zongker02ec6b82012-08-22 17:26:40 -07001453 case 'l': locale = optarg; break;
Doug Zongkerc87bab12013-11-25 13:53:25 -08001454 case 'g': {
1455 if (stage == NULL || *stage == '\0') {
1456 char buffer[20] = "1/";
1457 strncat(buffer, optarg, sizeof(buffer)-3);
1458 stage = strdup(buffer);
1459 }
1460 break;
1461 }
Doug Zongkerb1d12632014-03-18 10:32:12 -07001462 case 'p': shutdown_after = true; break;
Jeff Sharkeya6e13ae2014-09-24 11:46:17 -07001463 case 'r': reason = optarg; break;
Tianjie Xu35926c42016-04-28 18:06:26 -07001464 case 'e': security_update = true; break;
Tao Bao862a4c12016-06-02 11:16:50 -07001465 case 0: {
Yabin Cui8b309f62016-06-24 18:22:02 -07001466 if (strcmp(OPTIONS[option_index].name, "wipe_ab") == 0) {
1467 should_wipe_ab = true;
Tao Bao862a4c12016-06-02 11:16:50 -07001468 break;
Yabin Cuifd99a312016-06-09 14:09:39 -07001469 } else if (strcmp(OPTIONS[option_index].name, "wipe_package_size") == 0) {
1470 android::base::ParseUint(optarg, &wipe_package_size);
1471 break;
Tao Bao862a4c12016-06-02 11:16:50 -07001472 }
1473 break;
1474 }
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001475 case '?':
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -07001476 LOG(ERROR) << "Invalid command argument";
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001477 continue;
1478 }
1479 }
1480
Tao Baoac9d94d2016-11-03 11:37:15 -07001481 if (locale.empty()) {
1482 if (has_cache) {
1483 locale = load_locale_from_cache();
1484 }
1485
1486 if (locale.empty()) {
1487 locale = DEFAULT_LOCALE;
1488 }
Doug Zongker02ec6b82012-08-22 17:26:40 -07001489 }
Tao Baoac9d94d2016-11-03 11:37:15 -07001490
1491 printf("locale is [%s]\n", locale.c_str());
Doug Zongker0d32f252014-02-13 15:07:56 -08001492 printf("stage is [%s]\n", stage);
Jeff Sharkeya6e13ae2014-09-24 11:46:17 -07001493 printf("reason is [%s]\n", reason);
Doug Zongker02ec6b82012-08-22 17:26:40 -07001494
1495 Device* device = make_device();
1496 ui = device->GetUI();
1497
Tao Baoac9d94d2016-11-03 11:37:15 -07001498 ui->SetLocale(locale.c_str());
Doug Zongker02ec6b82012-08-22 17:26:40 -07001499 ui->Init();
Tianjie Xu35926c42016-04-28 18:06:26 -07001500 // Set background string to "installing security update" for security update,
1501 // otherwise set it to "installing system update".
1502 ui->SetSystemUpdateText(security_update);
Doug Zongkerc87bab12013-11-25 13:53:25 -08001503
1504 int st_cur, st_max;
1505 if (stage != NULL && sscanf(stage, "%d/%d", &st_cur, &st_max) == 2) {
1506 ui->SetStage(st_cur, st_max);
1507 }
1508
Doug Zongker02ec6b82012-08-22 17:26:40 -07001509 ui->SetBackground(RecoveryUI::NONE);
1510 if (show_text) ui->ShowText(true);
1511
Stephen Smalley779701d2012-02-09 14:13:23 -05001512 struct selinux_opt seopts[] = {
Tao Baoac9d94d2016-11-03 11:37:15 -07001513 { SELABEL_OPT_PATH, "/file_contexts" }
Stephen Smalley779701d2012-02-09 14:13:23 -05001514 };
1515
1516 sehandle = selabel_open(SELABEL_CTX_FILE, seopts, 1);
1517
1518 if (!sehandle) {
Doug Zongkerfafc85b2013-07-09 12:29:45 -07001519 ui->Print("Warning: No file_contexts\n");
Stephen Smalley779701d2012-02-09 14:13:23 -05001520 }
Stephen Smalley779701d2012-02-09 14:13:23 -05001521
Doug Zongkerdaefc1d2011-10-31 09:34:15 -07001522 device->StartRecovery();
Doug Zongkerefa1bab2010-02-01 15:59:12 -08001523
Doug Zongker56c51052010-07-01 09:18:44 -07001524 printf("Command:");
Tao Baof0ed1592016-12-02 11:32:19 -08001525 for (const auto& arg : args) {
1526 printf(" \"%s\"", arg.c_str());
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001527 }
Tao Baof038ca02016-12-10 09:24:50 -08001528 printf("\n\n");
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001529
1530 property_list(print_property, NULL);
Doug Zongker56c51052010-07-01 09:18:44 -07001531 printf("\n");
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001532
Elliott Hughesbb78d622015-04-09 20:51:08 -07001533 ui->Print("Supported API: %d\n", RECOVERY_API_VERSION);
1534
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001535 int status = INSTALL_SUCCESS;
1536
Doug Zongker540d57f2011-01-18 13:36:58 -08001537 if (update_package != NULL) {
Tao Bao56870012016-04-29 15:37:05 -07001538 // It's not entirely true that we will modify the flash. But we want
1539 // to log the update attempt since update_package is non-NULL.
1540 modified_flash = true;
1541
Yabin Cui99281df2016-02-17 12:21:52 -08001542 if (!is_battery_ok()) {
1543 ui->Print("battery capacity is not enough for installing package, needed is %d%%\n",
1544 BATTERY_OK_PERCENTAGE);
Tianjie Xu16255832016-04-30 11:49:59 -07001545 // Log the error code to last_install when installation skips due to
1546 // low battery.
Tianjie Xu06e57ac2016-07-11 14:04:08 -07001547 log_failure_code(kLowBattery, update_package);
1548 status = INSTALL_SKIPPED;
1549 } else if (bootreason_in_blacklist()) {
1550 // Skip update-on-reboot when bootreason is kernel_panic or similar
1551 ui->Print("bootreason is in the blacklist; skip OTA installation\n");
1552 log_failure_code(kBootreasonInBlacklist, update_package);
Yabin Cui99281df2016-02-17 12:21:52 -08001553 status = INSTALL_SKIPPED;
1554 } else {
1555 status = install_package(update_package, &should_wipe_cache,
Tianjie Xu16255832016-04-30 11:49:59 -07001556 TEMPORARY_INSTALL_FILE, true, retry_count);
Yabin Cui99281df2016-02-17 12:21:52 -08001557 if (status == INSTALL_SUCCESS && should_wipe_cache) {
1558 wipe_cache(false, device);
1559 }
1560 if (status != INSTALL_SUCCESS) {
1561 ui->Print("Installation aborted.\n");
Tianjie Xu3c62b672016-02-05 18:25:58 -08001562 // When I/O error happens, reboot and retry installation EIO_RETRY_COUNT
1563 // times before we abandon this OTA update.
1564 if (status == INSTALL_RETRY && retry_count < EIO_RETRY_COUNT) {
1565 copy_logs();
1566 set_retry_bootloader_message(retry_count, argc, argv);
1567 // Print retry count on screen.
1568 ui->Print("Retry attempt %d\n", retry_count);
Doug Zongker7c3ae452013-05-14 11:03:02 -07001569
Tianjie Xu3c62b672016-02-05 18:25:58 -08001570 // Reboot and retry the update
Elliott Hughescb220402016-09-23 15:30:55 -07001571 if (!android::base::SetProperty(ANDROID_RB_PROPERTY, "reboot,recovery")) {
Tianjie Xu3c62b672016-02-05 18:25:58 -08001572 ui->Print("Reboot failed\n");
1573 } else {
1574 while (true) {
1575 pause();
1576 }
1577 }
1578 }
Yabin Cui99281df2016-02-17 12:21:52 -08001579 // If this is an eng or userdebug build, then automatically
1580 // turn the text display on if the script fails so the error
1581 // message is visible.
1582 if (is_ro_debuggable()) {
1583 ui->ShowText(true);
1584 }
Doug Zongker7c3ae452013-05-14 11:03:02 -07001585 }
1586 }
Tao Baoe39a9bc2015-03-31 12:19:05 -07001587 } else if (should_wipe_data) {
1588 if (!wipe_data(false, device)) {
1589 status = INSTALL_ERROR;
1590 }
Tao Baoc679f932015-03-30 09:43:49 -07001591 } else if (should_wipe_cache) {
Tao Baoe39a9bc2015-03-31 12:19:05 -07001592 if (!wipe_cache(false, device)) {
1593 status = INSTALL_ERROR;
1594 }
Yabin Cui8b309f62016-06-24 18:22:02 -07001595 } else if (should_wipe_ab) {
Yabin Cuifd99a312016-06-09 14:09:39 -07001596 if (!wipe_ab_device(wipe_package_size)) {
Tao Bao862a4c12016-06-02 11:16:50 -07001597 status = INSTALL_ERROR;
1598 }
Tao Baoc679f932015-03-30 09:43:49 -07001599 } else if (sideload) {
1600 // 'adb reboot sideload' acts the same as user presses key combinations
1601 // to enter the sideload mode. When 'sideload-auto-reboot' is used, text
1602 // display will NOT be turned on by default. And it will reboot after
1603 // sideload finishes even if there are errors. Unless one turns on the
1604 // text display during the installation. This is to enable automated
1605 // testing.
1606 if (!sideload_auto_reboot) {
1607 ui->ShowText(true);
1608 }
1609 status = apply_from_adb(ui, &should_wipe_cache, TEMPORARY_INSTALL_FILE);
1610 if (status == INSTALL_SUCCESS && should_wipe_cache) {
Tao Baoe39a9bc2015-03-31 12:19:05 -07001611 if (!wipe_cache(false, device)) {
1612 status = INSTALL_ERROR;
1613 }
Tao Baoc679f932015-03-30 09:43:49 -07001614 }
1615 ui->Print("\nInstall from ADB complete (status: %d).\n", status);
1616 if (sideload_auto_reboot) {
1617 ui->Print("Rebooting automatically.\n");
1618 }
Doug Zongkere5d5ac72012-04-12 11:01:22 -07001619 } else if (!just_exit) {
Doug Zongker02ec6b82012-08-22 17:26:40 -07001620 status = INSTALL_NONE; // No command specified
1621 ui->SetBackground(RecoveryUI::NO_COMMAND);
Tao Bao785d22c2015-05-04 09:34:29 -07001622
1623 // http://b/17489952
1624 // If this is an eng or userdebug build, automatically turn on the
1625 // text display if no command is specified.
1626 if (is_ro_debuggable()) {
1627 ui->ShowText(true);
1628 }
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001629 }
1630
Tao Baoc679f932015-03-30 09:43:49 -07001631 if (!sideload_auto_reboot && (status == INSTALL_ERROR || status == INSTALL_CORRUPT)) {
Doug Zongkerf24fd7e2013-07-02 11:43:25 -07001632 copy_logs();
Doug Zongker02ec6b82012-08-22 17:26:40 -07001633 ui->SetBackground(RecoveryUI::ERROR);
1634 }
Tao Baoc679f932015-03-30 09:43:49 -07001635
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001636 Device::BuiltinAction after = shutdown_after ? Device::SHUTDOWN : Device::REBOOT;
Yabin Cui99281df2016-02-17 12:21:52 -08001637 if ((status != INSTALL_SUCCESS && status != INSTALL_SKIPPED && !sideload_auto_reboot) ||
1638 ui->IsTextVisible()) {
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001639 Device::BuiltinAction temp = prompt_and_wait(device, status);
Tao Baoc679f932015-03-30 09:43:49 -07001640 if (temp != Device::NO_ACTION) {
1641 after = temp;
1642 }
Doug Zongker8674a722010-09-15 11:08:23 -07001643 }
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001644
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001645 // Save logs and clean up before rebooting or shutting down.
Tianjie Xuc14d95d2016-03-24 11:50:34 -07001646 finish_recovery();
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001647
1648 switch (after) {
1649 case Device::SHUTDOWN:
1650 ui->Print("Shutting down...\n");
Elliott Hughescb220402016-09-23 15:30:55 -07001651 android::base::SetProperty(ANDROID_RB_PROPERTY, "shutdown,");
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001652 break;
1653
1654 case Device::REBOOT_BOOTLOADER:
1655 ui->Print("Rebooting to bootloader...\n");
Elliott Hughescb220402016-09-23 15:30:55 -07001656 android::base::SetProperty(ANDROID_RB_PROPERTY, "reboot,bootloader");
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001657 break;
1658
1659 default:
1660 ui->Print("Rebooting...\n");
Elliott Hughescb220402016-09-23 15:30:55 -07001661 android::base::SetProperty(ANDROID_RB_PROPERTY, "reboot,");
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001662 break;
Doug Zongkerb1d12632014-03-18 10:32:12 -07001663 }
Tao Bao75238632015-05-27 14:46:17 -07001664 while (true) {
Tao Baoac9d94d2016-11-03 11:37:15 -07001665 pause();
Tao Bao75238632015-05-27 14:46:17 -07001666 }
1667 // Should be unreachable.
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001668 return EXIT_SUCCESS;
1669}