blob: ccb2d223bb6276d73f0b9c6a1561faeffbe87c7a [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 Baob0838182016-06-02 11:16:50 -070022#include <inttypes.h>
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080023#include <limits.h>
Tao Baob0838182016-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 Baob0838182016-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 Salyzyn13aca592016-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 Xufa12b972016-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 Baob0838182016-06-02 11:16:50 -070046#include <android-base/strings.h>
Yabin Cui2f272c02016-06-24 18:22:02 -070047#include <bootloader_message/bootloader_message.h>
Tao Bao75238632015-05-27 14:46:17 -070048#include <cutils/android_reboot.h>
49#include <cutils/properties.h>
Mark Salyzyn13aca592016-03-09 14:58:16 -080050#include <log/logger.h> /* Android Log packet format */
51#include <private/android_logger.h> /* private pmsg functions */
Tao Baobef39712015-05-04 18:50:27 -070052
Yabin Cui99281df2016-02-17 12:21:52 -080053#include <healthd/BatteryMonitor.h>
54
Tao Bao75238632015-05-27 14:46:17 -070055#include "adb_install.h"
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080056#include "common.h"
Tao Bao75238632015-05-27 14:46:17 -070057#include "device.h"
Tianjie Xu16255832016-04-30 11:49:59 -070058#include "error_code.h"
Tao Bao75238632015-05-27 14:46:17 -070059#include "fuse_sdcard_provider.h"
60#include "fuse_sideload.h"
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080061#include "install.h"
62#include "minui/minui.h"
63#include "minzip/DirUtil.h"
Yabin Cui6faf0262016-06-09 14:09:39 -070064#include "minzip/Zip.h"
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080065#include "roots.h"
Doug Zongker28ce47c2011-10-28 10:33:05 -070066#include "ui.h"
Tao Baob0838182016-06-02 11:16:50 -070067#include "unique_fd.h"
Doug Zongker211aebc2011-10-28 15:13:10 -070068#include "screen_ui.h"
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080069
Stephen Smalley779701d2012-02-09 14:13:23 -050070struct selabel_handle *sehandle;
71
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080072static const struct option OPTIONS[] = {
Tao Baoc679f932015-03-30 09:43:49 -070073 { "send_intent", required_argument, NULL, 'i' },
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080074 { "update_package", required_argument, NULL, 'u' },
Tianjie Xufa12b972016-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";
100static const char *INTENT_FILE = "/cache/recovery/intent";
101static const char *LOG_FILE = "/cache/recovery/log";
Doug Zongkerd0181b82011-10-19 10:51:12 -0700102static const char *LAST_INSTALL_FILE = "/cache/recovery/last_install";
Doug Zongker8b240cc2012-08-29 15:19:29 -0700103static const char *LOCALE_FILE = "/cache/recovery/last_locale";
Paul Lawrence661f8a62016-02-25 12:42:19 -0800104static const char *CONVERT_FBE_DIR = "/tmp/convert_fbe";
105static const char *CONVERT_FBE_FILE = "/tmp/convert_fbe/convert_fbe";
Michael Ward9d2629c2011-06-23 22:14:24 -0700106static const char *CACHE_ROOT = "/cache";
Paul Lawrenced0db3372015-11-05 13:38:40 -0800107static const char *DATA_ROOT = "/data";
Doug Zongkerd4208f92010-09-20 12:16:13 -0700108static const char *SDCARD_ROOT = "/sdcard";
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800109static const char *TEMPORARY_LOG_FILE = "/tmp/recovery.log";
Doug Zongkerd0181b82011-10-19 10:51:12 -0700110static const char *TEMPORARY_INSTALL_FILE = "/tmp/last_install";
Tao Baof0124322015-04-11 02:04:11 +0000111static const char *LAST_KMSG_FILE = "/cache/recovery/last_kmsg";
Tao Baobef39712015-05-04 18:50:27 -0700112static const char *LAST_LOG_FILE = "/cache/recovery/last_log";
113static const int KEEP_LOG_COUNT = 10;
Tianjie Xuc37c5c32016-06-23 16:52:17 -0700114// We will try to apply the update package 5 times at most in case of an I/O error.
115static const int EIO_RETRY_COUNT = 4;
Yabin Cui99281df2016-02-17 12:21:52 -0800116static const int BATTERY_READ_TIMEOUT_IN_SEC = 10;
117// GmsCore enters recovery mode to install package when having enough battery
118// percentage. Normally, the threshold is 40% without charger and 20% with charger.
119// So we should check battery with a slightly lower limitation.
120static const int BATTERY_OK_PERCENTAGE = 20;
121static const int BATTERY_WITH_CHARGER_OK_PERCENTAGE = 15;
Tao Bao108ab212016-06-10 10:13:32 -0700122constexpr const char* RECOVERY_WIPE = "/etc/recovery.wipe";
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700123
Doug Zongker211aebc2011-10-28 15:13:10 -0700124RecoveryUI* ui = NULL;
Elliott Hughes498cda62016-04-14 16:49:04 -0700125static const char* locale = "en_US";
Doug Zongkerc87bab12013-11-25 13:53:25 -0800126char* stage = NULL;
Jeff Sharkeya6e13ae2014-09-24 11:46:17 -0700127char* reason = NULL;
Tao Bao682c34b2015-04-07 17:16:35 -0700128bool modified_flash = false;
Tao Baoae6408d2016-02-25 12:29:40 -0800129static bool has_cache = false;
Doug Zongker211aebc2011-10-28 15:13:10 -0700130
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800131/*
132 * The recovery tool communicates with the main system through /cache files.
133 * /cache/recovery/command - INPUT - command line for tool, one arg per line
134 * /cache/recovery/log - OUTPUT - combined log file from recovery run(s)
135 * /cache/recovery/intent - OUTPUT - intent that was passed in
136 *
137 * The arguments which may be supplied in the recovery.command file:
138 * --send_intent=anystring - write the text out to recovery.intent
Doug Zongkerd4208f92010-09-20 12:16:13 -0700139 * --update_package=path - verify install an OTA package file
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800140 * --wipe_data - erase user data (and cache), then reboot
141 * --wipe_cache - wipe cache (but not user data), then reboot
Oscar Montemayor05231562009-11-30 08:40:57 -0800142 * --set_encrypted_filesystem=on|off - enables / diasables encrypted fs
Doug Zongkere5d5ac72012-04-12 11:01:22 -0700143 * --just_exit - do nothing; exit and reboot
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800144 *
145 * After completing, we remove /cache/recovery/command and reboot.
146 * Arguments may also be supplied in the bootloader control block (BCB).
147 * These important scenarios must be safely restartable at any point:
148 *
149 * FACTORY RESET
150 * 1. user selects "factory reset"
151 * 2. main system writes "--wipe_data" to /cache/recovery/command
152 * 3. main system reboots into recovery
153 * 4. get_args() writes BCB with "boot-recovery" and "--wipe_data"
154 * -- after this, rebooting will restart the erase --
Doug Zongkerd4208f92010-09-20 12:16:13 -0700155 * 5. erase_volume() reformats /data
156 * 6. erase_volume() reformats /cache
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800157 * 7. finish_recovery() erases BCB
158 * -- after this, rebooting will restart the main system --
159 * 8. main() calls reboot() to boot main system
160 *
161 * OTA INSTALL
162 * 1. main system downloads OTA package to /cache/some-filename.zip
Doug Zongker9b125b02010-09-22 12:01:37 -0700163 * 2. main system writes "--update_package=/cache/some-filename.zip"
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800164 * 3. main system reboots into recovery
165 * 4. get_args() writes BCB with "boot-recovery" and "--update_package=..."
166 * -- after this, rebooting will attempt to reinstall the update --
167 * 5. install_package() attempts to install the update
168 * NOTE: the package install must itself be restartable from any point
169 * 6. finish_recovery() erases BCB
170 * -- after this, rebooting will (try to) restart the main system --
171 * 7. ** if install failed **
172 * 7a. prompt_and_wait() shows an error icon and waits for the user
173 * 7b; the user reboots (pulling the battery, etc) into the main system
174 * 8. main() calls maybe_install_firmware_update()
175 * ** if the update contained radio/hboot firmware **:
176 * 8a. m_i_f_u() writes BCB with "boot-recovery" and "--wipe_cache"
177 * -- after this, rebooting will reformat cache & restart main system --
178 * 8b. m_i_f_u() writes firmware image into raw cache partition
179 * 8c. m_i_f_u() writes BCB with "update-radio/hboot" and "--wipe_cache"
180 * -- after this, rebooting will attempt to reinstall firmware --
181 * 8d. bootloader tries to flash firmware
182 * 8e. bootloader writes BCB with "boot-recovery" (keeping "--wipe_cache")
183 * -- after this, rebooting will reformat cache & restart main system --
Doug Zongkerd4208f92010-09-20 12:16:13 -0700184 * 8f. erase_volume() reformats /cache
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800185 * 8g. finish_recovery() erases BCB
186 * -- after this, rebooting will (try to) restart the main system --
187 * 9. main() calls reboot() to boot main system
188 */
189
190static const int MAX_ARG_LENGTH = 4096;
191static const int MAX_ARGS = 100;
192
Doug Zongkerd4208f92010-09-20 12:16:13 -0700193// open a given path, mounting partitions as necessary
Tao Bao04ca4262015-09-10 15:32:24 -0700194FILE* fopen_path(const char *path, const char *mode) {
Doug Zongkerd4208f92010-09-20 12:16:13 -0700195 if (ensure_path_mounted(path) != 0) {
196 LOGE("Can't mount %s\n", path);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800197 return NULL;
198 }
199
200 // When writing, try to create the containing directory, if necessary.
201 // Use generous permissions, the system (init.rc) will reset them.
Stephen Smalley779701d2012-02-09 14:13:23 -0500202 if (strchr("wa", mode[0])) dirCreateHierarchy(path, 0777, NULL, 1, sehandle);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800203
204 FILE *fp = fopen(path, mode);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800205 return fp;
206}
207
Tao Bao04ca4262015-09-10 15:32:24 -0700208// close a file, log an error if the error indicator is set
209static void check_and_fclose(FILE *fp, const char *name) {
210 fflush(fp);
211 if (ferror(fp)) LOGE("Error in %s\n(%s)\n", name, strerror(errno));
212 fclose(fp);
213}
214
Elliott Hughesf14af802015-02-10 14:46:14 -0800215bool is_ro_debuggable() {
216 char value[PROPERTY_VALUE_MAX+1];
217 return (property_get("ro.debuggable", value, NULL) == 1 && value[0] == '1');
218}
219
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700220static void redirect_stdio(const char* filename) {
Tao Bao04ca4262015-09-10 15:32:24 -0700221 int pipefd[2];
222 if (pipe(pipefd) == -1) {
223 LOGE("pipe failed: %s\n", strerror(errno));
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700224
Tao Bao04ca4262015-09-10 15:32:24 -0700225 // Fall back to traditional logging mode without timestamps.
226 // If these fail, there's not really anywhere to complain...
227 freopen(filename, "a", stdout); setbuf(stdout, NULL);
228 freopen(filename, "a", stderr); setbuf(stderr, NULL);
229
230 return;
231 }
232
233 pid_t pid = fork();
234 if (pid == -1) {
235 LOGE("fork failed: %s\n", strerror(errno));
236
237 // Fall back to traditional logging mode without timestamps.
238 // If these fail, there's not really anywhere to complain...
239 freopen(filename, "a", stdout); setbuf(stdout, NULL);
240 freopen(filename, "a", stderr); setbuf(stderr, NULL);
241
242 return;
243 }
244
245 if (pid == 0) {
246 /// Close the unused write end.
247 close(pipefd[1]);
248
249 auto start = std::chrono::steady_clock::now();
250
251 // Child logger to actually write to the log file.
252 FILE* log_fp = fopen(filename, "a");
253 if (log_fp == nullptr) {
254 LOGE("fopen \"%s\" failed: %s\n", filename, strerror(errno));
255 close(pipefd[0]);
256 _exit(1);
257 }
258
259 FILE* pipe_fp = fdopen(pipefd[0], "r");
260 if (pipe_fp == nullptr) {
261 LOGE("fdopen failed: %s\n", strerror(errno));
262 check_and_fclose(log_fp, filename);
263 close(pipefd[0]);
264 _exit(1);
265 }
266
267 char* line = nullptr;
268 size_t len = 0;
269 while (getline(&line, &len, pipe_fp) != -1) {
270 auto now = std::chrono::steady_clock::now();
271 double duration = std::chrono::duration_cast<std::chrono::duration<double>>(
272 now - start).count();
273 if (line[0] == '\n') {
274 fprintf(log_fp, "[%12.6lf]\n", duration);
275 } else {
276 fprintf(log_fp, "[%12.6lf] %s", duration, line);
277 }
278 fflush(log_fp);
279 }
280
281 LOGE("getline failed: %s\n", strerror(errno));
282
283 free(line);
284 check_and_fclose(log_fp, filename);
285 close(pipefd[0]);
286 _exit(1);
287 } else {
288 // Redirect stdout/stderr to the logger process.
289 // Close the unused read end.
290 close(pipefd[0]);
291
292 setbuf(stdout, nullptr);
293 setbuf(stderr, nullptr);
294
295 if (dup2(pipefd[1], STDOUT_FILENO) == -1) {
296 LOGE("dup2 stdout failed: %s\n", strerror(errno));
297 }
298 if (dup2(pipefd[1], STDERR_FILENO) == -1) {
299 LOGE("dup2 stderr failed: %s\n", strerror(errno));
300 }
301
302 close(pipefd[1]);
303 }
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800304}
305
306// command line args come from, in decreasing precedence:
307// - the actual command line
308// - the bootloader control block (one per line, after "recovery")
309// - the contents of COMMAND_FILE (one per line)
310static void
311get_args(int *argc, char ***argv) {
Yabin Cui2f272c02016-06-24 18:22:02 -0700312 bootloader_message boot = {};
313 std::string err;
314 if (!read_bootloader_message(&boot, &err)) {
315 LOGE("%s\n", err.c_str());
316 // If fails, leave a zeroed bootloader_message.
317 memset(&boot, 0, sizeof(boot));
318 }
Doug Zongkerc87bab12013-11-25 13:53:25 -0800319 stage = strndup(boot.stage, sizeof(boot.stage));
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800320
321 if (boot.command[0] != 0 && boot.command[0] != 255) {
Mark Salyzynf3bb31c2014-03-14 09:39:48 -0700322 LOGI("Boot command: %.*s\n", (int)sizeof(boot.command), boot.command);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800323 }
324
325 if (boot.status[0] != 0 && boot.status[0] != 255) {
Mark Salyzynf3bb31c2014-03-14 09:39:48 -0700326 LOGI("Boot status: %.*s\n", (int)sizeof(boot.status), boot.status);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800327 }
328
329 // --- if arguments weren't supplied, look in the bootloader control block
330 if (*argc <= 1) {
331 boot.recovery[sizeof(boot.recovery) - 1] = '\0'; // Ensure termination
332 const char *arg = strtok(boot.recovery, "\n");
333 if (arg != NULL && !strcmp(arg, "recovery")) {
334 *argv = (char **) malloc(sizeof(char *) * MAX_ARGS);
335 (*argv)[0] = strdup(arg);
336 for (*argc = 1; *argc < MAX_ARGS; ++*argc) {
337 if ((arg = strtok(NULL, "\n")) == NULL) break;
338 (*argv)[*argc] = strdup(arg);
339 }
340 LOGI("Got arguments from boot message\n");
341 } else if (boot.recovery[0] != 0 && boot.recovery[0] != 255) {
342 LOGE("Bad boot message\n\"%.20s\"\n", boot.recovery);
343 }
344 }
345
Tao Baoae6408d2016-02-25 12:29:40 -0800346 // --- if that doesn't work, try the command file (if we have /cache).
347 if (*argc <= 1 && has_cache) {
Doug Zongkerd4208f92010-09-20 12:16:13 -0700348 FILE *fp = fopen_path(COMMAND_FILE, "r");
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800349 if (fp != NULL) {
Jin Feng93ffa752013-06-04 17:46:24 +0800350 char *token;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800351 char *argv0 = (*argv)[0];
352 *argv = (char **) malloc(sizeof(char *) * MAX_ARGS);
353 (*argv)[0] = argv0; // use the same program name
354
355 char buf[MAX_ARG_LENGTH];
356 for (*argc = 1; *argc < MAX_ARGS; ++*argc) {
357 if (!fgets(buf, sizeof(buf), fp)) break;
Jin Feng93ffa752013-06-04 17:46:24 +0800358 token = strtok(buf, "\r\n");
359 if (token != NULL) {
360 (*argv)[*argc] = strdup(token); // Strip newline.
361 } else {
362 --*argc;
363 }
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800364 }
365
366 check_and_fclose(fp, COMMAND_FILE);
367 LOGI("Got arguments from %s\n", COMMAND_FILE);
368 }
369 }
370
371 // --> write the arguments we have back into the bootloader control block
372 // always boot into recovery after this (until finish_recovery() is called)
373 strlcpy(boot.command, "boot-recovery", sizeof(boot.command));
374 strlcpy(boot.recovery, "recovery\n", sizeof(boot.recovery));
375 int i;
376 for (i = 1; i < *argc; ++i) {
377 strlcat(boot.recovery, (*argv)[i], sizeof(boot.recovery));
378 strlcat(boot.recovery, "\n", sizeof(boot.recovery));
379 }
Yabin Cui2f272c02016-06-24 18:22:02 -0700380 if (!write_bootloader_message(boot, &err)) {
381 LOGE("%s\n", err.c_str());
382 }
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800383}
384
Doug Zongker34c98df2009-08-18 12:05:45 -0700385static void
Oscar Montemayor05231562009-11-30 08:40:57 -0800386set_sdcard_update_bootloader_message() {
Yabin Cui2f272c02016-06-24 18:22:02 -0700387 bootloader_message boot = {};
Doug Zongker34c98df2009-08-18 12:05:45 -0700388 strlcpy(boot.command, "boot-recovery", sizeof(boot.command));
389 strlcpy(boot.recovery, "recovery\n", sizeof(boot.recovery));
Yabin Cui2f272c02016-06-24 18:22:02 -0700390 std::string err;
391 if (!write_bootloader_message(boot, &err)) {
392 LOGE("%s\n", err.c_str());
393 }
Doug Zongker34c98df2009-08-18 12:05:45 -0700394}
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800395
Tao Baobef39712015-05-04 18:50:27 -0700396// Read from kernel log into buffer and write out to file.
397static void save_kernel_log(const char* destination) {
398 int klog_buf_len = klogctl(KLOG_SIZE_BUFFER, 0, 0);
Patrick Tjincd055ee2014-12-09 11:26:40 -0800399 if (klog_buf_len <= 0) {
Tao Baobef39712015-05-04 18:50:27 -0700400 LOGE("Error getting klog size: %s\n", strerror(errno));
Patrick Tjincd055ee2014-12-09 11:26:40 -0800401 return;
402 }
403
Tao Baobef39712015-05-04 18:50:27 -0700404 std::string buffer(klog_buf_len, 0);
405 int n = klogctl(KLOG_READ_ALL, &buffer[0], klog_buf_len);
406 if (n == -1) {
407 LOGE("Error in reading klog: %s\n", strerror(errno));
Patrick Tjincd055ee2014-12-09 11:26:40 -0800408 return;
409 }
Tao Baobef39712015-05-04 18:50:27 -0700410 buffer.resize(n);
411 android::base::WriteStringToFile(buffer, destination);
Patrick Tjincd055ee2014-12-09 11:26:40 -0800412}
413
Mark Salyzyn13aca592016-03-09 14:58:16 -0800414// write content to the current pmsg session.
415static ssize_t __pmsg_write(const char *filename, const char *buf, size_t len) {
416 return __android_log_pmsg_file_write(LOG_ID_SYSTEM, ANDROID_LOG_INFO,
417 filename, buf, len);
418}
419
420static void copy_log_file_to_pmsg(const char* source, const char* destination) {
421 std::string content;
422 android::base::ReadFileToString(source, &content);
423 __pmsg_write(destination, content.c_str(), content.length());
424}
425
Tao Baof0124322015-04-11 02:04:11 +0000426// How much of the temp log we have copied to the copy in cache.
427static long tmplog_offset = 0;
428
Tao Baobef39712015-05-04 18:50:27 -0700429static void copy_log_file(const char* source, const char* destination, bool append) {
430 FILE* dest_fp = fopen_path(destination, append ? "a" : "w");
431 if (dest_fp == nullptr) {
Doug Zongker2c3539e2010-09-29 13:21:30 -0700432 LOGE("Can't open %s\n", destination);
433 } else {
Tao Baobef39712015-05-04 18:50:27 -0700434 FILE* source_fp = fopen(source, "r");
435 if (source_fp != nullptr) {
Tao Baof0124322015-04-11 02:04:11 +0000436 if (append) {
Tao Baobef39712015-05-04 18:50:27 -0700437 fseek(source_fp, tmplog_offset, SEEK_SET); // Since last write
Doug Zongker2c3539e2010-09-29 13:21:30 -0700438 }
439 char buf[4096];
Tao Baobef39712015-05-04 18:50:27 -0700440 size_t bytes;
441 while ((bytes = fread(buf, 1, sizeof(buf), source_fp)) != 0) {
442 fwrite(buf, 1, bytes, dest_fp);
Doug Zongker2c3539e2010-09-29 13:21:30 -0700443 }
Tao Baobef39712015-05-04 18:50:27 -0700444 if (append) {
445 tmplog_offset = ftell(source_fp);
446 }
447 check_and_fclose(source_fp, source);
Doug Zongker2c3539e2010-09-29 13:21:30 -0700448 }
Tao Baobef39712015-05-04 18:50:27 -0700449 check_and_fclose(dest_fp, destination);
Doug Zongker2c3539e2010-09-29 13:21:30 -0700450 }
451}
452
Tao Baobef39712015-05-04 18:50:27 -0700453// Rename last_log -> last_log.1 -> last_log.2 -> ... -> last_log.$max.
454// Similarly rename last_kmsg -> last_kmsg.1 -> ... -> last_kmsg.$max.
455// Overwrite any existing last_log.$max and last_kmsg.$max.
456static void rotate_logs(int max) {
Tao Bao682c34b2015-04-07 17:16:35 -0700457 // Logs should only be rotated once.
458 static bool rotated = false;
459 if (rotated) {
460 return;
461 }
462 rotated = true;
463 ensure_path_mounted(LAST_LOG_FILE);
Tao Baobef39712015-05-04 18:50:27 -0700464 ensure_path_mounted(LAST_KMSG_FILE);
Tao Bao682c34b2015-04-07 17:16:35 -0700465
Tao Bao682c34b2015-04-07 17:16:35 -0700466 for (int i = max-1; i >= 0; --i) {
Tao Bao80e46e02015-06-03 10:49:29 -0700467 std::string old_log = android::base::StringPrintf("%s", LAST_LOG_FILE);
468 if (i > 0) {
469 old_log += "." + std::to_string(i);
470 }
Tao Baobef39712015-05-04 18:50:27 -0700471 std::string new_log = android::base::StringPrintf("%s.%d", LAST_LOG_FILE, i+1);
472 // Ignore errors if old_log doesn't exist.
473 rename(old_log.c_str(), new_log.c_str());
474
Tao Bao80e46e02015-06-03 10:49:29 -0700475 std::string old_kmsg = android::base::StringPrintf("%s", LAST_KMSG_FILE);
476 if (i > 0) {
477 old_kmsg += "." + std::to_string(i);
478 }
Tao Baobef39712015-05-04 18:50:27 -0700479 std::string new_kmsg = android::base::StringPrintf("%s.%d", LAST_KMSG_FILE, i+1);
480 rename(old_kmsg.c_str(), new_kmsg.c_str());
Doug Zongkerda1ebae2013-05-16 11:23:48 -0700481 }
482}
Doug Zongker2c3539e2010-09-29 13:21:30 -0700483
Tao Bao682c34b2015-04-07 17:16:35 -0700484static void copy_logs() {
485 // We only rotate and record the log of the current session if there are
486 // actual attempts to modify the flash, such as wipes, installs from BCB
487 // or menu selections. This is to avoid unnecessary rotation (and
488 // possible deletion) of log files, if it does not do anything loggable.
489 if (!modified_flash) {
490 return;
491 }
492
Mark Salyzyn13aca592016-03-09 14:58:16 -0800493 // Always write to pmsg, this allows the OTA logs to be caught in logcat -L
494 copy_log_file_to_pmsg(TEMPORARY_LOG_FILE, LAST_LOG_FILE);
495 copy_log_file_to_pmsg(TEMPORARY_INSTALL_FILE, LAST_INSTALL_FILE);
496
497 // We can do nothing for now if there's no /cache partition.
498 if (!has_cache) {
499 return;
500 }
501
Tao Baobef39712015-05-04 18:50:27 -0700502 rotate_logs(KEEP_LOG_COUNT);
Tao Bao682c34b2015-04-07 17:16:35 -0700503
Doug Zongkerf24fd7e2013-07-02 11:43:25 -0700504 // Copy logs to cache so the system can find out what happened.
Tao Baof0124322015-04-11 02:04:11 +0000505 copy_log_file(TEMPORARY_LOG_FILE, LOG_FILE, true);
506 copy_log_file(TEMPORARY_LOG_FILE, LAST_LOG_FILE, false);
507 copy_log_file(TEMPORARY_INSTALL_FILE, LAST_INSTALL_FILE, false);
508 save_kernel_log(LAST_KMSG_FILE);
Doug Zongkerf24fd7e2013-07-02 11:43:25 -0700509 chmod(LOG_FILE, 0600);
510 chown(LOG_FILE, 1000, 1000); // system user
Tao Baof0124322015-04-11 02:04:11 +0000511 chmod(LAST_KMSG_FILE, 0600);
512 chown(LAST_KMSG_FILE, 1000, 1000); // system user
Doug Zongkerf24fd7e2013-07-02 11:43:25 -0700513 chmod(LAST_LOG_FILE, 0640);
514 chmod(LAST_INSTALL_FILE, 0644);
515 sync();
516}
517
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800518// clear the recovery command and prepare to boot a (hopefully working) system,
519// copy our log file to cache as well (for the system to read), and
520// record any intent we were asked to communicate back to the system.
521// this function is idempotent: call it as many times as you like.
522static void
Oscar Montemayor05231562009-11-30 08:40:57 -0800523finish_recovery(const char *send_intent) {
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800524 // By this point, we're ready to return to the main system...
Tao Baoae6408d2016-02-25 12:29:40 -0800525 if (send_intent != NULL && has_cache) {
Doug Zongkerd4208f92010-09-20 12:16:13 -0700526 FILE *fp = fopen_path(INTENT_FILE, "w");
Jay Freeman (saurik)619ec2f2008-11-17 01:56:05 +0000527 if (fp == NULL) {
528 LOGE("Can't open %s\n", INTENT_FILE);
529 } else {
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800530 fputs(send_intent, fp);
531 check_and_fclose(fp, INTENT_FILE);
532 }
533 }
534
Doug Zongker4f33e552012-08-23 13:16:12 -0700535 // Save the locale to cache, so if recovery is next started up
536 // without a --locale argument (eg, directly from the bootloader)
537 // it will use the last-known locale.
Mark Salyzyn13aca592016-03-09 14:58:16 -0800538 if (locale != NULL) {
539 size_t len = strlen(locale);
540 __pmsg_write(LOCALE_FILE, locale, len);
541 if (has_cache) {
542 LOGI("Saving locale \"%s\"\n", locale);
543 FILE* fp = fopen_path(LOCALE_FILE, "w");
544 fwrite(locale, 1, len, fp);
545 fflush(fp);
546 fsync(fileno(fp));
547 check_and_fclose(fp, LOCALE_FILE);
548 }
Doug Zongker4f33e552012-08-23 13:16:12 -0700549 }
550
Doug Zongkerf24fd7e2013-07-02 11:43:25 -0700551 copy_logs();
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800552
Doug Zongkere5d5ac72012-04-12 11:01:22 -0700553 // Reset to normal system boot so recovery won't cycle indefinitely.
Yabin Cui2f272c02016-06-24 18:22:02 -0700554 bootloader_message boot = {};
555 std::string err;
556 if (!write_bootloader_message(boot, &err)) {
557 LOGE("%s\n", err.c_str());
558 }
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800559
560 // Remove the command file, so recovery won't repeat indefinitely.
Tao Baoae6408d2016-02-25 12:29:40 -0800561 if (has_cache) {
562 if (ensure_path_mounted(COMMAND_FILE) != 0 || (unlink(COMMAND_FILE) && errno != ENOENT)) {
563 LOGW("Can't unlink %s\n", COMMAND_FILE);
564 }
565 ensure_path_unmounted(CACHE_ROOT);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800566 }
567
568 sync(); // For good measure.
569}
570
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700571typedef struct _saved_log_file {
572 char* name;
573 struct stat st;
574 unsigned char* data;
575 struct _saved_log_file* next;
576} saved_log_file;
577
Elliott Hughes945548e2015-06-05 17:59:56 -0700578static bool erase_volume(const char* volume) {
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700579 bool is_cache = (strcmp(volume, CACHE_ROOT) == 0);
Paul Lawrenced0db3372015-11-05 13:38:40 -0800580 bool is_data = (strcmp(volume, DATA_ROOT) == 0);
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700581
Doug Zongker02ec6b82012-08-22 17:26:40 -0700582 ui->SetBackground(RecoveryUI::ERASING);
Doug Zongker211aebc2011-10-28 15:13:10 -0700583 ui->SetProgressType(RecoveryUI::INDETERMINATE);
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700584
585 saved_log_file* head = NULL;
586
587 if (is_cache) {
Tao Baobef39712015-05-04 18:50:27 -0700588 // If we're reformatting /cache, we load any past logs
589 // (i.e. "/cache/recovery/last_*") and the current log
590 // ("/cache/recovery/log") into memory, so we can restore them after
591 // the reformat.
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700592
593 ensure_path_mounted(volume);
594
595 DIR* d;
596 struct dirent* de;
597 d = opendir(CACHE_LOG_DIR);
598 if (d) {
599 char path[PATH_MAX];
600 strcpy(path, CACHE_LOG_DIR);
601 strcat(path, "/");
602 int path_len = strlen(path);
603 while ((de = readdir(d)) != NULL) {
Tao Baobef39712015-05-04 18:50:27 -0700604 if (strncmp(de->d_name, "last_", 5) == 0 || strcmp(de->d_name, "log") == 0) {
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700605 saved_log_file* p = (saved_log_file*) malloc(sizeof(saved_log_file));
606 strcpy(path+path_len, de->d_name);
607 p->name = strdup(path);
608 if (stat(path, &(p->st)) == 0) {
609 // truncate files to 512kb
610 if (p->st.st_size > (1 << 19)) {
611 p->st.st_size = 1 << 19;
612 }
613 p->data = (unsigned char*) malloc(p->st.st_size);
614 FILE* f = fopen(path, "rb");
615 fread(p->data, 1, p->st.st_size, f);
616 fclose(f);
617 p->next = head;
618 head = p;
619 } else {
620 free(p);
621 }
622 }
623 }
624 closedir(d);
625 } else {
626 if (errno != ENOENT) {
627 printf("opendir failed: %s\n", strerror(errno));
628 }
629 }
630 }
631
Doug Zongker211aebc2011-10-28 15:13:10 -0700632 ui->Print("Formatting %s...\n", volume);
Doug Zongker2c3539e2010-09-29 13:21:30 -0700633
Doug Zongkerd0181b82011-10-19 10:51:12 -0700634 ensure_path_unmounted(volume);
Paul Lawrenced0db3372015-11-05 13:38:40 -0800635
636 int result;
637
638 if (is_data && reason && strcmp(reason, "convert_fbe") == 0) {
639 // Create convert_fbe breadcrumb file to signal to init
640 // to convert to file based encryption, not full disk encryption
Paul Lawrence661f8a62016-02-25 12:42:19 -0800641 if (mkdir(CONVERT_FBE_DIR, 0700) != 0) {
642 ui->Print("Failed to make convert_fbe dir %s\n", strerror(errno));
643 return true;
644 }
Paul Lawrenced0db3372015-11-05 13:38:40 -0800645 FILE* f = fopen(CONVERT_FBE_FILE, "wb");
646 if (!f) {
Paul Lawrence661f8a62016-02-25 12:42:19 -0800647 ui->Print("Failed to convert to file encryption %s\n", strerror(errno));
Paul Lawrenced0db3372015-11-05 13:38:40 -0800648 return true;
649 }
650 fclose(f);
651 result = format_volume(volume, CONVERT_FBE_DIR);
652 remove(CONVERT_FBE_FILE);
653 rmdir(CONVERT_FBE_DIR);
654 } else {
655 result = format_volume(volume);
656 }
Doug Zongkerd0181b82011-10-19 10:51:12 -0700657
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700658 if (is_cache) {
659 while (head) {
660 FILE* f = fopen_path(head->name, "wb");
661 if (f) {
662 fwrite(head->data, 1, head->st.st_size, f);
663 fclose(f);
664 chmod(head->name, head->st.st_mode);
665 chown(head->name, head->st.st_uid, head->st.st_gid);
666 }
667 free(head->name);
668 free(head->data);
669 saved_log_file* temp = head->next;
670 free(head);
671 head = temp;
672 }
673
Tao Baof0124322015-04-11 02:04:11 +0000674 // Any part of the log we'd copied to cache is now gone.
675 // Reset the pointer so we copy from the beginning of the temp
676 // log.
677 tmplog_offset = 0;
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700678 copy_logs();
Doug Zongker2c3539e2010-09-29 13:21:30 -0700679 }
680
Elliott Hughes945548e2015-06-05 17:59:56 -0700681 return (result == 0);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800682}
683
Doug Zongkerf93d8162009-09-22 15:16:02 -0700684static int
Doug Zongker28ce47c2011-10-28 10:33:05 -0700685get_menu_selection(const char* const * headers, const char* const * items,
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700686 int menu_only, int initial_selection, Device* device) {
Doug Zongkerf93d8162009-09-22 15:16:02 -0700687 // throw away keys pressed previously, so user doesn't
688 // accidentally trigger menu items.
Doug Zongker211aebc2011-10-28 15:13:10 -0700689 ui->FlushKeys();
Doug Zongkerf93d8162009-09-22 15:16:02 -0700690
Doug Zongker211aebc2011-10-28 15:13:10 -0700691 ui->StartMenu(headers, items, initial_selection);
Doug Zongker8674a722010-09-15 11:08:23 -0700692 int selected = initial_selection;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800693 int chosen_item = -1;
694
Doug Zongkerf93d8162009-09-22 15:16:02 -0700695 while (chosen_item < 0) {
Doug Zongker211aebc2011-10-28 15:13:10 -0700696 int key = ui->WaitKey();
697 int visible = ui->IsTextVisible();
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800698
Doug Zongker5cae4452011-01-25 13:15:30 -0800699 if (key == -1) { // ui_wait_key() timed out
Doug Zongker211aebc2011-10-28 15:13:10 -0700700 if (ui->WasTextEverVisible()) {
Doug Zongker5cae4452011-01-25 13:15:30 -0800701 continue;
702 } else {
703 LOGI("timed out waiting for key input; rebooting.\n");
Doug Zongker211aebc2011-10-28 15:13:10 -0700704 ui->EndMenu();
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700705 return 0; // XXX fixme
Doug Zongker5cae4452011-01-25 13:15:30 -0800706 }
707 }
708
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700709 int action = device->HandleMenuKey(key, visible);
Doug Zongkerddd6a282009-06-09 12:22:33 -0700710
711 if (action < 0) {
712 switch (action) {
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700713 case Device::kHighlightUp:
Elliott Hughes642aaa72015-04-10 12:47:46 -0700714 selected = ui->SelectMenu(--selected);
Doug Zongkerddd6a282009-06-09 12:22:33 -0700715 break;
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700716 case Device::kHighlightDown:
Elliott Hughes642aaa72015-04-10 12:47:46 -0700717 selected = ui->SelectMenu(++selected);
Doug Zongkerddd6a282009-06-09 12:22:33 -0700718 break;
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700719 case Device::kInvokeItem:
Doug Zongkerddd6a282009-06-09 12:22:33 -0700720 chosen_item = selected;
721 break;
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700722 case Device::kNoAction:
Doug Zongkerddd6a282009-06-09 12:22:33 -0700723 break;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800724 }
Doug Zongkerf93d8162009-09-22 15:16:02 -0700725 } else if (!menu_only) {
Doug Zongkerddd6a282009-06-09 12:22:33 -0700726 chosen_item = action;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800727 }
Doug Zongkerf93d8162009-09-22 15:16:02 -0700728 }
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800729
Doug Zongker211aebc2011-10-28 15:13:10 -0700730 ui->EndMenu();
Doug Zongkerf93d8162009-09-22 15:16:02 -0700731 return chosen_item;
732}
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800733
Doug Zongker8674a722010-09-15 11:08:23 -0700734static int compare_string(const void* a, const void* b) {
735 return strcmp(*(const char**)a, *(const char**)b);
736}
737
Doug Zongker93950222014-07-08 14:10:23 -0700738// Returns a malloc'd path, or NULL.
Elliott Hughes30694c92015-03-25 15:16:51 -0700739static char* browse_directory(const char* path, Device* device) {
Michael Ward9d2629c2011-06-23 22:14:24 -0700740 ensure_path_mounted(path);
Doug Zongkerc18eeb82010-09-21 16:49:26 -0700741
Elliott Hughes30694c92015-03-25 15:16:51 -0700742 DIR* d = opendir(path);
Doug Zongker8674a722010-09-15 11:08:23 -0700743 if (d == NULL) {
744 LOGE("error opening %s: %s\n", path, strerror(errno));
Doug Zongker93950222014-07-08 14:10:23 -0700745 return NULL;
Doug Zongker8674a722010-09-15 11:08:23 -0700746 }
747
Doug Zongker8674a722010-09-15 11:08:23 -0700748 int d_size = 0;
749 int d_alloc = 10;
Doug Zongker28ce47c2011-10-28 10:33:05 -0700750 char** dirs = (char**)malloc(d_alloc * sizeof(char*));
Doug Zongker8674a722010-09-15 11:08:23 -0700751 int z_size = 1;
752 int z_alloc = 10;
Doug Zongker28ce47c2011-10-28 10:33:05 -0700753 char** zips = (char**)malloc(z_alloc * sizeof(char*));
Doug Zongker8674a722010-09-15 11:08:23 -0700754 zips[0] = strdup("../");
755
Elliott Hughes30694c92015-03-25 15:16:51 -0700756 struct dirent* de;
Doug Zongker8674a722010-09-15 11:08:23 -0700757 while ((de = readdir(d)) != NULL) {
758 int name_len = strlen(de->d_name);
759
760 if (de->d_type == DT_DIR) {
761 // skip "." and ".." entries
762 if (name_len == 1 && de->d_name[0] == '.') continue;
763 if (name_len == 2 && de->d_name[0] == '.' &&
764 de->d_name[1] == '.') continue;
765
766 if (d_size >= d_alloc) {
767 d_alloc *= 2;
Doug Zongker28ce47c2011-10-28 10:33:05 -0700768 dirs = (char**)realloc(dirs, d_alloc * sizeof(char*));
Doug Zongker8674a722010-09-15 11:08:23 -0700769 }
Doug Zongker28ce47c2011-10-28 10:33:05 -0700770 dirs[d_size] = (char*)malloc(name_len + 2);
Doug Zongker8674a722010-09-15 11:08:23 -0700771 strcpy(dirs[d_size], de->d_name);
772 dirs[d_size][name_len] = '/';
773 dirs[d_size][name_len+1] = '\0';
774 ++d_size;
775 } else if (de->d_type == DT_REG &&
776 name_len >= 4 &&
777 strncasecmp(de->d_name + (name_len-4), ".zip", 4) == 0) {
778 if (z_size >= z_alloc) {
779 z_alloc *= 2;
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 zips[z_size++] = strdup(de->d_name);
783 }
784 }
785 closedir(d);
786
787 qsort(dirs, d_size, sizeof(char*), compare_string);
788 qsort(zips, z_size, sizeof(char*), compare_string);
789
790 // append dirs to the zips list
791 if (d_size + z_size + 1 > z_alloc) {
792 z_alloc = d_size + z_size + 1;
Doug Zongker28ce47c2011-10-28 10:33:05 -0700793 zips = (char**)realloc(zips, z_alloc * sizeof(char*));
Doug Zongker8674a722010-09-15 11:08:23 -0700794 }
795 memcpy(zips + z_size, dirs, d_size * sizeof(char*));
796 free(dirs);
797 z_size += d_size;
798 zips[z_size] = NULL;
799
Elliott Hughes8fd86d72015-04-13 14:36:02 -0700800 const char* headers[] = { "Choose a package to install:", path, NULL };
Elliott Hughes30694c92015-03-25 15:16:51 -0700801
Doug Zongker93950222014-07-08 14:10:23 -0700802 char* result;
Doug Zongker8674a722010-09-15 11:08:23 -0700803 int chosen_item = 0;
Doug Zongker93950222014-07-08 14:10:23 -0700804 while (true) {
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700805 chosen_item = get_menu_selection(headers, zips, 1, chosen_item, device);
Doug Zongker8674a722010-09-15 11:08:23 -0700806
807 char* item = zips[chosen_item];
808 int item_len = strlen(item);
809 if (chosen_item == 0) { // item 0 is always "../"
Michael Ward9d2629c2011-06-23 22:14:24 -0700810 // go up but continue browsing (if the caller is update_directory)
Doug Zongker93950222014-07-08 14:10:23 -0700811 result = NULL;
Doug Zongker8674a722010-09-15 11:08:23 -0700812 break;
813 }
Doug Zongker93950222014-07-08 14:10:23 -0700814
815 char new_path[PATH_MAX];
816 strlcpy(new_path, path, PATH_MAX);
817 strlcat(new_path, "/", PATH_MAX);
818 strlcat(new_path, item, PATH_MAX);
819
820 if (item[item_len-1] == '/') {
821 // recurse down into a subdirectory
822 new_path[strlen(new_path)-1] = '\0'; // truncate the trailing '/'
823 result = browse_directory(new_path, device);
824 if (result) break;
825 } else {
826 // selected a zip file: return the malloc'd path to the caller.
827 result = strdup(new_path);
828 break;
829 }
830 }
Doug Zongker8674a722010-09-15 11:08:23 -0700831
Elliott Hughes30694c92015-03-25 15:16:51 -0700832 for (int i = 0; i < z_size; ++i) free(zips[i]);
Doug Zongker8674a722010-09-15 11:08:23 -0700833 free(zips);
Doug Zongker8674a722010-09-15 11:08:23 -0700834
835 return result;
836}
837
Elliott Hughes30694c92015-03-25 15:16:51 -0700838static bool yes_no(Device* device, const char* question1, const char* question2) {
Elliott Hughes8fd86d72015-04-13 14:36:02 -0700839 const char* headers[] = { question1, question2, NULL };
Elliott Hughes30694c92015-03-25 15:16:51 -0700840 const char* items[] = { " No", " Yes", NULL };
Doug Zongkerddd6a282009-06-09 12:22:33 -0700841
Elliott Hughes30694c92015-03-25 15:16:51 -0700842 int chosen_item = get_menu_selection(headers, items, 1, 0, device);
843 return (chosen_item == 1);
844}
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800845
Tao Baoe39a9bc2015-03-31 12:19:05 -0700846// Return true on success.
847static bool wipe_data(int should_confirm, Device* device) {
848 if (should_confirm && !yes_no(device, "Wipe all user data?", " THIS CAN NOT BE UNDONE!")) {
849 return false;
Doug Zongkerf93d8162009-09-22 15:16:02 -0700850 }
Doug Zongker1066d2c2009-04-01 13:57:40 -0700851
Tao Bao682c34b2015-04-07 17:16:35 -0700852 modified_flash = true;
853
Doug Zongker211aebc2011-10-28 15:13:10 -0700854 ui->Print("\n-- Wiping data...\n");
Elliott Hughes945548e2015-06-05 17:59:56 -0700855 bool success =
856 device->PreWipeData() &&
857 erase_volume("/data") &&
Tao Baoae6408d2016-02-25 12:29:40 -0800858 (has_cache ? erase_volume("/cache") : true) &&
Elliott Hughes945548e2015-06-05 17:59:56 -0700859 device->PostWipeData();
860 ui->Print("Data wipe %s.\n", success ? "complete" : "failed");
861 return success;
Doug Zongkerf93d8162009-09-22 15:16:02 -0700862}
863
Tao Baoe39a9bc2015-03-31 12:19:05 -0700864// Return true on success.
865static bool wipe_cache(bool should_confirm, Device* device) {
Tao Baoae6408d2016-02-25 12:29:40 -0800866 if (!has_cache) {
867 ui->Print("No /cache partition found.\n");
868 return false;
869 }
870
Elliott Hughes30694c92015-03-25 15:16:51 -0700871 if (should_confirm && !yes_no(device, "Wipe cache?", " THIS CAN NOT BE UNDONE!")) {
Tao Baoe39a9bc2015-03-31 12:19:05 -0700872 return false;
Elliott Hughes30694c92015-03-25 15:16:51 -0700873 }
874
Tao Bao682c34b2015-04-07 17:16:35 -0700875 modified_flash = true;
876
Elliott Hughes30694c92015-03-25 15:16:51 -0700877 ui->Print("\n-- Wiping cache...\n");
Elliott Hughes945548e2015-06-05 17:59:56 -0700878 bool success = erase_volume("/cache");
879 ui->Print("Cache wipe %s.\n", success ? "complete" : "failed");
880 return success;
Elliott Hughes30694c92015-03-25 15:16:51 -0700881}
882
Tao Baob0838182016-06-02 11:16:50 -0700883// Secure-wipe a given partition. It uses BLKSECDISCARD, if supported.
884// Otherwise, it goes with BLKDISCARD (if device supports BLKDISCARDZEROES) or
885// BLKZEROOUT.
886static bool secure_wipe_partition(const std::string& partition) {
887 unique_fd fd(TEMP_FAILURE_RETRY(open(partition.c_str(), O_WRONLY)));
888 if (fd.get() == -1) {
889 LOGE("failed to open \"%s\": %s\n", partition.c_str(), strerror(errno));
890 return false;
891 }
892
893 uint64_t range[2] = {0, 0};
894 if (ioctl(fd.get(), BLKGETSIZE64, &range[1]) == -1 || range[1] == 0) {
895 LOGE("failed to get partition size: %s\n", strerror(errno));
896 return false;
897 }
898 printf("Secure-wiping \"%s\" from %" PRIu64 " to %" PRIu64 ".\n",
899 partition.c_str(), range[0], range[1]);
900
901 printf("Trying BLKSECDISCARD...\t");
902 if (ioctl(fd.get(), BLKSECDISCARD, &range) == -1) {
903 printf("failed: %s\n", strerror(errno));
904
905 // Use BLKDISCARD if it zeroes out blocks, otherwise use BLKZEROOUT.
906 unsigned int zeroes;
907 if (ioctl(fd.get(), BLKDISCARDZEROES, &zeroes) == 0 && zeroes != 0) {
908 printf("Trying BLKDISCARD...\t");
909 if (ioctl(fd.get(), BLKDISCARD, &range) == -1) {
910 printf("failed: %s\n", strerror(errno));
911 return false;
912 }
913 } else {
914 printf("Trying BLKZEROOUT...\t");
915 if (ioctl(fd.get(), BLKZEROOUT, &range) == -1) {
916 printf("failed: %s\n", strerror(errno));
917 return false;
918 }
919 }
920 }
921
922 printf("done\n");
923 return true;
924}
925
Yabin Cui6faf0262016-06-09 14:09:39 -0700926// Check if the wipe package matches expectation:
927// 1. verify the package.
928// 2. check metadata (ota-type, pre-device and serial number if having one).
929static bool check_wipe_package(size_t wipe_package_size) {
930 if (wipe_package_size == 0) {
931 LOGE("wipe_package_size is zero.\n");
932 return false;
933 }
934 std::string wipe_package;
Yabin Cui2f272c02016-06-24 18:22:02 -0700935 std::string err_str;
936 if (!read_wipe_package(&wipe_package, wipe_package_size, &err_str)) {
937 LOGE("Failed to read wipe package: %s\n", err_str.c_str());
Yabin Cui6faf0262016-06-09 14:09:39 -0700938 return false;
939 }
940 if (!verify_package(reinterpret_cast<const unsigned char*>(wipe_package.data()),
941 wipe_package.size())) {
942 LOGE("Failed to verify package.\n");
943 return false;
944 }
945
946 // Extract metadata
947 ZipArchive zip;
948 int err = mzOpenZipArchive(reinterpret_cast<unsigned char*>(&wipe_package[0]),
949 wipe_package.size(), &zip);
950 if (err != 0) {
951 LOGE("Can't open wipe package: %s\n", err != -1 ? strerror(err) : "bad");
952 return false;
953 }
954 std::string metadata;
955 if (!read_metadata_from_package(&zip, &metadata)) {
956 mzCloseZipArchive(&zip);
957 return false;
958 }
959 mzCloseZipArchive(&zip);
960
961 // Check metadata
962 std::vector<std::string> lines = android::base::Split(metadata, "\n");
963 bool ota_type_matched = false;
964 bool device_type_matched = false;
965 bool has_serial_number = false;
966 bool serial_number_matched = false;
967 for (const auto& line : lines) {
968 if (line == "ota-type=BRICK") {
969 ota_type_matched = true;
970 } else if (android::base::StartsWith(line, "pre-device=")) {
971 std::string device_type = line.substr(strlen("pre-device="));
972 char real_device_type[PROPERTY_VALUE_MAX];
973 property_get("ro.build.product", real_device_type, "");
974 device_type_matched = (device_type == real_device_type);
975 } else if (android::base::StartsWith(line, "serialno=")) {
976 std::string serial_no = line.substr(strlen("serialno="));
977 char real_serial_no[PROPERTY_VALUE_MAX];
978 property_get("ro.serialno", real_serial_no, "");
979 has_serial_number = true;
980 serial_number_matched = (serial_no == real_serial_no);
981 }
982 }
983 return ota_type_matched && device_type_matched && (!has_serial_number || serial_number_matched);
984}
985
Tao Bao108ab212016-06-10 10:13:32 -0700986// Wipe the current A/B device, with a secure wipe of all the partitions in
987// RECOVERY_WIPE.
Yabin Cui6faf0262016-06-09 14:09:39 -0700988static bool wipe_ab_device(size_t wipe_package_size) {
Tao Baob0838182016-06-02 11:16:50 -0700989 ui->SetBackground(RecoveryUI::ERASING);
990 ui->SetProgressType(RecoveryUI::INDETERMINATE);
991
Yabin Cui6faf0262016-06-09 14:09:39 -0700992 if (!check_wipe_package(wipe_package_size)) {
993 LOGE("Failed to verify wipe package\n");
994 return false;
995 }
Tao Baob0838182016-06-02 11:16:50 -0700996 std::string partition_list;
Tao Bao108ab212016-06-10 10:13:32 -0700997 if (!android::base::ReadFileToString(RECOVERY_WIPE, &partition_list)) {
998 LOGE("failed to read \"%s\".\n", RECOVERY_WIPE);
Tao Baob0838182016-06-02 11:16:50 -0700999 return false;
1000 }
1001
1002 std::vector<std::string> lines = android::base::Split(partition_list, "\n");
1003 for (const std::string& line : lines) {
1004 std::string partition = android::base::Trim(line);
1005 // Ignore '#' comment or empty lines.
1006 if (android::base::StartsWith(partition, "#") || partition.empty()) {
1007 continue;
1008 }
1009
1010 // Proceed anyway even if it fails to wipe some partition.
1011 secure_wipe_partition(partition);
1012 }
1013 return true;
1014}
1015
Nick Kralevicha9ad0322014-10-22 18:38:48 -07001016static void choose_recovery_file(Device* device) {
Elliott Hughesc0491632015-05-06 12:40:05 -07001017 // "Back" + KEEP_LOG_COUNT * 2 + terminating nullptr entry
1018 char* entries[1 + KEEP_LOG_COUNT * 2 + 1];
Nick Kralevicha9ad0322014-10-22 18:38:48 -07001019 memset(entries, 0, sizeof(entries));
1020
Tao Baobef39712015-05-04 18:50:27 -07001021 unsigned int n = 0;
Patrick Tjincd055ee2014-12-09 11:26:40 -08001022
Tianjie Xu62ab2a02016-08-17 12:02:46 -07001023 if (has_cache) {
1024 // Add LAST_LOG_FILE + LAST_LOG_FILE.x
1025 // Add LAST_KMSG_FILE + LAST_KMSG_FILE.x
1026 for (int i = 0; i < KEEP_LOG_COUNT; i++) {
1027 char* log_file;
1028 int ret;
1029 ret = (i == 0) ? asprintf(&log_file, "%s", LAST_LOG_FILE) :
1030 asprintf(&log_file, "%s.%d", LAST_LOG_FILE, i);
1031 if (ret == -1) {
1032 // memory allocation failure - return early. Should never happen.
1033 return;
1034 }
1035 if ((ensure_path_mounted(log_file) != 0) || (access(log_file, R_OK) == -1)) {
1036 free(log_file);
1037 } else {
1038 entries[n++] = log_file;
1039 }
Tao Baobef39712015-05-04 18:50:27 -07001040
Tianjie Xu62ab2a02016-08-17 12:02:46 -07001041 char* kmsg_file;
1042 ret = (i == 0) ? asprintf(&kmsg_file, "%s", LAST_KMSG_FILE) :
1043 asprintf(&kmsg_file, "%s.%d", LAST_KMSG_FILE, i);
1044 if (ret == -1) {
1045 // memory allocation failure - return early. Should never happen.
1046 return;
1047 }
1048 if ((ensure_path_mounted(kmsg_file) != 0) || (access(kmsg_file, R_OK) == -1)) {
1049 free(kmsg_file);
1050 } else {
1051 entries[n++] = kmsg_file;
1052 }
Tao Baobef39712015-05-04 18:50:27 -07001053 }
Tianjie Xu62ab2a02016-08-17 12:02:46 -07001054 } else {
1055 // If cache partition is not found, view /tmp/recovery.log instead.
1056 ui->Print("No /cache partition found.\n");
1057 if (access(TEMPORARY_LOG_FILE, R_OK) == -1) {
1058 return;
1059 } else{
1060 entries[n++] = strdup(TEMPORARY_LOG_FILE);
Tao Baobef39712015-05-04 18:50:27 -07001061 }
Nick Kralevicha9ad0322014-10-22 18:38:48 -07001062 }
1063
Elliott Hughesc0491632015-05-06 12:40:05 -07001064 entries[n++] = strdup("Back");
1065
Tao Baobef39712015-05-04 18:50:27 -07001066 const char* headers[] = { "Select file to view", nullptr };
Nick Kralevicha9ad0322014-10-22 18:38:48 -07001067
Elliott Hughes8de52072015-04-08 20:06:50 -07001068 while (true) {
Elliott Hughes30694c92015-03-25 15:16:51 -07001069 int chosen_item = get_menu_selection(headers, entries, 1, 0, device);
Elliott Hughesc0491632015-05-06 12:40:05 -07001070 if (strcmp(entries[chosen_item], "Back") == 0) break;
Elliott Hughes8de52072015-04-08 20:06:50 -07001071
Elliott Hughes8de52072015-04-08 20:06:50 -07001072 ui->ShowFile(entries[chosen_item]);
Nick Kralevicha9ad0322014-10-22 18:38:48 -07001073 }
1074
Tao Baobef39712015-05-04 18:50:27 -07001075 for (size_t i = 0; i < (sizeof(entries) / sizeof(*entries)); i++) {
Nick Kralevicha9ad0322014-10-22 18:38:48 -07001076 free(entries[i]);
1077 }
1078}
1079
Elliott Hughes498cda62016-04-14 16:49:04 -07001080static void run_graphics_test(Device* device) {
1081 // Switch to graphics screen.
1082 ui->ShowText(false);
1083
1084 ui->SetProgressType(RecoveryUI::INDETERMINATE);
1085 ui->SetBackground(RecoveryUI::INSTALLING_UPDATE);
1086 sleep(1);
1087
1088 ui->SetBackground(RecoveryUI::ERROR);
1089 sleep(1);
1090
1091 ui->SetBackground(RecoveryUI::NO_COMMAND);
1092 sleep(1);
1093
1094 ui->SetBackground(RecoveryUI::ERASING);
1095 sleep(1);
1096
1097 ui->SetBackground(RecoveryUI::INSTALLING_UPDATE);
1098
1099 ui->SetProgressType(RecoveryUI::DETERMINATE);
1100 ui->ShowProgress(1.0, 10.0);
1101 float fraction = 0.0;
1102 for (size_t i = 0; i < 100; ++i) {
1103 fraction += .01;
1104 ui->SetProgress(fraction);
1105 usleep(100000);
1106 }
1107
1108 ui->ShowText(true);
1109}
1110
Tao Baocdcf28f2016-01-13 15:05:20 -08001111// How long (in seconds) we wait for the fuse-provided package file to
1112// appear, before timing out.
1113#define SDCARD_INSTALL_TIMEOUT 10
1114
Tao Bao145d8612015-03-25 15:51:15 -07001115static int apply_from_sdcard(Device* device, bool* wipe_cache) {
Tao Bao682c34b2015-04-07 17:16:35 -07001116 modified_flash = true;
1117
Christian Poetzsch4ec58a42015-02-19 10:42:39 +00001118 if (ensure_path_mounted(SDCARD_ROOT) != 0) {
1119 ui->Print("\n-- Couldn't mount %s.\n", SDCARD_ROOT);
1120 return INSTALL_ERROR;
1121 }
1122
1123 char* path = browse_directory(SDCARD_ROOT, device);
1124 if (path == NULL) {
Elliott Hughes018ed312015-04-08 16:51:36 -07001125 ui->Print("\n-- No package file selected.\n");
caozhiyuanb4effb92015-06-10 16:46:38 +08001126 ensure_path_unmounted(SDCARD_ROOT);
Christian Poetzsch4ec58a42015-02-19 10:42:39 +00001127 return INSTALL_ERROR;
1128 }
1129
1130 ui->Print("\n-- Install %s ...\n", path);
1131 set_sdcard_update_bootloader_message();
Christian Poetzsch4ec58a42015-02-19 10:42:39 +00001132
Tao Baocdcf28f2016-01-13 15:05:20 -08001133 // We used to use fuse in a thread as opposed to a process. Since accessing
1134 // through fuse involves going from kernel to userspace to kernel, it leads
1135 // to deadlock when a page fault occurs. (Bug: 26313124)
1136 pid_t child;
1137 if ((child = fork()) == 0) {
1138 bool status = start_sdcard_fuse(path);
1139
1140 _exit(status ? EXIT_SUCCESS : EXIT_FAILURE);
1141 }
1142
1143 // FUSE_SIDELOAD_HOST_PATHNAME will start to exist once the fuse in child
1144 // process is ready.
1145 int result = INSTALL_ERROR;
1146 int status;
1147 bool waited = false;
1148 for (int i = 0; i < SDCARD_INSTALL_TIMEOUT; ++i) {
1149 if (waitpid(child, &status, WNOHANG) == -1) {
1150 result = INSTALL_ERROR;
1151 waited = true;
1152 break;
1153 }
1154
1155 struct stat sb;
1156 if (stat(FUSE_SIDELOAD_HOST_PATHNAME, &sb) == -1) {
1157 if (errno == ENOENT && i < SDCARD_INSTALL_TIMEOUT-1) {
1158 sleep(1);
1159 continue;
1160 } else {
1161 LOGE("Timed out waiting for the fuse-provided package.\n");
1162 result = INSTALL_ERROR;
1163 kill(child, SIGKILL);
1164 break;
1165 }
1166 }
1167
1168 result = install_package(FUSE_SIDELOAD_HOST_PATHNAME, wipe_cache,
Tianjie Xu16255832016-04-30 11:49:59 -07001169 TEMPORARY_INSTALL_FILE, false, 0/*retry_count*/);
Tao Baocdcf28f2016-01-13 15:05:20 -08001170 break;
1171 }
Christian Poetzsch4ec58a42015-02-19 10:42:39 +00001172
Tao Baocdcf28f2016-01-13 15:05:20 -08001173 if (!waited) {
1174 // Calling stat() on this magic filename signals the fuse
1175 // filesystem to shut down.
1176 struct stat sb;
1177 stat(FUSE_SIDELOAD_HOST_EXIT_PATHNAME, &sb);
1178
1179 waitpid(child, &status, 0);
1180 }
1181
1182 if (!WIFEXITED(status) || WEXITSTATUS(status) != 0) {
1183 LOGE("Error exit from the fuse process: %d\n", WEXITSTATUS(status));
1184 }
1185
Christian Poetzsch4ec58a42015-02-19 10:42:39 +00001186 ensure_path_unmounted(SDCARD_ROOT);
Tao Baocdcf28f2016-01-13 15:05:20 -08001187 return result;
Christian Poetzsch4ec58a42015-02-19 10:42:39 +00001188}
1189
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001190// Return REBOOT, SHUTDOWN, or REBOOT_BOOTLOADER. Returning NO_ACTION
1191// means to take the default, which is to reboot or shutdown depending
1192// on if the --shutdown_after flag was passed to recovery.
1193static Device::BuiltinAction
Doug Zongker6c8553d2012-09-24 10:40:47 -07001194prompt_and_wait(Device* device, int status) {
Doug Zongkerf93d8162009-09-22 15:16:02 -07001195 for (;;) {
1196 finish_recovery(NULL);
Doug Zongker6c8553d2012-09-24 10:40:47 -07001197 switch (status) {
1198 case INSTALL_SUCCESS:
1199 case INSTALL_NONE:
1200 ui->SetBackground(RecoveryUI::NO_COMMAND);
1201 break;
1202
1203 case INSTALL_ERROR:
1204 case INSTALL_CORRUPT:
1205 ui->SetBackground(RecoveryUI::ERROR);
1206 break;
1207 }
Doug Zongker211aebc2011-10-28 15:13:10 -07001208 ui->SetProgressType(RecoveryUI::EMPTY);
Doug Zongkerf93d8162009-09-22 15:16:02 -07001209
Elliott Hughes8fd86d72015-04-13 14:36:02 -07001210 int chosen_item = get_menu_selection(nullptr, device->GetMenuItems(), 0, 0, device);
Doug Zongkerf93d8162009-09-22 15:16:02 -07001211
1212 // device-specific code may take some action here. It may
1213 // return one of the core actions handled in the switch
1214 // statement below.
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001215 Device::BuiltinAction chosen_action = device->InvokeMenuItem(chosen_item);
Doug Zongkerf93d8162009-09-22 15:16:02 -07001216
Elliott Hughes30694c92015-03-25 15:16:51 -07001217 bool should_wipe_cache = false;
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001218 switch (chosen_action) {
1219 case Device::NO_ACTION:
1220 break;
1221
Doug Zongkerdaefc1d2011-10-31 09:34:15 -07001222 case Device::REBOOT:
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001223 case Device::SHUTDOWN:
1224 case Device::REBOOT_BOOTLOADER:
1225 return chosen_action;
Doug Zongkerf93d8162009-09-22 15:16:02 -07001226
Doug Zongkerdaefc1d2011-10-31 09:34:15 -07001227 case Device::WIPE_DATA:
1228 wipe_data(ui->IsTextVisible(), device);
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001229 if (!ui->IsTextVisible()) return Device::NO_ACTION;
Doug Zongkerf93d8162009-09-22 15:16:02 -07001230 break;
1231
Doug Zongkerdaefc1d2011-10-31 09:34:15 -07001232 case Device::WIPE_CACHE:
Elliott Hughes30694c92015-03-25 15:16:51 -07001233 wipe_cache(ui->IsTextVisible(), device);
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001234 if (!ui->IsTextVisible()) return Device::NO_ACTION;
Doug Zongkerf93d8162009-09-22 15:16:02 -07001235 break;
1236
Christian Poetzsch4ec58a42015-02-19 10:42:39 +00001237 case Device::APPLY_ADB_SIDELOAD:
Elliott Hughesec283402015-04-10 10:01:53 -07001238 case Device::APPLY_SDCARD:
Christian Poetzsch4ec58a42015-02-19 10:42:39 +00001239 {
1240 bool adb = (chosen_action == Device::APPLY_ADB_SIDELOAD);
1241 if (adb) {
Elliott Hughes30694c92015-03-25 15:16:51 -07001242 status = apply_from_adb(ui, &should_wipe_cache, TEMPORARY_INSTALL_FILE);
Doug Zongkerd0181b82011-10-19 10:51:12 -07001243 } else {
Elliott Hughes30694c92015-03-25 15:16:51 -07001244 status = apply_from_sdcard(device, &should_wipe_cache);
Doug Zongkerd0181b82011-10-19 10:51:12 -07001245 }
Doug Zongker945fc682014-07-10 10:50:39 -07001246
Elliott Hughes30694c92015-03-25 15:16:51 -07001247 if (status == INSTALL_SUCCESS && should_wipe_cache) {
Tao Baoe39a9bc2015-03-31 12:19:05 -07001248 if (!wipe_cache(false, device)) {
1249 status = INSTALL_ERROR;
1250 }
Christian Poetzsch4ec58a42015-02-19 10:42:39 +00001251 }
1252
Tao Baoc679f932015-03-30 09:43:49 -07001253 if (status != INSTALL_SUCCESS) {
1254 ui->SetBackground(RecoveryUI::ERROR);
1255 ui->Print("Installation aborted.\n");
1256 copy_logs();
1257 } else if (!ui->IsTextVisible()) {
1258 return Device::NO_ACTION; // reboot if logs aren't visible
1259 } else {
1260 ui->Print("\nInstall from %s complete.\n", adb ? "ADB" : "SD card");
Doug Zongker8674a722010-09-15 11:08:23 -07001261 }
Doug Zongkerf93d8162009-09-22 15:16:02 -07001262 }
1263 break;
Doug Zongkerdaefc1d2011-10-31 09:34:15 -07001264
Elliott Hughesec283402015-04-10 10:01:53 -07001265 case Device::VIEW_RECOVERY_LOGS:
1266 choose_recovery_file(device);
Michael Ward9d2629c2011-06-23 22:14:24 -07001267 break;
Doug Zongker9270a202012-01-09 15:16:13 -08001268
Elliott Hughes498cda62016-04-14 16:49:04 -07001269 case Device::RUN_GRAPHICS_TEST:
1270 run_graphics_test(device);
1271 break;
1272
Elliott Hughesec283402015-04-10 10:01:53 -07001273 case Device::MOUNT_SYSTEM:
Tao Baoabb8f772015-07-30 14:43:27 -07001274 char system_root_image[PROPERTY_VALUE_MAX];
1275 property_get("ro.build.system_root_image", system_root_image, "");
1276
1277 // For a system image built with the root directory (i.e.
1278 // system_root_image == "true"), we mount it to /system_root, and symlink /system
1279 // to /system_root/system to make adb shell work (the symlink is created through
1280 // the build system).
1281 // Bug: 22855115
1282 if (strcmp(system_root_image, "true") == 0) {
1283 if (ensure_path_mounted_at("/", "/system_root") != -1) {
1284 ui->Print("Mounted /system.\n");
1285 }
1286 } else {
1287 if (ensure_path_mounted("/system") != -1) {
1288 ui->Print("Mounted /system.\n");
1289 }
Elliott Hughesec283402015-04-10 10:01:53 -07001290 }
Tao Baoabb8f772015-07-30 14:43:27 -07001291
Nick Kralevicha9ad0322014-10-22 18:38:48 -07001292 break;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001293 }
1294 }
1295}
1296
1297static void
Oscar Montemayor05231562009-11-30 08:40:57 -08001298print_property(const char *key, const char *name, void *cookie) {
Doug Zongker56c51052010-07-01 09:18:44 -07001299 printf("%s=%s\n", key, name);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001300}
1301
Doug Zongker02ec6b82012-08-22 17:26:40 -07001302static void
1303load_locale_from_cache() {
1304 FILE* fp = fopen_path(LOCALE_FILE, "r");
1305 char buffer[80];
1306 if (fp != NULL) {
1307 fgets(buffer, sizeof(buffer), fp);
1308 int j = 0;
Doug Zongker5fa8c232012-09-18 12:37:02 -07001309 unsigned int i;
Doug Zongker02ec6b82012-08-22 17:26:40 -07001310 for (i = 0; i < sizeof(buffer) && buffer[i]; ++i) {
1311 if (!isspace(buffer[i])) {
1312 buffer[j++] = buffer[i];
1313 }
1314 }
1315 buffer[j] = 0;
1316 locale = strdup(buffer);
Devin Kim6016d082012-10-08 09:47:37 -07001317 check_and_fclose(fp, LOCALE_FILE);
Doug Zongker02ec6b82012-08-22 17:26:40 -07001318 }
1319}
1320
Doug Zongker7c3ae452013-05-14 11:03:02 -07001321static RecoveryUI* gCurrentUI = NULL;
1322
1323void
1324ui_print(const char* format, ...) {
1325 char buffer[256];
1326
1327 va_list ap;
1328 va_start(ap, format);
1329 vsnprintf(buffer, sizeof(buffer), format, ap);
1330 va_end(ap);
1331
1332 if (gCurrentUI != NULL) {
1333 gCurrentUI->Print("%s", buffer);
1334 } else {
1335 fputs(buffer, stdout);
1336 }
1337}
1338
Yabin Cui99281df2016-02-17 12:21:52 -08001339static bool is_battery_ok() {
1340 struct healthd_config healthd_config = {
1341 .batteryStatusPath = android::String8(android::String8::kEmptyString),
1342 .batteryHealthPath = android::String8(android::String8::kEmptyString),
1343 .batteryPresentPath = android::String8(android::String8::kEmptyString),
1344 .batteryCapacityPath = android::String8(android::String8::kEmptyString),
1345 .batteryVoltagePath = android::String8(android::String8::kEmptyString),
1346 .batteryTemperaturePath = android::String8(android::String8::kEmptyString),
1347 .batteryTechnologyPath = android::String8(android::String8::kEmptyString),
1348 .batteryCurrentNowPath = android::String8(android::String8::kEmptyString),
1349 .batteryCurrentAvgPath = android::String8(android::String8::kEmptyString),
1350 .batteryChargeCounterPath = android::String8(android::String8::kEmptyString),
1351 .batteryFullChargePath = android::String8(android::String8::kEmptyString),
1352 .batteryCycleCountPath = android::String8(android::String8::kEmptyString),
1353 .energyCounter = NULL,
1354 .boot_min_cap = 0,
1355 .screen_on = NULL
1356 };
1357 healthd_board_init(&healthd_config);
1358
1359 android::BatteryMonitor monitor;
1360 monitor.init(&healthd_config);
1361
1362 int wait_second = 0;
1363 while (true) {
1364 int charge_status = monitor.getChargeStatus();
1365 // Treat unknown status as charged.
1366 bool charged = (charge_status != android::BATTERY_STATUS_DISCHARGING &&
1367 charge_status != android::BATTERY_STATUS_NOT_CHARGING);
1368 android::BatteryProperty capacity;
1369 android::status_t status = monitor.getProperty(android::BATTERY_PROP_CAPACITY, &capacity);
1370 ui_print("charge_status %d, charged %d, status %d, capacity %lld\n", charge_status,
1371 charged, status, capacity.valueInt64);
1372 // At startup, the battery drivers in devices like N5X/N6P take some time to load
1373 // the battery profile. Before the load finishes, it reports value 50 as a fake
1374 // capacity. BATTERY_READ_TIMEOUT_IN_SEC is set that the battery drivers are expected
1375 // to finish loading the battery profile earlier than 10 seconds after kernel startup.
1376 if (status == 0 && capacity.valueInt64 == 50) {
1377 if (wait_second < BATTERY_READ_TIMEOUT_IN_SEC) {
1378 sleep(1);
1379 wait_second++;
1380 continue;
1381 }
1382 }
1383 // If we can't read battery percentage, it may be a device without battery. In this
1384 // situation, use 100 as a fake battery percentage.
1385 if (status != 0) {
1386 capacity.valueInt64 = 100;
1387 }
1388 return (charged && capacity.valueInt64 >= BATTERY_WITH_CHARGER_OK_PERCENTAGE) ||
1389 (!charged && capacity.valueInt64 >= BATTERY_OK_PERCENTAGE);
1390 }
1391}
1392
Tianjie Xufa12b972016-02-05 18:25:58 -08001393static void set_retry_bootloader_message(int retry_count, int argc, char** argv) {
Yabin Cui2f272c02016-06-24 18:22:02 -07001394 bootloader_message boot = {};
Tianjie Xufa12b972016-02-05 18:25:58 -08001395 strlcpy(boot.command, "boot-recovery", sizeof(boot.command));
1396 strlcpy(boot.recovery, "recovery\n", sizeof(boot.recovery));
1397
1398 for (int i = 1; i < argc; ++i) {
1399 if (strstr(argv[i], "retry_count") == nullptr) {
1400 strlcat(boot.recovery, argv[i], sizeof(boot.recovery));
1401 strlcat(boot.recovery, "\n", sizeof(boot.recovery));
1402 }
1403 }
1404
1405 // Initialize counter to 1 if it's not in BCB, otherwise increment it by 1.
1406 if (retry_count == 0) {
1407 strlcat(boot.recovery, "--retry_count=1\n", sizeof(boot.recovery));
1408 } else {
1409 char buffer[20];
1410 snprintf(buffer, sizeof(buffer), "--retry_count=%d\n", retry_count+1);
1411 strlcat(boot.recovery, buffer, sizeof(boot.recovery));
1412 }
Yabin Cui2f272c02016-06-24 18:22:02 -07001413 std::string err;
1414 if (!write_bootloader_message(boot, &err)) {
1415 LOGE("%s\n", err.c_str());
1416 }
Tianjie Xufa12b972016-02-05 18:25:58 -08001417}
1418
Tianjie Xu27b9fc82016-07-11 14:04:08 -07001419static bool bootreason_in_blacklist() {
1420 char bootreason[PROPERTY_VALUE_MAX];
1421 if (property_get("ro.boot.bootreason", bootreason, nullptr) > 0) {
1422 for (const auto& str : bootreason_blacklist) {
1423 if (strcasecmp(str.c_str(), bootreason) == 0) {
1424 return true;
1425 }
1426 }
1427 }
1428 return false;
1429}
1430
1431static void log_failure_code(ErrorCode code, const char *update_package) {
1432 FILE* install_log = fopen_path(TEMPORARY_INSTALL_FILE, "w");
1433 if (install_log != nullptr) {
1434 fprintf(install_log, "%s\n", update_package);
1435 fprintf(install_log, "0\n");
1436 fprintf(install_log, "error: %d\n", code);
1437 fclose(install_log);
1438 } else {
1439 LOGE("failed to open last_install: %s\n", strerror(errno));
1440 }
1441}
1442
Mark Salyzyn13aca592016-03-09 14:58:16 -08001443static ssize_t logbasename(
1444 log_id_t /* logId */,
1445 char /* prio */,
1446 const char *filename,
1447 const char * /* buf */, size_t len,
1448 void *arg) {
1449 if (strstr(LAST_KMSG_FILE, filename) ||
1450 strstr(LAST_LOG_FILE, filename)) {
1451 bool *doRotate = reinterpret_cast<bool *>(arg);
1452 *doRotate = true;
1453 }
1454 return len;
1455}
1456
1457static ssize_t logrotate(
1458 log_id_t logId,
1459 char prio,
1460 const char *filename,
1461 const char *buf, size_t len,
1462 void *arg) {
1463 bool *doRotate = reinterpret_cast<bool *>(arg);
1464 if (!*doRotate) {
1465 return __android_log_pmsg_file_write(logId, prio, filename, buf, len);
1466 }
1467
1468 std::string name(filename);
1469 size_t dot = name.find_last_of(".");
1470 std::string sub = name.substr(0, dot);
1471
1472 if (!strstr(LAST_KMSG_FILE, sub.c_str()) &&
1473 !strstr(LAST_LOG_FILE, sub.c_str())) {
1474 return __android_log_pmsg_file_write(logId, prio, filename, buf, len);
1475 }
1476
1477 // filename rotation
1478 if (dot == std::string::npos) {
1479 name += ".1";
1480 } else {
1481 std::string number = name.substr(dot + 1);
1482 if (!isdigit(number.data()[0])) {
1483 name += ".1";
1484 } else {
1485 unsigned long long i = std::stoull(number);
1486 name = sub + "." + std::to_string(i + 1);
1487 }
1488 }
1489
1490 return __android_log_pmsg_file_write(logId, prio, name.c_str(), buf, len);
1491}
1492
Yabin Cui99281df2016-02-17 12:21:52 -08001493int main(int argc, char **argv) {
Mark Salyzyn13aca592016-03-09 14:58:16 -08001494 // Take last pmsg contents and rewrite it to the current pmsg session.
1495 static const char filter[] = "recovery/";
1496 // Do we need to rotate?
1497 bool doRotate = false;
1498 __android_log_pmsg_file_read(
1499 LOG_ID_SYSTEM, ANDROID_LOG_INFO, filter,
1500 logbasename, &doRotate);
1501 // Take action to refresh pmsg contents
1502 __android_log_pmsg_file_read(
1503 LOG_ID_SYSTEM, ANDROID_LOG_INFO, filter,
1504 logrotate, &doRotate);
1505
Doug Zongker9270a202012-01-09 15:16:13 -08001506 // If this binary is started with the single argument "--adbd",
1507 // instead of being the normal recovery binary, it turns into kind
1508 // of a stripped-down version of adbd that only supports the
1509 // 'sideload' command. Note this must be a real argument, not
1510 // anything in the command file or bootloader control block; the
1511 // only way recovery should be run with this argument is when it
1512 // starts a copy of itself from the apply_from_adb() function.
1513 if (argc == 2 && strcmp(argv[1], "--adbd") == 0) {
Elliott Hughes9f4fdb32015-11-20 13:03:24 -08001514 adb_server_main(0, DEFAULT_ADB_PORT, -1);
Doug Zongker9270a202012-01-09 15:16:13 -08001515 return 0;
1516 }
1517
Tao Bao04ca4262015-09-10 15:32:24 -07001518 time_t start = time(NULL);
1519
1520 // redirect_stdio should be called only in non-sideload mode. Otherwise
1521 // we may have two logger instances with different timestamps.
1522 redirect_stdio(TEMPORARY_LOG_FILE);
1523
Doug Zongker19a8e242014-01-21 09:25:41 -08001524 printf("Starting recovery (pid %d) on %s", getpid(), ctime(&start));
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001525
Doug Zongkerd4208f92010-09-20 12:16:13 -07001526 load_volume_table();
Tao Baoae6408d2016-02-25 12:29:40 -08001527 has_cache = volume_for_path(CACHE_ROOT) != nullptr;
1528
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001529 get_args(&argc, &argv);
1530
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001531 const char *send_intent = NULL;
1532 const char *update_package = NULL;
Tao Baoe39a9bc2015-03-31 12:19:05 -07001533 bool should_wipe_data = false;
Tao Baoc679f932015-03-30 09:43:49 -07001534 bool should_wipe_cache = false;
Tao Bao108ab212016-06-10 10:13:32 -07001535 bool should_wipe_ab = false;
Yabin Cui6faf0262016-06-09 14:09:39 -07001536 size_t wipe_package_size = 0;
Tao Bao145d8612015-03-25 15:51:15 -07001537 bool show_text = false;
Tao Baoc679f932015-03-30 09:43:49 -07001538 bool sideload = false;
1539 bool sideload_auto_reboot = false;
Doug Zongkere5d5ac72012-04-12 11:01:22 -07001540 bool just_exit = false;
Doug Zongkerb1d12632014-03-18 10:32:12 -07001541 bool shutdown_after = false;
Tianjie Xufa12b972016-02-05 18:25:58 -08001542 int retry_count = 0;
Tianjie Xu35926c42016-04-28 18:06:26 -07001543 bool security_update = false;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001544
1545 int arg;
Tao Baob0838182016-06-02 11:16:50 -07001546 int option_index;
1547 while ((arg = getopt_long(argc, argv, "", OPTIONS, &option_index)) != -1) {
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001548 switch (arg) {
Tao Baoc679f932015-03-30 09:43:49 -07001549 case 'i': send_intent = optarg; break;
Tianjie Xufa12b972016-02-05 18:25:58 -08001550 case 'n': android::base::ParseInt(optarg, &retry_count, 0); break;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001551 case 'u': update_package = optarg; break;
Tao Baoe39a9bc2015-03-31 12:19:05 -07001552 case 'w': should_wipe_data = true; break;
Tao Baoc679f932015-03-30 09:43:49 -07001553 case 'c': should_wipe_cache = true; break;
Tao Bao145d8612015-03-25 15:51:15 -07001554 case 't': show_text = true; break;
Tao Baoc679f932015-03-30 09:43:49 -07001555 case 's': sideload = true; break;
1556 case 'a': sideload = true; sideload_auto_reboot = true; break;
Doug Zongkere5d5ac72012-04-12 11:01:22 -07001557 case 'x': just_exit = true; break;
Doug Zongker02ec6b82012-08-22 17:26:40 -07001558 case 'l': locale = optarg; break;
Doug Zongkerc87bab12013-11-25 13:53:25 -08001559 case 'g': {
1560 if (stage == NULL || *stage == '\0') {
1561 char buffer[20] = "1/";
1562 strncat(buffer, optarg, sizeof(buffer)-3);
1563 stage = strdup(buffer);
1564 }
1565 break;
1566 }
Doug Zongkerb1d12632014-03-18 10:32:12 -07001567 case 'p': shutdown_after = true; break;
Jeff Sharkeya6e13ae2014-09-24 11:46:17 -07001568 case 'r': reason = optarg; break;
Tianjie Xu35926c42016-04-28 18:06:26 -07001569 case 'e': security_update = true; break;
Tao Baob0838182016-06-02 11:16:50 -07001570 case 0: {
Tao Bao108ab212016-06-10 10:13:32 -07001571 if (strcmp(OPTIONS[option_index].name, "wipe_ab") == 0) {
1572 should_wipe_ab = true;
Tao Baob0838182016-06-02 11:16:50 -07001573 break;
Yabin Cui6faf0262016-06-09 14:09:39 -07001574 } else if (strcmp(OPTIONS[option_index].name, "wipe_package_size") == 0) {
1575 android::base::ParseUint(optarg, &wipe_package_size);
1576 break;
Tao Baob0838182016-06-02 11:16:50 -07001577 }
1578 break;
1579 }
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001580 case '?':
1581 LOGE("Invalid command argument\n");
1582 continue;
1583 }
1584 }
1585
Tao Baoae6408d2016-02-25 12:29:40 -08001586 if (locale == nullptr && has_cache) {
Doug Zongker02ec6b82012-08-22 17:26:40 -07001587 load_locale_from_cache();
1588 }
1589 printf("locale is [%s]\n", locale);
Doug Zongker0d32f252014-02-13 15:07:56 -08001590 printf("stage is [%s]\n", stage);
Jeff Sharkeya6e13ae2014-09-24 11:46:17 -07001591 printf("reason is [%s]\n", reason);
Doug Zongker02ec6b82012-08-22 17:26:40 -07001592
1593 Device* device = make_device();
1594 ui = device->GetUI();
Doug Zongker7c3ae452013-05-14 11:03:02 -07001595 gCurrentUI = ui;
Doug Zongker02ec6b82012-08-22 17:26:40 -07001596
Doug Zongker5fa8c232012-09-18 12:37:02 -07001597 ui->SetLocale(locale);
Doug Zongker02ec6b82012-08-22 17:26:40 -07001598 ui->Init();
Tianjie Xu35926c42016-04-28 18:06:26 -07001599 // Set background string to "installing security update" for security update,
1600 // otherwise set it to "installing system update".
1601 ui->SetSystemUpdateText(security_update);
Doug Zongkerc87bab12013-11-25 13:53:25 -08001602
1603 int st_cur, st_max;
1604 if (stage != NULL && sscanf(stage, "%d/%d", &st_cur, &st_max) == 2) {
1605 ui->SetStage(st_cur, st_max);
1606 }
1607
Doug Zongker02ec6b82012-08-22 17:26:40 -07001608 ui->SetBackground(RecoveryUI::NONE);
1609 if (show_text) ui->ShowText(true);
1610
Stephen Smalley779701d2012-02-09 14:13:23 -05001611 struct selinux_opt seopts[] = {
1612 { SELABEL_OPT_PATH, "/file_contexts" }
1613 };
1614
1615 sehandle = selabel_open(SELABEL_CTX_FILE, seopts, 1);
1616
1617 if (!sehandle) {
Doug Zongkerfafc85b2013-07-09 12:29:45 -07001618 ui->Print("Warning: No file_contexts\n");
Stephen Smalley779701d2012-02-09 14:13:23 -05001619 }
Stephen Smalley779701d2012-02-09 14:13:23 -05001620
Doug Zongkerdaefc1d2011-10-31 09:34:15 -07001621 device->StartRecovery();
Doug Zongkerefa1bab2010-02-01 15:59:12 -08001622
Doug Zongker56c51052010-07-01 09:18:44 -07001623 printf("Command:");
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001624 for (arg = 0; arg < argc; arg++) {
Doug Zongker56c51052010-07-01 09:18:44 -07001625 printf(" \"%s\"", argv[arg]);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001626 }
Doug Zongker9b125b02010-09-22 12:01:37 -07001627 printf("\n");
1628
1629 if (update_package) {
1630 // For backwards compatibility on the cache partition only, if
1631 // we're given an old 'root' path "CACHE:foo", change it to
1632 // "/cache/foo".
1633 if (strncmp(update_package, "CACHE:", 6) == 0) {
1634 int len = strlen(update_package) + 10;
Doug Zongker28ce47c2011-10-28 10:33:05 -07001635 char* modified_path = (char*)malloc(len);
Jeremy Compostella1b7d9b72015-07-29 17:17:03 +02001636 if (modified_path) {
1637 strlcpy(modified_path, "/cache/", len);
1638 strlcat(modified_path, update_package+6, len);
1639 printf("(replacing path \"%s\" with \"%s\")\n",
1640 update_package, modified_path);
1641 update_package = modified_path;
1642 }
1643 else
1644 printf("modified_path allocation failed\n");
Doug Zongker9b125b02010-09-22 12:01:37 -07001645 }
1646 }
1647 printf("\n");
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001648
1649 property_list(print_property, NULL);
Doug Zongker56c51052010-07-01 09:18:44 -07001650 printf("\n");
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001651
Elliott Hughesbb78d622015-04-09 20:51:08 -07001652 ui->Print("Supported API: %d\n", RECOVERY_API_VERSION);
1653
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001654 int status = INSTALL_SUCCESS;
1655
Doug Zongker540d57f2011-01-18 13:36:58 -08001656 if (update_package != NULL) {
Tao Bao56870012016-04-29 15:37:05 -07001657 // It's not entirely true that we will modify the flash. But we want
1658 // to log the update attempt since update_package is non-NULL.
1659 modified_flash = true;
1660
Yabin Cui99281df2016-02-17 12:21:52 -08001661 if (!is_battery_ok()) {
1662 ui->Print("battery capacity is not enough for installing package, needed is %d%%\n",
1663 BATTERY_OK_PERCENTAGE);
Tianjie Xu16255832016-04-30 11:49:59 -07001664 // Log the error code to last_install when installation skips due to
1665 // low battery.
Tianjie Xu27b9fc82016-07-11 14:04:08 -07001666 log_failure_code(kLowBattery, update_package);
1667 status = INSTALL_SKIPPED;
1668 } else if (bootreason_in_blacklist()) {
1669 // Skip update-on-reboot when bootreason is kernel_panic or similar
1670 ui->Print("bootreason is in the blacklist; skip OTA installation\n");
1671 log_failure_code(kBootreasonInBlacklist, update_package);
Yabin Cui99281df2016-02-17 12:21:52 -08001672 status = INSTALL_SKIPPED;
1673 } else {
1674 status = install_package(update_package, &should_wipe_cache,
Tianjie Xu16255832016-04-30 11:49:59 -07001675 TEMPORARY_INSTALL_FILE, true, retry_count);
Yabin Cui99281df2016-02-17 12:21:52 -08001676 if (status == INSTALL_SUCCESS && should_wipe_cache) {
1677 wipe_cache(false, device);
1678 }
1679 if (status != INSTALL_SUCCESS) {
1680 ui->Print("Installation aborted.\n");
Tianjie Xufa12b972016-02-05 18:25:58 -08001681 // When I/O error happens, reboot and retry installation EIO_RETRY_COUNT
1682 // times before we abandon this OTA update.
1683 if (status == INSTALL_RETRY && retry_count < EIO_RETRY_COUNT) {
1684 copy_logs();
1685 set_retry_bootloader_message(retry_count, argc, argv);
1686 // Print retry count on screen.
1687 ui->Print("Retry attempt %d\n", retry_count);
Doug Zongker7c3ae452013-05-14 11:03:02 -07001688
Tianjie Xufa12b972016-02-05 18:25:58 -08001689 // Reboot and retry the update
1690 int ret = property_set(ANDROID_RB_PROPERTY, "reboot,recovery");
1691 if (ret < 0) {
1692 ui->Print("Reboot failed\n");
1693 } else {
1694 while (true) {
1695 pause();
1696 }
1697 }
1698 }
Yabin Cui99281df2016-02-17 12:21:52 -08001699 // If this is an eng or userdebug build, then automatically
1700 // turn the text display on if the script fails so the error
1701 // message is visible.
1702 if (is_ro_debuggable()) {
1703 ui->ShowText(true);
1704 }
Doug Zongker7c3ae452013-05-14 11:03:02 -07001705 }
1706 }
Tao Baoe39a9bc2015-03-31 12:19:05 -07001707 } else if (should_wipe_data) {
1708 if (!wipe_data(false, device)) {
1709 status = INSTALL_ERROR;
1710 }
Tao Baoc679f932015-03-30 09:43:49 -07001711 } else if (should_wipe_cache) {
Tao Baoe39a9bc2015-03-31 12:19:05 -07001712 if (!wipe_cache(false, device)) {
1713 status = INSTALL_ERROR;
1714 }
Tao Bao108ab212016-06-10 10:13:32 -07001715 } else if (should_wipe_ab) {
Yabin Cui6faf0262016-06-09 14:09:39 -07001716 if (!wipe_ab_device(wipe_package_size)) {
Tao Baob0838182016-06-02 11:16:50 -07001717 status = INSTALL_ERROR;
1718 }
Tao Baoc679f932015-03-30 09:43:49 -07001719 } else if (sideload) {
1720 // 'adb reboot sideload' acts the same as user presses key combinations
1721 // to enter the sideload mode. When 'sideload-auto-reboot' is used, text
1722 // display will NOT be turned on by default. And it will reboot after
1723 // sideload finishes even if there are errors. Unless one turns on the
1724 // text display during the installation. This is to enable automated
1725 // testing.
1726 if (!sideload_auto_reboot) {
1727 ui->ShowText(true);
1728 }
1729 status = apply_from_adb(ui, &should_wipe_cache, TEMPORARY_INSTALL_FILE);
1730 if (status == INSTALL_SUCCESS && should_wipe_cache) {
Tao Baoe39a9bc2015-03-31 12:19:05 -07001731 if (!wipe_cache(false, device)) {
1732 status = INSTALL_ERROR;
1733 }
Tao Baoc679f932015-03-30 09:43:49 -07001734 }
1735 ui->Print("\nInstall from ADB complete (status: %d).\n", status);
1736 if (sideload_auto_reboot) {
1737 ui->Print("Rebooting automatically.\n");
1738 }
Doug Zongkere5d5ac72012-04-12 11:01:22 -07001739 } else if (!just_exit) {
Doug Zongker02ec6b82012-08-22 17:26:40 -07001740 status = INSTALL_NONE; // No command specified
1741 ui->SetBackground(RecoveryUI::NO_COMMAND);
Tao Bao785d22c2015-05-04 09:34:29 -07001742
1743 // http://b/17489952
1744 // If this is an eng or userdebug build, automatically turn on the
1745 // text display if no command is specified.
1746 if (is_ro_debuggable()) {
1747 ui->ShowText(true);
1748 }
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001749 }
1750
Tao Baoc679f932015-03-30 09:43:49 -07001751 if (!sideload_auto_reboot && (status == INSTALL_ERROR || status == INSTALL_CORRUPT)) {
Doug Zongkerf24fd7e2013-07-02 11:43:25 -07001752 copy_logs();
Doug Zongker02ec6b82012-08-22 17:26:40 -07001753 ui->SetBackground(RecoveryUI::ERROR);
1754 }
Tao Baoc679f932015-03-30 09:43:49 -07001755
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001756 Device::BuiltinAction after = shutdown_after ? Device::SHUTDOWN : Device::REBOOT;
Yabin Cui99281df2016-02-17 12:21:52 -08001757 if ((status != INSTALL_SUCCESS && status != INSTALL_SKIPPED && !sideload_auto_reboot) ||
1758 ui->IsTextVisible()) {
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001759 Device::BuiltinAction temp = prompt_and_wait(device, status);
Tao Baoc679f932015-03-30 09:43:49 -07001760 if (temp != Device::NO_ACTION) {
1761 after = temp;
1762 }
Doug Zongker8674a722010-09-15 11:08:23 -07001763 }
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001764
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001765 // Save logs and clean up before rebooting or shutting down.
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001766 finish_recovery(send_intent);
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001767
1768 switch (after) {
1769 case Device::SHUTDOWN:
1770 ui->Print("Shutting down...\n");
1771 property_set(ANDROID_RB_PROPERTY, "shutdown,");
1772 break;
1773
1774 case Device::REBOOT_BOOTLOADER:
1775 ui->Print("Rebooting to bootloader...\n");
1776 property_set(ANDROID_RB_PROPERTY, "reboot,bootloader");
1777 break;
1778
1779 default:
1780 ui->Print("Rebooting...\n");
1781 property_set(ANDROID_RB_PROPERTY, "reboot,");
1782 break;
Doug Zongkerb1d12632014-03-18 10:32:12 -07001783 }
Tao Bao75238632015-05-27 14:46:17 -07001784 while (true) {
1785 pause();
1786 }
1787 // Should be unreachable.
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001788 return EXIT_SUCCESS;
1789}