blob: c0f5a386a25537648cbd4a16259add545fc0c3a1 [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
Doug Zongker6d0d7ac2013-07-09 13:34:55 -070092static const char *CACHE_LOG_DIR = "/cache/recovery";
Doug Zongkerd4208f92010-09-20 12:16:13 -070093static const char *COMMAND_FILE = "/cache/recovery/command";
Doug Zongkerd4208f92010-09-20 12:16:13 -070094static const char *LOG_FILE = "/cache/recovery/log";
Doug Zongkerd0181b82011-10-19 10:51:12 -070095static const char *LAST_INSTALL_FILE = "/cache/recovery/last_install";
Doug Zongker8b240cc2012-08-29 15:19:29 -070096static const char *LOCALE_FILE = "/cache/recovery/last_locale";
Paul Lawrence661f8a62016-02-25 12:42:19 -080097static const char *CONVERT_FBE_DIR = "/tmp/convert_fbe";
98static const char *CONVERT_FBE_FILE = "/tmp/convert_fbe/convert_fbe";
Michael Ward9d2629c2011-06-23 22:14:24 -070099static const char *CACHE_ROOT = "/cache";
Paul Lawrenced0db3372015-11-05 13:38:40 -0800100static const char *DATA_ROOT = "/data";
Doug Zongkerd4208f92010-09-20 12:16:13 -0700101static const char *SDCARD_ROOT = "/sdcard";
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800102static const char *TEMPORARY_LOG_FILE = "/tmp/recovery.log";
Doug Zongkerd0181b82011-10-19 10:51:12 -0700103static const char *TEMPORARY_INSTALL_FILE = "/tmp/last_install";
Tao Baof0124322015-04-11 02:04:11 +0000104static const char *LAST_KMSG_FILE = "/cache/recovery/last_kmsg";
Tao Baobef39712015-05-04 18:50:27 -0700105static const char *LAST_LOG_FILE = "/cache/recovery/last_log";
106static const int KEEP_LOG_COUNT = 10;
Tianjie Xuc37c5c32016-06-23 16:52:17 -0700107// We will try to apply the update package 5 times at most in case of an I/O error.
108static const int EIO_RETRY_COUNT = 4;
Yabin Cui99281df2016-02-17 12:21:52 -0800109static const int BATTERY_READ_TIMEOUT_IN_SEC = 10;
110// GmsCore enters recovery mode to install package when having enough battery
111// percentage. Normally, the threshold is 40% without charger and 20% with charger.
112// So we should check battery with a slightly lower limitation.
113static const int BATTERY_OK_PERCENTAGE = 20;
114static const int BATTERY_WITH_CHARGER_OK_PERCENTAGE = 15;
Tao Bao108ab212016-06-10 10:13:32 -0700115constexpr const char* RECOVERY_WIPE = "/etc/recovery.wipe";
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700116
Doug Zongker211aebc2011-10-28 15:13:10 -0700117RecoveryUI* ui = NULL;
Elliott Hughes498cda62016-04-14 16:49:04 -0700118static const char* locale = "en_US";
Doug Zongkerc87bab12013-11-25 13:53:25 -0800119char* stage = NULL;
Jeff Sharkeya6e13ae2014-09-24 11:46:17 -0700120char* reason = NULL;
Tao Bao682c34b2015-04-07 17:16:35 -0700121bool modified_flash = false;
Tao Bao26112e52016-02-25 12:29:40 -0800122static bool has_cache = false;
Doug Zongker211aebc2011-10-28 15:13:10 -0700123
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800124/*
125 * The recovery tool communicates with the main system through /cache files.
126 * /cache/recovery/command - INPUT - command line for tool, one arg per line
127 * /cache/recovery/log - OUTPUT - combined log file from recovery run(s)
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800128 *
129 * The arguments which may be supplied in the recovery.command file:
Doug Zongkerd4208f92010-09-20 12:16:13 -0700130 * --update_package=path - verify install an OTA package file
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800131 * --wipe_data - erase user data (and cache), then reboot
132 * --wipe_cache - wipe cache (but not user data), then reboot
Oscar Montemayor05231562009-11-30 08:40:57 -0800133 * --set_encrypted_filesystem=on|off - enables / diasables encrypted fs
Doug Zongkere5d5ac72012-04-12 11:01:22 -0700134 * --just_exit - do nothing; exit and reboot
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800135 *
136 * After completing, we remove /cache/recovery/command and reboot.
137 * Arguments may also be supplied in the bootloader control block (BCB).
138 * These important scenarios must be safely restartable at any point:
139 *
140 * FACTORY RESET
141 * 1. user selects "factory reset"
142 * 2. main system writes "--wipe_data" to /cache/recovery/command
143 * 3. main system reboots into recovery
144 * 4. get_args() writes BCB with "boot-recovery" and "--wipe_data"
145 * -- after this, rebooting will restart the erase --
Doug Zongkerd4208f92010-09-20 12:16:13 -0700146 * 5. erase_volume() reformats /data
147 * 6. erase_volume() reformats /cache
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800148 * 7. finish_recovery() erases BCB
149 * -- after this, rebooting will restart the main system --
150 * 8. main() calls reboot() to boot main system
151 *
152 * OTA INSTALL
153 * 1. main system downloads OTA package to /cache/some-filename.zip
Doug Zongker9b125b02010-09-22 12:01:37 -0700154 * 2. main system writes "--update_package=/cache/some-filename.zip"
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800155 * 3. main system reboots into recovery
156 * 4. get_args() writes BCB with "boot-recovery" and "--update_package=..."
157 * -- after this, rebooting will attempt to reinstall the update --
158 * 5. install_package() attempts to install the update
159 * NOTE: the package install must itself be restartable from any point
160 * 6. finish_recovery() erases BCB
161 * -- after this, rebooting will (try to) restart the main system --
162 * 7. ** if install failed **
163 * 7a. prompt_and_wait() shows an error icon and waits for the user
164 * 7b; the user reboots (pulling the battery, etc) into the main system
165 * 8. main() calls maybe_install_firmware_update()
166 * ** if the update contained radio/hboot firmware **:
167 * 8a. m_i_f_u() writes BCB with "boot-recovery" and "--wipe_cache"
168 * -- after this, rebooting will reformat cache & restart main system --
169 * 8b. m_i_f_u() writes firmware image into raw cache partition
170 * 8c. m_i_f_u() writes BCB with "update-radio/hboot" and "--wipe_cache"
171 * -- after this, rebooting will attempt to reinstall firmware --
172 * 8d. bootloader tries to flash firmware
173 * 8e. bootloader writes BCB with "boot-recovery" (keeping "--wipe_cache")
174 * -- after this, rebooting will reformat cache & restart main system --
Doug Zongkerd4208f92010-09-20 12:16:13 -0700175 * 8f. erase_volume() reformats /cache
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800176 * 8g. finish_recovery() erases BCB
177 * -- after this, rebooting will (try to) restart the main system --
178 * 9. main() calls reboot() to boot main system
179 */
180
181static const int MAX_ARG_LENGTH = 4096;
182static const int MAX_ARGS = 100;
183
Doug Zongkerd4208f92010-09-20 12:16:13 -0700184// open a given path, mounting partitions as necessary
Tao Bao04ca4262015-09-10 15:32:24 -0700185FILE* fopen_path(const char *path, const char *mode) {
Doug Zongkerd4208f92010-09-20 12:16:13 -0700186 if (ensure_path_mounted(path) != 0) {
187 LOGE("Can't mount %s\n", path);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800188 return NULL;
189 }
190
191 // When writing, try to create the containing directory, if necessary.
192 // Use generous permissions, the system (init.rc) will reset them.
Stephen Smalley779701d2012-02-09 14:13:23 -0500193 if (strchr("wa", mode[0])) dirCreateHierarchy(path, 0777, NULL, 1, sehandle);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800194
195 FILE *fp = fopen(path, mode);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800196 return fp;
197}
198
Tao Bao04ca4262015-09-10 15:32:24 -0700199// close a file, log an error if the error indicator is set
200static void check_and_fclose(FILE *fp, const char *name) {
201 fflush(fp);
202 if (ferror(fp)) LOGE("Error in %s\n(%s)\n", name, strerror(errno));
203 fclose(fp);
204}
205
Elliott Hughesf14af802015-02-10 14:46:14 -0800206bool is_ro_debuggable() {
207 char value[PROPERTY_VALUE_MAX+1];
208 return (property_get("ro.debuggable", value, NULL) == 1 && value[0] == '1');
209}
210
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700211static void redirect_stdio(const char* filename) {
Tao Bao04ca4262015-09-10 15:32:24 -0700212 int pipefd[2];
213 if (pipe(pipefd) == -1) {
214 LOGE("pipe failed: %s\n", strerror(errno));
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700215
Tao Bao04ca4262015-09-10 15:32:24 -0700216 // Fall back to traditional logging mode without timestamps.
217 // If these fail, there's not really anywhere to complain...
218 freopen(filename, "a", stdout); setbuf(stdout, NULL);
219 freopen(filename, "a", stderr); setbuf(stderr, NULL);
220
221 return;
222 }
223
224 pid_t pid = fork();
225 if (pid == -1) {
226 LOGE("fork failed: %s\n", strerror(errno));
227
228 // Fall back to traditional logging mode without timestamps.
229 // If these fail, there's not really anywhere to complain...
230 freopen(filename, "a", stdout); setbuf(stdout, NULL);
231 freopen(filename, "a", stderr); setbuf(stderr, NULL);
232
233 return;
234 }
235
236 if (pid == 0) {
237 /// Close the unused write end.
238 close(pipefd[1]);
239
240 auto start = std::chrono::steady_clock::now();
241
242 // Child logger to actually write to the log file.
243 FILE* log_fp = fopen(filename, "a");
244 if (log_fp == nullptr) {
245 LOGE("fopen \"%s\" failed: %s\n", filename, strerror(errno));
246 close(pipefd[0]);
247 _exit(1);
248 }
249
250 FILE* pipe_fp = fdopen(pipefd[0], "r");
251 if (pipe_fp == nullptr) {
252 LOGE("fdopen failed: %s\n", strerror(errno));
253 check_and_fclose(log_fp, filename);
254 close(pipefd[0]);
255 _exit(1);
256 }
257
258 char* line = nullptr;
259 size_t len = 0;
260 while (getline(&line, &len, pipe_fp) != -1) {
261 auto now = std::chrono::steady_clock::now();
262 double duration = std::chrono::duration_cast<std::chrono::duration<double>>(
263 now - start).count();
264 if (line[0] == '\n') {
265 fprintf(log_fp, "[%12.6lf]\n", duration);
266 } else {
267 fprintf(log_fp, "[%12.6lf] %s", duration, line);
268 }
269 fflush(log_fp);
270 }
271
272 LOGE("getline failed: %s\n", strerror(errno));
273
274 free(line);
275 check_and_fclose(log_fp, filename);
276 close(pipefd[0]);
277 _exit(1);
278 } else {
279 // Redirect stdout/stderr to the logger process.
280 // Close the unused read end.
281 close(pipefd[0]);
282
283 setbuf(stdout, nullptr);
284 setbuf(stderr, nullptr);
285
286 if (dup2(pipefd[1], STDOUT_FILENO) == -1) {
287 LOGE("dup2 stdout failed: %s\n", strerror(errno));
288 }
289 if (dup2(pipefd[1], STDERR_FILENO) == -1) {
290 LOGE("dup2 stderr failed: %s\n", strerror(errno));
291 }
292
293 close(pipefd[1]);
294 }
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800295}
296
297// command line args come from, in decreasing precedence:
298// - the actual command line
299// - the bootloader control block (one per line, after "recovery")
300// - the contents of COMMAND_FILE (one per line)
301static void
302get_args(int *argc, char ***argv) {
Yabin Cui2f272c02016-06-24 18:22:02 -0700303 bootloader_message boot = {};
304 std::string err;
305 if (!read_bootloader_message(&boot, &err)) {
306 LOGE("%s\n", err.c_str());
307 // If fails, leave a zeroed bootloader_message.
308 memset(&boot, 0, sizeof(boot));
309 }
Doug Zongkerc87bab12013-11-25 13:53:25 -0800310 stage = strndup(boot.stage, sizeof(boot.stage));
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800311
312 if (boot.command[0] != 0 && boot.command[0] != 255) {
Mark Salyzynf3bb31c2014-03-14 09:39:48 -0700313 LOGI("Boot command: %.*s\n", (int)sizeof(boot.command), boot.command);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800314 }
315
316 if (boot.status[0] != 0 && boot.status[0] != 255) {
Mark Salyzynf3bb31c2014-03-14 09:39:48 -0700317 LOGI("Boot status: %.*s\n", (int)sizeof(boot.status), boot.status);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800318 }
319
320 // --- if arguments weren't supplied, look in the bootloader control block
321 if (*argc <= 1) {
322 boot.recovery[sizeof(boot.recovery) - 1] = '\0'; // Ensure termination
323 const char *arg = strtok(boot.recovery, "\n");
324 if (arg != NULL && !strcmp(arg, "recovery")) {
325 *argv = (char **) malloc(sizeof(char *) * MAX_ARGS);
326 (*argv)[0] = strdup(arg);
327 for (*argc = 1; *argc < MAX_ARGS; ++*argc) {
328 if ((arg = strtok(NULL, "\n")) == NULL) break;
329 (*argv)[*argc] = strdup(arg);
330 }
331 LOGI("Got arguments from boot message\n");
332 } else if (boot.recovery[0] != 0 && boot.recovery[0] != 255) {
333 LOGE("Bad boot message\n\"%.20s\"\n", boot.recovery);
334 }
335 }
336
Tao Bao26112e52016-02-25 12:29:40 -0800337 // --- if that doesn't work, try the command file (if we have /cache).
338 if (*argc <= 1 && has_cache) {
Doug Zongkerd4208f92010-09-20 12:16:13 -0700339 FILE *fp = fopen_path(COMMAND_FILE, "r");
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800340 if (fp != NULL) {
Jin Feng93ffa752013-06-04 17:46:24 +0800341 char *token;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800342 char *argv0 = (*argv)[0];
343 *argv = (char **) malloc(sizeof(char *) * MAX_ARGS);
344 (*argv)[0] = argv0; // use the same program name
345
346 char buf[MAX_ARG_LENGTH];
347 for (*argc = 1; *argc < MAX_ARGS; ++*argc) {
348 if (!fgets(buf, sizeof(buf), fp)) break;
Jin Feng93ffa752013-06-04 17:46:24 +0800349 token = strtok(buf, "\r\n");
350 if (token != NULL) {
351 (*argv)[*argc] = strdup(token); // Strip newline.
352 } else {
353 --*argc;
354 }
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800355 }
356
357 check_and_fclose(fp, COMMAND_FILE);
358 LOGI("Got arguments from %s\n", COMMAND_FILE);
359 }
360 }
361
362 // --> write the arguments we have back into the bootloader control block
363 // always boot into recovery after this (until finish_recovery() is called)
364 strlcpy(boot.command, "boot-recovery", sizeof(boot.command));
365 strlcpy(boot.recovery, "recovery\n", sizeof(boot.recovery));
366 int i;
367 for (i = 1; i < *argc; ++i) {
368 strlcat(boot.recovery, (*argv)[i], sizeof(boot.recovery));
369 strlcat(boot.recovery, "\n", sizeof(boot.recovery));
370 }
Yabin Cui2f272c02016-06-24 18:22:02 -0700371 if (!write_bootloader_message(boot, &err)) {
372 LOGE("%s\n", err.c_str());
373 }
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800374}
375
Doug Zongker34c98df2009-08-18 12:05:45 -0700376static void
Oscar Montemayor05231562009-11-30 08:40:57 -0800377set_sdcard_update_bootloader_message() {
Yabin Cui2f272c02016-06-24 18:22:02 -0700378 bootloader_message boot = {};
Doug Zongker34c98df2009-08-18 12:05:45 -0700379 strlcpy(boot.command, "boot-recovery", sizeof(boot.command));
380 strlcpy(boot.recovery, "recovery\n", sizeof(boot.recovery));
Yabin Cui2f272c02016-06-24 18:22:02 -0700381 std::string err;
382 if (!write_bootloader_message(boot, &err)) {
383 LOGE("%s\n", err.c_str());
384 }
Doug Zongker34c98df2009-08-18 12:05:45 -0700385}
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800386
Tao Baobef39712015-05-04 18:50:27 -0700387// Read from kernel log into buffer and write out to file.
388static void save_kernel_log(const char* destination) {
389 int klog_buf_len = klogctl(KLOG_SIZE_BUFFER, 0, 0);
Patrick Tjincd055ee2014-12-09 11:26:40 -0800390 if (klog_buf_len <= 0) {
Tao Baobef39712015-05-04 18:50:27 -0700391 LOGE("Error getting klog size: %s\n", strerror(errno));
Patrick Tjincd055ee2014-12-09 11:26:40 -0800392 return;
393 }
394
Tao Baobef39712015-05-04 18:50:27 -0700395 std::string buffer(klog_buf_len, 0);
396 int n = klogctl(KLOG_READ_ALL, &buffer[0], klog_buf_len);
397 if (n == -1) {
398 LOGE("Error in reading klog: %s\n", strerror(errno));
Patrick Tjincd055ee2014-12-09 11:26:40 -0800399 return;
400 }
Tao Baobef39712015-05-04 18:50:27 -0700401 buffer.resize(n);
402 android::base::WriteStringToFile(buffer, destination);
Patrick Tjincd055ee2014-12-09 11:26:40 -0800403}
404
Mark Salyzyna4f701a2016-03-09 14:58:16 -0800405// write content to the current pmsg session.
406static ssize_t __pmsg_write(const char *filename, const char *buf, size_t len) {
407 return __android_log_pmsg_file_write(LOG_ID_SYSTEM, ANDROID_LOG_INFO,
408 filename, buf, len);
409}
410
411static void copy_log_file_to_pmsg(const char* source, const char* destination) {
412 std::string content;
413 android::base::ReadFileToString(source, &content);
414 __pmsg_write(destination, content.c_str(), content.length());
415}
416
Tao Baof0124322015-04-11 02:04:11 +0000417// How much of the temp log we have copied to the copy in cache.
Chih-Hung Hsieh54a27472016-04-18 11:30:55 -0700418static off_t tmplog_offset = 0;
Tao Baof0124322015-04-11 02:04:11 +0000419
Tao Baobef39712015-05-04 18:50:27 -0700420static void copy_log_file(const char* source, const char* destination, bool append) {
421 FILE* dest_fp = fopen_path(destination, append ? "a" : "w");
422 if (dest_fp == nullptr) {
Doug Zongker2c3539e2010-09-29 13:21:30 -0700423 LOGE("Can't open %s\n", destination);
424 } else {
Tao Baobef39712015-05-04 18:50:27 -0700425 FILE* source_fp = fopen(source, "r");
426 if (source_fp != nullptr) {
Tao Baof0124322015-04-11 02:04:11 +0000427 if (append) {
Chih-Hung Hsieh54a27472016-04-18 11:30:55 -0700428 fseeko(source_fp, tmplog_offset, SEEK_SET); // Since last write
Doug Zongker2c3539e2010-09-29 13:21:30 -0700429 }
430 char buf[4096];
Tao Baobef39712015-05-04 18:50:27 -0700431 size_t bytes;
432 while ((bytes = fread(buf, 1, sizeof(buf), source_fp)) != 0) {
433 fwrite(buf, 1, bytes, dest_fp);
Doug Zongker2c3539e2010-09-29 13:21:30 -0700434 }
Tao Baobef39712015-05-04 18:50:27 -0700435 if (append) {
Chih-Hung Hsieh54a27472016-04-18 11:30:55 -0700436 tmplog_offset = ftello(source_fp);
Tao Baobef39712015-05-04 18:50:27 -0700437 }
438 check_and_fclose(source_fp, source);
Doug Zongker2c3539e2010-09-29 13:21:30 -0700439 }
Tao Baobef39712015-05-04 18:50:27 -0700440 check_and_fclose(dest_fp, destination);
Doug Zongker2c3539e2010-09-29 13:21:30 -0700441 }
442}
443
Tao Baobef39712015-05-04 18:50:27 -0700444// Rename last_log -> last_log.1 -> last_log.2 -> ... -> last_log.$max.
445// Similarly rename last_kmsg -> last_kmsg.1 -> ... -> last_kmsg.$max.
446// Overwrite any existing last_log.$max and last_kmsg.$max.
447static void rotate_logs(int max) {
Tao Bao682c34b2015-04-07 17:16:35 -0700448 // Logs should only be rotated once.
449 static bool rotated = false;
450 if (rotated) {
451 return;
452 }
453 rotated = true;
454 ensure_path_mounted(LAST_LOG_FILE);
Tao Baobef39712015-05-04 18:50:27 -0700455 ensure_path_mounted(LAST_KMSG_FILE);
Tao Bao682c34b2015-04-07 17:16:35 -0700456
Tao Bao682c34b2015-04-07 17:16:35 -0700457 for (int i = max-1; i >= 0; --i) {
Tao Bao80e46e02015-06-03 10:49:29 -0700458 std::string old_log = android::base::StringPrintf("%s", LAST_LOG_FILE);
459 if (i > 0) {
460 old_log += "." + std::to_string(i);
461 }
Tao Baobef39712015-05-04 18:50:27 -0700462 std::string new_log = android::base::StringPrintf("%s.%d", LAST_LOG_FILE, i+1);
463 // Ignore errors if old_log doesn't exist.
464 rename(old_log.c_str(), new_log.c_str());
465
Tao Bao80e46e02015-06-03 10:49:29 -0700466 std::string old_kmsg = android::base::StringPrintf("%s", LAST_KMSG_FILE);
467 if (i > 0) {
468 old_kmsg += "." + std::to_string(i);
469 }
Tao Baobef39712015-05-04 18:50:27 -0700470 std::string new_kmsg = android::base::StringPrintf("%s.%d", LAST_KMSG_FILE, i+1);
471 rename(old_kmsg.c_str(), new_kmsg.c_str());
Doug Zongkerda1ebae2013-05-16 11:23:48 -0700472 }
473}
Doug Zongker2c3539e2010-09-29 13:21:30 -0700474
Tao Bao682c34b2015-04-07 17:16:35 -0700475static void copy_logs() {
476 // We only rotate and record the log of the current session if there are
477 // actual attempts to modify the flash, such as wipes, installs from BCB
478 // or menu selections. This is to avoid unnecessary rotation (and
479 // possible deletion) of log files, if it does not do anything loggable.
480 if (!modified_flash) {
481 return;
482 }
483
Mark Salyzyna4f701a2016-03-09 14:58:16 -0800484 // Always write to pmsg, this allows the OTA logs to be caught in logcat -L
485 copy_log_file_to_pmsg(TEMPORARY_LOG_FILE, LAST_LOG_FILE);
486 copy_log_file_to_pmsg(TEMPORARY_INSTALL_FILE, LAST_INSTALL_FILE);
487
488 // We can do nothing for now if there's no /cache partition.
489 if (!has_cache) {
490 return;
491 }
492
Tao Baobef39712015-05-04 18:50:27 -0700493 rotate_logs(KEEP_LOG_COUNT);
Tao Bao682c34b2015-04-07 17:16:35 -0700494
Doug Zongkerf24fd7e2013-07-02 11:43:25 -0700495 // Copy logs to cache so the system can find out what happened.
Tao Baof0124322015-04-11 02:04:11 +0000496 copy_log_file(TEMPORARY_LOG_FILE, LOG_FILE, true);
497 copy_log_file(TEMPORARY_LOG_FILE, LAST_LOG_FILE, false);
498 copy_log_file(TEMPORARY_INSTALL_FILE, LAST_INSTALL_FILE, false);
499 save_kernel_log(LAST_KMSG_FILE);
Doug Zongkerf24fd7e2013-07-02 11:43:25 -0700500 chmod(LOG_FILE, 0600);
501 chown(LOG_FILE, 1000, 1000); // system user
Tao Baof0124322015-04-11 02:04:11 +0000502 chmod(LAST_KMSG_FILE, 0600);
503 chown(LAST_KMSG_FILE, 1000, 1000); // system user
Doug Zongkerf24fd7e2013-07-02 11:43:25 -0700504 chmod(LAST_LOG_FILE, 0640);
505 chmod(LAST_INSTALL_FILE, 0644);
506 sync();
507}
508
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800509// clear the recovery command and prepare to boot a (hopefully working) system,
Tianjie Xuc14d95d2016-03-24 11:50:34 -0700510// copy our log file to cache as well (for the system to read). This function is
511// idempotent: call it as many times as you like.
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800512static void
Tianjie Xuc14d95d2016-03-24 11:50:34 -0700513finish_recovery() {
Doug Zongker4f33e552012-08-23 13:16:12 -0700514 // Save the locale to cache, so if recovery is next started up
515 // without a --locale argument (eg, directly from the bootloader)
516 // it will use the last-known locale.
Mark Salyzyna4f701a2016-03-09 14:58:16 -0800517 if (locale != NULL) {
518 size_t len = strlen(locale);
519 __pmsg_write(LOCALE_FILE, locale, len);
520 if (has_cache) {
521 LOGI("Saving locale \"%s\"\n", locale);
522 FILE* fp = fopen_path(LOCALE_FILE, "w");
523 fwrite(locale, 1, len, fp);
524 fflush(fp);
525 fsync(fileno(fp));
526 check_and_fclose(fp, LOCALE_FILE);
527 }
Doug Zongker4f33e552012-08-23 13:16:12 -0700528 }
529
Doug Zongkerf24fd7e2013-07-02 11:43:25 -0700530 copy_logs();
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800531
Doug Zongkere5d5ac72012-04-12 11:01:22 -0700532 // Reset to normal system boot so recovery won't cycle indefinitely.
Yabin Cui2f272c02016-06-24 18:22:02 -0700533 bootloader_message boot = {};
534 std::string err;
535 if (!write_bootloader_message(boot, &err)) {
536 LOGE("%s\n", err.c_str());
537 }
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800538
539 // Remove the command file, so recovery won't repeat indefinitely.
Tao Bao26112e52016-02-25 12:29:40 -0800540 if (has_cache) {
541 if (ensure_path_mounted(COMMAND_FILE) != 0 || (unlink(COMMAND_FILE) && errno != ENOENT)) {
542 LOGW("Can't unlink %s\n", COMMAND_FILE);
543 }
544 ensure_path_unmounted(CACHE_ROOT);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800545 }
546
547 sync(); // For good measure.
548}
549
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700550typedef struct _saved_log_file {
551 char* name;
552 struct stat st;
553 unsigned char* data;
554 struct _saved_log_file* next;
555} saved_log_file;
556
Elliott Hughes945548e2015-06-05 17:59:56 -0700557static bool erase_volume(const char* volume) {
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700558 bool is_cache = (strcmp(volume, CACHE_ROOT) == 0);
Paul Lawrenced0db3372015-11-05 13:38:40 -0800559 bool is_data = (strcmp(volume, DATA_ROOT) == 0);
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700560
Doug Zongker02ec6b82012-08-22 17:26:40 -0700561 ui->SetBackground(RecoveryUI::ERASING);
Doug Zongker211aebc2011-10-28 15:13:10 -0700562 ui->SetProgressType(RecoveryUI::INDETERMINATE);
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700563
564 saved_log_file* head = NULL;
565
566 if (is_cache) {
Tao Baobef39712015-05-04 18:50:27 -0700567 // If we're reformatting /cache, we load any past logs
568 // (i.e. "/cache/recovery/last_*") and the current log
569 // ("/cache/recovery/log") into memory, so we can restore them after
570 // the reformat.
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700571
572 ensure_path_mounted(volume);
573
574 DIR* d;
575 struct dirent* de;
576 d = opendir(CACHE_LOG_DIR);
577 if (d) {
578 char path[PATH_MAX];
579 strcpy(path, CACHE_LOG_DIR);
580 strcat(path, "/");
581 int path_len = strlen(path);
582 while ((de = readdir(d)) != NULL) {
Tao Baobef39712015-05-04 18:50:27 -0700583 if (strncmp(de->d_name, "last_", 5) == 0 || strcmp(de->d_name, "log") == 0) {
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700584 saved_log_file* p = (saved_log_file*) malloc(sizeof(saved_log_file));
585 strcpy(path+path_len, de->d_name);
586 p->name = strdup(path);
587 if (stat(path, &(p->st)) == 0) {
588 // truncate files to 512kb
589 if (p->st.st_size > (1 << 19)) {
590 p->st.st_size = 1 << 19;
591 }
592 p->data = (unsigned char*) malloc(p->st.st_size);
593 FILE* f = fopen(path, "rb");
594 fread(p->data, 1, p->st.st_size, f);
595 fclose(f);
596 p->next = head;
597 head = p;
598 } else {
599 free(p);
600 }
601 }
602 }
603 closedir(d);
604 } else {
605 if (errno != ENOENT) {
606 printf("opendir failed: %s\n", strerror(errno));
607 }
608 }
609 }
610
Doug Zongker211aebc2011-10-28 15:13:10 -0700611 ui->Print("Formatting %s...\n", volume);
Doug Zongker2c3539e2010-09-29 13:21:30 -0700612
Doug Zongkerd0181b82011-10-19 10:51:12 -0700613 ensure_path_unmounted(volume);
Paul Lawrenced0db3372015-11-05 13:38:40 -0800614
615 int result;
616
617 if (is_data && reason && strcmp(reason, "convert_fbe") == 0) {
618 // Create convert_fbe breadcrumb file to signal to init
619 // to convert to file based encryption, not full disk encryption
Paul Lawrence661f8a62016-02-25 12:42:19 -0800620 if (mkdir(CONVERT_FBE_DIR, 0700) != 0) {
621 ui->Print("Failed to make convert_fbe dir %s\n", strerror(errno));
622 return true;
623 }
Paul Lawrenced0db3372015-11-05 13:38:40 -0800624 FILE* f = fopen(CONVERT_FBE_FILE, "wb");
625 if (!f) {
Paul Lawrence661f8a62016-02-25 12:42:19 -0800626 ui->Print("Failed to convert to file encryption %s\n", strerror(errno));
Paul Lawrenced0db3372015-11-05 13:38:40 -0800627 return true;
628 }
629 fclose(f);
630 result = format_volume(volume, CONVERT_FBE_DIR);
631 remove(CONVERT_FBE_FILE);
632 rmdir(CONVERT_FBE_DIR);
633 } else {
634 result = format_volume(volume);
635 }
Doug Zongkerd0181b82011-10-19 10:51:12 -0700636
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700637 if (is_cache) {
638 while (head) {
639 FILE* f = fopen_path(head->name, "wb");
640 if (f) {
641 fwrite(head->data, 1, head->st.st_size, f);
642 fclose(f);
643 chmod(head->name, head->st.st_mode);
644 chown(head->name, head->st.st_uid, head->st.st_gid);
645 }
646 free(head->name);
647 free(head->data);
648 saved_log_file* temp = head->next;
649 free(head);
650 head = temp;
651 }
652
Tao Baof0124322015-04-11 02:04:11 +0000653 // Any part of the log we'd copied to cache is now gone.
654 // Reset the pointer so we copy from the beginning of the temp
655 // log.
656 tmplog_offset = 0;
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700657 copy_logs();
Doug Zongker2c3539e2010-09-29 13:21:30 -0700658 }
659
Elliott Hughes945548e2015-06-05 17:59:56 -0700660 return (result == 0);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800661}
662
Doug Zongkerf93d8162009-09-22 15:16:02 -0700663static int
Doug Zongker28ce47c2011-10-28 10:33:05 -0700664get_menu_selection(const char* const * headers, const char* const * items,
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700665 int menu_only, int initial_selection, Device* device) {
Doug Zongkerf93d8162009-09-22 15:16:02 -0700666 // throw away keys pressed previously, so user doesn't
667 // accidentally trigger menu items.
Doug Zongker211aebc2011-10-28 15:13:10 -0700668 ui->FlushKeys();
Doug Zongkerf93d8162009-09-22 15:16:02 -0700669
Doug Zongker211aebc2011-10-28 15:13:10 -0700670 ui->StartMenu(headers, items, initial_selection);
Doug Zongker8674a722010-09-15 11:08:23 -0700671 int selected = initial_selection;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800672 int chosen_item = -1;
673
Doug Zongkerf93d8162009-09-22 15:16:02 -0700674 while (chosen_item < 0) {
Doug Zongker211aebc2011-10-28 15:13:10 -0700675 int key = ui->WaitKey();
676 int visible = ui->IsTextVisible();
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800677
Doug Zongker5cae4452011-01-25 13:15:30 -0800678 if (key == -1) { // ui_wait_key() timed out
Doug Zongker211aebc2011-10-28 15:13:10 -0700679 if (ui->WasTextEverVisible()) {
Doug Zongker5cae4452011-01-25 13:15:30 -0800680 continue;
681 } else {
682 LOGI("timed out waiting for key input; rebooting.\n");
Doug Zongker211aebc2011-10-28 15:13:10 -0700683 ui->EndMenu();
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700684 return 0; // XXX fixme
Doug Zongker5cae4452011-01-25 13:15:30 -0800685 }
686 }
687
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700688 int action = device->HandleMenuKey(key, visible);
Doug Zongkerddd6a282009-06-09 12:22:33 -0700689
690 if (action < 0) {
691 switch (action) {
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700692 case Device::kHighlightUp:
Elliott Hughes642aaa72015-04-10 12:47:46 -0700693 selected = ui->SelectMenu(--selected);
Doug Zongkerddd6a282009-06-09 12:22:33 -0700694 break;
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700695 case Device::kHighlightDown:
Elliott Hughes642aaa72015-04-10 12:47:46 -0700696 selected = ui->SelectMenu(++selected);
Doug Zongkerddd6a282009-06-09 12:22:33 -0700697 break;
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700698 case Device::kInvokeItem:
Doug Zongkerddd6a282009-06-09 12:22:33 -0700699 chosen_item = selected;
700 break;
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700701 case Device::kNoAction:
Doug Zongkerddd6a282009-06-09 12:22:33 -0700702 break;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800703 }
Doug Zongkerf93d8162009-09-22 15:16:02 -0700704 } else if (!menu_only) {
Doug Zongkerddd6a282009-06-09 12:22:33 -0700705 chosen_item = action;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800706 }
Doug Zongkerf93d8162009-09-22 15:16:02 -0700707 }
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800708
Doug Zongker211aebc2011-10-28 15:13:10 -0700709 ui->EndMenu();
Doug Zongkerf93d8162009-09-22 15:16:02 -0700710 return chosen_item;
711}
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800712
Doug Zongker8674a722010-09-15 11:08:23 -0700713static int compare_string(const void* a, const void* b) {
714 return strcmp(*(const char**)a, *(const char**)b);
715}
716
Doug Zongker93950222014-07-08 14:10:23 -0700717// Returns a malloc'd path, or NULL.
Elliott Hughes30694c92015-03-25 15:16:51 -0700718static char* browse_directory(const char* path, Device* device) {
Michael Ward9d2629c2011-06-23 22:14:24 -0700719 ensure_path_mounted(path);
Doug Zongkerc18eeb82010-09-21 16:49:26 -0700720
Elliott Hughes30694c92015-03-25 15:16:51 -0700721 DIR* d = opendir(path);
Doug Zongker8674a722010-09-15 11:08:23 -0700722 if (d == NULL) {
723 LOGE("error opening %s: %s\n", path, strerror(errno));
Doug Zongker93950222014-07-08 14:10:23 -0700724 return NULL;
Doug Zongker8674a722010-09-15 11:08:23 -0700725 }
726
Doug Zongker8674a722010-09-15 11:08:23 -0700727 int d_size = 0;
728 int d_alloc = 10;
Doug Zongker28ce47c2011-10-28 10:33:05 -0700729 char** dirs = (char**)malloc(d_alloc * sizeof(char*));
Doug Zongker8674a722010-09-15 11:08:23 -0700730 int z_size = 1;
731 int z_alloc = 10;
Doug Zongker28ce47c2011-10-28 10:33:05 -0700732 char** zips = (char**)malloc(z_alloc * sizeof(char*));
Doug Zongker8674a722010-09-15 11:08:23 -0700733 zips[0] = strdup("../");
734
Elliott Hughes30694c92015-03-25 15:16:51 -0700735 struct dirent* de;
Doug Zongker8674a722010-09-15 11:08:23 -0700736 while ((de = readdir(d)) != NULL) {
737 int name_len = strlen(de->d_name);
738
739 if (de->d_type == DT_DIR) {
740 // skip "." and ".." entries
741 if (name_len == 1 && de->d_name[0] == '.') continue;
742 if (name_len == 2 && de->d_name[0] == '.' &&
743 de->d_name[1] == '.') continue;
744
745 if (d_size >= d_alloc) {
746 d_alloc *= 2;
Doug Zongker28ce47c2011-10-28 10:33:05 -0700747 dirs = (char**)realloc(dirs, d_alloc * sizeof(char*));
Doug Zongker8674a722010-09-15 11:08:23 -0700748 }
Doug Zongker28ce47c2011-10-28 10:33:05 -0700749 dirs[d_size] = (char*)malloc(name_len + 2);
Doug Zongker8674a722010-09-15 11:08:23 -0700750 strcpy(dirs[d_size], de->d_name);
751 dirs[d_size][name_len] = '/';
752 dirs[d_size][name_len+1] = '\0';
753 ++d_size;
754 } else if (de->d_type == DT_REG &&
755 name_len >= 4 &&
756 strncasecmp(de->d_name + (name_len-4), ".zip", 4) == 0) {
757 if (z_size >= z_alloc) {
758 z_alloc *= 2;
Doug Zongker28ce47c2011-10-28 10:33:05 -0700759 zips = (char**)realloc(zips, z_alloc * sizeof(char*));
Doug Zongker8674a722010-09-15 11:08:23 -0700760 }
761 zips[z_size++] = strdup(de->d_name);
762 }
763 }
764 closedir(d);
765
766 qsort(dirs, d_size, sizeof(char*), compare_string);
767 qsort(zips, z_size, sizeof(char*), compare_string);
768
769 // append dirs to the zips list
770 if (d_size + z_size + 1 > z_alloc) {
771 z_alloc = d_size + z_size + 1;
Doug Zongker28ce47c2011-10-28 10:33:05 -0700772 zips = (char**)realloc(zips, z_alloc * sizeof(char*));
Doug Zongker8674a722010-09-15 11:08:23 -0700773 }
774 memcpy(zips + z_size, dirs, d_size * sizeof(char*));
775 free(dirs);
776 z_size += d_size;
777 zips[z_size] = NULL;
778
Elliott Hughes8fd86d72015-04-13 14:36:02 -0700779 const char* headers[] = { "Choose a package to install:", path, NULL };
Elliott Hughes30694c92015-03-25 15:16:51 -0700780
Doug Zongker93950222014-07-08 14:10:23 -0700781 char* result;
Doug Zongker8674a722010-09-15 11:08:23 -0700782 int chosen_item = 0;
Doug Zongker93950222014-07-08 14:10:23 -0700783 while (true) {
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700784 chosen_item = get_menu_selection(headers, zips, 1, chosen_item, device);
Doug Zongker8674a722010-09-15 11:08:23 -0700785
786 char* item = zips[chosen_item];
787 int item_len = strlen(item);
788 if (chosen_item == 0) { // item 0 is always "../"
Michael Ward9d2629c2011-06-23 22:14:24 -0700789 // go up but continue browsing (if the caller is update_directory)
Doug Zongker93950222014-07-08 14:10:23 -0700790 result = NULL;
Doug Zongker8674a722010-09-15 11:08:23 -0700791 break;
792 }
Doug Zongker93950222014-07-08 14:10:23 -0700793
794 char new_path[PATH_MAX];
795 strlcpy(new_path, path, PATH_MAX);
796 strlcat(new_path, "/", PATH_MAX);
797 strlcat(new_path, item, PATH_MAX);
798
799 if (item[item_len-1] == '/') {
800 // recurse down into a subdirectory
801 new_path[strlen(new_path)-1] = '\0'; // truncate the trailing '/'
802 result = browse_directory(new_path, device);
803 if (result) break;
804 } else {
805 // selected a zip file: return the malloc'd path to the caller.
806 result = strdup(new_path);
807 break;
808 }
809 }
Doug Zongker8674a722010-09-15 11:08:23 -0700810
Elliott Hughes30694c92015-03-25 15:16:51 -0700811 for (int i = 0; i < z_size; ++i) free(zips[i]);
Doug Zongker8674a722010-09-15 11:08:23 -0700812 free(zips);
Doug Zongker8674a722010-09-15 11:08:23 -0700813
814 return result;
815}
816
Elliott Hughes30694c92015-03-25 15:16:51 -0700817static bool yes_no(Device* device, const char* question1, const char* question2) {
Elliott Hughes8fd86d72015-04-13 14:36:02 -0700818 const char* headers[] = { question1, question2, NULL };
Elliott Hughes30694c92015-03-25 15:16:51 -0700819 const char* items[] = { " No", " Yes", NULL };
Doug Zongkerddd6a282009-06-09 12:22:33 -0700820
Elliott Hughes30694c92015-03-25 15:16:51 -0700821 int chosen_item = get_menu_selection(headers, items, 1, 0, device);
822 return (chosen_item == 1);
823}
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800824
Tao Baoe39a9bc2015-03-31 12:19:05 -0700825// Return true on success.
826static bool wipe_data(int should_confirm, Device* device) {
827 if (should_confirm && !yes_no(device, "Wipe all user data?", " THIS CAN NOT BE UNDONE!")) {
828 return false;
Doug Zongkerf93d8162009-09-22 15:16:02 -0700829 }
Doug Zongker1066d2c2009-04-01 13:57:40 -0700830
Tao Bao682c34b2015-04-07 17:16:35 -0700831 modified_flash = true;
832
Doug Zongker211aebc2011-10-28 15:13:10 -0700833 ui->Print("\n-- Wiping data...\n");
Elliott Hughes945548e2015-06-05 17:59:56 -0700834 bool success =
835 device->PreWipeData() &&
836 erase_volume("/data") &&
Tao Bao26112e52016-02-25 12:29:40 -0800837 (has_cache ? erase_volume("/cache") : true) &&
Elliott Hughes945548e2015-06-05 17:59:56 -0700838 device->PostWipeData();
839 ui->Print("Data wipe %s.\n", success ? "complete" : "failed");
840 return success;
Doug Zongkerf93d8162009-09-22 15:16:02 -0700841}
842
Tao Baoe39a9bc2015-03-31 12:19:05 -0700843// Return true on success.
844static bool wipe_cache(bool should_confirm, Device* device) {
Tao Bao26112e52016-02-25 12:29:40 -0800845 if (!has_cache) {
846 ui->Print("No /cache partition found.\n");
847 return false;
848 }
849
Elliott Hughes30694c92015-03-25 15:16:51 -0700850 if (should_confirm && !yes_no(device, "Wipe cache?", " THIS CAN NOT BE UNDONE!")) {
Tao Baoe39a9bc2015-03-31 12:19:05 -0700851 return false;
Elliott Hughes30694c92015-03-25 15:16:51 -0700852 }
853
Tao Bao682c34b2015-04-07 17:16:35 -0700854 modified_flash = true;
855
Elliott Hughes30694c92015-03-25 15:16:51 -0700856 ui->Print("\n-- Wiping cache...\n");
Elliott Hughes945548e2015-06-05 17:59:56 -0700857 bool success = erase_volume("/cache");
858 ui->Print("Cache wipe %s.\n", success ? "complete" : "failed");
859 return success;
Elliott Hughes30694c92015-03-25 15:16:51 -0700860}
861
Tao Bao862a4c12016-06-02 11:16:50 -0700862// Secure-wipe a given partition. It uses BLKSECDISCARD, if supported.
863// Otherwise, it goes with BLKDISCARD (if device supports BLKDISCARDZEROES) or
864// BLKZEROOUT.
865static bool secure_wipe_partition(const std::string& partition) {
866 android::base::unique_fd fd(TEMP_FAILURE_RETRY(open(partition.c_str(), O_WRONLY)));
867 if (fd == -1) {
868 LOGE("failed to open \"%s\": %s\n", partition.c_str(), strerror(errno));
869 return false;
870 }
871
872 uint64_t range[2] = {0, 0};
873 if (ioctl(fd, BLKGETSIZE64, &range[1]) == -1 || range[1] == 0) {
874 LOGE("failed to get partition size: %s\n", strerror(errno));
875 return false;
876 }
877 printf("Secure-wiping \"%s\" from %" PRIu64 " to %" PRIu64 ".\n",
878 partition.c_str(), range[0], range[1]);
879
880 printf("Trying BLKSECDISCARD...\t");
881 if (ioctl(fd, BLKSECDISCARD, &range) == -1) {
882 printf("failed: %s\n", strerror(errno));
883
884 // Use BLKDISCARD if it zeroes out blocks, otherwise use BLKZEROOUT.
885 unsigned int zeroes;
886 if (ioctl(fd, BLKDISCARDZEROES, &zeroes) == 0 && zeroes != 0) {
887 printf("Trying BLKDISCARD...\t");
888 if (ioctl(fd, BLKDISCARD, &range) == -1) {
889 printf("failed: %s\n", strerror(errno));
890 return false;
891 }
892 } else {
893 printf("Trying BLKZEROOUT...\t");
894 if (ioctl(fd, BLKZEROOUT, &range) == -1) {
895 printf("failed: %s\n", strerror(errno));
896 return false;
897 }
898 }
899 }
900
901 printf("done\n");
902 return true;
903}
904
Yabin Cui6faf0262016-06-09 14:09:39 -0700905// Check if the wipe package matches expectation:
906// 1. verify the package.
907// 2. check metadata (ota-type, pre-device and serial number if having one).
908static bool check_wipe_package(size_t wipe_package_size) {
909 if (wipe_package_size == 0) {
910 LOGE("wipe_package_size is zero.\n");
911 return false;
912 }
913 std::string wipe_package;
Yabin Cui2f272c02016-06-24 18:22:02 -0700914 std::string err_str;
915 if (!read_wipe_package(&wipe_package, wipe_package_size, &err_str)) {
916 LOGE("Failed to read wipe package: %s\n", err_str.c_str());
Yabin Cui6faf0262016-06-09 14:09:39 -0700917 return false;
918 }
919 if (!verify_package(reinterpret_cast<const unsigned char*>(wipe_package.data()),
920 wipe_package.size())) {
921 LOGE("Failed to verify package.\n");
922 return false;
923 }
924
925 // Extract metadata
926 ZipArchive zip;
927 int err = mzOpenZipArchive(reinterpret_cast<unsigned char*>(&wipe_package[0]),
928 wipe_package.size(), &zip);
929 if (err != 0) {
930 LOGE("Can't open wipe package: %s\n", err != -1 ? strerror(err) : "bad");
931 return false;
932 }
933 std::string metadata;
934 if (!read_metadata_from_package(&zip, &metadata)) {
935 mzCloseZipArchive(&zip);
936 return false;
937 }
938 mzCloseZipArchive(&zip);
939
940 // Check metadata
941 std::vector<std::string> lines = android::base::Split(metadata, "\n");
942 bool ota_type_matched = false;
943 bool device_type_matched = false;
944 bool has_serial_number = false;
945 bool serial_number_matched = false;
946 for (const auto& line : lines) {
947 if (line == "ota-type=BRICK") {
948 ota_type_matched = true;
949 } else if (android::base::StartsWith(line, "pre-device=")) {
950 std::string device_type = line.substr(strlen("pre-device="));
951 char real_device_type[PROPERTY_VALUE_MAX];
952 property_get("ro.build.product", real_device_type, "");
953 device_type_matched = (device_type == real_device_type);
954 } else if (android::base::StartsWith(line, "serialno=")) {
955 std::string serial_no = line.substr(strlen("serialno="));
956 char real_serial_no[PROPERTY_VALUE_MAX];
957 property_get("ro.serialno", real_serial_no, "");
958 has_serial_number = true;
959 serial_number_matched = (serial_no == real_serial_no);
960 }
961 }
962 return ota_type_matched && device_type_matched && (!has_serial_number || serial_number_matched);
963}
964
Tao Bao108ab212016-06-10 10:13:32 -0700965// Wipe the current A/B device, with a secure wipe of all the partitions in
966// RECOVERY_WIPE.
Yabin Cui6faf0262016-06-09 14:09:39 -0700967static bool wipe_ab_device(size_t wipe_package_size) {
Tao Bao862a4c12016-06-02 11:16:50 -0700968 ui->SetBackground(RecoveryUI::ERASING);
969 ui->SetProgressType(RecoveryUI::INDETERMINATE);
970
Yabin Cui6faf0262016-06-09 14:09:39 -0700971 if (!check_wipe_package(wipe_package_size)) {
972 LOGE("Failed to verify wipe package\n");
973 return false;
974 }
Tao Bao862a4c12016-06-02 11:16:50 -0700975 std::string partition_list;
Tao Bao108ab212016-06-10 10:13:32 -0700976 if (!android::base::ReadFileToString(RECOVERY_WIPE, &partition_list)) {
977 LOGE("failed to read \"%s\".\n", RECOVERY_WIPE);
Tao Bao862a4c12016-06-02 11:16:50 -0700978 return false;
979 }
980
981 std::vector<std::string> lines = android::base::Split(partition_list, "\n");
982 for (const std::string& line : lines) {
983 std::string partition = android::base::Trim(line);
984 // Ignore '#' comment or empty lines.
985 if (android::base::StartsWith(partition, "#") || partition.empty()) {
986 continue;
987 }
988
989 // Proceed anyway even if it fails to wipe some partition.
990 secure_wipe_partition(partition);
991 }
992 return true;
993}
994
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700995static void choose_recovery_file(Device* device) {
Tao Bao26112e52016-02-25 12:29:40 -0800996 if (!has_cache) {
997 ui->Print("No /cache partition found.\n");
998 return;
999 }
1000
Elliott Hughesc0491632015-05-06 12:40:05 -07001001 // "Back" + KEEP_LOG_COUNT * 2 + terminating nullptr entry
1002 char* entries[1 + KEEP_LOG_COUNT * 2 + 1];
Nick Kralevicha9ad0322014-10-22 18:38:48 -07001003 memset(entries, 0, sizeof(entries));
1004
Tao Baobef39712015-05-04 18:50:27 -07001005 unsigned int n = 0;
Patrick Tjincd055ee2014-12-09 11:26:40 -08001006
Patrick Tjincd055ee2014-12-09 11:26:40 -08001007 // Add LAST_LOG_FILE + LAST_LOG_FILE.x
Tao Baobef39712015-05-04 18:50:27 -07001008 // Add LAST_KMSG_FILE + LAST_KMSG_FILE.x
1009 for (int i = 0; i < KEEP_LOG_COUNT; i++) {
1010 char* log_file;
Tao Bao80e46e02015-06-03 10:49:29 -07001011 int ret;
1012 ret = (i == 0) ? asprintf(&log_file, "%s", LAST_LOG_FILE) :
1013 asprintf(&log_file, "%s.%d", LAST_LOG_FILE, i);
1014 if (ret == -1) {
Nick Kralevicha9ad0322014-10-22 18:38:48 -07001015 // memory allocation failure - return early. Should never happen.
1016 return;
1017 }
Tao Baobef39712015-05-04 18:50:27 -07001018 if ((ensure_path_mounted(log_file) != 0) || (access(log_file, R_OK) == -1)) {
1019 free(log_file);
1020 } else {
1021 entries[n++] = log_file;
Nick Kralevicha9ad0322014-10-22 18:38:48 -07001022 }
Tao Baobef39712015-05-04 18:50:27 -07001023
1024 char* kmsg_file;
Tao Bao80e46e02015-06-03 10:49:29 -07001025 ret = (i == 0) ? asprintf(&kmsg_file, "%s", LAST_KMSG_FILE) :
1026 asprintf(&kmsg_file, "%s.%d", LAST_KMSG_FILE, i);
1027 if (ret == -1) {
Tao Baobef39712015-05-04 18:50:27 -07001028 // memory allocation failure - return early. Should never happen.
1029 return;
1030 }
1031 if ((ensure_path_mounted(kmsg_file) != 0) || (access(kmsg_file, R_OK) == -1)) {
1032 free(kmsg_file);
1033 } else {
1034 entries[n++] = kmsg_file;
1035 }
Nick Kralevicha9ad0322014-10-22 18:38:48 -07001036 }
1037
Elliott Hughesc0491632015-05-06 12:40:05 -07001038 entries[n++] = strdup("Back");
1039
Tao Baobef39712015-05-04 18:50:27 -07001040 const char* headers[] = { "Select file to view", nullptr };
Nick Kralevicha9ad0322014-10-22 18:38:48 -07001041
Elliott Hughes8de52072015-04-08 20:06:50 -07001042 while (true) {
Elliott Hughes30694c92015-03-25 15:16:51 -07001043 int chosen_item = get_menu_selection(headers, entries, 1, 0, device);
Elliott Hughesc0491632015-05-06 12:40:05 -07001044 if (strcmp(entries[chosen_item], "Back") == 0) break;
Elliott Hughes8de52072015-04-08 20:06:50 -07001045
Elliott Hughes8de52072015-04-08 20:06:50 -07001046 ui->ShowFile(entries[chosen_item]);
Nick Kralevicha9ad0322014-10-22 18:38:48 -07001047 }
1048
Tao Baobef39712015-05-04 18:50:27 -07001049 for (size_t i = 0; i < (sizeof(entries) / sizeof(*entries)); i++) {
Nick Kralevicha9ad0322014-10-22 18:38:48 -07001050 free(entries[i]);
1051 }
1052}
1053
Elliott Hughes498cda62016-04-14 16:49:04 -07001054static void run_graphics_test(Device* device) {
1055 // Switch to graphics screen.
1056 ui->ShowText(false);
1057
1058 ui->SetProgressType(RecoveryUI::INDETERMINATE);
1059 ui->SetBackground(RecoveryUI::INSTALLING_UPDATE);
1060 sleep(1);
1061
1062 ui->SetBackground(RecoveryUI::ERROR);
1063 sleep(1);
1064
1065 ui->SetBackground(RecoveryUI::NO_COMMAND);
1066 sleep(1);
1067
1068 ui->SetBackground(RecoveryUI::ERASING);
1069 sleep(1);
1070
1071 ui->SetBackground(RecoveryUI::INSTALLING_UPDATE);
1072
1073 ui->SetProgressType(RecoveryUI::DETERMINATE);
1074 ui->ShowProgress(1.0, 10.0);
1075 float fraction = 0.0;
1076 for (size_t i = 0; i < 100; ++i) {
1077 fraction += .01;
1078 ui->SetProgress(fraction);
1079 usleep(100000);
1080 }
1081
1082 ui->ShowText(true);
1083}
1084
Tao Baocdcf28f2016-01-13 15:05:20 -08001085// How long (in seconds) we wait for the fuse-provided package file to
1086// appear, before timing out.
1087#define SDCARD_INSTALL_TIMEOUT 10
1088
Tao Bao145d8612015-03-25 15:51:15 -07001089static int apply_from_sdcard(Device* device, bool* wipe_cache) {
Tao Bao682c34b2015-04-07 17:16:35 -07001090 modified_flash = true;
1091
Christian Poetzsch4ec58a42015-02-19 10:42:39 +00001092 if (ensure_path_mounted(SDCARD_ROOT) != 0) {
1093 ui->Print("\n-- Couldn't mount %s.\n", SDCARD_ROOT);
1094 return INSTALL_ERROR;
1095 }
1096
1097 char* path = browse_directory(SDCARD_ROOT, device);
1098 if (path == NULL) {
Elliott Hughes018ed312015-04-08 16:51:36 -07001099 ui->Print("\n-- No package file selected.\n");
caozhiyuanb4effb92015-06-10 16:46:38 +08001100 ensure_path_unmounted(SDCARD_ROOT);
Christian Poetzsch4ec58a42015-02-19 10:42:39 +00001101 return INSTALL_ERROR;
1102 }
1103
1104 ui->Print("\n-- Install %s ...\n", path);
1105 set_sdcard_update_bootloader_message();
Christian Poetzsch4ec58a42015-02-19 10:42:39 +00001106
Tao Baocdcf28f2016-01-13 15:05:20 -08001107 // We used to use fuse in a thread as opposed to a process. Since accessing
1108 // through fuse involves going from kernel to userspace to kernel, it leads
1109 // to deadlock when a page fault occurs. (Bug: 26313124)
1110 pid_t child;
1111 if ((child = fork()) == 0) {
1112 bool status = start_sdcard_fuse(path);
1113
1114 _exit(status ? EXIT_SUCCESS : EXIT_FAILURE);
1115 }
1116
1117 // FUSE_SIDELOAD_HOST_PATHNAME will start to exist once the fuse in child
1118 // process is ready.
1119 int result = INSTALL_ERROR;
1120 int status;
1121 bool waited = false;
1122 for (int i = 0; i < SDCARD_INSTALL_TIMEOUT; ++i) {
1123 if (waitpid(child, &status, WNOHANG) == -1) {
1124 result = INSTALL_ERROR;
1125 waited = true;
1126 break;
1127 }
1128
1129 struct stat sb;
1130 if (stat(FUSE_SIDELOAD_HOST_PATHNAME, &sb) == -1) {
1131 if (errno == ENOENT && i < SDCARD_INSTALL_TIMEOUT-1) {
1132 sleep(1);
1133 continue;
1134 } else {
1135 LOGE("Timed out waiting for the fuse-provided package.\n");
1136 result = INSTALL_ERROR;
1137 kill(child, SIGKILL);
1138 break;
1139 }
1140 }
1141
1142 result = install_package(FUSE_SIDELOAD_HOST_PATHNAME, wipe_cache,
Tianjie Xu16255832016-04-30 11:49:59 -07001143 TEMPORARY_INSTALL_FILE, false, 0/*retry_count*/);
Tao Baocdcf28f2016-01-13 15:05:20 -08001144 break;
1145 }
Christian Poetzsch4ec58a42015-02-19 10:42:39 +00001146
Tao Baocdcf28f2016-01-13 15:05:20 -08001147 if (!waited) {
1148 // Calling stat() on this magic filename signals the fuse
1149 // filesystem to shut down.
1150 struct stat sb;
1151 stat(FUSE_SIDELOAD_HOST_EXIT_PATHNAME, &sb);
1152
1153 waitpid(child, &status, 0);
1154 }
1155
1156 if (!WIFEXITED(status) || WEXITSTATUS(status) != 0) {
1157 LOGE("Error exit from the fuse process: %d\n", WEXITSTATUS(status));
1158 }
1159
Christian Poetzsch4ec58a42015-02-19 10:42:39 +00001160 ensure_path_unmounted(SDCARD_ROOT);
Tao Baocdcf28f2016-01-13 15:05:20 -08001161 return result;
Christian Poetzsch4ec58a42015-02-19 10:42:39 +00001162}
1163
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001164// Return REBOOT, SHUTDOWN, or REBOOT_BOOTLOADER. Returning NO_ACTION
1165// means to take the default, which is to reboot or shutdown depending
1166// on if the --shutdown_after flag was passed to recovery.
1167static Device::BuiltinAction
Doug Zongker6c8553d2012-09-24 10:40:47 -07001168prompt_and_wait(Device* device, int status) {
Doug Zongkerf93d8162009-09-22 15:16:02 -07001169 for (;;) {
Tianjie Xuc14d95d2016-03-24 11:50:34 -07001170 finish_recovery();
Doug Zongker6c8553d2012-09-24 10:40:47 -07001171 switch (status) {
1172 case INSTALL_SUCCESS:
1173 case INSTALL_NONE:
1174 ui->SetBackground(RecoveryUI::NO_COMMAND);
1175 break;
1176
1177 case INSTALL_ERROR:
1178 case INSTALL_CORRUPT:
1179 ui->SetBackground(RecoveryUI::ERROR);
1180 break;
1181 }
Doug Zongker211aebc2011-10-28 15:13:10 -07001182 ui->SetProgressType(RecoveryUI::EMPTY);
Doug Zongkerf93d8162009-09-22 15:16:02 -07001183
Elliott Hughes8fd86d72015-04-13 14:36:02 -07001184 int chosen_item = get_menu_selection(nullptr, device->GetMenuItems(), 0, 0, device);
Doug Zongkerf93d8162009-09-22 15:16:02 -07001185
1186 // device-specific code may take some action here. It may
1187 // return one of the core actions handled in the switch
1188 // statement below.
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001189 Device::BuiltinAction chosen_action = device->InvokeMenuItem(chosen_item);
Doug Zongkerf93d8162009-09-22 15:16:02 -07001190
Elliott Hughes30694c92015-03-25 15:16:51 -07001191 bool should_wipe_cache = false;
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001192 switch (chosen_action) {
1193 case Device::NO_ACTION:
1194 break;
1195
Doug Zongkerdaefc1d2011-10-31 09:34:15 -07001196 case Device::REBOOT:
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001197 case Device::SHUTDOWN:
1198 case Device::REBOOT_BOOTLOADER:
1199 return chosen_action;
Doug Zongkerf93d8162009-09-22 15:16:02 -07001200
Doug Zongkerdaefc1d2011-10-31 09:34:15 -07001201 case Device::WIPE_DATA:
1202 wipe_data(ui->IsTextVisible(), device);
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001203 if (!ui->IsTextVisible()) return Device::NO_ACTION;
Doug Zongkerf93d8162009-09-22 15:16:02 -07001204 break;
1205
Doug Zongkerdaefc1d2011-10-31 09:34:15 -07001206 case Device::WIPE_CACHE:
Elliott Hughes30694c92015-03-25 15:16:51 -07001207 wipe_cache(ui->IsTextVisible(), device);
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001208 if (!ui->IsTextVisible()) return Device::NO_ACTION;
Doug Zongkerf93d8162009-09-22 15:16:02 -07001209 break;
1210
Christian Poetzsch4ec58a42015-02-19 10:42:39 +00001211 case Device::APPLY_ADB_SIDELOAD:
Elliott Hughesec283402015-04-10 10:01:53 -07001212 case Device::APPLY_SDCARD:
Christian Poetzsch4ec58a42015-02-19 10:42:39 +00001213 {
1214 bool adb = (chosen_action == Device::APPLY_ADB_SIDELOAD);
1215 if (adb) {
Elliott Hughes30694c92015-03-25 15:16:51 -07001216 status = apply_from_adb(ui, &should_wipe_cache, TEMPORARY_INSTALL_FILE);
Doug Zongkerd0181b82011-10-19 10:51:12 -07001217 } else {
Elliott Hughes30694c92015-03-25 15:16:51 -07001218 status = apply_from_sdcard(device, &should_wipe_cache);
Doug Zongkerd0181b82011-10-19 10:51:12 -07001219 }
Doug Zongker945fc682014-07-10 10:50:39 -07001220
Elliott Hughes30694c92015-03-25 15:16:51 -07001221 if (status == INSTALL_SUCCESS && should_wipe_cache) {
Tao Baoe39a9bc2015-03-31 12:19:05 -07001222 if (!wipe_cache(false, device)) {
1223 status = INSTALL_ERROR;
1224 }
Christian Poetzsch4ec58a42015-02-19 10:42:39 +00001225 }
1226
Tao Baoc679f932015-03-30 09:43:49 -07001227 if (status != INSTALL_SUCCESS) {
1228 ui->SetBackground(RecoveryUI::ERROR);
1229 ui->Print("Installation aborted.\n");
1230 copy_logs();
1231 } else if (!ui->IsTextVisible()) {
1232 return Device::NO_ACTION; // reboot if logs aren't visible
1233 } else {
1234 ui->Print("\nInstall from %s complete.\n", adb ? "ADB" : "SD card");
Doug Zongker8674a722010-09-15 11:08:23 -07001235 }
Doug Zongkerf93d8162009-09-22 15:16:02 -07001236 }
1237 break;
Doug Zongkerdaefc1d2011-10-31 09:34:15 -07001238
Elliott Hughesec283402015-04-10 10:01:53 -07001239 case Device::VIEW_RECOVERY_LOGS:
1240 choose_recovery_file(device);
Michael Ward9d2629c2011-06-23 22:14:24 -07001241 break;
Doug Zongker9270a202012-01-09 15:16:13 -08001242
Elliott Hughes498cda62016-04-14 16:49:04 -07001243 case Device::RUN_GRAPHICS_TEST:
1244 run_graphics_test(device);
1245 break;
1246
Elliott Hughesec283402015-04-10 10:01:53 -07001247 case Device::MOUNT_SYSTEM:
Tao Baoabb8f772015-07-30 14:43:27 -07001248 char system_root_image[PROPERTY_VALUE_MAX];
1249 property_get("ro.build.system_root_image", system_root_image, "");
1250
1251 // For a system image built with the root directory (i.e.
1252 // system_root_image == "true"), we mount it to /system_root, and symlink /system
1253 // to /system_root/system to make adb shell work (the symlink is created through
1254 // the build system).
1255 // Bug: 22855115
1256 if (strcmp(system_root_image, "true") == 0) {
1257 if (ensure_path_mounted_at("/", "/system_root") != -1) {
1258 ui->Print("Mounted /system.\n");
1259 }
1260 } else {
1261 if (ensure_path_mounted("/system") != -1) {
1262 ui->Print("Mounted /system.\n");
1263 }
Elliott Hughesec283402015-04-10 10:01:53 -07001264 }
Tao Baoabb8f772015-07-30 14:43:27 -07001265
Nick Kralevicha9ad0322014-10-22 18:38:48 -07001266 break;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001267 }
1268 }
1269}
1270
1271static void
Oscar Montemayor05231562009-11-30 08:40:57 -08001272print_property(const char *key, const char *name, void *cookie) {
Doug Zongker56c51052010-07-01 09:18:44 -07001273 printf("%s=%s\n", key, name);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001274}
1275
Doug Zongker02ec6b82012-08-22 17:26:40 -07001276static void
1277load_locale_from_cache() {
1278 FILE* fp = fopen_path(LOCALE_FILE, "r");
1279 char buffer[80];
1280 if (fp != NULL) {
1281 fgets(buffer, sizeof(buffer), fp);
1282 int j = 0;
Doug Zongker5fa8c232012-09-18 12:37:02 -07001283 unsigned int i;
Doug Zongker02ec6b82012-08-22 17:26:40 -07001284 for (i = 0; i < sizeof(buffer) && buffer[i]; ++i) {
1285 if (!isspace(buffer[i])) {
1286 buffer[j++] = buffer[i];
1287 }
1288 }
1289 buffer[j] = 0;
1290 locale = strdup(buffer);
Devin Kim6016d082012-10-08 09:47:37 -07001291 check_and_fclose(fp, LOCALE_FILE);
Doug Zongker02ec6b82012-08-22 17:26:40 -07001292 }
1293}
1294
Doug Zongker7c3ae452013-05-14 11:03:02 -07001295static RecoveryUI* gCurrentUI = NULL;
1296
1297void
1298ui_print(const char* format, ...) {
1299 char buffer[256];
1300
1301 va_list ap;
1302 va_start(ap, format);
1303 vsnprintf(buffer, sizeof(buffer), format, ap);
1304 va_end(ap);
1305
1306 if (gCurrentUI != NULL) {
1307 gCurrentUI->Print("%s", buffer);
1308 } else {
1309 fputs(buffer, stdout);
1310 }
1311}
1312
Yabin Cui99281df2016-02-17 12:21:52 -08001313static bool is_battery_ok() {
1314 struct healthd_config healthd_config = {
1315 .batteryStatusPath = android::String8(android::String8::kEmptyString),
1316 .batteryHealthPath = android::String8(android::String8::kEmptyString),
1317 .batteryPresentPath = android::String8(android::String8::kEmptyString),
1318 .batteryCapacityPath = android::String8(android::String8::kEmptyString),
1319 .batteryVoltagePath = android::String8(android::String8::kEmptyString),
1320 .batteryTemperaturePath = android::String8(android::String8::kEmptyString),
1321 .batteryTechnologyPath = android::String8(android::String8::kEmptyString),
1322 .batteryCurrentNowPath = android::String8(android::String8::kEmptyString),
1323 .batteryCurrentAvgPath = android::String8(android::String8::kEmptyString),
1324 .batteryChargeCounterPath = android::String8(android::String8::kEmptyString),
1325 .batteryFullChargePath = android::String8(android::String8::kEmptyString),
1326 .batteryCycleCountPath = android::String8(android::String8::kEmptyString),
1327 .energyCounter = NULL,
1328 .boot_min_cap = 0,
1329 .screen_on = NULL
1330 };
1331 healthd_board_init(&healthd_config);
1332
1333 android::BatteryMonitor monitor;
1334 monitor.init(&healthd_config);
1335
1336 int wait_second = 0;
1337 while (true) {
1338 int charge_status = monitor.getChargeStatus();
1339 // Treat unknown status as charged.
1340 bool charged = (charge_status != android::BATTERY_STATUS_DISCHARGING &&
1341 charge_status != android::BATTERY_STATUS_NOT_CHARGING);
1342 android::BatteryProperty capacity;
1343 android::status_t status = monitor.getProperty(android::BATTERY_PROP_CAPACITY, &capacity);
1344 ui_print("charge_status %d, charged %d, status %d, capacity %lld\n", charge_status,
1345 charged, status, capacity.valueInt64);
1346 // At startup, the battery drivers in devices like N5X/N6P take some time to load
1347 // the battery profile. Before the load finishes, it reports value 50 as a fake
1348 // capacity. BATTERY_READ_TIMEOUT_IN_SEC is set that the battery drivers are expected
1349 // to finish loading the battery profile earlier than 10 seconds after kernel startup.
1350 if (status == 0 && capacity.valueInt64 == 50) {
1351 if (wait_second < BATTERY_READ_TIMEOUT_IN_SEC) {
1352 sleep(1);
1353 wait_second++;
1354 continue;
1355 }
1356 }
1357 // If we can't read battery percentage, it may be a device without battery. In this
1358 // situation, use 100 as a fake battery percentage.
1359 if (status != 0) {
1360 capacity.valueInt64 = 100;
1361 }
1362 return (charged && capacity.valueInt64 >= BATTERY_WITH_CHARGER_OK_PERCENTAGE) ||
1363 (!charged && capacity.valueInt64 >= BATTERY_OK_PERCENTAGE);
1364 }
1365}
1366
Tianjie Xu3c62b672016-02-05 18:25:58 -08001367static void set_retry_bootloader_message(int retry_count, int argc, char** argv) {
Yabin Cui2f272c02016-06-24 18:22:02 -07001368 bootloader_message boot = {};
Tianjie Xu3c62b672016-02-05 18:25:58 -08001369 strlcpy(boot.command, "boot-recovery", sizeof(boot.command));
1370 strlcpy(boot.recovery, "recovery\n", sizeof(boot.recovery));
1371
1372 for (int i = 1; i < argc; ++i) {
1373 if (strstr(argv[i], "retry_count") == nullptr) {
1374 strlcat(boot.recovery, argv[i], sizeof(boot.recovery));
1375 strlcat(boot.recovery, "\n", sizeof(boot.recovery));
1376 }
1377 }
1378
1379 // Initialize counter to 1 if it's not in BCB, otherwise increment it by 1.
1380 if (retry_count == 0) {
1381 strlcat(boot.recovery, "--retry_count=1\n", sizeof(boot.recovery));
1382 } else {
1383 char buffer[20];
1384 snprintf(buffer, sizeof(buffer), "--retry_count=%d\n", retry_count+1);
1385 strlcat(boot.recovery, buffer, sizeof(boot.recovery));
1386 }
Yabin Cui2f272c02016-06-24 18:22:02 -07001387 std::string err;
1388 if (!write_bootloader_message(boot, &err)) {
1389 LOGE("%s\n", err.c_str());
1390 }
Tianjie Xu3c62b672016-02-05 18:25:58 -08001391}
1392
Mark Salyzyna4f701a2016-03-09 14:58:16 -08001393static ssize_t logbasename(
1394 log_id_t /* logId */,
1395 char /* prio */,
1396 const char *filename,
1397 const char * /* buf */, size_t len,
1398 void *arg) {
1399 if (strstr(LAST_KMSG_FILE, filename) ||
1400 strstr(LAST_LOG_FILE, filename)) {
1401 bool *doRotate = reinterpret_cast<bool *>(arg);
1402 *doRotate = true;
1403 }
1404 return len;
1405}
1406
1407static ssize_t logrotate(
1408 log_id_t logId,
1409 char prio,
1410 const char *filename,
1411 const char *buf, size_t len,
1412 void *arg) {
1413 bool *doRotate = reinterpret_cast<bool *>(arg);
1414 if (!*doRotate) {
1415 return __android_log_pmsg_file_write(logId, prio, filename, buf, len);
1416 }
1417
1418 std::string name(filename);
1419 size_t dot = name.find_last_of(".");
1420 std::string sub = name.substr(0, dot);
1421
1422 if (!strstr(LAST_KMSG_FILE, sub.c_str()) &&
1423 !strstr(LAST_LOG_FILE, sub.c_str())) {
1424 return __android_log_pmsg_file_write(logId, prio, filename, buf, len);
1425 }
1426
1427 // filename rotation
1428 if (dot == std::string::npos) {
1429 name += ".1";
1430 } else {
1431 std::string number = name.substr(dot + 1);
1432 if (!isdigit(number.data()[0])) {
1433 name += ".1";
1434 } else {
Chih-Hung Hsieh54a27472016-04-18 11:30:55 -07001435 auto i = std::stoull(number);
Mark Salyzyna4f701a2016-03-09 14:58:16 -08001436 name = sub + "." + std::to_string(i + 1);
1437 }
1438 }
1439
1440 return __android_log_pmsg_file_write(logId, prio, name.c_str(), buf, len);
1441}
1442
Yabin Cui99281df2016-02-17 12:21:52 -08001443int main(int argc, char **argv) {
Mark Salyzyna4f701a2016-03-09 14:58:16 -08001444 // Take last pmsg contents and rewrite it to the current pmsg session.
1445 static const char filter[] = "recovery/";
1446 // Do we need to rotate?
1447 bool doRotate = false;
1448 __android_log_pmsg_file_read(
1449 LOG_ID_SYSTEM, ANDROID_LOG_INFO, filter,
1450 logbasename, &doRotate);
1451 // Take action to refresh pmsg contents
1452 __android_log_pmsg_file_read(
1453 LOG_ID_SYSTEM, ANDROID_LOG_INFO, filter,
1454 logrotate, &doRotate);
1455
Doug Zongker9270a202012-01-09 15:16:13 -08001456 // If this binary is started with the single argument "--adbd",
1457 // instead of being the normal recovery binary, it turns into kind
1458 // of a stripped-down version of adbd that only supports the
1459 // 'sideload' command. Note this must be a real argument, not
1460 // anything in the command file or bootloader control block; the
1461 // only way recovery should be run with this argument is when it
1462 // starts a copy of itself from the apply_from_adb() function.
1463 if (argc == 2 && strcmp(argv[1], "--adbd") == 0) {
Elliott Hughes9f4fdb32015-11-20 13:03:24 -08001464 adb_server_main(0, DEFAULT_ADB_PORT, -1);
Doug Zongker9270a202012-01-09 15:16:13 -08001465 return 0;
1466 }
1467
Tao Bao04ca4262015-09-10 15:32:24 -07001468 time_t start = time(NULL);
1469
1470 // redirect_stdio should be called only in non-sideload mode. Otherwise
1471 // we may have two logger instances with different timestamps.
1472 redirect_stdio(TEMPORARY_LOG_FILE);
1473
Doug Zongker19a8e242014-01-21 09:25:41 -08001474 printf("Starting recovery (pid %d) on %s", getpid(), ctime(&start));
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001475
Doug Zongkerd4208f92010-09-20 12:16:13 -07001476 load_volume_table();
Tao Bao26112e52016-02-25 12:29:40 -08001477 has_cache = volume_for_path(CACHE_ROOT) != nullptr;
1478
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001479 get_args(&argc, &argv);
1480
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001481 const char *update_package = NULL;
Tao Baoe39a9bc2015-03-31 12:19:05 -07001482 bool should_wipe_data = false;
Tao Baoc679f932015-03-30 09:43:49 -07001483 bool should_wipe_cache = false;
Tao Bao108ab212016-06-10 10:13:32 -07001484 bool should_wipe_ab = false;
Yabin Cui6faf0262016-06-09 14:09:39 -07001485 size_t wipe_package_size = 0;
Tao Bao145d8612015-03-25 15:51:15 -07001486 bool show_text = false;
Tao Baoc679f932015-03-30 09:43:49 -07001487 bool sideload = false;
1488 bool sideload_auto_reboot = false;
Doug Zongkere5d5ac72012-04-12 11:01:22 -07001489 bool just_exit = false;
Doug Zongkerb1d12632014-03-18 10:32:12 -07001490 bool shutdown_after = false;
Tianjie Xu3c62b672016-02-05 18:25:58 -08001491 int retry_count = 0;
Tianjie Xu35926c42016-04-28 18:06:26 -07001492 bool security_update = false;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001493
1494 int arg;
Tao Bao862a4c12016-06-02 11:16:50 -07001495 int option_index;
1496 while ((arg = getopt_long(argc, argv, "", OPTIONS, &option_index)) != -1) {
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001497 switch (arg) {
Tianjie Xu3c62b672016-02-05 18:25:58 -08001498 case 'n': android::base::ParseInt(optarg, &retry_count, 0); break;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001499 case 'u': update_package = optarg; break;
Tao Baoe39a9bc2015-03-31 12:19:05 -07001500 case 'w': should_wipe_data = true; break;
Tao Baoc679f932015-03-30 09:43:49 -07001501 case 'c': should_wipe_cache = true; break;
Tao Bao145d8612015-03-25 15:51:15 -07001502 case 't': show_text = true; break;
Tao Baoc679f932015-03-30 09:43:49 -07001503 case 's': sideload = true; break;
1504 case 'a': sideload = true; sideload_auto_reboot = true; break;
Doug Zongkere5d5ac72012-04-12 11:01:22 -07001505 case 'x': just_exit = true; break;
Doug Zongker02ec6b82012-08-22 17:26:40 -07001506 case 'l': locale = optarg; break;
Doug Zongkerc87bab12013-11-25 13:53:25 -08001507 case 'g': {
1508 if (stage == NULL || *stage == '\0') {
1509 char buffer[20] = "1/";
1510 strncat(buffer, optarg, sizeof(buffer)-3);
1511 stage = strdup(buffer);
1512 }
1513 break;
1514 }
Doug Zongkerb1d12632014-03-18 10:32:12 -07001515 case 'p': shutdown_after = true; break;
Jeff Sharkeya6e13ae2014-09-24 11:46:17 -07001516 case 'r': reason = optarg; break;
Tianjie Xu35926c42016-04-28 18:06:26 -07001517 case 'e': security_update = true; break;
Tao Bao862a4c12016-06-02 11:16:50 -07001518 case 0: {
Tao Bao108ab212016-06-10 10:13:32 -07001519 if (strcmp(OPTIONS[option_index].name, "wipe_ab") == 0) {
1520 should_wipe_ab = true;
Tao Bao862a4c12016-06-02 11:16:50 -07001521 break;
Yabin Cui6faf0262016-06-09 14:09:39 -07001522 } else if (strcmp(OPTIONS[option_index].name, "wipe_package_size") == 0) {
1523 android::base::ParseUint(optarg, &wipe_package_size);
1524 break;
Tao Bao862a4c12016-06-02 11:16:50 -07001525 }
1526 break;
1527 }
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001528 case '?':
1529 LOGE("Invalid command argument\n");
1530 continue;
1531 }
1532 }
1533
Tao Bao26112e52016-02-25 12:29:40 -08001534 if (locale == nullptr && has_cache) {
Doug Zongker02ec6b82012-08-22 17:26:40 -07001535 load_locale_from_cache();
1536 }
1537 printf("locale is [%s]\n", locale);
Doug Zongker0d32f252014-02-13 15:07:56 -08001538 printf("stage is [%s]\n", stage);
Jeff Sharkeya6e13ae2014-09-24 11:46:17 -07001539 printf("reason is [%s]\n", reason);
Doug Zongker02ec6b82012-08-22 17:26:40 -07001540
1541 Device* device = make_device();
1542 ui = device->GetUI();
Doug Zongker7c3ae452013-05-14 11:03:02 -07001543 gCurrentUI = ui;
Doug Zongker02ec6b82012-08-22 17:26:40 -07001544
Doug Zongker5fa8c232012-09-18 12:37:02 -07001545 ui->SetLocale(locale);
Doug Zongker02ec6b82012-08-22 17:26:40 -07001546 ui->Init();
Tianjie Xu35926c42016-04-28 18:06:26 -07001547 // Set background string to "installing security update" for security update,
1548 // otherwise set it to "installing system update".
1549 ui->SetSystemUpdateText(security_update);
Doug Zongkerc87bab12013-11-25 13:53:25 -08001550
1551 int st_cur, st_max;
1552 if (stage != NULL && sscanf(stage, "%d/%d", &st_cur, &st_max) == 2) {
1553 ui->SetStage(st_cur, st_max);
1554 }
1555
Doug Zongker02ec6b82012-08-22 17:26:40 -07001556 ui->SetBackground(RecoveryUI::NONE);
1557 if (show_text) ui->ShowText(true);
1558
Stephen Smalley779701d2012-02-09 14:13:23 -05001559 struct selinux_opt seopts[] = {
1560 { SELABEL_OPT_PATH, "/file_contexts" }
1561 };
1562
1563 sehandle = selabel_open(SELABEL_CTX_FILE, seopts, 1);
1564
1565 if (!sehandle) {
Doug Zongkerfafc85b2013-07-09 12:29:45 -07001566 ui->Print("Warning: No file_contexts\n");
Stephen Smalley779701d2012-02-09 14:13:23 -05001567 }
Stephen Smalley779701d2012-02-09 14:13:23 -05001568
Doug Zongkerdaefc1d2011-10-31 09:34:15 -07001569 device->StartRecovery();
Doug Zongkerefa1bab2010-02-01 15:59:12 -08001570
Doug Zongker56c51052010-07-01 09:18:44 -07001571 printf("Command:");
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001572 for (arg = 0; arg < argc; arg++) {
Doug Zongker56c51052010-07-01 09:18:44 -07001573 printf(" \"%s\"", argv[arg]);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001574 }
Doug Zongker9b125b02010-09-22 12:01:37 -07001575 printf("\n");
1576
1577 if (update_package) {
1578 // For backwards compatibility on the cache partition only, if
1579 // we're given an old 'root' path "CACHE:foo", change it to
1580 // "/cache/foo".
1581 if (strncmp(update_package, "CACHE:", 6) == 0) {
1582 int len = strlen(update_package) + 10;
Doug Zongker28ce47c2011-10-28 10:33:05 -07001583 char* modified_path = (char*)malloc(len);
Jeremy Compostella1b7d9b72015-07-29 17:17:03 +02001584 if (modified_path) {
1585 strlcpy(modified_path, "/cache/", len);
1586 strlcat(modified_path, update_package+6, len);
1587 printf("(replacing path \"%s\" with \"%s\")\n",
1588 update_package, modified_path);
1589 update_package = modified_path;
1590 }
1591 else
1592 printf("modified_path allocation failed\n");
Doug Zongker9b125b02010-09-22 12:01:37 -07001593 }
1594 }
1595 printf("\n");
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001596
1597 property_list(print_property, NULL);
Doug Zongker56c51052010-07-01 09:18:44 -07001598 printf("\n");
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001599
Elliott Hughesbb78d622015-04-09 20:51:08 -07001600 ui->Print("Supported API: %d\n", RECOVERY_API_VERSION);
1601
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001602 int status = INSTALL_SUCCESS;
1603
Doug Zongker540d57f2011-01-18 13:36:58 -08001604 if (update_package != NULL) {
Tao Bao56870012016-04-29 15:37:05 -07001605 // It's not entirely true that we will modify the flash. But we want
1606 // to log the update attempt since update_package is non-NULL.
1607 modified_flash = true;
1608
Yabin Cui99281df2016-02-17 12:21:52 -08001609 if (!is_battery_ok()) {
1610 ui->Print("battery capacity is not enough for installing package, needed is %d%%\n",
1611 BATTERY_OK_PERCENTAGE);
Tianjie Xu16255832016-04-30 11:49:59 -07001612 // Log the error code to last_install when installation skips due to
1613 // low battery.
1614 FILE* install_log = fopen_path(LAST_INSTALL_FILE, "w");
1615 if (install_log != nullptr) {
1616 fprintf(install_log, "%s\n", update_package);
1617 fprintf(install_log, "0\n");
1618 fprintf(install_log, "error: %d\n", kLowBattery);
1619 fclose(install_log);
1620 } else {
1621 LOGE("failed to open last_install: %s\n", strerror(errno));
1622 }
Yabin Cui99281df2016-02-17 12:21:52 -08001623 status = INSTALL_SKIPPED;
1624 } else {
1625 status = install_package(update_package, &should_wipe_cache,
Tianjie Xu16255832016-04-30 11:49:59 -07001626 TEMPORARY_INSTALL_FILE, true, retry_count);
Yabin Cui99281df2016-02-17 12:21:52 -08001627 if (status == INSTALL_SUCCESS && should_wipe_cache) {
1628 wipe_cache(false, device);
1629 }
1630 if (status != INSTALL_SUCCESS) {
1631 ui->Print("Installation aborted.\n");
Tianjie Xu3c62b672016-02-05 18:25:58 -08001632 // When I/O error happens, reboot and retry installation EIO_RETRY_COUNT
1633 // times before we abandon this OTA update.
1634 if (status == INSTALL_RETRY && retry_count < EIO_RETRY_COUNT) {
1635 copy_logs();
1636 set_retry_bootloader_message(retry_count, argc, argv);
1637 // Print retry count on screen.
1638 ui->Print("Retry attempt %d\n", retry_count);
Doug Zongker7c3ae452013-05-14 11:03:02 -07001639
Tianjie Xu3c62b672016-02-05 18:25:58 -08001640 // Reboot and retry the update
1641 int ret = property_set(ANDROID_RB_PROPERTY, "reboot,recovery");
1642 if (ret < 0) {
1643 ui->Print("Reboot failed\n");
1644 } else {
1645 while (true) {
1646 pause();
1647 }
1648 }
1649 }
Yabin Cui99281df2016-02-17 12:21:52 -08001650 // If this is an eng or userdebug build, then automatically
1651 // turn the text display on if the script fails so the error
1652 // message is visible.
1653 if (is_ro_debuggable()) {
1654 ui->ShowText(true);
1655 }
Doug Zongker7c3ae452013-05-14 11:03:02 -07001656 }
1657 }
Tao Baoe39a9bc2015-03-31 12:19:05 -07001658 } else if (should_wipe_data) {
1659 if (!wipe_data(false, device)) {
1660 status = INSTALL_ERROR;
1661 }
Tao Baoc679f932015-03-30 09:43:49 -07001662 } else if (should_wipe_cache) {
Tao Baoe39a9bc2015-03-31 12:19:05 -07001663 if (!wipe_cache(false, device)) {
1664 status = INSTALL_ERROR;
1665 }
Tao Bao108ab212016-06-10 10:13:32 -07001666 } else if (should_wipe_ab) {
Yabin Cui6faf0262016-06-09 14:09:39 -07001667 if (!wipe_ab_device(wipe_package_size)) {
Tao Bao862a4c12016-06-02 11:16:50 -07001668 status = INSTALL_ERROR;
1669 }
Tao Baoc679f932015-03-30 09:43:49 -07001670 } else if (sideload) {
1671 // 'adb reboot sideload' acts the same as user presses key combinations
1672 // to enter the sideload mode. When 'sideload-auto-reboot' is used, text
1673 // display will NOT be turned on by default. And it will reboot after
1674 // sideload finishes even if there are errors. Unless one turns on the
1675 // text display during the installation. This is to enable automated
1676 // testing.
1677 if (!sideload_auto_reboot) {
1678 ui->ShowText(true);
1679 }
1680 status = apply_from_adb(ui, &should_wipe_cache, TEMPORARY_INSTALL_FILE);
1681 if (status == INSTALL_SUCCESS && should_wipe_cache) {
Tao Baoe39a9bc2015-03-31 12:19:05 -07001682 if (!wipe_cache(false, device)) {
1683 status = INSTALL_ERROR;
1684 }
Tao Baoc679f932015-03-30 09:43:49 -07001685 }
1686 ui->Print("\nInstall from ADB complete (status: %d).\n", status);
1687 if (sideload_auto_reboot) {
1688 ui->Print("Rebooting automatically.\n");
1689 }
Doug Zongkere5d5ac72012-04-12 11:01:22 -07001690 } else if (!just_exit) {
Doug Zongker02ec6b82012-08-22 17:26:40 -07001691 status = INSTALL_NONE; // No command specified
1692 ui->SetBackground(RecoveryUI::NO_COMMAND);
Tao Bao785d22c2015-05-04 09:34:29 -07001693
1694 // http://b/17489952
1695 // If this is an eng or userdebug build, automatically turn on the
1696 // text display if no command is specified.
1697 if (is_ro_debuggable()) {
1698 ui->ShowText(true);
1699 }
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001700 }
1701
Tao Baoc679f932015-03-30 09:43:49 -07001702 if (!sideload_auto_reboot && (status == INSTALL_ERROR || status == INSTALL_CORRUPT)) {
Doug Zongkerf24fd7e2013-07-02 11:43:25 -07001703 copy_logs();
Doug Zongker02ec6b82012-08-22 17:26:40 -07001704 ui->SetBackground(RecoveryUI::ERROR);
1705 }
Tao Baoc679f932015-03-30 09:43:49 -07001706
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001707 Device::BuiltinAction after = shutdown_after ? Device::SHUTDOWN : Device::REBOOT;
Yabin Cui99281df2016-02-17 12:21:52 -08001708 if ((status != INSTALL_SUCCESS && status != INSTALL_SKIPPED && !sideload_auto_reboot) ||
1709 ui->IsTextVisible()) {
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001710 Device::BuiltinAction temp = prompt_and_wait(device, status);
Tao Baoc679f932015-03-30 09:43:49 -07001711 if (temp != Device::NO_ACTION) {
1712 after = temp;
1713 }
Doug Zongker8674a722010-09-15 11:08:23 -07001714 }
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001715
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001716 // Save logs and clean up before rebooting or shutting down.
Tianjie Xuc14d95d2016-03-24 11:50:34 -07001717 finish_recovery();
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001718
1719 switch (after) {
1720 case Device::SHUTDOWN:
1721 ui->Print("Shutting down...\n");
1722 property_set(ANDROID_RB_PROPERTY, "shutdown,");
1723 break;
1724
1725 case Device::REBOOT_BOOTLOADER:
1726 ui->Print("Rebooting to bootloader...\n");
1727 property_set(ANDROID_RB_PROPERTY, "reboot,bootloader");
1728 break;
1729
1730 default:
1731 ui->Print("Rebooting...\n");
1732 property_set(ANDROID_RB_PROPERTY, "reboot,");
1733 break;
Doug Zongkerb1d12632014-03-18 10:32:12 -07001734 }
Tao Bao75238632015-05-27 14:46:17 -07001735 while (true) {
1736 pause();
1737 }
1738 // Should be unreachable.
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001739 return EXIT_SUCCESS;
1740}