blob: 343d123d6ddbfa449478750bc0ef944a952c877b [file] [log] [blame]
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001/*
2 * Copyright (C) 2007 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17#include <ctype.h>
Doug Zongker7c3ae452013-05-14 11:03:02 -070018#include <dirent.h>
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080019#include <errno.h>
20#include <fcntl.h>
21#include <getopt.h>
Tao Bao862a4c12016-06-02 11:16:50 -070022#include <inttypes.h>
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080023#include <limits.h>
Tao Bao862a4c12016-06-02 11:16:50 -070024#include <linux/fs.h>
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080025#include <linux/input.h>
Doug Zongker7c3ae452013-05-14 11:03:02 -070026#include <stdarg.h>
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080027#include <stdio.h>
28#include <stdlib.h>
29#include <string.h>
Patrick Tjincd055ee2014-12-09 11:26:40 -080030#include <sys/klog.h>
Doug Zongker23ceeea2010-07-08 17:27:55 -070031#include <sys/stat.h>
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080032#include <sys/types.h>
Tao Baocdcf28f2016-01-13 15:05:20 -080033#include <sys/wait.h>
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080034#include <time.h>
35#include <unistd.h>
36
Tao Bao04ca4262015-09-10 15:32:24 -070037#include <chrono>
Tao Bao862a4c12016-06-02 11:16:50 -070038#include <string>
39#include <vector>
Tao Bao04ca4262015-09-10 15:32:24 -070040
Tao Bao75238632015-05-27 14:46:17 -070041#include <adb.h>
Elliott Hughes4b166f02015-12-04 15:30:20 -080042#include <android-base/file.h>
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -070043#include <android-base/logging.h>
Tianjie Xu3c62b672016-02-05 18:25:58 -080044#include <android-base/parseint.h>
Elliott Hughescb220402016-09-23 15:30:55 -070045#include <android-base/properties.h>
Elliott Hughes4b166f02015-12-04 15:30:20 -080046#include <android-base/stringprintf.h>
Tao Bao862a4c12016-06-02 11:16:50 -070047#include <android-base/strings.h>
48#include <android-base/unique_fd.h>
Yabin Cui8b309f62016-06-24 18:22:02 -070049#include <bootloader_message/bootloader_message.h>
Tao Bao75238632015-05-27 14:46:17 -070050#include <cutils/android_reboot.h>
Elliott Hughescb220402016-09-23 15:30:55 -070051#include <cutils/properties.h> /* for property_list */
Elliott Hughes4bbd5bf2016-04-01 18:24:39 -070052#include <healthd/BatteryMonitor.h>
Mark Salyzyna4f701a2016-03-09 14:58:16 -080053#include <private/android_logger.h> /* private pmsg functions */
Elliott Hughes4bbd5bf2016-04-01 18:24:39 -070054#include <selinux/label.h>
55#include <selinux/selinux.h>
Tianjie Xu8cf5c8f2016-09-08 20:10:11 -070056#include <ziparchive/zip_archive.h>
Yabin Cui99281df2016-02-17 12:21:52 -080057
Tao Bao75238632015-05-27 14:46:17 -070058#include "adb_install.h"
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080059#include "common.h"
Tao Bao75238632015-05-27 14:46:17 -070060#include "device.h"
Tianjie Xu16255832016-04-30 11:49:59 -070061#include "error_code.h"
Tao Bao75238632015-05-27 14:46:17 -070062#include "fuse_sdcard_provider.h"
63#include "fuse_sideload.h"
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080064#include "install.h"
Josh Gaoacb2a2f2016-08-26 18:24:34 -070065#include "minadbd/minadbd.h"
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080066#include "minui/minui.h"
Tianjie Xu8cf5c8f2016-09-08 20:10:11 -070067#include "otautil/DirUtil.h"
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080068#include "roots.h"
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'},
Yabin Cui8b309f62016-06-24 18:22:02 -070088 { "wipe_ab", 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;
Yabin Cui8b309f62016-06-24 18:22:02 -0700115constexpr const char* RECOVERY_WIPE = "/etc/recovery.wipe";
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) {
Yabin Cui8b309f62016-06-24 18:22:02 -0700304 bootloader_message boot = {};
305 std::string err;
306 if (!read_bootloader_message(&boot, &err)) {
307 LOG(ERROR) << err;
308 // If fails, leave a zeroed bootloader_message.
309 memset(&boot, 0, sizeof(boot));
310 }
Doug Zongkerc87bab12013-11-25 13:53:25 -0800311 stage = strndup(boot.stage, sizeof(boot.stage));
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800312
Tianjie Xu7aa88742016-09-28 11:42:17 -0700313 if (boot.command[0] != 0) {
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -0700314 std::string boot_command = std::string(boot.command, sizeof(boot.command));
315 LOG(INFO) << "Boot command: " << boot_command;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800316 }
317
Tianjie Xu7aa88742016-09-28 11:42:17 -0700318 if (boot.status[0] != 0) {
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -0700319 std::string boot_status = std::string(boot.status, sizeof(boot.status));
320 LOG(INFO) << "Boot status: " << boot_status;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800321 }
322
323 // --- if arguments weren't supplied, look in the bootloader control block
324 if (*argc <= 1) {
325 boot.recovery[sizeof(boot.recovery) - 1] = '\0'; // Ensure termination
326 const char *arg = strtok(boot.recovery, "\n");
327 if (arg != NULL && !strcmp(arg, "recovery")) {
328 *argv = (char **) malloc(sizeof(char *) * MAX_ARGS);
329 (*argv)[0] = strdup(arg);
330 for (*argc = 1; *argc < MAX_ARGS; ++*argc) {
331 if ((arg = strtok(NULL, "\n")) == NULL) break;
332 (*argv)[*argc] = strdup(arg);
333 }
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -0700334 LOG(INFO) << "Got arguments from boot message";
Tianjie Xu7aa88742016-09-28 11:42:17 -0700335 } else if (boot.recovery[0] != 0) {
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -0700336 std::string boot_recovery = std::string(boot.recovery, 20);
337 LOG(ERROR) << "Bad boot message\n" << "\"" <<boot_recovery << "\"";
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800338 }
339 }
340
Tao Bao26112e52016-02-25 12:29:40 -0800341 // --- if that doesn't work, try the command file (if we have /cache).
342 if (*argc <= 1 && has_cache) {
Doug Zongkerd4208f92010-09-20 12:16:13 -0700343 FILE *fp = fopen_path(COMMAND_FILE, "r");
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800344 if (fp != NULL) {
Jin Feng93ffa752013-06-04 17:46:24 +0800345 char *token;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800346 char *argv0 = (*argv)[0];
347 *argv = (char **) malloc(sizeof(char *) * MAX_ARGS);
348 (*argv)[0] = argv0; // use the same program name
349
350 char buf[MAX_ARG_LENGTH];
351 for (*argc = 1; *argc < MAX_ARGS; ++*argc) {
352 if (!fgets(buf, sizeof(buf), fp)) break;
Jin Feng93ffa752013-06-04 17:46:24 +0800353 token = strtok(buf, "\r\n");
354 if (token != NULL) {
355 (*argv)[*argc] = strdup(token); // Strip newline.
356 } else {
357 --*argc;
358 }
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800359 }
360
361 check_and_fclose(fp, COMMAND_FILE);
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -0700362 LOG(INFO) << "Got arguments from " << COMMAND_FILE;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800363 }
364 }
365
366 // --> write the arguments we have back into the bootloader control block
367 // always boot into recovery after this (until finish_recovery() is called)
368 strlcpy(boot.command, "boot-recovery", sizeof(boot.command));
369 strlcpy(boot.recovery, "recovery\n", sizeof(boot.recovery));
370 int i;
371 for (i = 1; i < *argc; ++i) {
372 strlcat(boot.recovery, (*argv)[i], sizeof(boot.recovery));
373 strlcat(boot.recovery, "\n", sizeof(boot.recovery));
374 }
Yabin Cui8b309f62016-06-24 18:22:02 -0700375 if (!write_bootloader_message(boot, &err)) {
376 LOG(ERROR) << err;
377 }
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800378}
379
Doug Zongker34c98df2009-08-18 12:05:45 -0700380static void
Oscar Montemayor05231562009-11-30 08:40:57 -0800381set_sdcard_update_bootloader_message() {
Yabin Cui8b309f62016-06-24 18:22:02 -0700382 bootloader_message boot = {};
Doug Zongker34c98df2009-08-18 12:05:45 -0700383 strlcpy(boot.command, "boot-recovery", sizeof(boot.command));
384 strlcpy(boot.recovery, "recovery\n", sizeof(boot.recovery));
Yabin Cui8b309f62016-06-24 18:22:02 -0700385 std::string err;
386 if (!write_bootloader_message(boot, &err)) {
387 LOG(ERROR) << err;
388 }
Doug Zongker34c98df2009-08-18 12:05:45 -0700389}
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800390
Tao Baobef39712015-05-04 18:50:27 -0700391// Read from kernel log into buffer and write out to file.
392static void save_kernel_log(const char* destination) {
393 int klog_buf_len = klogctl(KLOG_SIZE_BUFFER, 0, 0);
Patrick Tjincd055ee2014-12-09 11:26:40 -0800394 if (klog_buf_len <= 0) {
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -0700395 PLOG(ERROR) << "Error getting klog size";
Patrick Tjincd055ee2014-12-09 11:26:40 -0800396 return;
397 }
398
Tao Baobef39712015-05-04 18:50:27 -0700399 std::string buffer(klog_buf_len, 0);
400 int n = klogctl(KLOG_READ_ALL, &buffer[0], klog_buf_len);
401 if (n == -1) {
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -0700402 PLOG(ERROR) << "Error in reading klog";
Patrick Tjincd055ee2014-12-09 11:26:40 -0800403 return;
404 }
Tao Baobef39712015-05-04 18:50:27 -0700405 buffer.resize(n);
406 android::base::WriteStringToFile(buffer, destination);
Patrick Tjincd055ee2014-12-09 11:26:40 -0800407}
408
Mark Salyzyna4f701a2016-03-09 14:58:16 -0800409// write content to the current pmsg session.
410static ssize_t __pmsg_write(const char *filename, const char *buf, size_t len) {
411 return __android_log_pmsg_file_write(LOG_ID_SYSTEM, ANDROID_LOG_INFO,
412 filename, buf, len);
413}
414
415static void copy_log_file_to_pmsg(const char* source, const char* destination) {
416 std::string content;
417 android::base::ReadFileToString(source, &content);
418 __pmsg_write(destination, content.c_str(), content.length());
419}
420
Tao Baof0124322015-04-11 02:04:11 +0000421// How much of the temp log we have copied to the copy in cache.
Chih-Hung Hsieh54a27472016-04-18 11:30:55 -0700422static off_t tmplog_offset = 0;
Tao Baof0124322015-04-11 02:04:11 +0000423
Tao Baobef39712015-05-04 18:50:27 -0700424static void copy_log_file(const char* source, const char* destination, bool append) {
425 FILE* dest_fp = fopen_path(destination, append ? "a" : "w");
426 if (dest_fp == nullptr) {
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -0700427 PLOG(ERROR) << "Can't open " << destination;
Doug Zongker2c3539e2010-09-29 13:21:30 -0700428 } else {
Tao Baobef39712015-05-04 18:50:27 -0700429 FILE* source_fp = fopen(source, "r");
430 if (source_fp != nullptr) {
Tao Baof0124322015-04-11 02:04:11 +0000431 if (append) {
Chih-Hung Hsieh54a27472016-04-18 11:30:55 -0700432 fseeko(source_fp, tmplog_offset, SEEK_SET); // Since last write
Doug Zongker2c3539e2010-09-29 13:21:30 -0700433 }
434 char buf[4096];
Tao Baobef39712015-05-04 18:50:27 -0700435 size_t bytes;
436 while ((bytes = fread(buf, 1, sizeof(buf), source_fp)) != 0) {
437 fwrite(buf, 1, bytes, dest_fp);
Doug Zongker2c3539e2010-09-29 13:21:30 -0700438 }
Tao Baobef39712015-05-04 18:50:27 -0700439 if (append) {
Chih-Hung Hsieh54a27472016-04-18 11:30:55 -0700440 tmplog_offset = ftello(source_fp);
Tao Baobef39712015-05-04 18:50:27 -0700441 }
442 check_and_fclose(source_fp, source);
Doug Zongker2c3539e2010-09-29 13:21:30 -0700443 }
Tao Baobef39712015-05-04 18:50:27 -0700444 check_and_fclose(dest_fp, destination);
Doug Zongker2c3539e2010-09-29 13:21:30 -0700445 }
446}
447
Tao Baobef39712015-05-04 18:50:27 -0700448// Rename last_log -> last_log.1 -> last_log.2 -> ... -> last_log.$max.
449// Similarly rename last_kmsg -> last_kmsg.1 -> ... -> last_kmsg.$max.
450// Overwrite any existing last_log.$max and last_kmsg.$max.
451static void rotate_logs(int max) {
Tao Bao682c34b2015-04-07 17:16:35 -0700452 // Logs should only be rotated once.
453 static bool rotated = false;
454 if (rotated) {
455 return;
456 }
457 rotated = true;
458 ensure_path_mounted(LAST_LOG_FILE);
Tao Baobef39712015-05-04 18:50:27 -0700459 ensure_path_mounted(LAST_KMSG_FILE);
Tao Bao682c34b2015-04-07 17:16:35 -0700460
Tao Bao682c34b2015-04-07 17:16:35 -0700461 for (int i = max-1; i >= 0; --i) {
Tao Bao80e46e02015-06-03 10:49:29 -0700462 std::string old_log = android::base::StringPrintf("%s", LAST_LOG_FILE);
463 if (i > 0) {
464 old_log += "." + std::to_string(i);
465 }
Tao Baobef39712015-05-04 18:50:27 -0700466 std::string new_log = android::base::StringPrintf("%s.%d", LAST_LOG_FILE, i+1);
467 // Ignore errors if old_log doesn't exist.
468 rename(old_log.c_str(), new_log.c_str());
469
Tao Bao80e46e02015-06-03 10:49:29 -0700470 std::string old_kmsg = android::base::StringPrintf("%s", LAST_KMSG_FILE);
471 if (i > 0) {
472 old_kmsg += "." + std::to_string(i);
473 }
Tao Baobef39712015-05-04 18:50:27 -0700474 std::string new_kmsg = android::base::StringPrintf("%s.%d", LAST_KMSG_FILE, i+1);
475 rename(old_kmsg.c_str(), new_kmsg.c_str());
Doug Zongkerda1ebae2013-05-16 11:23:48 -0700476 }
477}
Doug Zongker2c3539e2010-09-29 13:21:30 -0700478
Tao Bao682c34b2015-04-07 17:16:35 -0700479static void copy_logs() {
480 // We only rotate and record the log of the current session if there are
481 // actual attempts to modify the flash, such as wipes, installs from BCB
482 // or menu selections. This is to avoid unnecessary rotation (and
483 // possible deletion) of log files, if it does not do anything loggable.
484 if (!modified_flash) {
485 return;
486 }
487
Mark Salyzyna4f701a2016-03-09 14:58:16 -0800488 // Always write to pmsg, this allows the OTA logs to be caught in logcat -L
489 copy_log_file_to_pmsg(TEMPORARY_LOG_FILE, LAST_LOG_FILE);
490 copy_log_file_to_pmsg(TEMPORARY_INSTALL_FILE, LAST_INSTALL_FILE);
491
492 // We can do nothing for now if there's no /cache partition.
493 if (!has_cache) {
494 return;
495 }
496
Tao Baobef39712015-05-04 18:50:27 -0700497 rotate_logs(KEEP_LOG_COUNT);
Tao Bao682c34b2015-04-07 17:16:35 -0700498
Doug Zongkerf24fd7e2013-07-02 11:43:25 -0700499 // Copy logs to cache so the system can find out what happened.
Tao Baof0124322015-04-11 02:04:11 +0000500 copy_log_file(TEMPORARY_LOG_FILE, LOG_FILE, true);
501 copy_log_file(TEMPORARY_LOG_FILE, LAST_LOG_FILE, false);
502 copy_log_file(TEMPORARY_INSTALL_FILE, LAST_INSTALL_FILE, false);
503 save_kernel_log(LAST_KMSG_FILE);
Doug Zongkerf24fd7e2013-07-02 11:43:25 -0700504 chmod(LOG_FILE, 0600);
505 chown(LOG_FILE, 1000, 1000); // system user
Tao Baof0124322015-04-11 02:04:11 +0000506 chmod(LAST_KMSG_FILE, 0600);
507 chown(LAST_KMSG_FILE, 1000, 1000); // system user
Doug Zongkerf24fd7e2013-07-02 11:43:25 -0700508 chmod(LAST_LOG_FILE, 0640);
509 chmod(LAST_INSTALL_FILE, 0644);
510 sync();
511}
512
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800513// clear the recovery command and prepare to boot a (hopefully working) system,
Tianjie Xuc14d95d2016-03-24 11:50:34 -0700514// copy our log file to cache as well (for the system to read). This function is
515// idempotent: call it as many times as you like.
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800516static void
Tianjie Xuc14d95d2016-03-24 11:50:34 -0700517finish_recovery() {
Doug Zongker4f33e552012-08-23 13:16:12 -0700518 // Save the locale to cache, so if recovery is next started up
519 // without a --locale argument (eg, directly from the bootloader)
520 // it will use the last-known locale.
Mark Salyzyna4f701a2016-03-09 14:58:16 -0800521 if (locale != NULL) {
522 size_t len = strlen(locale);
523 __pmsg_write(LOCALE_FILE, locale, len);
524 if (has_cache) {
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -0700525 LOG(INFO) << "Saving locale \"" << locale << "\"";
Mark Salyzyna4f701a2016-03-09 14:58:16 -0800526 FILE* fp = fopen_path(LOCALE_FILE, "w");
Johan Harvyl85691422016-08-05 15:42:59 +0200527 if (fp != NULL) {
528 fwrite(locale, 1, len, fp);
529 fflush(fp);
530 fsync(fileno(fp));
531 check_and_fclose(fp, LOCALE_FILE);
532 }
Mark Salyzyna4f701a2016-03-09 14:58:16 -0800533 }
Doug Zongker4f33e552012-08-23 13:16:12 -0700534 }
535
Doug Zongkerf24fd7e2013-07-02 11:43:25 -0700536 copy_logs();
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800537
Doug Zongkere5d5ac72012-04-12 11:01:22 -0700538 // Reset to normal system boot so recovery won't cycle indefinitely.
Yabin Cui8b309f62016-06-24 18:22:02 -0700539 bootloader_message boot = {};
540 std::string err;
541 if (!write_bootloader_message(boot, &err)) {
542 LOG(ERROR) << err;
543 }
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800544
545 // Remove the command file, so recovery won't repeat indefinitely.
Tao Bao26112e52016-02-25 12:29:40 -0800546 if (has_cache) {
547 if (ensure_path_mounted(COMMAND_FILE) != 0 || (unlink(COMMAND_FILE) && errno != ENOENT)) {
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -0700548 LOG(WARNING) << "Can't unlink " << COMMAND_FILE;
Tao Bao26112e52016-02-25 12:29:40 -0800549 }
550 ensure_path_unmounted(CACHE_ROOT);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800551 }
552
553 sync(); // For good measure.
554}
555
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700556typedef struct _saved_log_file {
557 char* name;
558 struct stat st;
559 unsigned char* data;
560 struct _saved_log_file* next;
561} saved_log_file;
562
Elliott Hughes945548e2015-06-05 17:59:56 -0700563static bool erase_volume(const char* volume) {
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700564 bool is_cache = (strcmp(volume, CACHE_ROOT) == 0);
Paul Lawrenced0db3372015-11-05 13:38:40 -0800565 bool is_data = (strcmp(volume, DATA_ROOT) == 0);
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700566
Doug Zongker02ec6b82012-08-22 17:26:40 -0700567 ui->SetBackground(RecoveryUI::ERASING);
Doug Zongker211aebc2011-10-28 15:13:10 -0700568 ui->SetProgressType(RecoveryUI::INDETERMINATE);
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700569
570 saved_log_file* head = NULL;
571
572 if (is_cache) {
Tao Baobef39712015-05-04 18:50:27 -0700573 // If we're reformatting /cache, we load any past logs
574 // (i.e. "/cache/recovery/last_*") and the current log
575 // ("/cache/recovery/log") into memory, so we can restore them after
576 // the reformat.
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700577
578 ensure_path_mounted(volume);
579
580 DIR* d;
581 struct dirent* de;
582 d = opendir(CACHE_LOG_DIR);
583 if (d) {
584 char path[PATH_MAX];
585 strcpy(path, CACHE_LOG_DIR);
586 strcat(path, "/");
587 int path_len = strlen(path);
588 while ((de = readdir(d)) != NULL) {
Tao Baobef39712015-05-04 18:50:27 -0700589 if (strncmp(de->d_name, "last_", 5) == 0 || strcmp(de->d_name, "log") == 0) {
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700590 saved_log_file* p = (saved_log_file*) malloc(sizeof(saved_log_file));
591 strcpy(path+path_len, de->d_name);
592 p->name = strdup(path);
593 if (stat(path, &(p->st)) == 0) {
594 // truncate files to 512kb
595 if (p->st.st_size > (1 << 19)) {
596 p->st.st_size = 1 << 19;
597 }
598 p->data = (unsigned char*) malloc(p->st.st_size);
599 FILE* f = fopen(path, "rb");
600 fread(p->data, 1, p->st.st_size, f);
601 fclose(f);
602 p->next = head;
603 head = p;
604 } else {
605 free(p);
606 }
607 }
608 }
609 closedir(d);
610 } else {
611 if (errno != ENOENT) {
612 printf("opendir failed: %s\n", strerror(errno));
613 }
614 }
615 }
616
Doug Zongker211aebc2011-10-28 15:13:10 -0700617 ui->Print("Formatting %s...\n", volume);
Doug Zongker2c3539e2010-09-29 13:21:30 -0700618
Doug Zongkerd0181b82011-10-19 10:51:12 -0700619 ensure_path_unmounted(volume);
Paul Lawrenced0db3372015-11-05 13:38:40 -0800620
621 int result;
622
623 if (is_data && reason && strcmp(reason, "convert_fbe") == 0) {
624 // Create convert_fbe breadcrumb file to signal to init
625 // to convert to file based encryption, not full disk encryption
Paul Lawrence661f8a62016-02-25 12:42:19 -0800626 if (mkdir(CONVERT_FBE_DIR, 0700) != 0) {
627 ui->Print("Failed to make convert_fbe dir %s\n", strerror(errno));
628 return true;
629 }
Paul Lawrenced0db3372015-11-05 13:38:40 -0800630 FILE* f = fopen(CONVERT_FBE_FILE, "wb");
631 if (!f) {
Paul Lawrence661f8a62016-02-25 12:42:19 -0800632 ui->Print("Failed to convert to file encryption %s\n", strerror(errno));
Paul Lawrenced0db3372015-11-05 13:38:40 -0800633 return true;
634 }
635 fclose(f);
636 result = format_volume(volume, CONVERT_FBE_DIR);
637 remove(CONVERT_FBE_FILE);
638 rmdir(CONVERT_FBE_DIR);
639 } else {
640 result = format_volume(volume);
641 }
Doug Zongkerd0181b82011-10-19 10:51:12 -0700642
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700643 if (is_cache) {
644 while (head) {
645 FILE* f = fopen_path(head->name, "wb");
646 if (f) {
647 fwrite(head->data, 1, head->st.st_size, f);
648 fclose(f);
649 chmod(head->name, head->st.st_mode);
650 chown(head->name, head->st.st_uid, head->st.st_gid);
651 }
652 free(head->name);
653 free(head->data);
654 saved_log_file* temp = head->next;
655 free(head);
656 head = temp;
657 }
658
Tao Baof0124322015-04-11 02:04:11 +0000659 // Any part of the log we'd copied to cache is now gone.
660 // Reset the pointer so we copy from the beginning of the temp
661 // log.
662 tmplog_offset = 0;
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700663 copy_logs();
Doug Zongker2c3539e2010-09-29 13:21:30 -0700664 }
665
Elliott Hughes945548e2015-06-05 17:59:56 -0700666 return (result == 0);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800667}
668
Doug Zongkerf93d8162009-09-22 15:16:02 -0700669static int
Doug Zongker28ce47c2011-10-28 10:33:05 -0700670get_menu_selection(const char* const * headers, const char* const * items,
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700671 int menu_only, int initial_selection, Device* device) {
Doug Zongkerf93d8162009-09-22 15:16:02 -0700672 // throw away keys pressed previously, so user doesn't
673 // accidentally trigger menu items.
Doug Zongker211aebc2011-10-28 15:13:10 -0700674 ui->FlushKeys();
Doug Zongkerf93d8162009-09-22 15:16:02 -0700675
Doug Zongker211aebc2011-10-28 15:13:10 -0700676 ui->StartMenu(headers, items, initial_selection);
Doug Zongker8674a722010-09-15 11:08:23 -0700677 int selected = initial_selection;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800678 int chosen_item = -1;
679
Doug Zongkerf93d8162009-09-22 15:16:02 -0700680 while (chosen_item < 0) {
Doug Zongker211aebc2011-10-28 15:13:10 -0700681 int key = ui->WaitKey();
682 int visible = ui->IsTextVisible();
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800683
Doug Zongker5cae4452011-01-25 13:15:30 -0800684 if (key == -1) { // ui_wait_key() timed out
Doug Zongker211aebc2011-10-28 15:13:10 -0700685 if (ui->WasTextEverVisible()) {
Doug Zongker5cae4452011-01-25 13:15:30 -0800686 continue;
687 } else {
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -0700688 LOG(INFO) << "timed out waiting for key input; rebooting.";
Doug Zongker211aebc2011-10-28 15:13:10 -0700689 ui->EndMenu();
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700690 return 0; // XXX fixme
Doug Zongker5cae4452011-01-25 13:15:30 -0800691 }
692 }
693
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700694 int action = device->HandleMenuKey(key, visible);
Doug Zongkerddd6a282009-06-09 12:22:33 -0700695
696 if (action < 0) {
697 switch (action) {
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700698 case Device::kHighlightUp:
Elliott Hughes642aaa72015-04-10 12:47:46 -0700699 selected = ui->SelectMenu(--selected);
Doug Zongkerddd6a282009-06-09 12:22:33 -0700700 break;
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700701 case Device::kHighlightDown:
Elliott Hughes642aaa72015-04-10 12:47:46 -0700702 selected = ui->SelectMenu(++selected);
Doug Zongkerddd6a282009-06-09 12:22:33 -0700703 break;
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700704 case Device::kInvokeItem:
Doug Zongkerddd6a282009-06-09 12:22:33 -0700705 chosen_item = selected;
706 break;
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700707 case Device::kNoAction:
Doug Zongkerddd6a282009-06-09 12:22:33 -0700708 break;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800709 }
Doug Zongkerf93d8162009-09-22 15:16:02 -0700710 } else if (!menu_only) {
Doug Zongkerddd6a282009-06-09 12:22:33 -0700711 chosen_item = action;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800712 }
Doug Zongkerf93d8162009-09-22 15:16:02 -0700713 }
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800714
Doug Zongker211aebc2011-10-28 15:13:10 -0700715 ui->EndMenu();
Doug Zongkerf93d8162009-09-22 15:16:02 -0700716 return chosen_item;
717}
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800718
Doug Zongker8674a722010-09-15 11:08:23 -0700719static int compare_string(const void* a, const void* b) {
720 return strcmp(*(const char**)a, *(const char**)b);
721}
722
Doug Zongker93950222014-07-08 14:10:23 -0700723// Returns a malloc'd path, or NULL.
Elliott Hughes30694c92015-03-25 15:16:51 -0700724static char* browse_directory(const char* path, Device* device) {
Michael Ward9d2629c2011-06-23 22:14:24 -0700725 ensure_path_mounted(path);
Doug Zongkerc18eeb82010-09-21 16:49:26 -0700726
Elliott Hughes30694c92015-03-25 15:16:51 -0700727 DIR* d = opendir(path);
Doug Zongker8674a722010-09-15 11:08:23 -0700728 if (d == NULL) {
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -0700729 PLOG(ERROR) << "error opening " << path;
Doug Zongker93950222014-07-08 14:10:23 -0700730 return NULL;
Doug Zongker8674a722010-09-15 11:08:23 -0700731 }
732
Doug Zongker8674a722010-09-15 11:08:23 -0700733 int d_size = 0;
734 int d_alloc = 10;
Doug Zongker28ce47c2011-10-28 10:33:05 -0700735 char** dirs = (char**)malloc(d_alloc * sizeof(char*));
Doug Zongker8674a722010-09-15 11:08:23 -0700736 int z_size = 1;
737 int z_alloc = 10;
Doug Zongker28ce47c2011-10-28 10:33:05 -0700738 char** zips = (char**)malloc(z_alloc * sizeof(char*));
Doug Zongker8674a722010-09-15 11:08:23 -0700739 zips[0] = strdup("../");
740
Elliott Hughes30694c92015-03-25 15:16:51 -0700741 struct dirent* de;
Doug Zongker8674a722010-09-15 11:08:23 -0700742 while ((de = readdir(d)) != NULL) {
743 int name_len = strlen(de->d_name);
744
745 if (de->d_type == DT_DIR) {
746 // skip "." and ".." entries
747 if (name_len == 1 && de->d_name[0] == '.') continue;
748 if (name_len == 2 && de->d_name[0] == '.' &&
749 de->d_name[1] == '.') continue;
750
751 if (d_size >= d_alloc) {
752 d_alloc *= 2;
Doug Zongker28ce47c2011-10-28 10:33:05 -0700753 dirs = (char**)realloc(dirs, d_alloc * sizeof(char*));
Doug Zongker8674a722010-09-15 11:08:23 -0700754 }
Doug Zongker28ce47c2011-10-28 10:33:05 -0700755 dirs[d_size] = (char*)malloc(name_len + 2);
Doug Zongker8674a722010-09-15 11:08:23 -0700756 strcpy(dirs[d_size], de->d_name);
757 dirs[d_size][name_len] = '/';
758 dirs[d_size][name_len+1] = '\0';
759 ++d_size;
760 } else if (de->d_type == DT_REG &&
761 name_len >= 4 &&
762 strncasecmp(de->d_name + (name_len-4), ".zip", 4) == 0) {
763 if (z_size >= z_alloc) {
764 z_alloc *= 2;
Doug Zongker28ce47c2011-10-28 10:33:05 -0700765 zips = (char**)realloc(zips, z_alloc * sizeof(char*));
Doug Zongker8674a722010-09-15 11:08:23 -0700766 }
767 zips[z_size++] = strdup(de->d_name);
768 }
769 }
770 closedir(d);
771
772 qsort(dirs, d_size, sizeof(char*), compare_string);
773 qsort(zips, z_size, sizeof(char*), compare_string);
774
775 // append dirs to the zips list
776 if (d_size + z_size + 1 > z_alloc) {
777 z_alloc = d_size + z_size + 1;
Doug Zongker28ce47c2011-10-28 10:33:05 -0700778 zips = (char**)realloc(zips, z_alloc * sizeof(char*));
Doug Zongker8674a722010-09-15 11:08:23 -0700779 }
780 memcpy(zips + z_size, dirs, d_size * sizeof(char*));
781 free(dirs);
782 z_size += d_size;
783 zips[z_size] = NULL;
784
Elliott Hughes8fd86d72015-04-13 14:36:02 -0700785 const char* headers[] = { "Choose a package to install:", path, NULL };
Elliott Hughes30694c92015-03-25 15:16:51 -0700786
Doug Zongker93950222014-07-08 14:10:23 -0700787 char* result;
Doug Zongker8674a722010-09-15 11:08:23 -0700788 int chosen_item = 0;
Doug Zongker93950222014-07-08 14:10:23 -0700789 while (true) {
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700790 chosen_item = get_menu_selection(headers, zips, 1, chosen_item, device);
Doug Zongker8674a722010-09-15 11:08:23 -0700791
792 char* item = zips[chosen_item];
793 int item_len = strlen(item);
794 if (chosen_item == 0) { // item 0 is always "../"
Michael Ward9d2629c2011-06-23 22:14:24 -0700795 // go up but continue browsing (if the caller is update_directory)
Doug Zongker93950222014-07-08 14:10:23 -0700796 result = NULL;
Doug Zongker8674a722010-09-15 11:08:23 -0700797 break;
798 }
Doug Zongker93950222014-07-08 14:10:23 -0700799
800 char new_path[PATH_MAX];
801 strlcpy(new_path, path, PATH_MAX);
802 strlcat(new_path, "/", PATH_MAX);
803 strlcat(new_path, item, PATH_MAX);
804
805 if (item[item_len-1] == '/') {
806 // recurse down into a subdirectory
807 new_path[strlen(new_path)-1] = '\0'; // truncate the trailing '/'
808 result = browse_directory(new_path, device);
809 if (result) break;
810 } else {
811 // selected a zip file: return the malloc'd path to the caller.
812 result = strdup(new_path);
813 break;
814 }
815 }
Doug Zongker8674a722010-09-15 11:08:23 -0700816
Elliott Hughes30694c92015-03-25 15:16:51 -0700817 for (int i = 0; i < z_size; ++i) free(zips[i]);
Doug Zongker8674a722010-09-15 11:08:23 -0700818 free(zips);
Doug Zongker8674a722010-09-15 11:08:23 -0700819
820 return result;
821}
822
Elliott Hughes30694c92015-03-25 15:16:51 -0700823static bool yes_no(Device* device, const char* question1, const char* question2) {
Elliott Hughes8fd86d72015-04-13 14:36:02 -0700824 const char* headers[] = { question1, question2, NULL };
Elliott Hughes30694c92015-03-25 15:16:51 -0700825 const char* items[] = { " No", " Yes", NULL };
Doug Zongkerddd6a282009-06-09 12:22:33 -0700826
Elliott Hughes30694c92015-03-25 15:16:51 -0700827 int chosen_item = get_menu_selection(headers, items, 1, 0, device);
828 return (chosen_item == 1);
829}
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800830
Tao Baoe39a9bc2015-03-31 12:19:05 -0700831// Return true on success.
832static bool wipe_data(int should_confirm, Device* device) {
833 if (should_confirm && !yes_no(device, "Wipe all user data?", " THIS CAN NOT BE UNDONE!")) {
834 return false;
Doug Zongkerf93d8162009-09-22 15:16:02 -0700835 }
Doug Zongker1066d2c2009-04-01 13:57:40 -0700836
Tao Bao682c34b2015-04-07 17:16:35 -0700837 modified_flash = true;
838
Doug Zongker211aebc2011-10-28 15:13:10 -0700839 ui->Print("\n-- Wiping data...\n");
Elliott Hughes945548e2015-06-05 17:59:56 -0700840 bool success =
841 device->PreWipeData() &&
842 erase_volume("/data") &&
Tao Bao26112e52016-02-25 12:29:40 -0800843 (has_cache ? erase_volume("/cache") : true) &&
Elliott Hughes945548e2015-06-05 17:59:56 -0700844 device->PostWipeData();
845 ui->Print("Data wipe %s.\n", success ? "complete" : "failed");
846 return success;
Doug Zongkerf93d8162009-09-22 15:16:02 -0700847}
848
Tao Baoe39a9bc2015-03-31 12:19:05 -0700849// Return true on success.
850static bool wipe_cache(bool should_confirm, Device* device) {
Tao Bao26112e52016-02-25 12:29:40 -0800851 if (!has_cache) {
852 ui->Print("No /cache partition found.\n");
853 return false;
854 }
855
Elliott Hughes30694c92015-03-25 15:16:51 -0700856 if (should_confirm && !yes_no(device, "Wipe cache?", " THIS CAN NOT BE UNDONE!")) {
Tao Baoe39a9bc2015-03-31 12:19:05 -0700857 return false;
Elliott Hughes30694c92015-03-25 15:16:51 -0700858 }
859
Tao Bao682c34b2015-04-07 17:16:35 -0700860 modified_flash = true;
861
Elliott Hughes30694c92015-03-25 15:16:51 -0700862 ui->Print("\n-- Wiping cache...\n");
Elliott Hughes945548e2015-06-05 17:59:56 -0700863 bool success = erase_volume("/cache");
864 ui->Print("Cache wipe %s.\n", success ? "complete" : "failed");
865 return success;
Elliott Hughes30694c92015-03-25 15:16:51 -0700866}
867
Tao Bao862a4c12016-06-02 11:16:50 -0700868// Secure-wipe a given partition. It uses BLKSECDISCARD, if supported.
869// Otherwise, it goes with BLKDISCARD (if device supports BLKDISCARDZEROES) or
870// BLKZEROOUT.
871static bool secure_wipe_partition(const std::string& partition) {
872 android::base::unique_fd fd(TEMP_FAILURE_RETRY(open(partition.c_str(), O_WRONLY)));
873 if (fd == -1) {
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -0700874 PLOG(ERROR) << "failed to open \"" << partition << "\"";
Tao Bao862a4c12016-06-02 11:16:50 -0700875 return false;
876 }
877
878 uint64_t range[2] = {0, 0};
879 if (ioctl(fd, BLKGETSIZE64, &range[1]) == -1 || range[1] == 0) {
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -0700880 PLOG(ERROR) << "failed to get partition size";
Tao Bao862a4c12016-06-02 11:16:50 -0700881 return false;
882 }
883 printf("Secure-wiping \"%s\" from %" PRIu64 " to %" PRIu64 ".\n",
884 partition.c_str(), range[0], range[1]);
885
886 printf("Trying BLKSECDISCARD...\t");
887 if (ioctl(fd, BLKSECDISCARD, &range) == -1) {
888 printf("failed: %s\n", strerror(errno));
889
890 // Use BLKDISCARD if it zeroes out blocks, otherwise use BLKZEROOUT.
891 unsigned int zeroes;
892 if (ioctl(fd, BLKDISCARDZEROES, &zeroes) == 0 && zeroes != 0) {
893 printf("Trying BLKDISCARD...\t");
894 if (ioctl(fd, BLKDISCARD, &range) == -1) {
895 printf("failed: %s\n", strerror(errno));
896 return false;
897 }
898 } else {
899 printf("Trying BLKZEROOUT...\t");
900 if (ioctl(fd, BLKZEROOUT, &range) == -1) {
901 printf("failed: %s\n", strerror(errno));
902 return false;
903 }
904 }
905 }
906
907 printf("done\n");
908 return true;
909}
910
Yabin Cui8b309f62016-06-24 18:22:02 -0700911// Wipe the current A/B device, with a secure wipe of all the partitions in
912// RECOVERY_WIPE.
913static bool wipe_ab_device() {
Tao Bao862a4c12016-06-02 11:16:50 -0700914 ui->SetBackground(RecoveryUI::ERASING);
915 ui->SetProgressType(RecoveryUI::INDETERMINATE);
916
917 std::string partition_list;
Yabin Cui8b309f62016-06-24 18:22:02 -0700918 if (!android::base::ReadFileToString(RECOVERY_WIPE, &partition_list)) {
919 LOG(ERROR) << "failed to read \"" << RECOVERY_WIPE << "\"";
Tao Bao862a4c12016-06-02 11:16:50 -0700920 return false;
921 }
922
923 std::vector<std::string> lines = android::base::Split(partition_list, "\n");
924 for (const std::string& line : lines) {
925 std::string partition = android::base::Trim(line);
926 // Ignore '#' comment or empty lines.
927 if (android::base::StartsWith(partition, "#") || partition.empty()) {
928 continue;
929 }
930
931 // Proceed anyway even if it fails to wipe some partition.
932 secure_wipe_partition(partition);
933 }
934 return true;
935}
936
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700937static void choose_recovery_file(Device* device) {
Elliott Hughesc0491632015-05-06 12:40:05 -0700938 // "Back" + KEEP_LOG_COUNT * 2 + terminating nullptr entry
939 char* entries[1 + KEEP_LOG_COUNT * 2 + 1];
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700940 memset(entries, 0, sizeof(entries));
941
Tao Baobef39712015-05-04 18:50:27 -0700942 unsigned int n = 0;
Patrick Tjincd055ee2014-12-09 11:26:40 -0800943
Tianjie Xua54f75e2016-08-17 12:02:46 -0700944 if (has_cache) {
945 // Add LAST_LOG_FILE + LAST_LOG_FILE.x
946 // Add LAST_KMSG_FILE + LAST_KMSG_FILE.x
947 for (int i = 0; i < KEEP_LOG_COUNT; i++) {
948 char* log_file;
949 int ret;
950 ret = (i == 0) ? asprintf(&log_file, "%s", LAST_LOG_FILE) :
951 asprintf(&log_file, "%s.%d", LAST_LOG_FILE, i);
952 if (ret == -1) {
953 // memory allocation failure - return early. Should never happen.
954 return;
955 }
956 if ((ensure_path_mounted(log_file) != 0) || (access(log_file, R_OK) == -1)) {
957 free(log_file);
958 } else {
959 entries[n++] = log_file;
960 }
Tao Baobef39712015-05-04 18:50:27 -0700961
Tianjie Xua54f75e2016-08-17 12:02:46 -0700962 char* kmsg_file;
963 ret = (i == 0) ? asprintf(&kmsg_file, "%s", LAST_KMSG_FILE) :
964 asprintf(&kmsg_file, "%s.%d", LAST_KMSG_FILE, i);
965 if (ret == -1) {
966 // memory allocation failure - return early. Should never happen.
967 return;
968 }
969 if ((ensure_path_mounted(kmsg_file) != 0) || (access(kmsg_file, R_OK) == -1)) {
970 free(kmsg_file);
971 } else {
972 entries[n++] = kmsg_file;
973 }
Tao Baobef39712015-05-04 18:50:27 -0700974 }
Tianjie Xua54f75e2016-08-17 12:02:46 -0700975 } else {
976 // If cache partition is not found, view /tmp/recovery.log instead.
977 ui->Print("No /cache partition found.\n");
978 if (access(TEMPORARY_LOG_FILE, R_OK) == -1) {
979 return;
980 } else{
981 entries[n++] = strdup(TEMPORARY_LOG_FILE);
Tao Baobef39712015-05-04 18:50:27 -0700982 }
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700983 }
984
Elliott Hughesc0491632015-05-06 12:40:05 -0700985 entries[n++] = strdup("Back");
986
Tao Baobef39712015-05-04 18:50:27 -0700987 const char* headers[] = { "Select file to view", nullptr };
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700988
Elliott Hughes8de52072015-04-08 20:06:50 -0700989 while (true) {
Elliott Hughes30694c92015-03-25 15:16:51 -0700990 int chosen_item = get_menu_selection(headers, entries, 1, 0, device);
Elliott Hughesc0491632015-05-06 12:40:05 -0700991 if (strcmp(entries[chosen_item], "Back") == 0) break;
Elliott Hughes8de52072015-04-08 20:06:50 -0700992
Elliott Hughes8de52072015-04-08 20:06:50 -0700993 ui->ShowFile(entries[chosen_item]);
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700994 }
995
Tao Baobef39712015-05-04 18:50:27 -0700996 for (size_t i = 0; i < (sizeof(entries) / sizeof(*entries)); i++) {
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700997 free(entries[i]);
998 }
999}
1000
Elliott Hughes498cda62016-04-14 16:49:04 -07001001static void run_graphics_test(Device* device) {
1002 // Switch to graphics screen.
1003 ui->ShowText(false);
1004
1005 ui->SetProgressType(RecoveryUI::INDETERMINATE);
1006 ui->SetBackground(RecoveryUI::INSTALLING_UPDATE);
1007 sleep(1);
1008
1009 ui->SetBackground(RecoveryUI::ERROR);
1010 sleep(1);
1011
1012 ui->SetBackground(RecoveryUI::NO_COMMAND);
1013 sleep(1);
1014
1015 ui->SetBackground(RecoveryUI::ERASING);
1016 sleep(1);
1017
1018 ui->SetBackground(RecoveryUI::INSTALLING_UPDATE);
1019
1020 ui->SetProgressType(RecoveryUI::DETERMINATE);
1021 ui->ShowProgress(1.0, 10.0);
1022 float fraction = 0.0;
1023 for (size_t i = 0; i < 100; ++i) {
1024 fraction += .01;
1025 ui->SetProgress(fraction);
1026 usleep(100000);
1027 }
1028
1029 ui->ShowText(true);
1030}
1031
Tao Baocdcf28f2016-01-13 15:05:20 -08001032// How long (in seconds) we wait for the fuse-provided package file to
1033// appear, before timing out.
1034#define SDCARD_INSTALL_TIMEOUT 10
1035
Tao Bao145d8612015-03-25 15:51:15 -07001036static int apply_from_sdcard(Device* device, bool* wipe_cache) {
Tao Bao682c34b2015-04-07 17:16:35 -07001037 modified_flash = true;
1038
Christian Poetzsch4ec58a42015-02-19 10:42:39 +00001039 if (ensure_path_mounted(SDCARD_ROOT) != 0) {
1040 ui->Print("\n-- Couldn't mount %s.\n", SDCARD_ROOT);
1041 return INSTALL_ERROR;
1042 }
1043
1044 char* path = browse_directory(SDCARD_ROOT, device);
1045 if (path == NULL) {
Elliott Hughes018ed312015-04-08 16:51:36 -07001046 ui->Print("\n-- No package file selected.\n");
caozhiyuanb4effb92015-06-10 16:46:38 +08001047 ensure_path_unmounted(SDCARD_ROOT);
Christian Poetzsch4ec58a42015-02-19 10:42:39 +00001048 return INSTALL_ERROR;
1049 }
1050
1051 ui->Print("\n-- Install %s ...\n", path);
1052 set_sdcard_update_bootloader_message();
Christian Poetzsch4ec58a42015-02-19 10:42:39 +00001053
Tao Baocdcf28f2016-01-13 15:05:20 -08001054 // We used to use fuse in a thread as opposed to a process. Since accessing
1055 // through fuse involves going from kernel to userspace to kernel, it leads
1056 // to deadlock when a page fault occurs. (Bug: 26313124)
1057 pid_t child;
1058 if ((child = fork()) == 0) {
1059 bool status = start_sdcard_fuse(path);
1060
1061 _exit(status ? EXIT_SUCCESS : EXIT_FAILURE);
1062 }
1063
1064 // FUSE_SIDELOAD_HOST_PATHNAME will start to exist once the fuse in child
1065 // process is ready.
1066 int result = INSTALL_ERROR;
1067 int status;
1068 bool waited = false;
1069 for (int i = 0; i < SDCARD_INSTALL_TIMEOUT; ++i) {
1070 if (waitpid(child, &status, WNOHANG) == -1) {
1071 result = INSTALL_ERROR;
1072 waited = true;
1073 break;
1074 }
1075
1076 struct stat sb;
1077 if (stat(FUSE_SIDELOAD_HOST_PATHNAME, &sb) == -1) {
1078 if (errno == ENOENT && i < SDCARD_INSTALL_TIMEOUT-1) {
1079 sleep(1);
1080 continue;
1081 } else {
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -07001082 LOG(ERROR) << "Timed out waiting for the fuse-provided package.";
Tao Baocdcf28f2016-01-13 15:05:20 -08001083 result = INSTALL_ERROR;
1084 kill(child, SIGKILL);
1085 break;
1086 }
1087 }
1088
1089 result = install_package(FUSE_SIDELOAD_HOST_PATHNAME, wipe_cache,
Tianjie Xu16255832016-04-30 11:49:59 -07001090 TEMPORARY_INSTALL_FILE, false, 0/*retry_count*/);
Tao Baocdcf28f2016-01-13 15:05:20 -08001091 break;
1092 }
Christian Poetzsch4ec58a42015-02-19 10:42:39 +00001093
Tao Baocdcf28f2016-01-13 15:05:20 -08001094 if (!waited) {
1095 // Calling stat() on this magic filename signals the fuse
1096 // filesystem to shut down.
1097 struct stat sb;
1098 stat(FUSE_SIDELOAD_HOST_EXIT_PATHNAME, &sb);
1099
1100 waitpid(child, &status, 0);
1101 }
1102
1103 if (!WIFEXITED(status) || WEXITSTATUS(status) != 0) {
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -07001104 LOG(ERROR) << "Error exit from the fuse process: " << WEXITSTATUS(status);
Tao Baocdcf28f2016-01-13 15:05:20 -08001105 }
1106
Christian Poetzsch4ec58a42015-02-19 10:42:39 +00001107 ensure_path_unmounted(SDCARD_ROOT);
Tao Baocdcf28f2016-01-13 15:05:20 -08001108 return result;
Christian Poetzsch4ec58a42015-02-19 10:42:39 +00001109}
1110
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001111// Return REBOOT, SHUTDOWN, or REBOOT_BOOTLOADER. Returning NO_ACTION
1112// means to take the default, which is to reboot or shutdown depending
1113// on if the --shutdown_after flag was passed to recovery.
1114static Device::BuiltinAction
Doug Zongker6c8553d2012-09-24 10:40:47 -07001115prompt_and_wait(Device* device, int status) {
Doug Zongkerf93d8162009-09-22 15:16:02 -07001116 for (;;) {
Tianjie Xuc14d95d2016-03-24 11:50:34 -07001117 finish_recovery();
Doug Zongker6c8553d2012-09-24 10:40:47 -07001118 switch (status) {
1119 case INSTALL_SUCCESS:
1120 case INSTALL_NONE:
1121 ui->SetBackground(RecoveryUI::NO_COMMAND);
1122 break;
1123
1124 case INSTALL_ERROR:
1125 case INSTALL_CORRUPT:
1126 ui->SetBackground(RecoveryUI::ERROR);
1127 break;
1128 }
Doug Zongker211aebc2011-10-28 15:13:10 -07001129 ui->SetProgressType(RecoveryUI::EMPTY);
Doug Zongkerf93d8162009-09-22 15:16:02 -07001130
Elliott Hughes8fd86d72015-04-13 14:36:02 -07001131 int chosen_item = get_menu_selection(nullptr, device->GetMenuItems(), 0, 0, device);
Doug Zongkerf93d8162009-09-22 15:16:02 -07001132
1133 // device-specific code may take some action here. It may
1134 // return one of the core actions handled in the switch
1135 // statement below.
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001136 Device::BuiltinAction chosen_action = device->InvokeMenuItem(chosen_item);
Doug Zongkerf93d8162009-09-22 15:16:02 -07001137
Elliott Hughes30694c92015-03-25 15:16:51 -07001138 bool should_wipe_cache = false;
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001139 switch (chosen_action) {
1140 case Device::NO_ACTION:
1141 break;
1142
Doug Zongkerdaefc1d2011-10-31 09:34:15 -07001143 case Device::REBOOT:
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001144 case Device::SHUTDOWN:
1145 case Device::REBOOT_BOOTLOADER:
1146 return chosen_action;
Doug Zongkerf93d8162009-09-22 15:16:02 -07001147
Doug Zongkerdaefc1d2011-10-31 09:34:15 -07001148 case Device::WIPE_DATA:
1149 wipe_data(ui->IsTextVisible(), device);
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001150 if (!ui->IsTextVisible()) return Device::NO_ACTION;
Doug Zongkerf93d8162009-09-22 15:16:02 -07001151 break;
1152
Doug Zongkerdaefc1d2011-10-31 09:34:15 -07001153 case Device::WIPE_CACHE:
Elliott Hughes30694c92015-03-25 15:16:51 -07001154 wipe_cache(ui->IsTextVisible(), device);
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001155 if (!ui->IsTextVisible()) return Device::NO_ACTION;
Doug Zongkerf93d8162009-09-22 15:16:02 -07001156 break;
1157
Christian Poetzsch4ec58a42015-02-19 10:42:39 +00001158 case Device::APPLY_ADB_SIDELOAD:
Elliott Hughesec283402015-04-10 10:01:53 -07001159 case Device::APPLY_SDCARD:
Christian Poetzsch4ec58a42015-02-19 10:42:39 +00001160 {
1161 bool adb = (chosen_action == Device::APPLY_ADB_SIDELOAD);
1162 if (adb) {
Elliott Hughes30694c92015-03-25 15:16:51 -07001163 status = apply_from_adb(ui, &should_wipe_cache, TEMPORARY_INSTALL_FILE);
Doug Zongkerd0181b82011-10-19 10:51:12 -07001164 } else {
Elliott Hughes30694c92015-03-25 15:16:51 -07001165 status = apply_from_sdcard(device, &should_wipe_cache);
Doug Zongkerd0181b82011-10-19 10:51:12 -07001166 }
Doug Zongker945fc682014-07-10 10:50:39 -07001167
Elliott Hughes30694c92015-03-25 15:16:51 -07001168 if (status == INSTALL_SUCCESS && should_wipe_cache) {
Tao Baoe39a9bc2015-03-31 12:19:05 -07001169 if (!wipe_cache(false, device)) {
1170 status = INSTALL_ERROR;
1171 }
Christian Poetzsch4ec58a42015-02-19 10:42:39 +00001172 }
1173
Tao Baoc679f932015-03-30 09:43:49 -07001174 if (status != INSTALL_SUCCESS) {
1175 ui->SetBackground(RecoveryUI::ERROR);
1176 ui->Print("Installation aborted.\n");
1177 copy_logs();
1178 } else if (!ui->IsTextVisible()) {
1179 return Device::NO_ACTION; // reboot if logs aren't visible
1180 } else {
1181 ui->Print("\nInstall from %s complete.\n", adb ? "ADB" : "SD card");
Doug Zongker8674a722010-09-15 11:08:23 -07001182 }
Doug Zongkerf93d8162009-09-22 15:16:02 -07001183 }
1184 break;
Doug Zongkerdaefc1d2011-10-31 09:34:15 -07001185
Elliott Hughesec283402015-04-10 10:01:53 -07001186 case Device::VIEW_RECOVERY_LOGS:
1187 choose_recovery_file(device);
Michael Ward9d2629c2011-06-23 22:14:24 -07001188 break;
Doug Zongker9270a202012-01-09 15:16:13 -08001189
Elliott Hughes498cda62016-04-14 16:49:04 -07001190 case Device::RUN_GRAPHICS_TEST:
1191 run_graphics_test(device);
1192 break;
1193
Elliott Hughesec283402015-04-10 10:01:53 -07001194 case Device::MOUNT_SYSTEM:
Tao Baoabb8f772015-07-30 14:43:27 -07001195 // For a system image built with the root directory (i.e.
1196 // system_root_image == "true"), we mount it to /system_root, and symlink /system
1197 // to /system_root/system to make adb shell work (the symlink is created through
1198 // the build system).
1199 // Bug: 22855115
Elliott Hughescb220402016-09-23 15:30:55 -07001200 if (android::base::GetBoolProperty("ro.build.system_root_image", false)) {
Tao Baoabb8f772015-07-30 14:43:27 -07001201 if (ensure_path_mounted_at("/", "/system_root") != -1) {
1202 ui->Print("Mounted /system.\n");
1203 }
1204 } else {
1205 if (ensure_path_mounted("/system") != -1) {
1206 ui->Print("Mounted /system.\n");
1207 }
Elliott Hughesec283402015-04-10 10:01:53 -07001208 }
Tao Baoabb8f772015-07-30 14:43:27 -07001209
Nick Kralevicha9ad0322014-10-22 18:38:48 -07001210 break;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001211 }
1212 }
1213}
1214
1215static void
Oscar Montemayor05231562009-11-30 08:40:57 -08001216print_property(const char *key, const char *name, void *cookie) {
Doug Zongker56c51052010-07-01 09:18:44 -07001217 printf("%s=%s\n", key, name);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001218}
1219
Doug Zongker02ec6b82012-08-22 17:26:40 -07001220static void
1221load_locale_from_cache() {
1222 FILE* fp = fopen_path(LOCALE_FILE, "r");
1223 char buffer[80];
1224 if (fp != NULL) {
1225 fgets(buffer, sizeof(buffer), fp);
1226 int j = 0;
Doug Zongker5fa8c232012-09-18 12:37:02 -07001227 unsigned int i;
Doug Zongker02ec6b82012-08-22 17:26:40 -07001228 for (i = 0; i < sizeof(buffer) && buffer[i]; ++i) {
1229 if (!isspace(buffer[i])) {
1230 buffer[j++] = buffer[i];
1231 }
1232 }
1233 buffer[j] = 0;
1234 locale = strdup(buffer);
Devin Kim6016d082012-10-08 09:47:37 -07001235 check_and_fclose(fp, LOCALE_FILE);
Doug Zongker02ec6b82012-08-22 17:26:40 -07001236 }
1237}
1238
Doug Zongker7c3ae452013-05-14 11:03:02 -07001239static RecoveryUI* gCurrentUI = NULL;
1240
1241void
1242ui_print(const char* format, ...) {
1243 char buffer[256];
1244
1245 va_list ap;
1246 va_start(ap, format);
1247 vsnprintf(buffer, sizeof(buffer), format, ap);
1248 va_end(ap);
1249
1250 if (gCurrentUI != NULL) {
1251 gCurrentUI->Print("%s", buffer);
1252 } else {
1253 fputs(buffer, stdout);
1254 }
1255}
1256
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -07001257static constexpr char log_characters[] = "VDIWEF";
1258
1259void UiLogger(android::base::LogId id, android::base::LogSeverity severity,
1260 const char* tag, const char* file, unsigned int line,
1261 const char* message) {
1262 if (severity >= android::base::ERROR && gCurrentUI != NULL) {
1263 gCurrentUI->Print("E:%s\n", message);
1264 } else {
1265 fprintf(stdout, "%c:%s\n", log_characters[severity], message);
1266 }
1267}
1268
Yabin Cui99281df2016-02-17 12:21:52 -08001269static bool is_battery_ok() {
1270 struct healthd_config healthd_config = {
1271 .batteryStatusPath = android::String8(android::String8::kEmptyString),
1272 .batteryHealthPath = android::String8(android::String8::kEmptyString),
1273 .batteryPresentPath = android::String8(android::String8::kEmptyString),
1274 .batteryCapacityPath = android::String8(android::String8::kEmptyString),
1275 .batteryVoltagePath = android::String8(android::String8::kEmptyString),
1276 .batteryTemperaturePath = android::String8(android::String8::kEmptyString),
1277 .batteryTechnologyPath = android::String8(android::String8::kEmptyString),
1278 .batteryCurrentNowPath = android::String8(android::String8::kEmptyString),
1279 .batteryCurrentAvgPath = android::String8(android::String8::kEmptyString),
1280 .batteryChargeCounterPath = android::String8(android::String8::kEmptyString),
1281 .batteryFullChargePath = android::String8(android::String8::kEmptyString),
1282 .batteryCycleCountPath = android::String8(android::String8::kEmptyString),
1283 .energyCounter = NULL,
1284 .boot_min_cap = 0,
1285 .screen_on = NULL
1286 };
1287 healthd_board_init(&healthd_config);
1288
1289 android::BatteryMonitor monitor;
1290 monitor.init(&healthd_config);
1291
1292 int wait_second = 0;
1293 while (true) {
1294 int charge_status = monitor.getChargeStatus();
1295 // Treat unknown status as charged.
1296 bool charged = (charge_status != android::BATTERY_STATUS_DISCHARGING &&
1297 charge_status != android::BATTERY_STATUS_NOT_CHARGING);
1298 android::BatteryProperty capacity;
1299 android::status_t status = monitor.getProperty(android::BATTERY_PROP_CAPACITY, &capacity);
1300 ui_print("charge_status %d, charged %d, status %d, capacity %lld\n", charge_status,
1301 charged, status, capacity.valueInt64);
1302 // At startup, the battery drivers in devices like N5X/N6P take some time to load
1303 // the battery profile. Before the load finishes, it reports value 50 as a fake
1304 // capacity. BATTERY_READ_TIMEOUT_IN_SEC is set that the battery drivers are expected
1305 // to finish loading the battery profile earlier than 10 seconds after kernel startup.
1306 if (status == 0 && capacity.valueInt64 == 50) {
1307 if (wait_second < BATTERY_READ_TIMEOUT_IN_SEC) {
1308 sleep(1);
1309 wait_second++;
1310 continue;
1311 }
1312 }
1313 // If we can't read battery percentage, it may be a device without battery. In this
1314 // situation, use 100 as a fake battery percentage.
1315 if (status != 0) {
1316 capacity.valueInt64 = 100;
1317 }
1318 return (charged && capacity.valueInt64 >= BATTERY_WITH_CHARGER_OK_PERCENTAGE) ||
1319 (!charged && capacity.valueInt64 >= BATTERY_OK_PERCENTAGE);
1320 }
1321}
1322
Tianjie Xu3c62b672016-02-05 18:25:58 -08001323static void set_retry_bootloader_message(int retry_count, int argc, char** argv) {
Yabin Cui8b309f62016-06-24 18:22:02 -07001324 bootloader_message boot = {};
Tianjie Xu3c62b672016-02-05 18:25:58 -08001325 strlcpy(boot.command, "boot-recovery", sizeof(boot.command));
1326 strlcpy(boot.recovery, "recovery\n", sizeof(boot.recovery));
1327
1328 for (int i = 1; i < argc; ++i) {
1329 if (strstr(argv[i], "retry_count") == nullptr) {
1330 strlcat(boot.recovery, argv[i], sizeof(boot.recovery));
1331 strlcat(boot.recovery, "\n", sizeof(boot.recovery));
1332 }
1333 }
1334
1335 // Initialize counter to 1 if it's not in BCB, otherwise increment it by 1.
1336 if (retry_count == 0) {
1337 strlcat(boot.recovery, "--retry_count=1\n", sizeof(boot.recovery));
1338 } else {
1339 char buffer[20];
1340 snprintf(buffer, sizeof(buffer), "--retry_count=%d\n", retry_count+1);
1341 strlcat(boot.recovery, buffer, sizeof(boot.recovery));
1342 }
Yabin Cui8b309f62016-06-24 18:22:02 -07001343 std::string err;
1344 if (!write_bootloader_message(boot, &err)) {
1345 LOG(ERROR) << err;
1346 }
Tianjie Xu3c62b672016-02-05 18:25:58 -08001347}
1348
Mark Salyzyna4f701a2016-03-09 14:58:16 -08001349static ssize_t logbasename(
1350 log_id_t /* logId */,
1351 char /* prio */,
1352 const char *filename,
1353 const char * /* buf */, size_t len,
1354 void *arg) {
1355 if (strstr(LAST_KMSG_FILE, filename) ||
1356 strstr(LAST_LOG_FILE, filename)) {
1357 bool *doRotate = reinterpret_cast<bool *>(arg);
1358 *doRotate = true;
1359 }
1360 return len;
1361}
1362
1363static ssize_t logrotate(
1364 log_id_t logId,
1365 char prio,
1366 const char *filename,
1367 const char *buf, size_t len,
1368 void *arg) {
1369 bool *doRotate = reinterpret_cast<bool *>(arg);
1370 if (!*doRotate) {
1371 return __android_log_pmsg_file_write(logId, prio, filename, buf, len);
1372 }
1373
1374 std::string name(filename);
Chih-Hung Hsieh23abfd32016-07-27 10:19:47 -07001375 size_t dot = name.find_last_of('.');
Mark Salyzyna4f701a2016-03-09 14:58:16 -08001376 std::string sub = name.substr(0, dot);
1377
1378 if (!strstr(LAST_KMSG_FILE, sub.c_str()) &&
1379 !strstr(LAST_LOG_FILE, sub.c_str())) {
1380 return __android_log_pmsg_file_write(logId, prio, filename, buf, len);
1381 }
1382
1383 // filename rotation
1384 if (dot == std::string::npos) {
1385 name += ".1";
1386 } else {
1387 std::string number = name.substr(dot + 1);
1388 if (!isdigit(number.data()[0])) {
1389 name += ".1";
1390 } else {
Chih-Hung Hsieh54a27472016-04-18 11:30:55 -07001391 auto i = std::stoull(number);
Mark Salyzyna4f701a2016-03-09 14:58:16 -08001392 name = sub + "." + std::to_string(i + 1);
1393 }
1394 }
1395
1396 return __android_log_pmsg_file_write(logId, prio, name.c_str(), buf, len);
1397}
1398
Yabin Cui99281df2016-02-17 12:21:52 -08001399int main(int argc, char **argv) {
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -07001400 // We don't have logcat yet under recovery; so we'll print error on screen and
1401 // log to stdout (which is redirected to recovery.log) as we used to do.
1402 android::base::InitLogging(argv, &UiLogger);
1403
Mark Salyzyna4f701a2016-03-09 14:58:16 -08001404 // Take last pmsg contents and rewrite it to the current pmsg session.
1405 static const char filter[] = "recovery/";
1406 // Do we need to rotate?
1407 bool doRotate = false;
1408 __android_log_pmsg_file_read(
1409 LOG_ID_SYSTEM, ANDROID_LOG_INFO, filter,
1410 logbasename, &doRotate);
1411 // Take action to refresh pmsg contents
1412 __android_log_pmsg_file_read(
1413 LOG_ID_SYSTEM, ANDROID_LOG_INFO, filter,
1414 logrotate, &doRotate);
1415
Doug Zongker9270a202012-01-09 15:16:13 -08001416 // If this binary is started with the single argument "--adbd",
1417 // instead of being the normal recovery binary, it turns into kind
1418 // of a stripped-down version of adbd that only supports the
1419 // 'sideload' command. Note this must be a real argument, not
1420 // anything in the command file or bootloader control block; the
1421 // only way recovery should be run with this argument is when it
1422 // starts a copy of itself from the apply_from_adb() function.
1423 if (argc == 2 && strcmp(argv[1], "--adbd") == 0) {
Josh Gaoacb2a2f2016-08-26 18:24:34 -07001424 minadbd_main();
Doug Zongker9270a202012-01-09 15:16:13 -08001425 return 0;
1426 }
1427
Tao Bao04ca4262015-09-10 15:32:24 -07001428 time_t start = time(NULL);
1429
1430 // redirect_stdio should be called only in non-sideload mode. Otherwise
1431 // we may have two logger instances with different timestamps.
1432 redirect_stdio(TEMPORARY_LOG_FILE);
1433
Doug Zongker19a8e242014-01-21 09:25:41 -08001434 printf("Starting recovery (pid %d) on %s", getpid(), ctime(&start));
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001435
Doug Zongkerd4208f92010-09-20 12:16:13 -07001436 load_volume_table();
Tao Bao26112e52016-02-25 12:29:40 -08001437 has_cache = volume_for_path(CACHE_ROOT) != nullptr;
1438
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001439 get_args(&argc, &argv);
1440
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001441 const char *update_package = NULL;
Tao Baoe39a9bc2015-03-31 12:19:05 -07001442 bool should_wipe_data = false;
Tao Baoc679f932015-03-30 09:43:49 -07001443 bool should_wipe_cache = false;
Yabin Cui8b309f62016-06-24 18:22:02 -07001444 bool should_wipe_ab = false;
Tao Bao145d8612015-03-25 15:51:15 -07001445 bool show_text = false;
Tao Baoc679f932015-03-30 09:43:49 -07001446 bool sideload = false;
1447 bool sideload_auto_reboot = false;
Doug Zongkere5d5ac72012-04-12 11:01:22 -07001448 bool just_exit = false;
Doug Zongkerb1d12632014-03-18 10:32:12 -07001449 bool shutdown_after = false;
Tianjie Xu3c62b672016-02-05 18:25:58 -08001450 int retry_count = 0;
Tianjie Xu35926c42016-04-28 18:06:26 -07001451 bool security_update = false;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001452
1453 int arg;
Tao Bao862a4c12016-06-02 11:16:50 -07001454 int option_index;
1455 while ((arg = getopt_long(argc, argv, "", OPTIONS, &option_index)) != -1) {
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001456 switch (arg) {
Tianjie Xu3c62b672016-02-05 18:25:58 -08001457 case 'n': android::base::ParseInt(optarg, &retry_count, 0); break;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001458 case 'u': update_package = optarg; break;
Tao Baoe39a9bc2015-03-31 12:19:05 -07001459 case 'w': should_wipe_data = true; break;
Tao Baoc679f932015-03-30 09:43:49 -07001460 case 'c': should_wipe_cache = true; break;
Tao Bao145d8612015-03-25 15:51:15 -07001461 case 't': show_text = true; break;
Tao Baoc679f932015-03-30 09:43:49 -07001462 case 's': sideload = true; break;
1463 case 'a': sideload = true; sideload_auto_reboot = true; break;
Doug Zongkere5d5ac72012-04-12 11:01:22 -07001464 case 'x': just_exit = true; break;
Doug Zongker02ec6b82012-08-22 17:26:40 -07001465 case 'l': locale = optarg; break;
Doug Zongkerc87bab12013-11-25 13:53:25 -08001466 case 'g': {
1467 if (stage == NULL || *stage == '\0') {
1468 char buffer[20] = "1/";
1469 strncat(buffer, optarg, sizeof(buffer)-3);
1470 stage = strdup(buffer);
1471 }
1472 break;
1473 }
Doug Zongkerb1d12632014-03-18 10:32:12 -07001474 case 'p': shutdown_after = true; break;
Jeff Sharkeya6e13ae2014-09-24 11:46:17 -07001475 case 'r': reason = optarg; break;
Tianjie Xu35926c42016-04-28 18:06:26 -07001476 case 'e': security_update = true; break;
Tao Bao862a4c12016-06-02 11:16:50 -07001477 case 0: {
Yabin Cui8b309f62016-06-24 18:22:02 -07001478 if (strcmp(OPTIONS[option_index].name, "wipe_ab") == 0) {
1479 should_wipe_ab = true;
Tao Bao862a4c12016-06-02 11:16:50 -07001480 break;
1481 }
1482 break;
1483 }
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001484 case '?':
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -07001485 LOG(ERROR) << "Invalid command argument";
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001486 continue;
1487 }
1488 }
1489
Tao Bao26112e52016-02-25 12:29:40 -08001490 if (locale == nullptr && has_cache) {
Doug Zongker02ec6b82012-08-22 17:26:40 -07001491 load_locale_from_cache();
1492 }
1493 printf("locale is [%s]\n", locale);
Doug Zongker0d32f252014-02-13 15:07:56 -08001494 printf("stage is [%s]\n", stage);
Jeff Sharkeya6e13ae2014-09-24 11:46:17 -07001495 printf("reason is [%s]\n", reason);
Doug Zongker02ec6b82012-08-22 17:26:40 -07001496
1497 Device* device = make_device();
1498 ui = device->GetUI();
Doug Zongker7c3ae452013-05-14 11:03:02 -07001499 gCurrentUI = ui;
Doug Zongker02ec6b82012-08-22 17:26:40 -07001500
Doug Zongker5fa8c232012-09-18 12:37:02 -07001501 ui->SetLocale(locale);
Doug Zongker02ec6b82012-08-22 17:26:40 -07001502 ui->Init();
Tianjie Xu35926c42016-04-28 18:06:26 -07001503 // Set background string to "installing security update" for security update,
1504 // otherwise set it to "installing system update".
1505 ui->SetSystemUpdateText(security_update);
Doug Zongkerc87bab12013-11-25 13:53:25 -08001506
1507 int st_cur, st_max;
1508 if (stage != NULL && sscanf(stage, "%d/%d", &st_cur, &st_max) == 2) {
1509 ui->SetStage(st_cur, st_max);
1510 }
1511
Doug Zongker02ec6b82012-08-22 17:26:40 -07001512 ui->SetBackground(RecoveryUI::NONE);
1513 if (show_text) ui->ShowText(true);
1514
Stephen Smalley779701d2012-02-09 14:13:23 -05001515 struct selinux_opt seopts[] = {
1516 { SELABEL_OPT_PATH, "/file_contexts" }
1517 };
1518
1519 sehandle = selabel_open(SELABEL_CTX_FILE, seopts, 1);
1520
1521 if (!sehandle) {
Doug Zongkerfafc85b2013-07-09 12:29:45 -07001522 ui->Print("Warning: No file_contexts\n");
Stephen Smalley779701d2012-02-09 14:13:23 -05001523 }
Stephen Smalley779701d2012-02-09 14:13:23 -05001524
Doug Zongkerdaefc1d2011-10-31 09:34:15 -07001525 device->StartRecovery();
Doug Zongkerefa1bab2010-02-01 15:59:12 -08001526
Doug Zongker56c51052010-07-01 09:18:44 -07001527 printf("Command:");
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001528 for (arg = 0; arg < argc; arg++) {
Doug Zongker56c51052010-07-01 09:18:44 -07001529 printf(" \"%s\"", argv[arg]);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001530 }
Doug Zongker9b125b02010-09-22 12:01:37 -07001531 printf("\n");
1532
1533 if (update_package) {
1534 // For backwards compatibility on the cache partition only, if
1535 // we're given an old 'root' path "CACHE:foo", change it to
1536 // "/cache/foo".
1537 if (strncmp(update_package, "CACHE:", 6) == 0) {
1538 int len = strlen(update_package) + 10;
Doug Zongker28ce47c2011-10-28 10:33:05 -07001539 char* modified_path = (char*)malloc(len);
Jeremy Compostella1b7d9b72015-07-29 17:17:03 +02001540 if (modified_path) {
1541 strlcpy(modified_path, "/cache/", len);
1542 strlcat(modified_path, update_package+6, len);
1543 printf("(replacing path \"%s\" with \"%s\")\n",
1544 update_package, modified_path);
1545 update_package = modified_path;
1546 }
1547 else
1548 printf("modified_path allocation failed\n");
Doug Zongker9b125b02010-09-22 12:01:37 -07001549 }
1550 }
1551 printf("\n");
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001552
1553 property_list(print_property, NULL);
Doug Zongker56c51052010-07-01 09:18:44 -07001554 printf("\n");
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001555
Elliott Hughesbb78d622015-04-09 20:51:08 -07001556 ui->Print("Supported API: %d\n", RECOVERY_API_VERSION);
1557
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001558 int status = INSTALL_SUCCESS;
1559
Doug Zongker540d57f2011-01-18 13:36:58 -08001560 if (update_package != NULL) {
Tao Bao56870012016-04-29 15:37:05 -07001561 // It's not entirely true that we will modify the flash. But we want
1562 // to log the update attempt since update_package is non-NULL.
1563 modified_flash = true;
1564
Yabin Cui99281df2016-02-17 12:21:52 -08001565 if (!is_battery_ok()) {
1566 ui->Print("battery capacity is not enough for installing package, needed is %d%%\n",
1567 BATTERY_OK_PERCENTAGE);
Tianjie Xu16255832016-04-30 11:49:59 -07001568 // Log the error code to last_install when installation skips due to
1569 // low battery.
Tao Baof4885ad2016-09-26 11:39:14 -07001570 std::vector<std::string> log_buffer = {
1571 update_package,
1572 "0", // install result
1573 "error: " + std::to_string(kLowBattery),
1574 };
1575 std::string log_content = android::base::Join(log_buffer, "\n");
1576 if (!android::base::WriteStringToFile(log_content, LAST_INSTALL_FILE)) {
1577 PLOG(ERROR) << "failed to write " << LAST_INSTALL_FILE;
Tianjie Xu16255832016-04-30 11:49:59 -07001578 }
Tao Baof4885ad2016-09-26 11:39:14 -07001579
1580 // Also write the info into last_log.
1581 LOG(INFO) << log_content;
1582
Yabin Cui99281df2016-02-17 12:21:52 -08001583 status = INSTALL_SKIPPED;
1584 } else {
1585 status = install_package(update_package, &should_wipe_cache,
Tianjie Xu16255832016-04-30 11:49:59 -07001586 TEMPORARY_INSTALL_FILE, true, retry_count);
Yabin Cui99281df2016-02-17 12:21:52 -08001587 if (status == INSTALL_SUCCESS && should_wipe_cache) {
1588 wipe_cache(false, device);
1589 }
1590 if (status != INSTALL_SUCCESS) {
1591 ui->Print("Installation aborted.\n");
Tianjie Xu3c62b672016-02-05 18:25:58 -08001592 // When I/O error happens, reboot and retry installation EIO_RETRY_COUNT
1593 // times before we abandon this OTA update.
1594 if (status == INSTALL_RETRY && retry_count < EIO_RETRY_COUNT) {
1595 copy_logs();
1596 set_retry_bootloader_message(retry_count, argc, argv);
1597 // Print retry count on screen.
1598 ui->Print("Retry attempt %d\n", retry_count);
Doug Zongker7c3ae452013-05-14 11:03:02 -07001599
Tianjie Xu3c62b672016-02-05 18:25:58 -08001600 // Reboot and retry the update
Elliott Hughescb220402016-09-23 15:30:55 -07001601 if (!android::base::SetProperty(ANDROID_RB_PROPERTY, "reboot,recovery")) {
Tianjie Xu3c62b672016-02-05 18:25:58 -08001602 ui->Print("Reboot failed\n");
1603 } else {
1604 while (true) {
1605 pause();
1606 }
1607 }
1608 }
Yabin Cui99281df2016-02-17 12:21:52 -08001609 // If this is an eng or userdebug build, then automatically
1610 // turn the text display on if the script fails so the error
1611 // message is visible.
1612 if (is_ro_debuggable()) {
1613 ui->ShowText(true);
1614 }
Doug Zongker7c3ae452013-05-14 11:03:02 -07001615 }
1616 }
Tao Baoe39a9bc2015-03-31 12:19:05 -07001617 } else if (should_wipe_data) {
1618 if (!wipe_data(false, device)) {
1619 status = INSTALL_ERROR;
1620 }
Tao Baoc679f932015-03-30 09:43:49 -07001621 } else if (should_wipe_cache) {
Tao Baoe39a9bc2015-03-31 12:19:05 -07001622 if (!wipe_cache(false, device)) {
1623 status = INSTALL_ERROR;
1624 }
Yabin Cui8b309f62016-06-24 18:22:02 -07001625 } else if (should_wipe_ab) {
1626 if (!wipe_ab_device()) {
Tao Bao862a4c12016-06-02 11:16:50 -07001627 status = INSTALL_ERROR;
1628 }
Tao Baoc679f932015-03-30 09:43:49 -07001629 } else if (sideload) {
1630 // 'adb reboot sideload' acts the same as user presses key combinations
1631 // to enter the sideload mode. When 'sideload-auto-reboot' is used, text
1632 // display will NOT be turned on by default. And it will reboot after
1633 // sideload finishes even if there are errors. Unless one turns on the
1634 // text display during the installation. This is to enable automated
1635 // testing.
1636 if (!sideload_auto_reboot) {
1637 ui->ShowText(true);
1638 }
1639 status = apply_from_adb(ui, &should_wipe_cache, TEMPORARY_INSTALL_FILE);
1640 if (status == INSTALL_SUCCESS && should_wipe_cache) {
Tao Baoe39a9bc2015-03-31 12:19:05 -07001641 if (!wipe_cache(false, device)) {
1642 status = INSTALL_ERROR;
1643 }
Tao Baoc679f932015-03-30 09:43:49 -07001644 }
1645 ui->Print("\nInstall from ADB complete (status: %d).\n", status);
1646 if (sideload_auto_reboot) {
1647 ui->Print("Rebooting automatically.\n");
1648 }
Doug Zongkere5d5ac72012-04-12 11:01:22 -07001649 } else if (!just_exit) {
Doug Zongker02ec6b82012-08-22 17:26:40 -07001650 status = INSTALL_NONE; // No command specified
1651 ui->SetBackground(RecoveryUI::NO_COMMAND);
Tao Bao785d22c2015-05-04 09:34:29 -07001652
1653 // http://b/17489952
1654 // If this is an eng or userdebug build, automatically turn on the
1655 // text display if no command is specified.
1656 if (is_ro_debuggable()) {
1657 ui->ShowText(true);
1658 }
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001659 }
1660
Tao Baoc679f932015-03-30 09:43:49 -07001661 if (!sideload_auto_reboot && (status == INSTALL_ERROR || status == INSTALL_CORRUPT)) {
Doug Zongkerf24fd7e2013-07-02 11:43:25 -07001662 copy_logs();
Doug Zongker02ec6b82012-08-22 17:26:40 -07001663 ui->SetBackground(RecoveryUI::ERROR);
1664 }
Tao Baoc679f932015-03-30 09:43:49 -07001665
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001666 Device::BuiltinAction after = shutdown_after ? Device::SHUTDOWN : Device::REBOOT;
Yabin Cui99281df2016-02-17 12:21:52 -08001667 if ((status != INSTALL_SUCCESS && status != INSTALL_SKIPPED && !sideload_auto_reboot) ||
1668 ui->IsTextVisible()) {
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001669 Device::BuiltinAction temp = prompt_and_wait(device, status);
Tao Baoc679f932015-03-30 09:43:49 -07001670 if (temp != Device::NO_ACTION) {
1671 after = temp;
1672 }
Doug Zongker8674a722010-09-15 11:08:23 -07001673 }
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001674
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001675 // Save logs and clean up before rebooting or shutting down.
Tianjie Xuc14d95d2016-03-24 11:50:34 -07001676 finish_recovery();
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001677
1678 switch (after) {
1679 case Device::SHUTDOWN:
1680 ui->Print("Shutting down...\n");
Elliott Hughescb220402016-09-23 15:30:55 -07001681 android::base::SetProperty(ANDROID_RB_PROPERTY, "shutdown,");
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001682 break;
1683
1684 case Device::REBOOT_BOOTLOADER:
1685 ui->Print("Rebooting to bootloader...\n");
Elliott Hughescb220402016-09-23 15:30:55 -07001686 android::base::SetProperty(ANDROID_RB_PROPERTY, "reboot,bootloader");
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001687 break;
1688
1689 default:
1690 ui->Print("Rebooting...\n");
Elliott Hughescb220402016-09-23 15:30:55 -07001691 android::base::SetProperty(ANDROID_RB_PROPERTY, "reboot,");
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001692 break;
Doug Zongkerb1d12632014-03-18 10:32:12 -07001693 }
Tao Bao75238632015-05-27 14:46:17 -07001694 while (true) {
1695 pause();
1696 }
1697 // Should be unreachable.
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001698 return EXIT_SUCCESS;
1699}