blob: 98148af0a68a5294cd30f6297cd80b877dcb0478 [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>
Tao Bao75238632015-05-27 14:46:17 -070047#include <cutils/android_reboot.h>
48#include <cutils/properties.h>
Mark Salyzyn13aca592016-03-09 14:58:16 -080049#include <log/logger.h> /* Android Log packet format */
50#include <private/android_logger.h> /* private pmsg functions */
Tao Baobef39712015-05-04 18:50:27 -070051
Yabin Cui99281df2016-02-17 12:21:52 -080052#include <healthd/BatteryMonitor.h>
53
Tao Bao75238632015-05-27 14:46:17 -070054#include "adb_install.h"
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080055#include "bootloader.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
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";
94static const char *INTENT_FILE = "/cache/recovery/intent";
95static const char *LOG_FILE = "/cache/recovery/log";
Doug Zongkerd0181b82011-10-19 10:51:12 -070096static const char *LAST_INSTALL_FILE = "/cache/recovery/last_install";
Doug Zongker8b240cc2012-08-29 15:19:29 -070097static const char *LOCALE_FILE = "/cache/recovery/last_locale";
Paul Lawrence661f8a62016-02-25 12:42:19 -080098static const char *CONVERT_FBE_DIR = "/tmp/convert_fbe";
99static const char *CONVERT_FBE_FILE = "/tmp/convert_fbe/convert_fbe";
Michael Ward9d2629c2011-06-23 22:14:24 -0700100static const char *CACHE_ROOT = "/cache";
Paul Lawrenced0db3372015-11-05 13:38:40 -0800101static const char *DATA_ROOT = "/data";
Doug Zongkerd4208f92010-09-20 12:16:13 -0700102static const char *SDCARD_ROOT = "/sdcard";
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800103static const char *TEMPORARY_LOG_FILE = "/tmp/recovery.log";
Doug Zongkerd0181b82011-10-19 10:51:12 -0700104static const char *TEMPORARY_INSTALL_FILE = "/tmp/last_install";
Tao Baof0124322015-04-11 02:04:11 +0000105static const char *LAST_KMSG_FILE = "/cache/recovery/last_kmsg";
Tao Baobef39712015-05-04 18:50:27 -0700106static const char *LAST_LOG_FILE = "/cache/recovery/last_log";
107static const int KEEP_LOG_COUNT = 10;
Tianjie Xuc37c5c32016-06-23 16:52:17 -0700108// We will try to apply the update package 5 times at most in case of an I/O error.
109static const int EIO_RETRY_COUNT = 4;
Yabin Cui99281df2016-02-17 12:21:52 -0800110static const int BATTERY_READ_TIMEOUT_IN_SEC = 10;
111// GmsCore enters recovery mode to install package when having enough battery
112// percentage. Normally, the threshold is 40% without charger and 20% with charger.
113// So we should check battery with a slightly lower limitation.
114static const int BATTERY_OK_PERCENTAGE = 20;
115static const int BATTERY_WITH_CHARGER_OK_PERCENTAGE = 15;
Tao Bao108ab212016-06-10 10:13:32 -0700116constexpr const char* RECOVERY_WIPE = "/etc/recovery.wipe";
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700117
Doug Zongker211aebc2011-10-28 15:13:10 -0700118RecoveryUI* ui = NULL;
Elliott Hughes498cda62016-04-14 16:49:04 -0700119static const char* locale = "en_US";
Doug Zongkerc87bab12013-11-25 13:53:25 -0800120char* stage = NULL;
Jeff Sharkeya6e13ae2014-09-24 11:46:17 -0700121char* reason = NULL;
Tao Bao682c34b2015-04-07 17:16:35 -0700122bool modified_flash = false;
Tao Baoae6408d2016-02-25 12:29:40 -0800123static bool has_cache = false;
Doug Zongker211aebc2011-10-28 15:13:10 -0700124
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800125/*
126 * The recovery tool communicates with the main system through /cache files.
127 * /cache/recovery/command - INPUT - command line for tool, one arg per line
128 * /cache/recovery/log - OUTPUT - combined log file from recovery run(s)
129 * /cache/recovery/intent - OUTPUT - intent that was passed in
130 *
131 * The arguments which may be supplied in the recovery.command file:
132 * --send_intent=anystring - write the text out to recovery.intent
Doug Zongkerd4208f92010-09-20 12:16:13 -0700133 * --update_package=path - verify install an OTA package file
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800134 * --wipe_data - erase user data (and cache), then reboot
135 * --wipe_cache - wipe cache (but not user data), then reboot
Oscar Montemayor05231562009-11-30 08:40:57 -0800136 * --set_encrypted_filesystem=on|off - enables / diasables encrypted fs
Doug Zongkere5d5ac72012-04-12 11:01:22 -0700137 * --just_exit - do nothing; exit and reboot
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800138 *
139 * After completing, we remove /cache/recovery/command and reboot.
140 * Arguments may also be supplied in the bootloader control block (BCB).
141 * These important scenarios must be safely restartable at any point:
142 *
143 * FACTORY RESET
144 * 1. user selects "factory reset"
145 * 2. main system writes "--wipe_data" to /cache/recovery/command
146 * 3. main system reboots into recovery
147 * 4. get_args() writes BCB with "boot-recovery" and "--wipe_data"
148 * -- after this, rebooting will restart the erase --
Doug Zongkerd4208f92010-09-20 12:16:13 -0700149 * 5. erase_volume() reformats /data
150 * 6. erase_volume() reformats /cache
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800151 * 7. finish_recovery() erases BCB
152 * -- after this, rebooting will restart the main system --
153 * 8. main() calls reboot() to boot main system
154 *
155 * OTA INSTALL
156 * 1. main system downloads OTA package to /cache/some-filename.zip
Doug Zongker9b125b02010-09-22 12:01:37 -0700157 * 2. main system writes "--update_package=/cache/some-filename.zip"
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800158 * 3. main system reboots into recovery
159 * 4. get_args() writes BCB with "boot-recovery" and "--update_package=..."
160 * -- after this, rebooting will attempt to reinstall the update --
161 * 5. install_package() attempts to install the update
162 * NOTE: the package install must itself be restartable from any point
163 * 6. finish_recovery() erases BCB
164 * -- after this, rebooting will (try to) restart the main system --
165 * 7. ** if install failed **
166 * 7a. prompt_and_wait() shows an error icon and waits for the user
167 * 7b; the user reboots (pulling the battery, etc) into the main system
168 * 8. main() calls maybe_install_firmware_update()
169 * ** if the update contained radio/hboot firmware **:
170 * 8a. m_i_f_u() writes BCB with "boot-recovery" and "--wipe_cache"
171 * -- after this, rebooting will reformat cache & restart main system --
172 * 8b. m_i_f_u() writes firmware image into raw cache partition
173 * 8c. m_i_f_u() writes BCB with "update-radio/hboot" and "--wipe_cache"
174 * -- after this, rebooting will attempt to reinstall firmware --
175 * 8d. bootloader tries to flash firmware
176 * 8e. bootloader writes BCB with "boot-recovery" (keeping "--wipe_cache")
177 * -- after this, rebooting will reformat cache & restart main system --
Doug Zongkerd4208f92010-09-20 12:16:13 -0700178 * 8f. erase_volume() reformats /cache
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800179 * 8g. finish_recovery() erases BCB
180 * -- after this, rebooting will (try to) restart the main system --
181 * 9. main() calls reboot() to boot main system
182 */
183
184static const int MAX_ARG_LENGTH = 4096;
185static const int MAX_ARGS = 100;
186
Doug Zongkerd4208f92010-09-20 12:16:13 -0700187// open a given path, mounting partitions as necessary
Tao Bao04ca4262015-09-10 15:32:24 -0700188FILE* fopen_path(const char *path, const char *mode) {
Doug Zongkerd4208f92010-09-20 12:16:13 -0700189 if (ensure_path_mounted(path) != 0) {
190 LOGE("Can't mount %s\n", path);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800191 return NULL;
192 }
193
194 // When writing, try to create the containing directory, if necessary.
195 // Use generous permissions, the system (init.rc) will reset them.
Stephen Smalley779701d2012-02-09 14:13:23 -0500196 if (strchr("wa", mode[0])) dirCreateHierarchy(path, 0777, NULL, 1, sehandle);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800197
198 FILE *fp = fopen(path, mode);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800199 return fp;
200}
201
Tao Bao04ca4262015-09-10 15:32:24 -0700202// close a file, log an error if the error indicator is set
203static void check_and_fclose(FILE *fp, const char *name) {
204 fflush(fp);
205 if (ferror(fp)) LOGE("Error in %s\n(%s)\n", name, strerror(errno));
206 fclose(fp);
207}
208
Elliott Hughesf14af802015-02-10 14:46:14 -0800209bool is_ro_debuggable() {
210 char value[PROPERTY_VALUE_MAX+1];
211 return (property_get("ro.debuggable", value, NULL) == 1 && value[0] == '1');
212}
213
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700214static void redirect_stdio(const char* filename) {
Tao Bao04ca4262015-09-10 15:32:24 -0700215 int pipefd[2];
216 if (pipe(pipefd) == -1) {
217 LOGE("pipe failed: %s\n", strerror(errno));
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700218
Tao Bao04ca4262015-09-10 15:32:24 -0700219 // Fall back to traditional logging mode without timestamps.
220 // If these fail, there's not really anywhere to complain...
221 freopen(filename, "a", stdout); setbuf(stdout, NULL);
222 freopen(filename, "a", stderr); setbuf(stderr, NULL);
223
224 return;
225 }
226
227 pid_t pid = fork();
228 if (pid == -1) {
229 LOGE("fork failed: %s\n", strerror(errno));
230
231 // Fall back to traditional logging mode without timestamps.
232 // If these fail, there's not really anywhere to complain...
233 freopen(filename, "a", stdout); setbuf(stdout, NULL);
234 freopen(filename, "a", stderr); setbuf(stderr, NULL);
235
236 return;
237 }
238
239 if (pid == 0) {
240 /// Close the unused write end.
241 close(pipefd[1]);
242
243 auto start = std::chrono::steady_clock::now();
244
245 // Child logger to actually write to the log file.
246 FILE* log_fp = fopen(filename, "a");
247 if (log_fp == nullptr) {
248 LOGE("fopen \"%s\" failed: %s\n", filename, strerror(errno));
249 close(pipefd[0]);
250 _exit(1);
251 }
252
253 FILE* pipe_fp = fdopen(pipefd[0], "r");
254 if (pipe_fp == nullptr) {
255 LOGE("fdopen failed: %s\n", strerror(errno));
256 check_and_fclose(log_fp, filename);
257 close(pipefd[0]);
258 _exit(1);
259 }
260
261 char* line = nullptr;
262 size_t len = 0;
263 while (getline(&line, &len, pipe_fp) != -1) {
264 auto now = std::chrono::steady_clock::now();
265 double duration = std::chrono::duration_cast<std::chrono::duration<double>>(
266 now - start).count();
267 if (line[0] == '\n') {
268 fprintf(log_fp, "[%12.6lf]\n", duration);
269 } else {
270 fprintf(log_fp, "[%12.6lf] %s", duration, line);
271 }
272 fflush(log_fp);
273 }
274
275 LOGE("getline failed: %s\n", strerror(errno));
276
277 free(line);
278 check_and_fclose(log_fp, filename);
279 close(pipefd[0]);
280 _exit(1);
281 } else {
282 // Redirect stdout/stderr to the logger process.
283 // Close the unused read end.
284 close(pipefd[0]);
285
286 setbuf(stdout, nullptr);
287 setbuf(stderr, nullptr);
288
289 if (dup2(pipefd[1], STDOUT_FILENO) == -1) {
290 LOGE("dup2 stdout failed: %s\n", strerror(errno));
291 }
292 if (dup2(pipefd[1], STDERR_FILENO) == -1) {
293 LOGE("dup2 stderr failed: %s\n", strerror(errno));
294 }
295
296 close(pipefd[1]);
297 }
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800298}
299
300// command line args come from, in decreasing precedence:
301// - the actual command line
302// - the bootloader control block (one per line, after "recovery")
303// - the contents of COMMAND_FILE (one per line)
304static void
305get_args(int *argc, char ***argv) {
306 struct bootloader_message boot;
307 memset(&boot, 0, sizeof(boot));
308 get_bootloader_message(&boot); // this may fail, leaving a zeroed structure
Doug Zongkerc87bab12013-11-25 13:53:25 -0800309 stage = strndup(boot.stage, sizeof(boot.stage));
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800310
311 if (boot.command[0] != 0 && boot.command[0] != 255) {
Mark Salyzynf3bb31c2014-03-14 09:39:48 -0700312 LOGI("Boot command: %.*s\n", (int)sizeof(boot.command), boot.command);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800313 }
314
315 if (boot.status[0] != 0 && boot.status[0] != 255) {
Mark Salyzynf3bb31c2014-03-14 09:39:48 -0700316 LOGI("Boot status: %.*s\n", (int)sizeof(boot.status), boot.status);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800317 }
318
319 // --- if arguments weren't supplied, look in the bootloader control block
320 if (*argc <= 1) {
321 boot.recovery[sizeof(boot.recovery) - 1] = '\0'; // Ensure termination
322 const char *arg = strtok(boot.recovery, "\n");
323 if (arg != NULL && !strcmp(arg, "recovery")) {
324 *argv = (char **) malloc(sizeof(char *) * MAX_ARGS);
325 (*argv)[0] = strdup(arg);
326 for (*argc = 1; *argc < MAX_ARGS; ++*argc) {
327 if ((arg = strtok(NULL, "\n")) == NULL) break;
328 (*argv)[*argc] = strdup(arg);
329 }
330 LOGI("Got arguments from boot message\n");
331 } else if (boot.recovery[0] != 0 && boot.recovery[0] != 255) {
332 LOGE("Bad boot message\n\"%.20s\"\n", boot.recovery);
333 }
334 }
335
Tao Baoae6408d2016-02-25 12:29:40 -0800336 // --- if that doesn't work, try the command file (if we have /cache).
337 if (*argc <= 1 && has_cache) {
Doug Zongkerd4208f92010-09-20 12:16:13 -0700338 FILE *fp = fopen_path(COMMAND_FILE, "r");
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800339 if (fp != NULL) {
Jin Feng93ffa752013-06-04 17:46:24 +0800340 char *token;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800341 char *argv0 = (*argv)[0];
342 *argv = (char **) malloc(sizeof(char *) * MAX_ARGS);
343 (*argv)[0] = argv0; // use the same program name
344
345 char buf[MAX_ARG_LENGTH];
346 for (*argc = 1; *argc < MAX_ARGS; ++*argc) {
347 if (!fgets(buf, sizeof(buf), fp)) break;
Jin Feng93ffa752013-06-04 17:46:24 +0800348 token = strtok(buf, "\r\n");
349 if (token != NULL) {
350 (*argv)[*argc] = strdup(token); // Strip newline.
351 } else {
352 --*argc;
353 }
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800354 }
355
356 check_and_fclose(fp, COMMAND_FILE);
357 LOGI("Got arguments from %s\n", COMMAND_FILE);
358 }
359 }
360
361 // --> write the arguments we have back into the bootloader control block
362 // always boot into recovery after this (until finish_recovery() is called)
363 strlcpy(boot.command, "boot-recovery", sizeof(boot.command));
364 strlcpy(boot.recovery, "recovery\n", sizeof(boot.recovery));
365 int i;
366 for (i = 1; i < *argc; ++i) {
367 strlcat(boot.recovery, (*argv)[i], sizeof(boot.recovery));
368 strlcat(boot.recovery, "\n", sizeof(boot.recovery));
369 }
370 set_bootloader_message(&boot);
371}
372
Doug Zongker34c98df2009-08-18 12:05:45 -0700373static void
Oscar Montemayor05231562009-11-30 08:40:57 -0800374set_sdcard_update_bootloader_message() {
Doug Zongker34c98df2009-08-18 12:05:45 -0700375 struct bootloader_message boot;
376 memset(&boot, 0, sizeof(boot));
377 strlcpy(boot.command, "boot-recovery", sizeof(boot.command));
378 strlcpy(boot.recovery, "recovery\n", sizeof(boot.recovery));
379 set_bootloader_message(&boot);
380}
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800381
Tao Baobef39712015-05-04 18:50:27 -0700382// Read from kernel log into buffer and write out to file.
383static void save_kernel_log(const char* destination) {
384 int klog_buf_len = klogctl(KLOG_SIZE_BUFFER, 0, 0);
Patrick Tjincd055ee2014-12-09 11:26:40 -0800385 if (klog_buf_len <= 0) {
Tao Baobef39712015-05-04 18:50:27 -0700386 LOGE("Error getting klog size: %s\n", strerror(errno));
Patrick Tjincd055ee2014-12-09 11:26:40 -0800387 return;
388 }
389
Tao Baobef39712015-05-04 18:50:27 -0700390 std::string buffer(klog_buf_len, 0);
391 int n = klogctl(KLOG_READ_ALL, &buffer[0], klog_buf_len);
392 if (n == -1) {
393 LOGE("Error in reading klog: %s\n", strerror(errno));
Patrick Tjincd055ee2014-12-09 11:26:40 -0800394 return;
395 }
Tao Baobef39712015-05-04 18:50:27 -0700396 buffer.resize(n);
397 android::base::WriteStringToFile(buffer, destination);
Patrick Tjincd055ee2014-12-09 11:26:40 -0800398}
399
Mark Salyzyn13aca592016-03-09 14:58:16 -0800400// write content to the current pmsg session.
401static ssize_t __pmsg_write(const char *filename, const char *buf, size_t len) {
402 return __android_log_pmsg_file_write(LOG_ID_SYSTEM, ANDROID_LOG_INFO,
403 filename, buf, len);
404}
405
406static void copy_log_file_to_pmsg(const char* source, const char* destination) {
407 std::string content;
408 android::base::ReadFileToString(source, &content);
409 __pmsg_write(destination, content.c_str(), content.length());
410}
411
Tao Baof0124322015-04-11 02:04:11 +0000412// How much of the temp log we have copied to the copy in cache.
413static long tmplog_offset = 0;
414
Tao Baobef39712015-05-04 18:50:27 -0700415static void copy_log_file(const char* source, const char* destination, bool append) {
416 FILE* dest_fp = fopen_path(destination, append ? "a" : "w");
417 if (dest_fp == nullptr) {
Doug Zongker2c3539e2010-09-29 13:21:30 -0700418 LOGE("Can't open %s\n", destination);
419 } else {
Tao Baobef39712015-05-04 18:50:27 -0700420 FILE* source_fp = fopen(source, "r");
421 if (source_fp != nullptr) {
Tao Baof0124322015-04-11 02:04:11 +0000422 if (append) {
Tao Baobef39712015-05-04 18:50:27 -0700423 fseek(source_fp, tmplog_offset, SEEK_SET); // Since last write
Doug Zongker2c3539e2010-09-29 13:21:30 -0700424 }
425 char buf[4096];
Tao Baobef39712015-05-04 18:50:27 -0700426 size_t bytes;
427 while ((bytes = fread(buf, 1, sizeof(buf), source_fp)) != 0) {
428 fwrite(buf, 1, bytes, dest_fp);
Doug Zongker2c3539e2010-09-29 13:21:30 -0700429 }
Tao Baobef39712015-05-04 18:50:27 -0700430 if (append) {
431 tmplog_offset = ftell(source_fp);
432 }
433 check_and_fclose(source_fp, source);
Doug Zongker2c3539e2010-09-29 13:21:30 -0700434 }
Tao Baobef39712015-05-04 18:50:27 -0700435 check_and_fclose(dest_fp, destination);
Doug Zongker2c3539e2010-09-29 13:21:30 -0700436 }
437}
438
Tao Baobef39712015-05-04 18:50:27 -0700439// Rename last_log -> last_log.1 -> last_log.2 -> ... -> last_log.$max.
440// Similarly rename last_kmsg -> last_kmsg.1 -> ... -> last_kmsg.$max.
441// Overwrite any existing last_log.$max and last_kmsg.$max.
442static void rotate_logs(int max) {
Tao Bao682c34b2015-04-07 17:16:35 -0700443 // Logs should only be rotated once.
444 static bool rotated = false;
445 if (rotated) {
446 return;
447 }
448 rotated = true;
449 ensure_path_mounted(LAST_LOG_FILE);
Tao Baobef39712015-05-04 18:50:27 -0700450 ensure_path_mounted(LAST_KMSG_FILE);
Tao Bao682c34b2015-04-07 17:16:35 -0700451
Tao Bao682c34b2015-04-07 17:16:35 -0700452 for (int i = max-1; i >= 0; --i) {
Tao Bao80e46e02015-06-03 10:49:29 -0700453 std::string old_log = android::base::StringPrintf("%s", LAST_LOG_FILE);
454 if (i > 0) {
455 old_log += "." + std::to_string(i);
456 }
Tao Baobef39712015-05-04 18:50:27 -0700457 std::string new_log = android::base::StringPrintf("%s.%d", LAST_LOG_FILE, i+1);
458 // Ignore errors if old_log doesn't exist.
459 rename(old_log.c_str(), new_log.c_str());
460
Tao Bao80e46e02015-06-03 10:49:29 -0700461 std::string old_kmsg = android::base::StringPrintf("%s", LAST_KMSG_FILE);
462 if (i > 0) {
463 old_kmsg += "." + std::to_string(i);
464 }
Tao Baobef39712015-05-04 18:50:27 -0700465 std::string new_kmsg = android::base::StringPrintf("%s.%d", LAST_KMSG_FILE, i+1);
466 rename(old_kmsg.c_str(), new_kmsg.c_str());
Doug Zongkerda1ebae2013-05-16 11:23:48 -0700467 }
468}
Doug Zongker2c3539e2010-09-29 13:21:30 -0700469
Tao Bao682c34b2015-04-07 17:16:35 -0700470static void copy_logs() {
471 // We only rotate and record the log of the current session if there are
472 // actual attempts to modify the flash, such as wipes, installs from BCB
473 // or menu selections. This is to avoid unnecessary rotation (and
474 // possible deletion) of log files, if it does not do anything loggable.
475 if (!modified_flash) {
476 return;
477 }
478
Mark Salyzyn13aca592016-03-09 14:58:16 -0800479 // Always write to pmsg, this allows the OTA logs to be caught in logcat -L
480 copy_log_file_to_pmsg(TEMPORARY_LOG_FILE, LAST_LOG_FILE);
481 copy_log_file_to_pmsg(TEMPORARY_INSTALL_FILE, LAST_INSTALL_FILE);
482
483 // We can do nothing for now if there's no /cache partition.
484 if (!has_cache) {
485 return;
486 }
487
Tao Baobef39712015-05-04 18:50:27 -0700488 rotate_logs(KEEP_LOG_COUNT);
Tao Bao682c34b2015-04-07 17:16:35 -0700489
Doug Zongkerf24fd7e2013-07-02 11:43:25 -0700490 // Copy logs to cache so the system can find out what happened.
Tao Baof0124322015-04-11 02:04:11 +0000491 copy_log_file(TEMPORARY_LOG_FILE, LOG_FILE, true);
492 copy_log_file(TEMPORARY_LOG_FILE, LAST_LOG_FILE, false);
493 copy_log_file(TEMPORARY_INSTALL_FILE, LAST_INSTALL_FILE, false);
494 save_kernel_log(LAST_KMSG_FILE);
Doug Zongkerf24fd7e2013-07-02 11:43:25 -0700495 chmod(LOG_FILE, 0600);
496 chown(LOG_FILE, 1000, 1000); // system user
Tao Baof0124322015-04-11 02:04:11 +0000497 chmod(LAST_KMSG_FILE, 0600);
498 chown(LAST_KMSG_FILE, 1000, 1000); // system user
Doug Zongkerf24fd7e2013-07-02 11:43:25 -0700499 chmod(LAST_LOG_FILE, 0640);
500 chmod(LAST_INSTALL_FILE, 0644);
501 sync();
502}
503
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800504// clear the recovery command and prepare to boot a (hopefully working) system,
505// copy our log file to cache as well (for the system to read), and
506// record any intent we were asked to communicate back to the system.
507// this function is idempotent: call it as many times as you like.
508static void
Oscar Montemayor05231562009-11-30 08:40:57 -0800509finish_recovery(const char *send_intent) {
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800510 // By this point, we're ready to return to the main system...
Tao Baoae6408d2016-02-25 12:29:40 -0800511 if (send_intent != NULL && has_cache) {
Doug Zongkerd4208f92010-09-20 12:16:13 -0700512 FILE *fp = fopen_path(INTENT_FILE, "w");
Jay Freeman (saurik)619ec2f2008-11-17 01:56:05 +0000513 if (fp == NULL) {
514 LOGE("Can't open %s\n", INTENT_FILE);
515 } else {
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800516 fputs(send_intent, fp);
517 check_and_fclose(fp, INTENT_FILE);
518 }
519 }
520
Doug Zongker4f33e552012-08-23 13:16:12 -0700521 // Save the locale to cache, so if recovery is next started up
522 // without a --locale argument (eg, directly from the bootloader)
523 // it will use the last-known locale.
Mark Salyzyn13aca592016-03-09 14:58:16 -0800524 if (locale != NULL) {
525 size_t len = strlen(locale);
526 __pmsg_write(LOCALE_FILE, locale, len);
527 if (has_cache) {
528 LOGI("Saving locale \"%s\"\n", locale);
529 FILE* fp = fopen_path(LOCALE_FILE, "w");
530 fwrite(locale, 1, len, fp);
531 fflush(fp);
532 fsync(fileno(fp));
533 check_and_fclose(fp, LOCALE_FILE);
534 }
Doug Zongker4f33e552012-08-23 13:16:12 -0700535 }
536
Doug Zongkerf24fd7e2013-07-02 11:43:25 -0700537 copy_logs();
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800538
Doug Zongkere5d5ac72012-04-12 11:01:22 -0700539 // Reset to normal system boot so recovery won't cycle indefinitely.
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800540 struct bootloader_message boot;
541 memset(&boot, 0, sizeof(boot));
542 set_bootloader_message(&boot);
543
544 // Remove the command file, so recovery won't repeat indefinitely.
Tao Baoae6408d2016-02-25 12:29:40 -0800545 if (has_cache) {
546 if (ensure_path_mounted(COMMAND_FILE) != 0 || (unlink(COMMAND_FILE) && errno != ENOENT)) {
547 LOGW("Can't unlink %s\n", COMMAND_FILE);
548 }
549 ensure_path_unmounted(CACHE_ROOT);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800550 }
551
552 sync(); // For good measure.
553}
554
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700555typedef struct _saved_log_file {
556 char* name;
557 struct stat st;
558 unsigned char* data;
559 struct _saved_log_file* next;
560} saved_log_file;
561
Elliott Hughes945548e2015-06-05 17:59:56 -0700562static bool erase_volume(const char* volume) {
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700563 bool is_cache = (strcmp(volume, CACHE_ROOT) == 0);
Paul Lawrenced0db3372015-11-05 13:38:40 -0800564 bool is_data = (strcmp(volume, DATA_ROOT) == 0);
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700565
Doug Zongker02ec6b82012-08-22 17:26:40 -0700566 ui->SetBackground(RecoveryUI::ERASING);
Doug Zongker211aebc2011-10-28 15:13:10 -0700567 ui->SetProgressType(RecoveryUI::INDETERMINATE);
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700568
569 saved_log_file* head = NULL;
570
571 if (is_cache) {
Tao Baobef39712015-05-04 18:50:27 -0700572 // If we're reformatting /cache, we load any past logs
573 // (i.e. "/cache/recovery/last_*") and the current log
574 // ("/cache/recovery/log") into memory, so we can restore them after
575 // the reformat.
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700576
577 ensure_path_mounted(volume);
578
579 DIR* d;
580 struct dirent* de;
581 d = opendir(CACHE_LOG_DIR);
582 if (d) {
583 char path[PATH_MAX];
584 strcpy(path, CACHE_LOG_DIR);
585 strcat(path, "/");
586 int path_len = strlen(path);
587 while ((de = readdir(d)) != NULL) {
Tao Baobef39712015-05-04 18:50:27 -0700588 if (strncmp(de->d_name, "last_", 5) == 0 || strcmp(de->d_name, "log") == 0) {
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700589 saved_log_file* p = (saved_log_file*) malloc(sizeof(saved_log_file));
590 strcpy(path+path_len, de->d_name);
591 p->name = strdup(path);
592 if (stat(path, &(p->st)) == 0) {
593 // truncate files to 512kb
594 if (p->st.st_size > (1 << 19)) {
595 p->st.st_size = 1 << 19;
596 }
597 p->data = (unsigned char*) malloc(p->st.st_size);
598 FILE* f = fopen(path, "rb");
599 fread(p->data, 1, p->st.st_size, f);
600 fclose(f);
601 p->next = head;
602 head = p;
603 } else {
604 free(p);
605 }
606 }
607 }
608 closedir(d);
609 } else {
610 if (errno != ENOENT) {
611 printf("opendir failed: %s\n", strerror(errno));
612 }
613 }
614 }
615
Doug Zongker211aebc2011-10-28 15:13:10 -0700616 ui->Print("Formatting %s...\n", volume);
Doug Zongker2c3539e2010-09-29 13:21:30 -0700617
Doug Zongkerd0181b82011-10-19 10:51:12 -0700618 ensure_path_unmounted(volume);
Paul Lawrenced0db3372015-11-05 13:38:40 -0800619
620 int result;
621
622 if (is_data && reason && strcmp(reason, "convert_fbe") == 0) {
623 // Create convert_fbe breadcrumb file to signal to init
624 // to convert to file based encryption, not full disk encryption
Paul Lawrence661f8a62016-02-25 12:42:19 -0800625 if (mkdir(CONVERT_FBE_DIR, 0700) != 0) {
626 ui->Print("Failed to make convert_fbe dir %s\n", strerror(errno));
627 return true;
628 }
Paul Lawrenced0db3372015-11-05 13:38:40 -0800629 FILE* f = fopen(CONVERT_FBE_FILE, "wb");
630 if (!f) {
Paul Lawrence661f8a62016-02-25 12:42:19 -0800631 ui->Print("Failed to convert to file encryption %s\n", strerror(errno));
Paul Lawrenced0db3372015-11-05 13:38:40 -0800632 return true;
633 }
634 fclose(f);
635 result = format_volume(volume, CONVERT_FBE_DIR);
636 remove(CONVERT_FBE_FILE);
637 rmdir(CONVERT_FBE_DIR);
638 } else {
639 result = format_volume(volume);
640 }
Doug Zongkerd0181b82011-10-19 10:51:12 -0700641
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700642 if (is_cache) {
643 while (head) {
644 FILE* f = fopen_path(head->name, "wb");
645 if (f) {
646 fwrite(head->data, 1, head->st.st_size, f);
647 fclose(f);
648 chmod(head->name, head->st.st_mode);
649 chown(head->name, head->st.st_uid, head->st.st_gid);
650 }
651 free(head->name);
652 free(head->data);
653 saved_log_file* temp = head->next;
654 free(head);
655 head = temp;
656 }
657
Tao Baof0124322015-04-11 02:04:11 +0000658 // Any part of the log we'd copied to cache is now gone.
659 // Reset the pointer so we copy from the beginning of the temp
660 // log.
661 tmplog_offset = 0;
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700662 copy_logs();
Doug Zongker2c3539e2010-09-29 13:21:30 -0700663 }
664
Elliott Hughes945548e2015-06-05 17:59:56 -0700665 return (result == 0);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800666}
667
Doug Zongkerf93d8162009-09-22 15:16:02 -0700668static int
Doug Zongker28ce47c2011-10-28 10:33:05 -0700669get_menu_selection(const char* const * headers, const char* const * items,
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700670 int menu_only, int initial_selection, Device* device) {
Doug Zongkerf93d8162009-09-22 15:16:02 -0700671 // throw away keys pressed previously, so user doesn't
672 // accidentally trigger menu items.
Doug Zongker211aebc2011-10-28 15:13:10 -0700673 ui->FlushKeys();
Doug Zongkerf93d8162009-09-22 15:16:02 -0700674
Doug Zongker211aebc2011-10-28 15:13:10 -0700675 ui->StartMenu(headers, items, initial_selection);
Doug Zongker8674a722010-09-15 11:08:23 -0700676 int selected = initial_selection;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800677 int chosen_item = -1;
678
Doug Zongkerf93d8162009-09-22 15:16:02 -0700679 while (chosen_item < 0) {
Doug Zongker211aebc2011-10-28 15:13:10 -0700680 int key = ui->WaitKey();
681 int visible = ui->IsTextVisible();
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800682
Doug Zongker5cae4452011-01-25 13:15:30 -0800683 if (key == -1) { // ui_wait_key() timed out
Doug Zongker211aebc2011-10-28 15:13:10 -0700684 if (ui->WasTextEverVisible()) {
Doug Zongker5cae4452011-01-25 13:15:30 -0800685 continue;
686 } else {
687 LOGI("timed out waiting for key input; rebooting.\n");
Doug Zongker211aebc2011-10-28 15:13:10 -0700688 ui->EndMenu();
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700689 return 0; // XXX fixme
Doug Zongker5cae4452011-01-25 13:15:30 -0800690 }
691 }
692
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700693 int action = device->HandleMenuKey(key, visible);
Doug Zongkerddd6a282009-06-09 12:22:33 -0700694
695 if (action < 0) {
696 switch (action) {
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700697 case Device::kHighlightUp:
Elliott Hughes642aaa72015-04-10 12:47:46 -0700698 selected = ui->SelectMenu(--selected);
Doug Zongkerddd6a282009-06-09 12:22:33 -0700699 break;
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700700 case Device::kHighlightDown:
Elliott Hughes642aaa72015-04-10 12:47:46 -0700701 selected = ui->SelectMenu(++selected);
Doug Zongkerddd6a282009-06-09 12:22:33 -0700702 break;
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700703 case Device::kInvokeItem:
Doug Zongkerddd6a282009-06-09 12:22:33 -0700704 chosen_item = selected;
705 break;
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700706 case Device::kNoAction:
Doug Zongkerddd6a282009-06-09 12:22:33 -0700707 break;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800708 }
Doug Zongkerf93d8162009-09-22 15:16:02 -0700709 } else if (!menu_only) {
Doug Zongkerddd6a282009-06-09 12:22:33 -0700710 chosen_item = action;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800711 }
Doug Zongkerf93d8162009-09-22 15:16:02 -0700712 }
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800713
Doug Zongker211aebc2011-10-28 15:13:10 -0700714 ui->EndMenu();
Doug Zongkerf93d8162009-09-22 15:16:02 -0700715 return chosen_item;
716}
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800717
Doug Zongker8674a722010-09-15 11:08:23 -0700718static int compare_string(const void* a, const void* b) {
719 return strcmp(*(const char**)a, *(const char**)b);
720}
721
Doug Zongker93950222014-07-08 14:10:23 -0700722// Returns a malloc'd path, or NULL.
Elliott Hughes30694c92015-03-25 15:16:51 -0700723static char* browse_directory(const char* path, Device* device) {
Michael Ward9d2629c2011-06-23 22:14:24 -0700724 ensure_path_mounted(path);
Doug Zongkerc18eeb82010-09-21 16:49:26 -0700725
Elliott Hughes30694c92015-03-25 15:16:51 -0700726 DIR* d = opendir(path);
Doug Zongker8674a722010-09-15 11:08:23 -0700727 if (d == NULL) {
728 LOGE("error opening %s: %s\n", path, strerror(errno));
Doug Zongker93950222014-07-08 14:10:23 -0700729 return NULL;
Doug Zongker8674a722010-09-15 11:08:23 -0700730 }
731
Doug Zongker8674a722010-09-15 11:08:23 -0700732 int d_size = 0;
733 int d_alloc = 10;
Doug Zongker28ce47c2011-10-28 10:33:05 -0700734 char** dirs = (char**)malloc(d_alloc * sizeof(char*));
Doug Zongker8674a722010-09-15 11:08:23 -0700735 int z_size = 1;
736 int z_alloc = 10;
Doug Zongker28ce47c2011-10-28 10:33:05 -0700737 char** zips = (char**)malloc(z_alloc * sizeof(char*));
Doug Zongker8674a722010-09-15 11:08:23 -0700738 zips[0] = strdup("../");
739
Elliott Hughes30694c92015-03-25 15:16:51 -0700740 struct dirent* de;
Doug Zongker8674a722010-09-15 11:08:23 -0700741 while ((de = readdir(d)) != NULL) {
742 int name_len = strlen(de->d_name);
743
744 if (de->d_type == DT_DIR) {
745 // skip "." and ".." entries
746 if (name_len == 1 && de->d_name[0] == '.') continue;
747 if (name_len == 2 && de->d_name[0] == '.' &&
748 de->d_name[1] == '.') continue;
749
750 if (d_size >= d_alloc) {
751 d_alloc *= 2;
Doug Zongker28ce47c2011-10-28 10:33:05 -0700752 dirs = (char**)realloc(dirs, d_alloc * sizeof(char*));
Doug Zongker8674a722010-09-15 11:08:23 -0700753 }
Doug Zongker28ce47c2011-10-28 10:33:05 -0700754 dirs[d_size] = (char*)malloc(name_len + 2);
Doug Zongker8674a722010-09-15 11:08:23 -0700755 strcpy(dirs[d_size], de->d_name);
756 dirs[d_size][name_len] = '/';
757 dirs[d_size][name_len+1] = '\0';
758 ++d_size;
759 } else if (de->d_type == DT_REG &&
760 name_len >= 4 &&
761 strncasecmp(de->d_name + (name_len-4), ".zip", 4) == 0) {
762 if (z_size >= z_alloc) {
763 z_alloc *= 2;
Doug Zongker28ce47c2011-10-28 10:33:05 -0700764 zips = (char**)realloc(zips, z_alloc * sizeof(char*));
Doug Zongker8674a722010-09-15 11:08:23 -0700765 }
766 zips[z_size++] = strdup(de->d_name);
767 }
768 }
769 closedir(d);
770
771 qsort(dirs, d_size, sizeof(char*), compare_string);
772 qsort(zips, z_size, sizeof(char*), compare_string);
773
774 // append dirs to the zips list
775 if (d_size + z_size + 1 > z_alloc) {
776 z_alloc = d_size + z_size + 1;
Doug Zongker28ce47c2011-10-28 10:33:05 -0700777 zips = (char**)realloc(zips, z_alloc * sizeof(char*));
Doug Zongker8674a722010-09-15 11:08:23 -0700778 }
779 memcpy(zips + z_size, dirs, d_size * sizeof(char*));
780 free(dirs);
781 z_size += d_size;
782 zips[z_size] = NULL;
783
Elliott Hughes8fd86d72015-04-13 14:36:02 -0700784 const char* headers[] = { "Choose a package to install:", path, NULL };
Elliott Hughes30694c92015-03-25 15:16:51 -0700785
Doug Zongker93950222014-07-08 14:10:23 -0700786 char* result;
Doug Zongker8674a722010-09-15 11:08:23 -0700787 int chosen_item = 0;
Doug Zongker93950222014-07-08 14:10:23 -0700788 while (true) {
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700789 chosen_item = get_menu_selection(headers, zips, 1, chosen_item, device);
Doug Zongker8674a722010-09-15 11:08:23 -0700790
791 char* item = zips[chosen_item];
792 int item_len = strlen(item);
793 if (chosen_item == 0) { // item 0 is always "../"
Michael Ward9d2629c2011-06-23 22:14:24 -0700794 // go up but continue browsing (if the caller is update_directory)
Doug Zongker93950222014-07-08 14:10:23 -0700795 result = NULL;
Doug Zongker8674a722010-09-15 11:08:23 -0700796 break;
797 }
Doug Zongker93950222014-07-08 14:10:23 -0700798
799 char new_path[PATH_MAX];
800 strlcpy(new_path, path, PATH_MAX);
801 strlcat(new_path, "/", PATH_MAX);
802 strlcat(new_path, item, PATH_MAX);
803
804 if (item[item_len-1] == '/') {
805 // recurse down into a subdirectory
806 new_path[strlen(new_path)-1] = '\0'; // truncate the trailing '/'
807 result = browse_directory(new_path, device);
808 if (result) break;
809 } else {
810 // selected a zip file: return the malloc'd path to the caller.
811 result = strdup(new_path);
812 break;
813 }
814 }
Doug Zongker8674a722010-09-15 11:08:23 -0700815
Elliott Hughes30694c92015-03-25 15:16:51 -0700816 for (int i = 0; i < z_size; ++i) free(zips[i]);
Doug Zongker8674a722010-09-15 11:08:23 -0700817 free(zips);
Doug Zongker8674a722010-09-15 11:08:23 -0700818
819 return result;
820}
821
Elliott Hughes30694c92015-03-25 15:16:51 -0700822static bool yes_no(Device* device, const char* question1, const char* question2) {
Elliott Hughes8fd86d72015-04-13 14:36:02 -0700823 const char* headers[] = { question1, question2, NULL };
Elliott Hughes30694c92015-03-25 15:16:51 -0700824 const char* items[] = { " No", " Yes", NULL };
Doug Zongkerddd6a282009-06-09 12:22:33 -0700825
Elliott Hughes30694c92015-03-25 15:16:51 -0700826 int chosen_item = get_menu_selection(headers, items, 1, 0, device);
827 return (chosen_item == 1);
828}
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800829
Tao Baoe39a9bc2015-03-31 12:19:05 -0700830// Return true on success.
831static bool wipe_data(int should_confirm, Device* device) {
832 if (should_confirm && !yes_no(device, "Wipe all user data?", " THIS CAN NOT BE UNDONE!")) {
833 return false;
Doug Zongkerf93d8162009-09-22 15:16:02 -0700834 }
Doug Zongker1066d2c2009-04-01 13:57:40 -0700835
Tao Bao682c34b2015-04-07 17:16:35 -0700836 modified_flash = true;
837
Doug Zongker211aebc2011-10-28 15:13:10 -0700838 ui->Print("\n-- Wiping data...\n");
Elliott Hughes945548e2015-06-05 17:59:56 -0700839 bool success =
840 device->PreWipeData() &&
841 erase_volume("/data") &&
Tao Baoae6408d2016-02-25 12:29:40 -0800842 (has_cache ? erase_volume("/cache") : true) &&
Elliott Hughes945548e2015-06-05 17:59:56 -0700843 device->PostWipeData();
844 ui->Print("Data wipe %s.\n", success ? "complete" : "failed");
845 return success;
Doug Zongkerf93d8162009-09-22 15:16:02 -0700846}
847
Tao Baoe39a9bc2015-03-31 12:19:05 -0700848// Return true on success.
849static bool wipe_cache(bool should_confirm, Device* device) {
Tao Baoae6408d2016-02-25 12:29:40 -0800850 if (!has_cache) {
851 ui->Print("No /cache partition found.\n");
852 return false;
853 }
854
Elliott Hughes30694c92015-03-25 15:16:51 -0700855 if (should_confirm && !yes_no(device, "Wipe cache?", " THIS CAN NOT BE UNDONE!")) {
Tao Baoe39a9bc2015-03-31 12:19:05 -0700856 return false;
Elliott Hughes30694c92015-03-25 15:16:51 -0700857 }
858
Tao Bao682c34b2015-04-07 17:16:35 -0700859 modified_flash = true;
860
Elliott Hughes30694c92015-03-25 15:16:51 -0700861 ui->Print("\n-- Wiping cache...\n");
Elliott Hughes945548e2015-06-05 17:59:56 -0700862 bool success = erase_volume("/cache");
863 ui->Print("Cache wipe %s.\n", success ? "complete" : "failed");
864 return success;
Elliott Hughes30694c92015-03-25 15:16:51 -0700865}
866
Tao Baob0838182016-06-02 11:16:50 -0700867// Secure-wipe a given partition. It uses BLKSECDISCARD, if supported.
868// Otherwise, it goes with BLKDISCARD (if device supports BLKDISCARDZEROES) or
869// BLKZEROOUT.
870static bool secure_wipe_partition(const std::string& partition) {
871 unique_fd fd(TEMP_FAILURE_RETRY(open(partition.c_str(), O_WRONLY)));
872 if (fd.get() == -1) {
873 LOGE("failed to open \"%s\": %s\n", partition.c_str(), strerror(errno));
874 return false;
875 }
876
877 uint64_t range[2] = {0, 0};
878 if (ioctl(fd.get(), BLKGETSIZE64, &range[1]) == -1 || range[1] == 0) {
879 LOGE("failed to get partition size: %s\n", strerror(errno));
880 return false;
881 }
882 printf("Secure-wiping \"%s\" from %" PRIu64 " to %" PRIu64 ".\n",
883 partition.c_str(), range[0], range[1]);
884
885 printf("Trying BLKSECDISCARD...\t");
886 if (ioctl(fd.get(), BLKSECDISCARD, &range) == -1) {
887 printf("failed: %s\n", strerror(errno));
888
889 // Use BLKDISCARD if it zeroes out blocks, otherwise use BLKZEROOUT.
890 unsigned int zeroes;
891 if (ioctl(fd.get(), BLKDISCARDZEROES, &zeroes) == 0 && zeroes != 0) {
892 printf("Trying BLKDISCARD...\t");
893 if (ioctl(fd.get(), BLKDISCARD, &range) == -1) {
894 printf("failed: %s\n", strerror(errno));
895 return false;
896 }
897 } else {
898 printf("Trying BLKZEROOUT...\t");
899 if (ioctl(fd.get(), BLKZEROOUT, &range) == -1) {
900 printf("failed: %s\n", strerror(errno));
901 return false;
902 }
903 }
904 }
905
906 printf("done\n");
907 return true;
908}
909
Yabin Cui6faf0262016-06-09 14:09:39 -0700910// Check if the wipe package matches expectation:
911// 1. verify the package.
912// 2. check metadata (ota-type, pre-device and serial number if having one).
913static bool check_wipe_package(size_t wipe_package_size) {
914 if (wipe_package_size == 0) {
915 LOGE("wipe_package_size is zero.\n");
916 return false;
917 }
918 std::string wipe_package;
919 if (!read_wipe_package(wipe_package_size, &wipe_package)) {
920 LOGE("Failed to read wipe package.\n");
921 return false;
922 }
923 if (!verify_package(reinterpret_cast<const unsigned char*>(wipe_package.data()),
924 wipe_package.size())) {
925 LOGE("Failed to verify package.\n");
926 return false;
927 }
928
929 // Extract metadata
930 ZipArchive zip;
931 int err = mzOpenZipArchive(reinterpret_cast<unsigned char*>(&wipe_package[0]),
932 wipe_package.size(), &zip);
933 if (err != 0) {
934 LOGE("Can't open wipe package: %s\n", err != -1 ? strerror(err) : "bad");
935 return false;
936 }
937 std::string metadata;
938 if (!read_metadata_from_package(&zip, &metadata)) {
939 mzCloseZipArchive(&zip);
940 return false;
941 }
942 mzCloseZipArchive(&zip);
943
944 // Check metadata
945 std::vector<std::string> lines = android::base::Split(metadata, "\n");
946 bool ota_type_matched = false;
947 bool device_type_matched = false;
948 bool has_serial_number = false;
949 bool serial_number_matched = false;
950 for (const auto& line : lines) {
951 if (line == "ota-type=BRICK") {
952 ota_type_matched = true;
953 } else if (android::base::StartsWith(line, "pre-device=")) {
954 std::string device_type = line.substr(strlen("pre-device="));
955 char real_device_type[PROPERTY_VALUE_MAX];
956 property_get("ro.build.product", real_device_type, "");
957 device_type_matched = (device_type == real_device_type);
958 } else if (android::base::StartsWith(line, "serialno=")) {
959 std::string serial_no = line.substr(strlen("serialno="));
960 char real_serial_no[PROPERTY_VALUE_MAX];
961 property_get("ro.serialno", real_serial_no, "");
962 has_serial_number = true;
963 serial_number_matched = (serial_no == real_serial_no);
964 }
965 }
966 return ota_type_matched && device_type_matched && (!has_serial_number || serial_number_matched);
967}
968
Tao Bao108ab212016-06-10 10:13:32 -0700969// Wipe the current A/B device, with a secure wipe of all the partitions in
970// RECOVERY_WIPE.
Yabin Cui6faf0262016-06-09 14:09:39 -0700971static bool wipe_ab_device(size_t wipe_package_size) {
Tao Baob0838182016-06-02 11:16:50 -0700972 ui->SetBackground(RecoveryUI::ERASING);
973 ui->SetProgressType(RecoveryUI::INDETERMINATE);
974
Yabin Cui6faf0262016-06-09 14:09:39 -0700975 if (!check_wipe_package(wipe_package_size)) {
976 LOGE("Failed to verify wipe package\n");
977 return false;
978 }
Tao Baob0838182016-06-02 11:16:50 -0700979 std::string partition_list;
Tao Bao108ab212016-06-10 10:13:32 -0700980 if (!android::base::ReadFileToString(RECOVERY_WIPE, &partition_list)) {
981 LOGE("failed to read \"%s\".\n", RECOVERY_WIPE);
Tao Baob0838182016-06-02 11:16:50 -0700982 return false;
983 }
984
985 std::vector<std::string> lines = android::base::Split(partition_list, "\n");
986 for (const std::string& line : lines) {
987 std::string partition = android::base::Trim(line);
988 // Ignore '#' comment or empty lines.
989 if (android::base::StartsWith(partition, "#") || partition.empty()) {
990 continue;
991 }
992
993 // Proceed anyway even if it fails to wipe some partition.
994 secure_wipe_partition(partition);
995 }
996 return true;
997}
998
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700999static void choose_recovery_file(Device* device) {
Tao Baoae6408d2016-02-25 12:29:40 -08001000 if (!has_cache) {
1001 ui->Print("No /cache partition found.\n");
1002 return;
1003 }
1004
Elliott Hughesc0491632015-05-06 12:40:05 -07001005 // "Back" + KEEP_LOG_COUNT * 2 + terminating nullptr entry
1006 char* entries[1 + KEEP_LOG_COUNT * 2 + 1];
Nick Kralevicha9ad0322014-10-22 18:38:48 -07001007 memset(entries, 0, sizeof(entries));
1008
Tao Baobef39712015-05-04 18:50:27 -07001009 unsigned int n = 0;
Patrick Tjincd055ee2014-12-09 11:26:40 -08001010
Patrick Tjincd055ee2014-12-09 11:26:40 -08001011 // Add LAST_LOG_FILE + LAST_LOG_FILE.x
Tao Baobef39712015-05-04 18:50:27 -07001012 // Add LAST_KMSG_FILE + LAST_KMSG_FILE.x
1013 for (int i = 0; i < KEEP_LOG_COUNT; i++) {
1014 char* log_file;
Tao Bao80e46e02015-06-03 10:49:29 -07001015 int ret;
1016 ret = (i == 0) ? asprintf(&log_file, "%s", LAST_LOG_FILE) :
1017 asprintf(&log_file, "%s.%d", LAST_LOG_FILE, i);
1018 if (ret == -1) {
Nick Kralevicha9ad0322014-10-22 18:38:48 -07001019 // memory allocation failure - return early. Should never happen.
1020 return;
1021 }
Tao Baobef39712015-05-04 18:50:27 -07001022 if ((ensure_path_mounted(log_file) != 0) || (access(log_file, R_OK) == -1)) {
1023 free(log_file);
1024 } else {
1025 entries[n++] = log_file;
Nick Kralevicha9ad0322014-10-22 18:38:48 -07001026 }
Tao Baobef39712015-05-04 18:50:27 -07001027
1028 char* kmsg_file;
Tao Bao80e46e02015-06-03 10:49:29 -07001029 ret = (i == 0) ? asprintf(&kmsg_file, "%s", LAST_KMSG_FILE) :
1030 asprintf(&kmsg_file, "%s.%d", LAST_KMSG_FILE, i);
1031 if (ret == -1) {
Tao Baobef39712015-05-04 18:50:27 -07001032 // memory allocation failure - return early. Should never happen.
1033 return;
1034 }
1035 if ((ensure_path_mounted(kmsg_file) != 0) || (access(kmsg_file, R_OK) == -1)) {
1036 free(kmsg_file);
1037 } else {
1038 entries[n++] = kmsg_file;
1039 }
Nick Kralevicha9ad0322014-10-22 18:38:48 -07001040 }
1041
Elliott Hughesc0491632015-05-06 12:40:05 -07001042 entries[n++] = strdup("Back");
1043
Tao Baobef39712015-05-04 18:50:27 -07001044 const char* headers[] = { "Select file to view", nullptr };
Nick Kralevicha9ad0322014-10-22 18:38:48 -07001045
Elliott Hughes8de52072015-04-08 20:06:50 -07001046 while (true) {
Elliott Hughes30694c92015-03-25 15:16:51 -07001047 int chosen_item = get_menu_selection(headers, entries, 1, 0, device);
Elliott Hughesc0491632015-05-06 12:40:05 -07001048 if (strcmp(entries[chosen_item], "Back") == 0) break;
Elliott Hughes8de52072015-04-08 20:06:50 -07001049
Elliott Hughes8de52072015-04-08 20:06:50 -07001050 ui->ShowFile(entries[chosen_item]);
Nick Kralevicha9ad0322014-10-22 18:38:48 -07001051 }
1052
Tao Baobef39712015-05-04 18:50:27 -07001053 for (size_t i = 0; i < (sizeof(entries) / sizeof(*entries)); i++) {
Nick Kralevicha9ad0322014-10-22 18:38:48 -07001054 free(entries[i]);
1055 }
1056}
1057
Elliott Hughes498cda62016-04-14 16:49:04 -07001058static void run_graphics_test(Device* device) {
1059 // Switch to graphics screen.
1060 ui->ShowText(false);
1061
1062 ui->SetProgressType(RecoveryUI::INDETERMINATE);
1063 ui->SetBackground(RecoveryUI::INSTALLING_UPDATE);
1064 sleep(1);
1065
1066 ui->SetBackground(RecoveryUI::ERROR);
1067 sleep(1);
1068
1069 ui->SetBackground(RecoveryUI::NO_COMMAND);
1070 sleep(1);
1071
1072 ui->SetBackground(RecoveryUI::ERASING);
1073 sleep(1);
1074
1075 ui->SetBackground(RecoveryUI::INSTALLING_UPDATE);
1076
1077 ui->SetProgressType(RecoveryUI::DETERMINATE);
1078 ui->ShowProgress(1.0, 10.0);
1079 float fraction = 0.0;
1080 for (size_t i = 0; i < 100; ++i) {
1081 fraction += .01;
1082 ui->SetProgress(fraction);
1083 usleep(100000);
1084 }
1085
1086 ui->ShowText(true);
1087}
1088
Tao Baocdcf28f2016-01-13 15:05:20 -08001089// How long (in seconds) we wait for the fuse-provided package file to
1090// appear, before timing out.
1091#define SDCARD_INSTALL_TIMEOUT 10
1092
Tao Bao145d8612015-03-25 15:51:15 -07001093static int apply_from_sdcard(Device* device, bool* wipe_cache) {
Tao Bao682c34b2015-04-07 17:16:35 -07001094 modified_flash = true;
1095
Christian Poetzsch4ec58a42015-02-19 10:42:39 +00001096 if (ensure_path_mounted(SDCARD_ROOT) != 0) {
1097 ui->Print("\n-- Couldn't mount %s.\n", SDCARD_ROOT);
1098 return INSTALL_ERROR;
1099 }
1100
1101 char* path = browse_directory(SDCARD_ROOT, device);
1102 if (path == NULL) {
Elliott Hughes018ed312015-04-08 16:51:36 -07001103 ui->Print("\n-- No package file selected.\n");
caozhiyuanb4effb92015-06-10 16:46:38 +08001104 ensure_path_unmounted(SDCARD_ROOT);
Christian Poetzsch4ec58a42015-02-19 10:42:39 +00001105 return INSTALL_ERROR;
1106 }
1107
1108 ui->Print("\n-- Install %s ...\n", path);
1109 set_sdcard_update_bootloader_message();
Christian Poetzsch4ec58a42015-02-19 10:42:39 +00001110
Tao Baocdcf28f2016-01-13 15:05:20 -08001111 // We used to use fuse in a thread as opposed to a process. Since accessing
1112 // through fuse involves going from kernel to userspace to kernel, it leads
1113 // to deadlock when a page fault occurs. (Bug: 26313124)
1114 pid_t child;
1115 if ((child = fork()) == 0) {
1116 bool status = start_sdcard_fuse(path);
1117
1118 _exit(status ? EXIT_SUCCESS : EXIT_FAILURE);
1119 }
1120
1121 // FUSE_SIDELOAD_HOST_PATHNAME will start to exist once the fuse in child
1122 // process is ready.
1123 int result = INSTALL_ERROR;
1124 int status;
1125 bool waited = false;
1126 for (int i = 0; i < SDCARD_INSTALL_TIMEOUT; ++i) {
1127 if (waitpid(child, &status, WNOHANG) == -1) {
1128 result = INSTALL_ERROR;
1129 waited = true;
1130 break;
1131 }
1132
1133 struct stat sb;
1134 if (stat(FUSE_SIDELOAD_HOST_PATHNAME, &sb) == -1) {
1135 if (errno == ENOENT && i < SDCARD_INSTALL_TIMEOUT-1) {
1136 sleep(1);
1137 continue;
1138 } else {
1139 LOGE("Timed out waiting for the fuse-provided package.\n");
1140 result = INSTALL_ERROR;
1141 kill(child, SIGKILL);
1142 break;
1143 }
1144 }
1145
1146 result = install_package(FUSE_SIDELOAD_HOST_PATHNAME, wipe_cache,
Tianjie Xu16255832016-04-30 11:49:59 -07001147 TEMPORARY_INSTALL_FILE, false, 0/*retry_count*/);
Tao Baocdcf28f2016-01-13 15:05:20 -08001148 break;
1149 }
Christian Poetzsch4ec58a42015-02-19 10:42:39 +00001150
Tao Baocdcf28f2016-01-13 15:05:20 -08001151 if (!waited) {
1152 // Calling stat() on this magic filename signals the fuse
1153 // filesystem to shut down.
1154 struct stat sb;
1155 stat(FUSE_SIDELOAD_HOST_EXIT_PATHNAME, &sb);
1156
1157 waitpid(child, &status, 0);
1158 }
1159
1160 if (!WIFEXITED(status) || WEXITSTATUS(status) != 0) {
1161 LOGE("Error exit from the fuse process: %d\n", WEXITSTATUS(status));
1162 }
1163
Christian Poetzsch4ec58a42015-02-19 10:42:39 +00001164 ensure_path_unmounted(SDCARD_ROOT);
Tao Baocdcf28f2016-01-13 15:05:20 -08001165 return result;
Christian Poetzsch4ec58a42015-02-19 10:42:39 +00001166}
1167
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001168// Return REBOOT, SHUTDOWN, or REBOOT_BOOTLOADER. Returning NO_ACTION
1169// means to take the default, which is to reboot or shutdown depending
1170// on if the --shutdown_after flag was passed to recovery.
1171static Device::BuiltinAction
Doug Zongker6c8553d2012-09-24 10:40:47 -07001172prompt_and_wait(Device* device, int status) {
Doug Zongkerf93d8162009-09-22 15:16:02 -07001173 for (;;) {
1174 finish_recovery(NULL);
Doug Zongker6c8553d2012-09-24 10:40:47 -07001175 switch (status) {
1176 case INSTALL_SUCCESS:
1177 case INSTALL_NONE:
1178 ui->SetBackground(RecoveryUI::NO_COMMAND);
1179 break;
1180
1181 case INSTALL_ERROR:
1182 case INSTALL_CORRUPT:
1183 ui->SetBackground(RecoveryUI::ERROR);
1184 break;
1185 }
Doug Zongker211aebc2011-10-28 15:13:10 -07001186 ui->SetProgressType(RecoveryUI::EMPTY);
Doug Zongkerf93d8162009-09-22 15:16:02 -07001187
Elliott Hughes8fd86d72015-04-13 14:36:02 -07001188 int chosen_item = get_menu_selection(nullptr, device->GetMenuItems(), 0, 0, device);
Doug Zongkerf93d8162009-09-22 15:16:02 -07001189
1190 // device-specific code may take some action here. It may
1191 // return one of the core actions handled in the switch
1192 // statement below.
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001193 Device::BuiltinAction chosen_action = device->InvokeMenuItem(chosen_item);
Doug Zongkerf93d8162009-09-22 15:16:02 -07001194
Elliott Hughes30694c92015-03-25 15:16:51 -07001195 bool should_wipe_cache = false;
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001196 switch (chosen_action) {
1197 case Device::NO_ACTION:
1198 break;
1199
Doug Zongkerdaefc1d2011-10-31 09:34:15 -07001200 case Device::REBOOT:
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001201 case Device::SHUTDOWN:
1202 case Device::REBOOT_BOOTLOADER:
1203 return chosen_action;
Doug Zongkerf93d8162009-09-22 15:16:02 -07001204
Doug Zongkerdaefc1d2011-10-31 09:34:15 -07001205 case Device::WIPE_DATA:
1206 wipe_data(ui->IsTextVisible(), device);
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001207 if (!ui->IsTextVisible()) return Device::NO_ACTION;
Doug Zongkerf93d8162009-09-22 15:16:02 -07001208 break;
1209
Doug Zongkerdaefc1d2011-10-31 09:34:15 -07001210 case Device::WIPE_CACHE:
Elliott Hughes30694c92015-03-25 15:16:51 -07001211 wipe_cache(ui->IsTextVisible(), device);
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001212 if (!ui->IsTextVisible()) return Device::NO_ACTION;
Doug Zongkerf93d8162009-09-22 15:16:02 -07001213 break;
1214
Christian Poetzsch4ec58a42015-02-19 10:42:39 +00001215 case Device::APPLY_ADB_SIDELOAD:
Elliott Hughesec283402015-04-10 10:01:53 -07001216 case Device::APPLY_SDCARD:
Christian Poetzsch4ec58a42015-02-19 10:42:39 +00001217 {
1218 bool adb = (chosen_action == Device::APPLY_ADB_SIDELOAD);
1219 if (adb) {
Elliott Hughes30694c92015-03-25 15:16:51 -07001220 status = apply_from_adb(ui, &should_wipe_cache, TEMPORARY_INSTALL_FILE);
Doug Zongkerd0181b82011-10-19 10:51:12 -07001221 } else {
Elliott Hughes30694c92015-03-25 15:16:51 -07001222 status = apply_from_sdcard(device, &should_wipe_cache);
Doug Zongkerd0181b82011-10-19 10:51:12 -07001223 }
Doug Zongker945fc682014-07-10 10:50:39 -07001224
Elliott Hughes30694c92015-03-25 15:16:51 -07001225 if (status == INSTALL_SUCCESS && should_wipe_cache) {
Tao Baoe39a9bc2015-03-31 12:19:05 -07001226 if (!wipe_cache(false, device)) {
1227 status = INSTALL_ERROR;
1228 }
Christian Poetzsch4ec58a42015-02-19 10:42:39 +00001229 }
1230
Tao Baoc679f932015-03-30 09:43:49 -07001231 if (status != INSTALL_SUCCESS) {
1232 ui->SetBackground(RecoveryUI::ERROR);
1233 ui->Print("Installation aborted.\n");
1234 copy_logs();
1235 } else if (!ui->IsTextVisible()) {
1236 return Device::NO_ACTION; // reboot if logs aren't visible
1237 } else {
1238 ui->Print("\nInstall from %s complete.\n", adb ? "ADB" : "SD card");
Doug Zongker8674a722010-09-15 11:08:23 -07001239 }
Doug Zongkerf93d8162009-09-22 15:16:02 -07001240 }
1241 break;
Doug Zongkerdaefc1d2011-10-31 09:34:15 -07001242
Elliott Hughesec283402015-04-10 10:01:53 -07001243 case Device::VIEW_RECOVERY_LOGS:
1244 choose_recovery_file(device);
Michael Ward9d2629c2011-06-23 22:14:24 -07001245 break;
Doug Zongker9270a202012-01-09 15:16:13 -08001246
Elliott Hughes498cda62016-04-14 16:49:04 -07001247 case Device::RUN_GRAPHICS_TEST:
1248 run_graphics_test(device);
1249 break;
1250
Elliott Hughesec283402015-04-10 10:01:53 -07001251 case Device::MOUNT_SYSTEM:
Tao Baoabb8f772015-07-30 14:43:27 -07001252 char system_root_image[PROPERTY_VALUE_MAX];
1253 property_get("ro.build.system_root_image", system_root_image, "");
1254
1255 // For a system image built with the root directory (i.e.
1256 // system_root_image == "true"), we mount it to /system_root, and symlink /system
1257 // to /system_root/system to make adb shell work (the symlink is created through
1258 // the build system).
1259 // Bug: 22855115
1260 if (strcmp(system_root_image, "true") == 0) {
1261 if (ensure_path_mounted_at("/", "/system_root") != -1) {
1262 ui->Print("Mounted /system.\n");
1263 }
1264 } else {
1265 if (ensure_path_mounted("/system") != -1) {
1266 ui->Print("Mounted /system.\n");
1267 }
Elliott Hughesec283402015-04-10 10:01:53 -07001268 }
Tao Baoabb8f772015-07-30 14:43:27 -07001269
Nick Kralevicha9ad0322014-10-22 18:38:48 -07001270 break;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001271 }
1272 }
1273}
1274
1275static void
Oscar Montemayor05231562009-11-30 08:40:57 -08001276print_property(const char *key, const char *name, void *cookie) {
Doug Zongker56c51052010-07-01 09:18:44 -07001277 printf("%s=%s\n", key, name);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001278}
1279
Doug Zongker02ec6b82012-08-22 17:26:40 -07001280static void
1281load_locale_from_cache() {
1282 FILE* fp = fopen_path(LOCALE_FILE, "r");
1283 char buffer[80];
1284 if (fp != NULL) {
1285 fgets(buffer, sizeof(buffer), fp);
1286 int j = 0;
Doug Zongker5fa8c232012-09-18 12:37:02 -07001287 unsigned int i;
Doug Zongker02ec6b82012-08-22 17:26:40 -07001288 for (i = 0; i < sizeof(buffer) && buffer[i]; ++i) {
1289 if (!isspace(buffer[i])) {
1290 buffer[j++] = buffer[i];
1291 }
1292 }
1293 buffer[j] = 0;
1294 locale = strdup(buffer);
Devin Kim6016d082012-10-08 09:47:37 -07001295 check_and_fclose(fp, LOCALE_FILE);
Doug Zongker02ec6b82012-08-22 17:26:40 -07001296 }
1297}
1298
Doug Zongker7c3ae452013-05-14 11:03:02 -07001299static RecoveryUI* gCurrentUI = NULL;
1300
1301void
1302ui_print(const char* format, ...) {
1303 char buffer[256];
1304
1305 va_list ap;
1306 va_start(ap, format);
1307 vsnprintf(buffer, sizeof(buffer), format, ap);
1308 va_end(ap);
1309
1310 if (gCurrentUI != NULL) {
1311 gCurrentUI->Print("%s", buffer);
1312 } else {
1313 fputs(buffer, stdout);
1314 }
1315}
1316
Yabin Cui99281df2016-02-17 12:21:52 -08001317static bool is_battery_ok() {
1318 struct healthd_config healthd_config = {
1319 .batteryStatusPath = android::String8(android::String8::kEmptyString),
1320 .batteryHealthPath = android::String8(android::String8::kEmptyString),
1321 .batteryPresentPath = android::String8(android::String8::kEmptyString),
1322 .batteryCapacityPath = android::String8(android::String8::kEmptyString),
1323 .batteryVoltagePath = android::String8(android::String8::kEmptyString),
1324 .batteryTemperaturePath = android::String8(android::String8::kEmptyString),
1325 .batteryTechnologyPath = android::String8(android::String8::kEmptyString),
1326 .batteryCurrentNowPath = android::String8(android::String8::kEmptyString),
1327 .batteryCurrentAvgPath = android::String8(android::String8::kEmptyString),
1328 .batteryChargeCounterPath = android::String8(android::String8::kEmptyString),
1329 .batteryFullChargePath = android::String8(android::String8::kEmptyString),
1330 .batteryCycleCountPath = android::String8(android::String8::kEmptyString),
1331 .energyCounter = NULL,
1332 .boot_min_cap = 0,
1333 .screen_on = NULL
1334 };
1335 healthd_board_init(&healthd_config);
1336
1337 android::BatteryMonitor monitor;
1338 monitor.init(&healthd_config);
1339
1340 int wait_second = 0;
1341 while (true) {
1342 int charge_status = monitor.getChargeStatus();
1343 // Treat unknown status as charged.
1344 bool charged = (charge_status != android::BATTERY_STATUS_DISCHARGING &&
1345 charge_status != android::BATTERY_STATUS_NOT_CHARGING);
1346 android::BatteryProperty capacity;
1347 android::status_t status = monitor.getProperty(android::BATTERY_PROP_CAPACITY, &capacity);
1348 ui_print("charge_status %d, charged %d, status %d, capacity %lld\n", charge_status,
1349 charged, status, capacity.valueInt64);
1350 // At startup, the battery drivers in devices like N5X/N6P take some time to load
1351 // the battery profile. Before the load finishes, it reports value 50 as a fake
1352 // capacity. BATTERY_READ_TIMEOUT_IN_SEC is set that the battery drivers are expected
1353 // to finish loading the battery profile earlier than 10 seconds after kernel startup.
1354 if (status == 0 && capacity.valueInt64 == 50) {
1355 if (wait_second < BATTERY_READ_TIMEOUT_IN_SEC) {
1356 sleep(1);
1357 wait_second++;
1358 continue;
1359 }
1360 }
1361 // If we can't read battery percentage, it may be a device without battery. In this
1362 // situation, use 100 as a fake battery percentage.
1363 if (status != 0) {
1364 capacity.valueInt64 = 100;
1365 }
1366 return (charged && capacity.valueInt64 >= BATTERY_WITH_CHARGER_OK_PERCENTAGE) ||
1367 (!charged && capacity.valueInt64 >= BATTERY_OK_PERCENTAGE);
1368 }
1369}
1370
Tianjie Xufa12b972016-02-05 18:25:58 -08001371static void set_retry_bootloader_message(int retry_count, int argc, char** argv) {
1372 struct bootloader_message boot {};
1373 strlcpy(boot.command, "boot-recovery", sizeof(boot.command));
1374 strlcpy(boot.recovery, "recovery\n", sizeof(boot.recovery));
1375
1376 for (int i = 1; i < argc; ++i) {
1377 if (strstr(argv[i], "retry_count") == nullptr) {
1378 strlcat(boot.recovery, argv[i], sizeof(boot.recovery));
1379 strlcat(boot.recovery, "\n", sizeof(boot.recovery));
1380 }
1381 }
1382
1383 // Initialize counter to 1 if it's not in BCB, otherwise increment it by 1.
1384 if (retry_count == 0) {
1385 strlcat(boot.recovery, "--retry_count=1\n", sizeof(boot.recovery));
1386 } else {
1387 char buffer[20];
1388 snprintf(buffer, sizeof(buffer), "--retry_count=%d\n", retry_count+1);
1389 strlcat(boot.recovery, buffer, sizeof(boot.recovery));
1390 }
1391 set_bootloader_message(&boot);
1392}
1393
Mark Salyzyn13aca592016-03-09 14:58:16 -08001394static ssize_t logbasename(
1395 log_id_t /* logId */,
1396 char /* prio */,
1397 const char *filename,
1398 const char * /* buf */, size_t len,
1399 void *arg) {
1400 if (strstr(LAST_KMSG_FILE, filename) ||
1401 strstr(LAST_LOG_FILE, filename)) {
1402 bool *doRotate = reinterpret_cast<bool *>(arg);
1403 *doRotate = true;
1404 }
1405 return len;
1406}
1407
1408static ssize_t logrotate(
1409 log_id_t logId,
1410 char prio,
1411 const char *filename,
1412 const char *buf, size_t len,
1413 void *arg) {
1414 bool *doRotate = reinterpret_cast<bool *>(arg);
1415 if (!*doRotate) {
1416 return __android_log_pmsg_file_write(logId, prio, filename, buf, len);
1417 }
1418
1419 std::string name(filename);
1420 size_t dot = name.find_last_of(".");
1421 std::string sub = name.substr(0, dot);
1422
1423 if (!strstr(LAST_KMSG_FILE, sub.c_str()) &&
1424 !strstr(LAST_LOG_FILE, sub.c_str())) {
1425 return __android_log_pmsg_file_write(logId, prio, filename, buf, len);
1426 }
1427
1428 // filename rotation
1429 if (dot == std::string::npos) {
1430 name += ".1";
1431 } else {
1432 std::string number = name.substr(dot + 1);
1433 if (!isdigit(number.data()[0])) {
1434 name += ".1";
1435 } else {
1436 unsigned long long i = std::stoull(number);
1437 name = sub + "." + std::to_string(i + 1);
1438 }
1439 }
1440
1441 return __android_log_pmsg_file_write(logId, prio, name.c_str(), buf, len);
1442}
1443
Yabin Cui99281df2016-02-17 12:21:52 -08001444int main(int argc, char **argv) {
Mark Salyzyn13aca592016-03-09 14:58:16 -08001445 // Take last pmsg contents and rewrite it to the current pmsg session.
1446 static const char filter[] = "recovery/";
1447 // Do we need to rotate?
1448 bool doRotate = false;
1449 __android_log_pmsg_file_read(
1450 LOG_ID_SYSTEM, ANDROID_LOG_INFO, filter,
1451 logbasename, &doRotate);
1452 // Take action to refresh pmsg contents
1453 __android_log_pmsg_file_read(
1454 LOG_ID_SYSTEM, ANDROID_LOG_INFO, filter,
1455 logrotate, &doRotate);
1456
Doug Zongker9270a202012-01-09 15:16:13 -08001457 // If this binary is started with the single argument "--adbd",
1458 // instead of being the normal recovery binary, it turns into kind
1459 // of a stripped-down version of adbd that only supports the
1460 // 'sideload' command. Note this must be a real argument, not
1461 // anything in the command file or bootloader control block; the
1462 // only way recovery should be run with this argument is when it
1463 // starts a copy of itself from the apply_from_adb() function.
1464 if (argc == 2 && strcmp(argv[1], "--adbd") == 0) {
Elliott Hughes9f4fdb32015-11-20 13:03:24 -08001465 adb_server_main(0, DEFAULT_ADB_PORT, -1);
Doug Zongker9270a202012-01-09 15:16:13 -08001466 return 0;
1467 }
1468
Tao Bao04ca4262015-09-10 15:32:24 -07001469 time_t start = time(NULL);
1470
1471 // redirect_stdio should be called only in non-sideload mode. Otherwise
1472 // we may have two logger instances with different timestamps.
1473 redirect_stdio(TEMPORARY_LOG_FILE);
1474
Doug Zongker19a8e242014-01-21 09:25:41 -08001475 printf("Starting recovery (pid %d) on %s", getpid(), ctime(&start));
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001476
Doug Zongkerd4208f92010-09-20 12:16:13 -07001477 load_volume_table();
Tao Baoae6408d2016-02-25 12:29:40 -08001478 has_cache = volume_for_path(CACHE_ROOT) != nullptr;
1479
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001480 get_args(&argc, &argv);
1481
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001482 const char *send_intent = NULL;
1483 const char *update_package = NULL;
Tao Baoe39a9bc2015-03-31 12:19:05 -07001484 bool should_wipe_data = false;
Tao Baoc679f932015-03-30 09:43:49 -07001485 bool should_wipe_cache = false;
Tao Bao108ab212016-06-10 10:13:32 -07001486 bool should_wipe_ab = false;
Yabin Cui6faf0262016-06-09 14:09:39 -07001487 size_t wipe_package_size = 0;
Tao Bao145d8612015-03-25 15:51:15 -07001488 bool show_text = false;
Tao Baoc679f932015-03-30 09:43:49 -07001489 bool sideload = false;
1490 bool sideload_auto_reboot = false;
Doug Zongkere5d5ac72012-04-12 11:01:22 -07001491 bool just_exit = false;
Doug Zongkerb1d12632014-03-18 10:32:12 -07001492 bool shutdown_after = false;
Tianjie Xufa12b972016-02-05 18:25:58 -08001493 int retry_count = 0;
Tianjie Xu35926c42016-04-28 18:06:26 -07001494 bool security_update = false;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001495
1496 int arg;
Tao Baob0838182016-06-02 11:16:50 -07001497 int option_index;
1498 while ((arg = getopt_long(argc, argv, "", OPTIONS, &option_index)) != -1) {
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001499 switch (arg) {
Tao Baoc679f932015-03-30 09:43:49 -07001500 case 'i': send_intent = optarg; break;
Tianjie Xufa12b972016-02-05 18:25:58 -08001501 case 'n': android::base::ParseInt(optarg, &retry_count, 0); break;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001502 case 'u': update_package = optarg; break;
Tao Baoe39a9bc2015-03-31 12:19:05 -07001503 case 'w': should_wipe_data = true; break;
Tao Baoc679f932015-03-30 09:43:49 -07001504 case 'c': should_wipe_cache = true; break;
Tao Bao145d8612015-03-25 15:51:15 -07001505 case 't': show_text = true; break;
Tao Baoc679f932015-03-30 09:43:49 -07001506 case 's': sideload = true; break;
1507 case 'a': sideload = true; sideload_auto_reboot = true; break;
Doug Zongkere5d5ac72012-04-12 11:01:22 -07001508 case 'x': just_exit = true; break;
Doug Zongker02ec6b82012-08-22 17:26:40 -07001509 case 'l': locale = optarg; break;
Doug Zongkerc87bab12013-11-25 13:53:25 -08001510 case 'g': {
1511 if (stage == NULL || *stage == '\0') {
1512 char buffer[20] = "1/";
1513 strncat(buffer, optarg, sizeof(buffer)-3);
1514 stage = strdup(buffer);
1515 }
1516 break;
1517 }
Doug Zongkerb1d12632014-03-18 10:32:12 -07001518 case 'p': shutdown_after = true; break;
Jeff Sharkeya6e13ae2014-09-24 11:46:17 -07001519 case 'r': reason = optarg; break;
Tianjie Xu35926c42016-04-28 18:06:26 -07001520 case 'e': security_update = true; break;
Tao Baob0838182016-06-02 11:16:50 -07001521 case 0: {
Tao Bao108ab212016-06-10 10:13:32 -07001522 if (strcmp(OPTIONS[option_index].name, "wipe_ab") == 0) {
1523 should_wipe_ab = true;
Tao Baob0838182016-06-02 11:16:50 -07001524 break;
Yabin Cui6faf0262016-06-09 14:09:39 -07001525 } else if (strcmp(OPTIONS[option_index].name, "wipe_package_size") == 0) {
1526 android::base::ParseUint(optarg, &wipe_package_size);
1527 break;
Tao Baob0838182016-06-02 11:16:50 -07001528 }
1529 break;
1530 }
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001531 case '?':
1532 LOGE("Invalid command argument\n");
1533 continue;
1534 }
1535 }
1536
Tao Baoae6408d2016-02-25 12:29:40 -08001537 if (locale == nullptr && has_cache) {
Doug Zongker02ec6b82012-08-22 17:26:40 -07001538 load_locale_from_cache();
1539 }
1540 printf("locale is [%s]\n", locale);
Doug Zongker0d32f252014-02-13 15:07:56 -08001541 printf("stage is [%s]\n", stage);
Jeff Sharkeya6e13ae2014-09-24 11:46:17 -07001542 printf("reason is [%s]\n", reason);
Doug Zongker02ec6b82012-08-22 17:26:40 -07001543
1544 Device* device = make_device();
1545 ui = device->GetUI();
Doug Zongker7c3ae452013-05-14 11:03:02 -07001546 gCurrentUI = ui;
Doug Zongker02ec6b82012-08-22 17:26:40 -07001547
Doug Zongker5fa8c232012-09-18 12:37:02 -07001548 ui->SetLocale(locale);
Doug Zongker02ec6b82012-08-22 17:26:40 -07001549 ui->Init();
Tianjie Xu35926c42016-04-28 18:06:26 -07001550 // Set background string to "installing security update" for security update,
1551 // otherwise set it to "installing system update".
1552 ui->SetSystemUpdateText(security_update);
Doug Zongkerc87bab12013-11-25 13:53:25 -08001553
1554 int st_cur, st_max;
1555 if (stage != NULL && sscanf(stage, "%d/%d", &st_cur, &st_max) == 2) {
1556 ui->SetStage(st_cur, st_max);
1557 }
1558
Doug Zongker02ec6b82012-08-22 17:26:40 -07001559 ui->SetBackground(RecoveryUI::NONE);
1560 if (show_text) ui->ShowText(true);
1561
Stephen Smalley779701d2012-02-09 14:13:23 -05001562 struct selinux_opt seopts[] = {
1563 { SELABEL_OPT_PATH, "/file_contexts" }
1564 };
1565
1566 sehandle = selabel_open(SELABEL_CTX_FILE, seopts, 1);
1567
1568 if (!sehandle) {
Doug Zongkerfafc85b2013-07-09 12:29:45 -07001569 ui->Print("Warning: No file_contexts\n");
Stephen Smalley779701d2012-02-09 14:13:23 -05001570 }
Stephen Smalley779701d2012-02-09 14:13:23 -05001571
Doug Zongkerdaefc1d2011-10-31 09:34:15 -07001572 device->StartRecovery();
Doug Zongkerefa1bab2010-02-01 15:59:12 -08001573
Doug Zongker56c51052010-07-01 09:18:44 -07001574 printf("Command:");
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001575 for (arg = 0; arg < argc; arg++) {
Doug Zongker56c51052010-07-01 09:18:44 -07001576 printf(" \"%s\"", argv[arg]);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001577 }
Doug Zongker9b125b02010-09-22 12:01:37 -07001578 printf("\n");
1579
1580 if (update_package) {
1581 // For backwards compatibility on the cache partition only, if
1582 // we're given an old 'root' path "CACHE:foo", change it to
1583 // "/cache/foo".
1584 if (strncmp(update_package, "CACHE:", 6) == 0) {
1585 int len = strlen(update_package) + 10;
Doug Zongker28ce47c2011-10-28 10:33:05 -07001586 char* modified_path = (char*)malloc(len);
Jeremy Compostella1b7d9b72015-07-29 17:17:03 +02001587 if (modified_path) {
1588 strlcpy(modified_path, "/cache/", len);
1589 strlcat(modified_path, update_package+6, len);
1590 printf("(replacing path \"%s\" with \"%s\")\n",
1591 update_package, modified_path);
1592 update_package = modified_path;
1593 }
1594 else
1595 printf("modified_path allocation failed\n");
Doug Zongker9b125b02010-09-22 12:01:37 -07001596 }
1597 }
1598 printf("\n");
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001599
1600 property_list(print_property, NULL);
Doug Zongker56c51052010-07-01 09:18:44 -07001601 printf("\n");
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001602
Elliott Hughesbb78d622015-04-09 20:51:08 -07001603 ui->Print("Supported API: %d\n", RECOVERY_API_VERSION);
1604
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001605 int status = INSTALL_SUCCESS;
1606
Doug Zongker540d57f2011-01-18 13:36:58 -08001607 if (update_package != NULL) {
Tao Bao56870012016-04-29 15:37:05 -07001608 // It's not entirely true that we will modify the flash. But we want
1609 // to log the update attempt since update_package is non-NULL.
1610 modified_flash = true;
1611
Yabin Cui99281df2016-02-17 12:21:52 -08001612 if (!is_battery_ok()) {
1613 ui->Print("battery capacity is not enough for installing package, needed is %d%%\n",
1614 BATTERY_OK_PERCENTAGE);
Tianjie Xu16255832016-04-30 11:49:59 -07001615 // Log the error code to last_install when installation skips due to
1616 // low battery.
1617 FILE* install_log = fopen_path(LAST_INSTALL_FILE, "w");
1618 if (install_log != nullptr) {
1619 fprintf(install_log, "%s\n", update_package);
1620 fprintf(install_log, "0\n");
1621 fprintf(install_log, "error: %d\n", kLowBattery);
1622 fclose(install_log);
1623 } else {
1624 LOGE("failed to open last_install: %s\n", strerror(errno));
1625 }
Yabin Cui99281df2016-02-17 12:21:52 -08001626 status = INSTALL_SKIPPED;
1627 } else {
1628 status = install_package(update_package, &should_wipe_cache,
Tianjie Xu16255832016-04-30 11:49:59 -07001629 TEMPORARY_INSTALL_FILE, true, retry_count);
Yabin Cui99281df2016-02-17 12:21:52 -08001630 if (status == INSTALL_SUCCESS && should_wipe_cache) {
1631 wipe_cache(false, device);
1632 }
1633 if (status != INSTALL_SUCCESS) {
1634 ui->Print("Installation aborted.\n");
Tianjie Xufa12b972016-02-05 18:25:58 -08001635 // When I/O error happens, reboot and retry installation EIO_RETRY_COUNT
1636 // times before we abandon this OTA update.
1637 if (status == INSTALL_RETRY && retry_count < EIO_RETRY_COUNT) {
1638 copy_logs();
1639 set_retry_bootloader_message(retry_count, argc, argv);
1640 // Print retry count on screen.
1641 ui->Print("Retry attempt %d\n", retry_count);
Doug Zongker7c3ae452013-05-14 11:03:02 -07001642
Tianjie Xufa12b972016-02-05 18:25:58 -08001643 // Reboot and retry the update
1644 int ret = property_set(ANDROID_RB_PROPERTY, "reboot,recovery");
1645 if (ret < 0) {
1646 ui->Print("Reboot failed\n");
1647 } else {
1648 while (true) {
1649 pause();
1650 }
1651 }
1652 }
Yabin Cui99281df2016-02-17 12:21:52 -08001653 // If this is an eng or userdebug build, then automatically
1654 // turn the text display on if the script fails so the error
1655 // message is visible.
1656 if (is_ro_debuggable()) {
1657 ui->ShowText(true);
1658 }
Doug Zongker7c3ae452013-05-14 11:03:02 -07001659 }
1660 }
Tao Baoe39a9bc2015-03-31 12:19:05 -07001661 } else if (should_wipe_data) {
1662 if (!wipe_data(false, device)) {
1663 status = INSTALL_ERROR;
1664 }
Tao Baoc679f932015-03-30 09:43:49 -07001665 } else if (should_wipe_cache) {
Tao Baoe39a9bc2015-03-31 12:19:05 -07001666 if (!wipe_cache(false, device)) {
1667 status = INSTALL_ERROR;
1668 }
Tao Bao108ab212016-06-10 10:13:32 -07001669 } else if (should_wipe_ab) {
Yabin Cui6faf0262016-06-09 14:09:39 -07001670 if (!wipe_ab_device(wipe_package_size)) {
Tao Baob0838182016-06-02 11:16:50 -07001671 status = INSTALL_ERROR;
1672 }
Tao Baoc679f932015-03-30 09:43:49 -07001673 } else if (sideload) {
1674 // 'adb reboot sideload' acts the same as user presses key combinations
1675 // to enter the sideload mode. When 'sideload-auto-reboot' is used, text
1676 // display will NOT be turned on by default. And it will reboot after
1677 // sideload finishes even if there are errors. Unless one turns on the
1678 // text display during the installation. This is to enable automated
1679 // testing.
1680 if (!sideload_auto_reboot) {
1681 ui->ShowText(true);
1682 }
1683 status = apply_from_adb(ui, &should_wipe_cache, TEMPORARY_INSTALL_FILE);
1684 if (status == INSTALL_SUCCESS && should_wipe_cache) {
Tao Baoe39a9bc2015-03-31 12:19:05 -07001685 if (!wipe_cache(false, device)) {
1686 status = INSTALL_ERROR;
1687 }
Tao Baoc679f932015-03-30 09:43:49 -07001688 }
1689 ui->Print("\nInstall from ADB complete (status: %d).\n", status);
1690 if (sideload_auto_reboot) {
1691 ui->Print("Rebooting automatically.\n");
1692 }
Doug Zongkere5d5ac72012-04-12 11:01:22 -07001693 } else if (!just_exit) {
Doug Zongker02ec6b82012-08-22 17:26:40 -07001694 status = INSTALL_NONE; // No command specified
1695 ui->SetBackground(RecoveryUI::NO_COMMAND);
Tao Bao785d22c2015-05-04 09:34:29 -07001696
1697 // http://b/17489952
1698 // If this is an eng or userdebug build, automatically turn on the
1699 // text display if no command is specified.
1700 if (is_ro_debuggable()) {
1701 ui->ShowText(true);
1702 }
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001703 }
1704
Tao Baoc679f932015-03-30 09:43:49 -07001705 if (!sideload_auto_reboot && (status == INSTALL_ERROR || status == INSTALL_CORRUPT)) {
Doug Zongkerf24fd7e2013-07-02 11:43:25 -07001706 copy_logs();
Doug Zongker02ec6b82012-08-22 17:26:40 -07001707 ui->SetBackground(RecoveryUI::ERROR);
1708 }
Tao Baoc679f932015-03-30 09:43:49 -07001709
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001710 Device::BuiltinAction after = shutdown_after ? Device::SHUTDOWN : Device::REBOOT;
Yabin Cui99281df2016-02-17 12:21:52 -08001711 if ((status != INSTALL_SUCCESS && status != INSTALL_SKIPPED && !sideload_auto_reboot) ||
1712 ui->IsTextVisible()) {
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001713 Device::BuiltinAction temp = prompt_and_wait(device, status);
Tao Baoc679f932015-03-30 09:43:49 -07001714 if (temp != Device::NO_ACTION) {
1715 after = temp;
1716 }
Doug Zongker8674a722010-09-15 11:08:23 -07001717 }
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001718
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001719 // Save logs and clean up before rebooting or shutting down.
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001720 finish_recovery(send_intent);
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001721
1722 switch (after) {
1723 case Device::SHUTDOWN:
1724 ui->Print("Shutting down...\n");
1725 property_set(ANDROID_RB_PROPERTY, "shutdown,");
1726 break;
1727
1728 case Device::REBOOT_BOOTLOADER:
1729 ui->Print("Rebooting to bootloader...\n");
1730 property_set(ANDROID_RB_PROPERTY, "reboot,bootloader");
1731 break;
1732
1733 default:
1734 ui->Print("Rebooting...\n");
1735 property_set(ANDROID_RB_PROPERTY, "reboot,");
1736 break;
Doug Zongkerb1d12632014-03-18 10:32:12 -07001737 }
Tao Bao75238632015-05-27 14:46:17 -07001738 while (true) {
1739 pause();
1740 }
1741 // Should be unreachable.
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001742 return EXIT_SUCCESS;
1743}