blob: c4b36557b0523d4e94aa4560cbc5c1c520e3023b [file] [log] [blame]
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001/*
2 * Copyright (C) 2007 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17#include <ctype.h>
Doug Zongker7c3ae452013-05-14 11:03:02 -070018#include <dirent.h>
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080019#include <errno.h>
20#include <fcntl.h>
21#include <getopt.h>
Tao Baob0838182016-06-02 11:16:50 -070022#include <inttypes.h>
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080023#include <limits.h>
Tao Baob0838182016-06-02 11:16:50 -070024#include <linux/fs.h>
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080025#include <linux/input.h>
Doug Zongker7c3ae452013-05-14 11:03:02 -070026#include <stdarg.h>
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080027#include <stdio.h>
28#include <stdlib.h>
29#include <string.h>
Patrick Tjincd055ee2014-12-09 11:26:40 -080030#include <sys/klog.h>
Doug Zongker23ceeea2010-07-08 17:27:55 -070031#include <sys/stat.h>
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080032#include <sys/types.h>
Tao Baocdcf28f2016-01-13 15:05:20 -080033#include <sys/wait.h>
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080034#include <time.h>
35#include <unistd.h>
36
Tao Bao04ca4262015-09-10 15:32:24 -070037#include <chrono>
Tao Baob0838182016-06-02 11:16:50 -070038#include <string>
39#include <vector>
Tao Bao04ca4262015-09-10 15:32:24 -070040
Tao Bao75238632015-05-27 14:46:17 -070041#include <adb.h>
Mark Salyzyn13aca592016-03-09 14:58:16 -080042#include <android/log.h> /* Android Log Priority Tags */
Elliott Hughes4b166f02015-12-04 15:30:20 -080043#include <android-base/file.h>
Tianjie Xufa12b972016-02-05 18:25:58 -080044#include <android-base/parseint.h>
Elliott Hughes4b166f02015-12-04 15:30:20 -080045#include <android-base/stringprintf.h>
Tao Baob0838182016-06-02 11:16:50 -070046#include <android-base/strings.h>
Yabin Cui2f272c02016-06-24 18:22:02 -070047#include <bootloader_message/bootloader_message.h>
Tao Bao75238632015-05-27 14:46:17 -070048#include <cutils/android_reboot.h>
49#include <cutils/properties.h>
Mark Salyzyn13aca592016-03-09 14:58:16 -080050#include <log/logger.h> /* Android Log packet format */
51#include <private/android_logger.h> /* private pmsg functions */
Tao Baobef39712015-05-04 18:50:27 -070052
Yabin Cui99281df2016-02-17 12:21:52 -080053#include <healthd/BatteryMonitor.h>
54
Tao Bao75238632015-05-27 14:46:17 -070055#include "adb_install.h"
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080056#include "common.h"
Tao Bao75238632015-05-27 14:46:17 -070057#include "device.h"
Tianjie Xu16255832016-04-30 11:49:59 -070058#include "error_code.h"
Tao Bao75238632015-05-27 14:46:17 -070059#include "fuse_sdcard_provider.h"
60#include "fuse_sideload.h"
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080061#include "install.h"
62#include "minui/minui.h"
63#include "minzip/DirUtil.h"
Yabin Cui6faf0262016-06-09 14:09:39 -070064#include "minzip/Zip.h"
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080065#include "roots.h"
Doug Zongker28ce47c2011-10-28 10:33:05 -070066#include "ui.h"
Tao Baob0838182016-06-02 11:16:50 -070067#include "unique_fd.h"
Doug Zongker211aebc2011-10-28 15:13:10 -070068#include "screen_ui.h"
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080069
Stephen Smalley779701d2012-02-09 14:13:23 -050070struct selabel_handle *sehandle;
71
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080072static const struct option OPTIONS[] = {
Tao Baoc679f932015-03-30 09:43:49 -070073 { "send_intent", required_argument, NULL, 'i' },
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080074 { "update_package", required_argument, NULL, 'u' },
Tianjie Xufa12b972016-02-05 18:25:58 -080075 { "retry_count", required_argument, NULL, 'n' },
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080076 { "wipe_data", no_argument, NULL, 'w' },
77 { "wipe_cache", no_argument, NULL, 'c' },
Doug Zongker4bc98062010-09-03 11:00:13 -070078 { "show_text", no_argument, NULL, 't' },
Tao Baoc679f932015-03-30 09:43:49 -070079 { "sideload", no_argument, NULL, 's' },
80 { "sideload_auto_reboot", no_argument, NULL, 'a' },
Doug Zongkere5d5ac72012-04-12 11:01:22 -070081 { "just_exit", no_argument, NULL, 'x' },
Doug Zongker02ec6b82012-08-22 17:26:40 -070082 { "locale", required_argument, NULL, 'l' },
Doug Zongkerc87bab12013-11-25 13:53:25 -080083 { "stages", required_argument, NULL, 'g' },
Doug Zongkerb1d12632014-03-18 10:32:12 -070084 { "shutdown_after", no_argument, NULL, 'p' },
Jeff Sharkeya6e13ae2014-09-24 11:46:17 -070085 { "reason", required_argument, NULL, 'r' },
Tianjie Xu35926c42016-04-28 18:06:26 -070086 { "security", no_argument, NULL, 'e'},
Tao Bao108ab212016-06-10 10:13:32 -070087 { "wipe_ab", no_argument, NULL, 0 },
Yabin Cui6faf0262016-06-09 14:09:39 -070088 { "wipe_package_size", required_argument, NULL, 0 },
Doug Zongker988500b2009-10-06 14:41:38 -070089 { NULL, 0, NULL, 0 },
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080090};
91
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) {
Yabin Cui2f272c02016-06-24 18:22:02 -0700306 bootloader_message boot = {};
307 std::string err;
308 if (!read_bootloader_message(&boot, &err)) {
309 LOGE("%s\n", err.c_str());
310 // If fails, leave a zeroed bootloader_message.
311 memset(&boot, 0, sizeof(boot));
312 }
Doug Zongkerc87bab12013-11-25 13:53:25 -0800313 stage = strndup(boot.stage, sizeof(boot.stage));
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800314
315 if (boot.command[0] != 0 && boot.command[0] != 255) {
Mark Salyzynf3bb31c2014-03-14 09:39:48 -0700316 LOGI("Boot command: %.*s\n", (int)sizeof(boot.command), boot.command);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800317 }
318
319 if (boot.status[0] != 0 && boot.status[0] != 255) {
Mark Salyzynf3bb31c2014-03-14 09:39:48 -0700320 LOGI("Boot status: %.*s\n", (int)sizeof(boot.status), boot.status);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800321 }
322
323 // --- if arguments weren't supplied, look in the bootloader control block
324 if (*argc <= 1) {
325 boot.recovery[sizeof(boot.recovery) - 1] = '\0'; // Ensure termination
326 const char *arg = strtok(boot.recovery, "\n");
327 if (arg != NULL && !strcmp(arg, "recovery")) {
328 *argv = (char **) malloc(sizeof(char *) * MAX_ARGS);
329 (*argv)[0] = strdup(arg);
330 for (*argc = 1; *argc < MAX_ARGS; ++*argc) {
331 if ((arg = strtok(NULL, "\n")) == NULL) break;
332 (*argv)[*argc] = strdup(arg);
333 }
334 LOGI("Got arguments from boot message\n");
335 } else if (boot.recovery[0] != 0 && boot.recovery[0] != 255) {
336 LOGE("Bad boot message\n\"%.20s\"\n", boot.recovery);
337 }
338 }
339
Tao Baoae6408d2016-02-25 12:29:40 -0800340 // --- if that doesn't work, try the command file (if we have /cache).
341 if (*argc <= 1 && has_cache) {
Doug Zongkerd4208f92010-09-20 12:16:13 -0700342 FILE *fp = fopen_path(COMMAND_FILE, "r");
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800343 if (fp != NULL) {
Jin Feng93ffa752013-06-04 17:46:24 +0800344 char *token;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800345 char *argv0 = (*argv)[0];
346 *argv = (char **) malloc(sizeof(char *) * MAX_ARGS);
347 (*argv)[0] = argv0; // use the same program name
348
349 char buf[MAX_ARG_LENGTH];
350 for (*argc = 1; *argc < MAX_ARGS; ++*argc) {
351 if (!fgets(buf, sizeof(buf), fp)) break;
Jin Feng93ffa752013-06-04 17:46:24 +0800352 token = strtok(buf, "\r\n");
353 if (token != NULL) {
354 (*argv)[*argc] = strdup(token); // Strip newline.
355 } else {
356 --*argc;
357 }
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800358 }
359
360 check_and_fclose(fp, COMMAND_FILE);
361 LOGI("Got arguments from %s\n", COMMAND_FILE);
362 }
363 }
364
365 // --> write the arguments we have back into the bootloader control block
366 // always boot into recovery after this (until finish_recovery() is called)
367 strlcpy(boot.command, "boot-recovery", sizeof(boot.command));
368 strlcpy(boot.recovery, "recovery\n", sizeof(boot.recovery));
369 int i;
370 for (i = 1; i < *argc; ++i) {
371 strlcat(boot.recovery, (*argv)[i], sizeof(boot.recovery));
372 strlcat(boot.recovery, "\n", sizeof(boot.recovery));
373 }
Yabin Cui2f272c02016-06-24 18:22:02 -0700374 if (!write_bootloader_message(boot, &err)) {
375 LOGE("%s\n", err.c_str());
376 }
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800377}
378
Doug Zongker34c98df2009-08-18 12:05:45 -0700379static void
Oscar Montemayor05231562009-11-30 08:40:57 -0800380set_sdcard_update_bootloader_message() {
Yabin Cui2f272c02016-06-24 18:22:02 -0700381 bootloader_message boot = {};
Doug Zongker34c98df2009-08-18 12:05:45 -0700382 strlcpy(boot.command, "boot-recovery", sizeof(boot.command));
383 strlcpy(boot.recovery, "recovery\n", sizeof(boot.recovery));
Yabin Cui2f272c02016-06-24 18:22:02 -0700384 std::string err;
385 if (!write_bootloader_message(boot, &err)) {
386 LOGE("%s\n", err.c_str());
387 }
Doug Zongker34c98df2009-08-18 12:05:45 -0700388}
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800389
Tao Baobef39712015-05-04 18:50:27 -0700390// Read from kernel log into buffer and write out to file.
391static void save_kernel_log(const char* destination) {
392 int klog_buf_len = klogctl(KLOG_SIZE_BUFFER, 0, 0);
Patrick Tjincd055ee2014-12-09 11:26:40 -0800393 if (klog_buf_len <= 0) {
Tao Baobef39712015-05-04 18:50:27 -0700394 LOGE("Error getting klog size: %s\n", strerror(errno));
Patrick Tjincd055ee2014-12-09 11:26:40 -0800395 return;
396 }
397
Tao Baobef39712015-05-04 18:50:27 -0700398 std::string buffer(klog_buf_len, 0);
399 int n = klogctl(KLOG_READ_ALL, &buffer[0], klog_buf_len);
400 if (n == -1) {
401 LOGE("Error in reading klog: %s\n", strerror(errno));
Patrick Tjincd055ee2014-12-09 11:26:40 -0800402 return;
403 }
Tao Baobef39712015-05-04 18:50:27 -0700404 buffer.resize(n);
405 android::base::WriteStringToFile(buffer, destination);
Patrick Tjincd055ee2014-12-09 11:26:40 -0800406}
407
Mark Salyzyn13aca592016-03-09 14:58:16 -0800408// write content to the current pmsg session.
409static ssize_t __pmsg_write(const char *filename, const char *buf, size_t len) {
410 return __android_log_pmsg_file_write(LOG_ID_SYSTEM, ANDROID_LOG_INFO,
411 filename, buf, len);
412}
413
414static void copy_log_file_to_pmsg(const char* source, const char* destination) {
415 std::string content;
416 android::base::ReadFileToString(source, &content);
417 __pmsg_write(destination, content.c_str(), content.length());
418}
419
Tao Baof0124322015-04-11 02:04:11 +0000420// How much of the temp log we have copied to the copy in cache.
421static long tmplog_offset = 0;
422
Tao Baobef39712015-05-04 18:50:27 -0700423static void copy_log_file(const char* source, const char* destination, bool append) {
424 FILE* dest_fp = fopen_path(destination, append ? "a" : "w");
425 if (dest_fp == nullptr) {
Doug Zongker2c3539e2010-09-29 13:21:30 -0700426 LOGE("Can't open %s\n", destination);
427 } else {
Tao Baobef39712015-05-04 18:50:27 -0700428 FILE* source_fp = fopen(source, "r");
429 if (source_fp != nullptr) {
Tao Baof0124322015-04-11 02:04:11 +0000430 if (append) {
Tao Baobef39712015-05-04 18:50:27 -0700431 fseek(source_fp, tmplog_offset, SEEK_SET); // Since last write
Doug Zongker2c3539e2010-09-29 13:21:30 -0700432 }
433 char buf[4096];
Tao Baobef39712015-05-04 18:50:27 -0700434 size_t bytes;
435 while ((bytes = fread(buf, 1, sizeof(buf), source_fp)) != 0) {
436 fwrite(buf, 1, bytes, dest_fp);
Doug Zongker2c3539e2010-09-29 13:21:30 -0700437 }
Tao Baobef39712015-05-04 18:50:27 -0700438 if (append) {
439 tmplog_offset = ftell(source_fp);
440 }
441 check_and_fclose(source_fp, source);
Doug Zongker2c3539e2010-09-29 13:21:30 -0700442 }
Tao Baobef39712015-05-04 18:50:27 -0700443 check_and_fclose(dest_fp, destination);
Doug Zongker2c3539e2010-09-29 13:21:30 -0700444 }
445}
446
Tao Baobef39712015-05-04 18:50:27 -0700447// Rename last_log -> last_log.1 -> last_log.2 -> ... -> last_log.$max.
448// Similarly rename last_kmsg -> last_kmsg.1 -> ... -> last_kmsg.$max.
449// Overwrite any existing last_log.$max and last_kmsg.$max.
450static void rotate_logs(int max) {
Tao Bao682c34b2015-04-07 17:16:35 -0700451 // Logs should only be rotated once.
452 static bool rotated = false;
453 if (rotated) {
454 return;
455 }
456 rotated = true;
457 ensure_path_mounted(LAST_LOG_FILE);
Tao Baobef39712015-05-04 18:50:27 -0700458 ensure_path_mounted(LAST_KMSG_FILE);
Tao Bao682c34b2015-04-07 17:16:35 -0700459
Tao Bao682c34b2015-04-07 17:16:35 -0700460 for (int i = max-1; i >= 0; --i) {
Tao Bao80e46e02015-06-03 10:49:29 -0700461 std::string old_log = android::base::StringPrintf("%s", LAST_LOG_FILE);
462 if (i > 0) {
463 old_log += "." + std::to_string(i);
464 }
Tao Baobef39712015-05-04 18:50:27 -0700465 std::string new_log = android::base::StringPrintf("%s.%d", LAST_LOG_FILE, i+1);
466 // Ignore errors if old_log doesn't exist.
467 rename(old_log.c_str(), new_log.c_str());
468
Tao Bao80e46e02015-06-03 10:49:29 -0700469 std::string old_kmsg = android::base::StringPrintf("%s", LAST_KMSG_FILE);
470 if (i > 0) {
471 old_kmsg += "." + std::to_string(i);
472 }
Tao Baobef39712015-05-04 18:50:27 -0700473 std::string new_kmsg = android::base::StringPrintf("%s.%d", LAST_KMSG_FILE, i+1);
474 rename(old_kmsg.c_str(), new_kmsg.c_str());
Doug Zongkerda1ebae2013-05-16 11:23:48 -0700475 }
476}
Doug Zongker2c3539e2010-09-29 13:21:30 -0700477
Tao Bao682c34b2015-04-07 17:16:35 -0700478static void copy_logs() {
479 // We only rotate and record the log of the current session if there are
480 // actual attempts to modify the flash, such as wipes, installs from BCB
481 // or menu selections. This is to avoid unnecessary rotation (and
482 // possible deletion) of log files, if it does not do anything loggable.
483 if (!modified_flash) {
484 return;
485 }
486
Mark Salyzyn13aca592016-03-09 14:58:16 -0800487 // Always write to pmsg, this allows the OTA logs to be caught in logcat -L
488 copy_log_file_to_pmsg(TEMPORARY_LOG_FILE, LAST_LOG_FILE);
489 copy_log_file_to_pmsg(TEMPORARY_INSTALL_FILE, LAST_INSTALL_FILE);
490
491 // We can do nothing for now if there's no /cache partition.
492 if (!has_cache) {
493 return;
494 }
495
Tao Baobef39712015-05-04 18:50:27 -0700496 rotate_logs(KEEP_LOG_COUNT);
Tao Bao682c34b2015-04-07 17:16:35 -0700497
Doug Zongkerf24fd7e2013-07-02 11:43:25 -0700498 // Copy logs to cache so the system can find out what happened.
Tao Baof0124322015-04-11 02:04:11 +0000499 copy_log_file(TEMPORARY_LOG_FILE, LOG_FILE, true);
500 copy_log_file(TEMPORARY_LOG_FILE, LAST_LOG_FILE, false);
501 copy_log_file(TEMPORARY_INSTALL_FILE, LAST_INSTALL_FILE, false);
502 save_kernel_log(LAST_KMSG_FILE);
Doug Zongkerf24fd7e2013-07-02 11:43:25 -0700503 chmod(LOG_FILE, 0600);
504 chown(LOG_FILE, 1000, 1000); // system user
Tao Baof0124322015-04-11 02:04:11 +0000505 chmod(LAST_KMSG_FILE, 0600);
506 chown(LAST_KMSG_FILE, 1000, 1000); // system user
Doug Zongkerf24fd7e2013-07-02 11:43:25 -0700507 chmod(LAST_LOG_FILE, 0640);
508 chmod(LAST_INSTALL_FILE, 0644);
509 sync();
510}
511
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800512// clear the recovery command and prepare to boot a (hopefully working) system,
513// copy our log file to cache as well (for the system to read), and
514// record any intent we were asked to communicate back to the system.
515// this function is idempotent: call it as many times as you like.
516static void
Oscar Montemayor05231562009-11-30 08:40:57 -0800517finish_recovery(const char *send_intent) {
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800518 // By this point, we're ready to return to the main system...
Tao Baoae6408d2016-02-25 12:29:40 -0800519 if (send_intent != NULL && has_cache) {
Doug Zongkerd4208f92010-09-20 12:16:13 -0700520 FILE *fp = fopen_path(INTENT_FILE, "w");
Jay Freeman (saurik)619ec2f2008-11-17 01:56:05 +0000521 if (fp == NULL) {
522 LOGE("Can't open %s\n", INTENT_FILE);
523 } else {
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800524 fputs(send_intent, fp);
525 check_and_fclose(fp, INTENT_FILE);
526 }
527 }
528
Doug Zongker4f33e552012-08-23 13:16:12 -0700529 // Save the locale to cache, so if recovery is next started up
530 // without a --locale argument (eg, directly from the bootloader)
531 // it will use the last-known locale.
Mark Salyzyn13aca592016-03-09 14:58:16 -0800532 if (locale != NULL) {
533 size_t len = strlen(locale);
534 __pmsg_write(LOCALE_FILE, locale, len);
535 if (has_cache) {
536 LOGI("Saving locale \"%s\"\n", locale);
537 FILE* fp = fopen_path(LOCALE_FILE, "w");
538 fwrite(locale, 1, len, fp);
539 fflush(fp);
540 fsync(fileno(fp));
541 check_and_fclose(fp, LOCALE_FILE);
542 }
Doug Zongker4f33e552012-08-23 13:16:12 -0700543 }
544
Doug Zongkerf24fd7e2013-07-02 11:43:25 -0700545 copy_logs();
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800546
Doug Zongkere5d5ac72012-04-12 11:01:22 -0700547 // Reset to normal system boot so recovery won't cycle indefinitely.
Yabin Cui2f272c02016-06-24 18:22:02 -0700548 bootloader_message boot = {};
549 std::string err;
550 if (!write_bootloader_message(boot, &err)) {
551 LOGE("%s\n", err.c_str());
552 }
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800553
554 // Remove the command file, so recovery won't repeat indefinitely.
Tao Baoae6408d2016-02-25 12:29:40 -0800555 if (has_cache) {
556 if (ensure_path_mounted(COMMAND_FILE) != 0 || (unlink(COMMAND_FILE) && errno != ENOENT)) {
557 LOGW("Can't unlink %s\n", COMMAND_FILE);
558 }
559 ensure_path_unmounted(CACHE_ROOT);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800560 }
561
562 sync(); // For good measure.
563}
564
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700565typedef struct _saved_log_file {
566 char* name;
567 struct stat st;
568 unsigned char* data;
569 struct _saved_log_file* next;
570} saved_log_file;
571
Elliott Hughes945548e2015-06-05 17:59:56 -0700572static bool erase_volume(const char* volume) {
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700573 bool is_cache = (strcmp(volume, CACHE_ROOT) == 0);
Paul Lawrenced0db3372015-11-05 13:38:40 -0800574 bool is_data = (strcmp(volume, DATA_ROOT) == 0);
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700575
Doug Zongker02ec6b82012-08-22 17:26:40 -0700576 ui->SetBackground(RecoveryUI::ERASING);
Doug Zongker211aebc2011-10-28 15:13:10 -0700577 ui->SetProgressType(RecoveryUI::INDETERMINATE);
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700578
579 saved_log_file* head = NULL;
580
581 if (is_cache) {
Tao Baobef39712015-05-04 18:50:27 -0700582 // If we're reformatting /cache, we load any past logs
583 // (i.e. "/cache/recovery/last_*") and the current log
584 // ("/cache/recovery/log") into memory, so we can restore them after
585 // the reformat.
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700586
587 ensure_path_mounted(volume);
588
589 DIR* d;
590 struct dirent* de;
591 d = opendir(CACHE_LOG_DIR);
592 if (d) {
593 char path[PATH_MAX];
594 strcpy(path, CACHE_LOG_DIR);
595 strcat(path, "/");
596 int path_len = strlen(path);
597 while ((de = readdir(d)) != NULL) {
Tao Baobef39712015-05-04 18:50:27 -0700598 if (strncmp(de->d_name, "last_", 5) == 0 || strcmp(de->d_name, "log") == 0) {
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700599 saved_log_file* p = (saved_log_file*) malloc(sizeof(saved_log_file));
600 strcpy(path+path_len, de->d_name);
601 p->name = strdup(path);
602 if (stat(path, &(p->st)) == 0) {
603 // truncate files to 512kb
604 if (p->st.st_size > (1 << 19)) {
605 p->st.st_size = 1 << 19;
606 }
607 p->data = (unsigned char*) malloc(p->st.st_size);
608 FILE* f = fopen(path, "rb");
609 fread(p->data, 1, p->st.st_size, f);
610 fclose(f);
611 p->next = head;
612 head = p;
613 } else {
614 free(p);
615 }
616 }
617 }
618 closedir(d);
619 } else {
620 if (errno != ENOENT) {
621 printf("opendir failed: %s\n", strerror(errno));
622 }
623 }
624 }
625
Doug Zongker211aebc2011-10-28 15:13:10 -0700626 ui->Print("Formatting %s...\n", volume);
Doug Zongker2c3539e2010-09-29 13:21:30 -0700627
Doug Zongkerd0181b82011-10-19 10:51:12 -0700628 ensure_path_unmounted(volume);
Paul Lawrenced0db3372015-11-05 13:38:40 -0800629
630 int result;
631
632 if (is_data && reason && strcmp(reason, "convert_fbe") == 0) {
633 // Create convert_fbe breadcrumb file to signal to init
634 // to convert to file based encryption, not full disk encryption
Paul Lawrence661f8a62016-02-25 12:42:19 -0800635 if (mkdir(CONVERT_FBE_DIR, 0700) != 0) {
636 ui->Print("Failed to make convert_fbe dir %s\n", strerror(errno));
637 return true;
638 }
Paul Lawrenced0db3372015-11-05 13:38:40 -0800639 FILE* f = fopen(CONVERT_FBE_FILE, "wb");
640 if (!f) {
Paul Lawrence661f8a62016-02-25 12:42:19 -0800641 ui->Print("Failed to convert to file encryption %s\n", strerror(errno));
Paul Lawrenced0db3372015-11-05 13:38:40 -0800642 return true;
643 }
644 fclose(f);
645 result = format_volume(volume, CONVERT_FBE_DIR);
646 remove(CONVERT_FBE_FILE);
647 rmdir(CONVERT_FBE_DIR);
648 } else {
649 result = format_volume(volume);
650 }
Doug Zongkerd0181b82011-10-19 10:51:12 -0700651
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700652 if (is_cache) {
653 while (head) {
654 FILE* f = fopen_path(head->name, "wb");
655 if (f) {
656 fwrite(head->data, 1, head->st.st_size, f);
657 fclose(f);
658 chmod(head->name, head->st.st_mode);
659 chown(head->name, head->st.st_uid, head->st.st_gid);
660 }
661 free(head->name);
662 free(head->data);
663 saved_log_file* temp = head->next;
664 free(head);
665 head = temp;
666 }
667
Tao Baof0124322015-04-11 02:04:11 +0000668 // Any part of the log we'd copied to cache is now gone.
669 // Reset the pointer so we copy from the beginning of the temp
670 // log.
671 tmplog_offset = 0;
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700672 copy_logs();
Doug Zongker2c3539e2010-09-29 13:21:30 -0700673 }
674
Elliott Hughes945548e2015-06-05 17:59:56 -0700675 return (result == 0);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800676}
677
Doug Zongkerf93d8162009-09-22 15:16:02 -0700678static int
Doug Zongker28ce47c2011-10-28 10:33:05 -0700679get_menu_selection(const char* const * headers, const char* const * items,
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700680 int menu_only, int initial_selection, Device* device) {
Doug Zongkerf93d8162009-09-22 15:16:02 -0700681 // throw away keys pressed previously, so user doesn't
682 // accidentally trigger menu items.
Doug Zongker211aebc2011-10-28 15:13:10 -0700683 ui->FlushKeys();
Doug Zongkerf93d8162009-09-22 15:16:02 -0700684
Doug Zongker211aebc2011-10-28 15:13:10 -0700685 ui->StartMenu(headers, items, initial_selection);
Doug Zongker8674a722010-09-15 11:08:23 -0700686 int selected = initial_selection;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800687 int chosen_item = -1;
688
Doug Zongkerf93d8162009-09-22 15:16:02 -0700689 while (chosen_item < 0) {
Doug Zongker211aebc2011-10-28 15:13:10 -0700690 int key = ui->WaitKey();
691 int visible = ui->IsTextVisible();
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800692
Doug Zongker5cae4452011-01-25 13:15:30 -0800693 if (key == -1) { // ui_wait_key() timed out
Doug Zongker211aebc2011-10-28 15:13:10 -0700694 if (ui->WasTextEverVisible()) {
Doug Zongker5cae4452011-01-25 13:15:30 -0800695 continue;
696 } else {
697 LOGI("timed out waiting for key input; rebooting.\n");
Doug Zongker211aebc2011-10-28 15:13:10 -0700698 ui->EndMenu();
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700699 return 0; // XXX fixme
Doug Zongker5cae4452011-01-25 13:15:30 -0800700 }
701 }
702
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700703 int action = device->HandleMenuKey(key, visible);
Doug Zongkerddd6a282009-06-09 12:22:33 -0700704
705 if (action < 0) {
706 switch (action) {
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700707 case Device::kHighlightUp:
Elliott Hughes642aaa72015-04-10 12:47:46 -0700708 selected = ui->SelectMenu(--selected);
Doug Zongkerddd6a282009-06-09 12:22:33 -0700709 break;
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700710 case Device::kHighlightDown:
Elliott Hughes642aaa72015-04-10 12:47:46 -0700711 selected = ui->SelectMenu(++selected);
Doug Zongkerddd6a282009-06-09 12:22:33 -0700712 break;
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700713 case Device::kInvokeItem:
Doug Zongkerddd6a282009-06-09 12:22:33 -0700714 chosen_item = selected;
715 break;
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700716 case Device::kNoAction:
Doug Zongkerddd6a282009-06-09 12:22:33 -0700717 break;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800718 }
Doug Zongkerf93d8162009-09-22 15:16:02 -0700719 } else if (!menu_only) {
Doug Zongkerddd6a282009-06-09 12:22:33 -0700720 chosen_item = action;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800721 }
Doug Zongkerf93d8162009-09-22 15:16:02 -0700722 }
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800723
Doug Zongker211aebc2011-10-28 15:13:10 -0700724 ui->EndMenu();
Doug Zongkerf93d8162009-09-22 15:16:02 -0700725 return chosen_item;
726}
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800727
Doug Zongker8674a722010-09-15 11:08:23 -0700728static int compare_string(const void* a, const void* b) {
729 return strcmp(*(const char**)a, *(const char**)b);
730}
731
Doug Zongker93950222014-07-08 14:10:23 -0700732// Returns a malloc'd path, or NULL.
Elliott Hughes30694c92015-03-25 15:16:51 -0700733static char* browse_directory(const char* path, Device* device) {
Michael Ward9d2629c2011-06-23 22:14:24 -0700734 ensure_path_mounted(path);
Doug Zongkerc18eeb82010-09-21 16:49:26 -0700735
Elliott Hughes30694c92015-03-25 15:16:51 -0700736 DIR* d = opendir(path);
Doug Zongker8674a722010-09-15 11:08:23 -0700737 if (d == NULL) {
738 LOGE("error opening %s: %s\n", path, strerror(errno));
Doug Zongker93950222014-07-08 14:10:23 -0700739 return NULL;
Doug Zongker8674a722010-09-15 11:08:23 -0700740 }
741
Doug Zongker8674a722010-09-15 11:08:23 -0700742 int d_size = 0;
743 int d_alloc = 10;
Doug Zongker28ce47c2011-10-28 10:33:05 -0700744 char** dirs = (char**)malloc(d_alloc * sizeof(char*));
Doug Zongker8674a722010-09-15 11:08:23 -0700745 int z_size = 1;
746 int z_alloc = 10;
Doug Zongker28ce47c2011-10-28 10:33:05 -0700747 char** zips = (char**)malloc(z_alloc * sizeof(char*));
Doug Zongker8674a722010-09-15 11:08:23 -0700748 zips[0] = strdup("../");
749
Elliott Hughes30694c92015-03-25 15:16:51 -0700750 struct dirent* de;
Doug Zongker8674a722010-09-15 11:08:23 -0700751 while ((de = readdir(d)) != NULL) {
752 int name_len = strlen(de->d_name);
753
754 if (de->d_type == DT_DIR) {
755 // skip "." and ".." entries
756 if (name_len == 1 && de->d_name[0] == '.') continue;
757 if (name_len == 2 && de->d_name[0] == '.' &&
758 de->d_name[1] == '.') continue;
759
760 if (d_size >= d_alloc) {
761 d_alloc *= 2;
Doug Zongker28ce47c2011-10-28 10:33:05 -0700762 dirs = (char**)realloc(dirs, d_alloc * sizeof(char*));
Doug Zongker8674a722010-09-15 11:08:23 -0700763 }
Doug Zongker28ce47c2011-10-28 10:33:05 -0700764 dirs[d_size] = (char*)malloc(name_len + 2);
Doug Zongker8674a722010-09-15 11:08:23 -0700765 strcpy(dirs[d_size], de->d_name);
766 dirs[d_size][name_len] = '/';
767 dirs[d_size][name_len+1] = '\0';
768 ++d_size;
769 } else if (de->d_type == DT_REG &&
770 name_len >= 4 &&
771 strncasecmp(de->d_name + (name_len-4), ".zip", 4) == 0) {
772 if (z_size >= z_alloc) {
773 z_alloc *= 2;
Doug Zongker28ce47c2011-10-28 10:33:05 -0700774 zips = (char**)realloc(zips, z_alloc * sizeof(char*));
Doug Zongker8674a722010-09-15 11:08:23 -0700775 }
776 zips[z_size++] = strdup(de->d_name);
777 }
778 }
779 closedir(d);
780
781 qsort(dirs, d_size, sizeof(char*), compare_string);
782 qsort(zips, z_size, sizeof(char*), compare_string);
783
784 // append dirs to the zips list
785 if (d_size + z_size + 1 > z_alloc) {
786 z_alloc = d_size + z_size + 1;
Doug Zongker28ce47c2011-10-28 10:33:05 -0700787 zips = (char**)realloc(zips, z_alloc * sizeof(char*));
Doug Zongker8674a722010-09-15 11:08:23 -0700788 }
789 memcpy(zips + z_size, dirs, d_size * sizeof(char*));
790 free(dirs);
791 z_size += d_size;
792 zips[z_size] = NULL;
793
Elliott Hughes8fd86d72015-04-13 14:36:02 -0700794 const char* headers[] = { "Choose a package to install:", path, NULL };
Elliott Hughes30694c92015-03-25 15:16:51 -0700795
Doug Zongker93950222014-07-08 14:10:23 -0700796 char* result;
Doug Zongker8674a722010-09-15 11:08:23 -0700797 int chosen_item = 0;
Doug Zongker93950222014-07-08 14:10:23 -0700798 while (true) {
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700799 chosen_item = get_menu_selection(headers, zips, 1, chosen_item, device);
Doug Zongker8674a722010-09-15 11:08:23 -0700800
801 char* item = zips[chosen_item];
802 int item_len = strlen(item);
803 if (chosen_item == 0) { // item 0 is always "../"
Michael Ward9d2629c2011-06-23 22:14:24 -0700804 // go up but continue browsing (if the caller is update_directory)
Doug Zongker93950222014-07-08 14:10:23 -0700805 result = NULL;
Doug Zongker8674a722010-09-15 11:08:23 -0700806 break;
807 }
Doug Zongker93950222014-07-08 14:10:23 -0700808
809 char new_path[PATH_MAX];
810 strlcpy(new_path, path, PATH_MAX);
811 strlcat(new_path, "/", PATH_MAX);
812 strlcat(new_path, item, PATH_MAX);
813
814 if (item[item_len-1] == '/') {
815 // recurse down into a subdirectory
816 new_path[strlen(new_path)-1] = '\0'; // truncate the trailing '/'
817 result = browse_directory(new_path, device);
818 if (result) break;
819 } else {
820 // selected a zip file: return the malloc'd path to the caller.
821 result = strdup(new_path);
822 break;
823 }
824 }
Doug Zongker8674a722010-09-15 11:08:23 -0700825
Elliott Hughes30694c92015-03-25 15:16:51 -0700826 for (int i = 0; i < z_size; ++i) free(zips[i]);
Doug Zongker8674a722010-09-15 11:08:23 -0700827 free(zips);
Doug Zongker8674a722010-09-15 11:08:23 -0700828
829 return result;
830}
831
Elliott Hughes30694c92015-03-25 15:16:51 -0700832static bool yes_no(Device* device, const char* question1, const char* question2) {
Elliott Hughes8fd86d72015-04-13 14:36:02 -0700833 const char* headers[] = { question1, question2, NULL };
Elliott Hughes30694c92015-03-25 15:16:51 -0700834 const char* items[] = { " No", " Yes", NULL };
Doug Zongkerddd6a282009-06-09 12:22:33 -0700835
Elliott Hughes30694c92015-03-25 15:16:51 -0700836 int chosen_item = get_menu_selection(headers, items, 1, 0, device);
837 return (chosen_item == 1);
838}
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800839
Tao Baoe39a9bc2015-03-31 12:19:05 -0700840// Return true on success.
841static bool wipe_data(int should_confirm, Device* device) {
842 if (should_confirm && !yes_no(device, "Wipe all user data?", " THIS CAN NOT BE UNDONE!")) {
843 return false;
Doug Zongkerf93d8162009-09-22 15:16:02 -0700844 }
Doug Zongker1066d2c2009-04-01 13:57:40 -0700845
Tao Bao682c34b2015-04-07 17:16:35 -0700846 modified_flash = true;
847
Doug Zongker211aebc2011-10-28 15:13:10 -0700848 ui->Print("\n-- Wiping data...\n");
Elliott Hughes945548e2015-06-05 17:59:56 -0700849 bool success =
850 device->PreWipeData() &&
851 erase_volume("/data") &&
Tao Baoae6408d2016-02-25 12:29:40 -0800852 (has_cache ? erase_volume("/cache") : true) &&
Elliott Hughes945548e2015-06-05 17:59:56 -0700853 device->PostWipeData();
854 ui->Print("Data wipe %s.\n", success ? "complete" : "failed");
855 return success;
Doug Zongkerf93d8162009-09-22 15:16:02 -0700856}
857
Tao Baoe39a9bc2015-03-31 12:19:05 -0700858// Return true on success.
859static bool wipe_cache(bool should_confirm, Device* device) {
Tao Baoae6408d2016-02-25 12:29:40 -0800860 if (!has_cache) {
861 ui->Print("No /cache partition found.\n");
862 return false;
863 }
864
Elliott Hughes30694c92015-03-25 15:16:51 -0700865 if (should_confirm && !yes_no(device, "Wipe cache?", " THIS CAN NOT BE UNDONE!")) {
Tao Baoe39a9bc2015-03-31 12:19:05 -0700866 return false;
Elliott Hughes30694c92015-03-25 15:16:51 -0700867 }
868
Tao Bao682c34b2015-04-07 17:16:35 -0700869 modified_flash = true;
870
Elliott Hughes30694c92015-03-25 15:16:51 -0700871 ui->Print("\n-- Wiping cache...\n");
Elliott Hughes945548e2015-06-05 17:59:56 -0700872 bool success = erase_volume("/cache");
873 ui->Print("Cache wipe %s.\n", success ? "complete" : "failed");
874 return success;
Elliott Hughes30694c92015-03-25 15:16:51 -0700875}
876
Tao Baob0838182016-06-02 11:16:50 -0700877// Secure-wipe a given partition. It uses BLKSECDISCARD, if supported.
878// Otherwise, it goes with BLKDISCARD (if device supports BLKDISCARDZEROES) or
879// BLKZEROOUT.
880static bool secure_wipe_partition(const std::string& partition) {
881 unique_fd fd(TEMP_FAILURE_RETRY(open(partition.c_str(), O_WRONLY)));
882 if (fd.get() == -1) {
883 LOGE("failed to open \"%s\": %s\n", partition.c_str(), strerror(errno));
884 return false;
885 }
886
887 uint64_t range[2] = {0, 0};
888 if (ioctl(fd.get(), BLKGETSIZE64, &range[1]) == -1 || range[1] == 0) {
889 LOGE("failed to get partition size: %s\n", strerror(errno));
890 return false;
891 }
892 printf("Secure-wiping \"%s\" from %" PRIu64 " to %" PRIu64 ".\n",
893 partition.c_str(), range[0], range[1]);
894
895 printf("Trying BLKSECDISCARD...\t");
896 if (ioctl(fd.get(), BLKSECDISCARD, &range) == -1) {
897 printf("failed: %s\n", strerror(errno));
898
899 // Use BLKDISCARD if it zeroes out blocks, otherwise use BLKZEROOUT.
900 unsigned int zeroes;
901 if (ioctl(fd.get(), BLKDISCARDZEROES, &zeroes) == 0 && zeroes != 0) {
902 printf("Trying BLKDISCARD...\t");
903 if (ioctl(fd.get(), BLKDISCARD, &range) == -1) {
904 printf("failed: %s\n", strerror(errno));
905 return false;
906 }
907 } else {
908 printf("Trying BLKZEROOUT...\t");
909 if (ioctl(fd.get(), BLKZEROOUT, &range) == -1) {
910 printf("failed: %s\n", strerror(errno));
911 return false;
912 }
913 }
914 }
915
916 printf("done\n");
917 return true;
918}
919
Yabin Cui6faf0262016-06-09 14:09:39 -0700920// Check if the wipe package matches expectation:
921// 1. verify the package.
922// 2. check metadata (ota-type, pre-device and serial number if having one).
923static bool check_wipe_package(size_t wipe_package_size) {
924 if (wipe_package_size == 0) {
925 LOGE("wipe_package_size is zero.\n");
926 return false;
927 }
928 std::string wipe_package;
Yabin Cui2f272c02016-06-24 18:22:02 -0700929 std::string err_str;
930 if (!read_wipe_package(&wipe_package, wipe_package_size, &err_str)) {
931 LOGE("Failed to read wipe package: %s\n", err_str.c_str());
Yabin Cui6faf0262016-06-09 14:09:39 -0700932 return false;
933 }
934 if (!verify_package(reinterpret_cast<const unsigned char*>(wipe_package.data()),
935 wipe_package.size())) {
936 LOGE("Failed to verify package.\n");
937 return false;
938 }
939
940 // Extract metadata
941 ZipArchive zip;
942 int err = mzOpenZipArchive(reinterpret_cast<unsigned char*>(&wipe_package[0]),
943 wipe_package.size(), &zip);
944 if (err != 0) {
945 LOGE("Can't open wipe package: %s\n", err != -1 ? strerror(err) : "bad");
946 return false;
947 }
948 std::string metadata;
949 if (!read_metadata_from_package(&zip, &metadata)) {
950 mzCloseZipArchive(&zip);
951 return false;
952 }
953 mzCloseZipArchive(&zip);
954
955 // Check metadata
956 std::vector<std::string> lines = android::base::Split(metadata, "\n");
957 bool ota_type_matched = false;
958 bool device_type_matched = false;
959 bool has_serial_number = false;
960 bool serial_number_matched = false;
961 for (const auto& line : lines) {
962 if (line == "ota-type=BRICK") {
963 ota_type_matched = true;
964 } else if (android::base::StartsWith(line, "pre-device=")) {
965 std::string device_type = line.substr(strlen("pre-device="));
966 char real_device_type[PROPERTY_VALUE_MAX];
967 property_get("ro.build.product", real_device_type, "");
968 device_type_matched = (device_type == real_device_type);
969 } else if (android::base::StartsWith(line, "serialno=")) {
970 std::string serial_no = line.substr(strlen("serialno="));
971 char real_serial_no[PROPERTY_VALUE_MAX];
972 property_get("ro.serialno", real_serial_no, "");
973 has_serial_number = true;
974 serial_number_matched = (serial_no == real_serial_no);
975 }
976 }
977 return ota_type_matched && device_type_matched && (!has_serial_number || serial_number_matched);
978}
979
Tao Bao108ab212016-06-10 10:13:32 -0700980// Wipe the current A/B device, with a secure wipe of all the partitions in
981// RECOVERY_WIPE.
Yabin Cui6faf0262016-06-09 14:09:39 -0700982static bool wipe_ab_device(size_t wipe_package_size) {
Tao Baob0838182016-06-02 11:16:50 -0700983 ui->SetBackground(RecoveryUI::ERASING);
984 ui->SetProgressType(RecoveryUI::INDETERMINATE);
985
Yabin Cui6faf0262016-06-09 14:09:39 -0700986 if (!check_wipe_package(wipe_package_size)) {
987 LOGE("Failed to verify wipe package\n");
988 return false;
989 }
Tao Baob0838182016-06-02 11:16:50 -0700990 std::string partition_list;
Tao Bao108ab212016-06-10 10:13:32 -0700991 if (!android::base::ReadFileToString(RECOVERY_WIPE, &partition_list)) {
992 LOGE("failed to read \"%s\".\n", RECOVERY_WIPE);
Tao Baob0838182016-06-02 11:16:50 -0700993 return false;
994 }
995
996 std::vector<std::string> lines = android::base::Split(partition_list, "\n");
997 for (const std::string& line : lines) {
998 std::string partition = android::base::Trim(line);
999 // Ignore '#' comment or empty lines.
1000 if (android::base::StartsWith(partition, "#") || partition.empty()) {
1001 continue;
1002 }
1003
1004 // Proceed anyway even if it fails to wipe some partition.
1005 secure_wipe_partition(partition);
1006 }
1007 return true;
1008}
1009
Nick Kralevicha9ad0322014-10-22 18:38:48 -07001010static void choose_recovery_file(Device* device) {
Tao Baoae6408d2016-02-25 12:29:40 -08001011 if (!has_cache) {
1012 ui->Print("No /cache partition found.\n");
1013 return;
1014 }
1015
Elliott Hughesc0491632015-05-06 12:40:05 -07001016 // "Back" + KEEP_LOG_COUNT * 2 + terminating nullptr entry
1017 char* entries[1 + KEEP_LOG_COUNT * 2 + 1];
Nick Kralevicha9ad0322014-10-22 18:38:48 -07001018 memset(entries, 0, sizeof(entries));
1019
Tao Baobef39712015-05-04 18:50:27 -07001020 unsigned int n = 0;
Patrick Tjincd055ee2014-12-09 11:26:40 -08001021
Patrick Tjincd055ee2014-12-09 11:26:40 -08001022 // Add LAST_LOG_FILE + LAST_LOG_FILE.x
Tao Baobef39712015-05-04 18:50:27 -07001023 // Add LAST_KMSG_FILE + LAST_KMSG_FILE.x
1024 for (int i = 0; i < KEEP_LOG_COUNT; i++) {
1025 char* log_file;
Tao Bao80e46e02015-06-03 10:49:29 -07001026 int ret;
1027 ret = (i == 0) ? asprintf(&log_file, "%s", LAST_LOG_FILE) :
1028 asprintf(&log_file, "%s.%d", LAST_LOG_FILE, i);
1029 if (ret == -1) {
Nick Kralevicha9ad0322014-10-22 18:38:48 -07001030 // memory allocation failure - return early. Should never happen.
1031 return;
1032 }
Tao Baobef39712015-05-04 18:50:27 -07001033 if ((ensure_path_mounted(log_file) != 0) || (access(log_file, R_OK) == -1)) {
1034 free(log_file);
1035 } else {
1036 entries[n++] = log_file;
Nick Kralevicha9ad0322014-10-22 18:38:48 -07001037 }
Tao Baobef39712015-05-04 18:50:27 -07001038
1039 char* kmsg_file;
Tao Bao80e46e02015-06-03 10:49:29 -07001040 ret = (i == 0) ? asprintf(&kmsg_file, "%s", LAST_KMSG_FILE) :
1041 asprintf(&kmsg_file, "%s.%d", LAST_KMSG_FILE, i);
1042 if (ret == -1) {
Tao Baobef39712015-05-04 18:50:27 -07001043 // memory allocation failure - return early. Should never happen.
1044 return;
1045 }
1046 if ((ensure_path_mounted(kmsg_file) != 0) || (access(kmsg_file, R_OK) == -1)) {
1047 free(kmsg_file);
1048 } else {
1049 entries[n++] = kmsg_file;
1050 }
Nick Kralevicha9ad0322014-10-22 18:38:48 -07001051 }
1052
Elliott Hughesc0491632015-05-06 12:40:05 -07001053 entries[n++] = strdup("Back");
1054
Tao Baobef39712015-05-04 18:50:27 -07001055 const char* headers[] = { "Select file to view", nullptr };
Nick Kralevicha9ad0322014-10-22 18:38:48 -07001056
Elliott Hughes8de52072015-04-08 20:06:50 -07001057 while (true) {
Elliott Hughes30694c92015-03-25 15:16:51 -07001058 int chosen_item = get_menu_selection(headers, entries, 1, 0, device);
Elliott Hughesc0491632015-05-06 12:40:05 -07001059 if (strcmp(entries[chosen_item], "Back") == 0) break;
Elliott Hughes8de52072015-04-08 20:06:50 -07001060
Elliott Hughes8de52072015-04-08 20:06:50 -07001061 ui->ShowFile(entries[chosen_item]);
Nick Kralevicha9ad0322014-10-22 18:38:48 -07001062 }
1063
Tao Baobef39712015-05-04 18:50:27 -07001064 for (size_t i = 0; i < (sizeof(entries) / sizeof(*entries)); i++) {
Nick Kralevicha9ad0322014-10-22 18:38:48 -07001065 free(entries[i]);
1066 }
1067}
1068
Elliott Hughes498cda62016-04-14 16:49:04 -07001069static void run_graphics_test(Device* device) {
1070 // Switch to graphics screen.
1071 ui->ShowText(false);
1072
1073 ui->SetProgressType(RecoveryUI::INDETERMINATE);
1074 ui->SetBackground(RecoveryUI::INSTALLING_UPDATE);
1075 sleep(1);
1076
1077 ui->SetBackground(RecoveryUI::ERROR);
1078 sleep(1);
1079
1080 ui->SetBackground(RecoveryUI::NO_COMMAND);
1081 sleep(1);
1082
1083 ui->SetBackground(RecoveryUI::ERASING);
1084 sleep(1);
1085
1086 ui->SetBackground(RecoveryUI::INSTALLING_UPDATE);
1087
1088 ui->SetProgressType(RecoveryUI::DETERMINATE);
1089 ui->ShowProgress(1.0, 10.0);
1090 float fraction = 0.0;
1091 for (size_t i = 0; i < 100; ++i) {
1092 fraction += .01;
1093 ui->SetProgress(fraction);
1094 usleep(100000);
1095 }
1096
1097 ui->ShowText(true);
1098}
1099
Tao Baocdcf28f2016-01-13 15:05:20 -08001100// How long (in seconds) we wait for the fuse-provided package file to
1101// appear, before timing out.
1102#define SDCARD_INSTALL_TIMEOUT 10
1103
Tao Bao145d8612015-03-25 15:51:15 -07001104static int apply_from_sdcard(Device* device, bool* wipe_cache) {
Tao Bao682c34b2015-04-07 17:16:35 -07001105 modified_flash = true;
1106
Christian Poetzsch4ec58a42015-02-19 10:42:39 +00001107 if (ensure_path_mounted(SDCARD_ROOT) != 0) {
1108 ui->Print("\n-- Couldn't mount %s.\n", SDCARD_ROOT);
1109 return INSTALL_ERROR;
1110 }
1111
1112 char* path = browse_directory(SDCARD_ROOT, device);
1113 if (path == NULL) {
Elliott Hughes018ed312015-04-08 16:51:36 -07001114 ui->Print("\n-- No package file selected.\n");
caozhiyuanb4effb92015-06-10 16:46:38 +08001115 ensure_path_unmounted(SDCARD_ROOT);
Christian Poetzsch4ec58a42015-02-19 10:42:39 +00001116 return INSTALL_ERROR;
1117 }
1118
1119 ui->Print("\n-- Install %s ...\n", path);
1120 set_sdcard_update_bootloader_message();
Christian Poetzsch4ec58a42015-02-19 10:42:39 +00001121
Tao Baocdcf28f2016-01-13 15:05:20 -08001122 // We used to use fuse in a thread as opposed to a process. Since accessing
1123 // through fuse involves going from kernel to userspace to kernel, it leads
1124 // to deadlock when a page fault occurs. (Bug: 26313124)
1125 pid_t child;
1126 if ((child = fork()) == 0) {
1127 bool status = start_sdcard_fuse(path);
1128
1129 _exit(status ? EXIT_SUCCESS : EXIT_FAILURE);
1130 }
1131
1132 // FUSE_SIDELOAD_HOST_PATHNAME will start to exist once the fuse in child
1133 // process is ready.
1134 int result = INSTALL_ERROR;
1135 int status;
1136 bool waited = false;
1137 for (int i = 0; i < SDCARD_INSTALL_TIMEOUT; ++i) {
1138 if (waitpid(child, &status, WNOHANG) == -1) {
1139 result = INSTALL_ERROR;
1140 waited = true;
1141 break;
1142 }
1143
1144 struct stat sb;
1145 if (stat(FUSE_SIDELOAD_HOST_PATHNAME, &sb) == -1) {
1146 if (errno == ENOENT && i < SDCARD_INSTALL_TIMEOUT-1) {
1147 sleep(1);
1148 continue;
1149 } else {
1150 LOGE("Timed out waiting for the fuse-provided package.\n");
1151 result = INSTALL_ERROR;
1152 kill(child, SIGKILL);
1153 break;
1154 }
1155 }
1156
1157 result = install_package(FUSE_SIDELOAD_HOST_PATHNAME, wipe_cache,
Tianjie Xu16255832016-04-30 11:49:59 -07001158 TEMPORARY_INSTALL_FILE, false, 0/*retry_count*/);
Tao Baocdcf28f2016-01-13 15:05:20 -08001159 break;
1160 }
Christian Poetzsch4ec58a42015-02-19 10:42:39 +00001161
Tao Baocdcf28f2016-01-13 15:05:20 -08001162 if (!waited) {
1163 // Calling stat() on this magic filename signals the fuse
1164 // filesystem to shut down.
1165 struct stat sb;
1166 stat(FUSE_SIDELOAD_HOST_EXIT_PATHNAME, &sb);
1167
1168 waitpid(child, &status, 0);
1169 }
1170
1171 if (!WIFEXITED(status) || WEXITSTATUS(status) != 0) {
1172 LOGE("Error exit from the fuse process: %d\n", WEXITSTATUS(status));
1173 }
1174
Christian Poetzsch4ec58a42015-02-19 10:42:39 +00001175 ensure_path_unmounted(SDCARD_ROOT);
Tao Baocdcf28f2016-01-13 15:05:20 -08001176 return result;
Christian Poetzsch4ec58a42015-02-19 10:42:39 +00001177}
1178
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001179// Return REBOOT, SHUTDOWN, or REBOOT_BOOTLOADER. Returning NO_ACTION
1180// means to take the default, which is to reboot or shutdown depending
1181// on if the --shutdown_after flag was passed to recovery.
1182static Device::BuiltinAction
Doug Zongker6c8553d2012-09-24 10:40:47 -07001183prompt_and_wait(Device* device, int status) {
Doug Zongkerf93d8162009-09-22 15:16:02 -07001184 for (;;) {
1185 finish_recovery(NULL);
Doug Zongker6c8553d2012-09-24 10:40:47 -07001186 switch (status) {
1187 case INSTALL_SUCCESS:
1188 case INSTALL_NONE:
1189 ui->SetBackground(RecoveryUI::NO_COMMAND);
1190 break;
1191
1192 case INSTALL_ERROR:
1193 case INSTALL_CORRUPT:
1194 ui->SetBackground(RecoveryUI::ERROR);
1195 break;
1196 }
Doug Zongker211aebc2011-10-28 15:13:10 -07001197 ui->SetProgressType(RecoveryUI::EMPTY);
Doug Zongkerf93d8162009-09-22 15:16:02 -07001198
Elliott Hughes8fd86d72015-04-13 14:36:02 -07001199 int chosen_item = get_menu_selection(nullptr, device->GetMenuItems(), 0, 0, device);
Doug Zongkerf93d8162009-09-22 15:16:02 -07001200
1201 // device-specific code may take some action here. It may
1202 // return one of the core actions handled in the switch
1203 // statement below.
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001204 Device::BuiltinAction chosen_action = device->InvokeMenuItem(chosen_item);
Doug Zongkerf93d8162009-09-22 15:16:02 -07001205
Elliott Hughes30694c92015-03-25 15:16:51 -07001206 bool should_wipe_cache = false;
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001207 switch (chosen_action) {
1208 case Device::NO_ACTION:
1209 break;
1210
Doug Zongkerdaefc1d2011-10-31 09:34:15 -07001211 case Device::REBOOT:
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001212 case Device::SHUTDOWN:
1213 case Device::REBOOT_BOOTLOADER:
1214 return chosen_action;
Doug Zongkerf93d8162009-09-22 15:16:02 -07001215
Doug Zongkerdaefc1d2011-10-31 09:34:15 -07001216 case Device::WIPE_DATA:
1217 wipe_data(ui->IsTextVisible(), device);
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001218 if (!ui->IsTextVisible()) return Device::NO_ACTION;
Doug Zongkerf93d8162009-09-22 15:16:02 -07001219 break;
1220
Doug Zongkerdaefc1d2011-10-31 09:34:15 -07001221 case Device::WIPE_CACHE:
Elliott Hughes30694c92015-03-25 15:16:51 -07001222 wipe_cache(ui->IsTextVisible(), device);
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001223 if (!ui->IsTextVisible()) return Device::NO_ACTION;
Doug Zongkerf93d8162009-09-22 15:16:02 -07001224 break;
1225
Christian Poetzsch4ec58a42015-02-19 10:42:39 +00001226 case Device::APPLY_ADB_SIDELOAD:
Elliott Hughesec283402015-04-10 10:01:53 -07001227 case Device::APPLY_SDCARD:
Christian Poetzsch4ec58a42015-02-19 10:42:39 +00001228 {
1229 bool adb = (chosen_action == Device::APPLY_ADB_SIDELOAD);
1230 if (adb) {
Elliott Hughes30694c92015-03-25 15:16:51 -07001231 status = apply_from_adb(ui, &should_wipe_cache, TEMPORARY_INSTALL_FILE);
Doug Zongkerd0181b82011-10-19 10:51:12 -07001232 } else {
Elliott Hughes30694c92015-03-25 15:16:51 -07001233 status = apply_from_sdcard(device, &should_wipe_cache);
Doug Zongkerd0181b82011-10-19 10:51:12 -07001234 }
Doug Zongker945fc682014-07-10 10:50:39 -07001235
Elliott Hughes30694c92015-03-25 15:16:51 -07001236 if (status == INSTALL_SUCCESS && should_wipe_cache) {
Tao Baoe39a9bc2015-03-31 12:19:05 -07001237 if (!wipe_cache(false, device)) {
1238 status = INSTALL_ERROR;
1239 }
Christian Poetzsch4ec58a42015-02-19 10:42:39 +00001240 }
1241
Tao Baoc679f932015-03-30 09:43:49 -07001242 if (status != INSTALL_SUCCESS) {
1243 ui->SetBackground(RecoveryUI::ERROR);
1244 ui->Print("Installation aborted.\n");
1245 copy_logs();
1246 } else if (!ui->IsTextVisible()) {
1247 return Device::NO_ACTION; // reboot if logs aren't visible
1248 } else {
1249 ui->Print("\nInstall from %s complete.\n", adb ? "ADB" : "SD card");
Doug Zongker8674a722010-09-15 11:08:23 -07001250 }
Doug Zongkerf93d8162009-09-22 15:16:02 -07001251 }
1252 break;
Doug Zongkerdaefc1d2011-10-31 09:34:15 -07001253
Elliott Hughesec283402015-04-10 10:01:53 -07001254 case Device::VIEW_RECOVERY_LOGS:
1255 choose_recovery_file(device);
Michael Ward9d2629c2011-06-23 22:14:24 -07001256 break;
Doug Zongker9270a202012-01-09 15:16:13 -08001257
Elliott Hughes498cda62016-04-14 16:49:04 -07001258 case Device::RUN_GRAPHICS_TEST:
1259 run_graphics_test(device);
1260 break;
1261
Elliott Hughesec283402015-04-10 10:01:53 -07001262 case Device::MOUNT_SYSTEM:
Tao Baoabb8f772015-07-30 14:43:27 -07001263 char system_root_image[PROPERTY_VALUE_MAX];
1264 property_get("ro.build.system_root_image", system_root_image, "");
1265
1266 // For a system image built with the root directory (i.e.
1267 // system_root_image == "true"), we mount it to /system_root, and symlink /system
1268 // to /system_root/system to make adb shell work (the symlink is created through
1269 // the build system).
1270 // Bug: 22855115
1271 if (strcmp(system_root_image, "true") == 0) {
1272 if (ensure_path_mounted_at("/", "/system_root") != -1) {
1273 ui->Print("Mounted /system.\n");
1274 }
1275 } else {
1276 if (ensure_path_mounted("/system") != -1) {
1277 ui->Print("Mounted /system.\n");
1278 }
Elliott Hughesec283402015-04-10 10:01:53 -07001279 }
Tao Baoabb8f772015-07-30 14:43:27 -07001280
Nick Kralevicha9ad0322014-10-22 18:38:48 -07001281 break;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001282 }
1283 }
1284}
1285
1286static void
Oscar Montemayor05231562009-11-30 08:40:57 -08001287print_property(const char *key, const char *name, void *cookie) {
Doug Zongker56c51052010-07-01 09:18:44 -07001288 printf("%s=%s\n", key, name);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001289}
1290
Doug Zongker02ec6b82012-08-22 17:26:40 -07001291static void
1292load_locale_from_cache() {
1293 FILE* fp = fopen_path(LOCALE_FILE, "r");
1294 char buffer[80];
1295 if (fp != NULL) {
1296 fgets(buffer, sizeof(buffer), fp);
1297 int j = 0;
Doug Zongker5fa8c232012-09-18 12:37:02 -07001298 unsigned int i;
Doug Zongker02ec6b82012-08-22 17:26:40 -07001299 for (i = 0; i < sizeof(buffer) && buffer[i]; ++i) {
1300 if (!isspace(buffer[i])) {
1301 buffer[j++] = buffer[i];
1302 }
1303 }
1304 buffer[j] = 0;
1305 locale = strdup(buffer);
Devin Kim6016d082012-10-08 09:47:37 -07001306 check_and_fclose(fp, LOCALE_FILE);
Doug Zongker02ec6b82012-08-22 17:26:40 -07001307 }
1308}
1309
Doug Zongker7c3ae452013-05-14 11:03:02 -07001310static RecoveryUI* gCurrentUI = NULL;
1311
1312void
1313ui_print(const char* format, ...) {
1314 char buffer[256];
1315
1316 va_list ap;
1317 va_start(ap, format);
1318 vsnprintf(buffer, sizeof(buffer), format, ap);
1319 va_end(ap);
1320
1321 if (gCurrentUI != NULL) {
1322 gCurrentUI->Print("%s", buffer);
1323 } else {
1324 fputs(buffer, stdout);
1325 }
1326}
1327
Yabin Cui99281df2016-02-17 12:21:52 -08001328static bool is_battery_ok() {
1329 struct healthd_config healthd_config = {
1330 .batteryStatusPath = android::String8(android::String8::kEmptyString),
1331 .batteryHealthPath = android::String8(android::String8::kEmptyString),
1332 .batteryPresentPath = android::String8(android::String8::kEmptyString),
1333 .batteryCapacityPath = android::String8(android::String8::kEmptyString),
1334 .batteryVoltagePath = android::String8(android::String8::kEmptyString),
1335 .batteryTemperaturePath = android::String8(android::String8::kEmptyString),
1336 .batteryTechnologyPath = android::String8(android::String8::kEmptyString),
1337 .batteryCurrentNowPath = android::String8(android::String8::kEmptyString),
1338 .batteryCurrentAvgPath = android::String8(android::String8::kEmptyString),
1339 .batteryChargeCounterPath = android::String8(android::String8::kEmptyString),
1340 .batteryFullChargePath = android::String8(android::String8::kEmptyString),
1341 .batteryCycleCountPath = android::String8(android::String8::kEmptyString),
1342 .energyCounter = NULL,
1343 .boot_min_cap = 0,
1344 .screen_on = NULL
1345 };
1346 healthd_board_init(&healthd_config);
1347
1348 android::BatteryMonitor monitor;
1349 monitor.init(&healthd_config);
1350
1351 int wait_second = 0;
1352 while (true) {
1353 int charge_status = monitor.getChargeStatus();
1354 // Treat unknown status as charged.
1355 bool charged = (charge_status != android::BATTERY_STATUS_DISCHARGING &&
1356 charge_status != android::BATTERY_STATUS_NOT_CHARGING);
1357 android::BatteryProperty capacity;
1358 android::status_t status = monitor.getProperty(android::BATTERY_PROP_CAPACITY, &capacity);
1359 ui_print("charge_status %d, charged %d, status %d, capacity %lld\n", charge_status,
1360 charged, status, capacity.valueInt64);
1361 // At startup, the battery drivers in devices like N5X/N6P take some time to load
1362 // the battery profile. Before the load finishes, it reports value 50 as a fake
1363 // capacity. BATTERY_READ_TIMEOUT_IN_SEC is set that the battery drivers are expected
1364 // to finish loading the battery profile earlier than 10 seconds after kernel startup.
1365 if (status == 0 && capacity.valueInt64 == 50) {
1366 if (wait_second < BATTERY_READ_TIMEOUT_IN_SEC) {
1367 sleep(1);
1368 wait_second++;
1369 continue;
1370 }
1371 }
1372 // If we can't read battery percentage, it may be a device without battery. In this
1373 // situation, use 100 as a fake battery percentage.
1374 if (status != 0) {
1375 capacity.valueInt64 = 100;
1376 }
1377 return (charged && capacity.valueInt64 >= BATTERY_WITH_CHARGER_OK_PERCENTAGE) ||
1378 (!charged && capacity.valueInt64 >= BATTERY_OK_PERCENTAGE);
1379 }
1380}
1381
Tianjie Xufa12b972016-02-05 18:25:58 -08001382static void set_retry_bootloader_message(int retry_count, int argc, char** argv) {
Yabin Cui2f272c02016-06-24 18:22:02 -07001383 bootloader_message boot = {};
Tianjie Xufa12b972016-02-05 18:25:58 -08001384 strlcpy(boot.command, "boot-recovery", sizeof(boot.command));
1385 strlcpy(boot.recovery, "recovery\n", sizeof(boot.recovery));
1386
1387 for (int i = 1; i < argc; ++i) {
1388 if (strstr(argv[i], "retry_count") == nullptr) {
1389 strlcat(boot.recovery, argv[i], sizeof(boot.recovery));
1390 strlcat(boot.recovery, "\n", sizeof(boot.recovery));
1391 }
1392 }
1393
1394 // Initialize counter to 1 if it's not in BCB, otherwise increment it by 1.
1395 if (retry_count == 0) {
1396 strlcat(boot.recovery, "--retry_count=1\n", sizeof(boot.recovery));
1397 } else {
1398 char buffer[20];
1399 snprintf(buffer, sizeof(buffer), "--retry_count=%d\n", retry_count+1);
1400 strlcat(boot.recovery, buffer, sizeof(boot.recovery));
1401 }
Yabin Cui2f272c02016-06-24 18:22:02 -07001402 std::string err;
1403 if (!write_bootloader_message(boot, &err)) {
1404 LOGE("%s\n", err.c_str());
1405 }
Tianjie Xufa12b972016-02-05 18:25:58 -08001406}
1407
Mark Salyzyn13aca592016-03-09 14:58:16 -08001408static ssize_t logbasename(
1409 log_id_t /* logId */,
1410 char /* prio */,
1411 const char *filename,
1412 const char * /* buf */, size_t len,
1413 void *arg) {
1414 if (strstr(LAST_KMSG_FILE, filename) ||
1415 strstr(LAST_LOG_FILE, filename)) {
1416 bool *doRotate = reinterpret_cast<bool *>(arg);
1417 *doRotate = true;
1418 }
1419 return len;
1420}
1421
1422static ssize_t logrotate(
1423 log_id_t logId,
1424 char prio,
1425 const char *filename,
1426 const char *buf, size_t len,
1427 void *arg) {
1428 bool *doRotate = reinterpret_cast<bool *>(arg);
1429 if (!*doRotate) {
1430 return __android_log_pmsg_file_write(logId, prio, filename, buf, len);
1431 }
1432
1433 std::string name(filename);
1434 size_t dot = name.find_last_of(".");
1435 std::string sub = name.substr(0, dot);
1436
1437 if (!strstr(LAST_KMSG_FILE, sub.c_str()) &&
1438 !strstr(LAST_LOG_FILE, sub.c_str())) {
1439 return __android_log_pmsg_file_write(logId, prio, filename, buf, len);
1440 }
1441
1442 // filename rotation
1443 if (dot == std::string::npos) {
1444 name += ".1";
1445 } else {
1446 std::string number = name.substr(dot + 1);
1447 if (!isdigit(number.data()[0])) {
1448 name += ".1";
1449 } else {
1450 unsigned long long i = std::stoull(number);
1451 name = sub + "." + std::to_string(i + 1);
1452 }
1453 }
1454
1455 return __android_log_pmsg_file_write(logId, prio, name.c_str(), buf, len);
1456}
1457
Yabin Cui99281df2016-02-17 12:21:52 -08001458int main(int argc, char **argv) {
Mark Salyzyn13aca592016-03-09 14:58:16 -08001459 // Take last pmsg contents and rewrite it to the current pmsg session.
1460 static const char filter[] = "recovery/";
1461 // Do we need to rotate?
1462 bool doRotate = false;
1463 __android_log_pmsg_file_read(
1464 LOG_ID_SYSTEM, ANDROID_LOG_INFO, filter,
1465 logbasename, &doRotate);
1466 // Take action to refresh pmsg contents
1467 __android_log_pmsg_file_read(
1468 LOG_ID_SYSTEM, ANDROID_LOG_INFO, filter,
1469 logrotate, &doRotate);
1470
Doug Zongker9270a202012-01-09 15:16:13 -08001471 // If this binary is started with the single argument "--adbd",
1472 // instead of being the normal recovery binary, it turns into kind
1473 // of a stripped-down version of adbd that only supports the
1474 // 'sideload' command. Note this must be a real argument, not
1475 // anything in the command file or bootloader control block; the
1476 // only way recovery should be run with this argument is when it
1477 // starts a copy of itself from the apply_from_adb() function.
1478 if (argc == 2 && strcmp(argv[1], "--adbd") == 0) {
Elliott Hughes9f4fdb32015-11-20 13:03:24 -08001479 adb_server_main(0, DEFAULT_ADB_PORT, -1);
Doug Zongker9270a202012-01-09 15:16:13 -08001480 return 0;
1481 }
1482
Tao Bao04ca4262015-09-10 15:32:24 -07001483 time_t start = time(NULL);
1484
1485 // redirect_stdio should be called only in non-sideload mode. Otherwise
1486 // we may have two logger instances with different timestamps.
1487 redirect_stdio(TEMPORARY_LOG_FILE);
1488
Doug Zongker19a8e242014-01-21 09:25:41 -08001489 printf("Starting recovery (pid %d) on %s", getpid(), ctime(&start));
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001490
Doug Zongkerd4208f92010-09-20 12:16:13 -07001491 load_volume_table();
Tao Baoae6408d2016-02-25 12:29:40 -08001492 has_cache = volume_for_path(CACHE_ROOT) != nullptr;
1493
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001494 get_args(&argc, &argv);
1495
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001496 const char *send_intent = NULL;
1497 const char *update_package = NULL;
Tao Baoe39a9bc2015-03-31 12:19:05 -07001498 bool should_wipe_data = false;
Tao Baoc679f932015-03-30 09:43:49 -07001499 bool should_wipe_cache = false;
Tao Bao108ab212016-06-10 10:13:32 -07001500 bool should_wipe_ab = false;
Yabin Cui6faf0262016-06-09 14:09:39 -07001501 size_t wipe_package_size = 0;
Tao Bao145d8612015-03-25 15:51:15 -07001502 bool show_text = false;
Tao Baoc679f932015-03-30 09:43:49 -07001503 bool sideload = false;
1504 bool sideload_auto_reboot = false;
Doug Zongkere5d5ac72012-04-12 11:01:22 -07001505 bool just_exit = false;
Doug Zongkerb1d12632014-03-18 10:32:12 -07001506 bool shutdown_after = false;
Tianjie Xufa12b972016-02-05 18:25:58 -08001507 int retry_count = 0;
Tianjie Xu35926c42016-04-28 18:06:26 -07001508 bool security_update = false;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001509
1510 int arg;
Tao Baob0838182016-06-02 11:16:50 -07001511 int option_index;
1512 while ((arg = getopt_long(argc, argv, "", OPTIONS, &option_index)) != -1) {
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001513 switch (arg) {
Tao Baoc679f932015-03-30 09:43:49 -07001514 case 'i': send_intent = optarg; break;
Tianjie Xufa12b972016-02-05 18:25:58 -08001515 case 'n': android::base::ParseInt(optarg, &retry_count, 0); break;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001516 case 'u': update_package = optarg; break;
Tao Baoe39a9bc2015-03-31 12:19:05 -07001517 case 'w': should_wipe_data = true; break;
Tao Baoc679f932015-03-30 09:43:49 -07001518 case 'c': should_wipe_cache = true; break;
Tao Bao145d8612015-03-25 15:51:15 -07001519 case 't': show_text = true; break;
Tao Baoc679f932015-03-30 09:43:49 -07001520 case 's': sideload = true; break;
1521 case 'a': sideload = true; sideload_auto_reboot = true; break;
Doug Zongkere5d5ac72012-04-12 11:01:22 -07001522 case 'x': just_exit = true; break;
Doug Zongker02ec6b82012-08-22 17:26:40 -07001523 case 'l': locale = optarg; break;
Doug Zongkerc87bab12013-11-25 13:53:25 -08001524 case 'g': {
1525 if (stage == NULL || *stage == '\0') {
1526 char buffer[20] = "1/";
1527 strncat(buffer, optarg, sizeof(buffer)-3);
1528 stage = strdup(buffer);
1529 }
1530 break;
1531 }
Doug Zongkerb1d12632014-03-18 10:32:12 -07001532 case 'p': shutdown_after = true; break;
Jeff Sharkeya6e13ae2014-09-24 11:46:17 -07001533 case 'r': reason = optarg; break;
Tianjie Xu35926c42016-04-28 18:06:26 -07001534 case 'e': security_update = true; break;
Tao Baob0838182016-06-02 11:16:50 -07001535 case 0: {
Tao Bao108ab212016-06-10 10:13:32 -07001536 if (strcmp(OPTIONS[option_index].name, "wipe_ab") == 0) {
1537 should_wipe_ab = true;
Tao Baob0838182016-06-02 11:16:50 -07001538 break;
Yabin Cui6faf0262016-06-09 14:09:39 -07001539 } else if (strcmp(OPTIONS[option_index].name, "wipe_package_size") == 0) {
1540 android::base::ParseUint(optarg, &wipe_package_size);
1541 break;
Tao Baob0838182016-06-02 11:16:50 -07001542 }
1543 break;
1544 }
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001545 case '?':
1546 LOGE("Invalid command argument\n");
1547 continue;
1548 }
1549 }
1550
Tao Baoae6408d2016-02-25 12:29:40 -08001551 if (locale == nullptr && has_cache) {
Doug Zongker02ec6b82012-08-22 17:26:40 -07001552 load_locale_from_cache();
1553 }
1554 printf("locale is [%s]\n", locale);
Doug Zongker0d32f252014-02-13 15:07:56 -08001555 printf("stage is [%s]\n", stage);
Jeff Sharkeya6e13ae2014-09-24 11:46:17 -07001556 printf("reason is [%s]\n", reason);
Doug Zongker02ec6b82012-08-22 17:26:40 -07001557
1558 Device* device = make_device();
1559 ui = device->GetUI();
Doug Zongker7c3ae452013-05-14 11:03:02 -07001560 gCurrentUI = ui;
Doug Zongker02ec6b82012-08-22 17:26:40 -07001561
Doug Zongker5fa8c232012-09-18 12:37:02 -07001562 ui->SetLocale(locale);
Doug Zongker02ec6b82012-08-22 17:26:40 -07001563 ui->Init();
Tianjie Xu35926c42016-04-28 18:06:26 -07001564 // Set background string to "installing security update" for security update,
1565 // otherwise set it to "installing system update".
1566 ui->SetSystemUpdateText(security_update);
Doug Zongkerc87bab12013-11-25 13:53:25 -08001567
1568 int st_cur, st_max;
1569 if (stage != NULL && sscanf(stage, "%d/%d", &st_cur, &st_max) == 2) {
1570 ui->SetStage(st_cur, st_max);
1571 }
1572
Doug Zongker02ec6b82012-08-22 17:26:40 -07001573 ui->SetBackground(RecoveryUI::NONE);
1574 if (show_text) ui->ShowText(true);
1575
Stephen Smalley779701d2012-02-09 14:13:23 -05001576 struct selinux_opt seopts[] = {
1577 { SELABEL_OPT_PATH, "/file_contexts" }
1578 };
1579
1580 sehandle = selabel_open(SELABEL_CTX_FILE, seopts, 1);
1581
1582 if (!sehandle) {
Doug Zongkerfafc85b2013-07-09 12:29:45 -07001583 ui->Print("Warning: No file_contexts\n");
Stephen Smalley779701d2012-02-09 14:13:23 -05001584 }
Stephen Smalley779701d2012-02-09 14:13:23 -05001585
Doug Zongkerdaefc1d2011-10-31 09:34:15 -07001586 device->StartRecovery();
Doug Zongkerefa1bab2010-02-01 15:59:12 -08001587
Doug Zongker56c51052010-07-01 09:18:44 -07001588 printf("Command:");
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001589 for (arg = 0; arg < argc; arg++) {
Doug Zongker56c51052010-07-01 09:18:44 -07001590 printf(" \"%s\"", argv[arg]);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001591 }
Doug Zongker9b125b02010-09-22 12:01:37 -07001592 printf("\n");
1593
1594 if (update_package) {
1595 // For backwards compatibility on the cache partition only, if
1596 // we're given an old 'root' path "CACHE:foo", change it to
1597 // "/cache/foo".
1598 if (strncmp(update_package, "CACHE:", 6) == 0) {
1599 int len = strlen(update_package) + 10;
Doug Zongker28ce47c2011-10-28 10:33:05 -07001600 char* modified_path = (char*)malloc(len);
Jeremy Compostella1b7d9b72015-07-29 17:17:03 +02001601 if (modified_path) {
1602 strlcpy(modified_path, "/cache/", len);
1603 strlcat(modified_path, update_package+6, len);
1604 printf("(replacing path \"%s\" with \"%s\")\n",
1605 update_package, modified_path);
1606 update_package = modified_path;
1607 }
1608 else
1609 printf("modified_path allocation failed\n");
Doug Zongker9b125b02010-09-22 12:01:37 -07001610 }
1611 }
1612 printf("\n");
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001613
1614 property_list(print_property, NULL);
Doug Zongker56c51052010-07-01 09:18:44 -07001615 printf("\n");
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001616
Elliott Hughesbb78d622015-04-09 20:51:08 -07001617 ui->Print("Supported API: %d\n", RECOVERY_API_VERSION);
1618
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001619 int status = INSTALL_SUCCESS;
1620
Doug Zongker540d57f2011-01-18 13:36:58 -08001621 if (update_package != NULL) {
Tao Bao56870012016-04-29 15:37:05 -07001622 // It's not entirely true that we will modify the flash. But we want
1623 // to log the update attempt since update_package is non-NULL.
1624 modified_flash = true;
1625
Yabin Cui99281df2016-02-17 12:21:52 -08001626 if (!is_battery_ok()) {
1627 ui->Print("battery capacity is not enough for installing package, needed is %d%%\n",
1628 BATTERY_OK_PERCENTAGE);
Tianjie Xu16255832016-04-30 11:49:59 -07001629 // Log the error code to last_install when installation skips due to
1630 // low battery.
1631 FILE* install_log = fopen_path(LAST_INSTALL_FILE, "w");
1632 if (install_log != nullptr) {
1633 fprintf(install_log, "%s\n", update_package);
1634 fprintf(install_log, "0\n");
1635 fprintf(install_log, "error: %d\n", kLowBattery);
1636 fclose(install_log);
1637 } else {
1638 LOGE("failed to open last_install: %s\n", strerror(errno));
1639 }
Yabin Cui99281df2016-02-17 12:21:52 -08001640 status = INSTALL_SKIPPED;
1641 } else {
1642 status = install_package(update_package, &should_wipe_cache,
Tianjie Xu16255832016-04-30 11:49:59 -07001643 TEMPORARY_INSTALL_FILE, true, retry_count);
Yabin Cui99281df2016-02-17 12:21:52 -08001644 if (status == INSTALL_SUCCESS && should_wipe_cache) {
1645 wipe_cache(false, device);
1646 }
1647 if (status != INSTALL_SUCCESS) {
1648 ui->Print("Installation aborted.\n");
Tianjie Xufa12b972016-02-05 18:25:58 -08001649 // When I/O error happens, reboot and retry installation EIO_RETRY_COUNT
1650 // times before we abandon this OTA update.
1651 if (status == INSTALL_RETRY && retry_count < EIO_RETRY_COUNT) {
1652 copy_logs();
1653 set_retry_bootloader_message(retry_count, argc, argv);
1654 // Print retry count on screen.
1655 ui->Print("Retry attempt %d\n", retry_count);
Doug Zongker7c3ae452013-05-14 11:03:02 -07001656
Tianjie Xufa12b972016-02-05 18:25:58 -08001657 // Reboot and retry the update
1658 int ret = property_set(ANDROID_RB_PROPERTY, "reboot,recovery");
1659 if (ret < 0) {
1660 ui->Print("Reboot failed\n");
1661 } else {
1662 while (true) {
1663 pause();
1664 }
1665 }
1666 }
Yabin Cui99281df2016-02-17 12:21:52 -08001667 // If this is an eng or userdebug build, then automatically
1668 // turn the text display on if the script fails so the error
1669 // message is visible.
1670 if (is_ro_debuggable()) {
1671 ui->ShowText(true);
1672 }
Doug Zongker7c3ae452013-05-14 11:03:02 -07001673 }
1674 }
Tao Baoe39a9bc2015-03-31 12:19:05 -07001675 } else if (should_wipe_data) {
1676 if (!wipe_data(false, device)) {
1677 status = INSTALL_ERROR;
1678 }
Tao Baoc679f932015-03-30 09:43:49 -07001679 } else if (should_wipe_cache) {
Tao Baoe39a9bc2015-03-31 12:19:05 -07001680 if (!wipe_cache(false, device)) {
1681 status = INSTALL_ERROR;
1682 }
Tao Bao108ab212016-06-10 10:13:32 -07001683 } else if (should_wipe_ab) {
Yabin Cui6faf0262016-06-09 14:09:39 -07001684 if (!wipe_ab_device(wipe_package_size)) {
Tao Baob0838182016-06-02 11:16:50 -07001685 status = INSTALL_ERROR;
1686 }
Tao Baoc679f932015-03-30 09:43:49 -07001687 } else if (sideload) {
1688 // 'adb reboot sideload' acts the same as user presses key combinations
1689 // to enter the sideload mode. When 'sideload-auto-reboot' is used, text
1690 // display will NOT be turned on by default. And it will reboot after
1691 // sideload finishes even if there are errors. Unless one turns on the
1692 // text display during the installation. This is to enable automated
1693 // testing.
1694 if (!sideload_auto_reboot) {
1695 ui->ShowText(true);
1696 }
1697 status = apply_from_adb(ui, &should_wipe_cache, TEMPORARY_INSTALL_FILE);
1698 if (status == INSTALL_SUCCESS && should_wipe_cache) {
Tao Baoe39a9bc2015-03-31 12:19:05 -07001699 if (!wipe_cache(false, device)) {
1700 status = INSTALL_ERROR;
1701 }
Tao Baoc679f932015-03-30 09:43:49 -07001702 }
1703 ui->Print("\nInstall from ADB complete (status: %d).\n", status);
1704 if (sideload_auto_reboot) {
1705 ui->Print("Rebooting automatically.\n");
1706 }
Doug Zongkere5d5ac72012-04-12 11:01:22 -07001707 } else if (!just_exit) {
Doug Zongker02ec6b82012-08-22 17:26:40 -07001708 status = INSTALL_NONE; // No command specified
1709 ui->SetBackground(RecoveryUI::NO_COMMAND);
Tao Bao785d22c2015-05-04 09:34:29 -07001710
1711 // http://b/17489952
1712 // If this is an eng or userdebug build, automatically turn on the
1713 // text display if no command is specified.
1714 if (is_ro_debuggable()) {
1715 ui->ShowText(true);
1716 }
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001717 }
1718
Tao Baoc679f932015-03-30 09:43:49 -07001719 if (!sideload_auto_reboot && (status == INSTALL_ERROR || status == INSTALL_CORRUPT)) {
Doug Zongkerf24fd7e2013-07-02 11:43:25 -07001720 copy_logs();
Doug Zongker02ec6b82012-08-22 17:26:40 -07001721 ui->SetBackground(RecoveryUI::ERROR);
1722 }
Tao Baoc679f932015-03-30 09:43:49 -07001723
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001724 Device::BuiltinAction after = shutdown_after ? Device::SHUTDOWN : Device::REBOOT;
Yabin Cui99281df2016-02-17 12:21:52 -08001725 if ((status != INSTALL_SUCCESS && status != INSTALL_SKIPPED && !sideload_auto_reboot) ||
1726 ui->IsTextVisible()) {
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001727 Device::BuiltinAction temp = prompt_and_wait(device, status);
Tao Baoc679f932015-03-30 09:43:49 -07001728 if (temp != Device::NO_ACTION) {
1729 after = temp;
1730 }
Doug Zongker8674a722010-09-15 11:08:23 -07001731 }
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001732
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001733 // Save logs and clean up before rebooting or shutting down.
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001734 finish_recovery(send_intent);
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001735
1736 switch (after) {
1737 case Device::SHUTDOWN:
1738 ui->Print("Shutting down...\n");
1739 property_set(ANDROID_RB_PROPERTY, "shutdown,");
1740 break;
1741
1742 case Device::REBOOT_BOOTLOADER:
1743 ui->Print("Rebooting to bootloader...\n");
1744 property_set(ANDROID_RB_PROPERTY, "reboot,bootloader");
1745 break;
1746
1747 default:
1748 ui->Print("Rebooting...\n");
1749 property_set(ANDROID_RB_PROPERTY, "reboot,");
1750 break;
Doug Zongkerb1d12632014-03-18 10:32:12 -07001751 }
Tao Bao75238632015-05-27 14:46:17 -07001752 while (true) {
1753 pause();
1754 }
1755 // Should be unreachable.
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001756 return EXIT_SUCCESS;
1757}