blob: 668ef3ca67e804f56f7e2e8f056ca88739ead1bc [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>
Tao Bao75238632015-05-27 14:46:17 -070049#include <cutils/android_reboot.h>
Elliott Hughescb220402016-09-23 15:30:55 -070050#include <cutils/properties.h> /* for property_list */
Elliott Hughes4bbd5bf2016-04-01 18:24:39 -070051#include <healthd/BatteryMonitor.h>
Mark Salyzyna4f701a2016-03-09 14:58:16 -080052#include <private/android_logger.h> /* private pmsg functions */
Elliott Hughes4bbd5bf2016-04-01 18:24:39 -070053#include <selinux/label.h>
54#include <selinux/selinux.h>
Tianjie Xu8cf5c8f2016-09-08 20:10:11 -070055#include <ziparchive/zip_archive.h>
Yabin Cui99281df2016-02-17 12:21:52 -080056
Tao Bao75238632015-05-27 14:46:17 -070057#include "adb_install.h"
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080058#include "bootloader.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"
Doug Zongker28ce47c2011-10-28 10:33:05 -070069#include "ui.h"
Doug Zongker211aebc2011-10-28 15:13:10 -070070#include "screen_ui.h"
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080071
Stephen Smalley779701d2012-02-09 14:13:23 -050072struct selabel_handle *sehandle;
73
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080074static const struct option OPTIONS[] = {
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080075 { "update_package", required_argument, NULL, 'u' },
Tianjie Xu3c62b672016-02-05 18:25:58 -080076 { "retry_count", required_argument, NULL, 'n' },
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080077 { "wipe_data", no_argument, NULL, 'w' },
78 { "wipe_cache", no_argument, NULL, 'c' },
Doug Zongker4bc98062010-09-03 11:00:13 -070079 { "show_text", no_argument, NULL, 't' },
Tao Baoc679f932015-03-30 09:43:49 -070080 { "sideload", no_argument, NULL, 's' },
81 { "sideload_auto_reboot", no_argument, NULL, 'a' },
Doug Zongkere5d5ac72012-04-12 11:01:22 -070082 { "just_exit", no_argument, NULL, 'x' },
Doug Zongker02ec6b82012-08-22 17:26:40 -070083 { "locale", required_argument, NULL, 'l' },
Doug Zongkerc87bab12013-11-25 13:53:25 -080084 { "stages", required_argument, NULL, 'g' },
Doug Zongkerb1d12632014-03-18 10:32:12 -070085 { "shutdown_after", no_argument, NULL, 'p' },
Jeff Sharkeya6e13ae2014-09-24 11:46:17 -070086 { "reason", required_argument, NULL, 'r' },
Tianjie Xu35926c42016-04-28 18:06:26 -070087 { "security", no_argument, NULL, 'e'},
Tao Bao862a4c12016-06-02 11:16:50 -070088 { "brick", no_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
Doug Zongker6d0d7ac2013-07-09 13:34:55 -070092static const char *CACHE_LOG_DIR = "/cache/recovery";
Doug Zongkerd4208f92010-09-20 12:16:13 -070093static const char *COMMAND_FILE = "/cache/recovery/command";
Doug Zongkerd4208f92010-09-20 12:16:13 -070094static const char *LOG_FILE = "/cache/recovery/log";
Doug Zongkerd0181b82011-10-19 10:51:12 -070095static const char *LAST_INSTALL_FILE = "/cache/recovery/last_install";
Doug Zongker8b240cc2012-08-29 15:19:29 -070096static const char *LOCALE_FILE = "/cache/recovery/last_locale";
Paul Lawrence661f8a62016-02-25 12:42:19 -080097static const char *CONVERT_FBE_DIR = "/tmp/convert_fbe";
98static const char *CONVERT_FBE_FILE = "/tmp/convert_fbe/convert_fbe";
Michael Ward9d2629c2011-06-23 22:14:24 -070099static const char *CACHE_ROOT = "/cache";
Paul Lawrenced0db3372015-11-05 13:38:40 -0800100static const char *DATA_ROOT = "/data";
Doug Zongkerd4208f92010-09-20 12:16:13 -0700101static const char *SDCARD_ROOT = "/sdcard";
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800102static const char *TEMPORARY_LOG_FILE = "/tmp/recovery.log";
Doug Zongkerd0181b82011-10-19 10:51:12 -0700103static const char *TEMPORARY_INSTALL_FILE = "/tmp/last_install";
Tao Baof0124322015-04-11 02:04:11 +0000104static const char *LAST_KMSG_FILE = "/cache/recovery/last_kmsg";
Tao Baobef39712015-05-04 18:50:27 -0700105static const char *LAST_LOG_FILE = "/cache/recovery/last_log";
106static const int KEEP_LOG_COUNT = 10;
Tianjie Xuc37c5c32016-06-23 16:52:17 -0700107// We will try to apply the update package 5 times at most in case of an I/O error.
108static const int EIO_RETRY_COUNT = 4;
Yabin Cui99281df2016-02-17 12:21:52 -0800109static const int BATTERY_READ_TIMEOUT_IN_SEC = 10;
110// GmsCore enters recovery mode to install package when having enough battery
111// percentage. Normally, the threshold is 40% without charger and 20% with charger.
112// So we should check battery with a slightly lower limitation.
113static const int BATTERY_OK_PERCENTAGE = 20;
114static const int BATTERY_WITH_CHARGER_OK_PERCENTAGE = 15;
Tao Bao862a4c12016-06-02 11:16:50 -0700115constexpr const char* RECOVERY_BRICK = "/etc/recovery.brick";
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700116
Doug Zongker211aebc2011-10-28 15:13:10 -0700117RecoveryUI* ui = NULL;
Elliott Hughes498cda62016-04-14 16:49:04 -0700118static const char* locale = "en_US";
Doug Zongkerc87bab12013-11-25 13:53:25 -0800119char* stage = NULL;
Jeff Sharkeya6e13ae2014-09-24 11:46:17 -0700120char* reason = NULL;
Tao Bao682c34b2015-04-07 17:16:35 -0700121bool modified_flash = false;
Tao Bao26112e52016-02-25 12:29:40 -0800122static bool has_cache = false;
Doug Zongker211aebc2011-10-28 15:13:10 -0700123
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800124/*
125 * The recovery tool communicates with the main system through /cache files.
126 * /cache/recovery/command - INPUT - command line for tool, one arg per line
127 * /cache/recovery/log - OUTPUT - combined log file from recovery run(s)
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800128 *
129 * The arguments which may be supplied in the recovery.command file:
Doug Zongkerd4208f92010-09-20 12:16:13 -0700130 * --update_package=path - verify install an OTA package file
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800131 * --wipe_data - erase user data (and cache), then reboot
132 * --wipe_cache - wipe cache (but not user data), then reboot
Oscar Montemayor05231562009-11-30 08:40:57 -0800133 * --set_encrypted_filesystem=on|off - enables / diasables encrypted fs
Doug Zongkere5d5ac72012-04-12 11:01:22 -0700134 * --just_exit - do nothing; exit and reboot
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800135 *
136 * After completing, we remove /cache/recovery/command and reboot.
137 * Arguments may also be supplied in the bootloader control block (BCB).
138 * These important scenarios must be safely restartable at any point:
139 *
140 * FACTORY RESET
141 * 1. user selects "factory reset"
142 * 2. main system writes "--wipe_data" to /cache/recovery/command
143 * 3. main system reboots into recovery
144 * 4. get_args() writes BCB with "boot-recovery" and "--wipe_data"
145 * -- after this, rebooting will restart the erase --
Doug Zongkerd4208f92010-09-20 12:16:13 -0700146 * 5. erase_volume() reformats /data
147 * 6. erase_volume() reformats /cache
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800148 * 7. finish_recovery() erases BCB
149 * -- after this, rebooting will restart the main system --
150 * 8. main() calls reboot() to boot main system
151 *
152 * OTA INSTALL
153 * 1. main system downloads OTA package to /cache/some-filename.zip
Doug Zongker9b125b02010-09-22 12:01:37 -0700154 * 2. main system writes "--update_package=/cache/some-filename.zip"
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800155 * 3. main system reboots into recovery
156 * 4. get_args() writes BCB with "boot-recovery" and "--update_package=..."
157 * -- after this, rebooting will attempt to reinstall the update --
158 * 5. install_package() attempts to install the update
159 * NOTE: the package install must itself be restartable from any point
160 * 6. finish_recovery() erases BCB
161 * -- after this, rebooting will (try to) restart the main system --
162 * 7. ** if install failed **
163 * 7a. prompt_and_wait() shows an error icon and waits for the user
164 * 7b; the user reboots (pulling the battery, etc) into the main system
165 * 8. main() calls maybe_install_firmware_update()
166 * ** if the update contained radio/hboot firmware **:
167 * 8a. m_i_f_u() writes BCB with "boot-recovery" and "--wipe_cache"
168 * -- after this, rebooting will reformat cache & restart main system --
169 * 8b. m_i_f_u() writes firmware image into raw cache partition
170 * 8c. m_i_f_u() writes BCB with "update-radio/hboot" and "--wipe_cache"
171 * -- after this, rebooting will attempt to reinstall firmware --
172 * 8d. bootloader tries to flash firmware
173 * 8e. bootloader writes BCB with "boot-recovery" (keeping "--wipe_cache")
174 * -- after this, rebooting will reformat cache & restart main system --
Doug Zongkerd4208f92010-09-20 12:16:13 -0700175 * 8f. erase_volume() reformats /cache
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800176 * 8g. finish_recovery() erases BCB
177 * -- after this, rebooting will (try to) restart the main system --
178 * 9. main() calls reboot() to boot main system
179 */
180
181static const int MAX_ARG_LENGTH = 4096;
182static const int MAX_ARGS = 100;
183
Doug Zongkerd4208f92010-09-20 12:16:13 -0700184// open a given path, mounting partitions as necessary
Tao Bao04ca4262015-09-10 15:32:24 -0700185FILE* fopen_path(const char *path, const char *mode) {
Doug Zongkerd4208f92010-09-20 12:16:13 -0700186 if (ensure_path_mounted(path) != 0) {
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -0700187 LOG(ERROR) << "Can't mount " << path;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800188 return NULL;
189 }
190
191 // When writing, try to create the containing directory, if necessary.
192 // Use generous permissions, the system (init.rc) will reset them.
Stephen Smalley779701d2012-02-09 14:13:23 -0500193 if (strchr("wa", mode[0])) dirCreateHierarchy(path, 0777, NULL, 1, sehandle);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800194
195 FILE *fp = fopen(path, mode);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800196 return fp;
197}
198
Tao Bao04ca4262015-09-10 15:32:24 -0700199// close a file, log an error if the error indicator is set
200static void check_and_fclose(FILE *fp, const char *name) {
201 fflush(fp);
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -0700202 if (ferror(fp)) {
203 PLOG(ERROR) << "Error in " << name;
204 }
Tao Bao04ca4262015-09-10 15:32:24 -0700205 fclose(fp);
206}
207
Elliott Hughesf14af802015-02-10 14:46:14 -0800208bool is_ro_debuggable() {
Elliott Hughescb220402016-09-23 15:30:55 -0700209 return android::base::GetBoolProperty("ro.debuggable", false);
Elliott Hughesf14af802015-02-10 14:46:14 -0800210}
211
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700212static void redirect_stdio(const char* filename) {
Tao Bao04ca4262015-09-10 15:32:24 -0700213 int pipefd[2];
214 if (pipe(pipefd) == -1) {
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -0700215 PLOG(ERROR) << "pipe failed";
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700216
Tao Bao04ca4262015-09-10 15:32:24 -0700217 // Fall back to traditional logging mode without timestamps.
218 // If these fail, there's not really anywhere to complain...
219 freopen(filename, "a", stdout); setbuf(stdout, NULL);
220 freopen(filename, "a", stderr); setbuf(stderr, NULL);
221
222 return;
223 }
224
225 pid_t pid = fork();
226 if (pid == -1) {
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -0700227 PLOG(ERROR) << "fork failed";
Tao Bao04ca4262015-09-10 15:32:24 -0700228
229 // Fall back to traditional logging mode without timestamps.
230 // If these fail, there's not really anywhere to complain...
231 freopen(filename, "a", stdout); setbuf(stdout, NULL);
232 freopen(filename, "a", stderr); setbuf(stderr, NULL);
233
234 return;
235 }
236
237 if (pid == 0) {
238 /// Close the unused write end.
239 close(pipefd[1]);
240
241 auto start = std::chrono::steady_clock::now();
242
243 // Child logger to actually write to the log file.
244 FILE* log_fp = fopen(filename, "a");
245 if (log_fp == nullptr) {
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -0700246 PLOG(ERROR) << "fopen \"" << filename << "\" failed";
Tao Bao04ca4262015-09-10 15:32:24 -0700247 close(pipefd[0]);
248 _exit(1);
249 }
250
251 FILE* pipe_fp = fdopen(pipefd[0], "r");
252 if (pipe_fp == nullptr) {
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -0700253 PLOG(ERROR) << "fdopen failed";
Tao Bao04ca4262015-09-10 15:32:24 -0700254 check_and_fclose(log_fp, filename);
255 close(pipefd[0]);
256 _exit(1);
257 }
258
259 char* line = nullptr;
260 size_t len = 0;
261 while (getline(&line, &len, pipe_fp) != -1) {
262 auto now = std::chrono::steady_clock::now();
263 double duration = std::chrono::duration_cast<std::chrono::duration<double>>(
264 now - start).count();
265 if (line[0] == '\n') {
266 fprintf(log_fp, "[%12.6lf]\n", duration);
267 } else {
268 fprintf(log_fp, "[%12.6lf] %s", duration, line);
269 }
270 fflush(log_fp);
271 }
272
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -0700273 PLOG(ERROR) << "getline failed";
Tao Bao04ca4262015-09-10 15:32:24 -0700274
275 free(line);
276 check_and_fclose(log_fp, filename);
277 close(pipefd[0]);
278 _exit(1);
279 } else {
280 // Redirect stdout/stderr to the logger process.
281 // Close the unused read end.
282 close(pipefd[0]);
283
284 setbuf(stdout, nullptr);
285 setbuf(stderr, nullptr);
286
287 if (dup2(pipefd[1], STDOUT_FILENO) == -1) {
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -0700288 PLOG(ERROR) << "dup2 stdout failed";
Tao Bao04ca4262015-09-10 15:32:24 -0700289 }
290 if (dup2(pipefd[1], STDERR_FILENO) == -1) {
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -0700291 PLOG(ERROR) << "dup2 stderr failed";
Tao Bao04ca4262015-09-10 15:32:24 -0700292 }
293
294 close(pipefd[1]);
295 }
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800296}
297
298// command line args come from, in decreasing precedence:
299// - the actual command line
300// - the bootloader control block (one per line, after "recovery")
301// - the contents of COMMAND_FILE (one per line)
302static void
303get_args(int *argc, char ***argv) {
304 struct bootloader_message boot;
305 memset(&boot, 0, sizeof(boot));
306 get_bootloader_message(&boot); // this may fail, leaving a zeroed structure
Doug Zongkerc87bab12013-11-25 13:53:25 -0800307 stage = strndup(boot.stage, sizeof(boot.stage));
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800308
Tianjie Xu7aa88742016-09-28 11:42:17 -0700309 if (boot.command[0] != 0) {
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -0700310 std::string boot_command = std::string(boot.command, sizeof(boot.command));
311 LOG(INFO) << "Boot command: " << boot_command;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800312 }
313
Tianjie Xu7aa88742016-09-28 11:42:17 -0700314 if (boot.status[0] != 0) {
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -0700315 std::string boot_status = std::string(boot.status, sizeof(boot.status));
316 LOG(INFO) << "Boot status: " << boot_status;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800317 }
318
319 // --- if arguments weren't supplied, look in the bootloader control block
320 if (*argc <= 1) {
321 boot.recovery[sizeof(boot.recovery) - 1] = '\0'; // Ensure termination
322 const char *arg = strtok(boot.recovery, "\n");
323 if (arg != NULL && !strcmp(arg, "recovery")) {
324 *argv = (char **) malloc(sizeof(char *) * MAX_ARGS);
325 (*argv)[0] = strdup(arg);
326 for (*argc = 1; *argc < MAX_ARGS; ++*argc) {
327 if ((arg = strtok(NULL, "\n")) == NULL) break;
328 (*argv)[*argc] = strdup(arg);
329 }
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -0700330 LOG(INFO) << "Got arguments from boot message";
Tianjie Xu7aa88742016-09-28 11:42:17 -0700331 } else if (boot.recovery[0] != 0) {
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -0700332 std::string boot_recovery = std::string(boot.recovery, 20);
333 LOG(ERROR) << "Bad boot message\n" << "\"" <<boot_recovery << "\"";
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800334 }
335 }
336
Tao Bao26112e52016-02-25 12:29:40 -0800337 // --- if that doesn't work, try the command file (if we have /cache).
338 if (*argc <= 1 && has_cache) {
Doug Zongkerd4208f92010-09-20 12:16:13 -0700339 FILE *fp = fopen_path(COMMAND_FILE, "r");
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800340 if (fp != NULL) {
Jin Feng93ffa752013-06-04 17:46:24 +0800341 char *token;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800342 char *argv0 = (*argv)[0];
343 *argv = (char **) malloc(sizeof(char *) * MAX_ARGS);
344 (*argv)[0] = argv0; // use the same program name
345
346 char buf[MAX_ARG_LENGTH];
347 for (*argc = 1; *argc < MAX_ARGS; ++*argc) {
348 if (!fgets(buf, sizeof(buf), fp)) break;
Jin Feng93ffa752013-06-04 17:46:24 +0800349 token = strtok(buf, "\r\n");
350 if (token != NULL) {
351 (*argv)[*argc] = strdup(token); // Strip newline.
352 } else {
353 --*argc;
354 }
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800355 }
356
357 check_and_fclose(fp, COMMAND_FILE);
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -0700358 LOG(INFO) << "Got arguments from " << COMMAND_FILE;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800359 }
360 }
361
362 // --> write the arguments we have back into the bootloader control block
363 // always boot into recovery after this (until finish_recovery() is called)
364 strlcpy(boot.command, "boot-recovery", sizeof(boot.command));
365 strlcpy(boot.recovery, "recovery\n", sizeof(boot.recovery));
366 int i;
367 for (i = 1; i < *argc; ++i) {
368 strlcat(boot.recovery, (*argv)[i], sizeof(boot.recovery));
369 strlcat(boot.recovery, "\n", sizeof(boot.recovery));
370 }
371 set_bootloader_message(&boot);
372}
373
Doug Zongker34c98df2009-08-18 12:05:45 -0700374static void
Oscar Montemayor05231562009-11-30 08:40:57 -0800375set_sdcard_update_bootloader_message() {
Doug Zongker34c98df2009-08-18 12:05:45 -0700376 struct bootloader_message boot;
377 memset(&boot, 0, sizeof(boot));
378 strlcpy(boot.command, "boot-recovery", sizeof(boot.command));
379 strlcpy(boot.recovery, "recovery\n", sizeof(boot.recovery));
380 set_bootloader_message(&boot);
381}
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800382
Tao Baobef39712015-05-04 18:50:27 -0700383// Read from kernel log into buffer and write out to file.
384static void save_kernel_log(const char* destination) {
385 int klog_buf_len = klogctl(KLOG_SIZE_BUFFER, 0, 0);
Patrick Tjincd055ee2014-12-09 11:26:40 -0800386 if (klog_buf_len <= 0) {
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -0700387 PLOG(ERROR) << "Error getting klog size";
Patrick Tjincd055ee2014-12-09 11:26:40 -0800388 return;
389 }
390
Tao Baobef39712015-05-04 18:50:27 -0700391 std::string buffer(klog_buf_len, 0);
392 int n = klogctl(KLOG_READ_ALL, &buffer[0], klog_buf_len);
393 if (n == -1) {
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -0700394 PLOG(ERROR) << "Error in reading klog";
Patrick Tjincd055ee2014-12-09 11:26:40 -0800395 return;
396 }
Tao Baobef39712015-05-04 18:50:27 -0700397 buffer.resize(n);
398 android::base::WriteStringToFile(buffer, destination);
Patrick Tjincd055ee2014-12-09 11:26:40 -0800399}
400
Mark Salyzyna4f701a2016-03-09 14:58:16 -0800401// write content to the current pmsg session.
402static ssize_t __pmsg_write(const char *filename, const char *buf, size_t len) {
403 return __android_log_pmsg_file_write(LOG_ID_SYSTEM, ANDROID_LOG_INFO,
404 filename, buf, len);
405}
406
407static void copy_log_file_to_pmsg(const char* source, const char* destination) {
408 std::string content;
409 android::base::ReadFileToString(source, &content);
410 __pmsg_write(destination, content.c_str(), content.length());
411}
412
Tao Baof0124322015-04-11 02:04:11 +0000413// How much of the temp log we have copied to the copy in cache.
Chih-Hung Hsieh54a27472016-04-18 11:30:55 -0700414static off_t tmplog_offset = 0;
Tao Baof0124322015-04-11 02:04:11 +0000415
Tao Baobef39712015-05-04 18:50:27 -0700416static void copy_log_file(const char* source, const char* destination, bool append) {
417 FILE* dest_fp = fopen_path(destination, append ? "a" : "w");
418 if (dest_fp == nullptr) {
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -0700419 PLOG(ERROR) << "Can't open " << destination;
Doug Zongker2c3539e2010-09-29 13:21:30 -0700420 } else {
Tao Baobef39712015-05-04 18:50:27 -0700421 FILE* source_fp = fopen(source, "r");
422 if (source_fp != nullptr) {
Tao Baof0124322015-04-11 02:04:11 +0000423 if (append) {
Chih-Hung Hsieh54a27472016-04-18 11:30:55 -0700424 fseeko(source_fp, tmplog_offset, SEEK_SET); // Since last write
Doug Zongker2c3539e2010-09-29 13:21:30 -0700425 }
426 char buf[4096];
Tao Baobef39712015-05-04 18:50:27 -0700427 size_t bytes;
428 while ((bytes = fread(buf, 1, sizeof(buf), source_fp)) != 0) {
429 fwrite(buf, 1, bytes, dest_fp);
Doug Zongker2c3539e2010-09-29 13:21:30 -0700430 }
Tao Baobef39712015-05-04 18:50:27 -0700431 if (append) {
Chih-Hung Hsieh54a27472016-04-18 11:30:55 -0700432 tmplog_offset = ftello(source_fp);
Tao Baobef39712015-05-04 18:50:27 -0700433 }
434 check_and_fclose(source_fp, source);
Doug Zongker2c3539e2010-09-29 13:21:30 -0700435 }
Tao Baobef39712015-05-04 18:50:27 -0700436 check_and_fclose(dest_fp, destination);
Doug Zongker2c3539e2010-09-29 13:21:30 -0700437 }
438}
439
Tao Baobef39712015-05-04 18:50:27 -0700440// Rename last_log -> last_log.1 -> last_log.2 -> ... -> last_log.$max.
441// Similarly rename last_kmsg -> last_kmsg.1 -> ... -> last_kmsg.$max.
442// Overwrite any existing last_log.$max and last_kmsg.$max.
443static void rotate_logs(int max) {
Tao Bao682c34b2015-04-07 17:16:35 -0700444 // Logs should only be rotated once.
445 static bool rotated = false;
446 if (rotated) {
447 return;
448 }
449 rotated = true;
450 ensure_path_mounted(LAST_LOG_FILE);
Tao Baobef39712015-05-04 18:50:27 -0700451 ensure_path_mounted(LAST_KMSG_FILE);
Tao Bao682c34b2015-04-07 17:16:35 -0700452
Tao Bao682c34b2015-04-07 17:16:35 -0700453 for (int i = max-1; i >= 0; --i) {
Tao Bao80e46e02015-06-03 10:49:29 -0700454 std::string old_log = android::base::StringPrintf("%s", LAST_LOG_FILE);
455 if (i > 0) {
456 old_log += "." + std::to_string(i);
457 }
Tao Baobef39712015-05-04 18:50:27 -0700458 std::string new_log = android::base::StringPrintf("%s.%d", LAST_LOG_FILE, i+1);
459 // Ignore errors if old_log doesn't exist.
460 rename(old_log.c_str(), new_log.c_str());
461
Tao Bao80e46e02015-06-03 10:49:29 -0700462 std::string old_kmsg = android::base::StringPrintf("%s", LAST_KMSG_FILE);
463 if (i > 0) {
464 old_kmsg += "." + std::to_string(i);
465 }
Tao Baobef39712015-05-04 18:50:27 -0700466 std::string new_kmsg = android::base::StringPrintf("%s.%d", LAST_KMSG_FILE, i+1);
467 rename(old_kmsg.c_str(), new_kmsg.c_str());
Doug Zongkerda1ebae2013-05-16 11:23:48 -0700468 }
469}
Doug Zongker2c3539e2010-09-29 13:21:30 -0700470
Tao Bao682c34b2015-04-07 17:16:35 -0700471static void copy_logs() {
472 // We only rotate and record the log of the current session if there are
473 // actual attempts to modify the flash, such as wipes, installs from BCB
474 // or menu selections. This is to avoid unnecessary rotation (and
475 // possible deletion) of log files, if it does not do anything loggable.
476 if (!modified_flash) {
477 return;
478 }
479
Mark Salyzyna4f701a2016-03-09 14:58:16 -0800480 // Always write to pmsg, this allows the OTA logs to be caught in logcat -L
481 copy_log_file_to_pmsg(TEMPORARY_LOG_FILE, LAST_LOG_FILE);
482 copy_log_file_to_pmsg(TEMPORARY_INSTALL_FILE, LAST_INSTALL_FILE);
483
484 // We can do nothing for now if there's no /cache partition.
485 if (!has_cache) {
486 return;
487 }
488
Tao Baobef39712015-05-04 18:50:27 -0700489 rotate_logs(KEEP_LOG_COUNT);
Tao Bao682c34b2015-04-07 17:16:35 -0700490
Doug Zongkerf24fd7e2013-07-02 11:43:25 -0700491 // Copy logs to cache so the system can find out what happened.
Tao Baof0124322015-04-11 02:04:11 +0000492 copy_log_file(TEMPORARY_LOG_FILE, LOG_FILE, true);
493 copy_log_file(TEMPORARY_LOG_FILE, LAST_LOG_FILE, false);
494 copy_log_file(TEMPORARY_INSTALL_FILE, LAST_INSTALL_FILE, false);
495 save_kernel_log(LAST_KMSG_FILE);
Doug Zongkerf24fd7e2013-07-02 11:43:25 -0700496 chmod(LOG_FILE, 0600);
497 chown(LOG_FILE, 1000, 1000); // system user
Tao Baof0124322015-04-11 02:04:11 +0000498 chmod(LAST_KMSG_FILE, 0600);
499 chown(LAST_KMSG_FILE, 1000, 1000); // system user
Doug Zongkerf24fd7e2013-07-02 11:43:25 -0700500 chmod(LAST_LOG_FILE, 0640);
501 chmod(LAST_INSTALL_FILE, 0644);
502 sync();
503}
504
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800505// clear the recovery command and prepare to boot a (hopefully working) system,
Tianjie Xuc14d95d2016-03-24 11:50:34 -0700506// copy our log file to cache as well (for the system to read). This function is
507// idempotent: call it as many times as you like.
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800508static void
Tianjie Xuc14d95d2016-03-24 11:50:34 -0700509finish_recovery() {
Doug Zongker4f33e552012-08-23 13:16:12 -0700510 // Save the locale to cache, so if recovery is next started up
511 // without a --locale argument (eg, directly from the bootloader)
512 // it will use the last-known locale.
Mark Salyzyna4f701a2016-03-09 14:58:16 -0800513 if (locale != NULL) {
514 size_t len = strlen(locale);
515 __pmsg_write(LOCALE_FILE, locale, len);
516 if (has_cache) {
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -0700517 LOG(INFO) << "Saving locale \"" << locale << "\"";
Mark Salyzyna4f701a2016-03-09 14:58:16 -0800518 FILE* fp = fopen_path(LOCALE_FILE, "w");
Johan Harvyl85691422016-08-05 15:42:59 +0200519 if (fp != NULL) {
520 fwrite(locale, 1, len, fp);
521 fflush(fp);
522 fsync(fileno(fp));
523 check_and_fclose(fp, LOCALE_FILE);
524 }
Mark Salyzyna4f701a2016-03-09 14:58:16 -0800525 }
Doug Zongker4f33e552012-08-23 13:16:12 -0700526 }
527
Doug Zongkerf24fd7e2013-07-02 11:43:25 -0700528 copy_logs();
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800529
Doug Zongkere5d5ac72012-04-12 11:01:22 -0700530 // Reset to normal system boot so recovery won't cycle indefinitely.
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800531 struct bootloader_message boot;
532 memset(&boot, 0, sizeof(boot));
533 set_bootloader_message(&boot);
534
535 // Remove the command file, so recovery won't repeat indefinitely.
Tao Bao26112e52016-02-25 12:29:40 -0800536 if (has_cache) {
537 if (ensure_path_mounted(COMMAND_FILE) != 0 || (unlink(COMMAND_FILE) && errno != ENOENT)) {
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -0700538 LOG(WARNING) << "Can't unlink " << COMMAND_FILE;
Tao Bao26112e52016-02-25 12:29:40 -0800539 }
540 ensure_path_unmounted(CACHE_ROOT);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800541 }
542
543 sync(); // For good measure.
544}
545
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700546typedef struct _saved_log_file {
547 char* name;
548 struct stat st;
549 unsigned char* data;
550 struct _saved_log_file* next;
551} saved_log_file;
552
Elliott Hughes945548e2015-06-05 17:59:56 -0700553static bool erase_volume(const char* volume) {
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700554 bool is_cache = (strcmp(volume, CACHE_ROOT) == 0);
Paul Lawrenced0db3372015-11-05 13:38:40 -0800555 bool is_data = (strcmp(volume, DATA_ROOT) == 0);
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700556
Doug Zongker02ec6b82012-08-22 17:26:40 -0700557 ui->SetBackground(RecoveryUI::ERASING);
Doug Zongker211aebc2011-10-28 15:13:10 -0700558 ui->SetProgressType(RecoveryUI::INDETERMINATE);
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700559
560 saved_log_file* head = NULL;
561
562 if (is_cache) {
Tao Baobef39712015-05-04 18:50:27 -0700563 // If we're reformatting /cache, we load any past logs
564 // (i.e. "/cache/recovery/last_*") and the current log
565 // ("/cache/recovery/log") into memory, so we can restore them after
566 // the reformat.
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700567
568 ensure_path_mounted(volume);
569
570 DIR* d;
571 struct dirent* de;
572 d = opendir(CACHE_LOG_DIR);
573 if (d) {
574 char path[PATH_MAX];
575 strcpy(path, CACHE_LOG_DIR);
576 strcat(path, "/");
577 int path_len = strlen(path);
578 while ((de = readdir(d)) != NULL) {
Tao Baobef39712015-05-04 18:50:27 -0700579 if (strncmp(de->d_name, "last_", 5) == 0 || strcmp(de->d_name, "log") == 0) {
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700580 saved_log_file* p = (saved_log_file*) malloc(sizeof(saved_log_file));
581 strcpy(path+path_len, de->d_name);
582 p->name = strdup(path);
583 if (stat(path, &(p->st)) == 0) {
584 // truncate files to 512kb
585 if (p->st.st_size > (1 << 19)) {
586 p->st.st_size = 1 << 19;
587 }
588 p->data = (unsigned char*) malloc(p->st.st_size);
589 FILE* f = fopen(path, "rb");
590 fread(p->data, 1, p->st.st_size, f);
591 fclose(f);
592 p->next = head;
593 head = p;
594 } else {
595 free(p);
596 }
597 }
598 }
599 closedir(d);
600 } else {
601 if (errno != ENOENT) {
602 printf("opendir failed: %s\n", strerror(errno));
603 }
604 }
605 }
606
Doug Zongker211aebc2011-10-28 15:13:10 -0700607 ui->Print("Formatting %s...\n", volume);
Doug Zongker2c3539e2010-09-29 13:21:30 -0700608
Doug Zongkerd0181b82011-10-19 10:51:12 -0700609 ensure_path_unmounted(volume);
Paul Lawrenced0db3372015-11-05 13:38:40 -0800610
611 int result;
612
613 if (is_data && reason && strcmp(reason, "convert_fbe") == 0) {
614 // Create convert_fbe breadcrumb file to signal to init
615 // to convert to file based encryption, not full disk encryption
Paul Lawrence661f8a62016-02-25 12:42:19 -0800616 if (mkdir(CONVERT_FBE_DIR, 0700) != 0) {
617 ui->Print("Failed to make convert_fbe dir %s\n", strerror(errno));
618 return true;
619 }
Paul Lawrenced0db3372015-11-05 13:38:40 -0800620 FILE* f = fopen(CONVERT_FBE_FILE, "wb");
621 if (!f) {
Paul Lawrence661f8a62016-02-25 12:42:19 -0800622 ui->Print("Failed to convert to file encryption %s\n", strerror(errno));
Paul Lawrenced0db3372015-11-05 13:38:40 -0800623 return true;
624 }
625 fclose(f);
626 result = format_volume(volume, CONVERT_FBE_DIR);
627 remove(CONVERT_FBE_FILE);
628 rmdir(CONVERT_FBE_DIR);
629 } else {
630 result = format_volume(volume);
631 }
Doug Zongkerd0181b82011-10-19 10:51:12 -0700632
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700633 if (is_cache) {
634 while (head) {
635 FILE* f = fopen_path(head->name, "wb");
636 if (f) {
637 fwrite(head->data, 1, head->st.st_size, f);
638 fclose(f);
639 chmod(head->name, head->st.st_mode);
640 chown(head->name, head->st.st_uid, head->st.st_gid);
641 }
642 free(head->name);
643 free(head->data);
644 saved_log_file* temp = head->next;
645 free(head);
646 head = temp;
647 }
648
Tao Baof0124322015-04-11 02:04:11 +0000649 // Any part of the log we'd copied to cache is now gone.
650 // Reset the pointer so we copy from the beginning of the temp
651 // log.
652 tmplog_offset = 0;
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700653 copy_logs();
Doug Zongker2c3539e2010-09-29 13:21:30 -0700654 }
655
Elliott Hughes945548e2015-06-05 17:59:56 -0700656 return (result == 0);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800657}
658
Doug Zongkerf93d8162009-09-22 15:16:02 -0700659static int
Doug Zongker28ce47c2011-10-28 10:33:05 -0700660get_menu_selection(const char* const * headers, const char* const * items,
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700661 int menu_only, int initial_selection, Device* device) {
Doug Zongkerf93d8162009-09-22 15:16:02 -0700662 // throw away keys pressed previously, so user doesn't
663 // accidentally trigger menu items.
Doug Zongker211aebc2011-10-28 15:13:10 -0700664 ui->FlushKeys();
Doug Zongkerf93d8162009-09-22 15:16:02 -0700665
Doug Zongker211aebc2011-10-28 15:13:10 -0700666 ui->StartMenu(headers, items, initial_selection);
Doug Zongker8674a722010-09-15 11:08:23 -0700667 int selected = initial_selection;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800668 int chosen_item = -1;
669
Doug Zongkerf93d8162009-09-22 15:16:02 -0700670 while (chosen_item < 0) {
Doug Zongker211aebc2011-10-28 15:13:10 -0700671 int key = ui->WaitKey();
672 int visible = ui->IsTextVisible();
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800673
Doug Zongker5cae4452011-01-25 13:15:30 -0800674 if (key == -1) { // ui_wait_key() timed out
Doug Zongker211aebc2011-10-28 15:13:10 -0700675 if (ui->WasTextEverVisible()) {
Doug Zongker5cae4452011-01-25 13:15:30 -0800676 continue;
677 } else {
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -0700678 LOG(INFO) << "timed out waiting for key input; rebooting.";
Doug Zongker211aebc2011-10-28 15:13:10 -0700679 ui->EndMenu();
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700680 return 0; // XXX fixme
Doug Zongker5cae4452011-01-25 13:15:30 -0800681 }
682 }
683
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700684 int action = device->HandleMenuKey(key, visible);
Doug Zongkerddd6a282009-06-09 12:22:33 -0700685
686 if (action < 0) {
687 switch (action) {
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700688 case Device::kHighlightUp:
Elliott Hughes642aaa72015-04-10 12:47:46 -0700689 selected = ui->SelectMenu(--selected);
Doug Zongkerddd6a282009-06-09 12:22:33 -0700690 break;
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700691 case Device::kHighlightDown:
Elliott Hughes642aaa72015-04-10 12:47:46 -0700692 selected = ui->SelectMenu(++selected);
Doug Zongkerddd6a282009-06-09 12:22:33 -0700693 break;
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700694 case Device::kInvokeItem:
Doug Zongkerddd6a282009-06-09 12:22:33 -0700695 chosen_item = selected;
696 break;
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700697 case Device::kNoAction:
Doug Zongkerddd6a282009-06-09 12:22:33 -0700698 break;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800699 }
Doug Zongkerf93d8162009-09-22 15:16:02 -0700700 } else if (!menu_only) {
Doug Zongkerddd6a282009-06-09 12:22:33 -0700701 chosen_item = action;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800702 }
Doug Zongkerf93d8162009-09-22 15:16:02 -0700703 }
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800704
Doug Zongker211aebc2011-10-28 15:13:10 -0700705 ui->EndMenu();
Doug Zongkerf93d8162009-09-22 15:16:02 -0700706 return chosen_item;
707}
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800708
Doug Zongker8674a722010-09-15 11:08:23 -0700709static int compare_string(const void* a, const void* b) {
710 return strcmp(*(const char**)a, *(const char**)b);
711}
712
Doug Zongker93950222014-07-08 14:10:23 -0700713// Returns a malloc'd path, or NULL.
Elliott Hughes30694c92015-03-25 15:16:51 -0700714static char* browse_directory(const char* path, Device* device) {
Michael Ward9d2629c2011-06-23 22:14:24 -0700715 ensure_path_mounted(path);
Doug Zongkerc18eeb82010-09-21 16:49:26 -0700716
Elliott Hughes30694c92015-03-25 15:16:51 -0700717 DIR* d = opendir(path);
Doug Zongker8674a722010-09-15 11:08:23 -0700718 if (d == NULL) {
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -0700719 PLOG(ERROR) << "error opening " << path;
Doug Zongker93950222014-07-08 14:10:23 -0700720 return NULL;
Doug Zongker8674a722010-09-15 11:08:23 -0700721 }
722
Doug Zongker8674a722010-09-15 11:08:23 -0700723 int d_size = 0;
724 int d_alloc = 10;
Doug Zongker28ce47c2011-10-28 10:33:05 -0700725 char** dirs = (char**)malloc(d_alloc * sizeof(char*));
Doug Zongker8674a722010-09-15 11:08:23 -0700726 int z_size = 1;
727 int z_alloc = 10;
Doug Zongker28ce47c2011-10-28 10:33:05 -0700728 char** zips = (char**)malloc(z_alloc * sizeof(char*));
Doug Zongker8674a722010-09-15 11:08:23 -0700729 zips[0] = strdup("../");
730
Elliott Hughes30694c92015-03-25 15:16:51 -0700731 struct dirent* de;
Doug Zongker8674a722010-09-15 11:08:23 -0700732 while ((de = readdir(d)) != NULL) {
733 int name_len = strlen(de->d_name);
734
735 if (de->d_type == DT_DIR) {
736 // skip "." and ".." entries
737 if (name_len == 1 && de->d_name[0] == '.') continue;
738 if (name_len == 2 && de->d_name[0] == '.' &&
739 de->d_name[1] == '.') continue;
740
741 if (d_size >= d_alloc) {
742 d_alloc *= 2;
Doug Zongker28ce47c2011-10-28 10:33:05 -0700743 dirs = (char**)realloc(dirs, d_alloc * sizeof(char*));
Doug Zongker8674a722010-09-15 11:08:23 -0700744 }
Doug Zongker28ce47c2011-10-28 10:33:05 -0700745 dirs[d_size] = (char*)malloc(name_len + 2);
Doug Zongker8674a722010-09-15 11:08:23 -0700746 strcpy(dirs[d_size], de->d_name);
747 dirs[d_size][name_len] = '/';
748 dirs[d_size][name_len+1] = '\0';
749 ++d_size;
750 } else if (de->d_type == DT_REG &&
751 name_len >= 4 &&
752 strncasecmp(de->d_name + (name_len-4), ".zip", 4) == 0) {
753 if (z_size >= z_alloc) {
754 z_alloc *= 2;
Doug Zongker28ce47c2011-10-28 10:33:05 -0700755 zips = (char**)realloc(zips, z_alloc * sizeof(char*));
Doug Zongker8674a722010-09-15 11:08:23 -0700756 }
757 zips[z_size++] = strdup(de->d_name);
758 }
759 }
760 closedir(d);
761
762 qsort(dirs, d_size, sizeof(char*), compare_string);
763 qsort(zips, z_size, sizeof(char*), compare_string);
764
765 // append dirs to the zips list
766 if (d_size + z_size + 1 > z_alloc) {
767 z_alloc = d_size + z_size + 1;
Doug Zongker28ce47c2011-10-28 10:33:05 -0700768 zips = (char**)realloc(zips, z_alloc * sizeof(char*));
Doug Zongker8674a722010-09-15 11:08:23 -0700769 }
770 memcpy(zips + z_size, dirs, d_size * sizeof(char*));
771 free(dirs);
772 z_size += d_size;
773 zips[z_size] = NULL;
774
Elliott Hughes8fd86d72015-04-13 14:36:02 -0700775 const char* headers[] = { "Choose a package to install:", path, NULL };
Elliott Hughes30694c92015-03-25 15:16:51 -0700776
Doug Zongker93950222014-07-08 14:10:23 -0700777 char* result;
Doug Zongker8674a722010-09-15 11:08:23 -0700778 int chosen_item = 0;
Doug Zongker93950222014-07-08 14:10:23 -0700779 while (true) {
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700780 chosen_item = get_menu_selection(headers, zips, 1, chosen_item, device);
Doug Zongker8674a722010-09-15 11:08:23 -0700781
782 char* item = zips[chosen_item];
783 int item_len = strlen(item);
784 if (chosen_item == 0) { // item 0 is always "../"
Michael Ward9d2629c2011-06-23 22:14:24 -0700785 // go up but continue browsing (if the caller is update_directory)
Doug Zongker93950222014-07-08 14:10:23 -0700786 result = NULL;
Doug Zongker8674a722010-09-15 11:08:23 -0700787 break;
788 }
Doug Zongker93950222014-07-08 14:10:23 -0700789
790 char new_path[PATH_MAX];
791 strlcpy(new_path, path, PATH_MAX);
792 strlcat(new_path, "/", PATH_MAX);
793 strlcat(new_path, item, PATH_MAX);
794
795 if (item[item_len-1] == '/') {
796 // recurse down into a subdirectory
797 new_path[strlen(new_path)-1] = '\0'; // truncate the trailing '/'
798 result = browse_directory(new_path, device);
799 if (result) break;
800 } else {
801 // selected a zip file: return the malloc'd path to the caller.
802 result = strdup(new_path);
803 break;
804 }
805 }
Doug Zongker8674a722010-09-15 11:08:23 -0700806
Elliott Hughes30694c92015-03-25 15:16:51 -0700807 for (int i = 0; i < z_size; ++i) free(zips[i]);
Doug Zongker8674a722010-09-15 11:08:23 -0700808 free(zips);
Doug Zongker8674a722010-09-15 11:08:23 -0700809
810 return result;
811}
812
Elliott Hughes30694c92015-03-25 15:16:51 -0700813static bool yes_no(Device* device, const char* question1, const char* question2) {
Elliott Hughes8fd86d72015-04-13 14:36:02 -0700814 const char* headers[] = { question1, question2, NULL };
Elliott Hughes30694c92015-03-25 15:16:51 -0700815 const char* items[] = { " No", " Yes", NULL };
Doug Zongkerddd6a282009-06-09 12:22:33 -0700816
Elliott Hughes30694c92015-03-25 15:16:51 -0700817 int chosen_item = get_menu_selection(headers, items, 1, 0, device);
818 return (chosen_item == 1);
819}
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800820
Tao Baoe39a9bc2015-03-31 12:19:05 -0700821// Return true on success.
822static bool wipe_data(int should_confirm, Device* device) {
823 if (should_confirm && !yes_no(device, "Wipe all user data?", " THIS CAN NOT BE UNDONE!")) {
824 return false;
Doug Zongkerf93d8162009-09-22 15:16:02 -0700825 }
Doug Zongker1066d2c2009-04-01 13:57:40 -0700826
Tao Bao682c34b2015-04-07 17:16:35 -0700827 modified_flash = true;
828
Doug Zongker211aebc2011-10-28 15:13:10 -0700829 ui->Print("\n-- Wiping data...\n");
Elliott Hughes945548e2015-06-05 17:59:56 -0700830 bool success =
831 device->PreWipeData() &&
832 erase_volume("/data") &&
Tao Bao26112e52016-02-25 12:29:40 -0800833 (has_cache ? erase_volume("/cache") : true) &&
Elliott Hughes945548e2015-06-05 17:59:56 -0700834 device->PostWipeData();
835 ui->Print("Data wipe %s.\n", success ? "complete" : "failed");
836 return success;
Doug Zongkerf93d8162009-09-22 15:16:02 -0700837}
838
Tao Baoe39a9bc2015-03-31 12:19:05 -0700839// Return true on success.
840static bool wipe_cache(bool should_confirm, Device* device) {
Tao Bao26112e52016-02-25 12:29:40 -0800841 if (!has_cache) {
842 ui->Print("No /cache partition found.\n");
843 return false;
844 }
845
Elliott Hughes30694c92015-03-25 15:16:51 -0700846 if (should_confirm && !yes_no(device, "Wipe cache?", " THIS CAN NOT BE UNDONE!")) {
Tao Baoe39a9bc2015-03-31 12:19:05 -0700847 return false;
Elliott Hughes30694c92015-03-25 15:16:51 -0700848 }
849
Tao Bao682c34b2015-04-07 17:16:35 -0700850 modified_flash = true;
851
Elliott Hughes30694c92015-03-25 15:16:51 -0700852 ui->Print("\n-- Wiping cache...\n");
Elliott Hughes945548e2015-06-05 17:59:56 -0700853 bool success = erase_volume("/cache");
854 ui->Print("Cache wipe %s.\n", success ? "complete" : "failed");
855 return success;
Elliott Hughes30694c92015-03-25 15:16:51 -0700856}
857
Tao Bao862a4c12016-06-02 11:16:50 -0700858// Secure-wipe a given partition. It uses BLKSECDISCARD, if supported.
859// Otherwise, it goes with BLKDISCARD (if device supports BLKDISCARDZEROES) or
860// BLKZEROOUT.
861static bool secure_wipe_partition(const std::string& partition) {
862 android::base::unique_fd fd(TEMP_FAILURE_RETRY(open(partition.c_str(), O_WRONLY)));
863 if (fd == -1) {
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -0700864 PLOG(ERROR) << "failed to open \"" << partition << "\"";
Tao Bao862a4c12016-06-02 11:16:50 -0700865 return false;
866 }
867
868 uint64_t range[2] = {0, 0};
869 if (ioctl(fd, BLKGETSIZE64, &range[1]) == -1 || range[1] == 0) {
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -0700870 PLOG(ERROR) << "failed to get partition size";
Tao Bao862a4c12016-06-02 11:16:50 -0700871 return false;
872 }
873 printf("Secure-wiping \"%s\" from %" PRIu64 " to %" PRIu64 ".\n",
874 partition.c_str(), range[0], range[1]);
875
876 printf("Trying BLKSECDISCARD...\t");
877 if (ioctl(fd, BLKSECDISCARD, &range) == -1) {
878 printf("failed: %s\n", strerror(errno));
879
880 // Use BLKDISCARD if it zeroes out blocks, otherwise use BLKZEROOUT.
881 unsigned int zeroes;
882 if (ioctl(fd, BLKDISCARDZEROES, &zeroes) == 0 && zeroes != 0) {
883 printf("Trying BLKDISCARD...\t");
884 if (ioctl(fd, BLKDISCARD, &range) == -1) {
885 printf("failed: %s\n", strerror(errno));
886 return false;
887 }
888 } else {
889 printf("Trying BLKZEROOUT...\t");
890 if (ioctl(fd, BLKZEROOUT, &range) == -1) {
891 printf("failed: %s\n", strerror(errno));
892 return false;
893 }
894 }
895 }
896
897 printf("done\n");
898 return true;
899}
900
901// Brick the current device, with a secure wipe of all the partitions in
902// RECOVERY_BRICK.
903static bool brick_device() {
904 ui->SetBackground(RecoveryUI::ERASING);
905 ui->SetProgressType(RecoveryUI::INDETERMINATE);
906
907 std::string partition_list;
908 if (!android::base::ReadFileToString(RECOVERY_BRICK, &partition_list)) {
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -0700909 LOG(ERROR) << "failed to read \"" << RECOVERY_BRICK << "\"";
Tao Bao862a4c12016-06-02 11:16:50 -0700910 return false;
911 }
912
913 std::vector<std::string> lines = android::base::Split(partition_list, "\n");
914 for (const std::string& line : lines) {
915 std::string partition = android::base::Trim(line);
916 // Ignore '#' comment or empty lines.
917 if (android::base::StartsWith(partition, "#") || partition.empty()) {
918 continue;
919 }
920
921 // Proceed anyway even if it fails to wipe some partition.
922 secure_wipe_partition(partition);
923 }
924 return true;
925}
926
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700927static void choose_recovery_file(Device* device) {
Elliott Hughesc0491632015-05-06 12:40:05 -0700928 // "Back" + KEEP_LOG_COUNT * 2 + terminating nullptr entry
929 char* entries[1 + KEEP_LOG_COUNT * 2 + 1];
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700930 memset(entries, 0, sizeof(entries));
931
Tao Baobef39712015-05-04 18:50:27 -0700932 unsigned int n = 0;
Patrick Tjincd055ee2014-12-09 11:26:40 -0800933
Tianjie Xua54f75e2016-08-17 12:02:46 -0700934 if (has_cache) {
935 // Add LAST_LOG_FILE + LAST_LOG_FILE.x
936 // Add LAST_KMSG_FILE + LAST_KMSG_FILE.x
937 for (int i = 0; i < KEEP_LOG_COUNT; i++) {
938 char* log_file;
939 int ret;
940 ret = (i == 0) ? asprintf(&log_file, "%s", LAST_LOG_FILE) :
941 asprintf(&log_file, "%s.%d", LAST_LOG_FILE, i);
942 if (ret == -1) {
943 // memory allocation failure - return early. Should never happen.
944 return;
945 }
946 if ((ensure_path_mounted(log_file) != 0) || (access(log_file, R_OK) == -1)) {
947 free(log_file);
948 } else {
949 entries[n++] = log_file;
950 }
Tao Baobef39712015-05-04 18:50:27 -0700951
Tianjie Xua54f75e2016-08-17 12:02:46 -0700952 char* kmsg_file;
953 ret = (i == 0) ? asprintf(&kmsg_file, "%s", LAST_KMSG_FILE) :
954 asprintf(&kmsg_file, "%s.%d", LAST_KMSG_FILE, i);
955 if (ret == -1) {
956 // memory allocation failure - return early. Should never happen.
957 return;
958 }
959 if ((ensure_path_mounted(kmsg_file) != 0) || (access(kmsg_file, R_OK) == -1)) {
960 free(kmsg_file);
961 } else {
962 entries[n++] = kmsg_file;
963 }
Tao Baobef39712015-05-04 18:50:27 -0700964 }
Tianjie Xua54f75e2016-08-17 12:02:46 -0700965 } else {
966 // If cache partition is not found, view /tmp/recovery.log instead.
967 ui->Print("No /cache partition found.\n");
968 if (access(TEMPORARY_LOG_FILE, R_OK) == -1) {
969 return;
970 } else{
971 entries[n++] = strdup(TEMPORARY_LOG_FILE);
Tao Baobef39712015-05-04 18:50:27 -0700972 }
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700973 }
974
Elliott Hughesc0491632015-05-06 12:40:05 -0700975 entries[n++] = strdup("Back");
976
Tao Baobef39712015-05-04 18:50:27 -0700977 const char* headers[] = { "Select file to view", nullptr };
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700978
Elliott Hughes8de52072015-04-08 20:06:50 -0700979 while (true) {
Elliott Hughes30694c92015-03-25 15:16:51 -0700980 int chosen_item = get_menu_selection(headers, entries, 1, 0, device);
Elliott Hughesc0491632015-05-06 12:40:05 -0700981 if (strcmp(entries[chosen_item], "Back") == 0) break;
Elliott Hughes8de52072015-04-08 20:06:50 -0700982
Elliott Hughes8de52072015-04-08 20:06:50 -0700983 ui->ShowFile(entries[chosen_item]);
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700984 }
985
Tao Baobef39712015-05-04 18:50:27 -0700986 for (size_t i = 0; i < (sizeof(entries) / sizeof(*entries)); i++) {
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700987 free(entries[i]);
988 }
989}
990
Elliott Hughes498cda62016-04-14 16:49:04 -0700991static void run_graphics_test(Device* device) {
992 // Switch to graphics screen.
993 ui->ShowText(false);
994
995 ui->SetProgressType(RecoveryUI::INDETERMINATE);
996 ui->SetBackground(RecoveryUI::INSTALLING_UPDATE);
997 sleep(1);
998
999 ui->SetBackground(RecoveryUI::ERROR);
1000 sleep(1);
1001
1002 ui->SetBackground(RecoveryUI::NO_COMMAND);
1003 sleep(1);
1004
1005 ui->SetBackground(RecoveryUI::ERASING);
1006 sleep(1);
1007
1008 ui->SetBackground(RecoveryUI::INSTALLING_UPDATE);
1009
1010 ui->SetProgressType(RecoveryUI::DETERMINATE);
1011 ui->ShowProgress(1.0, 10.0);
1012 float fraction = 0.0;
1013 for (size_t i = 0; i < 100; ++i) {
1014 fraction += .01;
1015 ui->SetProgress(fraction);
1016 usleep(100000);
1017 }
1018
1019 ui->ShowText(true);
1020}
1021
Tao Baocdcf28f2016-01-13 15:05:20 -08001022// How long (in seconds) we wait for the fuse-provided package file to
1023// appear, before timing out.
1024#define SDCARD_INSTALL_TIMEOUT 10
1025
Tao Bao145d8612015-03-25 15:51:15 -07001026static int apply_from_sdcard(Device* device, bool* wipe_cache) {
Tao Bao682c34b2015-04-07 17:16:35 -07001027 modified_flash = true;
1028
Christian Poetzsch4ec58a42015-02-19 10:42:39 +00001029 if (ensure_path_mounted(SDCARD_ROOT) != 0) {
1030 ui->Print("\n-- Couldn't mount %s.\n", SDCARD_ROOT);
1031 return INSTALL_ERROR;
1032 }
1033
1034 char* path = browse_directory(SDCARD_ROOT, device);
1035 if (path == NULL) {
Elliott Hughes018ed312015-04-08 16:51:36 -07001036 ui->Print("\n-- No package file selected.\n");
caozhiyuanb4effb92015-06-10 16:46:38 +08001037 ensure_path_unmounted(SDCARD_ROOT);
Christian Poetzsch4ec58a42015-02-19 10:42:39 +00001038 return INSTALL_ERROR;
1039 }
1040
1041 ui->Print("\n-- Install %s ...\n", path);
1042 set_sdcard_update_bootloader_message();
Christian Poetzsch4ec58a42015-02-19 10:42:39 +00001043
Tao Baocdcf28f2016-01-13 15:05:20 -08001044 // We used to use fuse in a thread as opposed to a process. Since accessing
1045 // through fuse involves going from kernel to userspace to kernel, it leads
1046 // to deadlock when a page fault occurs. (Bug: 26313124)
1047 pid_t child;
1048 if ((child = fork()) == 0) {
1049 bool status = start_sdcard_fuse(path);
1050
1051 _exit(status ? EXIT_SUCCESS : EXIT_FAILURE);
1052 }
1053
1054 // FUSE_SIDELOAD_HOST_PATHNAME will start to exist once the fuse in child
1055 // process is ready.
1056 int result = INSTALL_ERROR;
1057 int status;
1058 bool waited = false;
1059 for (int i = 0; i < SDCARD_INSTALL_TIMEOUT; ++i) {
1060 if (waitpid(child, &status, WNOHANG) == -1) {
1061 result = INSTALL_ERROR;
1062 waited = true;
1063 break;
1064 }
1065
1066 struct stat sb;
1067 if (stat(FUSE_SIDELOAD_HOST_PATHNAME, &sb) == -1) {
1068 if (errno == ENOENT && i < SDCARD_INSTALL_TIMEOUT-1) {
1069 sleep(1);
1070 continue;
1071 } else {
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -07001072 LOG(ERROR) << "Timed out waiting for the fuse-provided package.";
Tao Baocdcf28f2016-01-13 15:05:20 -08001073 result = INSTALL_ERROR;
1074 kill(child, SIGKILL);
1075 break;
1076 }
1077 }
1078
1079 result = install_package(FUSE_SIDELOAD_HOST_PATHNAME, wipe_cache,
Tianjie Xu16255832016-04-30 11:49:59 -07001080 TEMPORARY_INSTALL_FILE, false, 0/*retry_count*/);
Tao Baocdcf28f2016-01-13 15:05:20 -08001081 break;
1082 }
Christian Poetzsch4ec58a42015-02-19 10:42:39 +00001083
Tao Baocdcf28f2016-01-13 15:05:20 -08001084 if (!waited) {
1085 // Calling stat() on this magic filename signals the fuse
1086 // filesystem to shut down.
1087 struct stat sb;
1088 stat(FUSE_SIDELOAD_HOST_EXIT_PATHNAME, &sb);
1089
1090 waitpid(child, &status, 0);
1091 }
1092
1093 if (!WIFEXITED(status) || WEXITSTATUS(status) != 0) {
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -07001094 LOG(ERROR) << "Error exit from the fuse process: " << WEXITSTATUS(status);
Tao Baocdcf28f2016-01-13 15:05:20 -08001095 }
1096
Christian Poetzsch4ec58a42015-02-19 10:42:39 +00001097 ensure_path_unmounted(SDCARD_ROOT);
Tao Baocdcf28f2016-01-13 15:05:20 -08001098 return result;
Christian Poetzsch4ec58a42015-02-19 10:42:39 +00001099}
1100
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001101// Return REBOOT, SHUTDOWN, or REBOOT_BOOTLOADER. Returning NO_ACTION
1102// means to take the default, which is to reboot or shutdown depending
1103// on if the --shutdown_after flag was passed to recovery.
1104static Device::BuiltinAction
Doug Zongker6c8553d2012-09-24 10:40:47 -07001105prompt_and_wait(Device* device, int status) {
Doug Zongkerf93d8162009-09-22 15:16:02 -07001106 for (;;) {
Tianjie Xuc14d95d2016-03-24 11:50:34 -07001107 finish_recovery();
Doug Zongker6c8553d2012-09-24 10:40:47 -07001108 switch (status) {
1109 case INSTALL_SUCCESS:
1110 case INSTALL_NONE:
1111 ui->SetBackground(RecoveryUI::NO_COMMAND);
1112 break;
1113
1114 case INSTALL_ERROR:
1115 case INSTALL_CORRUPT:
1116 ui->SetBackground(RecoveryUI::ERROR);
1117 break;
1118 }
Doug Zongker211aebc2011-10-28 15:13:10 -07001119 ui->SetProgressType(RecoveryUI::EMPTY);
Doug Zongkerf93d8162009-09-22 15:16:02 -07001120
Elliott Hughes8fd86d72015-04-13 14:36:02 -07001121 int chosen_item = get_menu_selection(nullptr, device->GetMenuItems(), 0, 0, device);
Doug Zongkerf93d8162009-09-22 15:16:02 -07001122
1123 // device-specific code may take some action here. It may
1124 // return one of the core actions handled in the switch
1125 // statement below.
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001126 Device::BuiltinAction chosen_action = device->InvokeMenuItem(chosen_item);
Doug Zongkerf93d8162009-09-22 15:16:02 -07001127
Elliott Hughes30694c92015-03-25 15:16:51 -07001128 bool should_wipe_cache = false;
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001129 switch (chosen_action) {
1130 case Device::NO_ACTION:
1131 break;
1132
Doug Zongkerdaefc1d2011-10-31 09:34:15 -07001133 case Device::REBOOT:
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001134 case Device::SHUTDOWN:
1135 case Device::REBOOT_BOOTLOADER:
1136 return chosen_action;
Doug Zongkerf93d8162009-09-22 15:16:02 -07001137
Doug Zongkerdaefc1d2011-10-31 09:34:15 -07001138 case Device::WIPE_DATA:
1139 wipe_data(ui->IsTextVisible(), device);
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001140 if (!ui->IsTextVisible()) return Device::NO_ACTION;
Doug Zongkerf93d8162009-09-22 15:16:02 -07001141 break;
1142
Doug Zongkerdaefc1d2011-10-31 09:34:15 -07001143 case Device::WIPE_CACHE:
Elliott Hughes30694c92015-03-25 15:16:51 -07001144 wipe_cache(ui->IsTextVisible(), device);
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001145 if (!ui->IsTextVisible()) return Device::NO_ACTION;
Doug Zongkerf93d8162009-09-22 15:16:02 -07001146 break;
1147
Christian Poetzsch4ec58a42015-02-19 10:42:39 +00001148 case Device::APPLY_ADB_SIDELOAD:
Elliott Hughesec283402015-04-10 10:01:53 -07001149 case Device::APPLY_SDCARD:
Christian Poetzsch4ec58a42015-02-19 10:42:39 +00001150 {
1151 bool adb = (chosen_action == Device::APPLY_ADB_SIDELOAD);
1152 if (adb) {
Elliott Hughes30694c92015-03-25 15:16:51 -07001153 status = apply_from_adb(ui, &should_wipe_cache, TEMPORARY_INSTALL_FILE);
Doug Zongkerd0181b82011-10-19 10:51:12 -07001154 } else {
Elliott Hughes30694c92015-03-25 15:16:51 -07001155 status = apply_from_sdcard(device, &should_wipe_cache);
Doug Zongkerd0181b82011-10-19 10:51:12 -07001156 }
Doug Zongker945fc682014-07-10 10:50:39 -07001157
Elliott Hughes30694c92015-03-25 15:16:51 -07001158 if (status == INSTALL_SUCCESS && should_wipe_cache) {
Tao Baoe39a9bc2015-03-31 12:19:05 -07001159 if (!wipe_cache(false, device)) {
1160 status = INSTALL_ERROR;
1161 }
Christian Poetzsch4ec58a42015-02-19 10:42:39 +00001162 }
1163
Tao Baoc679f932015-03-30 09:43:49 -07001164 if (status != INSTALL_SUCCESS) {
1165 ui->SetBackground(RecoveryUI::ERROR);
1166 ui->Print("Installation aborted.\n");
1167 copy_logs();
1168 } else if (!ui->IsTextVisible()) {
1169 return Device::NO_ACTION; // reboot if logs aren't visible
1170 } else {
1171 ui->Print("\nInstall from %s complete.\n", adb ? "ADB" : "SD card");
Doug Zongker8674a722010-09-15 11:08:23 -07001172 }
Doug Zongkerf93d8162009-09-22 15:16:02 -07001173 }
1174 break;
Doug Zongkerdaefc1d2011-10-31 09:34:15 -07001175
Elliott Hughesec283402015-04-10 10:01:53 -07001176 case Device::VIEW_RECOVERY_LOGS:
1177 choose_recovery_file(device);
Michael Ward9d2629c2011-06-23 22:14:24 -07001178 break;
Doug Zongker9270a202012-01-09 15:16:13 -08001179
Elliott Hughes498cda62016-04-14 16:49:04 -07001180 case Device::RUN_GRAPHICS_TEST:
1181 run_graphics_test(device);
1182 break;
1183
Elliott Hughesec283402015-04-10 10:01:53 -07001184 case Device::MOUNT_SYSTEM:
Tao Baoabb8f772015-07-30 14:43:27 -07001185 // For a system image built with the root directory (i.e.
1186 // system_root_image == "true"), we mount it to /system_root, and symlink /system
1187 // to /system_root/system to make adb shell work (the symlink is created through
1188 // the build system).
1189 // Bug: 22855115
Elliott Hughescb220402016-09-23 15:30:55 -07001190 if (android::base::GetBoolProperty("ro.build.system_root_image", false)) {
Tao Baoabb8f772015-07-30 14:43:27 -07001191 if (ensure_path_mounted_at("/", "/system_root") != -1) {
1192 ui->Print("Mounted /system.\n");
1193 }
1194 } else {
1195 if (ensure_path_mounted("/system") != -1) {
1196 ui->Print("Mounted /system.\n");
1197 }
Elliott Hughesec283402015-04-10 10:01:53 -07001198 }
Tao Baoabb8f772015-07-30 14:43:27 -07001199
Nick Kralevicha9ad0322014-10-22 18:38:48 -07001200 break;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001201 }
1202 }
1203}
1204
1205static void
Oscar Montemayor05231562009-11-30 08:40:57 -08001206print_property(const char *key, const char *name, void *cookie) {
Doug Zongker56c51052010-07-01 09:18:44 -07001207 printf("%s=%s\n", key, name);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001208}
1209
Doug Zongker02ec6b82012-08-22 17:26:40 -07001210static void
1211load_locale_from_cache() {
1212 FILE* fp = fopen_path(LOCALE_FILE, "r");
1213 char buffer[80];
1214 if (fp != NULL) {
1215 fgets(buffer, sizeof(buffer), fp);
1216 int j = 0;
Doug Zongker5fa8c232012-09-18 12:37:02 -07001217 unsigned int i;
Doug Zongker02ec6b82012-08-22 17:26:40 -07001218 for (i = 0; i < sizeof(buffer) && buffer[i]; ++i) {
1219 if (!isspace(buffer[i])) {
1220 buffer[j++] = buffer[i];
1221 }
1222 }
1223 buffer[j] = 0;
1224 locale = strdup(buffer);
Devin Kim6016d082012-10-08 09:47:37 -07001225 check_and_fclose(fp, LOCALE_FILE);
Doug Zongker02ec6b82012-08-22 17:26:40 -07001226 }
1227}
1228
Doug Zongker7c3ae452013-05-14 11:03:02 -07001229static RecoveryUI* gCurrentUI = NULL;
1230
1231void
1232ui_print(const char* format, ...) {
1233 char buffer[256];
1234
1235 va_list ap;
1236 va_start(ap, format);
1237 vsnprintf(buffer, sizeof(buffer), format, ap);
1238 va_end(ap);
1239
1240 if (gCurrentUI != NULL) {
1241 gCurrentUI->Print("%s", buffer);
1242 } else {
1243 fputs(buffer, stdout);
1244 }
1245}
1246
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -07001247static constexpr char log_characters[] = "VDIWEF";
1248
1249void UiLogger(android::base::LogId id, android::base::LogSeverity severity,
1250 const char* tag, const char* file, unsigned int line,
1251 const char* message) {
1252 if (severity >= android::base::ERROR && gCurrentUI != NULL) {
1253 gCurrentUI->Print("E:%s\n", message);
1254 } else {
1255 fprintf(stdout, "%c:%s\n", log_characters[severity], message);
1256 }
1257}
1258
Yabin Cui99281df2016-02-17 12:21:52 -08001259static bool is_battery_ok() {
1260 struct healthd_config healthd_config = {
1261 .batteryStatusPath = android::String8(android::String8::kEmptyString),
1262 .batteryHealthPath = android::String8(android::String8::kEmptyString),
1263 .batteryPresentPath = android::String8(android::String8::kEmptyString),
1264 .batteryCapacityPath = android::String8(android::String8::kEmptyString),
1265 .batteryVoltagePath = android::String8(android::String8::kEmptyString),
1266 .batteryTemperaturePath = android::String8(android::String8::kEmptyString),
1267 .batteryTechnologyPath = android::String8(android::String8::kEmptyString),
1268 .batteryCurrentNowPath = android::String8(android::String8::kEmptyString),
1269 .batteryCurrentAvgPath = android::String8(android::String8::kEmptyString),
1270 .batteryChargeCounterPath = android::String8(android::String8::kEmptyString),
1271 .batteryFullChargePath = android::String8(android::String8::kEmptyString),
1272 .batteryCycleCountPath = android::String8(android::String8::kEmptyString),
1273 .energyCounter = NULL,
1274 .boot_min_cap = 0,
1275 .screen_on = NULL
1276 };
1277 healthd_board_init(&healthd_config);
1278
1279 android::BatteryMonitor monitor;
1280 monitor.init(&healthd_config);
1281
1282 int wait_second = 0;
1283 while (true) {
1284 int charge_status = monitor.getChargeStatus();
1285 // Treat unknown status as charged.
1286 bool charged = (charge_status != android::BATTERY_STATUS_DISCHARGING &&
1287 charge_status != android::BATTERY_STATUS_NOT_CHARGING);
1288 android::BatteryProperty capacity;
1289 android::status_t status = monitor.getProperty(android::BATTERY_PROP_CAPACITY, &capacity);
1290 ui_print("charge_status %d, charged %d, status %d, capacity %lld\n", charge_status,
1291 charged, status, capacity.valueInt64);
1292 // At startup, the battery drivers in devices like N5X/N6P take some time to load
1293 // the battery profile. Before the load finishes, it reports value 50 as a fake
1294 // capacity. BATTERY_READ_TIMEOUT_IN_SEC is set that the battery drivers are expected
1295 // to finish loading the battery profile earlier than 10 seconds after kernel startup.
1296 if (status == 0 && capacity.valueInt64 == 50) {
1297 if (wait_second < BATTERY_READ_TIMEOUT_IN_SEC) {
1298 sleep(1);
1299 wait_second++;
1300 continue;
1301 }
1302 }
1303 // If we can't read battery percentage, it may be a device without battery. In this
1304 // situation, use 100 as a fake battery percentage.
1305 if (status != 0) {
1306 capacity.valueInt64 = 100;
1307 }
1308 return (charged && capacity.valueInt64 >= BATTERY_WITH_CHARGER_OK_PERCENTAGE) ||
1309 (!charged && capacity.valueInt64 >= BATTERY_OK_PERCENTAGE);
1310 }
1311}
1312
Tianjie Xu3c62b672016-02-05 18:25:58 -08001313static void set_retry_bootloader_message(int retry_count, int argc, char** argv) {
1314 struct bootloader_message boot {};
1315 strlcpy(boot.command, "boot-recovery", sizeof(boot.command));
1316 strlcpy(boot.recovery, "recovery\n", sizeof(boot.recovery));
1317
1318 for (int i = 1; i < argc; ++i) {
1319 if (strstr(argv[i], "retry_count") == nullptr) {
1320 strlcat(boot.recovery, argv[i], sizeof(boot.recovery));
1321 strlcat(boot.recovery, "\n", sizeof(boot.recovery));
1322 }
1323 }
1324
1325 // Initialize counter to 1 if it's not in BCB, otherwise increment it by 1.
1326 if (retry_count == 0) {
1327 strlcat(boot.recovery, "--retry_count=1\n", sizeof(boot.recovery));
1328 } else {
1329 char buffer[20];
1330 snprintf(buffer, sizeof(buffer), "--retry_count=%d\n", retry_count+1);
1331 strlcat(boot.recovery, buffer, sizeof(boot.recovery));
1332 }
1333 set_bootloader_message(&boot);
1334}
1335
Mark Salyzyna4f701a2016-03-09 14:58:16 -08001336static ssize_t logbasename(
1337 log_id_t /* logId */,
1338 char /* prio */,
1339 const char *filename,
1340 const char * /* buf */, size_t len,
1341 void *arg) {
1342 if (strstr(LAST_KMSG_FILE, filename) ||
1343 strstr(LAST_LOG_FILE, filename)) {
1344 bool *doRotate = reinterpret_cast<bool *>(arg);
1345 *doRotate = true;
1346 }
1347 return len;
1348}
1349
1350static ssize_t logrotate(
1351 log_id_t logId,
1352 char prio,
1353 const char *filename,
1354 const char *buf, size_t len,
1355 void *arg) {
1356 bool *doRotate = reinterpret_cast<bool *>(arg);
1357 if (!*doRotate) {
1358 return __android_log_pmsg_file_write(logId, prio, filename, buf, len);
1359 }
1360
1361 std::string name(filename);
Chih-Hung Hsieh23abfd32016-07-27 10:19:47 -07001362 size_t dot = name.find_last_of('.');
Mark Salyzyna4f701a2016-03-09 14:58:16 -08001363 std::string sub = name.substr(0, dot);
1364
1365 if (!strstr(LAST_KMSG_FILE, sub.c_str()) &&
1366 !strstr(LAST_LOG_FILE, sub.c_str())) {
1367 return __android_log_pmsg_file_write(logId, prio, filename, buf, len);
1368 }
1369
1370 // filename rotation
1371 if (dot == std::string::npos) {
1372 name += ".1";
1373 } else {
1374 std::string number = name.substr(dot + 1);
1375 if (!isdigit(number.data()[0])) {
1376 name += ".1";
1377 } else {
Chih-Hung Hsieh54a27472016-04-18 11:30:55 -07001378 auto i = std::stoull(number);
Mark Salyzyna4f701a2016-03-09 14:58:16 -08001379 name = sub + "." + std::to_string(i + 1);
1380 }
1381 }
1382
1383 return __android_log_pmsg_file_write(logId, prio, name.c_str(), buf, len);
1384}
1385
Yabin Cui99281df2016-02-17 12:21:52 -08001386int main(int argc, char **argv) {
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -07001387 // We don't have logcat yet under recovery; so we'll print error on screen and
1388 // log to stdout (which is redirected to recovery.log) as we used to do.
1389 android::base::InitLogging(argv, &UiLogger);
1390
Mark Salyzyna4f701a2016-03-09 14:58:16 -08001391 // Take last pmsg contents and rewrite it to the current pmsg session.
1392 static const char filter[] = "recovery/";
1393 // Do we need to rotate?
1394 bool doRotate = false;
1395 __android_log_pmsg_file_read(
1396 LOG_ID_SYSTEM, ANDROID_LOG_INFO, filter,
1397 logbasename, &doRotate);
1398 // Take action to refresh pmsg contents
1399 __android_log_pmsg_file_read(
1400 LOG_ID_SYSTEM, ANDROID_LOG_INFO, filter,
1401 logrotate, &doRotate);
1402
Doug Zongker9270a202012-01-09 15:16:13 -08001403 // If this binary is started with the single argument "--adbd",
1404 // instead of being the normal recovery binary, it turns into kind
1405 // of a stripped-down version of adbd that only supports the
1406 // 'sideload' command. Note this must be a real argument, not
1407 // anything in the command file or bootloader control block; the
1408 // only way recovery should be run with this argument is when it
1409 // starts a copy of itself from the apply_from_adb() function.
1410 if (argc == 2 && strcmp(argv[1], "--adbd") == 0) {
Josh Gaoacb2a2f2016-08-26 18:24:34 -07001411 minadbd_main();
Doug Zongker9270a202012-01-09 15:16:13 -08001412 return 0;
1413 }
1414
Tao Bao04ca4262015-09-10 15:32:24 -07001415 time_t start = time(NULL);
1416
1417 // redirect_stdio should be called only in non-sideload mode. Otherwise
1418 // we may have two logger instances with different timestamps.
1419 redirect_stdio(TEMPORARY_LOG_FILE);
1420
Doug Zongker19a8e242014-01-21 09:25:41 -08001421 printf("Starting recovery (pid %d) on %s", getpid(), ctime(&start));
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001422
Doug Zongkerd4208f92010-09-20 12:16:13 -07001423 load_volume_table();
Tao Bao26112e52016-02-25 12:29:40 -08001424 has_cache = volume_for_path(CACHE_ROOT) != nullptr;
1425
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001426 get_args(&argc, &argv);
1427
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001428 const char *update_package = NULL;
Tao Baoe39a9bc2015-03-31 12:19:05 -07001429 bool should_wipe_data = false;
Tao Baoc679f932015-03-30 09:43:49 -07001430 bool should_wipe_cache = false;
Tao Bao862a4c12016-06-02 11:16:50 -07001431 bool should_brick = false;
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;
1442 while ((arg = getopt_long(argc, argv, "", OPTIONS, &option_index)) != -1) {
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001443 switch (arg) {
Tianjie Xu3c62b672016-02-05 18:25:58 -08001444 case 'n': android::base::ParseInt(optarg, &retry_count, 0); break;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001445 case 'u': update_package = optarg; break;
Tao Baoe39a9bc2015-03-31 12:19:05 -07001446 case 'w': should_wipe_data = true; break;
Tao Baoc679f932015-03-30 09:43:49 -07001447 case 'c': should_wipe_cache = true; break;
Tao Bao145d8612015-03-25 15:51:15 -07001448 case 't': show_text = true; break;
Tao Baoc679f932015-03-30 09:43:49 -07001449 case 's': sideload = true; break;
1450 case 'a': sideload = true; sideload_auto_reboot = true; break;
Doug Zongkere5d5ac72012-04-12 11:01:22 -07001451 case 'x': just_exit = true; break;
Doug Zongker02ec6b82012-08-22 17:26:40 -07001452 case 'l': locale = optarg; break;
Doug Zongkerc87bab12013-11-25 13:53:25 -08001453 case 'g': {
1454 if (stage == NULL || *stage == '\0') {
1455 char buffer[20] = "1/";
1456 strncat(buffer, optarg, sizeof(buffer)-3);
1457 stage = strdup(buffer);
1458 }
1459 break;
1460 }
Doug Zongkerb1d12632014-03-18 10:32:12 -07001461 case 'p': shutdown_after = true; break;
Jeff Sharkeya6e13ae2014-09-24 11:46:17 -07001462 case 'r': reason = optarg; break;
Tianjie Xu35926c42016-04-28 18:06:26 -07001463 case 'e': security_update = true; break;
Tao Bao862a4c12016-06-02 11:16:50 -07001464 case 0: {
1465 if (strcmp(OPTIONS[option_index].name, "brick") == 0) {
1466 should_brick = true;
1467 break;
1468 }
1469 break;
1470 }
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001471 case '?':
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -07001472 LOG(ERROR) << "Invalid command argument";
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001473 continue;
1474 }
1475 }
1476
Tao Bao26112e52016-02-25 12:29:40 -08001477 if (locale == nullptr && has_cache) {
Doug Zongker02ec6b82012-08-22 17:26:40 -07001478 load_locale_from_cache();
1479 }
1480 printf("locale is [%s]\n", locale);
Doug Zongker0d32f252014-02-13 15:07:56 -08001481 printf("stage is [%s]\n", stage);
Jeff Sharkeya6e13ae2014-09-24 11:46:17 -07001482 printf("reason is [%s]\n", reason);
Doug Zongker02ec6b82012-08-22 17:26:40 -07001483
1484 Device* device = make_device();
1485 ui = device->GetUI();
Doug Zongker7c3ae452013-05-14 11:03:02 -07001486 gCurrentUI = ui;
Doug Zongker02ec6b82012-08-22 17:26:40 -07001487
Doug Zongker5fa8c232012-09-18 12:37:02 -07001488 ui->SetLocale(locale);
Doug Zongker02ec6b82012-08-22 17:26:40 -07001489 ui->Init();
Tianjie Xu35926c42016-04-28 18:06:26 -07001490 // Set background string to "installing security update" for security update,
1491 // otherwise set it to "installing system update".
1492 ui->SetSystemUpdateText(security_update);
Doug Zongkerc87bab12013-11-25 13:53:25 -08001493
1494 int st_cur, st_max;
1495 if (stage != NULL && sscanf(stage, "%d/%d", &st_cur, &st_max) == 2) {
1496 ui->SetStage(st_cur, st_max);
1497 }
1498
Doug Zongker02ec6b82012-08-22 17:26:40 -07001499 ui->SetBackground(RecoveryUI::NONE);
1500 if (show_text) ui->ShowText(true);
1501
Stephen Smalley779701d2012-02-09 14:13:23 -05001502 struct selinux_opt seopts[] = {
1503 { SELABEL_OPT_PATH, "/file_contexts" }
1504 };
1505
1506 sehandle = selabel_open(SELABEL_CTX_FILE, seopts, 1);
1507
1508 if (!sehandle) {
Doug Zongkerfafc85b2013-07-09 12:29:45 -07001509 ui->Print("Warning: No file_contexts\n");
Stephen Smalley779701d2012-02-09 14:13:23 -05001510 }
Stephen Smalley779701d2012-02-09 14:13:23 -05001511
Doug Zongkerdaefc1d2011-10-31 09:34:15 -07001512 device->StartRecovery();
Doug Zongkerefa1bab2010-02-01 15:59:12 -08001513
Doug Zongker56c51052010-07-01 09:18:44 -07001514 printf("Command:");
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001515 for (arg = 0; arg < argc; arg++) {
Doug Zongker56c51052010-07-01 09:18:44 -07001516 printf(" \"%s\"", argv[arg]);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001517 }
Doug Zongker9b125b02010-09-22 12:01:37 -07001518 printf("\n");
1519
1520 if (update_package) {
1521 // For backwards compatibility on the cache partition only, if
1522 // we're given an old 'root' path "CACHE:foo", change it to
1523 // "/cache/foo".
1524 if (strncmp(update_package, "CACHE:", 6) == 0) {
1525 int len = strlen(update_package) + 10;
Doug Zongker28ce47c2011-10-28 10:33:05 -07001526 char* modified_path = (char*)malloc(len);
Jeremy Compostella1b7d9b72015-07-29 17:17:03 +02001527 if (modified_path) {
1528 strlcpy(modified_path, "/cache/", len);
1529 strlcat(modified_path, update_package+6, len);
1530 printf("(replacing path \"%s\" with \"%s\")\n",
1531 update_package, modified_path);
1532 update_package = modified_path;
1533 }
1534 else
1535 printf("modified_path allocation failed\n");
Doug Zongker9b125b02010-09-22 12:01:37 -07001536 }
1537 }
1538 printf("\n");
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001539
1540 property_list(print_property, NULL);
Doug Zongker56c51052010-07-01 09:18:44 -07001541 printf("\n");
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001542
Elliott Hughesbb78d622015-04-09 20:51:08 -07001543 ui->Print("Supported API: %d\n", RECOVERY_API_VERSION);
1544
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001545 int status = INSTALL_SUCCESS;
1546
Doug Zongker540d57f2011-01-18 13:36:58 -08001547 if (update_package != NULL) {
Tao Bao56870012016-04-29 15:37:05 -07001548 // It's not entirely true that we will modify the flash. But we want
1549 // to log the update attempt since update_package is non-NULL.
1550 modified_flash = true;
1551
Yabin Cui99281df2016-02-17 12:21:52 -08001552 if (!is_battery_ok()) {
1553 ui->Print("battery capacity is not enough for installing package, needed is %d%%\n",
1554 BATTERY_OK_PERCENTAGE);
Tianjie Xu16255832016-04-30 11:49:59 -07001555 // Log the error code to last_install when installation skips due to
1556 // low battery.
Tao Baof4885ad2016-09-26 11:39:14 -07001557 std::vector<std::string> log_buffer = {
1558 update_package,
1559 "0", // install result
1560 "error: " + std::to_string(kLowBattery),
1561 };
1562 std::string log_content = android::base::Join(log_buffer, "\n");
1563 if (!android::base::WriteStringToFile(log_content, LAST_INSTALL_FILE)) {
1564 PLOG(ERROR) << "failed to write " << LAST_INSTALL_FILE;
Tianjie Xu16255832016-04-30 11:49:59 -07001565 }
Tao Baof4885ad2016-09-26 11:39:14 -07001566
1567 // Also write the info into last_log.
1568 LOG(INFO) << log_content;
1569
Yabin Cui99281df2016-02-17 12:21:52 -08001570 status = INSTALL_SKIPPED;
1571 } else {
1572 status = install_package(update_package, &should_wipe_cache,
Tianjie Xu16255832016-04-30 11:49:59 -07001573 TEMPORARY_INSTALL_FILE, true, retry_count);
Yabin Cui99281df2016-02-17 12:21:52 -08001574 if (status == INSTALL_SUCCESS && should_wipe_cache) {
1575 wipe_cache(false, device);
1576 }
1577 if (status != INSTALL_SUCCESS) {
1578 ui->Print("Installation aborted.\n");
Tianjie Xu3c62b672016-02-05 18:25:58 -08001579 // When I/O error happens, reboot and retry installation EIO_RETRY_COUNT
1580 // times before we abandon this OTA update.
1581 if (status == INSTALL_RETRY && retry_count < EIO_RETRY_COUNT) {
1582 copy_logs();
1583 set_retry_bootloader_message(retry_count, argc, argv);
1584 // Print retry count on screen.
1585 ui->Print("Retry attempt %d\n", retry_count);
Doug Zongker7c3ae452013-05-14 11:03:02 -07001586
Tianjie Xu3c62b672016-02-05 18:25:58 -08001587 // Reboot and retry the update
Elliott Hughescb220402016-09-23 15:30:55 -07001588 if (!android::base::SetProperty(ANDROID_RB_PROPERTY, "reboot,recovery")) {
Tianjie Xu3c62b672016-02-05 18:25:58 -08001589 ui->Print("Reboot failed\n");
1590 } else {
1591 while (true) {
1592 pause();
1593 }
1594 }
1595 }
Yabin Cui99281df2016-02-17 12:21:52 -08001596 // If this is an eng or userdebug build, then automatically
1597 // turn the text display on if the script fails so the error
1598 // message is visible.
1599 if (is_ro_debuggable()) {
1600 ui->ShowText(true);
1601 }
Doug Zongker7c3ae452013-05-14 11:03:02 -07001602 }
1603 }
Tao Baoe39a9bc2015-03-31 12:19:05 -07001604 } else if (should_wipe_data) {
1605 if (!wipe_data(false, device)) {
1606 status = INSTALL_ERROR;
1607 }
Tao Baoc679f932015-03-30 09:43:49 -07001608 } else if (should_wipe_cache) {
Tao Baoe39a9bc2015-03-31 12:19:05 -07001609 if (!wipe_cache(false, device)) {
1610 status = INSTALL_ERROR;
1611 }
Tao Bao862a4c12016-06-02 11:16:50 -07001612 } else if (should_brick) {
1613 if (!brick_device()) {
1614 status = INSTALL_ERROR;
1615 }
Tao Baoc679f932015-03-30 09:43:49 -07001616 } else if (sideload) {
1617 // 'adb reboot sideload' acts the same as user presses key combinations
1618 // to enter the sideload mode. When 'sideload-auto-reboot' is used, text
1619 // display will NOT be turned on by default. And it will reboot after
1620 // sideload finishes even if there are errors. Unless one turns on the
1621 // text display during the installation. This is to enable automated
1622 // testing.
1623 if (!sideload_auto_reboot) {
1624 ui->ShowText(true);
1625 }
1626 status = apply_from_adb(ui, &should_wipe_cache, TEMPORARY_INSTALL_FILE);
1627 if (status == INSTALL_SUCCESS && should_wipe_cache) {
Tao Baoe39a9bc2015-03-31 12:19:05 -07001628 if (!wipe_cache(false, device)) {
1629 status = INSTALL_ERROR;
1630 }
Tao Baoc679f932015-03-30 09:43:49 -07001631 }
1632 ui->Print("\nInstall from ADB complete (status: %d).\n", status);
1633 if (sideload_auto_reboot) {
1634 ui->Print("Rebooting automatically.\n");
1635 }
Doug Zongkere5d5ac72012-04-12 11:01:22 -07001636 } else if (!just_exit) {
Doug Zongker02ec6b82012-08-22 17:26:40 -07001637 status = INSTALL_NONE; // No command specified
1638 ui->SetBackground(RecoveryUI::NO_COMMAND);
Tao Bao785d22c2015-05-04 09:34:29 -07001639
1640 // http://b/17489952
1641 // If this is an eng or userdebug build, automatically turn on the
1642 // text display if no command is specified.
1643 if (is_ro_debuggable()) {
1644 ui->ShowText(true);
1645 }
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001646 }
1647
Tao Baoc679f932015-03-30 09:43:49 -07001648 if (!sideload_auto_reboot && (status == INSTALL_ERROR || status == INSTALL_CORRUPT)) {
Doug Zongkerf24fd7e2013-07-02 11:43:25 -07001649 copy_logs();
Doug Zongker02ec6b82012-08-22 17:26:40 -07001650 ui->SetBackground(RecoveryUI::ERROR);
1651 }
Tao Baoc679f932015-03-30 09:43:49 -07001652
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001653 Device::BuiltinAction after = shutdown_after ? Device::SHUTDOWN : Device::REBOOT;
Yabin Cui99281df2016-02-17 12:21:52 -08001654 if ((status != INSTALL_SUCCESS && status != INSTALL_SKIPPED && !sideload_auto_reboot) ||
1655 ui->IsTextVisible()) {
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001656 Device::BuiltinAction temp = prompt_and_wait(device, status);
Tao Baoc679f932015-03-30 09:43:49 -07001657 if (temp != Device::NO_ACTION) {
1658 after = temp;
1659 }
Doug Zongker8674a722010-09-15 11:08:23 -07001660 }
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001661
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001662 // Save logs and clean up before rebooting or shutting down.
Tianjie Xuc14d95d2016-03-24 11:50:34 -07001663 finish_recovery();
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001664
1665 switch (after) {
1666 case Device::SHUTDOWN:
1667 ui->Print("Shutting down...\n");
Elliott Hughescb220402016-09-23 15:30:55 -07001668 android::base::SetProperty(ANDROID_RB_PROPERTY, "shutdown,");
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001669 break;
1670
1671 case Device::REBOOT_BOOTLOADER:
1672 ui->Print("Rebooting to bootloader...\n");
Elliott Hughescb220402016-09-23 15:30:55 -07001673 android::base::SetProperty(ANDROID_RB_PROPERTY, "reboot,bootloader");
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001674 break;
1675
1676 default:
1677 ui->Print("Rebooting...\n");
Elliott Hughescb220402016-09-23 15:30:55 -07001678 android::base::SetProperty(ANDROID_RB_PROPERTY, "reboot,");
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001679 break;
Doug Zongkerb1d12632014-03-18 10:32:12 -07001680 }
Tao Bao75238632015-05-27 14:46:17 -07001681 while (true) {
1682 pause();
1683 }
1684 // Should be unreachable.
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001685 return EXIT_SUCCESS;
1686}