blob: d7bc6fd2fe609e0e39e3a890903ce5824856c51a [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
Jerry Zhang6a648042018-05-04 11:24:10 -070017#include "recovery.h"
Tao Bao2ac56af2018-04-25 16:47:04 -070018
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080019#include <ctype.h>
Doug Zongker7c3ae452013-05-14 11:03:02 -070020#include <dirent.h>
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080021#include <errno.h>
22#include <fcntl.h>
23#include <getopt.h>
Tao Bao862a4c12016-06-02 11:16:50 -070024#include <inttypes.h>
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080025#include <limits.h>
Tao Bao862a4c12016-06-02 11:16:50 -070026#include <linux/fs.h>
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080027#include <linux/input.h>
Doug Zongker7c3ae452013-05-14 11:03:02 -070028#include <stdarg.h>
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080029#include <stdio.h>
30#include <stdlib.h>
31#include <string.h>
Doug Zongker23ceeea2010-07-08 17:27:55 -070032#include <sys/stat.h>
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080033#include <sys/types.h>
Tao Baocdcf28f2016-01-13 15:05:20 -080034#include <sys/wait.h>
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080035#include <unistd.h>
36
Tao Baoc4a18ef2017-02-10 00:13:30 -080037#include <algorithm>
Tao Bao3aec6962018-04-20 09:24:58 -070038#include <functional>
Tao Baoc4a18ef2017-02-10 00:13:30 -080039#include <memory>
Tao Bao862a4c12016-06-02 11:16:50 -070040#include <string>
41#include <vector>
Tao Bao04ca4262015-09-10 15:32:24 -070042
Elliott Hughes4b166f02015-12-04 15:30:20 -080043#include <android-base/file.h>
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -070044#include <android-base/logging.h>
Tianjie Xu3c62b672016-02-05 18:25:58 -080045#include <android-base/parseint.h>
Elliott Hughescb220402016-09-23 15:30:55 -070046#include <android-base/properties.h>
Elliott Hughes4b166f02015-12-04 15:30:20 -080047#include <android-base/stringprintf.h>
Tao Bao862a4c12016-06-02 11:16:50 -070048#include <android-base/strings.h>
49#include <android-base/unique_fd.h>
Yabin Cui8b309f62016-06-24 18:22:02 -070050#include <bootloader_message/bootloader_message.h>
Elliott Hughescb220402016-09-23 15:30:55 -070051#include <cutils/properties.h> /* for property_list */
Yifan Hong056538c2018-07-11 17:04:12 -070052#include <healthhalutils/HealthHalUtils.h>
Tianjie Xu8cf5c8f2016-09-08 20:10:11 -070053#include <ziparchive/zip_archive.h>
Yabin Cui99281df2016-02-17 12:21:52 -080054
Tao Bao75238632015-05-27 14:46:17 -070055#include "adb_install.h"
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080056#include "common.h"
Tao Bao75238632015-05-27 14:46:17 -070057#include "device.h"
David Andersonedee8362018-05-16 13:43:22 -070058#include "fsck_unshare_blocks.h"
Tao Bao75238632015-05-27 14:46:17 -070059#include "fuse_sdcard_provider.h"
60#include "fuse_sideload.h"
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080061#include "install.h"
Jerry Zhangcadf4ed2018-05-02 16:56:00 -070062#include "logging.h"
Tao Bao17054c02018-05-03 22:41:23 -070063#include "otautil/dirutil.h"
Tao Bao1fc5bf32017-10-06 07:43:41 -070064#include "otautil/error_code.h"
Tao Bao641fa972018-04-25 18:59:40 -070065#include "otautil/paths.h"
Tao Bao2c526392018-05-03 23:01:13 -070066#include "otautil/sysutil.h"
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080067#include "roots.h"
Doug Zongker211aebc2011-10-28 15:13:10 -070068#include "screen_ui.h"
Tianjie Xue113e4d2016-10-21 17:46:13 -070069#include "ui.h"
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080070
Tao Baoaac9d9f2018-04-29 23:38:59 -070071static constexpr const char* CACHE_LOG_DIR = "/cache/recovery";
72static constexpr const char* COMMAND_FILE = "/cache/recovery/command";
Tao Baoaac9d9f2018-04-29 23:38:59 -070073static constexpr const char* LAST_KMSG_FILE = "/cache/recovery/last_kmsg";
74static constexpr const char* LAST_LOG_FILE = "/cache/recovery/last_log";
75static constexpr const char* LOCALE_FILE = "/cache/recovery/last_locale";
Tianjie Xu06e57ac2016-07-11 14:04:08 -070076
Tao Baoaac9d9f2018-04-29 23:38:59 -070077static constexpr const char* CACHE_ROOT = "/cache";
78static constexpr const char* DATA_ROOT = "/data";
79static constexpr const char* METADATA_ROOT = "/metadata";
80static constexpr const char* SDCARD_ROOT = "/sdcard";
Mark Salyzynfdea2422018-08-29 10:44:33 -070081static constexpr const char* SYSTEM_ROOT = "/system";
Nick Kralevicha9ad0322014-10-22 18:38:48 -070082
Tao Baobd0ddcd2017-05-04 13:03:18 -070083// We define RECOVERY_API_VERSION in Android.mk, which will be picked up by build system and packed
84// into target_files.zip. Assert the version defined in code and in Android.mk are consistent.
85static_assert(kRecoveryApiVersion == RECOVERY_API_VERSION, "Mismatching recovery API versions.");
86
Tao Baoac9d94d2016-11-03 11:37:15 -070087bool modified_flash = false;
Tao Baoa8d72bc2016-12-25 18:46:50 -080088std::string stage;
Tao Baoac9d94d2016-11-03 11:37:15 -070089const char* reason = nullptr;
Tao Baoac9d94d2016-11-03 11:37:15 -070090
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080091/*
92 * The recovery tool communicates with the main system through /cache files.
93 * /cache/recovery/command - INPUT - command line for tool, one arg per line
94 * /cache/recovery/log - OUTPUT - combined log file from recovery run(s)
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080095 *
96 * The arguments which may be supplied in the recovery.command file:
Doug Zongkerd4208f92010-09-20 12:16:13 -070097 * --update_package=path - verify install an OTA package file
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080098 * --wipe_data - erase user data (and cache), then reboot
Tao Baof9f17342018-04-27 10:44:04 -070099 * --prompt_and_wipe_data - prompt the user that data is corrupt, with their consent erase user
100 * data (and cache), then reboot
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800101 * --wipe_cache - wipe cache (but not user data), then reboot
Tao Baof9f17342018-04-27 10:44:04 -0700102 * --show_text - show the recovery text menu, used by some bootloader (e.g. http://b/36872519).
Oscar Montemayor05231562009-11-30 08:40:57 -0800103 * --set_encrypted_filesystem=on|off - enables / diasables encrypted fs
Doug Zongkere5d5ac72012-04-12 11:01:22 -0700104 * --just_exit - do nothing; exit and reboot
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800105 *
106 * After completing, we remove /cache/recovery/command and reboot.
107 * Arguments may also be supplied in the bootloader control block (BCB).
108 * These important scenarios must be safely restartable at any point:
109 *
110 * FACTORY RESET
111 * 1. user selects "factory reset"
112 * 2. main system writes "--wipe_data" to /cache/recovery/command
113 * 3. main system reboots into recovery
114 * 4. get_args() writes BCB with "boot-recovery" and "--wipe_data"
115 * -- after this, rebooting will restart the erase --
Doug Zongkerd4208f92010-09-20 12:16:13 -0700116 * 5. erase_volume() reformats /data
117 * 6. erase_volume() reformats /cache
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800118 * 7. finish_recovery() erases BCB
119 * -- after this, rebooting will restart the main system --
120 * 8. main() calls reboot() to boot main system
121 *
122 * OTA INSTALL
123 * 1. main system downloads OTA package to /cache/some-filename.zip
Doug Zongker9b125b02010-09-22 12:01:37 -0700124 * 2. main system writes "--update_package=/cache/some-filename.zip"
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800125 * 3. main system reboots into recovery
126 * 4. get_args() writes BCB with "boot-recovery" and "--update_package=..."
127 * -- after this, rebooting will attempt to reinstall the update --
128 * 5. install_package() attempts to install the update
129 * NOTE: the package install must itself be restartable from any point
130 * 6. finish_recovery() erases BCB
131 * -- after this, rebooting will (try to) restart the main system --
132 * 7. ** if install failed **
133 * 7a. prompt_and_wait() shows an error icon and waits for the user
Tao Baoc0336392016-12-13 22:29:49 -0800134 * 7b. the user reboots (pulling the battery, etc) into the main system
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800135 */
136
Elliott Hughesf14af802015-02-10 14:46:14 -0800137bool is_ro_debuggable() {
Elliott Hughescb220402016-09-23 15:30:55 -0700138 return android::base::GetBoolProperty("ro.debuggable", false);
Elliott Hughesf14af802015-02-10 14:46:14 -0800139}
140
Tao Bao2292db82016-12-13 21:53:31 -0800141// Set the BCB to reboot back into recovery (it won't resume the install from
142// sdcard though).
143static void set_sdcard_update_bootloader_message() {
144 std::vector<std::string> options;
145 std::string err;
146 if (!update_bootloader_message(options, &err)) {
147 LOG(ERROR) << "Failed to set BCB message: " << err;
148 }
Doug Zongker34c98df2009-08-18 12:05:45 -0700149}
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800150
Tao Baoec579032017-07-21 12:13:15 -0700151// Clear the recovery command and prepare to boot a (hopefully working) system,
Tianjie Xuc14d95d2016-03-24 11:50:34 -0700152// copy our log file to cache as well (for the system to read). This function is
153// idempotent: call it as many times as you like.
Tao Bao551d2c32018-05-09 20:53:13 -0700154static void finish_recovery() {
155 std::string locale = ui->GetLocale();
Tao Baoec579032017-07-21 12:13:15 -0700156 // Save the locale to cache, so if recovery is next started up without a '--locale' argument
157 // (e.g., directly from the bootloader) it will use the last-known locale.
158 if (!locale.empty() && has_cache) {
159 LOG(INFO) << "Saving locale \"" << locale << "\"";
160 if (ensure_path_mounted(LOCALE_FILE) != 0) {
161 LOG(ERROR) << "Failed to mount " << LOCALE_FILE;
162 } else if (!android::base::WriteStringToFile(locale, LOCALE_FILE)) {
163 PLOG(ERROR) << "Failed to save locale to " << LOCALE_FILE;
Doug Zongker4f33e552012-08-23 13:16:12 -0700164 }
Tao Baoec579032017-07-21 12:13:15 -0700165 }
Doug Zongker4f33e552012-08-23 13:16:12 -0700166
Jerry Zhangcadf4ed2018-05-02 16:56:00 -0700167 copy_logs(modified_flash, has_cache);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800168
Tao Baoec579032017-07-21 12:13:15 -0700169 // Reset to normal system boot so recovery won't cycle indefinitely.
170 std::string err;
171 if (!clear_bootloader_message(&err)) {
172 LOG(ERROR) << "Failed to clear BCB message: " << err;
173 }
174
175 // Remove the command file, so recovery won't repeat indefinitely.
176 if (has_cache) {
177 if (ensure_path_mounted(COMMAND_FILE) != 0 || (unlink(COMMAND_FILE) && errno != ENOENT)) {
178 LOG(WARNING) << "Can't unlink " << COMMAND_FILE;
Yabin Cui8b309f62016-06-24 18:22:02 -0700179 }
Tao Baoec579032017-07-21 12:13:15 -0700180 ensure_path_unmounted(CACHE_ROOT);
181 }
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800182
Tao Baoec579032017-07-21 12:13:15 -0700183 sync(); // For good measure.
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800184}
185
Tao Bao3f5a3822016-12-13 11:14:37 -0800186struct saved_log_file {
187 std::string name;
188 struct stat sb;
189 std::string data;
190};
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700191
Elliott Hughes945548e2015-06-05 17:59:56 -0700192static bool erase_volume(const char* volume) {
Tao Bao3f5a3822016-12-13 11:14:37 -0800193 bool is_cache = (strcmp(volume, CACHE_ROOT) == 0);
194 bool is_data = (strcmp(volume, DATA_ROOT) == 0);
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700195
Tao Bao3f5a3822016-12-13 11:14:37 -0800196 ui->SetBackground(RecoveryUI::ERASING);
197 ui->SetProgressType(RecoveryUI::INDETERMINATE);
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700198
Tao Bao3f5a3822016-12-13 11:14:37 -0800199 std::vector<saved_log_file> log_files;
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700200
Tao Bao3f5a3822016-12-13 11:14:37 -0800201 if (is_cache) {
202 // If we're reformatting /cache, we load any past logs
203 // (i.e. "/cache/recovery/last_*") and the current log
204 // ("/cache/recovery/log") into memory, so we can restore them after
205 // the reformat.
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700206
Tao Bao3f5a3822016-12-13 11:14:37 -0800207 ensure_path_mounted(volume);
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700208
Tao Bao3f5a3822016-12-13 11:14:37 -0800209 struct dirent* de;
210 std::unique_ptr<DIR, decltype(&closedir)> d(opendir(CACHE_LOG_DIR), closedir);
211 if (d) {
212 while ((de = readdir(d.get())) != nullptr) {
213 if (strncmp(de->d_name, "last_", 5) == 0 || strcmp(de->d_name, "log") == 0) {
214 std::string path = android::base::StringPrintf("%s/%s", CACHE_LOG_DIR, de->d_name);
215
216 struct stat sb;
217 if (stat(path.c_str(), &sb) == 0) {
218 // truncate files to 512kb
219 if (sb.st_size > (1 << 19)) {
220 sb.st_size = 1 << 19;
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700221 }
Tao Bao3f5a3822016-12-13 11:14:37 -0800222
223 std::string data(sb.st_size, '\0');
Tianjie Xude6735e2017-07-10 15:13:33 -0700224 FILE* f = fopen(path.c_str(), "rbe");
Tao Bao3f5a3822016-12-13 11:14:37 -0800225 fread(&data[0], 1, data.size(), f);
226 fclose(f);
227
228 log_files.emplace_back(saved_log_file{ path, sb, data });
229 }
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700230 }
Tao Bao3f5a3822016-12-13 11:14:37 -0800231 }
Paul Lawrenced0db3372015-11-05 13:38:40 -0800232 } else {
Tao Bao3f5a3822016-12-13 11:14:37 -0800233 if (errno != ENOENT) {
234 PLOG(ERROR) << "Failed to opendir " << CACHE_LOG_DIR;
235 }
Paul Lawrenced0db3372015-11-05 13:38:40 -0800236 }
Tao Bao3f5a3822016-12-13 11:14:37 -0800237 }
Doug Zongkerd0181b82011-10-19 10:51:12 -0700238
Tao Bao3f5a3822016-12-13 11:14:37 -0800239 ui->Print("Formatting %s...\n", volume);
240
241 ensure_path_unmounted(volume);
242
243 int result;
Tao Bao3f5a3822016-12-13 11:14:37 -0800244 if (is_data && reason && strcmp(reason, "convert_fbe") == 0) {
Tao Bao406a6ff2018-04-30 10:05:57 -0700245 static constexpr const char* CONVERT_FBE_DIR = "/tmp/convert_fbe";
246 static constexpr const char* CONVERT_FBE_FILE = "/tmp/convert_fbe/convert_fbe";
247 // Create convert_fbe breadcrumb file to signal init to convert to file based encryption, not
248 // full disk encryption.
Tao Bao3f5a3822016-12-13 11:14:37 -0800249 if (mkdir(CONVERT_FBE_DIR, 0700) != 0) {
Tao Bao406a6ff2018-04-30 10:05:57 -0700250 PLOG(ERROR) << "Failed to mkdir " << CONVERT_FBE_DIR;
251 return false;
Tao Bao3f5a3822016-12-13 11:14:37 -0800252 }
Tianjie Xude6735e2017-07-10 15:13:33 -0700253 FILE* f = fopen(CONVERT_FBE_FILE, "wbe");
Tao Bao3f5a3822016-12-13 11:14:37 -0800254 if (!f) {
Tao Bao406a6ff2018-04-30 10:05:57 -0700255 PLOG(ERROR) << "Failed to convert to file encryption";
256 return false;
Tao Bao3f5a3822016-12-13 11:14:37 -0800257 }
258 fclose(f);
259 result = format_volume(volume, CONVERT_FBE_DIR);
260 remove(CONVERT_FBE_FILE);
261 rmdir(CONVERT_FBE_DIR);
262 } else {
263 result = format_volume(volume);
264 }
265
266 if (is_cache) {
267 // Re-create the log dir and write back the log entries.
268 if (ensure_path_mounted(CACHE_LOG_DIR) == 0 &&
Tao Baoac3d1ed2017-07-23 00:01:02 -0700269 mkdir_recursively(CACHE_LOG_DIR, 0777, false, sehandle) == 0) {
Tao Bao3f5a3822016-12-13 11:14:37 -0800270 for (const auto& log : log_files) {
271 if (!android::base::WriteStringToFile(log.data, log.name, log.sb.st_mode, log.sb.st_uid,
272 log.sb.st_gid)) {
273 PLOG(ERROR) << "Failed to write to " << log.name;
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700274 }
Tao Bao3f5a3822016-12-13 11:14:37 -0800275 }
276 } else {
277 PLOG(ERROR) << "Failed to mount / create " << CACHE_LOG_DIR;
Doug Zongker2c3539e2010-09-29 13:21:30 -0700278 }
279
Tao Bao3f5a3822016-12-13 11:14:37 -0800280 // Any part of the log we'd copied to cache is now gone.
281 // Reset the pointer so we copy from the beginning of the temp
282 // log.
Jerry Zhangcadf4ed2018-05-02 16:56:00 -0700283 reset_tmplog_offset();
284 copy_logs(modified_flash, has_cache);
Tao Bao3f5a3822016-12-13 11:14:37 -0800285 }
286
287 return (result == 0);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800288}
289
Hridya Valsarajue4ef4532018-08-31 11:57:51 -0700290// Sets the usb config to 'state'
291bool SetUsbConfig(const std::string& state) {
292 android::base::SetProperty("sys.usb.config", state);
293 return android::base::WaitForProperty("sys.usb.state", state);
294}
295
Tao Baoc4a18ef2017-02-10 00:13:30 -0800296// Returns the selected filename, or an empty string.
297static std::string browse_directory(const std::string& path, Device* device) {
298 ensure_path_mounted(path.c_str());
Doug Zongker8674a722010-09-15 11:08:23 -0700299
Tao Baoc4a18ef2017-02-10 00:13:30 -0800300 std::unique_ptr<DIR, decltype(&closedir)> d(opendir(path.c_str()), closedir);
301 if (!d) {
302 PLOG(ERROR) << "error opening " << path;
303 return "";
304 }
Doug Zongkerc18eeb82010-09-21 16:49:26 -0700305
Tao Baoc4a18ef2017-02-10 00:13:30 -0800306 std::vector<std::string> dirs;
Tao Bao1fe1afe2018-05-01 15:56:05 -0700307 std::vector<std::string> entries{ "../" }; // "../" is always the first entry.
Tao Baoc4a18ef2017-02-10 00:13:30 -0800308
309 dirent* de;
310 while ((de = readdir(d.get())) != nullptr) {
311 std::string name(de->d_name);
312
313 if (de->d_type == DT_DIR) {
314 // Skip "." and ".." entries.
315 if (name == "." || name == "..") continue;
316 dirs.push_back(name + "/");
317 } else if (de->d_type == DT_REG && android::base::EndsWithIgnoreCase(name, ".zip")) {
Tao Bao1fe1afe2018-05-01 15:56:05 -0700318 entries.push_back(name);
Tao Baoc4a18ef2017-02-10 00:13:30 -0800319 }
320 }
321
322 std::sort(dirs.begin(), dirs.end());
Tao Bao1fe1afe2018-05-01 15:56:05 -0700323 std::sort(entries.begin(), entries.end());
Tao Baoc4a18ef2017-02-10 00:13:30 -0800324
Tao Bao1fe1afe2018-05-01 15:56:05 -0700325 // Append dirs to the entries list.
326 entries.insert(entries.end(), dirs.begin(), dirs.end());
Tao Baoc4a18ef2017-02-10 00:13:30 -0800327
Tao Bao1fe1afe2018-05-01 15:56:05 -0700328 std::vector<std::string> headers{ "Choose a package to install:", path };
Tao Baoc4a18ef2017-02-10 00:13:30 -0800329
Tao Bao1fe1afe2018-05-01 15:56:05 -0700330 size_t chosen_item = 0;
Tao Baoc4a18ef2017-02-10 00:13:30 -0800331 while (true) {
Tao Bao3aec6962018-04-20 09:24:58 -0700332 chosen_item = ui->ShowMenu(
333 headers, entries, chosen_item, true,
334 std::bind(&Device::HandleMenuKey, device, std::placeholders::_1, std::placeholders::_2));
Tao Baoc4a18ef2017-02-10 00:13:30 -0800335
Jerry Zhangb76af932018-05-22 12:08:35 -0700336 // Return if WaitKey() was interrupted.
337 if (chosen_item == static_cast<size_t>(RecoveryUI::KeyError::INTERRUPTED)) {
338 return "";
339 }
340
Tao Bao1fe1afe2018-05-01 15:56:05 -0700341 const std::string& item = entries[chosen_item];
Tao Baoc4a18ef2017-02-10 00:13:30 -0800342 if (chosen_item == 0) {
343 // Go up but continue browsing (if the caller is browse_directory).
344 return "";
Doug Zongker8674a722010-09-15 11:08:23 -0700345 }
346
Tao Baoc4a18ef2017-02-10 00:13:30 -0800347 std::string new_path = path + "/" + item;
348 if (new_path.back() == '/') {
349 // Recurse down into a subdirectory.
350 new_path.pop_back();
351 std::string result = browse_directory(new_path, device);
352 if (!result.empty()) return result;
353 } else {
354 // Selected a zip file: return the path to the caller.
355 return new_path;
Doug Zongker8674a722010-09-15 11:08:23 -0700356 }
Tao Baoc4a18ef2017-02-10 00:13:30 -0800357 }
Doug Zongker8674a722010-09-15 11:08:23 -0700358
Tao Baoc4a18ef2017-02-10 00:13:30 -0800359 // Unreachable.
Doug Zongker8674a722010-09-15 11:08:23 -0700360}
361
Elliott Hughes30694c92015-03-25 15:16:51 -0700362static bool yes_no(Device* device, const char* question1, const char* question2) {
Tao Bao1fe1afe2018-05-01 15:56:05 -0700363 std::vector<std::string> headers{ question1, question2 };
364 std::vector<std::string> items{ " No", " Yes" };
Doug Zongkerddd6a282009-06-09 12:22:33 -0700365
Tao Bao1fe1afe2018-05-01 15:56:05 -0700366 size_t chosen_item = ui->ShowMenu(
Tao Bao3aec6962018-04-20 09:24:58 -0700367 headers, items, 0, true,
368 std::bind(&Device::HandleMenuKey, device, std::placeholders::_1, std::placeholders::_2));
369 return (chosen_item == 1);
Elliott Hughes30694c92015-03-25 15:16:51 -0700370}
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800371
Paul Crowley08404b42016-12-19 13:04:23 -0800372static bool ask_to_wipe_data(Device* device) {
Tao Bao3aec6962018-04-20 09:24:58 -0700373 return yes_no(device, "Wipe all user data?", " THIS CAN NOT BE UNDONE!");
Paul Crowley08404b42016-12-19 13:04:23 -0800374}
Doug Zongker1066d2c2009-04-01 13:57:40 -0700375
Paul Crowley08404b42016-12-19 13:04:23 -0800376// Return true on success.
377static bool wipe_data(Device* device) {
Tao Bao682c34b2015-04-07 17:16:35 -0700378 modified_flash = true;
379
Doug Zongker211aebc2011-10-28 15:13:10 -0700380 ui->Print("\n-- Wiping data...\n");
Paul Crowley3b4d5162016-06-08 13:51:41 -0700381 bool success = device->PreWipeData();
382 if (success) {
383 success &= erase_volume(DATA_ROOT);
384 if (has_cache) {
385 success &= erase_volume(CACHE_ROOT);
386 }
387 if (volume_for_mount_point(METADATA_ROOT) != nullptr) {
388 success &= erase_volume(METADATA_ROOT);
389 }
390 }
391 if (success) {
392 success &= device->PostWipeData();
393 }
Elliott Hughes945548e2015-06-05 17:59:56 -0700394 ui->Print("Data wipe %s.\n", success ? "complete" : "failed");
395 return success;
Doug Zongkerf93d8162009-09-22 15:16:02 -0700396}
397
Hridya Valsarajueb6f13a2018-09-12 10:25:01 -0700398static InstallResult prompt_and_wipe_data(Device* device) {
Tao Bao2bbc6d62017-08-13 23:48:55 -0700399 // Use a single string and let ScreenRecoveryUI handles the wrapping.
Tianjie Xub99e6062018-10-16 15:13:09 -0700400 std::vector<std::string> wipe_data_menu_headers{
Tao Bao2bbc6d62017-08-13 23:48:55 -0700401 "Can't load Android system. Your data may be corrupt. "
402 "If you continue to get this message, you may need to "
403 "perform a factory data reset and erase all user data "
Paul Crowley31ac0c62017-03-23 12:32:40 -0700404 "stored on this device.",
Tao Baofc5499f2017-02-23 19:06:53 -0800405 };
Tao Bao1fe1afe2018-05-01 15:56:05 -0700406 // clang-format off
Tianjie Xub99e6062018-10-16 15:13:09 -0700407 std::vector<std::string> wipe_data_menu_items {
Paul Crowley31ac0c62017-03-23 12:32:40 -0700408 "Try again",
409 "Factory data reset",
Tao Baofc5499f2017-02-23 19:06:53 -0800410 };
Tao Bao1fe1afe2018-05-01 15:56:05 -0700411 // clang-format on
Tao Baofc5499f2017-02-23 19:06:53 -0800412 for (;;) {
Tianjie Xub99e6062018-10-16 15:13:09 -0700413 size_t chosen_item = ui->ShowPromptWipeDataMenu(
414 wipe_data_menu_headers, wipe_data_menu_items,
Tao Bao3aec6962018-04-20 09:24:58 -0700415 std::bind(&Device::HandleMenuKey, device, std::placeholders::_1, std::placeholders::_2));
Jerry Zhangb76af932018-05-22 12:08:35 -0700416 // If ShowMenu() returned RecoveryUI::KeyError::INTERRUPTED, WaitKey() was interrupted.
417 if (chosen_item == static_cast<size_t>(RecoveryUI::KeyError::INTERRUPTED)) {
Hridya Valsarajueb6f13a2018-09-12 10:25:01 -0700418 return INSTALL_KEY_INTERRUPTED;
Jerry Zhangb76af932018-05-22 12:08:35 -0700419 }
Tao Baofc5499f2017-02-23 19:06:53 -0800420 if (chosen_item != 1) {
Hridya Valsarajueb6f13a2018-09-12 10:25:01 -0700421 return INSTALL_SUCCESS; // Just reboot, no wipe; not a failure, user asked for it
Paul Crowley08404b42016-12-19 13:04:23 -0800422 }
Tianjie Xub99e6062018-10-16 15:13:09 -0700423
424 // TODO(xunchang) localize the confirmation texts also.
Tao Baofc5499f2017-02-23 19:06:53 -0800425 if (ask_to_wipe_data(device)) {
Hridya Valsarajueb6f13a2018-09-12 10:25:01 -0700426 if (wipe_data(device)) {
427 return INSTALL_SUCCESS;
428 } else {
429 return INSTALL_ERROR;
430 }
Tao Baofc5499f2017-02-23 19:06:53 -0800431 }
432 }
Paul Crowley08404b42016-12-19 13:04:23 -0800433}
434
Tao Baoe39a9bc2015-03-31 12:19:05 -0700435// Return true on success.
436static bool wipe_cache(bool should_confirm, Device* device) {
Tao Bao26112e52016-02-25 12:29:40 -0800437 if (!has_cache) {
438 ui->Print("No /cache partition found.\n");
439 return false;
440 }
441
Elliott Hughes30694c92015-03-25 15:16:51 -0700442 if (should_confirm && !yes_no(device, "Wipe cache?", " THIS CAN NOT BE UNDONE!")) {
Tao Baoe39a9bc2015-03-31 12:19:05 -0700443 return false;
Elliott Hughes30694c92015-03-25 15:16:51 -0700444 }
445
Tao Bao682c34b2015-04-07 17:16:35 -0700446 modified_flash = true;
447
Elliott Hughes30694c92015-03-25 15:16:51 -0700448 ui->Print("\n-- Wiping cache...\n");
Elliott Hughes945548e2015-06-05 17:59:56 -0700449 bool success = erase_volume("/cache");
450 ui->Print("Cache wipe %s.\n", success ? "complete" : "failed");
451 return success;
Elliott Hughes30694c92015-03-25 15:16:51 -0700452}
453
Tao Bao1b2a98b2017-03-24 10:45:34 -0700454// Secure-wipe a given partition. It uses BLKSECDISCARD, if supported. Otherwise, it goes with
455// BLKDISCARD (if device supports BLKDISCARDZEROES) or BLKZEROOUT.
Tao Bao862a4c12016-06-02 11:16:50 -0700456static bool secure_wipe_partition(const std::string& partition) {
Tao Bao1b2a98b2017-03-24 10:45:34 -0700457 android::base::unique_fd fd(TEMP_FAILURE_RETRY(open(partition.c_str(), O_WRONLY)));
458 if (fd == -1) {
459 PLOG(ERROR) << "Failed to open \"" << partition << "\"";
460 return false;
461 }
462
463 uint64_t range[2] = { 0, 0 };
464 if (ioctl(fd, BLKGETSIZE64, &range[1]) == -1 || range[1] == 0) {
465 PLOG(ERROR) << "Failed to get partition size";
466 return false;
467 }
468 LOG(INFO) << "Secure-wiping \"" << partition << "\" from " << range[0] << " to " << range[1];
469
470 LOG(INFO) << " Trying BLKSECDISCARD...";
471 if (ioctl(fd, BLKSECDISCARD, &range) == -1) {
472 PLOG(WARNING) << " Failed";
473
474 // Use BLKDISCARD if it zeroes out blocks, otherwise use BLKZEROOUT.
475 unsigned int zeroes;
476 if (ioctl(fd, BLKDISCARDZEROES, &zeroes) == 0 && zeroes != 0) {
477 LOG(INFO) << " Trying BLKDISCARD...";
478 if (ioctl(fd, BLKDISCARD, &range) == -1) {
479 PLOG(ERROR) << " Failed";
Tao Bao862a4c12016-06-02 11:16:50 -0700480 return false;
Tao Bao1b2a98b2017-03-24 10:45:34 -0700481 }
482 } else {
483 LOG(INFO) << " Trying BLKZEROOUT...";
484 if (ioctl(fd, BLKZEROOUT, &range) == -1) {
485 PLOG(ERROR) << " Failed";
Tao Bao862a4c12016-06-02 11:16:50 -0700486 return false;
Tao Bao1b2a98b2017-03-24 10:45:34 -0700487 }
Tao Bao862a4c12016-06-02 11:16:50 -0700488 }
Tao Bao1b2a98b2017-03-24 10:45:34 -0700489 }
Tao Bao862a4c12016-06-02 11:16:50 -0700490
Tao Bao1b2a98b2017-03-24 10:45:34 -0700491 LOG(INFO) << " Done";
492 return true;
Tao Bao862a4c12016-06-02 11:16:50 -0700493}
494
Yabin Cuifd99a312016-06-09 14:09:39 -0700495// Check if the wipe package matches expectation:
496// 1. verify the package.
497// 2. check metadata (ota-type, pre-device and serial number if having one).
498static bool check_wipe_package(size_t wipe_package_size) {
499 if (wipe_package_size == 0) {
500 LOG(ERROR) << "wipe_package_size is zero";
501 return false;
502 }
503 std::string wipe_package;
504 std::string err_str;
505 if (!read_wipe_package(&wipe_package, wipe_package_size, &err_str)) {
506 PLOG(ERROR) << "Failed to read wipe package";
507 return false;
508 }
509 if (!verify_package(reinterpret_cast<const unsigned char*>(wipe_package.data()),
510 wipe_package.size())) {
511 LOG(ERROR) << "Failed to verify package";
512 return false;
513 }
514
515 // Extract metadata
516 ZipArchiveHandle zip;
Tao Baoefc35592017-01-08 22:45:47 -0800517 int err = OpenArchiveFromMemory(static_cast<void*>(&wipe_package[0]), wipe_package.size(),
518 "wipe_package", &zip);
Yabin Cuifd99a312016-06-09 14:09:39 -0700519 if (err != 0) {
520 LOG(ERROR) << "Can't open wipe package : " << ErrorCodeString(err);
521 return false;
522 }
523 std::string metadata;
Tao Bao1b2a98b2017-03-24 10:45:34 -0700524 if (!read_metadata_from_package(zip, &metadata)) {
Yabin Cuifd99a312016-06-09 14:09:39 -0700525 CloseArchive(zip);
526 return false;
527 }
528 CloseArchive(zip);
529
530 // Check metadata
531 std::vector<std::string> lines = android::base::Split(metadata, "\n");
532 bool ota_type_matched = false;
533 bool device_type_matched = false;
534 bool has_serial_number = false;
535 bool serial_number_matched = false;
536 for (const auto& line : lines) {
537 if (line == "ota-type=BRICK") {
538 ota_type_matched = true;
539 } else if (android::base::StartsWith(line, "pre-device=")) {
540 std::string device_type = line.substr(strlen("pre-device="));
Tao Baoefc35592017-01-08 22:45:47 -0800541 std::string real_device_type = android::base::GetProperty("ro.build.product", "");
Yabin Cuifd99a312016-06-09 14:09:39 -0700542 device_type_matched = (device_type == real_device_type);
543 } else if (android::base::StartsWith(line, "serialno=")) {
544 std::string serial_no = line.substr(strlen("serialno="));
Tao Baoefc35592017-01-08 22:45:47 -0800545 std::string real_serial_no = android::base::GetProperty("ro.serialno", "");
Yabin Cuifd99a312016-06-09 14:09:39 -0700546 has_serial_number = true;
547 serial_number_matched = (serial_no == real_serial_no);
548 }
549 }
550 return ota_type_matched && device_type_matched && (!has_serial_number || serial_number_matched);
551}
552
Tao Baoaac9d9f2018-04-29 23:38:59 -0700553// Wipes the current A/B device, with a secure wipe of all the partitions in RECOVERY_WIPE.
Yabin Cuifd99a312016-06-09 14:09:39 -0700554static bool wipe_ab_device(size_t wipe_package_size) {
Tao Baoaac9d9f2018-04-29 23:38:59 -0700555 ui->SetBackground(RecoveryUI::ERASING);
556 ui->SetProgressType(RecoveryUI::INDETERMINATE);
Tao Bao862a4c12016-06-02 11:16:50 -0700557
Tao Baoaac9d9f2018-04-29 23:38:59 -0700558 if (!check_wipe_package(wipe_package_size)) {
559 LOG(ERROR) << "Failed to verify wipe package";
560 return false;
561 }
562 static constexpr const char* RECOVERY_WIPE = "/etc/recovery.wipe";
563 std::string partition_list;
564 if (!android::base::ReadFileToString(RECOVERY_WIPE, &partition_list)) {
565 LOG(ERROR) << "failed to read \"" << RECOVERY_WIPE << "\"";
566 return false;
567 }
568
569 std::vector<std::string> lines = android::base::Split(partition_list, "\n");
570 for (const std::string& line : lines) {
571 std::string partition = android::base::Trim(line);
572 // Ignore '#' comment or empty lines.
573 if (android::base::StartsWith(partition, "#") || partition.empty()) {
574 continue;
Tao Bao862a4c12016-06-02 11:16:50 -0700575 }
576
Tao Baoaac9d9f2018-04-29 23:38:59 -0700577 // Proceed anyway even if it fails to wipe some partition.
578 secure_wipe_partition(partition);
579 }
580 return true;
Tao Bao862a4c12016-06-02 11:16:50 -0700581}
582
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700583static void choose_recovery_file(Device* device) {
Tao Bao08fc6be2017-03-07 00:56:27 -0800584 std::vector<std::string> entries;
585 if (has_cache) {
586 for (int i = 0; i < KEEP_LOG_COUNT; i++) {
587 auto add_to_entries = [&](const char* filename) {
588 std::string log_file(filename);
589 if (i > 0) {
590 log_file += "." + std::to_string(i);
Tao Baobef39712015-05-04 18:50:27 -0700591 }
Tao Bao08fc6be2017-03-07 00:56:27 -0800592
593 if (ensure_path_mounted(log_file.c_str()) == 0 && access(log_file.c_str(), R_OK) == 0) {
594 entries.push_back(std::move(log_file));
595 }
596 };
597
598 // Add LAST_LOG_FILE + LAST_LOG_FILE.x
599 add_to_entries(LAST_LOG_FILE);
600
601 // Add LAST_KMSG_FILE + LAST_KMSG_FILE.x
602 add_to_entries(LAST_KMSG_FILE);
603 }
604 } else {
605 // If cache partition is not found, view /tmp/recovery.log instead.
Tao Bao641fa972018-04-25 18:59:40 -0700606 if (access(Paths::Get().temporary_log_file().c_str(), R_OK) == -1) {
Tao Bao08fc6be2017-03-07 00:56:27 -0800607 return;
Tianjie Xua54f75e2016-08-17 12:02:46 -0700608 } else {
Tao Bao641fa972018-04-25 18:59:40 -0700609 entries.push_back(Paths::Get().temporary_log_file());
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700610 }
Tao Bao08fc6be2017-03-07 00:56:27 -0800611 }
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700612
Tao Bao08fc6be2017-03-07 00:56:27 -0800613 entries.push_back("Back");
Elliott Hughesc0491632015-05-06 12:40:05 -0700614
Tao Bao1fe1afe2018-05-01 15:56:05 -0700615 std::vector<std::string> headers{ "Select file to view" };
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700616
Tao Bao1fe1afe2018-05-01 15:56:05 -0700617 size_t chosen_item = 0;
Tao Bao08fc6be2017-03-07 00:56:27 -0800618 while (true) {
Tao Bao3aec6962018-04-20 09:24:58 -0700619 chosen_item = ui->ShowMenu(
Tao Bao1fe1afe2018-05-01 15:56:05 -0700620 headers, entries, chosen_item, true,
Tao Bao3aec6962018-04-20 09:24:58 -0700621 std::bind(&Device::HandleMenuKey, device, std::placeholders::_1, std::placeholders::_2));
Jerry Zhangb76af932018-05-22 12:08:35 -0700622
623 // Handle WaitKey() interrupt.
624 if (chosen_item == static_cast<size_t>(RecoveryUI::KeyError::INTERRUPTED)) {
625 break;
626 }
Tao Bao08fc6be2017-03-07 00:56:27 -0800627 if (entries[chosen_item] == "Back") break;
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700628
Tao Bao1d156b92018-05-02 12:43:18 -0700629 ui->ShowFile(entries[chosen_item]);
Tao Bao08fc6be2017-03-07 00:56:27 -0800630 }
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700631}
632
Tao Baodb7e8982017-03-06 23:53:16 -0800633static void run_graphics_test() {
634 // Switch to graphics screen.
635 ui->ShowText(false);
Elliott Hughes498cda62016-04-14 16:49:04 -0700636
Tao Baodb7e8982017-03-06 23:53:16 -0800637 ui->SetProgressType(RecoveryUI::INDETERMINATE);
638 ui->SetBackground(RecoveryUI::INSTALLING_UPDATE);
639 sleep(1);
Elliott Hughes498cda62016-04-14 16:49:04 -0700640
Tao Baodb7e8982017-03-06 23:53:16 -0800641 ui->SetBackground(RecoveryUI::ERROR);
642 sleep(1);
Elliott Hughes498cda62016-04-14 16:49:04 -0700643
Tao Baodb7e8982017-03-06 23:53:16 -0800644 ui->SetBackground(RecoveryUI::NO_COMMAND);
645 sleep(1);
Elliott Hughes498cda62016-04-14 16:49:04 -0700646
Tao Baodb7e8982017-03-06 23:53:16 -0800647 ui->SetBackground(RecoveryUI::ERASING);
648 sleep(1);
Elliott Hughes498cda62016-04-14 16:49:04 -0700649
Tao Baodb7e8982017-03-06 23:53:16 -0800650 // Calling SetBackground() after SetStage() to trigger a redraw.
651 ui->SetStage(1, 3);
652 ui->SetBackground(RecoveryUI::INSTALLING_UPDATE);
653 sleep(1);
654 ui->SetStage(2, 3);
655 ui->SetBackground(RecoveryUI::INSTALLING_UPDATE);
656 sleep(1);
657 ui->SetStage(3, 3);
658 ui->SetBackground(RecoveryUI::INSTALLING_UPDATE);
659 sleep(1);
Elliott Hughes498cda62016-04-14 16:49:04 -0700660
Tao Baodb7e8982017-03-06 23:53:16 -0800661 ui->SetStage(-1, -1);
662 ui->SetBackground(RecoveryUI::INSTALLING_UPDATE);
Elliott Hughes498cda62016-04-14 16:49:04 -0700663
Tao Baodb7e8982017-03-06 23:53:16 -0800664 ui->SetProgressType(RecoveryUI::DETERMINATE);
665 ui->ShowProgress(1.0, 10.0);
666 float fraction = 0.0;
667 for (size_t i = 0; i < 100; ++i) {
668 fraction += .01;
669 ui->SetProgress(fraction);
670 usleep(100000);
671 }
672
673 ui->ShowText(true);
Elliott Hughes498cda62016-04-14 16:49:04 -0700674}
675
Tao Baocdcf28f2016-01-13 15:05:20 -0800676// How long (in seconds) we wait for the fuse-provided package file to
677// appear, before timing out.
678#define SDCARD_INSTALL_TIMEOUT 10
679
Tao Bao145d8612015-03-25 15:51:15 -0700680static int apply_from_sdcard(Device* device, bool* wipe_cache) {
Tao Bao682c34b2015-04-07 17:16:35 -0700681 modified_flash = true;
682
Christian Poetzsch4ec58a42015-02-19 10:42:39 +0000683 if (ensure_path_mounted(SDCARD_ROOT) != 0) {
684 ui->Print("\n-- Couldn't mount %s.\n", SDCARD_ROOT);
685 return INSTALL_ERROR;
686 }
687
Tao Baoc4a18ef2017-02-10 00:13:30 -0800688 std::string path = browse_directory(SDCARD_ROOT, device);
689 if (path.empty()) {
Elliott Hughes018ed312015-04-08 16:51:36 -0700690 ui->Print("\n-- No package file selected.\n");
caozhiyuanb4effb92015-06-10 16:46:38 +0800691 ensure_path_unmounted(SDCARD_ROOT);
Christian Poetzsch4ec58a42015-02-19 10:42:39 +0000692 return INSTALL_ERROR;
693 }
694
Tao Baoc4a18ef2017-02-10 00:13:30 -0800695 ui->Print("\n-- Install %s ...\n", path.c_str());
Christian Poetzsch4ec58a42015-02-19 10:42:39 +0000696 set_sdcard_update_bootloader_message();
Christian Poetzsch4ec58a42015-02-19 10:42:39 +0000697
Tao Baocdcf28f2016-01-13 15:05:20 -0800698 // We used to use fuse in a thread as opposed to a process. Since accessing
699 // through fuse involves going from kernel to userspace to kernel, it leads
700 // to deadlock when a page fault occurs. (Bug: 26313124)
701 pid_t child;
702 if ((child = fork()) == 0) {
Tao Baoc4a18ef2017-02-10 00:13:30 -0800703 bool status = start_sdcard_fuse(path.c_str());
Tao Baocdcf28f2016-01-13 15:05:20 -0800704
705 _exit(status ? EXIT_SUCCESS : EXIT_FAILURE);
706 }
707
708 // FUSE_SIDELOAD_HOST_PATHNAME will start to exist once the fuse in child
709 // process is ready.
710 int result = INSTALL_ERROR;
711 int status;
712 bool waited = false;
713 for (int i = 0; i < SDCARD_INSTALL_TIMEOUT; ++i) {
714 if (waitpid(child, &status, WNOHANG) == -1) {
715 result = INSTALL_ERROR;
716 waited = true;
717 break;
718 }
719
720 struct stat sb;
721 if (stat(FUSE_SIDELOAD_HOST_PATHNAME, &sb) == -1) {
722 if (errno == ENOENT && i < SDCARD_INSTALL_TIMEOUT-1) {
723 sleep(1);
724 continue;
725 } else {
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -0700726 LOG(ERROR) << "Timed out waiting for the fuse-provided package.";
Tao Baocdcf28f2016-01-13 15:05:20 -0800727 result = INSTALL_ERROR;
728 kill(child, SIGKILL);
729 break;
730 }
731 }
732
Tao Bao641fa972018-04-25 18:59:40 -0700733 result = install_package(FUSE_SIDELOAD_HOST_PATHNAME, wipe_cache, false, 0 /*retry_count*/);
Tao Baocdcf28f2016-01-13 15:05:20 -0800734 break;
735 }
Christian Poetzsch4ec58a42015-02-19 10:42:39 +0000736
Tao Baocdcf28f2016-01-13 15:05:20 -0800737 if (!waited) {
738 // Calling stat() on this magic filename signals the fuse
739 // filesystem to shut down.
740 struct stat sb;
741 stat(FUSE_SIDELOAD_HOST_EXIT_PATHNAME, &sb);
742
743 waitpid(child, &status, 0);
744 }
745
746 if (!WIFEXITED(status) || WEXITSTATUS(status) != 0) {
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -0700747 LOG(ERROR) << "Error exit from the fuse process: " << WEXITSTATUS(status);
Tao Baocdcf28f2016-01-13 15:05:20 -0800748 }
749
Christian Poetzsch4ec58a42015-02-19 10:42:39 +0000750 ensure_path_unmounted(SDCARD_ROOT);
Tao Baocdcf28f2016-01-13 15:05:20 -0800751 return result;
Christian Poetzsch4ec58a42015-02-19 10:42:39 +0000752}
753
Tao Bao50dd5322017-03-07 14:57:04 -0800754// Returns REBOOT, SHUTDOWN, or REBOOT_BOOTLOADER. Returning NO_ACTION means to take the default,
755// which is to reboot or shutdown depending on if the --shutdown_after flag was passed to recovery.
756static Device::BuiltinAction prompt_and_wait(Device* device, int status) {
757 for (;;) {
Tao Bao551d2c32018-05-09 20:53:13 -0700758 finish_recovery();
Tao Bao50dd5322017-03-07 14:57:04 -0800759 switch (status) {
760 case INSTALL_SUCCESS:
761 case INSTALL_NONE:
762 ui->SetBackground(RecoveryUI::NO_COMMAND);
763 break;
Doug Zongker6c8553d2012-09-24 10:40:47 -0700764
Tao Bao50dd5322017-03-07 14:57:04 -0800765 case INSTALL_ERROR:
766 case INSTALL_CORRUPT:
767 ui->SetBackground(RecoveryUI::ERROR);
768 break;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800769 }
Tao Bao50dd5322017-03-07 14:57:04 -0800770 ui->SetProgressType(RecoveryUI::EMPTY);
771
Tao Bao1fe1afe2018-05-01 15:56:05 -0700772 size_t chosen_item = ui->ShowMenu(
773 {}, device->GetMenuItems(), 0, false,
Tao Bao3aec6962018-04-20 09:24:58 -0700774 std::bind(&Device::HandleMenuKey, device, std::placeholders::_1, std::placeholders::_2));
Jerry Zhangb76af932018-05-22 12:08:35 -0700775 // Handle Interrupt key
776 if (chosen_item == static_cast<size_t>(RecoveryUI::KeyError::INTERRUPTED)) {
777 return Device::KEY_INTERRUPTED;
778 }
Tao Bao50dd5322017-03-07 14:57:04 -0800779 // Device-specific code may take some action here. It may return one of the core actions
780 // handled in the switch statement below.
Jerry Zhangb76af932018-05-22 12:08:35 -0700781 Device::BuiltinAction chosen_action =
782 (chosen_item == static_cast<size_t>(RecoveryUI::KeyError::TIMED_OUT))
783 ? Device::REBOOT
784 : device->InvokeMenuItem(chosen_item);
Tao Bao50dd5322017-03-07 14:57:04 -0800785
786 bool should_wipe_cache = false;
787 switch (chosen_action) {
788 case Device::NO_ACTION:
789 break;
790
791 case Device::REBOOT:
792 case Device::SHUTDOWN:
793 case Device::REBOOT_BOOTLOADER:
Hridya Valsaraju20c81b32018-07-27 22:09:12 -0700794 case Device::ENTER_FASTBOOT:
795 case Device::ENTER_RECOVERY:
Tao Bao50dd5322017-03-07 14:57:04 -0800796 return chosen_action;
797
798 case Device::WIPE_DATA:
799 if (ui->IsTextVisible()) {
800 if (ask_to_wipe_data(device)) {
801 wipe_data(device);
802 }
803 } else {
804 wipe_data(device);
805 return Device::NO_ACTION;
806 }
807 break;
808
809 case Device::WIPE_CACHE:
810 wipe_cache(ui->IsTextVisible(), device);
811 if (!ui->IsTextVisible()) return Device::NO_ACTION;
812 break;
813
814 case Device::APPLY_ADB_SIDELOAD:
815 case Device::APPLY_SDCARD:
816 {
817 bool adb = (chosen_action == Device::APPLY_ADB_SIDELOAD);
818 if (adb) {
Tao Bao641fa972018-04-25 18:59:40 -0700819 status = apply_from_adb(&should_wipe_cache);
Tao Bao50dd5322017-03-07 14:57:04 -0800820 } else {
821 status = apply_from_sdcard(device, &should_wipe_cache);
822 }
823
824 if (status == INSTALL_SUCCESS && should_wipe_cache) {
825 if (!wipe_cache(false, device)) {
826 status = INSTALL_ERROR;
827 }
828 }
829
830 if (status != INSTALL_SUCCESS) {
831 ui->SetBackground(RecoveryUI::ERROR);
832 ui->Print("Installation aborted.\n");
Jerry Zhangcadf4ed2018-05-02 16:56:00 -0700833 copy_logs(modified_flash, has_cache);
Tao Bao50dd5322017-03-07 14:57:04 -0800834 } else if (!ui->IsTextVisible()) {
835 return Device::NO_ACTION; // reboot if logs aren't visible
836 } else {
837 ui->Print("\nInstall from %s complete.\n", adb ? "ADB" : "SD card");
838 }
839 }
840 break;
841
842 case Device::VIEW_RECOVERY_LOGS:
843 choose_recovery_file(device);
844 break;
845
846 case Device::RUN_GRAPHICS_TEST:
847 run_graphics_test();
848 break;
849
Tianjie Xu29d55752017-09-20 17:53:46 -0700850 case Device::RUN_LOCALE_TEST: {
851 ScreenRecoveryUI* screen_ui = static_cast<ScreenRecoveryUI*>(ui);
Tao Bao39c49182018-05-07 22:50:33 -0700852 screen_ui->CheckBackgroundTextImages();
Tianjie Xu29d55752017-09-20 17:53:46 -0700853 break;
854 }
Tao Bao50dd5322017-03-07 14:57:04 -0800855 case Device::MOUNT_SYSTEM:
Jiyong Park8b7af4c2018-06-01 11:58:54 +0900856 // the system partition is mounted at /mnt/system
Mark Salyzynfdea2422018-08-29 10:44:33 -0700857 if (volume_for_mount_point(SYSTEM_ROOT) == nullptr) {
Jiyong Park8b7af4c2018-06-01 11:58:54 +0900858 if (ensure_path_mounted_at("/", "/mnt/system") != -1) {
Tao Bao50dd5322017-03-07 14:57:04 -0800859 ui->Print("Mounted /system.\n");
860 }
861 } else {
Mark Salyzynfdea2422018-08-29 10:44:33 -0700862 if (ensure_path_mounted_at(SYSTEM_ROOT, "/mnt/system") != -1) {
Tao Bao50dd5322017-03-07 14:57:04 -0800863 ui->Print("Mounted /system.\n");
864 }
865 }
866 break;
Jerry Zhangb76af932018-05-22 12:08:35 -0700867
868 case Device::KEY_INTERRUPTED:
869 return Device::KEY_INTERRUPTED;
Tao Bao50dd5322017-03-07 14:57:04 -0800870 }
871 }
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800872}
873
Tao Bao99f0d9e2016-10-13 12:46:38 -0700874static void print_property(const char* key, const char* name, void* /* cookie */) {
875 printf("%s=%s\n", key, name);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800876}
877
Tao Baoac9d94d2016-11-03 11:37:15 -0700878void ui_print(const char* format, ...) {
879 std::string buffer;
Doug Zongker7c3ae452013-05-14 11:03:02 -0700880 va_list ap;
881 va_start(ap, format);
Tao Baoac9d94d2016-11-03 11:37:15 -0700882 android::base::StringAppendV(&buffer, format, ap);
Doug Zongker7c3ae452013-05-14 11:03:02 -0700883 va_end(ap);
884
Tao Baoac9d94d2016-11-03 11:37:15 -0700885 if (ui != nullptr) {
886 ui->Print("%s", buffer.c_str());
Doug Zongker7c3ae452013-05-14 11:03:02 -0700887 } else {
Tao Baoac9d94d2016-11-03 11:37:15 -0700888 fputs(buffer.c_str(), stdout);
Doug Zongker7c3ae452013-05-14 11:03:02 -0700889 }
890}
891
Tao Bao6d90a9d2018-04-26 10:40:36 -0700892static bool is_battery_ok(int* required_battery_level) {
Yifan Honge8e4c402017-11-08 14:56:03 -0800893 using android::hardware::health::V1_0::BatteryStatus;
Yifan Hong056538c2018-07-11 17:04:12 -0700894 using android::hardware::health::V2_0::get_health_service;
895 using android::hardware::health::V2_0::IHealth;
Yifan Honge8e4c402017-11-08 14:56:03 -0800896 using android::hardware::health::V2_0::Result;
897 using android::hardware::health::V2_0::toString;
Yabin Cui99281df2016-02-17 12:21:52 -0800898
Yifan Hong056538c2018-07-11 17:04:12 -0700899 android::sp<IHealth> health = get_health_service();
Yifan Honge8e4c402017-11-08 14:56:03 -0800900
Tao Bao6d90a9d2018-04-26 10:40:36 -0700901 static constexpr int BATTERY_READ_TIMEOUT_IN_SEC = 10;
Yifan Honge8e4c402017-11-08 14:56:03 -0800902 int wait_second = 0;
903 while (true) {
904 auto charge_status = BatteryStatus::UNKNOWN;
Yifan Hong056538c2018-07-11 17:04:12 -0700905
906 if (health == nullptr) {
907 LOG(WARNING) << "no health implementation is found, assuming defaults";
908 } else {
909 health
910 ->getChargeStatus([&charge_status](auto res, auto out_status) {
911 if (res == Result::SUCCESS) {
912 charge_status = out_status;
913 }
914 })
915 .isOk(); // should not have transport error
916 }
Yifan Honge8e4c402017-11-08 14:56:03 -0800917
918 // Treat unknown status as charged.
919 bool charged = (charge_status != BatteryStatus::DISCHARGING &&
920 charge_status != BatteryStatus::NOT_CHARGING);
921
922 Result res = Result::UNKNOWN;
923 int32_t capacity = INT32_MIN;
Yifan Hong056538c2018-07-11 17:04:12 -0700924 if (health != nullptr) {
925 health
926 ->getCapacity([&res, &capacity](auto out_res, auto out_capacity) {
927 res = out_res;
928 capacity = out_capacity;
929 })
930 .isOk(); // should not have transport error
931 }
Yifan Honge8e4c402017-11-08 14:56:03 -0800932
Yifan Hong056538c2018-07-11 17:04:12 -0700933 LOG(INFO) << "charge_status " << toString(charge_status) << ", charged " << charged
934 << ", status " << toString(res) << ", capacity " << capacity;
Yifan Honge8e4c402017-11-08 14:56:03 -0800935 // At startup, the battery drivers in devices like N5X/N6P take some time to load
936 // the battery profile. Before the load finishes, it reports value 50 as a fake
937 // capacity. BATTERY_READ_TIMEOUT_IN_SEC is set that the battery drivers are expected
938 // to finish loading the battery profile earlier than 10 seconds after kernel startup.
939 if (res == Result::SUCCESS && capacity == 50) {
940 if (wait_second < BATTERY_READ_TIMEOUT_IN_SEC) {
941 sleep(1);
942 wait_second++;
943 continue;
944 }
945 }
946 // If we can't read battery percentage, it may be a device without battery. In this
947 // situation, use 100 as a fake battery percentage.
948 if (res != Result::SUCCESS) {
949 capacity = 100;
950 }
Tao Bao6d90a9d2018-04-26 10:40:36 -0700951
952 // GmsCore enters recovery mode to install package when having enough battery percentage.
953 // Normally, the threshold is 40% without charger and 20% with charger. So we should check
954 // battery with a slightly lower limitation.
955 static constexpr int BATTERY_OK_PERCENTAGE = 20;
956 static constexpr int BATTERY_WITH_CHARGER_OK_PERCENTAGE = 15;
957 *required_battery_level = charged ? BATTERY_WITH_CHARGER_OK_PERCENTAGE : BATTERY_OK_PERCENTAGE;
958 return capacity >= *required_battery_level;
959 }
Yabin Cui99281df2016-02-17 12:21:52 -0800960}
961
Tianjie Xu99b73be2017-11-28 17:23:06 -0800962// Set the retry count to |retry_count| in BCB.
Tianjie Xu72449c92017-05-16 18:07:31 -0700963static void set_retry_bootloader_message(int retry_count, const std::vector<std::string>& args) {
964 std::vector<std::string> options;
965 for (const auto& arg : args) {
966 if (!android::base::StartsWith(arg, "--retry_count")) {
967 options.push_back(arg);
Tianjie Xu3c62b672016-02-05 18:25:58 -0800968 }
Tianjie Xu72449c92017-05-16 18:07:31 -0700969 }
Tianjie Xu3c62b672016-02-05 18:25:58 -0800970
Tianjie Xu99b73be2017-11-28 17:23:06 -0800971 // Update the retry counter in BCB.
972 options.push_back(android::base::StringPrintf("--retry_count=%d", retry_count));
Tianjie Xu72449c92017-05-16 18:07:31 -0700973 std::string err;
974 if (!update_bootloader_message(options, &err)) {
975 LOG(ERROR) << err;
976 }
Tianjie Xu3c62b672016-02-05 18:25:58 -0800977}
978
Tianjie Xu06e57ac2016-07-11 14:04:08 -0700979static bool bootreason_in_blacklist() {
Tao Baoefc35592017-01-08 22:45:47 -0800980 std::string bootreason = android::base::GetProperty("ro.boot.bootreason", "");
981 if (!bootreason.empty()) {
Tao Baoaac9d9f2018-04-29 23:38:59 -0700982 // More bootreasons can be found in "system/core/bootstat/bootstat.cpp".
983 static const std::vector<std::string> kBootreasonBlacklist{
984 "kernel_panic",
985 "Panic",
986 };
987 for (const auto& str : kBootreasonBlacklist) {
988 if (android::base::EqualsIgnoreCase(str, bootreason)) return true;
Tianjie Xu06e57ac2016-07-11 14:04:08 -0700989 }
Tao Baoefc35592017-01-08 22:45:47 -0800990 }
991 return false;
Tianjie Xu06e57ac2016-07-11 14:04:08 -0700992}
993
Tao Bao641fa972018-04-25 18:59:40 -0700994static void log_failure_code(ErrorCode code, const std::string& update_package) {
995 std::vector<std::string> log_buffer = {
996 update_package,
997 "0", // install result
998 "error: " + std::to_string(code),
999 };
1000 std::string log_content = android::base::Join(log_buffer, "\n");
1001 const std::string& install_file = Paths::Get().temporary_install_file();
1002 if (!android::base::WriteStringToFile(log_content, install_file)) {
1003 PLOG(ERROR) << "Failed to write " << install_file;
1004 }
Tianjie Xu06e57ac2016-07-11 14:04:08 -07001005
Tao Bao641fa972018-04-25 18:59:40 -07001006 // Also write the info into last_log.
1007 LOG(INFO) << log_content;
Tianjie Xu06e57ac2016-07-11 14:04:08 -07001008}
1009
Jerry Zhang6a648042018-05-04 11:24:10 -07001010Device::BuiltinAction start_recovery(Device* device, const std::vector<std::string>& args) {
Tao Baof9f17342018-04-27 10:44:04 -07001011 static constexpr struct option OPTIONS[] = {
Hridya Valsaraju20c81b32018-07-27 22:09:12 -07001012 { "fastboot", no_argument, nullptr, 0 },
David Andersonedee8362018-05-16 13:43:22 -07001013 { "fsck_unshare_blocks", no_argument, nullptr, 0 },
Tao Baof9f17342018-04-27 10:44:04 -07001014 { "just_exit", no_argument, nullptr, 'x' },
1015 { "locale", required_argument, nullptr, 0 },
1016 { "prompt_and_wipe_data", no_argument, nullptr, 0 },
1017 { "reason", required_argument, nullptr, 0 },
1018 { "retry_count", required_argument, nullptr, 0 },
1019 { "security", no_argument, nullptr, 0 },
1020 { "show_text", no_argument, nullptr, 't' },
1021 { "shutdown_after", no_argument, nullptr, 0 },
1022 { "sideload", no_argument, nullptr, 0 },
1023 { "sideload_auto_reboot", no_argument, nullptr, 0 },
1024 { "update_package", required_argument, nullptr, 0 },
1025 { "wipe_ab", no_argument, nullptr, 0 },
1026 { "wipe_cache", no_argument, nullptr, 0 },
1027 { "wipe_data", no_argument, nullptr, 0 },
1028 { "wipe_package_size", required_argument, nullptr, 0 },
1029 { nullptr, 0, nullptr, 0 },
1030 };
1031
Tianjie Xu99b73be2017-11-28 17:23:06 -08001032 const char* update_package = nullptr;
1033 bool should_wipe_data = false;
1034 bool should_prompt_and_wipe_data = false;
1035 bool should_wipe_cache = false;
1036 bool should_wipe_ab = false;
1037 size_t wipe_package_size = 0;
Tianjie Xu99b73be2017-11-28 17:23:06 -08001038 bool sideload = false;
1039 bool sideload_auto_reboot = false;
1040 bool just_exit = false;
1041 bool shutdown_after = false;
David Andersonedee8362018-05-16 13:43:22 -07001042 bool fsck_unshare_blocks = false;
Tianjie Xu99b73be2017-11-28 17:23:06 -08001043 int retry_count = 0;
1044 bool security_update = false;
Jerry Zhang2dea53e2018-05-02 17:15:03 -07001045 std::string locale;
Tianjie Xu99b73be2017-11-28 17:23:06 -08001046
Tao Bao1700cc42018-07-16 22:09:59 -07001047 auto args_to_parse = StringVectorToNullTerminatedArray(args);
1048
Tianjie Xu99b73be2017-11-28 17:23:06 -08001049 int arg;
1050 int option_index;
Tao Bao1700cc42018-07-16 22:09:59 -07001051 // Parse everything before the last element (which must be a nullptr). getopt_long(3) expects a
1052 // null-terminated char* array, but without counting null as an arg (i.e. argv[argc] should be
1053 // nullptr).
1054 while ((arg = getopt_long(args_to_parse.size() - 1, args_to_parse.data(), "", OPTIONS,
Tianjie Xu99b73be2017-11-28 17:23:06 -08001055 &option_index)) != -1) {
1056 switch (arg) {
Tianjie Xu99b73be2017-11-28 17:23:06 -08001057 case 't':
Jerry Zhang6a648042018-05-04 11:24:10 -07001058 // Handled in recovery_main.cpp
Tianjie Xu99b73be2017-11-28 17:23:06 -08001059 break;
Tianjie Xu99b73be2017-11-28 17:23:06 -08001060 case 'x':
1061 just_exit = true;
1062 break;
Tianjie Xu99b73be2017-11-28 17:23:06 -08001063 case 0: {
1064 std::string option = OPTIONS[option_index].name;
David Andersonedee8362018-05-16 13:43:22 -07001065 if (option == "fsck_unshare_blocks") {
1066 fsck_unshare_blocks = true;
Hridya Valsaraju20c81b32018-07-27 22:09:12 -07001067 } else if (option == "locale" || option == "fastboot") {
Jerry Zhang6a648042018-05-04 11:24:10 -07001068 // Handled in recovery_main.cpp
Tianjie Xu99b73be2017-11-28 17:23:06 -08001069 } else if (option == "prompt_and_wipe_data") {
1070 should_prompt_and_wipe_data = true;
Tao Baof9f17342018-04-27 10:44:04 -07001071 } else if (option == "reason") {
1072 reason = optarg;
1073 } else if (option == "retry_count") {
1074 android::base::ParseInt(optarg, &retry_count, 0);
1075 } else if (option == "security") {
1076 security_update = true;
1077 } else if (option == "sideload") {
1078 sideload = true;
1079 } else if (option == "sideload_auto_reboot") {
1080 sideload = true;
1081 sideload_auto_reboot = true;
1082 } else if (option == "shutdown_after") {
1083 shutdown_after = true;
1084 } else if (option == "update_package") {
1085 update_package = optarg;
1086 } else if (option == "wipe_ab") {
1087 should_wipe_ab = true;
1088 } else if (option == "wipe_cache") {
1089 should_wipe_cache = true;
1090 } else if (option == "wipe_data") {
1091 should_wipe_data = true;
1092 } else if (option == "wipe_package_size") {
1093 android::base::ParseUint(optarg, &wipe_package_size);
Tianjie Xu99b73be2017-11-28 17:23:06 -08001094 }
1095 break;
1096 }
1097 case '?':
1098 LOG(ERROR) << "Invalid command argument";
1099 continue;
Doug Zongker9270a202012-01-09 15:16:13 -08001100 }
Tianjie Xu99b73be2017-11-28 17:23:06 -08001101 }
Jerry Zhang49fd5d22018-05-17 12:54:41 -07001102 optind = 1;
Doug Zongker9270a202012-01-09 15:16:13 -08001103
Tianjie Xu99b73be2017-11-28 17:23:06 -08001104 printf("stage is [%s]\n", stage.c_str());
1105 printf("reason is [%s]\n", reason);
Doug Zongker02ec6b82012-08-22 17:26:40 -07001106
Tianjie Xu99b73be2017-11-28 17:23:06 -08001107 // Set background string to "installing security update" for security update,
1108 // otherwise set it to "installing system update".
1109 ui->SetSystemUpdateText(security_update);
1110
1111 int st_cur, st_max;
1112 if (!stage.empty() && sscanf(stage.c_str(), "%d/%d", &st_cur, &st_max) == 2) {
1113 ui->SetStage(st_cur, st_max);
1114 }
1115
Jerry Zhang0e577ee2018-05-07 11:21:10 -07001116 std::vector<std::string> title_lines =
1117 android::base::Split(android::base::GetProperty("ro.bootimage.build.fingerprint", ""), ":");
1118 title_lines.insert(std::begin(title_lines), "Android Recovery");
1119 ui->SetTitle(title_lines);
1120
Jerry Zhangb76af932018-05-22 12:08:35 -07001121 ui->ResetKeyInterruptStatus();
Tianjie Xu99b73be2017-11-28 17:23:06 -08001122 device->StartRecovery();
1123
1124 printf("Command:");
1125 for (const auto& arg : args) {
1126 printf(" \"%s\"", arg.c_str());
1127 }
1128 printf("\n\n");
1129
1130 property_list(print_property, nullptr);
1131 printf("\n");
1132
1133 ui->Print("Supported API: %d\n", kRecoveryApiVersion);
1134
1135 int status = INSTALL_SUCCESS;
1136
1137 if (update_package != nullptr) {
1138 // It's not entirely true that we will modify the flash. But we want
1139 // to log the update attempt since update_package is non-NULL.
1140 modified_flash = true;
1141
Tao Bao6d90a9d2018-04-26 10:40:36 -07001142 int required_battery_level;
1143 if (retry_count == 0 && !is_battery_ok(&required_battery_level)) {
1144 ui->Print("battery capacity is not enough for installing package: %d%% needed\n",
1145 required_battery_level);
Tianjie Xu99b73be2017-11-28 17:23:06 -08001146 // Log the error code to last_install when installation skips due to
1147 // low battery.
1148 log_failure_code(kLowBattery, update_package);
1149 status = INSTALL_SKIPPED;
Tianjie Xua6f49bd2018-03-26 14:32:11 -07001150 } else if (retry_count == 0 && bootreason_in_blacklist()) {
Tianjie Xu99b73be2017-11-28 17:23:06 -08001151 // Skip update-on-reboot when bootreason is kernel_panic or similar
1152 ui->Print("bootreason is in the blacklist; skip OTA installation\n");
1153 log_failure_code(kBootreasonInBlacklist, update_package);
1154 status = INSTALL_SKIPPED;
Dmitri Plotnikov8706a982017-04-18 08:28:26 -07001155 } else {
Tianjie Xu99b73be2017-11-28 17:23:06 -08001156 // It's a fresh update. Initialize the retry_count in the BCB to 1; therefore we can later
1157 // identify the interrupted update due to unexpected reboots.
1158 if (retry_count == 0) {
1159 set_retry_bootloader_message(retry_count + 1, args);
Tao Bao7022f332017-07-25 09:52:36 -07001160 }
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001161
Tao Bao641fa972018-04-25 18:59:40 -07001162 status = install_package(update_package, &should_wipe_cache, true, retry_count);
Tianjie Xu99b73be2017-11-28 17:23:06 -08001163 if (status == INSTALL_SUCCESS && should_wipe_cache) {
1164 wipe_cache(false, device);
1165 }
1166 if (status != INSTALL_SUCCESS) {
1167 ui->Print("Installation aborted.\n");
Tao Baoaac9d9f2018-04-29 23:38:59 -07001168
1169 // When I/O error or bspatch/imgpatch error happens, reboot and retry installation
1170 // RETRY_LIMIT times before we abandon this OTA update.
1171 static constexpr int RETRY_LIMIT = 4;
Tianjie Xu99b73be2017-11-28 17:23:06 -08001172 if (status == INSTALL_RETRY && retry_count < RETRY_LIMIT) {
Jerry Zhangcadf4ed2018-05-02 16:56:00 -07001173 copy_logs(modified_flash, has_cache);
Tianjie Xu99b73be2017-11-28 17:23:06 -08001174 retry_count += 1;
1175 set_retry_bootloader_message(retry_count, args);
1176 // Print retry count on screen.
1177 ui->Print("Retry attempt %d\n", retry_count);
1178
1179 // Reboot and retry the update
1180 if (!reboot("reboot,recovery")) {
1181 ui->Print("Reboot failed\n");
1182 } else {
1183 while (true) {
1184 pause();
1185 }
1186 }
Tianjie Xud9d16292017-04-20 18:08:21 -07001187 }
Tianjie Xu99b73be2017-11-28 17:23:06 -08001188 // If this is an eng or userdebug build, then automatically
1189 // turn the text display on if the script fails so the error
1190 // message is visible.
1191 if (is_ro_debuggable()) {
1192 ui->ShowText(true);
Tao Baoc679f932015-03-30 09:43:49 -07001193 }
Tianjie Xu99b73be2017-11-28 17:23:06 -08001194 }
Doug Zongker8674a722010-09-15 11:08:23 -07001195 }
Tianjie Xu99b73be2017-11-28 17:23:06 -08001196 } else if (should_wipe_data) {
1197 if (!wipe_data(device)) {
1198 status = INSTALL_ERROR;
Doug Zongkerb1d12632014-03-18 10:32:12 -07001199 }
Tianjie Xu99b73be2017-11-28 17:23:06 -08001200 } else if (should_prompt_and_wipe_data) {
Tao Baoa5bbcb92018-09-17 14:32:47 -07001201 // Trigger the logging to capture the cause, even if user chooses to not wipe data.
1202 modified_flash = true;
1203
Tianjie Xu99b73be2017-11-28 17:23:06 -08001204 ui->ShowText(true);
1205 ui->SetBackground(RecoveryUI::ERROR);
Hridya Valsarajueb6f13a2018-09-12 10:25:01 -07001206 status = prompt_and_wipe_data(device);
1207 if (status != INSTALL_KEY_INTERRUPTED) {
1208 ui->ShowText(false);
Tao Bao75238632015-05-27 14:46:17 -07001209 }
Tianjie Xu99b73be2017-11-28 17:23:06 -08001210 } else if (should_wipe_cache) {
1211 if (!wipe_cache(false, device)) {
1212 status = INSTALL_ERROR;
1213 }
1214 } else if (should_wipe_ab) {
1215 if (!wipe_ab_device(wipe_package_size)) {
1216 status = INSTALL_ERROR;
1217 }
1218 } else if (sideload) {
1219 // 'adb reboot sideload' acts the same as user presses key combinations
1220 // to enter the sideload mode. When 'sideload-auto-reboot' is used, text
1221 // display will NOT be turned on by default. And it will reboot after
1222 // sideload finishes even if there are errors. Unless one turns on the
1223 // text display during the installation. This is to enable automated
1224 // testing.
1225 if (!sideload_auto_reboot) {
1226 ui->ShowText(true);
1227 }
Tao Bao641fa972018-04-25 18:59:40 -07001228 status = apply_from_adb(&should_wipe_cache);
Tianjie Xu99b73be2017-11-28 17:23:06 -08001229 if (status == INSTALL_SUCCESS && should_wipe_cache) {
1230 if (!wipe_cache(false, device)) {
1231 status = INSTALL_ERROR;
1232 }
1233 }
1234 ui->Print("\nInstall from ADB complete (status: %d).\n", status);
1235 if (sideload_auto_reboot) {
1236 ui->Print("Rebooting automatically.\n");
1237 }
David Andersonedee8362018-05-16 13:43:22 -07001238 } else if (fsck_unshare_blocks) {
1239 if (!do_fsck_unshare_blocks()) {
1240 status = INSTALL_ERROR;
1241 }
Tianjie Xu99b73be2017-11-28 17:23:06 -08001242 } else if (!just_exit) {
1243 // If this is an eng or userdebug build, automatically turn on the text display if no command
1244 // is specified. Note that this should be called before setting the background to avoid
1245 // flickering the background image.
1246 if (is_ro_debuggable()) {
1247 ui->ShowText(true);
1248 }
1249 status = INSTALL_NONE; // No command specified
1250 ui->SetBackground(RecoveryUI::NO_COMMAND);
1251 }
1252
1253 if (status == INSTALL_ERROR || status == INSTALL_CORRUPT) {
1254 ui->SetBackground(RecoveryUI::ERROR);
1255 if (!ui->IsTextVisible()) {
1256 sleep(5);
1257 }
1258 }
1259
1260 Device::BuiltinAction after = shutdown_after ? Device::SHUTDOWN : Device::REBOOT;
1261 // 1. If the recovery menu is visible, prompt and wait for commands.
1262 // 2. If the state is INSTALL_NONE, wait for commands. (i.e. In user build, manually reboot into
1263 // recovery to sideload a package.)
1264 // 3. sideload_auto_reboot is an option only available in user-debug build, reboot the device
1265 // without waiting.
1266 // 4. In all other cases, reboot the device. Therefore, normal users will observe the device
1267 // reboot after it shows the "error" screen for 5s.
1268 if ((status == INSTALL_NONE && !sideload_auto_reboot) || ui->IsTextVisible()) {
1269 Device::BuiltinAction temp = prompt_and_wait(device, status);
1270 if (temp != Device::NO_ACTION) {
1271 after = temp;
1272 }
1273 }
1274
1275 // Save logs and clean up before rebooting or shutting down.
Tao Bao551d2c32018-05-09 20:53:13 -07001276 finish_recovery();
Tianjie Xu99b73be2017-11-28 17:23:06 -08001277
Jerry Zhang6a648042018-05-04 11:24:10 -07001278 return after;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001279}