blob: 9cf63c4207ca0c03acb6d7a19ed41a96d0157b08 [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>
Yabin Cui99281df2016-02-17 12:21:52 -080055
Tao Bao75238632015-05-27 14:46:17 -070056#include "adb_install.h"
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080057#include "bootloader.h"
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080058#include "common.h"
Tao Bao75238632015-05-27 14:46:17 -070059#include "device.h"
Tianjie Xu16255832016-04-30 11:49:59 -070060#include "error_code.h"
Tao Bao75238632015-05-27 14:46:17 -070061#include "fuse_sdcard_provider.h"
62#include "fuse_sideload.h"
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080063#include "install.h"
Josh Gaoacb2a2f2016-08-26 18:24:34 -070064#include "minadbd/minadbd.h"
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080065#include "minui/minui.h"
66#include "minzip/DirUtil.h"
67#include "roots.h"
Doug Zongker28ce47c2011-10-28 10:33:05 -070068#include "ui.h"
Doug Zongker211aebc2011-10-28 15:13:10 -070069#include "screen_ui.h"
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080070
Stephen Smalley779701d2012-02-09 14:13:23 -050071struct selabel_handle *sehandle;
72
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080073static const struct option OPTIONS[] = {
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080074 { "update_package", required_argument, NULL, 'u' },
Tianjie Xu3c62b672016-02-05 18:25:58 -080075 { "retry_count", required_argument, NULL, 'n' },
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080076 { "wipe_data", no_argument, NULL, 'w' },
77 { "wipe_cache", no_argument, NULL, 'c' },
Doug Zongker4bc98062010-09-03 11:00:13 -070078 { "show_text", no_argument, NULL, 't' },
Tao Baoc679f932015-03-30 09:43:49 -070079 { "sideload", no_argument, NULL, 's' },
80 { "sideload_auto_reboot", no_argument, NULL, 'a' },
Doug Zongkere5d5ac72012-04-12 11:01:22 -070081 { "just_exit", no_argument, NULL, 'x' },
Doug Zongker02ec6b82012-08-22 17:26:40 -070082 { "locale", required_argument, NULL, 'l' },
Doug Zongkerc87bab12013-11-25 13:53:25 -080083 { "stages", required_argument, NULL, 'g' },
Doug Zongkerb1d12632014-03-18 10:32:12 -070084 { "shutdown_after", no_argument, NULL, 'p' },
Jeff Sharkeya6e13ae2014-09-24 11:46:17 -070085 { "reason", required_argument, NULL, 'r' },
Tianjie Xu35926c42016-04-28 18:06:26 -070086 { "security", no_argument, NULL, 'e'},
Tao Bao862a4c12016-06-02 11:16:50 -070087 { "brick", no_argument, NULL, 0 },
Doug Zongker988500b2009-10-06 14:41:38 -070088 { NULL, 0, NULL, 0 },
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080089};
90
Doug Zongker6d0d7ac2013-07-09 13:34:55 -070091static const char *CACHE_LOG_DIR = "/cache/recovery";
Doug Zongkerd4208f92010-09-20 12:16:13 -070092static const char *COMMAND_FILE = "/cache/recovery/command";
Doug Zongkerd4208f92010-09-20 12:16:13 -070093static const char *LOG_FILE = "/cache/recovery/log";
Doug Zongkerd0181b82011-10-19 10:51:12 -070094static const char *LAST_INSTALL_FILE = "/cache/recovery/last_install";
Doug Zongker8b240cc2012-08-29 15:19:29 -070095static const char *LOCALE_FILE = "/cache/recovery/last_locale";
Paul Lawrence661f8a62016-02-25 12:42:19 -080096static const char *CONVERT_FBE_DIR = "/tmp/convert_fbe";
97static const char *CONVERT_FBE_FILE = "/tmp/convert_fbe/convert_fbe";
Michael Ward9d2629c2011-06-23 22:14:24 -070098static const char *CACHE_ROOT = "/cache";
Paul Lawrenced0db3372015-11-05 13:38:40 -080099static const char *DATA_ROOT = "/data";
Doug Zongkerd4208f92010-09-20 12:16:13 -0700100static const char *SDCARD_ROOT = "/sdcard";
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800101static const char *TEMPORARY_LOG_FILE = "/tmp/recovery.log";
Doug Zongkerd0181b82011-10-19 10:51:12 -0700102static const char *TEMPORARY_INSTALL_FILE = "/tmp/last_install";
Tao Baof0124322015-04-11 02:04:11 +0000103static const char *LAST_KMSG_FILE = "/cache/recovery/last_kmsg";
Tao Baobef39712015-05-04 18:50:27 -0700104static const char *LAST_LOG_FILE = "/cache/recovery/last_log";
105static const int KEEP_LOG_COUNT = 10;
Tianjie Xuc37c5c32016-06-23 16:52:17 -0700106// We will try to apply the update package 5 times at most in case of an I/O error.
107static const int EIO_RETRY_COUNT = 4;
Yabin Cui99281df2016-02-17 12:21:52 -0800108static const int BATTERY_READ_TIMEOUT_IN_SEC = 10;
109// GmsCore enters recovery mode to install package when having enough battery
110// percentage. Normally, the threshold is 40% without charger and 20% with charger.
111// So we should check battery with a slightly lower limitation.
112static const int BATTERY_OK_PERCENTAGE = 20;
113static const int BATTERY_WITH_CHARGER_OK_PERCENTAGE = 15;
Tao Bao862a4c12016-06-02 11:16:50 -0700114constexpr const char* RECOVERY_BRICK = "/etc/recovery.brick";
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700115
Doug Zongker211aebc2011-10-28 15:13:10 -0700116RecoveryUI* ui = NULL;
Elliott Hughes498cda62016-04-14 16:49:04 -0700117static const char* locale = "en_US";
Doug Zongkerc87bab12013-11-25 13:53:25 -0800118char* stage = NULL;
Jeff Sharkeya6e13ae2014-09-24 11:46:17 -0700119char* reason = NULL;
Tao Bao682c34b2015-04-07 17:16:35 -0700120bool modified_flash = false;
Tao Bao26112e52016-02-25 12:29:40 -0800121static bool has_cache = false;
Doug Zongker211aebc2011-10-28 15:13:10 -0700122
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800123/*
124 * The recovery tool communicates with the main system through /cache files.
125 * /cache/recovery/command - INPUT - command line for tool, one arg per line
126 * /cache/recovery/log - OUTPUT - combined log file from recovery run(s)
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800127 *
128 * The arguments which may be supplied in the recovery.command file:
Doug Zongkerd4208f92010-09-20 12:16:13 -0700129 * --update_package=path - verify install an OTA package file
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800130 * --wipe_data - erase user data (and cache), then reboot
131 * --wipe_cache - wipe cache (but not user data), then reboot
Oscar Montemayor05231562009-11-30 08:40:57 -0800132 * --set_encrypted_filesystem=on|off - enables / diasables encrypted fs
Doug Zongkere5d5ac72012-04-12 11:01:22 -0700133 * --just_exit - do nothing; exit and reboot
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800134 *
135 * After completing, we remove /cache/recovery/command and reboot.
136 * Arguments may also be supplied in the bootloader control block (BCB).
137 * These important scenarios must be safely restartable at any point:
138 *
139 * FACTORY RESET
140 * 1. user selects "factory reset"
141 * 2. main system writes "--wipe_data" to /cache/recovery/command
142 * 3. main system reboots into recovery
143 * 4. get_args() writes BCB with "boot-recovery" and "--wipe_data"
144 * -- after this, rebooting will restart the erase --
Doug Zongkerd4208f92010-09-20 12:16:13 -0700145 * 5. erase_volume() reformats /data
146 * 6. erase_volume() reformats /cache
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800147 * 7. finish_recovery() erases BCB
148 * -- after this, rebooting will restart the main system --
149 * 8. main() calls reboot() to boot main system
150 *
151 * OTA INSTALL
152 * 1. main system downloads OTA package to /cache/some-filename.zip
Doug Zongker9b125b02010-09-22 12:01:37 -0700153 * 2. main system writes "--update_package=/cache/some-filename.zip"
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800154 * 3. main system reboots into recovery
155 * 4. get_args() writes BCB with "boot-recovery" and "--update_package=..."
156 * -- after this, rebooting will attempt to reinstall the update --
157 * 5. install_package() attempts to install the update
158 * NOTE: the package install must itself be restartable from any point
159 * 6. finish_recovery() erases BCB
160 * -- after this, rebooting will (try to) restart the main system --
161 * 7. ** if install failed **
162 * 7a. prompt_and_wait() shows an error icon and waits for the user
163 * 7b; the user reboots (pulling the battery, etc) into the main system
164 * 8. main() calls maybe_install_firmware_update()
165 * ** if the update contained radio/hboot firmware **:
166 * 8a. m_i_f_u() writes BCB with "boot-recovery" and "--wipe_cache"
167 * -- after this, rebooting will reformat cache & restart main system --
168 * 8b. m_i_f_u() writes firmware image into raw cache partition
169 * 8c. m_i_f_u() writes BCB with "update-radio/hboot" and "--wipe_cache"
170 * -- after this, rebooting will attempt to reinstall firmware --
171 * 8d. bootloader tries to flash firmware
172 * 8e. bootloader writes BCB with "boot-recovery" (keeping "--wipe_cache")
173 * -- after this, rebooting will reformat cache & restart main system --
Doug Zongkerd4208f92010-09-20 12:16:13 -0700174 * 8f. erase_volume() reformats /cache
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800175 * 8g. finish_recovery() erases BCB
176 * -- after this, rebooting will (try to) restart the main system --
177 * 9. main() calls reboot() to boot main system
178 */
179
180static const int MAX_ARG_LENGTH = 4096;
181static const int MAX_ARGS = 100;
182
Doug Zongkerd4208f92010-09-20 12:16:13 -0700183// open a given path, mounting partitions as necessary
Tao Bao04ca4262015-09-10 15:32:24 -0700184FILE* fopen_path(const char *path, const char *mode) {
Doug Zongkerd4208f92010-09-20 12:16:13 -0700185 if (ensure_path_mounted(path) != 0) {
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -0700186 LOG(ERROR) << "Can't mount " << path;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800187 return NULL;
188 }
189
190 // When writing, try to create the containing directory, if necessary.
191 // Use generous permissions, the system (init.rc) will reset them.
Stephen Smalley779701d2012-02-09 14:13:23 -0500192 if (strchr("wa", mode[0])) dirCreateHierarchy(path, 0777, NULL, 1, sehandle);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800193
194 FILE *fp = fopen(path, mode);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800195 return fp;
196}
197
Tao Bao04ca4262015-09-10 15:32:24 -0700198// close a file, log an error if the error indicator is set
199static void check_and_fclose(FILE *fp, const char *name) {
200 fflush(fp);
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -0700201 if (ferror(fp)) {
202 PLOG(ERROR) << "Error in " << name;
203 }
Tao Bao04ca4262015-09-10 15:32:24 -0700204 fclose(fp);
205}
206
Elliott Hughesf14af802015-02-10 14:46:14 -0800207bool is_ro_debuggable() {
Elliott Hughescb220402016-09-23 15:30:55 -0700208 return android::base::GetBoolProperty("ro.debuggable", false);
Elliott Hughesf14af802015-02-10 14:46:14 -0800209}
210
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700211static void redirect_stdio(const char* filename) {
Tao Bao04ca4262015-09-10 15:32:24 -0700212 int pipefd[2];
213 if (pipe(pipefd) == -1) {
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -0700214 PLOG(ERROR) << "pipe failed";
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700215
Tao Bao04ca4262015-09-10 15:32:24 -0700216 // Fall back to traditional logging mode without timestamps.
217 // If these fail, there's not really anywhere to complain...
218 freopen(filename, "a", stdout); setbuf(stdout, NULL);
219 freopen(filename, "a", stderr); setbuf(stderr, NULL);
220
221 return;
222 }
223
224 pid_t pid = fork();
225 if (pid == -1) {
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -0700226 PLOG(ERROR) << "fork failed";
Tao Bao04ca4262015-09-10 15:32:24 -0700227
228 // Fall back to traditional logging mode without timestamps.
229 // If these fail, there's not really anywhere to complain...
230 freopen(filename, "a", stdout); setbuf(stdout, NULL);
231 freopen(filename, "a", stderr); setbuf(stderr, NULL);
232
233 return;
234 }
235
236 if (pid == 0) {
237 /// Close the unused write end.
238 close(pipefd[1]);
239
240 auto start = std::chrono::steady_clock::now();
241
242 // Child logger to actually write to the log file.
243 FILE* log_fp = fopen(filename, "a");
244 if (log_fp == nullptr) {
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -0700245 PLOG(ERROR) << "fopen \"" << filename << "\" failed";
Tao Bao04ca4262015-09-10 15:32:24 -0700246 close(pipefd[0]);
247 _exit(1);
248 }
249
250 FILE* pipe_fp = fdopen(pipefd[0], "r");
251 if (pipe_fp == nullptr) {
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -0700252 PLOG(ERROR) << "fdopen failed";
Tao Bao04ca4262015-09-10 15:32:24 -0700253 check_and_fclose(log_fp, filename);
254 close(pipefd[0]);
255 _exit(1);
256 }
257
258 char* line = nullptr;
259 size_t len = 0;
260 while (getline(&line, &len, pipe_fp) != -1) {
261 auto now = std::chrono::steady_clock::now();
262 double duration = std::chrono::duration_cast<std::chrono::duration<double>>(
263 now - start).count();
264 if (line[0] == '\n') {
265 fprintf(log_fp, "[%12.6lf]\n", duration);
266 } else {
267 fprintf(log_fp, "[%12.6lf] %s", duration, line);
268 }
269 fflush(log_fp);
270 }
271
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -0700272 PLOG(ERROR) << "getline failed";
Tao Bao04ca4262015-09-10 15:32:24 -0700273
274 free(line);
275 check_and_fclose(log_fp, filename);
276 close(pipefd[0]);
277 _exit(1);
278 } else {
279 // Redirect stdout/stderr to the logger process.
280 // Close the unused read end.
281 close(pipefd[0]);
282
283 setbuf(stdout, nullptr);
284 setbuf(stderr, nullptr);
285
286 if (dup2(pipefd[1], STDOUT_FILENO) == -1) {
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -0700287 PLOG(ERROR) << "dup2 stdout failed";
Tao Bao04ca4262015-09-10 15:32:24 -0700288 }
289 if (dup2(pipefd[1], STDERR_FILENO) == -1) {
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -0700290 PLOG(ERROR) << "dup2 stderr failed";
Tao Bao04ca4262015-09-10 15:32:24 -0700291 }
292
293 close(pipefd[1]);
294 }
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800295}
296
297// command line args come from, in decreasing precedence:
298// - the actual command line
299// - the bootloader control block (one per line, after "recovery")
300// - the contents of COMMAND_FILE (one per line)
301static void
302get_args(int *argc, char ***argv) {
303 struct bootloader_message boot;
304 memset(&boot, 0, sizeof(boot));
305 get_bootloader_message(&boot); // this may fail, leaving a zeroed structure
Doug Zongkerc87bab12013-11-25 13:53:25 -0800306 stage = strndup(boot.stage, sizeof(boot.stage));
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800307
Tianjie Xu7aa88742016-09-28 11:42:17 -0700308 if (boot.command[0] != 0) {
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -0700309 std::string boot_command = std::string(boot.command, sizeof(boot.command));
310 LOG(INFO) << "Boot command: " << boot_command;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800311 }
312
Tianjie Xu7aa88742016-09-28 11:42:17 -0700313 if (boot.status[0] != 0) {
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -0700314 std::string boot_status = std::string(boot.status, sizeof(boot.status));
315 LOG(INFO) << "Boot status: " << boot_status;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800316 }
317
318 // --- if arguments weren't supplied, look in the bootloader control block
319 if (*argc <= 1) {
320 boot.recovery[sizeof(boot.recovery) - 1] = '\0'; // Ensure termination
321 const char *arg = strtok(boot.recovery, "\n");
322 if (arg != NULL && !strcmp(arg, "recovery")) {
323 *argv = (char **) malloc(sizeof(char *) * MAX_ARGS);
324 (*argv)[0] = strdup(arg);
325 for (*argc = 1; *argc < MAX_ARGS; ++*argc) {
326 if ((arg = strtok(NULL, "\n")) == NULL) break;
327 (*argv)[*argc] = strdup(arg);
328 }
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -0700329 LOG(INFO) << "Got arguments from boot message";
Tianjie Xu7aa88742016-09-28 11:42:17 -0700330 } else if (boot.recovery[0] != 0) {
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -0700331 std::string boot_recovery = std::string(boot.recovery, 20);
332 LOG(ERROR) << "Bad boot message\n" << "\"" <<boot_recovery << "\"";
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800333 }
334 }
335
Tao Bao26112e52016-02-25 12:29:40 -0800336 // --- if that doesn't work, try the command file (if we have /cache).
337 if (*argc <= 1 && has_cache) {
Doug Zongkerd4208f92010-09-20 12:16:13 -0700338 FILE *fp = fopen_path(COMMAND_FILE, "r");
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800339 if (fp != NULL) {
Jin Feng93ffa752013-06-04 17:46:24 +0800340 char *token;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800341 char *argv0 = (*argv)[0];
342 *argv = (char **) malloc(sizeof(char *) * MAX_ARGS);
343 (*argv)[0] = argv0; // use the same program name
344
345 char buf[MAX_ARG_LENGTH];
346 for (*argc = 1; *argc < MAX_ARGS; ++*argc) {
347 if (!fgets(buf, sizeof(buf), fp)) break;
Jin Feng93ffa752013-06-04 17:46:24 +0800348 token = strtok(buf, "\r\n");
349 if (token != NULL) {
350 (*argv)[*argc] = strdup(token); // Strip newline.
351 } else {
352 --*argc;
353 }
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800354 }
355
356 check_and_fclose(fp, COMMAND_FILE);
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -0700357 LOG(INFO) << "Got arguments from " << COMMAND_FILE;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800358 }
359 }
360
361 // --> write the arguments we have back into the bootloader control block
362 // always boot into recovery after this (until finish_recovery() is called)
363 strlcpy(boot.command, "boot-recovery", sizeof(boot.command));
364 strlcpy(boot.recovery, "recovery\n", sizeof(boot.recovery));
365 int i;
366 for (i = 1; i < *argc; ++i) {
367 strlcat(boot.recovery, (*argv)[i], sizeof(boot.recovery));
368 strlcat(boot.recovery, "\n", sizeof(boot.recovery));
369 }
370 set_bootloader_message(&boot);
371}
372
Doug Zongker34c98df2009-08-18 12:05:45 -0700373static void
Oscar Montemayor05231562009-11-30 08:40:57 -0800374set_sdcard_update_bootloader_message() {
Doug Zongker34c98df2009-08-18 12:05:45 -0700375 struct bootloader_message boot;
376 memset(&boot, 0, sizeof(boot));
377 strlcpy(boot.command, "boot-recovery", sizeof(boot.command));
378 strlcpy(boot.recovery, "recovery\n", sizeof(boot.recovery));
379 set_bootloader_message(&boot);
380}
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800381
Tao Baobef39712015-05-04 18:50:27 -0700382// Read from kernel log into buffer and write out to file.
383static void save_kernel_log(const char* destination) {
384 int klog_buf_len = klogctl(KLOG_SIZE_BUFFER, 0, 0);
Patrick Tjincd055ee2014-12-09 11:26:40 -0800385 if (klog_buf_len <= 0) {
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -0700386 PLOG(ERROR) << "Error getting klog size";
Patrick Tjincd055ee2014-12-09 11:26:40 -0800387 return;
388 }
389
Tao Baobef39712015-05-04 18:50:27 -0700390 std::string buffer(klog_buf_len, 0);
391 int n = klogctl(KLOG_READ_ALL, &buffer[0], klog_buf_len);
392 if (n == -1) {
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -0700393 PLOG(ERROR) << "Error in reading klog";
Patrick Tjincd055ee2014-12-09 11:26:40 -0800394 return;
395 }
Tao Baobef39712015-05-04 18:50:27 -0700396 buffer.resize(n);
397 android::base::WriteStringToFile(buffer, destination);
Patrick Tjincd055ee2014-12-09 11:26:40 -0800398}
399
Mark Salyzyna4f701a2016-03-09 14:58:16 -0800400// write content to the current pmsg session.
401static ssize_t __pmsg_write(const char *filename, const char *buf, size_t len) {
402 return __android_log_pmsg_file_write(LOG_ID_SYSTEM, ANDROID_LOG_INFO,
403 filename, buf, len);
404}
405
406static void copy_log_file_to_pmsg(const char* source, const char* destination) {
407 std::string content;
408 android::base::ReadFileToString(source, &content);
409 __pmsg_write(destination, content.c_str(), content.length());
410}
411
Tao Baof0124322015-04-11 02:04:11 +0000412// How much of the temp log we have copied to the copy in cache.
Chih-Hung Hsieh54a27472016-04-18 11:30:55 -0700413static off_t tmplog_offset = 0;
Tao Baof0124322015-04-11 02:04:11 +0000414
Tao Baobef39712015-05-04 18:50:27 -0700415static void copy_log_file(const char* source, const char* destination, bool append) {
416 FILE* dest_fp = fopen_path(destination, append ? "a" : "w");
417 if (dest_fp == nullptr) {
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -0700418 PLOG(ERROR) << "Can't open " << destination;
Doug Zongker2c3539e2010-09-29 13:21:30 -0700419 } else {
Tao Baobef39712015-05-04 18:50:27 -0700420 FILE* source_fp = fopen(source, "r");
421 if (source_fp != nullptr) {
Tao Baof0124322015-04-11 02:04:11 +0000422 if (append) {
Chih-Hung Hsieh54a27472016-04-18 11:30:55 -0700423 fseeko(source_fp, tmplog_offset, SEEK_SET); // Since last write
Doug Zongker2c3539e2010-09-29 13:21:30 -0700424 }
425 char buf[4096];
Tao Baobef39712015-05-04 18:50:27 -0700426 size_t bytes;
427 while ((bytes = fread(buf, 1, sizeof(buf), source_fp)) != 0) {
428 fwrite(buf, 1, bytes, dest_fp);
Doug Zongker2c3539e2010-09-29 13:21:30 -0700429 }
Tao Baobef39712015-05-04 18:50:27 -0700430 if (append) {
Chih-Hung Hsieh54a27472016-04-18 11:30:55 -0700431 tmplog_offset = ftello(source_fp);
Tao Baobef39712015-05-04 18:50:27 -0700432 }
433 check_and_fclose(source_fp, source);
Doug Zongker2c3539e2010-09-29 13:21:30 -0700434 }
Tao Baobef39712015-05-04 18:50:27 -0700435 check_and_fclose(dest_fp, destination);
Doug Zongker2c3539e2010-09-29 13:21:30 -0700436 }
437}
438
Tao Baobef39712015-05-04 18:50:27 -0700439// Rename last_log -> last_log.1 -> last_log.2 -> ... -> last_log.$max.
440// Similarly rename last_kmsg -> last_kmsg.1 -> ... -> last_kmsg.$max.
441// Overwrite any existing last_log.$max and last_kmsg.$max.
442static void rotate_logs(int max) {
Tao Bao682c34b2015-04-07 17:16:35 -0700443 // Logs should only be rotated once.
444 static bool rotated = false;
445 if (rotated) {
446 return;
447 }
448 rotated = true;
449 ensure_path_mounted(LAST_LOG_FILE);
Tao Baobef39712015-05-04 18:50:27 -0700450 ensure_path_mounted(LAST_KMSG_FILE);
Tao Bao682c34b2015-04-07 17:16:35 -0700451
Tao Bao682c34b2015-04-07 17:16:35 -0700452 for (int i = max-1; i >= 0; --i) {
Tao Bao80e46e02015-06-03 10:49:29 -0700453 std::string old_log = android::base::StringPrintf("%s", LAST_LOG_FILE);
454 if (i > 0) {
455 old_log += "." + std::to_string(i);
456 }
Tao Baobef39712015-05-04 18:50:27 -0700457 std::string new_log = android::base::StringPrintf("%s.%d", LAST_LOG_FILE, i+1);
458 // Ignore errors if old_log doesn't exist.
459 rename(old_log.c_str(), new_log.c_str());
460
Tao Bao80e46e02015-06-03 10:49:29 -0700461 std::string old_kmsg = android::base::StringPrintf("%s", LAST_KMSG_FILE);
462 if (i > 0) {
463 old_kmsg += "." + std::to_string(i);
464 }
Tao Baobef39712015-05-04 18:50:27 -0700465 std::string new_kmsg = android::base::StringPrintf("%s.%d", LAST_KMSG_FILE, i+1);
466 rename(old_kmsg.c_str(), new_kmsg.c_str());
Doug Zongkerda1ebae2013-05-16 11:23:48 -0700467 }
468}
Doug Zongker2c3539e2010-09-29 13:21:30 -0700469
Tao Bao682c34b2015-04-07 17:16:35 -0700470static void copy_logs() {
471 // We only rotate and record the log of the current session if there are
472 // actual attempts to modify the flash, such as wipes, installs from BCB
473 // or menu selections. This is to avoid unnecessary rotation (and
474 // possible deletion) of log files, if it does not do anything loggable.
475 if (!modified_flash) {
476 return;
477 }
478
Mark Salyzyna4f701a2016-03-09 14:58:16 -0800479 // Always write to pmsg, this allows the OTA logs to be caught in logcat -L
480 copy_log_file_to_pmsg(TEMPORARY_LOG_FILE, LAST_LOG_FILE);
481 copy_log_file_to_pmsg(TEMPORARY_INSTALL_FILE, LAST_INSTALL_FILE);
482
483 // We can do nothing for now if there's no /cache partition.
484 if (!has_cache) {
485 return;
486 }
487
Tao Baobef39712015-05-04 18:50:27 -0700488 rotate_logs(KEEP_LOG_COUNT);
Tao Bao682c34b2015-04-07 17:16:35 -0700489
Doug Zongkerf24fd7e2013-07-02 11:43:25 -0700490 // Copy logs to cache so the system can find out what happened.
Tao Baof0124322015-04-11 02:04:11 +0000491 copy_log_file(TEMPORARY_LOG_FILE, LOG_FILE, true);
492 copy_log_file(TEMPORARY_LOG_FILE, LAST_LOG_FILE, false);
493 copy_log_file(TEMPORARY_INSTALL_FILE, LAST_INSTALL_FILE, false);
494 save_kernel_log(LAST_KMSG_FILE);
Doug Zongkerf24fd7e2013-07-02 11:43:25 -0700495 chmod(LOG_FILE, 0600);
496 chown(LOG_FILE, 1000, 1000); // system user
Tao Baof0124322015-04-11 02:04:11 +0000497 chmod(LAST_KMSG_FILE, 0600);
498 chown(LAST_KMSG_FILE, 1000, 1000); // system user
Doug Zongkerf24fd7e2013-07-02 11:43:25 -0700499 chmod(LAST_LOG_FILE, 0640);
500 chmod(LAST_INSTALL_FILE, 0644);
501 sync();
502}
503
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800504// clear the recovery command and prepare to boot a (hopefully working) system,
Tianjie Xuc14d95d2016-03-24 11:50:34 -0700505// copy our log file to cache as well (for the system to read). This function is
506// idempotent: call it as many times as you like.
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800507static void
Tianjie Xuc14d95d2016-03-24 11:50:34 -0700508finish_recovery() {
Doug Zongker4f33e552012-08-23 13:16:12 -0700509 // Save the locale to cache, so if recovery is next started up
510 // without a --locale argument (eg, directly from the bootloader)
511 // it will use the last-known locale.
Mark Salyzyna4f701a2016-03-09 14:58:16 -0800512 if (locale != NULL) {
513 size_t len = strlen(locale);
514 __pmsg_write(LOCALE_FILE, locale, len);
515 if (has_cache) {
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -0700516 LOG(INFO) << "Saving locale \"" << locale << "\"";
Mark Salyzyna4f701a2016-03-09 14:58:16 -0800517 FILE* fp = fopen_path(LOCALE_FILE, "w");
Johan Harvyl85691422016-08-05 15:42:59 +0200518 if (fp != NULL) {
519 fwrite(locale, 1, len, fp);
520 fflush(fp);
521 fsync(fileno(fp));
522 check_and_fclose(fp, LOCALE_FILE);
523 }
Mark Salyzyna4f701a2016-03-09 14:58:16 -0800524 }
Doug Zongker4f33e552012-08-23 13:16:12 -0700525 }
526
Doug Zongkerf24fd7e2013-07-02 11:43:25 -0700527 copy_logs();
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800528
Doug Zongkere5d5ac72012-04-12 11:01:22 -0700529 // Reset to normal system boot so recovery won't cycle indefinitely.
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800530 struct bootloader_message boot;
531 memset(&boot, 0, sizeof(boot));
532 set_bootloader_message(&boot);
533
534 // Remove the command file, so recovery won't repeat indefinitely.
Tao Bao26112e52016-02-25 12:29:40 -0800535 if (has_cache) {
536 if (ensure_path_mounted(COMMAND_FILE) != 0 || (unlink(COMMAND_FILE) && errno != ENOENT)) {
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -0700537 LOG(WARNING) << "Can't unlink " << COMMAND_FILE;
Tao Bao26112e52016-02-25 12:29:40 -0800538 }
539 ensure_path_unmounted(CACHE_ROOT);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800540 }
541
542 sync(); // For good measure.
543}
544
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700545typedef struct _saved_log_file {
546 char* name;
547 struct stat st;
548 unsigned char* data;
549 struct _saved_log_file* next;
550} saved_log_file;
551
Elliott Hughes945548e2015-06-05 17:59:56 -0700552static bool erase_volume(const char* volume) {
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700553 bool is_cache = (strcmp(volume, CACHE_ROOT) == 0);
Paul Lawrenced0db3372015-11-05 13:38:40 -0800554 bool is_data = (strcmp(volume, DATA_ROOT) == 0);
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700555
Doug Zongker02ec6b82012-08-22 17:26:40 -0700556 ui->SetBackground(RecoveryUI::ERASING);
Doug Zongker211aebc2011-10-28 15:13:10 -0700557 ui->SetProgressType(RecoveryUI::INDETERMINATE);
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700558
559 saved_log_file* head = NULL;
560
561 if (is_cache) {
Tao Baobef39712015-05-04 18:50:27 -0700562 // If we're reformatting /cache, we load any past logs
563 // (i.e. "/cache/recovery/last_*") and the current log
564 // ("/cache/recovery/log") into memory, so we can restore them after
565 // the reformat.
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700566
567 ensure_path_mounted(volume);
568
569 DIR* d;
570 struct dirent* de;
571 d = opendir(CACHE_LOG_DIR);
572 if (d) {
573 char path[PATH_MAX];
574 strcpy(path, CACHE_LOG_DIR);
575 strcat(path, "/");
576 int path_len = strlen(path);
577 while ((de = readdir(d)) != NULL) {
Tao Baobef39712015-05-04 18:50:27 -0700578 if (strncmp(de->d_name, "last_", 5) == 0 || strcmp(de->d_name, "log") == 0) {
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700579 saved_log_file* p = (saved_log_file*) malloc(sizeof(saved_log_file));
580 strcpy(path+path_len, de->d_name);
581 p->name = strdup(path);
582 if (stat(path, &(p->st)) == 0) {
583 // truncate files to 512kb
584 if (p->st.st_size > (1 << 19)) {
585 p->st.st_size = 1 << 19;
586 }
587 p->data = (unsigned char*) malloc(p->st.st_size);
588 FILE* f = fopen(path, "rb");
589 fread(p->data, 1, p->st.st_size, f);
590 fclose(f);
591 p->next = head;
592 head = p;
593 } else {
594 free(p);
595 }
596 }
597 }
598 closedir(d);
599 } else {
600 if (errno != ENOENT) {
601 printf("opendir failed: %s\n", strerror(errno));
602 }
603 }
604 }
605
Doug Zongker211aebc2011-10-28 15:13:10 -0700606 ui->Print("Formatting %s...\n", volume);
Doug Zongker2c3539e2010-09-29 13:21:30 -0700607
Doug Zongkerd0181b82011-10-19 10:51:12 -0700608 ensure_path_unmounted(volume);
Paul Lawrenced0db3372015-11-05 13:38:40 -0800609
610 int result;
611
612 if (is_data && reason && strcmp(reason, "convert_fbe") == 0) {
613 // Create convert_fbe breadcrumb file to signal to init
614 // to convert to file based encryption, not full disk encryption
Paul Lawrence661f8a62016-02-25 12:42:19 -0800615 if (mkdir(CONVERT_FBE_DIR, 0700) != 0) {
616 ui->Print("Failed to make convert_fbe dir %s\n", strerror(errno));
617 return true;
618 }
Paul Lawrenced0db3372015-11-05 13:38:40 -0800619 FILE* f = fopen(CONVERT_FBE_FILE, "wb");
620 if (!f) {
Paul Lawrence661f8a62016-02-25 12:42:19 -0800621 ui->Print("Failed to convert to file encryption %s\n", strerror(errno));
Paul Lawrenced0db3372015-11-05 13:38:40 -0800622 return true;
623 }
624 fclose(f);
625 result = format_volume(volume, CONVERT_FBE_DIR);
626 remove(CONVERT_FBE_FILE);
627 rmdir(CONVERT_FBE_DIR);
628 } else {
629 result = format_volume(volume);
630 }
Doug Zongkerd0181b82011-10-19 10:51:12 -0700631
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700632 if (is_cache) {
633 while (head) {
634 FILE* f = fopen_path(head->name, "wb");
635 if (f) {
636 fwrite(head->data, 1, head->st.st_size, f);
637 fclose(f);
638 chmod(head->name, head->st.st_mode);
639 chown(head->name, head->st.st_uid, head->st.st_gid);
640 }
641 free(head->name);
642 free(head->data);
643 saved_log_file* temp = head->next;
644 free(head);
645 head = temp;
646 }
647
Tao Baof0124322015-04-11 02:04:11 +0000648 // Any part of the log we'd copied to cache is now gone.
649 // Reset the pointer so we copy from the beginning of the temp
650 // log.
651 tmplog_offset = 0;
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700652 copy_logs();
Doug Zongker2c3539e2010-09-29 13:21:30 -0700653 }
654
Elliott Hughes945548e2015-06-05 17:59:56 -0700655 return (result == 0);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800656}
657
Doug Zongkerf93d8162009-09-22 15:16:02 -0700658static int
Doug Zongker28ce47c2011-10-28 10:33:05 -0700659get_menu_selection(const char* const * headers, const char* const * items,
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700660 int menu_only, int initial_selection, Device* device) {
Doug Zongkerf93d8162009-09-22 15:16:02 -0700661 // throw away keys pressed previously, so user doesn't
662 // accidentally trigger menu items.
Doug Zongker211aebc2011-10-28 15:13:10 -0700663 ui->FlushKeys();
Doug Zongkerf93d8162009-09-22 15:16:02 -0700664
Doug Zongker211aebc2011-10-28 15:13:10 -0700665 ui->StartMenu(headers, items, initial_selection);
Doug Zongker8674a722010-09-15 11:08:23 -0700666 int selected = initial_selection;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800667 int chosen_item = -1;
668
Doug Zongkerf93d8162009-09-22 15:16:02 -0700669 while (chosen_item < 0) {
Doug Zongker211aebc2011-10-28 15:13:10 -0700670 int key = ui->WaitKey();
671 int visible = ui->IsTextVisible();
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800672
Doug Zongker5cae4452011-01-25 13:15:30 -0800673 if (key == -1) { // ui_wait_key() timed out
Doug Zongker211aebc2011-10-28 15:13:10 -0700674 if (ui->WasTextEverVisible()) {
Doug Zongker5cae4452011-01-25 13:15:30 -0800675 continue;
676 } else {
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -0700677 LOG(INFO) << "timed out waiting for key input; rebooting.";
Doug Zongker211aebc2011-10-28 15:13:10 -0700678 ui->EndMenu();
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700679 return 0; // XXX fixme
Doug Zongker5cae4452011-01-25 13:15:30 -0800680 }
681 }
682
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700683 int action = device->HandleMenuKey(key, visible);
Doug Zongkerddd6a282009-06-09 12:22:33 -0700684
685 if (action < 0) {
686 switch (action) {
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700687 case Device::kHighlightUp:
Elliott Hughes642aaa72015-04-10 12:47:46 -0700688 selected = ui->SelectMenu(--selected);
Doug Zongkerddd6a282009-06-09 12:22:33 -0700689 break;
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700690 case Device::kHighlightDown:
Elliott Hughes642aaa72015-04-10 12:47:46 -0700691 selected = ui->SelectMenu(++selected);
Doug Zongkerddd6a282009-06-09 12:22:33 -0700692 break;
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700693 case Device::kInvokeItem:
Doug Zongkerddd6a282009-06-09 12:22:33 -0700694 chosen_item = selected;
695 break;
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700696 case Device::kNoAction:
Doug Zongkerddd6a282009-06-09 12:22:33 -0700697 break;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800698 }
Doug Zongkerf93d8162009-09-22 15:16:02 -0700699 } else if (!menu_only) {
Doug Zongkerddd6a282009-06-09 12:22:33 -0700700 chosen_item = action;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800701 }
Doug Zongkerf93d8162009-09-22 15:16:02 -0700702 }
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800703
Doug Zongker211aebc2011-10-28 15:13:10 -0700704 ui->EndMenu();
Doug Zongkerf93d8162009-09-22 15:16:02 -0700705 return chosen_item;
706}
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800707
Doug Zongker8674a722010-09-15 11:08:23 -0700708static int compare_string(const void* a, const void* b) {
709 return strcmp(*(const char**)a, *(const char**)b);
710}
711
Doug Zongker93950222014-07-08 14:10:23 -0700712// Returns a malloc'd path, or NULL.
Elliott Hughes30694c92015-03-25 15:16:51 -0700713static char* browse_directory(const char* path, Device* device) {
Michael Ward9d2629c2011-06-23 22:14:24 -0700714 ensure_path_mounted(path);
Doug Zongkerc18eeb82010-09-21 16:49:26 -0700715
Elliott Hughes30694c92015-03-25 15:16:51 -0700716 DIR* d = opendir(path);
Doug Zongker8674a722010-09-15 11:08:23 -0700717 if (d == NULL) {
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -0700718 PLOG(ERROR) << "error opening " << path;
Doug Zongker93950222014-07-08 14:10:23 -0700719 return NULL;
Doug Zongker8674a722010-09-15 11:08:23 -0700720 }
721
Doug Zongker8674a722010-09-15 11:08:23 -0700722 int d_size = 0;
723 int d_alloc = 10;
Doug Zongker28ce47c2011-10-28 10:33:05 -0700724 char** dirs = (char**)malloc(d_alloc * sizeof(char*));
Doug Zongker8674a722010-09-15 11:08:23 -0700725 int z_size = 1;
726 int z_alloc = 10;
Doug Zongker28ce47c2011-10-28 10:33:05 -0700727 char** zips = (char**)malloc(z_alloc * sizeof(char*));
Doug Zongker8674a722010-09-15 11:08:23 -0700728 zips[0] = strdup("../");
729
Elliott Hughes30694c92015-03-25 15:16:51 -0700730 struct dirent* de;
Doug Zongker8674a722010-09-15 11:08:23 -0700731 while ((de = readdir(d)) != NULL) {
732 int name_len = strlen(de->d_name);
733
734 if (de->d_type == DT_DIR) {
735 // skip "." and ".." entries
736 if (name_len == 1 && de->d_name[0] == '.') continue;
737 if (name_len == 2 && de->d_name[0] == '.' &&
738 de->d_name[1] == '.') continue;
739
740 if (d_size >= d_alloc) {
741 d_alloc *= 2;
Doug Zongker28ce47c2011-10-28 10:33:05 -0700742 dirs = (char**)realloc(dirs, d_alloc * sizeof(char*));
Doug Zongker8674a722010-09-15 11:08:23 -0700743 }
Doug Zongker28ce47c2011-10-28 10:33:05 -0700744 dirs[d_size] = (char*)malloc(name_len + 2);
Doug Zongker8674a722010-09-15 11:08:23 -0700745 strcpy(dirs[d_size], de->d_name);
746 dirs[d_size][name_len] = '/';
747 dirs[d_size][name_len+1] = '\0';
748 ++d_size;
749 } else if (de->d_type == DT_REG &&
750 name_len >= 4 &&
751 strncasecmp(de->d_name + (name_len-4), ".zip", 4) == 0) {
752 if (z_size >= z_alloc) {
753 z_alloc *= 2;
Doug Zongker28ce47c2011-10-28 10:33:05 -0700754 zips = (char**)realloc(zips, z_alloc * sizeof(char*));
Doug Zongker8674a722010-09-15 11:08:23 -0700755 }
756 zips[z_size++] = strdup(de->d_name);
757 }
758 }
759 closedir(d);
760
761 qsort(dirs, d_size, sizeof(char*), compare_string);
762 qsort(zips, z_size, sizeof(char*), compare_string);
763
764 // append dirs to the zips list
765 if (d_size + z_size + 1 > z_alloc) {
766 z_alloc = d_size + z_size + 1;
Doug Zongker28ce47c2011-10-28 10:33:05 -0700767 zips = (char**)realloc(zips, z_alloc * sizeof(char*));
Doug Zongker8674a722010-09-15 11:08:23 -0700768 }
769 memcpy(zips + z_size, dirs, d_size * sizeof(char*));
770 free(dirs);
771 z_size += d_size;
772 zips[z_size] = NULL;
773
Elliott Hughes8fd86d72015-04-13 14:36:02 -0700774 const char* headers[] = { "Choose a package to install:", path, NULL };
Elliott Hughes30694c92015-03-25 15:16:51 -0700775
Doug Zongker93950222014-07-08 14:10:23 -0700776 char* result;
Doug Zongker8674a722010-09-15 11:08:23 -0700777 int chosen_item = 0;
Doug Zongker93950222014-07-08 14:10:23 -0700778 while (true) {
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700779 chosen_item = get_menu_selection(headers, zips, 1, chosen_item, device);
Doug Zongker8674a722010-09-15 11:08:23 -0700780
781 char* item = zips[chosen_item];
782 int item_len = strlen(item);
783 if (chosen_item == 0) { // item 0 is always "../"
Michael Ward9d2629c2011-06-23 22:14:24 -0700784 // go up but continue browsing (if the caller is update_directory)
Doug Zongker93950222014-07-08 14:10:23 -0700785 result = NULL;
Doug Zongker8674a722010-09-15 11:08:23 -0700786 break;
787 }
Doug Zongker93950222014-07-08 14:10:23 -0700788
789 char new_path[PATH_MAX];
790 strlcpy(new_path, path, PATH_MAX);
791 strlcat(new_path, "/", PATH_MAX);
792 strlcat(new_path, item, PATH_MAX);
793
794 if (item[item_len-1] == '/') {
795 // recurse down into a subdirectory
796 new_path[strlen(new_path)-1] = '\0'; // truncate the trailing '/'
797 result = browse_directory(new_path, device);
798 if (result) break;
799 } else {
800 // selected a zip file: return the malloc'd path to the caller.
801 result = strdup(new_path);
802 break;
803 }
804 }
Doug Zongker8674a722010-09-15 11:08:23 -0700805
Elliott Hughes30694c92015-03-25 15:16:51 -0700806 for (int i = 0; i < z_size; ++i) free(zips[i]);
Doug Zongker8674a722010-09-15 11:08:23 -0700807 free(zips);
Doug Zongker8674a722010-09-15 11:08:23 -0700808
809 return result;
810}
811
Elliott Hughes30694c92015-03-25 15:16:51 -0700812static bool yes_no(Device* device, const char* question1, const char* question2) {
Elliott Hughes8fd86d72015-04-13 14:36:02 -0700813 const char* headers[] = { question1, question2, NULL };
Elliott Hughes30694c92015-03-25 15:16:51 -0700814 const char* items[] = { " No", " Yes", NULL };
Doug Zongkerddd6a282009-06-09 12:22:33 -0700815
Elliott Hughes30694c92015-03-25 15:16:51 -0700816 int chosen_item = get_menu_selection(headers, items, 1, 0, device);
817 return (chosen_item == 1);
818}
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800819
Tao Baoe39a9bc2015-03-31 12:19:05 -0700820// Return true on success.
821static bool wipe_data(int should_confirm, Device* device) {
822 if (should_confirm && !yes_no(device, "Wipe all user data?", " THIS CAN NOT BE UNDONE!")) {
823 return false;
Doug Zongkerf93d8162009-09-22 15:16:02 -0700824 }
Doug Zongker1066d2c2009-04-01 13:57:40 -0700825
Tao Bao682c34b2015-04-07 17:16:35 -0700826 modified_flash = true;
827
Doug Zongker211aebc2011-10-28 15:13:10 -0700828 ui->Print("\n-- Wiping data...\n");
Elliott Hughes945548e2015-06-05 17:59:56 -0700829 bool success =
830 device->PreWipeData() &&
831 erase_volume("/data") &&
Tao Bao26112e52016-02-25 12:29:40 -0800832 (has_cache ? erase_volume("/cache") : true) &&
Elliott Hughes945548e2015-06-05 17:59:56 -0700833 device->PostWipeData();
834 ui->Print("Data wipe %s.\n", success ? "complete" : "failed");
835 return success;
Doug Zongkerf93d8162009-09-22 15:16:02 -0700836}
837
Tao Baoe39a9bc2015-03-31 12:19:05 -0700838// Return true on success.
839static bool wipe_cache(bool should_confirm, Device* device) {
Tao Bao26112e52016-02-25 12:29:40 -0800840 if (!has_cache) {
841 ui->Print("No /cache partition found.\n");
842 return false;
843 }
844
Elliott Hughes30694c92015-03-25 15:16:51 -0700845 if (should_confirm && !yes_no(device, "Wipe cache?", " THIS CAN NOT BE UNDONE!")) {
Tao Baoe39a9bc2015-03-31 12:19:05 -0700846 return false;
Elliott Hughes30694c92015-03-25 15:16:51 -0700847 }
848
Tao Bao682c34b2015-04-07 17:16:35 -0700849 modified_flash = true;
850
Elliott Hughes30694c92015-03-25 15:16:51 -0700851 ui->Print("\n-- Wiping cache...\n");
Elliott Hughes945548e2015-06-05 17:59:56 -0700852 bool success = erase_volume("/cache");
853 ui->Print("Cache wipe %s.\n", success ? "complete" : "failed");
854 return success;
Elliott Hughes30694c92015-03-25 15:16:51 -0700855}
856
Tao Bao862a4c12016-06-02 11:16:50 -0700857// Secure-wipe a given partition. It uses BLKSECDISCARD, if supported.
858// Otherwise, it goes with BLKDISCARD (if device supports BLKDISCARDZEROES) or
859// BLKZEROOUT.
860static bool secure_wipe_partition(const std::string& partition) {
861 android::base::unique_fd fd(TEMP_FAILURE_RETRY(open(partition.c_str(), O_WRONLY)));
862 if (fd == -1) {
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -0700863 PLOG(ERROR) << "failed to open \"" << partition << "\"";
Tao Bao862a4c12016-06-02 11:16:50 -0700864 return false;
865 }
866
867 uint64_t range[2] = {0, 0};
868 if (ioctl(fd, BLKGETSIZE64, &range[1]) == -1 || range[1] == 0) {
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -0700869 PLOG(ERROR) << "failed to get partition size";
Tao Bao862a4c12016-06-02 11:16:50 -0700870 return false;
871 }
872 printf("Secure-wiping \"%s\" from %" PRIu64 " to %" PRIu64 ".\n",
873 partition.c_str(), range[0], range[1]);
874
875 printf("Trying BLKSECDISCARD...\t");
876 if (ioctl(fd, BLKSECDISCARD, &range) == -1) {
877 printf("failed: %s\n", strerror(errno));
878
879 // Use BLKDISCARD if it zeroes out blocks, otherwise use BLKZEROOUT.
880 unsigned int zeroes;
881 if (ioctl(fd, BLKDISCARDZEROES, &zeroes) == 0 && zeroes != 0) {
882 printf("Trying BLKDISCARD...\t");
883 if (ioctl(fd, BLKDISCARD, &range) == -1) {
884 printf("failed: %s\n", strerror(errno));
885 return false;
886 }
887 } else {
888 printf("Trying BLKZEROOUT...\t");
889 if (ioctl(fd, BLKZEROOUT, &range) == -1) {
890 printf("failed: %s\n", strerror(errno));
891 return false;
892 }
893 }
894 }
895
896 printf("done\n");
897 return true;
898}
899
900// Brick the current device, with a secure wipe of all the partitions in
901// RECOVERY_BRICK.
902static bool brick_device() {
903 ui->SetBackground(RecoveryUI::ERASING);
904 ui->SetProgressType(RecoveryUI::INDETERMINATE);
905
906 std::string partition_list;
907 if (!android::base::ReadFileToString(RECOVERY_BRICK, &partition_list)) {
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -0700908 LOG(ERROR) << "failed to read \"" << RECOVERY_BRICK << "\"";
Tao Bao862a4c12016-06-02 11:16:50 -0700909 return false;
910 }
911
912 std::vector<std::string> lines = android::base::Split(partition_list, "\n");
913 for (const std::string& line : lines) {
914 std::string partition = android::base::Trim(line);
915 // Ignore '#' comment or empty lines.
916 if (android::base::StartsWith(partition, "#") || partition.empty()) {
917 continue;
918 }
919
920 // Proceed anyway even if it fails to wipe some partition.
921 secure_wipe_partition(partition);
922 }
923 return true;
924}
925
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700926static void choose_recovery_file(Device* device) {
Elliott Hughesc0491632015-05-06 12:40:05 -0700927 // "Back" + KEEP_LOG_COUNT * 2 + terminating nullptr entry
928 char* entries[1 + KEEP_LOG_COUNT * 2 + 1];
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700929 memset(entries, 0, sizeof(entries));
930
Tao Baobef39712015-05-04 18:50:27 -0700931 unsigned int n = 0;
Patrick Tjincd055ee2014-12-09 11:26:40 -0800932
Tianjie Xua54f75e2016-08-17 12:02:46 -0700933 if (has_cache) {
934 // Add LAST_LOG_FILE + LAST_LOG_FILE.x
935 // Add LAST_KMSG_FILE + LAST_KMSG_FILE.x
936 for (int i = 0; i < KEEP_LOG_COUNT; i++) {
937 char* log_file;
938 int ret;
939 ret = (i == 0) ? asprintf(&log_file, "%s", LAST_LOG_FILE) :
940 asprintf(&log_file, "%s.%d", LAST_LOG_FILE, i);
941 if (ret == -1) {
942 // memory allocation failure - return early. Should never happen.
943 return;
944 }
945 if ((ensure_path_mounted(log_file) != 0) || (access(log_file, R_OK) == -1)) {
946 free(log_file);
947 } else {
948 entries[n++] = log_file;
949 }
Tao Baobef39712015-05-04 18:50:27 -0700950
Tianjie Xua54f75e2016-08-17 12:02:46 -0700951 char* kmsg_file;
952 ret = (i == 0) ? asprintf(&kmsg_file, "%s", LAST_KMSG_FILE) :
953 asprintf(&kmsg_file, "%s.%d", LAST_KMSG_FILE, i);
954 if (ret == -1) {
955 // memory allocation failure - return early. Should never happen.
956 return;
957 }
958 if ((ensure_path_mounted(kmsg_file) != 0) || (access(kmsg_file, R_OK) == -1)) {
959 free(kmsg_file);
960 } else {
961 entries[n++] = kmsg_file;
962 }
Tao Baobef39712015-05-04 18:50:27 -0700963 }
Tianjie Xua54f75e2016-08-17 12:02:46 -0700964 } else {
965 // If cache partition is not found, view /tmp/recovery.log instead.
966 ui->Print("No /cache partition found.\n");
967 if (access(TEMPORARY_LOG_FILE, R_OK) == -1) {
968 return;
969 } else{
970 entries[n++] = strdup(TEMPORARY_LOG_FILE);
Tao Baobef39712015-05-04 18:50:27 -0700971 }
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700972 }
973
Elliott Hughesc0491632015-05-06 12:40:05 -0700974 entries[n++] = strdup("Back");
975
Tao Baobef39712015-05-04 18:50:27 -0700976 const char* headers[] = { "Select file to view", nullptr };
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700977
Elliott Hughes8de52072015-04-08 20:06:50 -0700978 while (true) {
Elliott Hughes30694c92015-03-25 15:16:51 -0700979 int chosen_item = get_menu_selection(headers, entries, 1, 0, device);
Elliott Hughesc0491632015-05-06 12:40:05 -0700980 if (strcmp(entries[chosen_item], "Back") == 0) break;
Elliott Hughes8de52072015-04-08 20:06:50 -0700981
Elliott Hughes8de52072015-04-08 20:06:50 -0700982 ui->ShowFile(entries[chosen_item]);
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700983 }
984
Tao Baobef39712015-05-04 18:50:27 -0700985 for (size_t i = 0; i < (sizeof(entries) / sizeof(*entries)); i++) {
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700986 free(entries[i]);
987 }
988}
989
Elliott Hughes498cda62016-04-14 16:49:04 -0700990static void run_graphics_test(Device* device) {
991 // Switch to graphics screen.
992 ui->ShowText(false);
993
994 ui->SetProgressType(RecoveryUI::INDETERMINATE);
995 ui->SetBackground(RecoveryUI::INSTALLING_UPDATE);
996 sleep(1);
997
998 ui->SetBackground(RecoveryUI::ERROR);
999 sleep(1);
1000
1001 ui->SetBackground(RecoveryUI::NO_COMMAND);
1002 sleep(1);
1003
1004 ui->SetBackground(RecoveryUI::ERASING);
1005 sleep(1);
1006
1007 ui->SetBackground(RecoveryUI::INSTALLING_UPDATE);
1008
1009 ui->SetProgressType(RecoveryUI::DETERMINATE);
1010 ui->ShowProgress(1.0, 10.0);
1011 float fraction = 0.0;
1012 for (size_t i = 0; i < 100; ++i) {
1013 fraction += .01;
1014 ui->SetProgress(fraction);
1015 usleep(100000);
1016 }
1017
1018 ui->ShowText(true);
1019}
1020
Tao Baocdcf28f2016-01-13 15:05:20 -08001021// How long (in seconds) we wait for the fuse-provided package file to
1022// appear, before timing out.
1023#define SDCARD_INSTALL_TIMEOUT 10
1024
Tao Bao145d8612015-03-25 15:51:15 -07001025static int apply_from_sdcard(Device* device, bool* wipe_cache) {
Tao Bao682c34b2015-04-07 17:16:35 -07001026 modified_flash = true;
1027
Christian Poetzsch4ec58a42015-02-19 10:42:39 +00001028 if (ensure_path_mounted(SDCARD_ROOT) != 0) {
1029 ui->Print("\n-- Couldn't mount %s.\n", SDCARD_ROOT);
1030 return INSTALL_ERROR;
1031 }
1032
1033 char* path = browse_directory(SDCARD_ROOT, device);
1034 if (path == NULL) {
Elliott Hughes018ed312015-04-08 16:51:36 -07001035 ui->Print("\n-- No package file selected.\n");
caozhiyuanb4effb92015-06-10 16:46:38 +08001036 ensure_path_unmounted(SDCARD_ROOT);
Christian Poetzsch4ec58a42015-02-19 10:42:39 +00001037 return INSTALL_ERROR;
1038 }
1039
1040 ui->Print("\n-- Install %s ...\n", path);
1041 set_sdcard_update_bootloader_message();
Christian Poetzsch4ec58a42015-02-19 10:42:39 +00001042
Tao Baocdcf28f2016-01-13 15:05:20 -08001043 // We used to use fuse in a thread as opposed to a process. Since accessing
1044 // through fuse involves going from kernel to userspace to kernel, it leads
1045 // to deadlock when a page fault occurs. (Bug: 26313124)
1046 pid_t child;
1047 if ((child = fork()) == 0) {
1048 bool status = start_sdcard_fuse(path);
1049
1050 _exit(status ? EXIT_SUCCESS : EXIT_FAILURE);
1051 }
1052
1053 // FUSE_SIDELOAD_HOST_PATHNAME will start to exist once the fuse in child
1054 // process is ready.
1055 int result = INSTALL_ERROR;
1056 int status;
1057 bool waited = false;
1058 for (int i = 0; i < SDCARD_INSTALL_TIMEOUT; ++i) {
1059 if (waitpid(child, &status, WNOHANG) == -1) {
1060 result = INSTALL_ERROR;
1061 waited = true;
1062 break;
1063 }
1064
1065 struct stat sb;
1066 if (stat(FUSE_SIDELOAD_HOST_PATHNAME, &sb) == -1) {
1067 if (errno == ENOENT && i < SDCARD_INSTALL_TIMEOUT-1) {
1068 sleep(1);
1069 continue;
1070 } else {
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -07001071 LOG(ERROR) << "Timed out waiting for the fuse-provided package.";
Tao Baocdcf28f2016-01-13 15:05:20 -08001072 result = INSTALL_ERROR;
1073 kill(child, SIGKILL);
1074 break;
1075 }
1076 }
1077
1078 result = install_package(FUSE_SIDELOAD_HOST_PATHNAME, wipe_cache,
Tianjie Xu16255832016-04-30 11:49:59 -07001079 TEMPORARY_INSTALL_FILE, false, 0/*retry_count*/);
Tao Baocdcf28f2016-01-13 15:05:20 -08001080 break;
1081 }
Christian Poetzsch4ec58a42015-02-19 10:42:39 +00001082
Tao Baocdcf28f2016-01-13 15:05:20 -08001083 if (!waited) {
1084 // Calling stat() on this magic filename signals the fuse
1085 // filesystem to shut down.
1086 struct stat sb;
1087 stat(FUSE_SIDELOAD_HOST_EXIT_PATHNAME, &sb);
1088
1089 waitpid(child, &status, 0);
1090 }
1091
1092 if (!WIFEXITED(status) || WEXITSTATUS(status) != 0) {
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -07001093 LOG(ERROR) << "Error exit from the fuse process: " << WEXITSTATUS(status);
Tao Baocdcf28f2016-01-13 15:05:20 -08001094 }
1095
Christian Poetzsch4ec58a42015-02-19 10:42:39 +00001096 ensure_path_unmounted(SDCARD_ROOT);
Tao Baocdcf28f2016-01-13 15:05:20 -08001097 return result;
Christian Poetzsch4ec58a42015-02-19 10:42:39 +00001098}
1099
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001100// Return REBOOT, SHUTDOWN, or REBOOT_BOOTLOADER. Returning NO_ACTION
1101// means to take the default, which is to reboot or shutdown depending
1102// on if the --shutdown_after flag was passed to recovery.
1103static Device::BuiltinAction
Doug Zongker6c8553d2012-09-24 10:40:47 -07001104prompt_and_wait(Device* device, int status) {
Doug Zongkerf93d8162009-09-22 15:16:02 -07001105 for (;;) {
Tianjie Xuc14d95d2016-03-24 11:50:34 -07001106 finish_recovery();
Doug Zongker6c8553d2012-09-24 10:40:47 -07001107 switch (status) {
1108 case INSTALL_SUCCESS:
1109 case INSTALL_NONE:
1110 ui->SetBackground(RecoveryUI::NO_COMMAND);
1111 break;
1112
1113 case INSTALL_ERROR:
1114 case INSTALL_CORRUPT:
1115 ui->SetBackground(RecoveryUI::ERROR);
1116 break;
1117 }
Doug Zongker211aebc2011-10-28 15:13:10 -07001118 ui->SetProgressType(RecoveryUI::EMPTY);
Doug Zongkerf93d8162009-09-22 15:16:02 -07001119
Elliott Hughes8fd86d72015-04-13 14:36:02 -07001120 int chosen_item = get_menu_selection(nullptr, device->GetMenuItems(), 0, 0, device);
Doug Zongkerf93d8162009-09-22 15:16:02 -07001121
1122 // device-specific code may take some action here. It may
1123 // return one of the core actions handled in the switch
1124 // statement below.
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001125 Device::BuiltinAction chosen_action = device->InvokeMenuItem(chosen_item);
Doug Zongkerf93d8162009-09-22 15:16:02 -07001126
Elliott Hughes30694c92015-03-25 15:16:51 -07001127 bool should_wipe_cache = false;
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001128 switch (chosen_action) {
1129 case Device::NO_ACTION:
1130 break;
1131
Doug Zongkerdaefc1d2011-10-31 09:34:15 -07001132 case Device::REBOOT:
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001133 case Device::SHUTDOWN:
1134 case Device::REBOOT_BOOTLOADER:
1135 return chosen_action;
Doug Zongkerf93d8162009-09-22 15:16:02 -07001136
Doug Zongkerdaefc1d2011-10-31 09:34:15 -07001137 case Device::WIPE_DATA:
1138 wipe_data(ui->IsTextVisible(), device);
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001139 if (!ui->IsTextVisible()) return Device::NO_ACTION;
Doug Zongkerf93d8162009-09-22 15:16:02 -07001140 break;
1141
Doug Zongkerdaefc1d2011-10-31 09:34:15 -07001142 case Device::WIPE_CACHE:
Elliott Hughes30694c92015-03-25 15:16:51 -07001143 wipe_cache(ui->IsTextVisible(), device);
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001144 if (!ui->IsTextVisible()) return Device::NO_ACTION;
Doug Zongkerf93d8162009-09-22 15:16:02 -07001145 break;
1146
Christian Poetzsch4ec58a42015-02-19 10:42:39 +00001147 case Device::APPLY_ADB_SIDELOAD:
Elliott Hughesec283402015-04-10 10:01:53 -07001148 case Device::APPLY_SDCARD:
Christian Poetzsch4ec58a42015-02-19 10:42:39 +00001149 {
1150 bool adb = (chosen_action == Device::APPLY_ADB_SIDELOAD);
1151 if (adb) {
Elliott Hughes30694c92015-03-25 15:16:51 -07001152 status = apply_from_adb(ui, &should_wipe_cache, TEMPORARY_INSTALL_FILE);
Doug Zongkerd0181b82011-10-19 10:51:12 -07001153 } else {
Elliott Hughes30694c92015-03-25 15:16:51 -07001154 status = apply_from_sdcard(device, &should_wipe_cache);
Doug Zongkerd0181b82011-10-19 10:51:12 -07001155 }
Doug Zongker945fc682014-07-10 10:50:39 -07001156
Elliott Hughes30694c92015-03-25 15:16:51 -07001157 if (status == INSTALL_SUCCESS && should_wipe_cache) {
Tao Baoe39a9bc2015-03-31 12:19:05 -07001158 if (!wipe_cache(false, device)) {
1159 status = INSTALL_ERROR;
1160 }
Christian Poetzsch4ec58a42015-02-19 10:42:39 +00001161 }
1162
Tao Baoc679f932015-03-30 09:43:49 -07001163 if (status != INSTALL_SUCCESS) {
1164 ui->SetBackground(RecoveryUI::ERROR);
1165 ui->Print("Installation aborted.\n");
1166 copy_logs();
1167 } else if (!ui->IsTextVisible()) {
1168 return Device::NO_ACTION; // reboot if logs aren't visible
1169 } else {
1170 ui->Print("\nInstall from %s complete.\n", adb ? "ADB" : "SD card");
Doug Zongker8674a722010-09-15 11:08:23 -07001171 }
Doug Zongkerf93d8162009-09-22 15:16:02 -07001172 }
1173 break;
Doug Zongkerdaefc1d2011-10-31 09:34:15 -07001174
Elliott Hughesec283402015-04-10 10:01:53 -07001175 case Device::VIEW_RECOVERY_LOGS:
1176 choose_recovery_file(device);
Michael Ward9d2629c2011-06-23 22:14:24 -07001177 break;
Doug Zongker9270a202012-01-09 15:16:13 -08001178
Elliott Hughes498cda62016-04-14 16:49:04 -07001179 case Device::RUN_GRAPHICS_TEST:
1180 run_graphics_test(device);
1181 break;
1182
Elliott Hughesec283402015-04-10 10:01:53 -07001183 case Device::MOUNT_SYSTEM:
Tao Baoabb8f772015-07-30 14:43:27 -07001184 // For a system image built with the root directory (i.e.
1185 // system_root_image == "true"), we mount it to /system_root, and symlink /system
1186 // to /system_root/system to make adb shell work (the symlink is created through
1187 // the build system).
1188 // Bug: 22855115
Elliott Hughescb220402016-09-23 15:30:55 -07001189 if (android::base::GetBoolProperty("ro.build.system_root_image", false)) {
Tao Baoabb8f772015-07-30 14:43:27 -07001190 if (ensure_path_mounted_at("/", "/system_root") != -1) {
1191 ui->Print("Mounted /system.\n");
1192 }
1193 } else {
1194 if (ensure_path_mounted("/system") != -1) {
1195 ui->Print("Mounted /system.\n");
1196 }
Elliott Hughesec283402015-04-10 10:01:53 -07001197 }
Tao Baoabb8f772015-07-30 14:43:27 -07001198
Nick Kralevicha9ad0322014-10-22 18:38:48 -07001199 break;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001200 }
1201 }
1202}
1203
1204static void
Oscar Montemayor05231562009-11-30 08:40:57 -08001205print_property(const char *key, const char *name, void *cookie) {
Doug Zongker56c51052010-07-01 09:18:44 -07001206 printf("%s=%s\n", key, name);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001207}
1208
Doug Zongker02ec6b82012-08-22 17:26:40 -07001209static void
1210load_locale_from_cache() {
1211 FILE* fp = fopen_path(LOCALE_FILE, "r");
1212 char buffer[80];
1213 if (fp != NULL) {
1214 fgets(buffer, sizeof(buffer), fp);
1215 int j = 0;
Doug Zongker5fa8c232012-09-18 12:37:02 -07001216 unsigned int i;
Doug Zongker02ec6b82012-08-22 17:26:40 -07001217 for (i = 0; i < sizeof(buffer) && buffer[i]; ++i) {
1218 if (!isspace(buffer[i])) {
1219 buffer[j++] = buffer[i];
1220 }
1221 }
1222 buffer[j] = 0;
1223 locale = strdup(buffer);
Devin Kim6016d082012-10-08 09:47:37 -07001224 check_and_fclose(fp, LOCALE_FILE);
Doug Zongker02ec6b82012-08-22 17:26:40 -07001225 }
1226}
1227
Doug Zongker7c3ae452013-05-14 11:03:02 -07001228static RecoveryUI* gCurrentUI = NULL;
1229
1230void
1231ui_print(const char* format, ...) {
1232 char buffer[256];
1233
1234 va_list ap;
1235 va_start(ap, format);
1236 vsnprintf(buffer, sizeof(buffer), format, ap);
1237 va_end(ap);
1238
1239 if (gCurrentUI != NULL) {
1240 gCurrentUI->Print("%s", buffer);
1241 } else {
1242 fputs(buffer, stdout);
1243 }
1244}
1245
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -07001246static constexpr char log_characters[] = "VDIWEF";
1247
1248void UiLogger(android::base::LogId id, android::base::LogSeverity severity,
1249 const char* tag, const char* file, unsigned int line,
1250 const char* message) {
1251 if (severity >= android::base::ERROR && gCurrentUI != NULL) {
1252 gCurrentUI->Print("E:%s\n", message);
1253 } else {
1254 fprintf(stdout, "%c:%s\n", log_characters[severity], message);
1255 }
1256}
1257
Yabin Cui99281df2016-02-17 12:21:52 -08001258static bool is_battery_ok() {
1259 struct healthd_config healthd_config = {
1260 .batteryStatusPath = android::String8(android::String8::kEmptyString),
1261 .batteryHealthPath = android::String8(android::String8::kEmptyString),
1262 .batteryPresentPath = android::String8(android::String8::kEmptyString),
1263 .batteryCapacityPath = android::String8(android::String8::kEmptyString),
1264 .batteryVoltagePath = android::String8(android::String8::kEmptyString),
1265 .batteryTemperaturePath = android::String8(android::String8::kEmptyString),
1266 .batteryTechnologyPath = android::String8(android::String8::kEmptyString),
1267 .batteryCurrentNowPath = android::String8(android::String8::kEmptyString),
1268 .batteryCurrentAvgPath = android::String8(android::String8::kEmptyString),
1269 .batteryChargeCounterPath = android::String8(android::String8::kEmptyString),
1270 .batteryFullChargePath = android::String8(android::String8::kEmptyString),
1271 .batteryCycleCountPath = android::String8(android::String8::kEmptyString),
1272 .energyCounter = NULL,
1273 .boot_min_cap = 0,
1274 .screen_on = NULL
1275 };
1276 healthd_board_init(&healthd_config);
1277
1278 android::BatteryMonitor monitor;
1279 monitor.init(&healthd_config);
1280
1281 int wait_second = 0;
1282 while (true) {
1283 int charge_status = monitor.getChargeStatus();
1284 // Treat unknown status as charged.
1285 bool charged = (charge_status != android::BATTERY_STATUS_DISCHARGING &&
1286 charge_status != android::BATTERY_STATUS_NOT_CHARGING);
1287 android::BatteryProperty capacity;
1288 android::status_t status = monitor.getProperty(android::BATTERY_PROP_CAPACITY, &capacity);
1289 ui_print("charge_status %d, charged %d, status %d, capacity %lld\n", charge_status,
1290 charged, status, capacity.valueInt64);
1291 // At startup, the battery drivers in devices like N5X/N6P take some time to load
1292 // the battery profile. Before the load finishes, it reports value 50 as a fake
1293 // capacity. BATTERY_READ_TIMEOUT_IN_SEC is set that the battery drivers are expected
1294 // to finish loading the battery profile earlier than 10 seconds after kernel startup.
1295 if (status == 0 && capacity.valueInt64 == 50) {
1296 if (wait_second < BATTERY_READ_TIMEOUT_IN_SEC) {
1297 sleep(1);
1298 wait_second++;
1299 continue;
1300 }
1301 }
1302 // If we can't read battery percentage, it may be a device without battery. In this
1303 // situation, use 100 as a fake battery percentage.
1304 if (status != 0) {
1305 capacity.valueInt64 = 100;
1306 }
1307 return (charged && capacity.valueInt64 >= BATTERY_WITH_CHARGER_OK_PERCENTAGE) ||
1308 (!charged && capacity.valueInt64 >= BATTERY_OK_PERCENTAGE);
1309 }
1310}
1311
Tianjie Xu3c62b672016-02-05 18:25:58 -08001312static void set_retry_bootloader_message(int retry_count, int argc, char** argv) {
1313 struct bootloader_message boot {};
1314 strlcpy(boot.command, "boot-recovery", sizeof(boot.command));
1315 strlcpy(boot.recovery, "recovery\n", sizeof(boot.recovery));
1316
1317 for (int i = 1; i < argc; ++i) {
1318 if (strstr(argv[i], "retry_count") == nullptr) {
1319 strlcat(boot.recovery, argv[i], sizeof(boot.recovery));
1320 strlcat(boot.recovery, "\n", sizeof(boot.recovery));
1321 }
1322 }
1323
1324 // Initialize counter to 1 if it's not in BCB, otherwise increment it by 1.
1325 if (retry_count == 0) {
1326 strlcat(boot.recovery, "--retry_count=1\n", sizeof(boot.recovery));
1327 } else {
1328 char buffer[20];
1329 snprintf(buffer, sizeof(buffer), "--retry_count=%d\n", retry_count+1);
1330 strlcat(boot.recovery, buffer, sizeof(boot.recovery));
1331 }
1332 set_bootloader_message(&boot);
1333}
1334
Mark Salyzyna4f701a2016-03-09 14:58:16 -08001335static ssize_t logbasename(
1336 log_id_t /* logId */,
1337 char /* prio */,
1338 const char *filename,
1339 const char * /* buf */, size_t len,
1340 void *arg) {
1341 if (strstr(LAST_KMSG_FILE, filename) ||
1342 strstr(LAST_LOG_FILE, filename)) {
1343 bool *doRotate = reinterpret_cast<bool *>(arg);
1344 *doRotate = true;
1345 }
1346 return len;
1347}
1348
1349static ssize_t logrotate(
1350 log_id_t logId,
1351 char prio,
1352 const char *filename,
1353 const char *buf, size_t len,
1354 void *arg) {
1355 bool *doRotate = reinterpret_cast<bool *>(arg);
1356 if (!*doRotate) {
1357 return __android_log_pmsg_file_write(logId, prio, filename, buf, len);
1358 }
1359
1360 std::string name(filename);
Chih-Hung Hsieh23abfd32016-07-27 10:19:47 -07001361 size_t dot = name.find_last_of('.');
Mark Salyzyna4f701a2016-03-09 14:58:16 -08001362 std::string sub = name.substr(0, dot);
1363
1364 if (!strstr(LAST_KMSG_FILE, sub.c_str()) &&
1365 !strstr(LAST_LOG_FILE, sub.c_str())) {
1366 return __android_log_pmsg_file_write(logId, prio, filename, buf, len);
1367 }
1368
1369 // filename rotation
1370 if (dot == std::string::npos) {
1371 name += ".1";
1372 } else {
1373 std::string number = name.substr(dot + 1);
1374 if (!isdigit(number.data()[0])) {
1375 name += ".1";
1376 } else {
Chih-Hung Hsieh54a27472016-04-18 11:30:55 -07001377 auto i = std::stoull(number);
Mark Salyzyna4f701a2016-03-09 14:58:16 -08001378 name = sub + "." + std::to_string(i + 1);
1379 }
1380 }
1381
1382 return __android_log_pmsg_file_write(logId, prio, name.c_str(), buf, len);
1383}
1384
Yabin Cui99281df2016-02-17 12:21:52 -08001385int main(int argc, char **argv) {
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -07001386 // We don't have logcat yet under recovery; so we'll print error on screen and
1387 // log to stdout (which is redirected to recovery.log) as we used to do.
1388 android::base::InitLogging(argv, &UiLogger);
1389
Mark Salyzyna4f701a2016-03-09 14:58:16 -08001390 // Take last pmsg contents and rewrite it to the current pmsg session.
1391 static const char filter[] = "recovery/";
1392 // Do we need to rotate?
1393 bool doRotate = false;
1394 __android_log_pmsg_file_read(
1395 LOG_ID_SYSTEM, ANDROID_LOG_INFO, filter,
1396 logbasename, &doRotate);
1397 // Take action to refresh pmsg contents
1398 __android_log_pmsg_file_read(
1399 LOG_ID_SYSTEM, ANDROID_LOG_INFO, filter,
1400 logrotate, &doRotate);
1401
Doug Zongker9270a202012-01-09 15:16:13 -08001402 // If this binary is started with the single argument "--adbd",
1403 // instead of being the normal recovery binary, it turns into kind
1404 // of a stripped-down version of adbd that only supports the
1405 // 'sideload' command. Note this must be a real argument, not
1406 // anything in the command file or bootloader control block; the
1407 // only way recovery should be run with this argument is when it
1408 // starts a copy of itself from the apply_from_adb() function.
1409 if (argc == 2 && strcmp(argv[1], "--adbd") == 0) {
Josh Gaoacb2a2f2016-08-26 18:24:34 -07001410 minadbd_main();
Doug Zongker9270a202012-01-09 15:16:13 -08001411 return 0;
1412 }
1413
Tao Bao04ca4262015-09-10 15:32:24 -07001414 time_t start = time(NULL);
1415
1416 // redirect_stdio should be called only in non-sideload mode. Otherwise
1417 // we may have two logger instances with different timestamps.
1418 redirect_stdio(TEMPORARY_LOG_FILE);
1419
Doug Zongker19a8e242014-01-21 09:25:41 -08001420 printf("Starting recovery (pid %d) on %s", getpid(), ctime(&start));
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001421
Doug Zongkerd4208f92010-09-20 12:16:13 -07001422 load_volume_table();
Tao Bao26112e52016-02-25 12:29:40 -08001423 has_cache = volume_for_path(CACHE_ROOT) != nullptr;
1424
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001425 get_args(&argc, &argv);
1426
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001427 const char *update_package = NULL;
Tao Baoe39a9bc2015-03-31 12:19:05 -07001428 bool should_wipe_data = false;
Tao Baoc679f932015-03-30 09:43:49 -07001429 bool should_wipe_cache = false;
Tao Bao862a4c12016-06-02 11:16:50 -07001430 bool should_brick = false;
Tao Bao145d8612015-03-25 15:51:15 -07001431 bool show_text = false;
Tao Baoc679f932015-03-30 09:43:49 -07001432 bool sideload = false;
1433 bool sideload_auto_reboot = false;
Doug Zongkere5d5ac72012-04-12 11:01:22 -07001434 bool just_exit = false;
Doug Zongkerb1d12632014-03-18 10:32:12 -07001435 bool shutdown_after = false;
Tianjie Xu3c62b672016-02-05 18:25:58 -08001436 int retry_count = 0;
Tianjie Xu35926c42016-04-28 18:06:26 -07001437 bool security_update = false;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001438
1439 int arg;
Tao Bao862a4c12016-06-02 11:16:50 -07001440 int option_index;
1441 while ((arg = getopt_long(argc, argv, "", OPTIONS, &option_index)) != -1) {
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001442 switch (arg) {
Tianjie Xu3c62b672016-02-05 18:25:58 -08001443 case 'n': android::base::ParseInt(optarg, &retry_count, 0); break;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001444 case 'u': update_package = optarg; break;
Tao Baoe39a9bc2015-03-31 12:19:05 -07001445 case 'w': should_wipe_data = true; break;
Tao Baoc679f932015-03-30 09:43:49 -07001446 case 'c': should_wipe_cache = true; break;
Tao Bao145d8612015-03-25 15:51:15 -07001447 case 't': show_text = true; break;
Tao Baoc679f932015-03-30 09:43:49 -07001448 case 's': sideload = true; break;
1449 case 'a': sideload = true; sideload_auto_reboot = true; break;
Doug Zongkere5d5ac72012-04-12 11:01:22 -07001450 case 'x': just_exit = true; break;
Doug Zongker02ec6b82012-08-22 17:26:40 -07001451 case 'l': locale = optarg; break;
Doug Zongkerc87bab12013-11-25 13:53:25 -08001452 case 'g': {
1453 if (stage == NULL || *stage == '\0') {
1454 char buffer[20] = "1/";
1455 strncat(buffer, optarg, sizeof(buffer)-3);
1456 stage = strdup(buffer);
1457 }
1458 break;
1459 }
Doug Zongkerb1d12632014-03-18 10:32:12 -07001460 case 'p': shutdown_after = true; break;
Jeff Sharkeya6e13ae2014-09-24 11:46:17 -07001461 case 'r': reason = optarg; break;
Tianjie Xu35926c42016-04-28 18:06:26 -07001462 case 'e': security_update = true; break;
Tao Bao862a4c12016-06-02 11:16:50 -07001463 case 0: {
1464 if (strcmp(OPTIONS[option_index].name, "brick") == 0) {
1465 should_brick = true;
1466 break;
1467 }
1468 break;
1469 }
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001470 case '?':
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -07001471 LOG(ERROR) << "Invalid command argument";
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001472 continue;
1473 }
1474 }
1475
Tao Bao26112e52016-02-25 12:29:40 -08001476 if (locale == nullptr && has_cache) {
Doug Zongker02ec6b82012-08-22 17:26:40 -07001477 load_locale_from_cache();
1478 }
1479 printf("locale is [%s]\n", locale);
Doug Zongker0d32f252014-02-13 15:07:56 -08001480 printf("stage is [%s]\n", stage);
Jeff Sharkeya6e13ae2014-09-24 11:46:17 -07001481 printf("reason is [%s]\n", reason);
Doug Zongker02ec6b82012-08-22 17:26:40 -07001482
1483 Device* device = make_device();
1484 ui = device->GetUI();
Doug Zongker7c3ae452013-05-14 11:03:02 -07001485 gCurrentUI = ui;
Doug Zongker02ec6b82012-08-22 17:26:40 -07001486
Doug Zongker5fa8c232012-09-18 12:37:02 -07001487 ui->SetLocale(locale);
Doug Zongker02ec6b82012-08-22 17:26:40 -07001488 ui->Init();
Tianjie Xu35926c42016-04-28 18:06:26 -07001489 // Set background string to "installing security update" for security update,
1490 // otherwise set it to "installing system update".
1491 ui->SetSystemUpdateText(security_update);
Doug Zongkerc87bab12013-11-25 13:53:25 -08001492
1493 int st_cur, st_max;
1494 if (stage != NULL && sscanf(stage, "%d/%d", &st_cur, &st_max) == 2) {
1495 ui->SetStage(st_cur, st_max);
1496 }
1497
Doug Zongker02ec6b82012-08-22 17:26:40 -07001498 ui->SetBackground(RecoveryUI::NONE);
1499 if (show_text) ui->ShowText(true);
1500
Stephen Smalley779701d2012-02-09 14:13:23 -05001501 struct selinux_opt seopts[] = {
1502 { SELABEL_OPT_PATH, "/file_contexts" }
1503 };
1504
1505 sehandle = selabel_open(SELABEL_CTX_FILE, seopts, 1);
1506
1507 if (!sehandle) {
Doug Zongkerfafc85b2013-07-09 12:29:45 -07001508 ui->Print("Warning: No file_contexts\n");
Stephen Smalley779701d2012-02-09 14:13:23 -05001509 }
Stephen Smalley779701d2012-02-09 14:13:23 -05001510
Doug Zongkerdaefc1d2011-10-31 09:34:15 -07001511 device->StartRecovery();
Doug Zongkerefa1bab2010-02-01 15:59:12 -08001512
Doug Zongker56c51052010-07-01 09:18:44 -07001513 printf("Command:");
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001514 for (arg = 0; arg < argc; arg++) {
Doug Zongker56c51052010-07-01 09:18:44 -07001515 printf(" \"%s\"", argv[arg]);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001516 }
Doug Zongker9b125b02010-09-22 12:01:37 -07001517 printf("\n");
1518
1519 if (update_package) {
1520 // For backwards compatibility on the cache partition only, if
1521 // we're given an old 'root' path "CACHE:foo", change it to
1522 // "/cache/foo".
1523 if (strncmp(update_package, "CACHE:", 6) == 0) {
1524 int len = strlen(update_package) + 10;
Doug Zongker28ce47c2011-10-28 10:33:05 -07001525 char* modified_path = (char*)malloc(len);
Jeremy Compostella1b7d9b72015-07-29 17:17:03 +02001526 if (modified_path) {
1527 strlcpy(modified_path, "/cache/", len);
1528 strlcat(modified_path, update_package+6, len);
1529 printf("(replacing path \"%s\" with \"%s\")\n",
1530 update_package, modified_path);
1531 update_package = modified_path;
1532 }
1533 else
1534 printf("modified_path allocation failed\n");
Doug Zongker9b125b02010-09-22 12:01:37 -07001535 }
1536 }
1537 printf("\n");
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001538
1539 property_list(print_property, NULL);
Doug Zongker56c51052010-07-01 09:18:44 -07001540 printf("\n");
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001541
Elliott Hughesbb78d622015-04-09 20:51:08 -07001542 ui->Print("Supported API: %d\n", RECOVERY_API_VERSION);
1543
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001544 int status = INSTALL_SUCCESS;
1545
Doug Zongker540d57f2011-01-18 13:36:58 -08001546 if (update_package != NULL) {
Tao Bao56870012016-04-29 15:37:05 -07001547 // It's not entirely true that we will modify the flash. But we want
1548 // to log the update attempt since update_package is non-NULL.
1549 modified_flash = true;
1550
Yabin Cui99281df2016-02-17 12:21:52 -08001551 if (!is_battery_ok()) {
1552 ui->Print("battery capacity is not enough for installing package, needed is %d%%\n",
1553 BATTERY_OK_PERCENTAGE);
Tianjie Xu16255832016-04-30 11:49:59 -07001554 // Log the error code to last_install when installation skips due to
1555 // low battery.
Tao Baof4885ad2016-09-26 11:39:14 -07001556 std::vector<std::string> log_buffer = {
1557 update_package,
1558 "0", // install result
1559 "error: " + std::to_string(kLowBattery),
1560 };
1561 std::string log_content = android::base::Join(log_buffer, "\n");
1562 if (!android::base::WriteStringToFile(log_content, LAST_INSTALL_FILE)) {
1563 PLOG(ERROR) << "failed to write " << LAST_INSTALL_FILE;
Tianjie Xu16255832016-04-30 11:49:59 -07001564 }
Tao Baof4885ad2016-09-26 11:39:14 -07001565
1566 // Also write the info into last_log.
1567 LOG(INFO) << log_content;
1568
Yabin Cui99281df2016-02-17 12:21:52 -08001569 status = INSTALL_SKIPPED;
1570 } else {
1571 status = install_package(update_package, &should_wipe_cache,
Tianjie Xu16255832016-04-30 11:49:59 -07001572 TEMPORARY_INSTALL_FILE, true, retry_count);
Yabin Cui99281df2016-02-17 12:21:52 -08001573 if (status == INSTALL_SUCCESS && should_wipe_cache) {
1574 wipe_cache(false, device);
1575 }
1576 if (status != INSTALL_SUCCESS) {
1577 ui->Print("Installation aborted.\n");
Tianjie Xu3c62b672016-02-05 18:25:58 -08001578 // When I/O error happens, reboot and retry installation EIO_RETRY_COUNT
1579 // times before we abandon this OTA update.
1580 if (status == INSTALL_RETRY && retry_count < EIO_RETRY_COUNT) {
1581 copy_logs();
1582 set_retry_bootloader_message(retry_count, argc, argv);
1583 // Print retry count on screen.
1584 ui->Print("Retry attempt %d\n", retry_count);
Doug Zongker7c3ae452013-05-14 11:03:02 -07001585
Tianjie Xu3c62b672016-02-05 18:25:58 -08001586 // Reboot and retry the update
Elliott Hughescb220402016-09-23 15:30:55 -07001587 if (!android::base::SetProperty(ANDROID_RB_PROPERTY, "reboot,recovery")) {
Tianjie Xu3c62b672016-02-05 18:25:58 -08001588 ui->Print("Reboot failed\n");
1589 } else {
1590 while (true) {
1591 pause();
1592 }
1593 }
1594 }
Yabin Cui99281df2016-02-17 12:21:52 -08001595 // If this is an eng or userdebug build, then automatically
1596 // turn the text display on if the script fails so the error
1597 // message is visible.
1598 if (is_ro_debuggable()) {
1599 ui->ShowText(true);
1600 }
Doug Zongker7c3ae452013-05-14 11:03:02 -07001601 }
1602 }
Tao Baoe39a9bc2015-03-31 12:19:05 -07001603 } else if (should_wipe_data) {
1604 if (!wipe_data(false, device)) {
1605 status = INSTALL_ERROR;
1606 }
Tao Baoc679f932015-03-30 09:43:49 -07001607 } else if (should_wipe_cache) {
Tao Baoe39a9bc2015-03-31 12:19:05 -07001608 if (!wipe_cache(false, device)) {
1609 status = INSTALL_ERROR;
1610 }
Tao Bao862a4c12016-06-02 11:16:50 -07001611 } else if (should_brick) {
1612 if (!brick_device()) {
1613 status = INSTALL_ERROR;
1614 }
Tao Baoc679f932015-03-30 09:43:49 -07001615 } else if (sideload) {
1616 // 'adb reboot sideload' acts the same as user presses key combinations
1617 // to enter the sideload mode. When 'sideload-auto-reboot' is used, text
1618 // display will NOT be turned on by default. And it will reboot after
1619 // sideload finishes even if there are errors. Unless one turns on the
1620 // text display during the installation. This is to enable automated
1621 // testing.
1622 if (!sideload_auto_reboot) {
1623 ui->ShowText(true);
1624 }
1625 status = apply_from_adb(ui, &should_wipe_cache, TEMPORARY_INSTALL_FILE);
1626 if (status == INSTALL_SUCCESS && should_wipe_cache) {
Tao Baoe39a9bc2015-03-31 12:19:05 -07001627 if (!wipe_cache(false, device)) {
1628 status = INSTALL_ERROR;
1629 }
Tao Baoc679f932015-03-30 09:43:49 -07001630 }
1631 ui->Print("\nInstall from ADB complete (status: %d).\n", status);
1632 if (sideload_auto_reboot) {
1633 ui->Print("Rebooting automatically.\n");
1634 }
Doug Zongkere5d5ac72012-04-12 11:01:22 -07001635 } else if (!just_exit) {
Doug Zongker02ec6b82012-08-22 17:26:40 -07001636 status = INSTALL_NONE; // No command specified
1637 ui->SetBackground(RecoveryUI::NO_COMMAND);
Tao Bao785d22c2015-05-04 09:34:29 -07001638
1639 // http://b/17489952
1640 // If this is an eng or userdebug build, automatically turn on the
1641 // text display if no command is specified.
1642 if (is_ro_debuggable()) {
1643 ui->ShowText(true);
1644 }
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001645 }
1646
Tao Baoc679f932015-03-30 09:43:49 -07001647 if (!sideload_auto_reboot && (status == INSTALL_ERROR || status == INSTALL_CORRUPT)) {
Doug Zongkerf24fd7e2013-07-02 11:43:25 -07001648 copy_logs();
Doug Zongker02ec6b82012-08-22 17:26:40 -07001649 ui->SetBackground(RecoveryUI::ERROR);
1650 }
Tao Baoc679f932015-03-30 09:43:49 -07001651
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001652 Device::BuiltinAction after = shutdown_after ? Device::SHUTDOWN : Device::REBOOT;
Yabin Cui99281df2016-02-17 12:21:52 -08001653 if ((status != INSTALL_SUCCESS && status != INSTALL_SKIPPED && !sideload_auto_reboot) ||
1654 ui->IsTextVisible()) {
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001655 Device::BuiltinAction temp = prompt_and_wait(device, status);
Tao Baoc679f932015-03-30 09:43:49 -07001656 if (temp != Device::NO_ACTION) {
1657 after = temp;
1658 }
Doug Zongker8674a722010-09-15 11:08:23 -07001659 }
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001660
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001661 // Save logs and clean up before rebooting or shutting down.
Tianjie Xuc14d95d2016-03-24 11:50:34 -07001662 finish_recovery();
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001663
1664 switch (after) {
1665 case Device::SHUTDOWN:
1666 ui->Print("Shutting down...\n");
Elliott Hughescb220402016-09-23 15:30:55 -07001667 android::base::SetProperty(ANDROID_RB_PROPERTY, "shutdown,");
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001668 break;
1669
1670 case Device::REBOOT_BOOTLOADER:
1671 ui->Print("Rebooting to bootloader...\n");
Elliott Hughescb220402016-09-23 15:30:55 -07001672 android::base::SetProperty(ANDROID_RB_PROPERTY, "reboot,bootloader");
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001673 break;
1674
1675 default:
1676 ui->Print("Rebooting...\n");
Elliott Hughescb220402016-09-23 15:30:55 -07001677 android::base::SetProperty(ANDROID_RB_PROPERTY, "reboot,");
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001678 break;
Doug Zongkerb1d12632014-03-18 10:32:12 -07001679 }
Tao Bao75238632015-05-27 14:46:17 -07001680 while (true) {
1681 pause();
1682 }
1683 // Should be unreachable.
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001684 return EXIT_SUCCESS;
1685}