blob: 6989fe00d93b44f77fed1d245cb77f14dd44a411 [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>
Mark Salyzyna4f701a2016-03-09 14:58:16 -080042#include <android/log.h> /* Android Log Priority Tags */
Elliott Hughes4b166f02015-12-04 15:30:20 -080043#include <android-base/file.h>
Tianjie Xu3c62b672016-02-05 18:25:58 -080044#include <android-base/parseint.h>
Elliott Hughes4b166f02015-12-04 15:30:20 -080045#include <android-base/stringprintf.h>
Tao Bao862a4c12016-06-02 11:16:50 -070046#include <android-base/strings.h>
47#include <android-base/unique_fd.h>
Yabin Cui2f272c02016-06-24 18:22:02 -070048#include <bootloader_message/bootloader_message.h>
Tao Bao75238632015-05-27 14:46:17 -070049#include <cutils/android_reboot.h>
50#include <cutils/properties.h>
Elliott Hughes4bbd5bf2016-04-01 18:24:39 -070051#include <healthd/BatteryMonitor.h>
Mark Salyzyna4f701a2016-03-09 14:58:16 -080052#include <log/logger.h> /* Android Log packet format */
53#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>
Yabin Cui99281df2016-02-17 12:21:52 -080056
Tao Bao75238632015-05-27 14:46:17 -070057#include "adb_install.h"
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080058#include "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"
64#include "minui/minui.h"
65#include "minzip/DirUtil.h"
Yabin Cui6faf0262016-06-09 14:09:39 -070066#include "minzip/Zip.h"
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080067#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 Bao108ab212016-06-10 10:13:32 -070087 { "wipe_ab", no_argument, NULL, 0 },
Yabin Cui6faf0262016-06-09 14:09:39 -070088 { "wipe_package_size", required_argument, NULL, 0 },
Doug Zongker988500b2009-10-06 14:41:38 -070089 { NULL, 0, NULL, 0 },
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080090};
91
Tianjie Xu27b9fc82016-07-11 14:04:08 -070092// More bootreasons can be found in "system/core/bootstat/bootstat.cpp".
93static const std::vector<std::string> bootreason_blacklist {
94 "kernel_panic",
95 "Panic",
96};
97
Doug Zongker6d0d7ac2013-07-09 13:34:55 -070098static const char *CACHE_LOG_DIR = "/cache/recovery";
Doug Zongkerd4208f92010-09-20 12:16:13 -070099static const char *COMMAND_FILE = "/cache/recovery/command";
Doug Zongkerd4208f92010-09-20 12:16:13 -0700100static const char *LOG_FILE = "/cache/recovery/log";
Doug Zongkerd0181b82011-10-19 10:51:12 -0700101static const char *LAST_INSTALL_FILE = "/cache/recovery/last_install";
Doug Zongker8b240cc2012-08-29 15:19:29 -0700102static const char *LOCALE_FILE = "/cache/recovery/last_locale";
Paul Lawrence661f8a62016-02-25 12:42:19 -0800103static const char *CONVERT_FBE_DIR = "/tmp/convert_fbe";
104static const char *CONVERT_FBE_FILE = "/tmp/convert_fbe/convert_fbe";
Michael Ward9d2629c2011-06-23 22:14:24 -0700105static const char *CACHE_ROOT = "/cache";
Paul Lawrenced0db3372015-11-05 13:38:40 -0800106static const char *DATA_ROOT = "/data";
Doug Zongkerd4208f92010-09-20 12:16:13 -0700107static const char *SDCARD_ROOT = "/sdcard";
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800108static const char *TEMPORARY_LOG_FILE = "/tmp/recovery.log";
Doug Zongkerd0181b82011-10-19 10:51:12 -0700109static const char *TEMPORARY_INSTALL_FILE = "/tmp/last_install";
Tao Baof0124322015-04-11 02:04:11 +0000110static const char *LAST_KMSG_FILE = "/cache/recovery/last_kmsg";
Tao Baobef39712015-05-04 18:50:27 -0700111static const char *LAST_LOG_FILE = "/cache/recovery/last_log";
112static const int KEEP_LOG_COUNT = 10;
Tianjie Xuc37c5c32016-06-23 16:52:17 -0700113// We will try to apply the update package 5 times at most in case of an I/O error.
114static const int EIO_RETRY_COUNT = 4;
Yabin Cui99281df2016-02-17 12:21:52 -0800115static const int BATTERY_READ_TIMEOUT_IN_SEC = 10;
116// GmsCore enters recovery mode to install package when having enough battery
117// percentage. Normally, the threshold is 40% without charger and 20% with charger.
118// So we should check battery with a slightly lower limitation.
119static const int BATTERY_OK_PERCENTAGE = 20;
120static const int BATTERY_WITH_CHARGER_OK_PERCENTAGE = 15;
Tao Bao108ab212016-06-10 10:13:32 -0700121constexpr const char* RECOVERY_WIPE = "/etc/recovery.wipe";
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700122
Doug Zongker211aebc2011-10-28 15:13:10 -0700123RecoveryUI* ui = NULL;
Elliott Hughes498cda62016-04-14 16:49:04 -0700124static const char* locale = "en_US";
Doug Zongkerc87bab12013-11-25 13:53:25 -0800125char* stage = NULL;
Jeff Sharkeya6e13ae2014-09-24 11:46:17 -0700126char* reason = NULL;
Tao Bao682c34b2015-04-07 17:16:35 -0700127bool modified_flash = false;
Tao Bao26112e52016-02-25 12:29:40 -0800128static bool has_cache = false;
Doug Zongker211aebc2011-10-28 15:13:10 -0700129
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800130/*
131 * The recovery tool communicates with the main system through /cache files.
132 * /cache/recovery/command - INPUT - command line for tool, one arg per line
133 * /cache/recovery/log - OUTPUT - combined log file from recovery run(s)
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800134 *
135 * The arguments which may be supplied in the recovery.command file:
Doug Zongkerd4208f92010-09-20 12:16:13 -0700136 * --update_package=path - verify install an OTA package file
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800137 * --wipe_data - erase user data (and cache), then reboot
138 * --wipe_cache - wipe cache (but not user data), then reboot
Oscar Montemayor05231562009-11-30 08:40:57 -0800139 * --set_encrypted_filesystem=on|off - enables / diasables encrypted fs
Doug Zongkere5d5ac72012-04-12 11:01:22 -0700140 * --just_exit - do nothing; exit and reboot
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800141 *
142 * After completing, we remove /cache/recovery/command and reboot.
143 * Arguments may also be supplied in the bootloader control block (BCB).
144 * These important scenarios must be safely restartable at any point:
145 *
146 * FACTORY RESET
147 * 1. user selects "factory reset"
148 * 2. main system writes "--wipe_data" to /cache/recovery/command
149 * 3. main system reboots into recovery
150 * 4. get_args() writes BCB with "boot-recovery" and "--wipe_data"
151 * -- after this, rebooting will restart the erase --
Doug Zongkerd4208f92010-09-20 12:16:13 -0700152 * 5. erase_volume() reformats /data
153 * 6. erase_volume() reformats /cache
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800154 * 7. finish_recovery() erases BCB
155 * -- after this, rebooting will restart the main system --
156 * 8. main() calls reboot() to boot main system
157 *
158 * OTA INSTALL
159 * 1. main system downloads OTA package to /cache/some-filename.zip
Doug Zongker9b125b02010-09-22 12:01:37 -0700160 * 2. main system writes "--update_package=/cache/some-filename.zip"
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800161 * 3. main system reboots into recovery
162 * 4. get_args() writes BCB with "boot-recovery" and "--update_package=..."
163 * -- after this, rebooting will attempt to reinstall the update --
164 * 5. install_package() attempts to install the update
165 * NOTE: the package install must itself be restartable from any point
166 * 6. finish_recovery() erases BCB
167 * -- after this, rebooting will (try to) restart the main system --
168 * 7. ** if install failed **
169 * 7a. prompt_and_wait() shows an error icon and waits for the user
170 * 7b; the user reboots (pulling the battery, etc) into the main system
171 * 8. main() calls maybe_install_firmware_update()
172 * ** if the update contained radio/hboot firmware **:
173 * 8a. m_i_f_u() writes BCB with "boot-recovery" and "--wipe_cache"
174 * -- after this, rebooting will reformat cache & restart main system --
175 * 8b. m_i_f_u() writes firmware image into raw cache partition
176 * 8c. m_i_f_u() writes BCB with "update-radio/hboot" and "--wipe_cache"
177 * -- after this, rebooting will attempt to reinstall firmware --
178 * 8d. bootloader tries to flash firmware
179 * 8e. bootloader writes BCB with "boot-recovery" (keeping "--wipe_cache")
180 * -- after this, rebooting will reformat cache & restart main system --
Doug Zongkerd4208f92010-09-20 12:16:13 -0700181 * 8f. erase_volume() reformats /cache
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800182 * 8g. finish_recovery() erases BCB
183 * -- after this, rebooting will (try to) restart the main system --
184 * 9. main() calls reboot() to boot main system
185 */
186
187static const int MAX_ARG_LENGTH = 4096;
188static const int MAX_ARGS = 100;
189
Doug Zongkerd4208f92010-09-20 12:16:13 -0700190// open a given path, mounting partitions as necessary
Tao Bao04ca4262015-09-10 15:32:24 -0700191FILE* fopen_path(const char *path, const char *mode) {
Doug Zongkerd4208f92010-09-20 12:16:13 -0700192 if (ensure_path_mounted(path) != 0) {
193 LOGE("Can't mount %s\n", path);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800194 return NULL;
195 }
196
197 // When writing, try to create the containing directory, if necessary.
198 // Use generous permissions, the system (init.rc) will reset them.
Stephen Smalley779701d2012-02-09 14:13:23 -0500199 if (strchr("wa", mode[0])) dirCreateHierarchy(path, 0777, NULL, 1, sehandle);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800200
201 FILE *fp = fopen(path, mode);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800202 return fp;
203}
204
Tao Bao04ca4262015-09-10 15:32:24 -0700205// close a file, log an error if the error indicator is set
206static void check_and_fclose(FILE *fp, const char *name) {
207 fflush(fp);
208 if (ferror(fp)) LOGE("Error in %s\n(%s)\n", name, strerror(errno));
209 fclose(fp);
210}
211
Elliott Hughesf14af802015-02-10 14:46:14 -0800212bool is_ro_debuggable() {
213 char value[PROPERTY_VALUE_MAX+1];
214 return (property_get("ro.debuggable", value, NULL) == 1 && value[0] == '1');
215}
216
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700217static void redirect_stdio(const char* filename) {
Tao Bao04ca4262015-09-10 15:32:24 -0700218 int pipefd[2];
219 if (pipe(pipefd) == -1) {
220 LOGE("pipe failed: %s\n", strerror(errno));
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700221
Tao Bao04ca4262015-09-10 15:32:24 -0700222 // Fall back to traditional logging mode without timestamps.
223 // If these fail, there's not really anywhere to complain...
224 freopen(filename, "a", stdout); setbuf(stdout, NULL);
225 freopen(filename, "a", stderr); setbuf(stderr, NULL);
226
227 return;
228 }
229
230 pid_t pid = fork();
231 if (pid == -1) {
232 LOGE("fork failed: %s\n", strerror(errno));
233
234 // Fall back to traditional logging mode without timestamps.
235 // If these fail, there's not really anywhere to complain...
236 freopen(filename, "a", stdout); setbuf(stdout, NULL);
237 freopen(filename, "a", stderr); setbuf(stderr, NULL);
238
239 return;
240 }
241
242 if (pid == 0) {
243 /// Close the unused write end.
244 close(pipefd[1]);
245
246 auto start = std::chrono::steady_clock::now();
247
248 // Child logger to actually write to the log file.
249 FILE* log_fp = fopen(filename, "a");
250 if (log_fp == nullptr) {
251 LOGE("fopen \"%s\" failed: %s\n", filename, strerror(errno));
252 close(pipefd[0]);
253 _exit(1);
254 }
255
256 FILE* pipe_fp = fdopen(pipefd[0], "r");
257 if (pipe_fp == nullptr) {
258 LOGE("fdopen failed: %s\n", strerror(errno));
259 check_and_fclose(log_fp, filename);
260 close(pipefd[0]);
261 _exit(1);
262 }
263
264 char* line = nullptr;
265 size_t len = 0;
266 while (getline(&line, &len, pipe_fp) != -1) {
267 auto now = std::chrono::steady_clock::now();
268 double duration = std::chrono::duration_cast<std::chrono::duration<double>>(
269 now - start).count();
270 if (line[0] == '\n') {
271 fprintf(log_fp, "[%12.6lf]\n", duration);
272 } else {
273 fprintf(log_fp, "[%12.6lf] %s", duration, line);
274 }
275 fflush(log_fp);
276 }
277
278 LOGE("getline failed: %s\n", strerror(errno));
279
280 free(line);
281 check_and_fclose(log_fp, filename);
282 close(pipefd[0]);
283 _exit(1);
284 } else {
285 // Redirect stdout/stderr to the logger process.
286 // Close the unused read end.
287 close(pipefd[0]);
288
289 setbuf(stdout, nullptr);
290 setbuf(stderr, nullptr);
291
292 if (dup2(pipefd[1], STDOUT_FILENO) == -1) {
293 LOGE("dup2 stdout failed: %s\n", strerror(errno));
294 }
295 if (dup2(pipefd[1], STDERR_FILENO) == -1) {
296 LOGE("dup2 stderr failed: %s\n", strerror(errno));
297 }
298
299 close(pipefd[1]);
300 }
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800301}
302
303// command line args come from, in decreasing precedence:
304// - the actual command line
305// - the bootloader control block (one per line, after "recovery")
306// - the contents of COMMAND_FILE (one per line)
307static void
308get_args(int *argc, char ***argv) {
Yabin Cui2f272c02016-06-24 18:22:02 -0700309 bootloader_message boot = {};
310 std::string err;
311 if (!read_bootloader_message(&boot, &err)) {
312 LOGE("%s\n", err.c_str());
313 // If fails, leave a zeroed bootloader_message.
314 memset(&boot, 0, sizeof(boot));
315 }
Doug Zongkerc87bab12013-11-25 13:53:25 -0800316 stage = strndup(boot.stage, sizeof(boot.stage));
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800317
318 if (boot.command[0] != 0 && boot.command[0] != 255) {
Mark Salyzynf3bb31c2014-03-14 09:39:48 -0700319 LOGI("Boot command: %.*s\n", (int)sizeof(boot.command), boot.command);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800320 }
321
322 if (boot.status[0] != 0 && boot.status[0] != 255) {
Mark Salyzynf3bb31c2014-03-14 09:39:48 -0700323 LOGI("Boot status: %.*s\n", (int)sizeof(boot.status), boot.status);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800324 }
325
326 // --- if arguments weren't supplied, look in the bootloader control block
327 if (*argc <= 1) {
328 boot.recovery[sizeof(boot.recovery) - 1] = '\0'; // Ensure termination
329 const char *arg = strtok(boot.recovery, "\n");
330 if (arg != NULL && !strcmp(arg, "recovery")) {
331 *argv = (char **) malloc(sizeof(char *) * MAX_ARGS);
332 (*argv)[0] = strdup(arg);
333 for (*argc = 1; *argc < MAX_ARGS; ++*argc) {
334 if ((arg = strtok(NULL, "\n")) == NULL) break;
335 (*argv)[*argc] = strdup(arg);
336 }
337 LOGI("Got arguments from boot message\n");
338 } else if (boot.recovery[0] != 0 && boot.recovery[0] != 255) {
339 LOGE("Bad boot message\n\"%.20s\"\n", boot.recovery);
340 }
341 }
342
Tao Bao26112e52016-02-25 12:29:40 -0800343 // --- if that doesn't work, try the command file (if we have /cache).
344 if (*argc <= 1 && has_cache) {
Doug Zongkerd4208f92010-09-20 12:16:13 -0700345 FILE *fp = fopen_path(COMMAND_FILE, "r");
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800346 if (fp != NULL) {
Jin Feng93ffa752013-06-04 17:46:24 +0800347 char *token;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800348 char *argv0 = (*argv)[0];
349 *argv = (char **) malloc(sizeof(char *) * MAX_ARGS);
350 (*argv)[0] = argv0; // use the same program name
351
352 char buf[MAX_ARG_LENGTH];
353 for (*argc = 1; *argc < MAX_ARGS; ++*argc) {
354 if (!fgets(buf, sizeof(buf), fp)) break;
Jin Feng93ffa752013-06-04 17:46:24 +0800355 token = strtok(buf, "\r\n");
356 if (token != NULL) {
357 (*argv)[*argc] = strdup(token); // Strip newline.
358 } else {
359 --*argc;
360 }
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800361 }
362
363 check_and_fclose(fp, COMMAND_FILE);
364 LOGI("Got arguments from %s\n", COMMAND_FILE);
365 }
366 }
367
368 // --> write the arguments we have back into the bootloader control block
369 // always boot into recovery after this (until finish_recovery() is called)
370 strlcpy(boot.command, "boot-recovery", sizeof(boot.command));
371 strlcpy(boot.recovery, "recovery\n", sizeof(boot.recovery));
372 int i;
373 for (i = 1; i < *argc; ++i) {
374 strlcat(boot.recovery, (*argv)[i], sizeof(boot.recovery));
375 strlcat(boot.recovery, "\n", sizeof(boot.recovery));
376 }
Yabin Cui2f272c02016-06-24 18:22:02 -0700377 if (!write_bootloader_message(boot, &err)) {
378 LOGE("%s\n", err.c_str());
379 }
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800380}
381
Doug Zongker34c98df2009-08-18 12:05:45 -0700382static void
Oscar Montemayor05231562009-11-30 08:40:57 -0800383set_sdcard_update_bootloader_message() {
Yabin Cui2f272c02016-06-24 18:22:02 -0700384 bootloader_message boot = {};
Doug Zongker34c98df2009-08-18 12:05:45 -0700385 strlcpy(boot.command, "boot-recovery", sizeof(boot.command));
386 strlcpy(boot.recovery, "recovery\n", sizeof(boot.recovery));
Yabin Cui2f272c02016-06-24 18:22:02 -0700387 std::string err;
388 if (!write_bootloader_message(boot, &err)) {
389 LOGE("%s\n", err.c_str());
390 }
Doug Zongker34c98df2009-08-18 12:05:45 -0700391}
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800392
Tao Baobef39712015-05-04 18:50:27 -0700393// Read from kernel log into buffer and write out to file.
394static void save_kernel_log(const char* destination) {
395 int klog_buf_len = klogctl(KLOG_SIZE_BUFFER, 0, 0);
Patrick Tjincd055ee2014-12-09 11:26:40 -0800396 if (klog_buf_len <= 0) {
Tao Baobef39712015-05-04 18:50:27 -0700397 LOGE("Error getting klog size: %s\n", strerror(errno));
Patrick Tjincd055ee2014-12-09 11:26:40 -0800398 return;
399 }
400
Tao Baobef39712015-05-04 18:50:27 -0700401 std::string buffer(klog_buf_len, 0);
402 int n = klogctl(KLOG_READ_ALL, &buffer[0], klog_buf_len);
403 if (n == -1) {
404 LOGE("Error in reading klog: %s\n", strerror(errno));
Patrick Tjincd055ee2014-12-09 11:26:40 -0800405 return;
406 }
Tao Baobef39712015-05-04 18:50:27 -0700407 buffer.resize(n);
408 android::base::WriteStringToFile(buffer, destination);
Patrick Tjincd055ee2014-12-09 11:26:40 -0800409}
410
Mark Salyzyna4f701a2016-03-09 14:58:16 -0800411// write content to the current pmsg session.
412static ssize_t __pmsg_write(const char *filename, const char *buf, size_t len) {
413 return __android_log_pmsg_file_write(LOG_ID_SYSTEM, ANDROID_LOG_INFO,
414 filename, buf, len);
415}
416
417static void copy_log_file_to_pmsg(const char* source, const char* destination) {
418 std::string content;
419 android::base::ReadFileToString(source, &content);
420 __pmsg_write(destination, content.c_str(), content.length());
421}
422
Tao Baof0124322015-04-11 02:04:11 +0000423// How much of the temp log we have copied to the copy in cache.
Chih-Hung Hsieh54a27472016-04-18 11:30:55 -0700424static off_t tmplog_offset = 0;
Tao Baof0124322015-04-11 02:04:11 +0000425
Tao Baobef39712015-05-04 18:50:27 -0700426static void copy_log_file(const char* source, const char* destination, bool append) {
427 FILE* dest_fp = fopen_path(destination, append ? "a" : "w");
428 if (dest_fp == nullptr) {
Doug Zongker2c3539e2010-09-29 13:21:30 -0700429 LOGE("Can't open %s\n", destination);
430 } else {
Tao Baobef39712015-05-04 18:50:27 -0700431 FILE* source_fp = fopen(source, "r");
432 if (source_fp != nullptr) {
Tao Baof0124322015-04-11 02:04:11 +0000433 if (append) {
Chih-Hung Hsieh54a27472016-04-18 11:30:55 -0700434 fseeko(source_fp, tmplog_offset, SEEK_SET); // Since last write
Doug Zongker2c3539e2010-09-29 13:21:30 -0700435 }
436 char buf[4096];
Tao Baobef39712015-05-04 18:50:27 -0700437 size_t bytes;
438 while ((bytes = fread(buf, 1, sizeof(buf), source_fp)) != 0) {
439 fwrite(buf, 1, bytes, dest_fp);
Doug Zongker2c3539e2010-09-29 13:21:30 -0700440 }
Tao Baobef39712015-05-04 18:50:27 -0700441 if (append) {
Chih-Hung Hsieh54a27472016-04-18 11:30:55 -0700442 tmplog_offset = ftello(source_fp);
Tao Baobef39712015-05-04 18:50:27 -0700443 }
444 check_and_fclose(source_fp, source);
Doug Zongker2c3539e2010-09-29 13:21:30 -0700445 }
Tao Baobef39712015-05-04 18:50:27 -0700446 check_and_fclose(dest_fp, destination);
Doug Zongker2c3539e2010-09-29 13:21:30 -0700447 }
448}
449
Tao Baobef39712015-05-04 18:50:27 -0700450// Rename last_log -> last_log.1 -> last_log.2 -> ... -> last_log.$max.
451// Similarly rename last_kmsg -> last_kmsg.1 -> ... -> last_kmsg.$max.
452// Overwrite any existing last_log.$max and last_kmsg.$max.
453static void rotate_logs(int max) {
Tao Bao682c34b2015-04-07 17:16:35 -0700454 // Logs should only be rotated once.
455 static bool rotated = false;
456 if (rotated) {
457 return;
458 }
459 rotated = true;
460 ensure_path_mounted(LAST_LOG_FILE);
Tao Baobef39712015-05-04 18:50:27 -0700461 ensure_path_mounted(LAST_KMSG_FILE);
Tao Bao682c34b2015-04-07 17:16:35 -0700462
Tao Bao682c34b2015-04-07 17:16:35 -0700463 for (int i = max-1; i >= 0; --i) {
Tao Bao80e46e02015-06-03 10:49:29 -0700464 std::string old_log = android::base::StringPrintf("%s", LAST_LOG_FILE);
465 if (i > 0) {
466 old_log += "." + std::to_string(i);
467 }
Tao Baobef39712015-05-04 18:50:27 -0700468 std::string new_log = android::base::StringPrintf("%s.%d", LAST_LOG_FILE, i+1);
469 // Ignore errors if old_log doesn't exist.
470 rename(old_log.c_str(), new_log.c_str());
471
Tao Bao80e46e02015-06-03 10:49:29 -0700472 std::string old_kmsg = android::base::StringPrintf("%s", LAST_KMSG_FILE);
473 if (i > 0) {
474 old_kmsg += "." + std::to_string(i);
475 }
Tao Baobef39712015-05-04 18:50:27 -0700476 std::string new_kmsg = android::base::StringPrintf("%s.%d", LAST_KMSG_FILE, i+1);
477 rename(old_kmsg.c_str(), new_kmsg.c_str());
Doug Zongkerda1ebae2013-05-16 11:23:48 -0700478 }
479}
Doug Zongker2c3539e2010-09-29 13:21:30 -0700480
Tao Bao682c34b2015-04-07 17:16:35 -0700481static void copy_logs() {
482 // We only rotate and record the log of the current session if there are
483 // actual attempts to modify the flash, such as wipes, installs from BCB
484 // or menu selections. This is to avoid unnecessary rotation (and
485 // possible deletion) of log files, if it does not do anything loggable.
486 if (!modified_flash) {
487 return;
488 }
489
Mark Salyzyna4f701a2016-03-09 14:58:16 -0800490 // Always write to pmsg, this allows the OTA logs to be caught in logcat -L
491 copy_log_file_to_pmsg(TEMPORARY_LOG_FILE, LAST_LOG_FILE);
492 copy_log_file_to_pmsg(TEMPORARY_INSTALL_FILE, LAST_INSTALL_FILE);
493
494 // We can do nothing for now if there's no /cache partition.
495 if (!has_cache) {
496 return;
497 }
498
Tao Baobef39712015-05-04 18:50:27 -0700499 rotate_logs(KEEP_LOG_COUNT);
Tao Bao682c34b2015-04-07 17:16:35 -0700500
Doug Zongkerf24fd7e2013-07-02 11:43:25 -0700501 // Copy logs to cache so the system can find out what happened.
Tao Baof0124322015-04-11 02:04:11 +0000502 copy_log_file(TEMPORARY_LOG_FILE, LOG_FILE, true);
503 copy_log_file(TEMPORARY_LOG_FILE, LAST_LOG_FILE, false);
504 copy_log_file(TEMPORARY_INSTALL_FILE, LAST_INSTALL_FILE, false);
505 save_kernel_log(LAST_KMSG_FILE);
Doug Zongkerf24fd7e2013-07-02 11:43:25 -0700506 chmod(LOG_FILE, 0600);
507 chown(LOG_FILE, 1000, 1000); // system user
Tao Baof0124322015-04-11 02:04:11 +0000508 chmod(LAST_KMSG_FILE, 0600);
509 chown(LAST_KMSG_FILE, 1000, 1000); // system user
Doug Zongkerf24fd7e2013-07-02 11:43:25 -0700510 chmod(LAST_LOG_FILE, 0640);
511 chmod(LAST_INSTALL_FILE, 0644);
512 sync();
513}
514
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800515// clear the recovery command and prepare to boot a (hopefully working) system,
Tianjie Xuc14d95d2016-03-24 11:50:34 -0700516// copy our log file to cache as well (for the system to read). This function is
517// idempotent: call it as many times as you like.
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800518static void
Tianjie Xuc14d95d2016-03-24 11:50:34 -0700519finish_recovery() {
Doug Zongker4f33e552012-08-23 13:16:12 -0700520 // Save the locale to cache, so if recovery is next started up
521 // without a --locale argument (eg, directly from the bootloader)
522 // it will use the last-known locale.
Mark Salyzyna4f701a2016-03-09 14:58:16 -0800523 if (locale != NULL) {
524 size_t len = strlen(locale);
525 __pmsg_write(LOCALE_FILE, locale, len);
526 if (has_cache) {
527 LOGI("Saving locale \"%s\"\n", locale);
528 FILE* fp = fopen_path(LOCALE_FILE, "w");
Johan Harvyl85691422016-08-05 15:42:59 +0200529 if (fp != NULL) {
530 fwrite(locale, 1, len, fp);
531 fflush(fp);
532 fsync(fileno(fp));
533 check_and_fclose(fp, LOCALE_FILE);
534 }
Mark Salyzyna4f701a2016-03-09 14:58:16 -0800535 }
Doug Zongker4f33e552012-08-23 13:16:12 -0700536 }
537
Doug Zongkerf24fd7e2013-07-02 11:43:25 -0700538 copy_logs();
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800539
Doug Zongkere5d5ac72012-04-12 11:01:22 -0700540 // Reset to normal system boot so recovery won't cycle indefinitely.
Yabin Cui2f272c02016-06-24 18:22:02 -0700541 bootloader_message boot = {};
542 std::string err;
543 if (!write_bootloader_message(boot, &err)) {
544 LOGE("%s\n", err.c_str());
545 }
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800546
547 // Remove the command file, so recovery won't repeat indefinitely.
Tao Bao26112e52016-02-25 12:29:40 -0800548 if (has_cache) {
549 if (ensure_path_mounted(COMMAND_FILE) != 0 || (unlink(COMMAND_FILE) && errno != ENOENT)) {
550 LOGW("Can't unlink %s\n", COMMAND_FILE);
551 }
552 ensure_path_unmounted(CACHE_ROOT);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800553 }
554
555 sync(); // For good measure.
556}
557
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700558typedef struct _saved_log_file {
559 char* name;
560 struct stat st;
561 unsigned char* data;
562 struct _saved_log_file* next;
563} saved_log_file;
564
Elliott Hughes945548e2015-06-05 17:59:56 -0700565static bool erase_volume(const char* volume) {
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700566 bool is_cache = (strcmp(volume, CACHE_ROOT) == 0);
Paul Lawrenced0db3372015-11-05 13:38:40 -0800567 bool is_data = (strcmp(volume, DATA_ROOT) == 0);
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700568
Doug Zongker02ec6b82012-08-22 17:26:40 -0700569 ui->SetBackground(RecoveryUI::ERASING);
Doug Zongker211aebc2011-10-28 15:13:10 -0700570 ui->SetProgressType(RecoveryUI::INDETERMINATE);
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700571
572 saved_log_file* head = NULL;
573
574 if (is_cache) {
Tao Baobef39712015-05-04 18:50:27 -0700575 // If we're reformatting /cache, we load any past logs
576 // (i.e. "/cache/recovery/last_*") and the current log
577 // ("/cache/recovery/log") into memory, so we can restore them after
578 // the reformat.
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700579
580 ensure_path_mounted(volume);
581
582 DIR* d;
583 struct dirent* de;
584 d = opendir(CACHE_LOG_DIR);
585 if (d) {
586 char path[PATH_MAX];
587 strcpy(path, CACHE_LOG_DIR);
588 strcat(path, "/");
589 int path_len = strlen(path);
590 while ((de = readdir(d)) != NULL) {
Tao Baobef39712015-05-04 18:50:27 -0700591 if (strncmp(de->d_name, "last_", 5) == 0 || strcmp(de->d_name, "log") == 0) {
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700592 saved_log_file* p = (saved_log_file*) malloc(sizeof(saved_log_file));
593 strcpy(path+path_len, de->d_name);
594 p->name = strdup(path);
595 if (stat(path, &(p->st)) == 0) {
596 // truncate files to 512kb
597 if (p->st.st_size > (1 << 19)) {
598 p->st.st_size = 1 << 19;
599 }
600 p->data = (unsigned char*) malloc(p->st.st_size);
601 FILE* f = fopen(path, "rb");
602 fread(p->data, 1, p->st.st_size, f);
603 fclose(f);
604 p->next = head;
605 head = p;
606 } else {
607 free(p);
608 }
609 }
610 }
611 closedir(d);
612 } else {
613 if (errno != ENOENT) {
614 printf("opendir failed: %s\n", strerror(errno));
615 }
616 }
617 }
618
Doug Zongker211aebc2011-10-28 15:13:10 -0700619 ui->Print("Formatting %s...\n", volume);
Doug Zongker2c3539e2010-09-29 13:21:30 -0700620
Doug Zongkerd0181b82011-10-19 10:51:12 -0700621 ensure_path_unmounted(volume);
Paul Lawrenced0db3372015-11-05 13:38:40 -0800622
623 int result;
624
625 if (is_data && reason && strcmp(reason, "convert_fbe") == 0) {
626 // Create convert_fbe breadcrumb file to signal to init
627 // to convert to file based encryption, not full disk encryption
Paul Lawrence661f8a62016-02-25 12:42:19 -0800628 if (mkdir(CONVERT_FBE_DIR, 0700) != 0) {
629 ui->Print("Failed to make convert_fbe dir %s\n", strerror(errno));
630 return true;
631 }
Paul Lawrenced0db3372015-11-05 13:38:40 -0800632 FILE* f = fopen(CONVERT_FBE_FILE, "wb");
633 if (!f) {
Paul Lawrence661f8a62016-02-25 12:42:19 -0800634 ui->Print("Failed to convert to file encryption %s\n", strerror(errno));
Paul Lawrenced0db3372015-11-05 13:38:40 -0800635 return true;
636 }
637 fclose(f);
638 result = format_volume(volume, CONVERT_FBE_DIR);
639 remove(CONVERT_FBE_FILE);
640 rmdir(CONVERT_FBE_DIR);
641 } else {
642 result = format_volume(volume);
643 }
Doug Zongkerd0181b82011-10-19 10:51:12 -0700644
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700645 if (is_cache) {
646 while (head) {
647 FILE* f = fopen_path(head->name, "wb");
648 if (f) {
649 fwrite(head->data, 1, head->st.st_size, f);
650 fclose(f);
651 chmod(head->name, head->st.st_mode);
652 chown(head->name, head->st.st_uid, head->st.st_gid);
653 }
654 free(head->name);
655 free(head->data);
656 saved_log_file* temp = head->next;
657 free(head);
658 head = temp;
659 }
660
Tao Baof0124322015-04-11 02:04:11 +0000661 // Any part of the log we'd copied to cache is now gone.
662 // Reset the pointer so we copy from the beginning of the temp
663 // log.
664 tmplog_offset = 0;
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700665 copy_logs();
Doug Zongker2c3539e2010-09-29 13:21:30 -0700666 }
667
Elliott Hughes945548e2015-06-05 17:59:56 -0700668 return (result == 0);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800669}
670
Doug Zongkerf93d8162009-09-22 15:16:02 -0700671static int
Doug Zongker28ce47c2011-10-28 10:33:05 -0700672get_menu_selection(const char* const * headers, const char* const * items,
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700673 int menu_only, int initial_selection, Device* device) {
Doug Zongkerf93d8162009-09-22 15:16:02 -0700674 // throw away keys pressed previously, so user doesn't
675 // accidentally trigger menu items.
Doug Zongker211aebc2011-10-28 15:13:10 -0700676 ui->FlushKeys();
Doug Zongkerf93d8162009-09-22 15:16:02 -0700677
Doug Zongker211aebc2011-10-28 15:13:10 -0700678 ui->StartMenu(headers, items, initial_selection);
Doug Zongker8674a722010-09-15 11:08:23 -0700679 int selected = initial_selection;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800680 int chosen_item = -1;
681
Doug Zongkerf93d8162009-09-22 15:16:02 -0700682 while (chosen_item < 0) {
Doug Zongker211aebc2011-10-28 15:13:10 -0700683 int key = ui->WaitKey();
684 int visible = ui->IsTextVisible();
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800685
Doug Zongker5cae4452011-01-25 13:15:30 -0800686 if (key == -1) { // ui_wait_key() timed out
Doug Zongker211aebc2011-10-28 15:13:10 -0700687 if (ui->WasTextEverVisible()) {
Doug Zongker5cae4452011-01-25 13:15:30 -0800688 continue;
689 } else {
690 LOGI("timed out waiting for key input; rebooting.\n");
Doug Zongker211aebc2011-10-28 15:13:10 -0700691 ui->EndMenu();
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700692 return 0; // XXX fixme
Doug Zongker5cae4452011-01-25 13:15:30 -0800693 }
694 }
695
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700696 int action = device->HandleMenuKey(key, visible);
Doug Zongkerddd6a282009-06-09 12:22:33 -0700697
698 if (action < 0) {
699 switch (action) {
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700700 case Device::kHighlightUp:
Elliott Hughes642aaa72015-04-10 12:47:46 -0700701 selected = ui->SelectMenu(--selected);
Doug Zongkerddd6a282009-06-09 12:22:33 -0700702 break;
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700703 case Device::kHighlightDown:
Elliott Hughes642aaa72015-04-10 12:47:46 -0700704 selected = ui->SelectMenu(++selected);
Doug Zongkerddd6a282009-06-09 12:22:33 -0700705 break;
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700706 case Device::kInvokeItem:
Doug Zongkerddd6a282009-06-09 12:22:33 -0700707 chosen_item = selected;
708 break;
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700709 case Device::kNoAction:
Doug Zongkerddd6a282009-06-09 12:22:33 -0700710 break;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800711 }
Doug Zongkerf93d8162009-09-22 15:16:02 -0700712 } else if (!menu_only) {
Doug Zongkerddd6a282009-06-09 12:22:33 -0700713 chosen_item = action;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800714 }
Doug Zongkerf93d8162009-09-22 15:16:02 -0700715 }
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800716
Doug Zongker211aebc2011-10-28 15:13:10 -0700717 ui->EndMenu();
Doug Zongkerf93d8162009-09-22 15:16:02 -0700718 return chosen_item;
719}
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800720
Doug Zongker8674a722010-09-15 11:08:23 -0700721static int compare_string(const void* a, const void* b) {
722 return strcmp(*(const char**)a, *(const char**)b);
723}
724
Doug Zongker93950222014-07-08 14:10:23 -0700725// Returns a malloc'd path, or NULL.
Elliott Hughes30694c92015-03-25 15:16:51 -0700726static char* browse_directory(const char* path, Device* device) {
Michael Ward9d2629c2011-06-23 22:14:24 -0700727 ensure_path_mounted(path);
Doug Zongkerc18eeb82010-09-21 16:49:26 -0700728
Elliott Hughes30694c92015-03-25 15:16:51 -0700729 DIR* d = opendir(path);
Doug Zongker8674a722010-09-15 11:08:23 -0700730 if (d == NULL) {
731 LOGE("error opening %s: %s\n", path, strerror(errno));
Doug Zongker93950222014-07-08 14:10:23 -0700732 return NULL;
Doug Zongker8674a722010-09-15 11:08:23 -0700733 }
734
Doug Zongker8674a722010-09-15 11:08:23 -0700735 int d_size = 0;
736 int d_alloc = 10;
Doug Zongker28ce47c2011-10-28 10:33:05 -0700737 char** dirs = (char**)malloc(d_alloc * sizeof(char*));
Doug Zongker8674a722010-09-15 11:08:23 -0700738 int z_size = 1;
739 int z_alloc = 10;
Doug Zongker28ce47c2011-10-28 10:33:05 -0700740 char** zips = (char**)malloc(z_alloc * sizeof(char*));
Doug Zongker8674a722010-09-15 11:08:23 -0700741 zips[0] = strdup("../");
742
Elliott Hughes30694c92015-03-25 15:16:51 -0700743 struct dirent* de;
Doug Zongker8674a722010-09-15 11:08:23 -0700744 while ((de = readdir(d)) != NULL) {
745 int name_len = strlen(de->d_name);
746
747 if (de->d_type == DT_DIR) {
748 // skip "." and ".." entries
749 if (name_len == 1 && de->d_name[0] == '.') continue;
750 if (name_len == 2 && de->d_name[0] == '.' &&
751 de->d_name[1] == '.') continue;
752
753 if (d_size >= d_alloc) {
754 d_alloc *= 2;
Doug Zongker28ce47c2011-10-28 10:33:05 -0700755 dirs = (char**)realloc(dirs, d_alloc * sizeof(char*));
Doug Zongker8674a722010-09-15 11:08:23 -0700756 }
Doug Zongker28ce47c2011-10-28 10:33:05 -0700757 dirs[d_size] = (char*)malloc(name_len + 2);
Doug Zongker8674a722010-09-15 11:08:23 -0700758 strcpy(dirs[d_size], de->d_name);
759 dirs[d_size][name_len] = '/';
760 dirs[d_size][name_len+1] = '\0';
761 ++d_size;
762 } else if (de->d_type == DT_REG &&
763 name_len >= 4 &&
764 strncasecmp(de->d_name + (name_len-4), ".zip", 4) == 0) {
765 if (z_size >= z_alloc) {
766 z_alloc *= 2;
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 zips[z_size++] = strdup(de->d_name);
770 }
771 }
772 closedir(d);
773
774 qsort(dirs, d_size, sizeof(char*), compare_string);
775 qsort(zips, z_size, sizeof(char*), compare_string);
776
777 // append dirs to the zips list
778 if (d_size + z_size + 1 > z_alloc) {
779 z_alloc = d_size + z_size + 1;
Doug Zongker28ce47c2011-10-28 10:33:05 -0700780 zips = (char**)realloc(zips, z_alloc * sizeof(char*));
Doug Zongker8674a722010-09-15 11:08:23 -0700781 }
782 memcpy(zips + z_size, dirs, d_size * sizeof(char*));
783 free(dirs);
784 z_size += d_size;
785 zips[z_size] = NULL;
786
Elliott Hughes8fd86d72015-04-13 14:36:02 -0700787 const char* headers[] = { "Choose a package to install:", path, NULL };
Elliott Hughes30694c92015-03-25 15:16:51 -0700788
Doug Zongker93950222014-07-08 14:10:23 -0700789 char* result;
Doug Zongker8674a722010-09-15 11:08:23 -0700790 int chosen_item = 0;
Doug Zongker93950222014-07-08 14:10:23 -0700791 while (true) {
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700792 chosen_item = get_menu_selection(headers, zips, 1, chosen_item, device);
Doug Zongker8674a722010-09-15 11:08:23 -0700793
794 char* item = zips[chosen_item];
795 int item_len = strlen(item);
796 if (chosen_item == 0) { // item 0 is always "../"
Michael Ward9d2629c2011-06-23 22:14:24 -0700797 // go up but continue browsing (if the caller is update_directory)
Doug Zongker93950222014-07-08 14:10:23 -0700798 result = NULL;
Doug Zongker8674a722010-09-15 11:08:23 -0700799 break;
800 }
Doug Zongker93950222014-07-08 14:10:23 -0700801
802 char new_path[PATH_MAX];
803 strlcpy(new_path, path, PATH_MAX);
804 strlcat(new_path, "/", PATH_MAX);
805 strlcat(new_path, item, PATH_MAX);
806
807 if (item[item_len-1] == '/') {
808 // recurse down into a subdirectory
809 new_path[strlen(new_path)-1] = '\0'; // truncate the trailing '/'
810 result = browse_directory(new_path, device);
811 if (result) break;
812 } else {
813 // selected a zip file: return the malloc'd path to the caller.
814 result = strdup(new_path);
815 break;
816 }
817 }
Doug Zongker8674a722010-09-15 11:08:23 -0700818
Elliott Hughes30694c92015-03-25 15:16:51 -0700819 for (int i = 0; i < z_size; ++i) free(zips[i]);
Doug Zongker8674a722010-09-15 11:08:23 -0700820 free(zips);
Doug Zongker8674a722010-09-15 11:08:23 -0700821
822 return result;
823}
824
Elliott Hughes30694c92015-03-25 15:16:51 -0700825static bool yes_no(Device* device, const char* question1, const char* question2) {
Elliott Hughes8fd86d72015-04-13 14:36:02 -0700826 const char* headers[] = { question1, question2, NULL };
Elliott Hughes30694c92015-03-25 15:16:51 -0700827 const char* items[] = { " No", " Yes", NULL };
Doug Zongkerddd6a282009-06-09 12:22:33 -0700828
Elliott Hughes30694c92015-03-25 15:16:51 -0700829 int chosen_item = get_menu_selection(headers, items, 1, 0, device);
830 return (chosen_item == 1);
831}
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800832
Tao Baoe39a9bc2015-03-31 12:19:05 -0700833// Return true on success.
834static bool wipe_data(int should_confirm, Device* device) {
835 if (should_confirm && !yes_no(device, "Wipe all user data?", " THIS CAN NOT BE UNDONE!")) {
836 return false;
Doug Zongkerf93d8162009-09-22 15:16:02 -0700837 }
Doug Zongker1066d2c2009-04-01 13:57:40 -0700838
Tao Bao682c34b2015-04-07 17:16:35 -0700839 modified_flash = true;
840
Doug Zongker211aebc2011-10-28 15:13:10 -0700841 ui->Print("\n-- Wiping data...\n");
Elliott Hughes945548e2015-06-05 17:59:56 -0700842 bool success =
843 device->PreWipeData() &&
844 erase_volume("/data") &&
Tao Bao26112e52016-02-25 12:29:40 -0800845 (has_cache ? erase_volume("/cache") : true) &&
Elliott Hughes945548e2015-06-05 17:59:56 -0700846 device->PostWipeData();
847 ui->Print("Data wipe %s.\n", success ? "complete" : "failed");
848 return success;
Doug Zongkerf93d8162009-09-22 15:16:02 -0700849}
850
Tao Baoe39a9bc2015-03-31 12:19:05 -0700851// Return true on success.
852static bool wipe_cache(bool should_confirm, Device* device) {
Tao Bao26112e52016-02-25 12:29:40 -0800853 if (!has_cache) {
854 ui->Print("No /cache partition found.\n");
855 return false;
856 }
857
Elliott Hughes30694c92015-03-25 15:16:51 -0700858 if (should_confirm && !yes_no(device, "Wipe cache?", " THIS CAN NOT BE UNDONE!")) {
Tao Baoe39a9bc2015-03-31 12:19:05 -0700859 return false;
Elliott Hughes30694c92015-03-25 15:16:51 -0700860 }
861
Tao Bao682c34b2015-04-07 17:16:35 -0700862 modified_flash = true;
863
Elliott Hughes30694c92015-03-25 15:16:51 -0700864 ui->Print("\n-- Wiping cache...\n");
Elliott Hughes945548e2015-06-05 17:59:56 -0700865 bool success = erase_volume("/cache");
866 ui->Print("Cache wipe %s.\n", success ? "complete" : "failed");
867 return success;
Elliott Hughes30694c92015-03-25 15:16:51 -0700868}
869
Tao Bao862a4c12016-06-02 11:16:50 -0700870// Secure-wipe a given partition. It uses BLKSECDISCARD, if supported.
871// Otherwise, it goes with BLKDISCARD (if device supports BLKDISCARDZEROES) or
872// BLKZEROOUT.
873static bool secure_wipe_partition(const std::string& partition) {
874 android::base::unique_fd fd(TEMP_FAILURE_RETRY(open(partition.c_str(), O_WRONLY)));
875 if (fd == -1) {
876 LOGE("failed to open \"%s\": %s\n", partition.c_str(), strerror(errno));
877 return false;
878 }
879
880 uint64_t range[2] = {0, 0};
881 if (ioctl(fd, BLKGETSIZE64, &range[1]) == -1 || range[1] == 0) {
882 LOGE("failed to get partition size: %s\n", strerror(errno));
883 return false;
884 }
885 printf("Secure-wiping \"%s\" from %" PRIu64 " to %" PRIu64 ".\n",
886 partition.c_str(), range[0], range[1]);
887
888 printf("Trying BLKSECDISCARD...\t");
889 if (ioctl(fd, BLKSECDISCARD, &range) == -1) {
890 printf("failed: %s\n", strerror(errno));
891
892 // Use BLKDISCARD if it zeroes out blocks, otherwise use BLKZEROOUT.
893 unsigned int zeroes;
894 if (ioctl(fd, BLKDISCARDZEROES, &zeroes) == 0 && zeroes != 0) {
895 printf("Trying BLKDISCARD...\t");
896 if (ioctl(fd, BLKDISCARD, &range) == -1) {
897 printf("failed: %s\n", strerror(errno));
898 return false;
899 }
900 } else {
901 printf("Trying BLKZEROOUT...\t");
902 if (ioctl(fd, BLKZEROOUT, &range) == -1) {
903 printf("failed: %s\n", strerror(errno));
904 return false;
905 }
906 }
907 }
908
909 printf("done\n");
910 return true;
911}
912
Yabin Cui6faf0262016-06-09 14:09:39 -0700913// Check if the wipe package matches expectation:
914// 1. verify the package.
915// 2. check metadata (ota-type, pre-device and serial number if having one).
916static bool check_wipe_package(size_t wipe_package_size) {
917 if (wipe_package_size == 0) {
918 LOGE("wipe_package_size is zero.\n");
919 return false;
920 }
921 std::string wipe_package;
Yabin Cui2f272c02016-06-24 18:22:02 -0700922 std::string err_str;
923 if (!read_wipe_package(&wipe_package, wipe_package_size, &err_str)) {
924 LOGE("Failed to read wipe package: %s\n", err_str.c_str());
Yabin Cui6faf0262016-06-09 14:09:39 -0700925 return false;
926 }
927 if (!verify_package(reinterpret_cast<const unsigned char*>(wipe_package.data()),
928 wipe_package.size())) {
929 LOGE("Failed to verify package.\n");
930 return false;
931 }
932
933 // Extract metadata
934 ZipArchive zip;
935 int err = mzOpenZipArchive(reinterpret_cast<unsigned char*>(&wipe_package[0]),
936 wipe_package.size(), &zip);
937 if (err != 0) {
938 LOGE("Can't open wipe package: %s\n", err != -1 ? strerror(err) : "bad");
939 return false;
940 }
941 std::string metadata;
942 if (!read_metadata_from_package(&zip, &metadata)) {
943 mzCloseZipArchive(&zip);
944 return false;
945 }
946 mzCloseZipArchive(&zip);
947
948 // Check metadata
949 std::vector<std::string> lines = android::base::Split(metadata, "\n");
950 bool ota_type_matched = false;
951 bool device_type_matched = false;
952 bool has_serial_number = false;
953 bool serial_number_matched = false;
954 for (const auto& line : lines) {
955 if (line == "ota-type=BRICK") {
956 ota_type_matched = true;
957 } else if (android::base::StartsWith(line, "pre-device=")) {
958 std::string device_type = line.substr(strlen("pre-device="));
959 char real_device_type[PROPERTY_VALUE_MAX];
960 property_get("ro.build.product", real_device_type, "");
961 device_type_matched = (device_type == real_device_type);
962 } else if (android::base::StartsWith(line, "serialno=")) {
963 std::string serial_no = line.substr(strlen("serialno="));
964 char real_serial_no[PROPERTY_VALUE_MAX];
965 property_get("ro.serialno", real_serial_no, "");
966 has_serial_number = true;
967 serial_number_matched = (serial_no == real_serial_no);
968 }
969 }
970 return ota_type_matched && device_type_matched && (!has_serial_number || serial_number_matched);
971}
972
Tao Bao108ab212016-06-10 10:13:32 -0700973// Wipe the current A/B device, with a secure wipe of all the partitions in
974// RECOVERY_WIPE.
Yabin Cui6faf0262016-06-09 14:09:39 -0700975static bool wipe_ab_device(size_t wipe_package_size) {
Tao Bao862a4c12016-06-02 11:16:50 -0700976 ui->SetBackground(RecoveryUI::ERASING);
977 ui->SetProgressType(RecoveryUI::INDETERMINATE);
978
Yabin Cui6faf0262016-06-09 14:09:39 -0700979 if (!check_wipe_package(wipe_package_size)) {
980 LOGE("Failed to verify wipe package\n");
981 return false;
982 }
Tao Bao862a4c12016-06-02 11:16:50 -0700983 std::string partition_list;
Tao Bao108ab212016-06-10 10:13:32 -0700984 if (!android::base::ReadFileToString(RECOVERY_WIPE, &partition_list)) {
985 LOGE("failed to read \"%s\".\n", RECOVERY_WIPE);
Tao Bao862a4c12016-06-02 11:16:50 -0700986 return false;
987 }
988
989 std::vector<std::string> lines = android::base::Split(partition_list, "\n");
990 for (const std::string& line : lines) {
991 std::string partition = android::base::Trim(line);
992 // Ignore '#' comment or empty lines.
993 if (android::base::StartsWith(partition, "#") || partition.empty()) {
994 continue;
995 }
996
997 // Proceed anyway even if it fails to wipe some partition.
998 secure_wipe_partition(partition);
999 }
1000 return true;
1001}
1002
Nick Kralevicha9ad0322014-10-22 18:38:48 -07001003static void choose_recovery_file(Device* device) {
Elliott Hughesc0491632015-05-06 12:40:05 -07001004 // "Back" + KEEP_LOG_COUNT * 2 + terminating nullptr entry
1005 char* entries[1 + KEEP_LOG_COUNT * 2 + 1];
Nick Kralevicha9ad0322014-10-22 18:38:48 -07001006 memset(entries, 0, sizeof(entries));
1007
Tao Baobef39712015-05-04 18:50:27 -07001008 unsigned int n = 0;
Patrick Tjincd055ee2014-12-09 11:26:40 -08001009
Tianjie Xua54f75e2016-08-17 12:02:46 -07001010 if (has_cache) {
1011 // Add LAST_LOG_FILE + LAST_LOG_FILE.x
1012 // Add LAST_KMSG_FILE + LAST_KMSG_FILE.x
1013 for (int i = 0; i < KEEP_LOG_COUNT; i++) {
1014 char* log_file;
1015 int ret;
1016 ret = (i == 0) ? asprintf(&log_file, "%s", LAST_LOG_FILE) :
1017 asprintf(&log_file, "%s.%d", LAST_LOG_FILE, i);
1018 if (ret == -1) {
1019 // memory allocation failure - return early. Should never happen.
1020 return;
1021 }
1022 if ((ensure_path_mounted(log_file) != 0) || (access(log_file, R_OK) == -1)) {
1023 free(log_file);
1024 } else {
1025 entries[n++] = log_file;
1026 }
Tao Baobef39712015-05-04 18:50:27 -07001027
Tianjie Xua54f75e2016-08-17 12:02:46 -07001028 char* kmsg_file;
1029 ret = (i == 0) ? asprintf(&kmsg_file, "%s", LAST_KMSG_FILE) :
1030 asprintf(&kmsg_file, "%s.%d", LAST_KMSG_FILE, i);
1031 if (ret == -1) {
1032 // memory allocation failure - return early. Should never happen.
1033 return;
1034 }
1035 if ((ensure_path_mounted(kmsg_file) != 0) || (access(kmsg_file, R_OK) == -1)) {
1036 free(kmsg_file);
1037 } else {
1038 entries[n++] = kmsg_file;
1039 }
Tao Baobef39712015-05-04 18:50:27 -07001040 }
Tianjie Xua54f75e2016-08-17 12:02:46 -07001041 } else {
1042 // If cache partition is not found, view /tmp/recovery.log instead.
1043 ui->Print("No /cache partition found.\n");
1044 if (access(TEMPORARY_LOG_FILE, R_OK) == -1) {
1045 return;
1046 } else{
1047 entries[n++] = strdup(TEMPORARY_LOG_FILE);
Tao Baobef39712015-05-04 18:50:27 -07001048 }
Nick Kralevicha9ad0322014-10-22 18:38:48 -07001049 }
1050
Elliott Hughesc0491632015-05-06 12:40:05 -07001051 entries[n++] = strdup("Back");
1052
Tao Baobef39712015-05-04 18:50:27 -07001053 const char* headers[] = { "Select file to view", nullptr };
Nick Kralevicha9ad0322014-10-22 18:38:48 -07001054
Elliott Hughes8de52072015-04-08 20:06:50 -07001055 while (true) {
Elliott Hughes30694c92015-03-25 15:16:51 -07001056 int chosen_item = get_menu_selection(headers, entries, 1, 0, device);
Elliott Hughesc0491632015-05-06 12:40:05 -07001057 if (strcmp(entries[chosen_item], "Back") == 0) break;
Elliott Hughes8de52072015-04-08 20:06:50 -07001058
Elliott Hughes8de52072015-04-08 20:06:50 -07001059 ui->ShowFile(entries[chosen_item]);
Nick Kralevicha9ad0322014-10-22 18:38:48 -07001060 }
1061
Tao Baobef39712015-05-04 18:50:27 -07001062 for (size_t i = 0; i < (sizeof(entries) / sizeof(*entries)); i++) {
Nick Kralevicha9ad0322014-10-22 18:38:48 -07001063 free(entries[i]);
1064 }
1065}
1066
Elliott Hughes498cda62016-04-14 16:49:04 -07001067static void run_graphics_test(Device* device) {
1068 // Switch to graphics screen.
1069 ui->ShowText(false);
1070
1071 ui->SetProgressType(RecoveryUI::INDETERMINATE);
1072 ui->SetBackground(RecoveryUI::INSTALLING_UPDATE);
1073 sleep(1);
1074
1075 ui->SetBackground(RecoveryUI::ERROR);
1076 sleep(1);
1077
1078 ui->SetBackground(RecoveryUI::NO_COMMAND);
1079 sleep(1);
1080
1081 ui->SetBackground(RecoveryUI::ERASING);
1082 sleep(1);
1083
1084 ui->SetBackground(RecoveryUI::INSTALLING_UPDATE);
1085
1086 ui->SetProgressType(RecoveryUI::DETERMINATE);
1087 ui->ShowProgress(1.0, 10.0);
1088 float fraction = 0.0;
1089 for (size_t i = 0; i < 100; ++i) {
1090 fraction += .01;
1091 ui->SetProgress(fraction);
1092 usleep(100000);
1093 }
1094
1095 ui->ShowText(true);
1096}
1097
Tao Baocdcf28f2016-01-13 15:05:20 -08001098// How long (in seconds) we wait for the fuse-provided package file to
1099// appear, before timing out.
1100#define SDCARD_INSTALL_TIMEOUT 10
1101
Tao Bao145d8612015-03-25 15:51:15 -07001102static int apply_from_sdcard(Device* device, bool* wipe_cache) {
Tao Bao682c34b2015-04-07 17:16:35 -07001103 modified_flash = true;
1104
Christian Poetzsch4ec58a42015-02-19 10:42:39 +00001105 if (ensure_path_mounted(SDCARD_ROOT) != 0) {
1106 ui->Print("\n-- Couldn't mount %s.\n", SDCARD_ROOT);
1107 return INSTALL_ERROR;
1108 }
1109
1110 char* path = browse_directory(SDCARD_ROOT, device);
1111 if (path == NULL) {
Elliott Hughes018ed312015-04-08 16:51:36 -07001112 ui->Print("\n-- No package file selected.\n");
caozhiyuanb4effb92015-06-10 16:46:38 +08001113 ensure_path_unmounted(SDCARD_ROOT);
Christian Poetzsch4ec58a42015-02-19 10:42:39 +00001114 return INSTALL_ERROR;
1115 }
1116
1117 ui->Print("\n-- Install %s ...\n", path);
1118 set_sdcard_update_bootloader_message();
Christian Poetzsch4ec58a42015-02-19 10:42:39 +00001119
Tao Baocdcf28f2016-01-13 15:05:20 -08001120 // We used to use fuse in a thread as opposed to a process. Since accessing
1121 // through fuse involves going from kernel to userspace to kernel, it leads
1122 // to deadlock when a page fault occurs. (Bug: 26313124)
1123 pid_t child;
1124 if ((child = fork()) == 0) {
1125 bool status = start_sdcard_fuse(path);
1126
1127 _exit(status ? EXIT_SUCCESS : EXIT_FAILURE);
1128 }
1129
1130 // FUSE_SIDELOAD_HOST_PATHNAME will start to exist once the fuse in child
1131 // process is ready.
1132 int result = INSTALL_ERROR;
1133 int status;
1134 bool waited = false;
1135 for (int i = 0; i < SDCARD_INSTALL_TIMEOUT; ++i) {
1136 if (waitpid(child, &status, WNOHANG) == -1) {
1137 result = INSTALL_ERROR;
1138 waited = true;
1139 break;
1140 }
1141
1142 struct stat sb;
1143 if (stat(FUSE_SIDELOAD_HOST_PATHNAME, &sb) == -1) {
1144 if (errno == ENOENT && i < SDCARD_INSTALL_TIMEOUT-1) {
1145 sleep(1);
1146 continue;
1147 } else {
1148 LOGE("Timed out waiting for the fuse-provided package.\n");
1149 result = INSTALL_ERROR;
1150 kill(child, SIGKILL);
1151 break;
1152 }
1153 }
1154
1155 result = install_package(FUSE_SIDELOAD_HOST_PATHNAME, wipe_cache,
Tianjie Xu16255832016-04-30 11:49:59 -07001156 TEMPORARY_INSTALL_FILE, false, 0/*retry_count*/);
Tao Baocdcf28f2016-01-13 15:05:20 -08001157 break;
1158 }
Christian Poetzsch4ec58a42015-02-19 10:42:39 +00001159
Tao Baocdcf28f2016-01-13 15:05:20 -08001160 if (!waited) {
1161 // Calling stat() on this magic filename signals the fuse
1162 // filesystem to shut down.
1163 struct stat sb;
1164 stat(FUSE_SIDELOAD_HOST_EXIT_PATHNAME, &sb);
1165
1166 waitpid(child, &status, 0);
1167 }
1168
1169 if (!WIFEXITED(status) || WEXITSTATUS(status) != 0) {
1170 LOGE("Error exit from the fuse process: %d\n", WEXITSTATUS(status));
1171 }
1172
Christian Poetzsch4ec58a42015-02-19 10:42:39 +00001173 ensure_path_unmounted(SDCARD_ROOT);
Tao Baocdcf28f2016-01-13 15:05:20 -08001174 return result;
Christian Poetzsch4ec58a42015-02-19 10:42:39 +00001175}
1176
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001177// Return REBOOT, SHUTDOWN, or REBOOT_BOOTLOADER. Returning NO_ACTION
1178// means to take the default, which is to reboot or shutdown depending
1179// on if the --shutdown_after flag was passed to recovery.
1180static Device::BuiltinAction
Doug Zongker6c8553d2012-09-24 10:40:47 -07001181prompt_and_wait(Device* device, int status) {
Doug Zongkerf93d8162009-09-22 15:16:02 -07001182 for (;;) {
Tianjie Xuc14d95d2016-03-24 11:50:34 -07001183 finish_recovery();
Doug Zongker6c8553d2012-09-24 10:40:47 -07001184 switch (status) {
1185 case INSTALL_SUCCESS:
1186 case INSTALL_NONE:
1187 ui->SetBackground(RecoveryUI::NO_COMMAND);
1188 break;
1189
1190 case INSTALL_ERROR:
1191 case INSTALL_CORRUPT:
1192 ui->SetBackground(RecoveryUI::ERROR);
1193 break;
1194 }
Doug Zongker211aebc2011-10-28 15:13:10 -07001195 ui->SetProgressType(RecoveryUI::EMPTY);
Doug Zongkerf93d8162009-09-22 15:16:02 -07001196
Elliott Hughes8fd86d72015-04-13 14:36:02 -07001197 int chosen_item = get_menu_selection(nullptr, device->GetMenuItems(), 0, 0, device);
Doug Zongkerf93d8162009-09-22 15:16:02 -07001198
1199 // device-specific code may take some action here. It may
1200 // return one of the core actions handled in the switch
1201 // statement below.
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001202 Device::BuiltinAction chosen_action = device->InvokeMenuItem(chosen_item);
Doug Zongkerf93d8162009-09-22 15:16:02 -07001203
Elliott Hughes30694c92015-03-25 15:16:51 -07001204 bool should_wipe_cache = false;
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001205 switch (chosen_action) {
1206 case Device::NO_ACTION:
1207 break;
1208
Doug Zongkerdaefc1d2011-10-31 09:34:15 -07001209 case Device::REBOOT:
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001210 case Device::SHUTDOWN:
1211 case Device::REBOOT_BOOTLOADER:
1212 return chosen_action;
Doug Zongkerf93d8162009-09-22 15:16:02 -07001213
Doug Zongkerdaefc1d2011-10-31 09:34:15 -07001214 case Device::WIPE_DATA:
1215 wipe_data(ui->IsTextVisible(), device);
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001216 if (!ui->IsTextVisible()) return Device::NO_ACTION;
Doug Zongkerf93d8162009-09-22 15:16:02 -07001217 break;
1218
Doug Zongkerdaefc1d2011-10-31 09:34:15 -07001219 case Device::WIPE_CACHE:
Elliott Hughes30694c92015-03-25 15:16:51 -07001220 wipe_cache(ui->IsTextVisible(), device);
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001221 if (!ui->IsTextVisible()) return Device::NO_ACTION;
Doug Zongkerf93d8162009-09-22 15:16:02 -07001222 break;
1223
Christian Poetzsch4ec58a42015-02-19 10:42:39 +00001224 case Device::APPLY_ADB_SIDELOAD:
Elliott Hughesec283402015-04-10 10:01:53 -07001225 case Device::APPLY_SDCARD:
Christian Poetzsch4ec58a42015-02-19 10:42:39 +00001226 {
1227 bool adb = (chosen_action == Device::APPLY_ADB_SIDELOAD);
1228 if (adb) {
Elliott Hughes30694c92015-03-25 15:16:51 -07001229 status = apply_from_adb(ui, &should_wipe_cache, TEMPORARY_INSTALL_FILE);
Doug Zongkerd0181b82011-10-19 10:51:12 -07001230 } else {
Elliott Hughes30694c92015-03-25 15:16:51 -07001231 status = apply_from_sdcard(device, &should_wipe_cache);
Doug Zongkerd0181b82011-10-19 10:51:12 -07001232 }
Doug Zongker945fc682014-07-10 10:50:39 -07001233
Elliott Hughes30694c92015-03-25 15:16:51 -07001234 if (status == INSTALL_SUCCESS && should_wipe_cache) {
Tao Baoe39a9bc2015-03-31 12:19:05 -07001235 if (!wipe_cache(false, device)) {
1236 status = INSTALL_ERROR;
1237 }
Christian Poetzsch4ec58a42015-02-19 10:42:39 +00001238 }
1239
Tao Baoc679f932015-03-30 09:43:49 -07001240 if (status != INSTALL_SUCCESS) {
1241 ui->SetBackground(RecoveryUI::ERROR);
1242 ui->Print("Installation aborted.\n");
1243 copy_logs();
1244 } else if (!ui->IsTextVisible()) {
1245 return Device::NO_ACTION; // reboot if logs aren't visible
1246 } else {
1247 ui->Print("\nInstall from %s complete.\n", adb ? "ADB" : "SD card");
Doug Zongker8674a722010-09-15 11:08:23 -07001248 }
Doug Zongkerf93d8162009-09-22 15:16:02 -07001249 }
1250 break;
Doug Zongkerdaefc1d2011-10-31 09:34:15 -07001251
Elliott Hughesec283402015-04-10 10:01:53 -07001252 case Device::VIEW_RECOVERY_LOGS:
1253 choose_recovery_file(device);
Michael Ward9d2629c2011-06-23 22:14:24 -07001254 break;
Doug Zongker9270a202012-01-09 15:16:13 -08001255
Elliott Hughes498cda62016-04-14 16:49:04 -07001256 case Device::RUN_GRAPHICS_TEST:
1257 run_graphics_test(device);
1258 break;
1259
Elliott Hughesec283402015-04-10 10:01:53 -07001260 case Device::MOUNT_SYSTEM:
Tao Baoabb8f772015-07-30 14:43:27 -07001261 char system_root_image[PROPERTY_VALUE_MAX];
1262 property_get("ro.build.system_root_image", system_root_image, "");
1263
1264 // For a system image built with the root directory (i.e.
1265 // system_root_image == "true"), we mount it to /system_root, and symlink /system
1266 // to /system_root/system to make adb shell work (the symlink is created through
1267 // the build system).
1268 // Bug: 22855115
1269 if (strcmp(system_root_image, "true") == 0) {
1270 if (ensure_path_mounted_at("/", "/system_root") != -1) {
1271 ui->Print("Mounted /system.\n");
1272 }
1273 } else {
1274 if (ensure_path_mounted("/system") != -1) {
1275 ui->Print("Mounted /system.\n");
1276 }
Elliott Hughesec283402015-04-10 10:01:53 -07001277 }
Tao Baoabb8f772015-07-30 14:43:27 -07001278
Nick Kralevicha9ad0322014-10-22 18:38:48 -07001279 break;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001280 }
1281 }
1282}
1283
1284static void
Oscar Montemayor05231562009-11-30 08:40:57 -08001285print_property(const char *key, const char *name, void *cookie) {
Doug Zongker56c51052010-07-01 09:18:44 -07001286 printf("%s=%s\n", key, name);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001287}
1288
Doug Zongker02ec6b82012-08-22 17:26:40 -07001289static void
1290load_locale_from_cache() {
1291 FILE* fp = fopen_path(LOCALE_FILE, "r");
1292 char buffer[80];
1293 if (fp != NULL) {
1294 fgets(buffer, sizeof(buffer), fp);
1295 int j = 0;
Doug Zongker5fa8c232012-09-18 12:37:02 -07001296 unsigned int i;
Doug Zongker02ec6b82012-08-22 17:26:40 -07001297 for (i = 0; i < sizeof(buffer) && buffer[i]; ++i) {
1298 if (!isspace(buffer[i])) {
1299 buffer[j++] = buffer[i];
1300 }
1301 }
1302 buffer[j] = 0;
1303 locale = strdup(buffer);
Devin Kim6016d082012-10-08 09:47:37 -07001304 check_and_fclose(fp, LOCALE_FILE);
Doug Zongker02ec6b82012-08-22 17:26:40 -07001305 }
1306}
1307
Doug Zongker7c3ae452013-05-14 11:03:02 -07001308static RecoveryUI* gCurrentUI = NULL;
1309
1310void
1311ui_print(const char* format, ...) {
1312 char buffer[256];
1313
1314 va_list ap;
1315 va_start(ap, format);
1316 vsnprintf(buffer, sizeof(buffer), format, ap);
1317 va_end(ap);
1318
1319 if (gCurrentUI != NULL) {
1320 gCurrentUI->Print("%s", buffer);
1321 } else {
1322 fputs(buffer, stdout);
1323 }
1324}
1325
Yabin Cui99281df2016-02-17 12:21:52 -08001326static bool is_battery_ok() {
1327 struct healthd_config healthd_config = {
1328 .batteryStatusPath = android::String8(android::String8::kEmptyString),
1329 .batteryHealthPath = android::String8(android::String8::kEmptyString),
1330 .batteryPresentPath = android::String8(android::String8::kEmptyString),
1331 .batteryCapacityPath = android::String8(android::String8::kEmptyString),
1332 .batteryVoltagePath = android::String8(android::String8::kEmptyString),
1333 .batteryTemperaturePath = android::String8(android::String8::kEmptyString),
1334 .batteryTechnologyPath = android::String8(android::String8::kEmptyString),
1335 .batteryCurrentNowPath = android::String8(android::String8::kEmptyString),
1336 .batteryCurrentAvgPath = android::String8(android::String8::kEmptyString),
1337 .batteryChargeCounterPath = android::String8(android::String8::kEmptyString),
1338 .batteryFullChargePath = android::String8(android::String8::kEmptyString),
1339 .batteryCycleCountPath = android::String8(android::String8::kEmptyString),
1340 .energyCounter = NULL,
1341 .boot_min_cap = 0,
1342 .screen_on = NULL
1343 };
1344 healthd_board_init(&healthd_config);
1345
1346 android::BatteryMonitor monitor;
1347 monitor.init(&healthd_config);
1348
1349 int wait_second = 0;
1350 while (true) {
1351 int charge_status = monitor.getChargeStatus();
1352 // Treat unknown status as charged.
1353 bool charged = (charge_status != android::BATTERY_STATUS_DISCHARGING &&
1354 charge_status != android::BATTERY_STATUS_NOT_CHARGING);
1355 android::BatteryProperty capacity;
1356 android::status_t status = monitor.getProperty(android::BATTERY_PROP_CAPACITY, &capacity);
1357 ui_print("charge_status %d, charged %d, status %d, capacity %lld\n", charge_status,
1358 charged, status, capacity.valueInt64);
1359 // At startup, the battery drivers in devices like N5X/N6P take some time to load
1360 // the battery profile. Before the load finishes, it reports value 50 as a fake
1361 // capacity. BATTERY_READ_TIMEOUT_IN_SEC is set that the battery drivers are expected
1362 // to finish loading the battery profile earlier than 10 seconds after kernel startup.
1363 if (status == 0 && capacity.valueInt64 == 50) {
1364 if (wait_second < BATTERY_READ_TIMEOUT_IN_SEC) {
1365 sleep(1);
1366 wait_second++;
1367 continue;
1368 }
1369 }
1370 // If we can't read battery percentage, it may be a device without battery. In this
1371 // situation, use 100 as a fake battery percentage.
1372 if (status != 0) {
1373 capacity.valueInt64 = 100;
1374 }
1375 return (charged && capacity.valueInt64 >= BATTERY_WITH_CHARGER_OK_PERCENTAGE) ||
1376 (!charged && capacity.valueInt64 >= BATTERY_OK_PERCENTAGE);
1377 }
1378}
1379
Tianjie Xu3c62b672016-02-05 18:25:58 -08001380static void set_retry_bootloader_message(int retry_count, int argc, char** argv) {
Yabin Cui2f272c02016-06-24 18:22:02 -07001381 bootloader_message boot = {};
Tianjie Xu3c62b672016-02-05 18:25:58 -08001382 strlcpy(boot.command, "boot-recovery", sizeof(boot.command));
1383 strlcpy(boot.recovery, "recovery\n", sizeof(boot.recovery));
1384
1385 for (int i = 1; i < argc; ++i) {
1386 if (strstr(argv[i], "retry_count") == nullptr) {
1387 strlcat(boot.recovery, argv[i], sizeof(boot.recovery));
1388 strlcat(boot.recovery, "\n", sizeof(boot.recovery));
1389 }
1390 }
1391
1392 // Initialize counter to 1 if it's not in BCB, otherwise increment it by 1.
1393 if (retry_count == 0) {
1394 strlcat(boot.recovery, "--retry_count=1\n", sizeof(boot.recovery));
1395 } else {
1396 char buffer[20];
1397 snprintf(buffer, sizeof(buffer), "--retry_count=%d\n", retry_count+1);
1398 strlcat(boot.recovery, buffer, sizeof(boot.recovery));
1399 }
Yabin Cui2f272c02016-06-24 18:22:02 -07001400 std::string err;
1401 if (!write_bootloader_message(boot, &err)) {
1402 LOGE("%s\n", err.c_str());
1403 }
Tianjie Xu3c62b672016-02-05 18:25:58 -08001404}
1405
Tianjie Xu27b9fc82016-07-11 14:04:08 -07001406static bool bootreason_in_blacklist() {
1407 char bootreason[PROPERTY_VALUE_MAX];
1408 if (property_get("ro.boot.bootreason", bootreason, nullptr) > 0) {
1409 for (const auto& str : bootreason_blacklist) {
1410 if (strcasecmp(str.c_str(), bootreason) == 0) {
1411 return true;
1412 }
1413 }
1414 }
1415 return false;
1416}
1417
1418static void log_failure_code(ErrorCode code, const char *update_package) {
1419 FILE* install_log = fopen_path(TEMPORARY_INSTALL_FILE, "w");
1420 if (install_log != nullptr) {
1421 fprintf(install_log, "%s\n", update_package);
1422 fprintf(install_log, "0\n");
1423 fprintf(install_log, "error: %d\n", code);
1424 fclose(install_log);
1425 } else {
1426 LOGE("failed to open last_install: %s\n", strerror(errno));
1427 }
1428}
1429
Mark Salyzyna4f701a2016-03-09 14:58:16 -08001430static ssize_t logbasename(
1431 log_id_t /* logId */,
1432 char /* prio */,
1433 const char *filename,
1434 const char * /* buf */, size_t len,
1435 void *arg) {
1436 if (strstr(LAST_KMSG_FILE, filename) ||
1437 strstr(LAST_LOG_FILE, filename)) {
1438 bool *doRotate = reinterpret_cast<bool *>(arg);
1439 *doRotate = true;
1440 }
1441 return len;
1442}
1443
1444static ssize_t logrotate(
1445 log_id_t logId,
1446 char prio,
1447 const char *filename,
1448 const char *buf, size_t len,
1449 void *arg) {
1450 bool *doRotate = reinterpret_cast<bool *>(arg);
1451 if (!*doRotate) {
1452 return __android_log_pmsg_file_write(logId, prio, filename, buf, len);
1453 }
1454
1455 std::string name(filename);
Chih-Hung Hsieh23abfd32016-07-27 10:19:47 -07001456 size_t dot = name.find_last_of('.');
Mark Salyzyna4f701a2016-03-09 14:58:16 -08001457 std::string sub = name.substr(0, dot);
1458
1459 if (!strstr(LAST_KMSG_FILE, sub.c_str()) &&
1460 !strstr(LAST_LOG_FILE, sub.c_str())) {
1461 return __android_log_pmsg_file_write(logId, prio, filename, buf, len);
1462 }
1463
1464 // filename rotation
1465 if (dot == std::string::npos) {
1466 name += ".1";
1467 } else {
1468 std::string number = name.substr(dot + 1);
1469 if (!isdigit(number.data()[0])) {
1470 name += ".1";
1471 } else {
Chih-Hung Hsieh54a27472016-04-18 11:30:55 -07001472 auto i = std::stoull(number);
Mark Salyzyna4f701a2016-03-09 14:58:16 -08001473 name = sub + "." + std::to_string(i + 1);
1474 }
1475 }
1476
1477 return __android_log_pmsg_file_write(logId, prio, name.c_str(), buf, len);
1478}
1479
Yabin Cui99281df2016-02-17 12:21:52 -08001480int main(int argc, char **argv) {
Mark Salyzyna4f701a2016-03-09 14:58:16 -08001481 // Take last pmsg contents and rewrite it to the current pmsg session.
1482 static const char filter[] = "recovery/";
1483 // Do we need to rotate?
1484 bool doRotate = false;
1485 __android_log_pmsg_file_read(
1486 LOG_ID_SYSTEM, ANDROID_LOG_INFO, filter,
1487 logbasename, &doRotate);
1488 // Take action to refresh pmsg contents
1489 __android_log_pmsg_file_read(
1490 LOG_ID_SYSTEM, ANDROID_LOG_INFO, filter,
1491 logrotate, &doRotate);
1492
Doug Zongker9270a202012-01-09 15:16:13 -08001493 // If this binary is started with the single argument "--adbd",
1494 // instead of being the normal recovery binary, it turns into kind
1495 // of a stripped-down version of adbd that only supports the
1496 // 'sideload' command. Note this must be a real argument, not
1497 // anything in the command file or bootloader control block; the
1498 // only way recovery should be run with this argument is when it
1499 // starts a copy of itself from the apply_from_adb() function.
1500 if (argc == 2 && strcmp(argv[1], "--adbd") == 0) {
Elliott Hughes9f4fdb32015-11-20 13:03:24 -08001501 adb_server_main(0, DEFAULT_ADB_PORT, -1);
Doug Zongker9270a202012-01-09 15:16:13 -08001502 return 0;
1503 }
1504
Tao Bao04ca4262015-09-10 15:32:24 -07001505 time_t start = time(NULL);
1506
1507 // redirect_stdio should be called only in non-sideload mode. Otherwise
1508 // we may have two logger instances with different timestamps.
1509 redirect_stdio(TEMPORARY_LOG_FILE);
1510
Doug Zongker19a8e242014-01-21 09:25:41 -08001511 printf("Starting recovery (pid %d) on %s", getpid(), ctime(&start));
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001512
Doug Zongkerd4208f92010-09-20 12:16:13 -07001513 load_volume_table();
Tao Bao26112e52016-02-25 12:29:40 -08001514 has_cache = volume_for_path(CACHE_ROOT) != nullptr;
1515
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001516 get_args(&argc, &argv);
1517
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001518 const char *update_package = NULL;
Tao Baoe39a9bc2015-03-31 12:19:05 -07001519 bool should_wipe_data = false;
Tao Baoc679f932015-03-30 09:43:49 -07001520 bool should_wipe_cache = false;
Tao Bao108ab212016-06-10 10:13:32 -07001521 bool should_wipe_ab = false;
Yabin Cui6faf0262016-06-09 14:09:39 -07001522 size_t wipe_package_size = 0;
Tao Bao145d8612015-03-25 15:51:15 -07001523 bool show_text = false;
Tao Baoc679f932015-03-30 09:43:49 -07001524 bool sideload = false;
1525 bool sideload_auto_reboot = false;
Doug Zongkere5d5ac72012-04-12 11:01:22 -07001526 bool just_exit = false;
Doug Zongkerb1d12632014-03-18 10:32:12 -07001527 bool shutdown_after = false;
Tianjie Xu3c62b672016-02-05 18:25:58 -08001528 int retry_count = 0;
Tianjie Xu35926c42016-04-28 18:06:26 -07001529 bool security_update = false;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001530
1531 int arg;
Tao Bao862a4c12016-06-02 11:16:50 -07001532 int option_index;
1533 while ((arg = getopt_long(argc, argv, "", OPTIONS, &option_index)) != -1) {
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001534 switch (arg) {
Tianjie Xu3c62b672016-02-05 18:25:58 -08001535 case 'n': android::base::ParseInt(optarg, &retry_count, 0); break;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001536 case 'u': update_package = optarg; break;
Tao Baoe39a9bc2015-03-31 12:19:05 -07001537 case 'w': should_wipe_data = true; break;
Tao Baoc679f932015-03-30 09:43:49 -07001538 case 'c': should_wipe_cache = true; break;
Tao Bao145d8612015-03-25 15:51:15 -07001539 case 't': show_text = true; break;
Tao Baoc679f932015-03-30 09:43:49 -07001540 case 's': sideload = true; break;
1541 case 'a': sideload = true; sideload_auto_reboot = true; break;
Doug Zongkere5d5ac72012-04-12 11:01:22 -07001542 case 'x': just_exit = true; break;
Doug Zongker02ec6b82012-08-22 17:26:40 -07001543 case 'l': locale = optarg; break;
Doug Zongkerc87bab12013-11-25 13:53:25 -08001544 case 'g': {
1545 if (stage == NULL || *stage == '\0') {
1546 char buffer[20] = "1/";
1547 strncat(buffer, optarg, sizeof(buffer)-3);
1548 stage = strdup(buffer);
1549 }
1550 break;
1551 }
Doug Zongkerb1d12632014-03-18 10:32:12 -07001552 case 'p': shutdown_after = true; break;
Jeff Sharkeya6e13ae2014-09-24 11:46:17 -07001553 case 'r': reason = optarg; break;
Tianjie Xu35926c42016-04-28 18:06:26 -07001554 case 'e': security_update = true; break;
Tao Bao862a4c12016-06-02 11:16:50 -07001555 case 0: {
Tao Bao108ab212016-06-10 10:13:32 -07001556 if (strcmp(OPTIONS[option_index].name, "wipe_ab") == 0) {
1557 should_wipe_ab = true;
Tao Bao862a4c12016-06-02 11:16:50 -07001558 break;
Yabin Cui6faf0262016-06-09 14:09:39 -07001559 } else if (strcmp(OPTIONS[option_index].name, "wipe_package_size") == 0) {
1560 android::base::ParseUint(optarg, &wipe_package_size);
1561 break;
Tao Bao862a4c12016-06-02 11:16:50 -07001562 }
1563 break;
1564 }
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001565 case '?':
1566 LOGE("Invalid command argument\n");
1567 continue;
1568 }
1569 }
1570
Tao Bao26112e52016-02-25 12:29:40 -08001571 if (locale == nullptr && has_cache) {
Doug Zongker02ec6b82012-08-22 17:26:40 -07001572 load_locale_from_cache();
1573 }
1574 printf("locale is [%s]\n", locale);
Doug Zongker0d32f252014-02-13 15:07:56 -08001575 printf("stage is [%s]\n", stage);
Jeff Sharkeya6e13ae2014-09-24 11:46:17 -07001576 printf("reason is [%s]\n", reason);
Doug Zongker02ec6b82012-08-22 17:26:40 -07001577
1578 Device* device = make_device();
1579 ui = device->GetUI();
Doug Zongker7c3ae452013-05-14 11:03:02 -07001580 gCurrentUI = ui;
Doug Zongker02ec6b82012-08-22 17:26:40 -07001581
Doug Zongker5fa8c232012-09-18 12:37:02 -07001582 ui->SetLocale(locale);
Doug Zongker02ec6b82012-08-22 17:26:40 -07001583 ui->Init();
Tianjie Xu35926c42016-04-28 18:06:26 -07001584 // Set background string to "installing security update" for security update,
1585 // otherwise set it to "installing system update".
1586 ui->SetSystemUpdateText(security_update);
Doug Zongkerc87bab12013-11-25 13:53:25 -08001587
1588 int st_cur, st_max;
1589 if (stage != NULL && sscanf(stage, "%d/%d", &st_cur, &st_max) == 2) {
1590 ui->SetStage(st_cur, st_max);
1591 }
1592
Doug Zongker02ec6b82012-08-22 17:26:40 -07001593 ui->SetBackground(RecoveryUI::NONE);
1594 if (show_text) ui->ShowText(true);
1595
Stephen Smalley779701d2012-02-09 14:13:23 -05001596 struct selinux_opt seopts[] = {
1597 { SELABEL_OPT_PATH, "/file_contexts" }
1598 };
1599
1600 sehandle = selabel_open(SELABEL_CTX_FILE, seopts, 1);
1601
1602 if (!sehandle) {
Doug Zongkerfafc85b2013-07-09 12:29:45 -07001603 ui->Print("Warning: No file_contexts\n");
Stephen Smalley779701d2012-02-09 14:13:23 -05001604 }
Stephen Smalley779701d2012-02-09 14:13:23 -05001605
Doug Zongkerdaefc1d2011-10-31 09:34:15 -07001606 device->StartRecovery();
Doug Zongkerefa1bab2010-02-01 15:59:12 -08001607
Doug Zongker56c51052010-07-01 09:18:44 -07001608 printf("Command:");
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001609 for (arg = 0; arg < argc; arg++) {
Doug Zongker56c51052010-07-01 09:18:44 -07001610 printf(" \"%s\"", argv[arg]);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001611 }
Doug Zongker9b125b02010-09-22 12:01:37 -07001612 printf("\n");
1613
1614 if (update_package) {
1615 // For backwards compatibility on the cache partition only, if
1616 // we're given an old 'root' path "CACHE:foo", change it to
1617 // "/cache/foo".
1618 if (strncmp(update_package, "CACHE:", 6) == 0) {
1619 int len = strlen(update_package) + 10;
Doug Zongker28ce47c2011-10-28 10:33:05 -07001620 char* modified_path = (char*)malloc(len);
Jeremy Compostella1b7d9b72015-07-29 17:17:03 +02001621 if (modified_path) {
1622 strlcpy(modified_path, "/cache/", len);
1623 strlcat(modified_path, update_package+6, len);
1624 printf("(replacing path \"%s\" with \"%s\")\n",
1625 update_package, modified_path);
1626 update_package = modified_path;
1627 }
1628 else
1629 printf("modified_path allocation failed\n");
Doug Zongker9b125b02010-09-22 12:01:37 -07001630 }
1631 }
1632 printf("\n");
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001633
1634 property_list(print_property, NULL);
Doug Zongker56c51052010-07-01 09:18:44 -07001635 printf("\n");
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001636
Elliott Hughesbb78d622015-04-09 20:51:08 -07001637 ui->Print("Supported API: %d\n", RECOVERY_API_VERSION);
1638
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001639 int status = INSTALL_SUCCESS;
1640
Doug Zongker540d57f2011-01-18 13:36:58 -08001641 if (update_package != NULL) {
Tao Bao56870012016-04-29 15:37:05 -07001642 // It's not entirely true that we will modify the flash. But we want
1643 // to log the update attempt since update_package is non-NULL.
1644 modified_flash = true;
1645
Yabin Cui99281df2016-02-17 12:21:52 -08001646 if (!is_battery_ok()) {
1647 ui->Print("battery capacity is not enough for installing package, needed is %d%%\n",
1648 BATTERY_OK_PERCENTAGE);
Tianjie Xu16255832016-04-30 11:49:59 -07001649 // Log the error code to last_install when installation skips due to
1650 // low battery.
Tianjie Xu27b9fc82016-07-11 14:04:08 -07001651 log_failure_code(kLowBattery, update_package);
1652 status = INSTALL_SKIPPED;
1653 } else if (bootreason_in_blacklist()) {
1654 // Skip update-on-reboot when bootreason is kernel_panic or similar
1655 ui->Print("bootreason is in the blacklist; skip OTA installation\n");
1656 log_failure_code(kBootreasonInBlacklist, update_package);
Yabin Cui99281df2016-02-17 12:21:52 -08001657 status = INSTALL_SKIPPED;
1658 } else {
1659 status = install_package(update_package, &should_wipe_cache,
Tianjie Xu16255832016-04-30 11:49:59 -07001660 TEMPORARY_INSTALL_FILE, true, retry_count);
Yabin Cui99281df2016-02-17 12:21:52 -08001661 if (status == INSTALL_SUCCESS && should_wipe_cache) {
1662 wipe_cache(false, device);
1663 }
1664 if (status != INSTALL_SUCCESS) {
1665 ui->Print("Installation aborted.\n");
Tianjie Xu3c62b672016-02-05 18:25:58 -08001666 // When I/O error happens, reboot and retry installation EIO_RETRY_COUNT
1667 // times before we abandon this OTA update.
1668 if (status == INSTALL_RETRY && retry_count < EIO_RETRY_COUNT) {
1669 copy_logs();
1670 set_retry_bootloader_message(retry_count, argc, argv);
1671 // Print retry count on screen.
1672 ui->Print("Retry attempt %d\n", retry_count);
Doug Zongker7c3ae452013-05-14 11:03:02 -07001673
Tianjie Xu3c62b672016-02-05 18:25:58 -08001674 // Reboot and retry the update
1675 int ret = property_set(ANDROID_RB_PROPERTY, "reboot,recovery");
1676 if (ret < 0) {
1677 ui->Print("Reboot failed\n");
1678 } else {
1679 while (true) {
1680 pause();
1681 }
1682 }
1683 }
Yabin Cui99281df2016-02-17 12:21:52 -08001684 // If this is an eng or userdebug build, then automatically
1685 // turn the text display on if the script fails so the error
1686 // message is visible.
1687 if (is_ro_debuggable()) {
1688 ui->ShowText(true);
1689 }
Doug Zongker7c3ae452013-05-14 11:03:02 -07001690 }
1691 }
Tao Baoe39a9bc2015-03-31 12:19:05 -07001692 } else if (should_wipe_data) {
1693 if (!wipe_data(false, device)) {
1694 status = INSTALL_ERROR;
1695 }
Tao Baoc679f932015-03-30 09:43:49 -07001696 } else if (should_wipe_cache) {
Tao Baoe39a9bc2015-03-31 12:19:05 -07001697 if (!wipe_cache(false, device)) {
1698 status = INSTALL_ERROR;
1699 }
Tao Bao108ab212016-06-10 10:13:32 -07001700 } else if (should_wipe_ab) {
Yabin Cui6faf0262016-06-09 14:09:39 -07001701 if (!wipe_ab_device(wipe_package_size)) {
Tao Bao862a4c12016-06-02 11:16:50 -07001702 status = INSTALL_ERROR;
1703 }
Tao Baoc679f932015-03-30 09:43:49 -07001704 } else if (sideload) {
1705 // 'adb reboot sideload' acts the same as user presses key combinations
1706 // to enter the sideload mode. When 'sideload-auto-reboot' is used, text
1707 // display will NOT be turned on by default. And it will reboot after
1708 // sideload finishes even if there are errors. Unless one turns on the
1709 // text display during the installation. This is to enable automated
1710 // testing.
1711 if (!sideload_auto_reboot) {
1712 ui->ShowText(true);
1713 }
1714 status = apply_from_adb(ui, &should_wipe_cache, TEMPORARY_INSTALL_FILE);
1715 if (status == INSTALL_SUCCESS && should_wipe_cache) {
Tao Baoe39a9bc2015-03-31 12:19:05 -07001716 if (!wipe_cache(false, device)) {
1717 status = INSTALL_ERROR;
1718 }
Tao Baoc679f932015-03-30 09:43:49 -07001719 }
1720 ui->Print("\nInstall from ADB complete (status: %d).\n", status);
1721 if (sideload_auto_reboot) {
1722 ui->Print("Rebooting automatically.\n");
1723 }
Doug Zongkere5d5ac72012-04-12 11:01:22 -07001724 } else if (!just_exit) {
Doug Zongker02ec6b82012-08-22 17:26:40 -07001725 status = INSTALL_NONE; // No command specified
1726 ui->SetBackground(RecoveryUI::NO_COMMAND);
Tao Bao785d22c2015-05-04 09:34:29 -07001727
1728 // http://b/17489952
1729 // If this is an eng or userdebug build, automatically turn on the
1730 // text display if no command is specified.
1731 if (is_ro_debuggable()) {
1732 ui->ShowText(true);
1733 }
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001734 }
1735
Tao Baoc679f932015-03-30 09:43:49 -07001736 if (!sideload_auto_reboot && (status == INSTALL_ERROR || status == INSTALL_CORRUPT)) {
Doug Zongkerf24fd7e2013-07-02 11:43:25 -07001737 copy_logs();
Doug Zongker02ec6b82012-08-22 17:26:40 -07001738 ui->SetBackground(RecoveryUI::ERROR);
1739 }
Tao Baoc679f932015-03-30 09:43:49 -07001740
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001741 Device::BuiltinAction after = shutdown_after ? Device::SHUTDOWN : Device::REBOOT;
Yabin Cui99281df2016-02-17 12:21:52 -08001742 if ((status != INSTALL_SUCCESS && status != INSTALL_SKIPPED && !sideload_auto_reboot) ||
1743 ui->IsTextVisible()) {
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001744 Device::BuiltinAction temp = prompt_and_wait(device, status);
Tao Baoc679f932015-03-30 09:43:49 -07001745 if (temp != Device::NO_ACTION) {
1746 after = temp;
1747 }
Doug Zongker8674a722010-09-15 11:08:23 -07001748 }
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001749
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001750 // Save logs and clean up before rebooting or shutting down.
Tianjie Xuc14d95d2016-03-24 11:50:34 -07001751 finish_recovery();
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001752
1753 switch (after) {
1754 case Device::SHUTDOWN:
1755 ui->Print("Shutting down...\n");
1756 property_set(ANDROID_RB_PROPERTY, "shutdown,");
1757 break;
1758
1759 case Device::REBOOT_BOOTLOADER:
1760 ui->Print("Rebooting to bootloader...\n");
1761 property_set(ANDROID_RB_PROPERTY, "reboot,bootloader");
1762 break;
1763
1764 default:
1765 ui->Print("Rebooting...\n");
1766 property_set(ANDROID_RB_PROPERTY, "reboot,");
1767 break;
Doug Zongkerb1d12632014-03-18 10:32:12 -07001768 }
Tao Bao75238632015-05-27 14:46:17 -07001769 while (true) {
1770 pause();
1771 }
1772 // Should be unreachable.
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001773 return EXIT_SUCCESS;
1774}