blob: 3b1305e6165474b92ab675800a31bb15ca3a0f3e [file] [log] [blame]
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001/*
2 * Copyright (C) 2007 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17#include <ctype.h>
Doug Zongker7c3ae452013-05-14 11:03:02 -070018#include <dirent.h>
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080019#include <errno.h>
20#include <fcntl.h>
21#include <getopt.h>
Tao Bao862a4c12016-06-02 11:16:50 -070022#include <inttypes.h>
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080023#include <limits.h>
Tao Bao862a4c12016-06-02 11:16:50 -070024#include <linux/fs.h>
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080025#include <linux/input.h>
Doug Zongker7c3ae452013-05-14 11:03:02 -070026#include <stdarg.h>
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080027#include <stdio.h>
28#include <stdlib.h>
29#include <string.h>
Patrick Tjincd055ee2014-12-09 11:26:40 -080030#include <sys/klog.h>
Doug Zongker23ceeea2010-07-08 17:27:55 -070031#include <sys/stat.h>
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080032#include <sys/types.h>
Tao Baocdcf28f2016-01-13 15:05:20 -080033#include <sys/wait.h>
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080034#include <time.h>
35#include <unistd.h>
36
Tao Bao04ca4262015-09-10 15:32:24 -070037#include <chrono>
Tao Bao862a4c12016-06-02 11:16:50 -070038#include <string>
39#include <vector>
Tao Bao04ca4262015-09-10 15:32:24 -070040
Tao Bao75238632015-05-27 14:46:17 -070041#include <adb.h>
Elliott Hughes4b166f02015-12-04 15:30:20 -080042#include <android-base/file.h>
Tianjie Xuc21edd42016-08-05 18:00:04 -070043#include <android-base/logging.h>
Tianjie Xu3c62b672016-02-05 18:25:58 -080044#include <android-base/parseint.h>
Elliott Hughescb220402016-09-23 15:30:55 -070045#include <android-base/properties.h>
Elliott Hughes4b166f02015-12-04 15:30:20 -080046#include <android-base/stringprintf.h>
Tao Bao862a4c12016-06-02 11:16:50 -070047#include <android-base/strings.h>
48#include <android-base/unique_fd.h>
Yabin Cui2f272c02016-06-24 18:22:02 -070049#include <bootloader_message/bootloader_message.h>
Tao Bao75238632015-05-27 14:46:17 -070050#include <cutils/android_reboot.h>
Elliott Hughescb220402016-09-23 15:30:55 -070051#include <cutils/properties.h> /* for property_list */
Elliott Hughes4bbd5bf2016-04-01 18:24:39 -070052#include <healthd/BatteryMonitor.h>
Mark Salyzyna4f701a2016-03-09 14:58:16 -080053#include <private/android_logger.h> /* private pmsg functions */
Elliott Hughes4bbd5bf2016-04-01 18:24:39 -070054#include <selinux/label.h>
55#include <selinux/selinux.h>
Yabin Cui99281df2016-02-17 12:21:52 -080056
Tao Bao75238632015-05-27 14:46:17 -070057#include "adb_install.h"
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080058#include "common.h"
Tao Bao75238632015-05-27 14:46:17 -070059#include "device.h"
Tianjie Xu16255832016-04-30 11:49:59 -070060#include "error_code.h"
Tao Bao75238632015-05-27 14:46:17 -070061#include "fuse_sdcard_provider.h"
62#include "fuse_sideload.h"
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080063#include "install.h"
Josh Gaoacb2a2f2016-08-26 18:24:34 -070064#include "minadbd/minadbd.h"
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080065#include "minui/minui.h"
66#include "minzip/DirUtil.h"
Yabin Cui6faf0262016-06-09 14:09:39 -070067#include "minzip/Zip.h"
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080068#include "roots.h"
Doug Zongker28ce47c2011-10-28 10:33:05 -070069#include "ui.h"
Doug Zongker211aebc2011-10-28 15:13:10 -070070#include "screen_ui.h"
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080071
Stephen Smalley779701d2012-02-09 14:13:23 -050072struct selabel_handle *sehandle;
73
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080074static const struct option OPTIONS[] = {
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080075 { "update_package", required_argument, NULL, 'u' },
Tianjie Xu3c62b672016-02-05 18:25:58 -080076 { "retry_count", required_argument, NULL, 'n' },
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080077 { "wipe_data", no_argument, NULL, 'w' },
78 { "wipe_cache", no_argument, NULL, 'c' },
Doug Zongker4bc98062010-09-03 11:00:13 -070079 { "show_text", no_argument, NULL, 't' },
Tao Baoc679f932015-03-30 09:43:49 -070080 { "sideload", no_argument, NULL, 's' },
81 { "sideload_auto_reboot", no_argument, NULL, 'a' },
Doug Zongkere5d5ac72012-04-12 11:01:22 -070082 { "just_exit", no_argument, NULL, 'x' },
Doug Zongker02ec6b82012-08-22 17:26:40 -070083 { "locale", required_argument, NULL, 'l' },
Doug Zongkerc87bab12013-11-25 13:53:25 -080084 { "stages", required_argument, NULL, 'g' },
Doug Zongkerb1d12632014-03-18 10:32:12 -070085 { "shutdown_after", no_argument, NULL, 'p' },
Jeff Sharkeya6e13ae2014-09-24 11:46:17 -070086 { "reason", required_argument, NULL, 'r' },
Tianjie Xu35926c42016-04-28 18:06:26 -070087 { "security", no_argument, NULL, 'e'},
Tao Bao108ab212016-06-10 10:13:32 -070088 { "wipe_ab", no_argument, NULL, 0 },
Yabin Cui6faf0262016-06-09 14:09:39 -070089 { "wipe_package_size", required_argument, NULL, 0 },
Doug Zongker988500b2009-10-06 14:41:38 -070090 { NULL, 0, NULL, 0 },
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080091};
92
Tianjie Xu27b9fc82016-07-11 14:04:08 -070093// More bootreasons can be found in "system/core/bootstat/bootstat.cpp".
94static const std::vector<std::string> bootreason_blacklist {
95 "kernel_panic",
96 "Panic",
97};
98
Doug Zongker6d0d7ac2013-07-09 13:34:55 -070099static const char *CACHE_LOG_DIR = "/cache/recovery";
Doug Zongkerd4208f92010-09-20 12:16:13 -0700100static const char *COMMAND_FILE = "/cache/recovery/command";
Doug Zongkerd4208f92010-09-20 12:16:13 -0700101static const char *LOG_FILE = "/cache/recovery/log";
Doug Zongkerd0181b82011-10-19 10:51:12 -0700102static const char *LAST_INSTALL_FILE = "/cache/recovery/last_install";
Doug Zongker8b240cc2012-08-29 15:19:29 -0700103static const char *LOCALE_FILE = "/cache/recovery/last_locale";
Paul Lawrence661f8a62016-02-25 12:42:19 -0800104static const char *CONVERT_FBE_DIR = "/tmp/convert_fbe";
105static const char *CONVERT_FBE_FILE = "/tmp/convert_fbe/convert_fbe";
Michael Ward9d2629c2011-06-23 22:14:24 -0700106static const char *CACHE_ROOT = "/cache";
Paul Lawrenced0db3372015-11-05 13:38:40 -0800107static const char *DATA_ROOT = "/data";
Doug Zongkerd4208f92010-09-20 12:16:13 -0700108static const char *SDCARD_ROOT = "/sdcard";
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800109static const char *TEMPORARY_LOG_FILE = "/tmp/recovery.log";
Doug Zongkerd0181b82011-10-19 10:51:12 -0700110static const char *TEMPORARY_INSTALL_FILE = "/tmp/last_install";
Tao Baof0124322015-04-11 02:04:11 +0000111static const char *LAST_KMSG_FILE = "/cache/recovery/last_kmsg";
Tao Baobef39712015-05-04 18:50:27 -0700112static const char *LAST_LOG_FILE = "/cache/recovery/last_log";
113static const int KEEP_LOG_COUNT = 10;
Tianjie Xuc37c5c32016-06-23 16:52:17 -0700114// We will try to apply the update package 5 times at most in case of an I/O error.
115static const int EIO_RETRY_COUNT = 4;
Yabin Cui99281df2016-02-17 12:21:52 -0800116static const int BATTERY_READ_TIMEOUT_IN_SEC = 10;
117// GmsCore enters recovery mode to install package when having enough battery
118// percentage. Normally, the threshold is 40% without charger and 20% with charger.
119// So we should check battery with a slightly lower limitation.
120static const int BATTERY_OK_PERCENTAGE = 20;
121static const int BATTERY_WITH_CHARGER_OK_PERCENTAGE = 15;
Tao Bao108ab212016-06-10 10:13:32 -0700122constexpr const char* RECOVERY_WIPE = "/etc/recovery.wipe";
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700123
Doug Zongker211aebc2011-10-28 15:13:10 -0700124RecoveryUI* ui = NULL;
Elliott Hughes498cda62016-04-14 16:49:04 -0700125static const char* locale = "en_US";
Doug Zongkerc87bab12013-11-25 13:53:25 -0800126char* stage = NULL;
Jeff Sharkeya6e13ae2014-09-24 11:46:17 -0700127char* reason = NULL;
Tao Bao682c34b2015-04-07 17:16:35 -0700128bool modified_flash = false;
Tao Bao26112e52016-02-25 12:29:40 -0800129static bool has_cache = false;
Doug Zongker211aebc2011-10-28 15:13:10 -0700130
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800131/*
132 * The recovery tool communicates with the main system through /cache files.
133 * /cache/recovery/command - INPUT - command line for tool, one arg per line
134 * /cache/recovery/log - OUTPUT - combined log file from recovery run(s)
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800135 *
136 * The arguments which may be supplied in the recovery.command file:
Doug Zongkerd4208f92010-09-20 12:16:13 -0700137 * --update_package=path - verify install an OTA package file
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800138 * --wipe_data - erase user data (and cache), then reboot
139 * --wipe_cache - wipe cache (but not user data), then reboot
Oscar Montemayor05231562009-11-30 08:40:57 -0800140 * --set_encrypted_filesystem=on|off - enables / diasables encrypted fs
Doug Zongkere5d5ac72012-04-12 11:01:22 -0700141 * --just_exit - do nothing; exit and reboot
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800142 *
143 * After completing, we remove /cache/recovery/command and reboot.
144 * Arguments may also be supplied in the bootloader control block (BCB).
145 * These important scenarios must be safely restartable at any point:
146 *
147 * FACTORY RESET
148 * 1. user selects "factory reset"
149 * 2. main system writes "--wipe_data" to /cache/recovery/command
150 * 3. main system reboots into recovery
151 * 4. get_args() writes BCB with "boot-recovery" and "--wipe_data"
152 * -- after this, rebooting will restart the erase --
Doug Zongkerd4208f92010-09-20 12:16:13 -0700153 * 5. erase_volume() reformats /data
154 * 6. erase_volume() reformats /cache
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800155 * 7. finish_recovery() erases BCB
156 * -- after this, rebooting will restart the main system --
157 * 8. main() calls reboot() to boot main system
158 *
159 * OTA INSTALL
160 * 1. main system downloads OTA package to /cache/some-filename.zip
Doug Zongker9b125b02010-09-22 12:01:37 -0700161 * 2. main system writes "--update_package=/cache/some-filename.zip"
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800162 * 3. main system reboots into recovery
163 * 4. get_args() writes BCB with "boot-recovery" and "--update_package=..."
164 * -- after this, rebooting will attempt to reinstall the update --
165 * 5. install_package() attempts to install the update
166 * NOTE: the package install must itself be restartable from any point
167 * 6. finish_recovery() erases BCB
168 * -- after this, rebooting will (try to) restart the main system --
169 * 7. ** if install failed **
170 * 7a. prompt_and_wait() shows an error icon and waits for the user
171 * 7b; the user reboots (pulling the battery, etc) into the main system
172 * 8. main() calls maybe_install_firmware_update()
173 * ** if the update contained radio/hboot firmware **:
174 * 8a. m_i_f_u() writes BCB with "boot-recovery" and "--wipe_cache"
175 * -- after this, rebooting will reformat cache & restart main system --
176 * 8b. m_i_f_u() writes firmware image into raw cache partition
177 * 8c. m_i_f_u() writes BCB with "update-radio/hboot" and "--wipe_cache"
178 * -- after this, rebooting will attempt to reinstall firmware --
179 * 8d. bootloader tries to flash firmware
180 * 8e. bootloader writes BCB with "boot-recovery" (keeping "--wipe_cache")
181 * -- after this, rebooting will reformat cache & restart main system --
Doug Zongkerd4208f92010-09-20 12:16:13 -0700182 * 8f. erase_volume() reformats /cache
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800183 * 8g. finish_recovery() erases BCB
184 * -- after this, rebooting will (try to) restart the main system --
185 * 9. main() calls reboot() to boot main system
186 */
187
188static const int MAX_ARG_LENGTH = 4096;
189static const int MAX_ARGS = 100;
190
Doug Zongkerd4208f92010-09-20 12:16:13 -0700191// open a given path, mounting partitions as necessary
Tao Bao04ca4262015-09-10 15:32:24 -0700192FILE* fopen_path(const char *path, const char *mode) {
Doug Zongkerd4208f92010-09-20 12:16:13 -0700193 if (ensure_path_mounted(path) != 0) {
Tianjie Xuc21edd42016-08-05 18:00:04 -0700194 LOG(ERROR) << "Can't mount " << path;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800195 return NULL;
196 }
197
198 // When writing, try to create the containing directory, if necessary.
199 // Use generous permissions, the system (init.rc) will reset them.
Stephen Smalley779701d2012-02-09 14:13:23 -0500200 if (strchr("wa", mode[0])) dirCreateHierarchy(path, 0777, NULL, 1, sehandle);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800201
202 FILE *fp = fopen(path, mode);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800203 return fp;
204}
205
Tao Bao04ca4262015-09-10 15:32:24 -0700206// close a file, log an error if the error indicator is set
207static void check_and_fclose(FILE *fp, const char *name) {
208 fflush(fp);
Tianjie Xuc21edd42016-08-05 18:00:04 -0700209 if (ferror(fp)) {
210 PLOG(ERROR) << "Error in " << name;
211 }
Tao Bao04ca4262015-09-10 15:32:24 -0700212 fclose(fp);
213}
214
Elliott Hughesf14af802015-02-10 14:46:14 -0800215bool is_ro_debuggable() {
Elliott Hughescb220402016-09-23 15:30:55 -0700216 return android::base::GetBoolProperty("ro.debuggable", false);
Elliott Hughesf14af802015-02-10 14:46:14 -0800217}
218
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700219static void redirect_stdio(const char* filename) {
Tao Bao04ca4262015-09-10 15:32:24 -0700220 int pipefd[2];
221 if (pipe(pipefd) == -1) {
Tianjie Xuc21edd42016-08-05 18:00:04 -0700222 PLOG(ERROR) << "pipe failed";
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700223
Tao Bao04ca4262015-09-10 15:32:24 -0700224 // Fall back to traditional logging mode without timestamps.
225 // If these fail, there's not really anywhere to complain...
226 freopen(filename, "a", stdout); setbuf(stdout, NULL);
227 freopen(filename, "a", stderr); setbuf(stderr, NULL);
228
229 return;
230 }
231
232 pid_t pid = fork();
233 if (pid == -1) {
Tianjie Xuc21edd42016-08-05 18:00:04 -0700234 PLOG(ERROR) << "fork failed";
Tao Bao04ca4262015-09-10 15:32:24 -0700235
236 // Fall back to traditional logging mode without timestamps.
237 // If these fail, there's not really anywhere to complain...
238 freopen(filename, "a", stdout); setbuf(stdout, NULL);
239 freopen(filename, "a", stderr); setbuf(stderr, NULL);
240
241 return;
242 }
243
244 if (pid == 0) {
245 /// Close the unused write end.
246 close(pipefd[1]);
247
248 auto start = std::chrono::steady_clock::now();
249
250 // Child logger to actually write to the log file.
251 FILE* log_fp = fopen(filename, "a");
252 if (log_fp == nullptr) {
Tianjie Xuc21edd42016-08-05 18:00:04 -0700253 PLOG(ERROR) << "fopen \"" << filename << "\" failed";
Tao Bao04ca4262015-09-10 15:32:24 -0700254 close(pipefd[0]);
255 _exit(1);
256 }
257
258 FILE* pipe_fp = fdopen(pipefd[0], "r");
259 if (pipe_fp == nullptr) {
Tianjie Xuc21edd42016-08-05 18:00:04 -0700260 PLOG(ERROR) << "fdopen failed";
Tao Bao04ca4262015-09-10 15:32:24 -0700261 check_and_fclose(log_fp, filename);
262 close(pipefd[0]);
263 _exit(1);
264 }
265
266 char* line = nullptr;
267 size_t len = 0;
268 while (getline(&line, &len, pipe_fp) != -1) {
269 auto now = std::chrono::steady_clock::now();
270 double duration = std::chrono::duration_cast<std::chrono::duration<double>>(
271 now - start).count();
272 if (line[0] == '\n') {
273 fprintf(log_fp, "[%12.6lf]\n", duration);
274 } else {
275 fprintf(log_fp, "[%12.6lf] %s", duration, line);
276 }
277 fflush(log_fp);
278 }
279
Tianjie Xuc21edd42016-08-05 18:00:04 -0700280 PLOG(ERROR) << "getline failed";
Tao Bao04ca4262015-09-10 15:32:24 -0700281
282 free(line);
283 check_and_fclose(log_fp, filename);
284 close(pipefd[0]);
285 _exit(1);
286 } else {
287 // Redirect stdout/stderr to the logger process.
288 // Close the unused read end.
289 close(pipefd[0]);
290
291 setbuf(stdout, nullptr);
292 setbuf(stderr, nullptr);
293
294 if (dup2(pipefd[1], STDOUT_FILENO) == -1) {
Tianjie Xuc21edd42016-08-05 18:00:04 -0700295 PLOG(ERROR) << "dup2 stdout failed";
Tao Bao04ca4262015-09-10 15:32:24 -0700296 }
297 if (dup2(pipefd[1], STDERR_FILENO) == -1) {
Tianjie Xuc21edd42016-08-05 18:00:04 -0700298 PLOG(ERROR) << "dup2 stderr failed";
Tao Bao04ca4262015-09-10 15:32:24 -0700299 }
300
301 close(pipefd[1]);
302 }
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800303}
304
305// command line args come from, in decreasing precedence:
306// - the actual command line
307// - the bootloader control block (one per line, after "recovery")
308// - the contents of COMMAND_FILE (one per line)
309static void
310get_args(int *argc, char ***argv) {
Yabin Cui2f272c02016-06-24 18:22:02 -0700311 bootloader_message boot = {};
312 std::string err;
313 if (!read_bootloader_message(&boot, &err)) {
Tianjie Xuc21edd42016-08-05 18:00:04 -0700314 LOG(ERROR) << err;
Yabin Cui2f272c02016-06-24 18:22:02 -0700315 // If fails, leave a zeroed bootloader_message.
316 memset(&boot, 0, sizeof(boot));
317 }
Doug Zongkerc87bab12013-11-25 13:53:25 -0800318 stage = strndup(boot.stage, sizeof(boot.stage));
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800319
Tianjie Xu17e316c2016-09-28 11:42:17 -0700320 if (boot.command[0] != 0) {
Tianjie Xuc21edd42016-08-05 18:00:04 -0700321 std::string boot_command = std::string(boot.command, sizeof(boot.command));
322 LOG(INFO) << "Boot command: " << boot_command;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800323 }
324
Tianjie Xu17e316c2016-09-28 11:42:17 -0700325 if (boot.status[0] != 0) {
Tianjie Xuc21edd42016-08-05 18:00:04 -0700326 std::string boot_status = std::string(boot.status, sizeof(boot.status));
327 LOG(INFO) << "Boot status: " << boot_status;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800328 }
329
330 // --- if arguments weren't supplied, look in the bootloader control block
331 if (*argc <= 1) {
332 boot.recovery[sizeof(boot.recovery) - 1] = '\0'; // Ensure termination
333 const char *arg = strtok(boot.recovery, "\n");
334 if (arg != NULL && !strcmp(arg, "recovery")) {
335 *argv = (char **) malloc(sizeof(char *) * MAX_ARGS);
336 (*argv)[0] = strdup(arg);
337 for (*argc = 1; *argc < MAX_ARGS; ++*argc) {
338 if ((arg = strtok(NULL, "\n")) == NULL) break;
339 (*argv)[*argc] = strdup(arg);
340 }
Tianjie Xuc21edd42016-08-05 18:00:04 -0700341 LOG(INFO) << "Got arguments from boot message";
Tianjie Xu17e316c2016-09-28 11:42:17 -0700342 } else if (boot.recovery[0] != 0) {
Tianjie Xuc21edd42016-08-05 18:00:04 -0700343 std::string boot_recovery = std::string(boot.recovery, 20);
344 LOG(ERROR) << "Bad boot message\n" << "\"" <<boot_recovery << "\"";
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800345 }
346 }
347
Tao Bao26112e52016-02-25 12:29:40 -0800348 // --- if that doesn't work, try the command file (if we have /cache).
349 if (*argc <= 1 && has_cache) {
Doug Zongkerd4208f92010-09-20 12:16:13 -0700350 FILE *fp = fopen_path(COMMAND_FILE, "r");
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800351 if (fp != NULL) {
Jin Feng93ffa752013-06-04 17:46:24 +0800352 char *token;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800353 char *argv0 = (*argv)[0];
354 *argv = (char **) malloc(sizeof(char *) * MAX_ARGS);
355 (*argv)[0] = argv0; // use the same program name
356
357 char buf[MAX_ARG_LENGTH];
358 for (*argc = 1; *argc < MAX_ARGS; ++*argc) {
359 if (!fgets(buf, sizeof(buf), fp)) break;
Jin Feng93ffa752013-06-04 17:46:24 +0800360 token = strtok(buf, "\r\n");
361 if (token != NULL) {
362 (*argv)[*argc] = strdup(token); // Strip newline.
363 } else {
364 --*argc;
365 }
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800366 }
367
368 check_and_fclose(fp, COMMAND_FILE);
Tianjie Xuc21edd42016-08-05 18:00:04 -0700369 LOG(INFO) << "Got arguments from " << COMMAND_FILE;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800370 }
371 }
372
373 // --> write the arguments we have back into the bootloader control block
374 // always boot into recovery after this (until finish_recovery() is called)
375 strlcpy(boot.command, "boot-recovery", sizeof(boot.command));
376 strlcpy(boot.recovery, "recovery\n", sizeof(boot.recovery));
377 int i;
378 for (i = 1; i < *argc; ++i) {
379 strlcat(boot.recovery, (*argv)[i], sizeof(boot.recovery));
380 strlcat(boot.recovery, "\n", sizeof(boot.recovery));
381 }
Yabin Cui2f272c02016-06-24 18:22:02 -0700382 if (!write_bootloader_message(boot, &err)) {
Tianjie Xuc21edd42016-08-05 18:00:04 -0700383 LOG(ERROR) << err;
Yabin Cui2f272c02016-06-24 18:22:02 -0700384 }
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800385}
386
Doug Zongker34c98df2009-08-18 12:05:45 -0700387static void
Oscar Montemayor05231562009-11-30 08:40:57 -0800388set_sdcard_update_bootloader_message() {
Yabin Cui2f272c02016-06-24 18:22:02 -0700389 bootloader_message boot = {};
Doug Zongker34c98df2009-08-18 12:05:45 -0700390 strlcpy(boot.command, "boot-recovery", sizeof(boot.command));
391 strlcpy(boot.recovery, "recovery\n", sizeof(boot.recovery));
Yabin Cui2f272c02016-06-24 18:22:02 -0700392 std::string err;
393 if (!write_bootloader_message(boot, &err)) {
Tianjie Xuc21edd42016-08-05 18:00:04 -0700394 LOG(ERROR) << err;
Yabin Cui2f272c02016-06-24 18:22:02 -0700395 }
Doug Zongker34c98df2009-08-18 12:05:45 -0700396}
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800397
Tao Baobef39712015-05-04 18:50:27 -0700398// Read from kernel log into buffer and write out to file.
399static void save_kernel_log(const char* destination) {
400 int klog_buf_len = klogctl(KLOG_SIZE_BUFFER, 0, 0);
Patrick Tjincd055ee2014-12-09 11:26:40 -0800401 if (klog_buf_len <= 0) {
Tianjie Xuc21edd42016-08-05 18:00:04 -0700402 PLOG(ERROR) << "Error getting klog size";
Patrick Tjincd055ee2014-12-09 11:26:40 -0800403 return;
404 }
405
Tao Baobef39712015-05-04 18:50:27 -0700406 std::string buffer(klog_buf_len, 0);
407 int n = klogctl(KLOG_READ_ALL, &buffer[0], klog_buf_len);
408 if (n == -1) {
Tianjie Xuc21edd42016-08-05 18:00:04 -0700409 PLOG(ERROR) << "Error in reading klog";
Patrick Tjincd055ee2014-12-09 11:26:40 -0800410 return;
411 }
Tao Baobef39712015-05-04 18:50:27 -0700412 buffer.resize(n);
413 android::base::WriteStringToFile(buffer, destination);
Patrick Tjincd055ee2014-12-09 11:26:40 -0800414}
415
Mark Salyzyna4f701a2016-03-09 14:58:16 -0800416// write content to the current pmsg session.
417static ssize_t __pmsg_write(const char *filename, const char *buf, size_t len) {
418 return __android_log_pmsg_file_write(LOG_ID_SYSTEM, ANDROID_LOG_INFO,
419 filename, buf, len);
420}
421
422static void copy_log_file_to_pmsg(const char* source, const char* destination) {
423 std::string content;
424 android::base::ReadFileToString(source, &content);
425 __pmsg_write(destination, content.c_str(), content.length());
426}
427
Tao Baof0124322015-04-11 02:04:11 +0000428// How much of the temp log we have copied to the copy in cache.
Chih-Hung Hsieh54a27472016-04-18 11:30:55 -0700429static off_t tmplog_offset = 0;
Tao Baof0124322015-04-11 02:04:11 +0000430
Tao Baobef39712015-05-04 18:50:27 -0700431static void copy_log_file(const char* source, const char* destination, bool append) {
432 FILE* dest_fp = fopen_path(destination, append ? "a" : "w");
433 if (dest_fp == nullptr) {
Tianjie Xuc21edd42016-08-05 18:00:04 -0700434 PLOG(ERROR) << "Can't open " << destination;
Doug Zongker2c3539e2010-09-29 13:21:30 -0700435 } else {
Tao Baobef39712015-05-04 18:50:27 -0700436 FILE* source_fp = fopen(source, "r");
437 if (source_fp != nullptr) {
Tao Baof0124322015-04-11 02:04:11 +0000438 if (append) {
Chih-Hung Hsieh54a27472016-04-18 11:30:55 -0700439 fseeko(source_fp, tmplog_offset, SEEK_SET); // Since last write
Doug Zongker2c3539e2010-09-29 13:21:30 -0700440 }
441 char buf[4096];
Tao Baobef39712015-05-04 18:50:27 -0700442 size_t bytes;
443 while ((bytes = fread(buf, 1, sizeof(buf), source_fp)) != 0) {
444 fwrite(buf, 1, bytes, dest_fp);
Doug Zongker2c3539e2010-09-29 13:21:30 -0700445 }
Tao Baobef39712015-05-04 18:50:27 -0700446 if (append) {
Chih-Hung Hsieh54a27472016-04-18 11:30:55 -0700447 tmplog_offset = ftello(source_fp);
Tao Baobef39712015-05-04 18:50:27 -0700448 }
449 check_and_fclose(source_fp, source);
Doug Zongker2c3539e2010-09-29 13:21:30 -0700450 }
Tao Baobef39712015-05-04 18:50:27 -0700451 check_and_fclose(dest_fp, destination);
Doug Zongker2c3539e2010-09-29 13:21:30 -0700452 }
453}
454
Tao Baobef39712015-05-04 18:50:27 -0700455// Rename last_log -> last_log.1 -> last_log.2 -> ... -> last_log.$max.
456// Similarly rename last_kmsg -> last_kmsg.1 -> ... -> last_kmsg.$max.
457// Overwrite any existing last_log.$max and last_kmsg.$max.
458static void rotate_logs(int max) {
Tao Bao682c34b2015-04-07 17:16:35 -0700459 // Logs should only be rotated once.
460 static bool rotated = false;
461 if (rotated) {
462 return;
463 }
464 rotated = true;
465 ensure_path_mounted(LAST_LOG_FILE);
Tao Baobef39712015-05-04 18:50:27 -0700466 ensure_path_mounted(LAST_KMSG_FILE);
Tao Bao682c34b2015-04-07 17:16:35 -0700467
Tao Bao682c34b2015-04-07 17:16:35 -0700468 for (int i = max-1; i >= 0; --i) {
Tao Bao80e46e02015-06-03 10:49:29 -0700469 std::string old_log = android::base::StringPrintf("%s", LAST_LOG_FILE);
470 if (i > 0) {
471 old_log += "." + std::to_string(i);
472 }
Tao Baobef39712015-05-04 18:50:27 -0700473 std::string new_log = android::base::StringPrintf("%s.%d", LAST_LOG_FILE, i+1);
474 // Ignore errors if old_log doesn't exist.
475 rename(old_log.c_str(), new_log.c_str());
476
Tao Bao80e46e02015-06-03 10:49:29 -0700477 std::string old_kmsg = android::base::StringPrintf("%s", LAST_KMSG_FILE);
478 if (i > 0) {
479 old_kmsg += "." + std::to_string(i);
480 }
Tao Baobef39712015-05-04 18:50:27 -0700481 std::string new_kmsg = android::base::StringPrintf("%s.%d", LAST_KMSG_FILE, i+1);
482 rename(old_kmsg.c_str(), new_kmsg.c_str());
Doug Zongkerda1ebae2013-05-16 11:23:48 -0700483 }
484}
Doug Zongker2c3539e2010-09-29 13:21:30 -0700485
Tao Bao682c34b2015-04-07 17:16:35 -0700486static void copy_logs() {
487 // We only rotate and record the log of the current session if there are
488 // actual attempts to modify the flash, such as wipes, installs from BCB
489 // or menu selections. This is to avoid unnecessary rotation (and
490 // possible deletion) of log files, if it does not do anything loggable.
491 if (!modified_flash) {
492 return;
493 }
494
Mark Salyzyna4f701a2016-03-09 14:58:16 -0800495 // Always write to pmsg, this allows the OTA logs to be caught in logcat -L
496 copy_log_file_to_pmsg(TEMPORARY_LOG_FILE, LAST_LOG_FILE);
497 copy_log_file_to_pmsg(TEMPORARY_INSTALL_FILE, LAST_INSTALL_FILE);
498
499 // We can do nothing for now if there's no /cache partition.
500 if (!has_cache) {
501 return;
502 }
503
Tao Baobef39712015-05-04 18:50:27 -0700504 rotate_logs(KEEP_LOG_COUNT);
Tao Bao682c34b2015-04-07 17:16:35 -0700505
Doug Zongkerf24fd7e2013-07-02 11:43:25 -0700506 // Copy logs to cache so the system can find out what happened.
Tao Baof0124322015-04-11 02:04:11 +0000507 copy_log_file(TEMPORARY_LOG_FILE, LOG_FILE, true);
508 copy_log_file(TEMPORARY_LOG_FILE, LAST_LOG_FILE, false);
509 copy_log_file(TEMPORARY_INSTALL_FILE, LAST_INSTALL_FILE, false);
510 save_kernel_log(LAST_KMSG_FILE);
Doug Zongkerf24fd7e2013-07-02 11:43:25 -0700511 chmod(LOG_FILE, 0600);
512 chown(LOG_FILE, 1000, 1000); // system user
Tao Baof0124322015-04-11 02:04:11 +0000513 chmod(LAST_KMSG_FILE, 0600);
514 chown(LAST_KMSG_FILE, 1000, 1000); // system user
Doug Zongkerf24fd7e2013-07-02 11:43:25 -0700515 chmod(LAST_LOG_FILE, 0640);
516 chmod(LAST_INSTALL_FILE, 0644);
517 sync();
518}
519
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800520// clear the recovery command and prepare to boot a (hopefully working) system,
Tianjie Xuc14d95d2016-03-24 11:50:34 -0700521// copy our log file to cache as well (for the system to read). This function is
522// idempotent: call it as many times as you like.
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800523static void
Tianjie Xuc14d95d2016-03-24 11:50:34 -0700524finish_recovery() {
Doug Zongker4f33e552012-08-23 13:16:12 -0700525 // Save the locale to cache, so if recovery is next started up
526 // without a --locale argument (eg, directly from the bootloader)
527 // it will use the last-known locale.
Mark Salyzyna4f701a2016-03-09 14:58:16 -0800528 if (locale != NULL) {
529 size_t len = strlen(locale);
530 __pmsg_write(LOCALE_FILE, locale, len);
531 if (has_cache) {
Tianjie Xuc21edd42016-08-05 18:00:04 -0700532 LOG(INFO) << "Saving locale \"" << locale << "\"";
Mark Salyzyna4f701a2016-03-09 14:58:16 -0800533 FILE* fp = fopen_path(LOCALE_FILE, "w");
Johan Harvyl85691422016-08-05 15:42:59 +0200534 if (fp != NULL) {
535 fwrite(locale, 1, len, fp);
536 fflush(fp);
537 fsync(fileno(fp));
538 check_and_fclose(fp, LOCALE_FILE);
539 }
Mark Salyzyna4f701a2016-03-09 14:58:16 -0800540 }
Doug Zongker4f33e552012-08-23 13:16:12 -0700541 }
542
Doug Zongkerf24fd7e2013-07-02 11:43:25 -0700543 copy_logs();
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800544
Doug Zongkere5d5ac72012-04-12 11:01:22 -0700545 // Reset to normal system boot so recovery won't cycle indefinitely.
Yabin Cui2f272c02016-06-24 18:22:02 -0700546 bootloader_message boot = {};
547 std::string err;
548 if (!write_bootloader_message(boot, &err)) {
Tianjie Xuc21edd42016-08-05 18:00:04 -0700549 LOG(ERROR) << err;
Yabin Cui2f272c02016-06-24 18:22:02 -0700550 }
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800551
552 // Remove the command file, so recovery won't repeat indefinitely.
Tao Bao26112e52016-02-25 12:29:40 -0800553 if (has_cache) {
554 if (ensure_path_mounted(COMMAND_FILE) != 0 || (unlink(COMMAND_FILE) && errno != ENOENT)) {
Tianjie Xuc21edd42016-08-05 18:00:04 -0700555 LOG(WARNING) << "Can't unlink " << COMMAND_FILE;
Tao Bao26112e52016-02-25 12:29:40 -0800556 }
557 ensure_path_unmounted(CACHE_ROOT);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800558 }
559
560 sync(); // For good measure.
561}
562
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700563typedef struct _saved_log_file {
564 char* name;
565 struct stat st;
566 unsigned char* data;
567 struct _saved_log_file* next;
568} saved_log_file;
569
Elliott Hughes945548e2015-06-05 17:59:56 -0700570static bool erase_volume(const char* volume) {
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700571 bool is_cache = (strcmp(volume, CACHE_ROOT) == 0);
Paul Lawrenced0db3372015-11-05 13:38:40 -0800572 bool is_data = (strcmp(volume, DATA_ROOT) == 0);
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700573
Doug Zongker02ec6b82012-08-22 17:26:40 -0700574 ui->SetBackground(RecoveryUI::ERASING);
Doug Zongker211aebc2011-10-28 15:13:10 -0700575 ui->SetProgressType(RecoveryUI::INDETERMINATE);
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700576
577 saved_log_file* head = NULL;
578
579 if (is_cache) {
Tao Baobef39712015-05-04 18:50:27 -0700580 // If we're reformatting /cache, we load any past logs
581 // (i.e. "/cache/recovery/last_*") and the current log
582 // ("/cache/recovery/log") into memory, so we can restore them after
583 // the reformat.
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700584
585 ensure_path_mounted(volume);
586
587 DIR* d;
588 struct dirent* de;
589 d = opendir(CACHE_LOG_DIR);
590 if (d) {
591 char path[PATH_MAX];
592 strcpy(path, CACHE_LOG_DIR);
593 strcat(path, "/");
594 int path_len = strlen(path);
595 while ((de = readdir(d)) != NULL) {
Tao Baobef39712015-05-04 18:50:27 -0700596 if (strncmp(de->d_name, "last_", 5) == 0 || strcmp(de->d_name, "log") == 0) {
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700597 saved_log_file* p = (saved_log_file*) malloc(sizeof(saved_log_file));
598 strcpy(path+path_len, de->d_name);
599 p->name = strdup(path);
600 if (stat(path, &(p->st)) == 0) {
601 // truncate files to 512kb
602 if (p->st.st_size > (1 << 19)) {
603 p->st.st_size = 1 << 19;
604 }
605 p->data = (unsigned char*) malloc(p->st.st_size);
606 FILE* f = fopen(path, "rb");
607 fread(p->data, 1, p->st.st_size, f);
608 fclose(f);
609 p->next = head;
610 head = p;
611 } else {
612 free(p);
613 }
614 }
615 }
616 closedir(d);
617 } else {
618 if (errno != ENOENT) {
619 printf("opendir failed: %s\n", strerror(errno));
620 }
621 }
622 }
623
Doug Zongker211aebc2011-10-28 15:13:10 -0700624 ui->Print("Formatting %s...\n", volume);
Doug Zongker2c3539e2010-09-29 13:21:30 -0700625
Doug Zongkerd0181b82011-10-19 10:51:12 -0700626 ensure_path_unmounted(volume);
Paul Lawrenced0db3372015-11-05 13:38:40 -0800627
628 int result;
629
630 if (is_data && reason && strcmp(reason, "convert_fbe") == 0) {
631 // Create convert_fbe breadcrumb file to signal to init
632 // to convert to file based encryption, not full disk encryption
Paul Lawrence661f8a62016-02-25 12:42:19 -0800633 if (mkdir(CONVERT_FBE_DIR, 0700) != 0) {
634 ui->Print("Failed to make convert_fbe dir %s\n", strerror(errno));
635 return true;
636 }
Paul Lawrenced0db3372015-11-05 13:38:40 -0800637 FILE* f = fopen(CONVERT_FBE_FILE, "wb");
638 if (!f) {
Paul Lawrence661f8a62016-02-25 12:42:19 -0800639 ui->Print("Failed to convert to file encryption %s\n", strerror(errno));
Paul Lawrenced0db3372015-11-05 13:38:40 -0800640 return true;
641 }
642 fclose(f);
643 result = format_volume(volume, CONVERT_FBE_DIR);
644 remove(CONVERT_FBE_FILE);
645 rmdir(CONVERT_FBE_DIR);
646 } else {
647 result = format_volume(volume);
648 }
Doug Zongkerd0181b82011-10-19 10:51:12 -0700649
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700650 if (is_cache) {
651 while (head) {
652 FILE* f = fopen_path(head->name, "wb");
653 if (f) {
654 fwrite(head->data, 1, head->st.st_size, f);
655 fclose(f);
656 chmod(head->name, head->st.st_mode);
657 chown(head->name, head->st.st_uid, head->st.st_gid);
658 }
659 free(head->name);
660 free(head->data);
661 saved_log_file* temp = head->next;
662 free(head);
663 head = temp;
664 }
665
Tao Baof0124322015-04-11 02:04:11 +0000666 // Any part of the log we'd copied to cache is now gone.
667 // Reset the pointer so we copy from the beginning of the temp
668 // log.
669 tmplog_offset = 0;
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700670 copy_logs();
Doug Zongker2c3539e2010-09-29 13:21:30 -0700671 }
672
Elliott Hughes945548e2015-06-05 17:59:56 -0700673 return (result == 0);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800674}
675
Doug Zongkerf93d8162009-09-22 15:16:02 -0700676static int
Doug Zongker28ce47c2011-10-28 10:33:05 -0700677get_menu_selection(const char* const * headers, const char* const * items,
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700678 int menu_only, int initial_selection, Device* device) {
Doug Zongkerf93d8162009-09-22 15:16:02 -0700679 // throw away keys pressed previously, so user doesn't
680 // accidentally trigger menu items.
Doug Zongker211aebc2011-10-28 15:13:10 -0700681 ui->FlushKeys();
Doug Zongkerf93d8162009-09-22 15:16:02 -0700682
Doug Zongker211aebc2011-10-28 15:13:10 -0700683 ui->StartMenu(headers, items, initial_selection);
Doug Zongker8674a722010-09-15 11:08:23 -0700684 int selected = initial_selection;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800685 int chosen_item = -1;
686
Doug Zongkerf93d8162009-09-22 15:16:02 -0700687 while (chosen_item < 0) {
Doug Zongker211aebc2011-10-28 15:13:10 -0700688 int key = ui->WaitKey();
689 int visible = ui->IsTextVisible();
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800690
Doug Zongker5cae4452011-01-25 13:15:30 -0800691 if (key == -1) { // ui_wait_key() timed out
Doug Zongker211aebc2011-10-28 15:13:10 -0700692 if (ui->WasTextEverVisible()) {
Doug Zongker5cae4452011-01-25 13:15:30 -0800693 continue;
694 } else {
Tianjie Xuc21edd42016-08-05 18:00:04 -0700695 LOG(INFO) << "timed out waiting for key input; rebooting.";
Doug Zongker211aebc2011-10-28 15:13:10 -0700696 ui->EndMenu();
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700697 return 0; // XXX fixme
Doug Zongker5cae4452011-01-25 13:15:30 -0800698 }
699 }
700
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700701 int action = device->HandleMenuKey(key, visible);
Doug Zongkerddd6a282009-06-09 12:22:33 -0700702
703 if (action < 0) {
704 switch (action) {
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700705 case Device::kHighlightUp:
Elliott Hughes642aaa72015-04-10 12:47:46 -0700706 selected = ui->SelectMenu(--selected);
Doug Zongkerddd6a282009-06-09 12:22:33 -0700707 break;
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700708 case Device::kHighlightDown:
Elliott Hughes642aaa72015-04-10 12:47:46 -0700709 selected = ui->SelectMenu(++selected);
Doug Zongkerddd6a282009-06-09 12:22:33 -0700710 break;
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700711 case Device::kInvokeItem:
Doug Zongkerddd6a282009-06-09 12:22:33 -0700712 chosen_item = selected;
713 break;
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700714 case Device::kNoAction:
Doug Zongkerddd6a282009-06-09 12:22:33 -0700715 break;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800716 }
Doug Zongkerf93d8162009-09-22 15:16:02 -0700717 } else if (!menu_only) {
Doug Zongkerddd6a282009-06-09 12:22:33 -0700718 chosen_item = action;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800719 }
Doug Zongkerf93d8162009-09-22 15:16:02 -0700720 }
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800721
Doug Zongker211aebc2011-10-28 15:13:10 -0700722 ui->EndMenu();
Doug Zongkerf93d8162009-09-22 15:16:02 -0700723 return chosen_item;
724}
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800725
Doug Zongker8674a722010-09-15 11:08:23 -0700726static int compare_string(const void* a, const void* b) {
727 return strcmp(*(const char**)a, *(const char**)b);
728}
729
Doug Zongker93950222014-07-08 14:10:23 -0700730// Returns a malloc'd path, or NULL.
Elliott Hughes30694c92015-03-25 15:16:51 -0700731static char* browse_directory(const char* path, Device* device) {
Michael Ward9d2629c2011-06-23 22:14:24 -0700732 ensure_path_mounted(path);
Doug Zongkerc18eeb82010-09-21 16:49:26 -0700733
Elliott Hughes30694c92015-03-25 15:16:51 -0700734 DIR* d = opendir(path);
Doug Zongker8674a722010-09-15 11:08:23 -0700735 if (d == NULL) {
Tianjie Xuc21edd42016-08-05 18:00:04 -0700736 PLOG(ERROR) << "error opening " << path;
Doug Zongker93950222014-07-08 14:10:23 -0700737 return NULL;
Doug Zongker8674a722010-09-15 11:08:23 -0700738 }
739
Doug Zongker8674a722010-09-15 11:08:23 -0700740 int d_size = 0;
741 int d_alloc = 10;
Doug Zongker28ce47c2011-10-28 10:33:05 -0700742 char** dirs = (char**)malloc(d_alloc * sizeof(char*));
Doug Zongker8674a722010-09-15 11:08:23 -0700743 int z_size = 1;
744 int z_alloc = 10;
Doug Zongker28ce47c2011-10-28 10:33:05 -0700745 char** zips = (char**)malloc(z_alloc * sizeof(char*));
Doug Zongker8674a722010-09-15 11:08:23 -0700746 zips[0] = strdup("../");
747
Elliott Hughes30694c92015-03-25 15:16:51 -0700748 struct dirent* de;
Doug Zongker8674a722010-09-15 11:08:23 -0700749 while ((de = readdir(d)) != NULL) {
750 int name_len = strlen(de->d_name);
751
752 if (de->d_type == DT_DIR) {
753 // skip "." and ".." entries
754 if (name_len == 1 && de->d_name[0] == '.') continue;
755 if (name_len == 2 && de->d_name[0] == '.' &&
756 de->d_name[1] == '.') continue;
757
758 if (d_size >= d_alloc) {
759 d_alloc *= 2;
Doug Zongker28ce47c2011-10-28 10:33:05 -0700760 dirs = (char**)realloc(dirs, d_alloc * sizeof(char*));
Doug Zongker8674a722010-09-15 11:08:23 -0700761 }
Doug Zongker28ce47c2011-10-28 10:33:05 -0700762 dirs[d_size] = (char*)malloc(name_len + 2);
Doug Zongker8674a722010-09-15 11:08:23 -0700763 strcpy(dirs[d_size], de->d_name);
764 dirs[d_size][name_len] = '/';
765 dirs[d_size][name_len+1] = '\0';
766 ++d_size;
767 } else if (de->d_type == DT_REG &&
768 name_len >= 4 &&
769 strncasecmp(de->d_name + (name_len-4), ".zip", 4) == 0) {
770 if (z_size >= z_alloc) {
771 z_alloc *= 2;
Doug Zongker28ce47c2011-10-28 10:33:05 -0700772 zips = (char**)realloc(zips, z_alloc * sizeof(char*));
Doug Zongker8674a722010-09-15 11:08:23 -0700773 }
774 zips[z_size++] = strdup(de->d_name);
775 }
776 }
777 closedir(d);
778
779 qsort(dirs, d_size, sizeof(char*), compare_string);
780 qsort(zips, z_size, sizeof(char*), compare_string);
781
782 // append dirs to the zips list
783 if (d_size + z_size + 1 > z_alloc) {
784 z_alloc = d_size + z_size + 1;
Doug Zongker28ce47c2011-10-28 10:33:05 -0700785 zips = (char**)realloc(zips, z_alloc * sizeof(char*));
Doug Zongker8674a722010-09-15 11:08:23 -0700786 }
787 memcpy(zips + z_size, dirs, d_size * sizeof(char*));
788 free(dirs);
789 z_size += d_size;
790 zips[z_size] = NULL;
791
Elliott Hughes8fd86d72015-04-13 14:36:02 -0700792 const char* headers[] = { "Choose a package to install:", path, NULL };
Elliott Hughes30694c92015-03-25 15:16:51 -0700793
Doug Zongker93950222014-07-08 14:10:23 -0700794 char* result;
Doug Zongker8674a722010-09-15 11:08:23 -0700795 int chosen_item = 0;
Doug Zongker93950222014-07-08 14:10:23 -0700796 while (true) {
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700797 chosen_item = get_menu_selection(headers, zips, 1, chosen_item, device);
Doug Zongker8674a722010-09-15 11:08:23 -0700798
799 char* item = zips[chosen_item];
800 int item_len = strlen(item);
801 if (chosen_item == 0) { // item 0 is always "../"
Michael Ward9d2629c2011-06-23 22:14:24 -0700802 // go up but continue browsing (if the caller is update_directory)
Doug Zongker93950222014-07-08 14:10:23 -0700803 result = NULL;
Doug Zongker8674a722010-09-15 11:08:23 -0700804 break;
805 }
Doug Zongker93950222014-07-08 14:10:23 -0700806
807 char new_path[PATH_MAX];
808 strlcpy(new_path, path, PATH_MAX);
809 strlcat(new_path, "/", PATH_MAX);
810 strlcat(new_path, item, PATH_MAX);
811
812 if (item[item_len-1] == '/') {
813 // recurse down into a subdirectory
814 new_path[strlen(new_path)-1] = '\0'; // truncate the trailing '/'
815 result = browse_directory(new_path, device);
816 if (result) break;
817 } else {
818 // selected a zip file: return the malloc'd path to the caller.
819 result = strdup(new_path);
820 break;
821 }
822 }
Doug Zongker8674a722010-09-15 11:08:23 -0700823
Elliott Hughes30694c92015-03-25 15:16:51 -0700824 for (int i = 0; i < z_size; ++i) free(zips[i]);
Doug Zongker8674a722010-09-15 11:08:23 -0700825 free(zips);
Doug Zongker8674a722010-09-15 11:08:23 -0700826
827 return result;
828}
829
Elliott Hughes30694c92015-03-25 15:16:51 -0700830static bool yes_no(Device* device, const char* question1, const char* question2) {
Elliott Hughes8fd86d72015-04-13 14:36:02 -0700831 const char* headers[] = { question1, question2, NULL };
Elliott Hughes30694c92015-03-25 15:16:51 -0700832 const char* items[] = { " No", " Yes", NULL };
Doug Zongkerddd6a282009-06-09 12:22:33 -0700833
Elliott Hughes30694c92015-03-25 15:16:51 -0700834 int chosen_item = get_menu_selection(headers, items, 1, 0, device);
835 return (chosen_item == 1);
836}
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800837
Tao Baoe39a9bc2015-03-31 12:19:05 -0700838// Return true on success.
839static bool wipe_data(int should_confirm, Device* device) {
840 if (should_confirm && !yes_no(device, "Wipe all user data?", " THIS CAN NOT BE UNDONE!")) {
841 return false;
Doug Zongkerf93d8162009-09-22 15:16:02 -0700842 }
Doug Zongker1066d2c2009-04-01 13:57:40 -0700843
Tao Bao682c34b2015-04-07 17:16:35 -0700844 modified_flash = true;
845
Doug Zongker211aebc2011-10-28 15:13:10 -0700846 ui->Print("\n-- Wiping data...\n");
Elliott Hughes945548e2015-06-05 17:59:56 -0700847 bool success =
848 device->PreWipeData() &&
849 erase_volume("/data") &&
Tao Bao26112e52016-02-25 12:29:40 -0800850 (has_cache ? erase_volume("/cache") : true) &&
Elliott Hughes945548e2015-06-05 17:59:56 -0700851 device->PostWipeData();
852 ui->Print("Data wipe %s.\n", success ? "complete" : "failed");
853 return success;
Doug Zongkerf93d8162009-09-22 15:16:02 -0700854}
855
Tao Baoe39a9bc2015-03-31 12:19:05 -0700856// Return true on success.
857static bool wipe_cache(bool should_confirm, Device* device) {
Tao Bao26112e52016-02-25 12:29:40 -0800858 if (!has_cache) {
859 ui->Print("No /cache partition found.\n");
860 return false;
861 }
862
Elliott Hughes30694c92015-03-25 15:16:51 -0700863 if (should_confirm && !yes_no(device, "Wipe cache?", " THIS CAN NOT BE UNDONE!")) {
Tao Baoe39a9bc2015-03-31 12:19:05 -0700864 return false;
Elliott Hughes30694c92015-03-25 15:16:51 -0700865 }
866
Tao Bao682c34b2015-04-07 17:16:35 -0700867 modified_flash = true;
868
Elliott Hughes30694c92015-03-25 15:16:51 -0700869 ui->Print("\n-- Wiping cache...\n");
Elliott Hughes945548e2015-06-05 17:59:56 -0700870 bool success = erase_volume("/cache");
871 ui->Print("Cache wipe %s.\n", success ? "complete" : "failed");
872 return success;
Elliott Hughes30694c92015-03-25 15:16:51 -0700873}
874
Tao Bao862a4c12016-06-02 11:16:50 -0700875// Secure-wipe a given partition. It uses BLKSECDISCARD, if supported.
876// Otherwise, it goes with BLKDISCARD (if device supports BLKDISCARDZEROES) or
877// BLKZEROOUT.
878static bool secure_wipe_partition(const std::string& partition) {
879 android::base::unique_fd fd(TEMP_FAILURE_RETRY(open(partition.c_str(), O_WRONLY)));
880 if (fd == -1) {
Tianjie Xuc21edd42016-08-05 18:00:04 -0700881 PLOG(ERROR) << "failed to open \"" << partition << "\"";
Tao Bao862a4c12016-06-02 11:16:50 -0700882 return false;
883 }
884
885 uint64_t range[2] = {0, 0};
886 if (ioctl(fd, BLKGETSIZE64, &range[1]) == -1 || range[1] == 0) {
Tianjie Xuc21edd42016-08-05 18:00:04 -0700887 PLOG(ERROR) << "failed to get partition size";
Tao Bao862a4c12016-06-02 11:16:50 -0700888 return false;
889 }
890 printf("Secure-wiping \"%s\" from %" PRIu64 " to %" PRIu64 ".\n",
891 partition.c_str(), range[0], range[1]);
892
893 printf("Trying BLKSECDISCARD...\t");
894 if (ioctl(fd, BLKSECDISCARD, &range) == -1) {
895 printf("failed: %s\n", strerror(errno));
896
897 // Use BLKDISCARD if it zeroes out blocks, otherwise use BLKZEROOUT.
898 unsigned int zeroes;
899 if (ioctl(fd, BLKDISCARDZEROES, &zeroes) == 0 && zeroes != 0) {
900 printf("Trying BLKDISCARD...\t");
901 if (ioctl(fd, BLKDISCARD, &range) == -1) {
902 printf("failed: %s\n", strerror(errno));
903 return false;
904 }
905 } else {
906 printf("Trying BLKZEROOUT...\t");
907 if (ioctl(fd, BLKZEROOUT, &range) == -1) {
908 printf("failed: %s\n", strerror(errno));
909 return false;
910 }
911 }
912 }
913
914 printf("done\n");
915 return true;
916}
917
Yabin Cui6faf0262016-06-09 14:09:39 -0700918// Check if the wipe package matches expectation:
919// 1. verify the package.
920// 2. check metadata (ota-type, pre-device and serial number if having one).
921static bool check_wipe_package(size_t wipe_package_size) {
922 if (wipe_package_size == 0) {
Tianjie Xuc21edd42016-08-05 18:00:04 -0700923 LOG(ERROR) << "wipe_package_size is zero";
Yabin Cui6faf0262016-06-09 14:09:39 -0700924 return false;
925 }
926 std::string wipe_package;
Yabin Cui2f272c02016-06-24 18:22:02 -0700927 std::string err_str;
928 if (!read_wipe_package(&wipe_package, wipe_package_size, &err_str)) {
Tianjie Xuc21edd42016-08-05 18:00:04 -0700929 PLOG(ERROR) << "Failed to read wipe package";
Yabin Cui6faf0262016-06-09 14:09:39 -0700930 return false;
931 }
932 if (!verify_package(reinterpret_cast<const unsigned char*>(wipe_package.data()),
933 wipe_package.size())) {
Tianjie Xuc21edd42016-08-05 18:00:04 -0700934 LOG(ERROR) << "Failed to verify package";
Yabin Cui6faf0262016-06-09 14:09:39 -0700935 return false;
936 }
937
938 // Extract metadata
939 ZipArchive zip;
940 int err = mzOpenZipArchive(reinterpret_cast<unsigned char*>(&wipe_package[0]),
941 wipe_package.size(), &zip);
942 if (err != 0) {
Tianjie Xuc21edd42016-08-05 18:00:04 -0700943 LOG(ERROR) << "Can't open wipe package";
Yabin Cui6faf0262016-06-09 14:09:39 -0700944 return false;
945 }
946 std::string metadata;
947 if (!read_metadata_from_package(&zip, &metadata)) {
948 mzCloseZipArchive(&zip);
949 return false;
950 }
951 mzCloseZipArchive(&zip);
952
953 // Check metadata
954 std::vector<std::string> lines = android::base::Split(metadata, "\n");
955 bool ota_type_matched = false;
956 bool device_type_matched = false;
957 bool has_serial_number = false;
958 bool serial_number_matched = false;
959 for (const auto& line : lines) {
960 if (line == "ota-type=BRICK") {
961 ota_type_matched = true;
962 } else if (android::base::StartsWith(line, "pre-device=")) {
963 std::string device_type = line.substr(strlen("pre-device="));
964 char real_device_type[PROPERTY_VALUE_MAX];
965 property_get("ro.build.product", real_device_type, "");
966 device_type_matched = (device_type == real_device_type);
967 } else if (android::base::StartsWith(line, "serialno=")) {
968 std::string serial_no = line.substr(strlen("serialno="));
969 char real_serial_no[PROPERTY_VALUE_MAX];
970 property_get("ro.serialno", real_serial_no, "");
971 has_serial_number = true;
972 serial_number_matched = (serial_no == real_serial_no);
973 }
974 }
975 return ota_type_matched && device_type_matched && (!has_serial_number || serial_number_matched);
976}
977
Tao Bao108ab212016-06-10 10:13:32 -0700978// Wipe the current A/B device, with a secure wipe of all the partitions in
979// RECOVERY_WIPE.
Yabin Cui6faf0262016-06-09 14:09:39 -0700980static bool wipe_ab_device(size_t wipe_package_size) {
Tao Bao862a4c12016-06-02 11:16:50 -0700981 ui->SetBackground(RecoveryUI::ERASING);
982 ui->SetProgressType(RecoveryUI::INDETERMINATE);
983
Yabin Cui6faf0262016-06-09 14:09:39 -0700984 if (!check_wipe_package(wipe_package_size)) {
Tianjie Xuc21edd42016-08-05 18:00:04 -0700985 LOG(ERROR) << "Failed to verify wipe package";
Yabin Cui6faf0262016-06-09 14:09:39 -0700986 return false;
987 }
Tao Bao862a4c12016-06-02 11:16:50 -0700988 std::string partition_list;
Tao Bao108ab212016-06-10 10:13:32 -0700989 if (!android::base::ReadFileToString(RECOVERY_WIPE, &partition_list)) {
Tianjie Xuc21edd42016-08-05 18:00:04 -0700990 LOG(ERROR) << "failed to read \"" << RECOVERY_WIPE << "\"";
Tao Bao862a4c12016-06-02 11:16:50 -0700991 return false;
992 }
993
994 std::vector<std::string> lines = android::base::Split(partition_list, "\n");
995 for (const std::string& line : lines) {
996 std::string partition = android::base::Trim(line);
997 // Ignore '#' comment or empty lines.
998 if (android::base::StartsWith(partition, "#") || partition.empty()) {
999 continue;
1000 }
1001
1002 // Proceed anyway even if it fails to wipe some partition.
1003 secure_wipe_partition(partition);
1004 }
1005 return true;
1006}
1007
Nick Kralevicha9ad0322014-10-22 18:38:48 -07001008static void choose_recovery_file(Device* device) {
Elliott Hughesc0491632015-05-06 12:40:05 -07001009 // "Back" + KEEP_LOG_COUNT * 2 + terminating nullptr entry
1010 char* entries[1 + KEEP_LOG_COUNT * 2 + 1];
Nick Kralevicha9ad0322014-10-22 18:38:48 -07001011 memset(entries, 0, sizeof(entries));
1012
Tao Baobef39712015-05-04 18:50:27 -07001013 unsigned int n = 0;
Patrick Tjincd055ee2014-12-09 11:26:40 -08001014
Tianjie Xua54f75e2016-08-17 12:02:46 -07001015 if (has_cache) {
1016 // Add LAST_LOG_FILE + LAST_LOG_FILE.x
1017 // Add LAST_KMSG_FILE + LAST_KMSG_FILE.x
1018 for (int i = 0; i < KEEP_LOG_COUNT; i++) {
1019 char* log_file;
1020 int ret;
1021 ret = (i == 0) ? asprintf(&log_file, "%s", LAST_LOG_FILE) :
1022 asprintf(&log_file, "%s.%d", LAST_LOG_FILE, i);
1023 if (ret == -1) {
1024 // memory allocation failure - return early. Should never happen.
1025 return;
1026 }
1027 if ((ensure_path_mounted(log_file) != 0) || (access(log_file, R_OK) == -1)) {
1028 free(log_file);
1029 } else {
1030 entries[n++] = log_file;
1031 }
Tao Baobef39712015-05-04 18:50:27 -07001032
Tianjie Xua54f75e2016-08-17 12:02:46 -07001033 char* kmsg_file;
1034 ret = (i == 0) ? asprintf(&kmsg_file, "%s", LAST_KMSG_FILE) :
1035 asprintf(&kmsg_file, "%s.%d", LAST_KMSG_FILE, i);
1036 if (ret == -1) {
1037 // memory allocation failure - return early. Should never happen.
1038 return;
1039 }
1040 if ((ensure_path_mounted(kmsg_file) != 0) || (access(kmsg_file, R_OK) == -1)) {
1041 free(kmsg_file);
1042 } else {
1043 entries[n++] = kmsg_file;
1044 }
Tao Baobef39712015-05-04 18:50:27 -07001045 }
Tianjie Xua54f75e2016-08-17 12:02:46 -07001046 } else {
1047 // If cache partition is not found, view /tmp/recovery.log instead.
1048 ui->Print("No /cache partition found.\n");
1049 if (access(TEMPORARY_LOG_FILE, R_OK) == -1) {
1050 return;
1051 } else{
1052 entries[n++] = strdup(TEMPORARY_LOG_FILE);
Tao Baobef39712015-05-04 18:50:27 -07001053 }
Nick Kralevicha9ad0322014-10-22 18:38:48 -07001054 }
1055
Elliott Hughesc0491632015-05-06 12:40:05 -07001056 entries[n++] = strdup("Back");
1057
Tao Baobef39712015-05-04 18:50:27 -07001058 const char* headers[] = { "Select file to view", nullptr };
Nick Kralevicha9ad0322014-10-22 18:38:48 -07001059
Elliott Hughes8de52072015-04-08 20:06:50 -07001060 while (true) {
Elliott Hughes30694c92015-03-25 15:16:51 -07001061 int chosen_item = get_menu_selection(headers, entries, 1, 0, device);
Elliott Hughesc0491632015-05-06 12:40:05 -07001062 if (strcmp(entries[chosen_item], "Back") == 0) break;
Elliott Hughes8de52072015-04-08 20:06:50 -07001063
Elliott Hughes8de52072015-04-08 20:06:50 -07001064 ui->ShowFile(entries[chosen_item]);
Nick Kralevicha9ad0322014-10-22 18:38:48 -07001065 }
1066
Tao Baobef39712015-05-04 18:50:27 -07001067 for (size_t i = 0; i < (sizeof(entries) / sizeof(*entries)); i++) {
Nick Kralevicha9ad0322014-10-22 18:38:48 -07001068 free(entries[i]);
1069 }
1070}
1071
Elliott Hughes498cda62016-04-14 16:49:04 -07001072static void run_graphics_test(Device* device) {
1073 // Switch to graphics screen.
1074 ui->ShowText(false);
1075
1076 ui->SetProgressType(RecoveryUI::INDETERMINATE);
1077 ui->SetBackground(RecoveryUI::INSTALLING_UPDATE);
1078 sleep(1);
1079
1080 ui->SetBackground(RecoveryUI::ERROR);
1081 sleep(1);
1082
1083 ui->SetBackground(RecoveryUI::NO_COMMAND);
1084 sleep(1);
1085
1086 ui->SetBackground(RecoveryUI::ERASING);
1087 sleep(1);
1088
1089 ui->SetBackground(RecoveryUI::INSTALLING_UPDATE);
1090
1091 ui->SetProgressType(RecoveryUI::DETERMINATE);
1092 ui->ShowProgress(1.0, 10.0);
1093 float fraction = 0.0;
1094 for (size_t i = 0; i < 100; ++i) {
1095 fraction += .01;
1096 ui->SetProgress(fraction);
1097 usleep(100000);
1098 }
1099
1100 ui->ShowText(true);
1101}
1102
Tao Baocdcf28f2016-01-13 15:05:20 -08001103// How long (in seconds) we wait for the fuse-provided package file to
1104// appear, before timing out.
1105#define SDCARD_INSTALL_TIMEOUT 10
1106
Tao Bao145d8612015-03-25 15:51:15 -07001107static int apply_from_sdcard(Device* device, bool* wipe_cache) {
Tao Bao682c34b2015-04-07 17:16:35 -07001108 modified_flash = true;
1109
Christian Poetzsch4ec58a42015-02-19 10:42:39 +00001110 if (ensure_path_mounted(SDCARD_ROOT) != 0) {
1111 ui->Print("\n-- Couldn't mount %s.\n", SDCARD_ROOT);
1112 return INSTALL_ERROR;
1113 }
1114
1115 char* path = browse_directory(SDCARD_ROOT, device);
1116 if (path == NULL) {
Elliott Hughes018ed312015-04-08 16:51:36 -07001117 ui->Print("\n-- No package file selected.\n");
caozhiyuanb4effb92015-06-10 16:46:38 +08001118 ensure_path_unmounted(SDCARD_ROOT);
Christian Poetzsch4ec58a42015-02-19 10:42:39 +00001119 return INSTALL_ERROR;
1120 }
1121
1122 ui->Print("\n-- Install %s ...\n", path);
1123 set_sdcard_update_bootloader_message();
Christian Poetzsch4ec58a42015-02-19 10:42:39 +00001124
Tao Baocdcf28f2016-01-13 15:05:20 -08001125 // We used to use fuse in a thread as opposed to a process. Since accessing
1126 // through fuse involves going from kernel to userspace to kernel, it leads
1127 // to deadlock when a page fault occurs. (Bug: 26313124)
1128 pid_t child;
1129 if ((child = fork()) == 0) {
1130 bool status = start_sdcard_fuse(path);
1131
1132 _exit(status ? EXIT_SUCCESS : EXIT_FAILURE);
1133 }
1134
1135 // FUSE_SIDELOAD_HOST_PATHNAME will start to exist once the fuse in child
1136 // process is ready.
1137 int result = INSTALL_ERROR;
1138 int status;
1139 bool waited = false;
1140 for (int i = 0; i < SDCARD_INSTALL_TIMEOUT; ++i) {
1141 if (waitpid(child, &status, WNOHANG) == -1) {
1142 result = INSTALL_ERROR;
1143 waited = true;
1144 break;
1145 }
1146
1147 struct stat sb;
1148 if (stat(FUSE_SIDELOAD_HOST_PATHNAME, &sb) == -1) {
1149 if (errno == ENOENT && i < SDCARD_INSTALL_TIMEOUT-1) {
1150 sleep(1);
1151 continue;
1152 } else {
Tianjie Xuc21edd42016-08-05 18:00:04 -07001153 LOG(ERROR) << "Timed out waiting for the fuse-provided package.";
Tao Baocdcf28f2016-01-13 15:05:20 -08001154 result = INSTALL_ERROR;
1155 kill(child, SIGKILL);
1156 break;
1157 }
1158 }
1159
1160 result = install_package(FUSE_SIDELOAD_HOST_PATHNAME, wipe_cache,
Tianjie Xu16255832016-04-30 11:49:59 -07001161 TEMPORARY_INSTALL_FILE, false, 0/*retry_count*/);
Tao Baocdcf28f2016-01-13 15:05:20 -08001162 break;
1163 }
Christian Poetzsch4ec58a42015-02-19 10:42:39 +00001164
Tao Baocdcf28f2016-01-13 15:05:20 -08001165 if (!waited) {
1166 // Calling stat() on this magic filename signals the fuse
1167 // filesystem to shut down.
1168 struct stat sb;
1169 stat(FUSE_SIDELOAD_HOST_EXIT_PATHNAME, &sb);
1170
1171 waitpid(child, &status, 0);
1172 }
1173
1174 if (!WIFEXITED(status) || WEXITSTATUS(status) != 0) {
Tianjie Xuc21edd42016-08-05 18:00:04 -07001175 LOG(ERROR) << "Error exit from the fuse process: " << WEXITSTATUS(status);
Tao Baocdcf28f2016-01-13 15:05:20 -08001176 }
1177
Christian Poetzsch4ec58a42015-02-19 10:42:39 +00001178 ensure_path_unmounted(SDCARD_ROOT);
Tao Baocdcf28f2016-01-13 15:05:20 -08001179 return result;
Christian Poetzsch4ec58a42015-02-19 10:42:39 +00001180}
1181
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001182// Return REBOOT, SHUTDOWN, or REBOOT_BOOTLOADER. Returning NO_ACTION
1183// means to take the default, which is to reboot or shutdown depending
1184// on if the --shutdown_after flag was passed to recovery.
1185static Device::BuiltinAction
Doug Zongker6c8553d2012-09-24 10:40:47 -07001186prompt_and_wait(Device* device, int status) {
Doug Zongkerf93d8162009-09-22 15:16:02 -07001187 for (;;) {
Tianjie Xuc14d95d2016-03-24 11:50:34 -07001188 finish_recovery();
Doug Zongker6c8553d2012-09-24 10:40:47 -07001189 switch (status) {
1190 case INSTALL_SUCCESS:
1191 case INSTALL_NONE:
1192 ui->SetBackground(RecoveryUI::NO_COMMAND);
1193 break;
1194
1195 case INSTALL_ERROR:
1196 case INSTALL_CORRUPT:
1197 ui->SetBackground(RecoveryUI::ERROR);
1198 break;
1199 }
Doug Zongker211aebc2011-10-28 15:13:10 -07001200 ui->SetProgressType(RecoveryUI::EMPTY);
Doug Zongkerf93d8162009-09-22 15:16:02 -07001201
Elliott Hughes8fd86d72015-04-13 14:36:02 -07001202 int chosen_item = get_menu_selection(nullptr, device->GetMenuItems(), 0, 0, device);
Doug Zongkerf93d8162009-09-22 15:16:02 -07001203
1204 // device-specific code may take some action here. It may
1205 // return one of the core actions handled in the switch
1206 // statement below.
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001207 Device::BuiltinAction chosen_action = device->InvokeMenuItem(chosen_item);
Doug Zongkerf93d8162009-09-22 15:16:02 -07001208
Elliott Hughes30694c92015-03-25 15:16:51 -07001209 bool should_wipe_cache = false;
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001210 switch (chosen_action) {
1211 case Device::NO_ACTION:
1212 break;
1213
Doug Zongkerdaefc1d2011-10-31 09:34:15 -07001214 case Device::REBOOT:
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001215 case Device::SHUTDOWN:
1216 case Device::REBOOT_BOOTLOADER:
1217 return chosen_action;
Doug Zongkerf93d8162009-09-22 15:16:02 -07001218
Doug Zongkerdaefc1d2011-10-31 09:34:15 -07001219 case Device::WIPE_DATA:
1220 wipe_data(ui->IsTextVisible(), device);
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001221 if (!ui->IsTextVisible()) return Device::NO_ACTION;
Doug Zongkerf93d8162009-09-22 15:16:02 -07001222 break;
1223
Doug Zongkerdaefc1d2011-10-31 09:34:15 -07001224 case Device::WIPE_CACHE:
Elliott Hughes30694c92015-03-25 15:16:51 -07001225 wipe_cache(ui->IsTextVisible(), device);
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001226 if (!ui->IsTextVisible()) return Device::NO_ACTION;
Doug Zongkerf93d8162009-09-22 15:16:02 -07001227 break;
1228
Christian Poetzsch4ec58a42015-02-19 10:42:39 +00001229 case Device::APPLY_ADB_SIDELOAD:
Elliott Hughesec283402015-04-10 10:01:53 -07001230 case Device::APPLY_SDCARD:
Christian Poetzsch4ec58a42015-02-19 10:42:39 +00001231 {
1232 bool adb = (chosen_action == Device::APPLY_ADB_SIDELOAD);
1233 if (adb) {
Elliott Hughes30694c92015-03-25 15:16:51 -07001234 status = apply_from_adb(ui, &should_wipe_cache, TEMPORARY_INSTALL_FILE);
Doug Zongkerd0181b82011-10-19 10:51:12 -07001235 } else {
Elliott Hughes30694c92015-03-25 15:16:51 -07001236 status = apply_from_sdcard(device, &should_wipe_cache);
Doug Zongkerd0181b82011-10-19 10:51:12 -07001237 }
Doug Zongker945fc682014-07-10 10:50:39 -07001238
Elliott Hughes30694c92015-03-25 15:16:51 -07001239 if (status == INSTALL_SUCCESS && should_wipe_cache) {
Tao Baoe39a9bc2015-03-31 12:19:05 -07001240 if (!wipe_cache(false, device)) {
1241 status = INSTALL_ERROR;
1242 }
Christian Poetzsch4ec58a42015-02-19 10:42:39 +00001243 }
1244
Tao Baoc679f932015-03-30 09:43:49 -07001245 if (status != INSTALL_SUCCESS) {
1246 ui->SetBackground(RecoveryUI::ERROR);
1247 ui->Print("Installation aborted.\n");
1248 copy_logs();
1249 } else if (!ui->IsTextVisible()) {
1250 return Device::NO_ACTION; // reboot if logs aren't visible
1251 } else {
1252 ui->Print("\nInstall from %s complete.\n", adb ? "ADB" : "SD card");
Doug Zongker8674a722010-09-15 11:08:23 -07001253 }
Doug Zongkerf93d8162009-09-22 15:16:02 -07001254 }
1255 break;
Doug Zongkerdaefc1d2011-10-31 09:34:15 -07001256
Elliott Hughesec283402015-04-10 10:01:53 -07001257 case Device::VIEW_RECOVERY_LOGS:
1258 choose_recovery_file(device);
Michael Ward9d2629c2011-06-23 22:14:24 -07001259 break;
Doug Zongker9270a202012-01-09 15:16:13 -08001260
Elliott Hughes498cda62016-04-14 16:49:04 -07001261 case Device::RUN_GRAPHICS_TEST:
1262 run_graphics_test(device);
1263 break;
1264
Elliott Hughesec283402015-04-10 10:01:53 -07001265 case Device::MOUNT_SYSTEM:
Tao Baoabb8f772015-07-30 14:43:27 -07001266 // 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
Elliott Hughescb220402016-09-23 15:30:55 -07001271 if (android::base::GetBoolProperty("ro.build.system_root_image", false)) {
Tao Baoabb8f772015-07-30 14:43:27 -07001272 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
Tianjie Xuc21edd42016-08-05 18:00:04 -07001328static constexpr char log_characters[] = "VDIWEF";
1329
1330void UiLogger(android::base::LogId id, android::base::LogSeverity severity,
1331 const char* tag, const char* file, unsigned int line,
1332 const char* message) {
1333 if (severity >= android::base::ERROR && gCurrentUI != NULL) {
1334 gCurrentUI->Print("E:%s\n", message);
1335 } else {
1336 fprintf(stdout, "%c:%s\n", log_characters[severity], message);
1337 }
1338}
1339
Yabin Cui99281df2016-02-17 12:21:52 -08001340static bool is_battery_ok() {
1341 struct healthd_config healthd_config = {
1342 .batteryStatusPath = android::String8(android::String8::kEmptyString),
1343 .batteryHealthPath = android::String8(android::String8::kEmptyString),
1344 .batteryPresentPath = android::String8(android::String8::kEmptyString),
1345 .batteryCapacityPath = android::String8(android::String8::kEmptyString),
1346 .batteryVoltagePath = android::String8(android::String8::kEmptyString),
1347 .batteryTemperaturePath = android::String8(android::String8::kEmptyString),
1348 .batteryTechnologyPath = android::String8(android::String8::kEmptyString),
1349 .batteryCurrentNowPath = android::String8(android::String8::kEmptyString),
1350 .batteryCurrentAvgPath = android::String8(android::String8::kEmptyString),
1351 .batteryChargeCounterPath = android::String8(android::String8::kEmptyString),
1352 .batteryFullChargePath = android::String8(android::String8::kEmptyString),
1353 .batteryCycleCountPath = android::String8(android::String8::kEmptyString),
1354 .energyCounter = NULL,
1355 .boot_min_cap = 0,
1356 .screen_on = NULL
1357 };
1358 healthd_board_init(&healthd_config);
1359
1360 android::BatteryMonitor monitor;
1361 monitor.init(&healthd_config);
1362
1363 int wait_second = 0;
1364 while (true) {
1365 int charge_status = monitor.getChargeStatus();
1366 // Treat unknown status as charged.
1367 bool charged = (charge_status != android::BATTERY_STATUS_DISCHARGING &&
1368 charge_status != android::BATTERY_STATUS_NOT_CHARGING);
1369 android::BatteryProperty capacity;
1370 android::status_t status = monitor.getProperty(android::BATTERY_PROP_CAPACITY, &capacity);
1371 ui_print("charge_status %d, charged %d, status %d, capacity %lld\n", charge_status,
1372 charged, status, capacity.valueInt64);
1373 // At startup, the battery drivers in devices like N5X/N6P take some time to load
1374 // the battery profile. Before the load finishes, it reports value 50 as a fake
1375 // capacity. BATTERY_READ_TIMEOUT_IN_SEC is set that the battery drivers are expected
1376 // to finish loading the battery profile earlier than 10 seconds after kernel startup.
1377 if (status == 0 && capacity.valueInt64 == 50) {
1378 if (wait_second < BATTERY_READ_TIMEOUT_IN_SEC) {
1379 sleep(1);
1380 wait_second++;
1381 continue;
1382 }
1383 }
1384 // If we can't read battery percentage, it may be a device without battery. In this
1385 // situation, use 100 as a fake battery percentage.
1386 if (status != 0) {
1387 capacity.valueInt64 = 100;
1388 }
1389 return (charged && capacity.valueInt64 >= BATTERY_WITH_CHARGER_OK_PERCENTAGE) ||
1390 (!charged && capacity.valueInt64 >= BATTERY_OK_PERCENTAGE);
1391 }
1392}
1393
Tianjie Xu3c62b672016-02-05 18:25:58 -08001394static void set_retry_bootloader_message(int retry_count, int argc, char** argv) {
Yabin Cui2f272c02016-06-24 18:22:02 -07001395 bootloader_message boot = {};
Tianjie Xu3c62b672016-02-05 18:25:58 -08001396 strlcpy(boot.command, "boot-recovery", sizeof(boot.command));
1397 strlcpy(boot.recovery, "recovery\n", sizeof(boot.recovery));
1398
1399 for (int i = 1; i < argc; ++i) {
1400 if (strstr(argv[i], "retry_count") == nullptr) {
1401 strlcat(boot.recovery, argv[i], sizeof(boot.recovery));
1402 strlcat(boot.recovery, "\n", sizeof(boot.recovery));
1403 }
1404 }
1405
1406 // Initialize counter to 1 if it's not in BCB, otherwise increment it by 1.
1407 if (retry_count == 0) {
1408 strlcat(boot.recovery, "--retry_count=1\n", sizeof(boot.recovery));
1409 } else {
1410 char buffer[20];
1411 snprintf(buffer, sizeof(buffer), "--retry_count=%d\n", retry_count+1);
1412 strlcat(boot.recovery, buffer, sizeof(boot.recovery));
1413 }
Yabin Cui2f272c02016-06-24 18:22:02 -07001414 std::string err;
1415 if (!write_bootloader_message(boot, &err)) {
Tianjie Xuc21edd42016-08-05 18:00:04 -07001416 LOG(ERROR) << err;
Yabin Cui2f272c02016-06-24 18:22:02 -07001417 }
Tianjie Xu3c62b672016-02-05 18:25:58 -08001418}
1419
Tianjie Xu27b9fc82016-07-11 14:04:08 -07001420static bool bootreason_in_blacklist() {
1421 char bootreason[PROPERTY_VALUE_MAX];
1422 if (property_get("ro.boot.bootreason", bootreason, nullptr) > 0) {
1423 for (const auto& str : bootreason_blacklist) {
1424 if (strcasecmp(str.c_str(), bootreason) == 0) {
1425 return true;
1426 }
1427 }
1428 }
1429 return false;
1430}
1431
1432static void log_failure_code(ErrorCode code, const char *update_package) {
Tao Baobadaac42016-09-26 11:39:14 -07001433 std::vector<std::string> log_buffer = {
1434 update_package,
1435 "0", // install result
1436 "error: " + std::to_string(code),
1437 };
1438 std::string log_content = android::base::Join(log_buffer, "\n");
1439 if (!android::base::WriteStringToFile(log_content, TEMPORARY_INSTALL_FILE)) {
1440 PLOG(ERROR) << "failed to write " << TEMPORARY_INSTALL_FILE;
Tianjie Xu27b9fc82016-07-11 14:04:08 -07001441 }
Tao Baobadaac42016-09-26 11:39:14 -07001442
1443 // Also write the info into last_log.
1444 LOG(INFO) << log_content;
Tianjie Xu27b9fc82016-07-11 14:04:08 -07001445}
1446
Mark Salyzyna4f701a2016-03-09 14:58:16 -08001447static ssize_t logbasename(
1448 log_id_t /* logId */,
1449 char /* prio */,
1450 const char *filename,
1451 const char * /* buf */, size_t len,
1452 void *arg) {
1453 if (strstr(LAST_KMSG_FILE, filename) ||
1454 strstr(LAST_LOG_FILE, filename)) {
1455 bool *doRotate = reinterpret_cast<bool *>(arg);
1456 *doRotate = true;
1457 }
1458 return len;
1459}
1460
1461static ssize_t logrotate(
1462 log_id_t logId,
1463 char prio,
1464 const char *filename,
1465 const char *buf, size_t len,
1466 void *arg) {
1467 bool *doRotate = reinterpret_cast<bool *>(arg);
1468 if (!*doRotate) {
1469 return __android_log_pmsg_file_write(logId, prio, filename, buf, len);
1470 }
1471
1472 std::string name(filename);
Chih-Hung Hsieh23abfd32016-07-27 10:19:47 -07001473 size_t dot = name.find_last_of('.');
Mark Salyzyna4f701a2016-03-09 14:58:16 -08001474 std::string sub = name.substr(0, dot);
1475
1476 if (!strstr(LAST_KMSG_FILE, sub.c_str()) &&
1477 !strstr(LAST_LOG_FILE, sub.c_str())) {
1478 return __android_log_pmsg_file_write(logId, prio, filename, buf, len);
1479 }
1480
1481 // filename rotation
1482 if (dot == std::string::npos) {
1483 name += ".1";
1484 } else {
1485 std::string number = name.substr(dot + 1);
1486 if (!isdigit(number.data()[0])) {
1487 name += ".1";
1488 } else {
Chih-Hung Hsieh54a27472016-04-18 11:30:55 -07001489 auto i = std::stoull(number);
Mark Salyzyna4f701a2016-03-09 14:58:16 -08001490 name = sub + "." + std::to_string(i + 1);
1491 }
1492 }
1493
1494 return __android_log_pmsg_file_write(logId, prio, name.c_str(), buf, len);
1495}
1496
Yabin Cui99281df2016-02-17 12:21:52 -08001497int main(int argc, char **argv) {
Tianjie Xuc21edd42016-08-05 18:00:04 -07001498 // We don't have logcat yet under recovery; so we'll print error on screen and
1499 // log to stdout (which is redirected to recovery.log) as we used to do.
1500 android::base::InitLogging(argv, &UiLogger);
1501
Mark Salyzyna4f701a2016-03-09 14:58:16 -08001502 // Take last pmsg contents and rewrite it to the current pmsg session.
1503 static const char filter[] = "recovery/";
1504 // Do we need to rotate?
1505 bool doRotate = false;
1506 __android_log_pmsg_file_read(
1507 LOG_ID_SYSTEM, ANDROID_LOG_INFO, filter,
1508 logbasename, &doRotate);
1509 // Take action to refresh pmsg contents
1510 __android_log_pmsg_file_read(
1511 LOG_ID_SYSTEM, ANDROID_LOG_INFO, filter,
1512 logrotate, &doRotate);
1513
Doug Zongker9270a202012-01-09 15:16:13 -08001514 // If this binary is started with the single argument "--adbd",
1515 // instead of being the normal recovery binary, it turns into kind
1516 // of a stripped-down version of adbd that only supports the
1517 // 'sideload' command. Note this must be a real argument, not
1518 // anything in the command file or bootloader control block; the
1519 // only way recovery should be run with this argument is when it
1520 // starts a copy of itself from the apply_from_adb() function.
1521 if (argc == 2 && strcmp(argv[1], "--adbd") == 0) {
Josh Gaoacb2a2f2016-08-26 18:24:34 -07001522 minadbd_main();
Doug Zongker9270a202012-01-09 15:16:13 -08001523 return 0;
1524 }
1525
Tao Bao04ca4262015-09-10 15:32:24 -07001526 time_t start = time(NULL);
1527
1528 // redirect_stdio should be called only in non-sideload mode. Otherwise
1529 // we may have two logger instances with different timestamps.
1530 redirect_stdio(TEMPORARY_LOG_FILE);
1531
Doug Zongker19a8e242014-01-21 09:25:41 -08001532 printf("Starting recovery (pid %d) on %s", getpid(), ctime(&start));
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001533
Doug Zongkerd4208f92010-09-20 12:16:13 -07001534 load_volume_table();
Tao Bao26112e52016-02-25 12:29:40 -08001535 has_cache = volume_for_path(CACHE_ROOT) != nullptr;
1536
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001537 get_args(&argc, &argv);
1538
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001539 const char *update_package = NULL;
Tao Baoe39a9bc2015-03-31 12:19:05 -07001540 bool should_wipe_data = false;
Tao Baoc679f932015-03-30 09:43:49 -07001541 bool should_wipe_cache = false;
Tao Bao108ab212016-06-10 10:13:32 -07001542 bool should_wipe_ab = false;
Yabin Cui6faf0262016-06-09 14:09:39 -07001543 size_t wipe_package_size = 0;
Tao Bao145d8612015-03-25 15:51:15 -07001544 bool show_text = false;
Tao Baoc679f932015-03-30 09:43:49 -07001545 bool sideload = false;
1546 bool sideload_auto_reboot = false;
Doug Zongkere5d5ac72012-04-12 11:01:22 -07001547 bool just_exit = false;
Doug Zongkerb1d12632014-03-18 10:32:12 -07001548 bool shutdown_after = false;
Tianjie Xu3c62b672016-02-05 18:25:58 -08001549 int retry_count = 0;
Tianjie Xu35926c42016-04-28 18:06:26 -07001550 bool security_update = false;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001551
1552 int arg;
Tao Bao862a4c12016-06-02 11:16:50 -07001553 int option_index;
1554 while ((arg = getopt_long(argc, argv, "", OPTIONS, &option_index)) != -1) {
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001555 switch (arg) {
Tianjie Xu3c62b672016-02-05 18:25:58 -08001556 case 'n': android::base::ParseInt(optarg, &retry_count, 0); break;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001557 case 'u': update_package = optarg; break;
Tao Baoe39a9bc2015-03-31 12:19:05 -07001558 case 'w': should_wipe_data = true; break;
Tao Baoc679f932015-03-30 09:43:49 -07001559 case 'c': should_wipe_cache = true; break;
Tao Bao145d8612015-03-25 15:51:15 -07001560 case 't': show_text = true; break;
Tao Baoc679f932015-03-30 09:43:49 -07001561 case 's': sideload = true; break;
1562 case 'a': sideload = true; sideload_auto_reboot = true; break;
Doug Zongkere5d5ac72012-04-12 11:01:22 -07001563 case 'x': just_exit = true; break;
Doug Zongker02ec6b82012-08-22 17:26:40 -07001564 case 'l': locale = optarg; break;
Doug Zongkerc87bab12013-11-25 13:53:25 -08001565 case 'g': {
1566 if (stage == NULL || *stage == '\0') {
1567 char buffer[20] = "1/";
1568 strncat(buffer, optarg, sizeof(buffer)-3);
1569 stage = strdup(buffer);
1570 }
1571 break;
1572 }
Doug Zongkerb1d12632014-03-18 10:32:12 -07001573 case 'p': shutdown_after = true; break;
Jeff Sharkeya6e13ae2014-09-24 11:46:17 -07001574 case 'r': reason = optarg; break;
Tianjie Xu35926c42016-04-28 18:06:26 -07001575 case 'e': security_update = true; break;
Tao Bao862a4c12016-06-02 11:16:50 -07001576 case 0: {
Tao Bao108ab212016-06-10 10:13:32 -07001577 if (strcmp(OPTIONS[option_index].name, "wipe_ab") == 0) {
1578 should_wipe_ab = true;
Tao Bao862a4c12016-06-02 11:16:50 -07001579 break;
Yabin Cui6faf0262016-06-09 14:09:39 -07001580 } else if (strcmp(OPTIONS[option_index].name, "wipe_package_size") == 0) {
1581 android::base::ParseUint(optarg, &wipe_package_size);
1582 break;
Tao Bao862a4c12016-06-02 11:16:50 -07001583 }
1584 break;
1585 }
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001586 case '?':
Tianjie Xuc21edd42016-08-05 18:00:04 -07001587 LOG(ERROR) << "Invalid command argument";
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001588 continue;
1589 }
1590 }
1591
Tao Bao26112e52016-02-25 12:29:40 -08001592 if (locale == nullptr && has_cache) {
Doug Zongker02ec6b82012-08-22 17:26:40 -07001593 load_locale_from_cache();
1594 }
1595 printf("locale is [%s]\n", locale);
Doug Zongker0d32f252014-02-13 15:07:56 -08001596 printf("stage is [%s]\n", stage);
Jeff Sharkeya6e13ae2014-09-24 11:46:17 -07001597 printf("reason is [%s]\n", reason);
Doug Zongker02ec6b82012-08-22 17:26:40 -07001598
1599 Device* device = make_device();
1600 ui = device->GetUI();
Doug Zongker7c3ae452013-05-14 11:03:02 -07001601 gCurrentUI = ui;
Doug Zongker02ec6b82012-08-22 17:26:40 -07001602
Doug Zongker5fa8c232012-09-18 12:37:02 -07001603 ui->SetLocale(locale);
Doug Zongker02ec6b82012-08-22 17:26:40 -07001604 ui->Init();
Tianjie Xu35926c42016-04-28 18:06:26 -07001605 // Set background string to "installing security update" for security update,
1606 // otherwise set it to "installing system update".
1607 ui->SetSystemUpdateText(security_update);
Doug Zongkerc87bab12013-11-25 13:53:25 -08001608
1609 int st_cur, st_max;
1610 if (stage != NULL && sscanf(stage, "%d/%d", &st_cur, &st_max) == 2) {
1611 ui->SetStage(st_cur, st_max);
1612 }
1613
Doug Zongker02ec6b82012-08-22 17:26:40 -07001614 ui->SetBackground(RecoveryUI::NONE);
1615 if (show_text) ui->ShowText(true);
1616
Stephen Smalley779701d2012-02-09 14:13:23 -05001617 struct selinux_opt seopts[] = {
1618 { SELABEL_OPT_PATH, "/file_contexts" }
1619 };
1620
1621 sehandle = selabel_open(SELABEL_CTX_FILE, seopts, 1);
1622
1623 if (!sehandle) {
Doug Zongkerfafc85b2013-07-09 12:29:45 -07001624 ui->Print("Warning: No file_contexts\n");
Stephen Smalley779701d2012-02-09 14:13:23 -05001625 }
Stephen Smalley779701d2012-02-09 14:13:23 -05001626
Doug Zongkerdaefc1d2011-10-31 09:34:15 -07001627 device->StartRecovery();
Doug Zongkerefa1bab2010-02-01 15:59:12 -08001628
Doug Zongker56c51052010-07-01 09:18:44 -07001629 printf("Command:");
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001630 for (arg = 0; arg < argc; arg++) {
Doug Zongker56c51052010-07-01 09:18:44 -07001631 printf(" \"%s\"", argv[arg]);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001632 }
Doug Zongker9b125b02010-09-22 12:01:37 -07001633 printf("\n");
1634
1635 if (update_package) {
1636 // For backwards compatibility on the cache partition only, if
1637 // we're given an old 'root' path "CACHE:foo", change it to
1638 // "/cache/foo".
1639 if (strncmp(update_package, "CACHE:", 6) == 0) {
1640 int len = strlen(update_package) + 10;
Doug Zongker28ce47c2011-10-28 10:33:05 -07001641 char* modified_path = (char*)malloc(len);
Jeremy Compostella1b7d9b72015-07-29 17:17:03 +02001642 if (modified_path) {
1643 strlcpy(modified_path, "/cache/", len);
1644 strlcat(modified_path, update_package+6, len);
1645 printf("(replacing path \"%s\" with \"%s\")\n",
1646 update_package, modified_path);
1647 update_package = modified_path;
1648 }
1649 else
1650 printf("modified_path allocation failed\n");
Doug Zongker9b125b02010-09-22 12:01:37 -07001651 }
1652 }
1653 printf("\n");
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001654
1655 property_list(print_property, NULL);
Doug Zongker56c51052010-07-01 09:18:44 -07001656 printf("\n");
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001657
Elliott Hughesbb78d622015-04-09 20:51:08 -07001658 ui->Print("Supported API: %d\n", RECOVERY_API_VERSION);
1659
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001660 int status = INSTALL_SUCCESS;
1661
Doug Zongker540d57f2011-01-18 13:36:58 -08001662 if (update_package != NULL) {
Tao Bao56870012016-04-29 15:37:05 -07001663 // It's not entirely true that we will modify the flash. But we want
1664 // to log the update attempt since update_package is non-NULL.
1665 modified_flash = true;
1666
Yabin Cui99281df2016-02-17 12:21:52 -08001667 if (!is_battery_ok()) {
1668 ui->Print("battery capacity is not enough for installing package, needed is %d%%\n",
1669 BATTERY_OK_PERCENTAGE);
Tianjie Xu16255832016-04-30 11:49:59 -07001670 // Log the error code to last_install when installation skips due to
1671 // low battery.
Tianjie Xu27b9fc82016-07-11 14:04:08 -07001672 log_failure_code(kLowBattery, update_package);
1673 status = INSTALL_SKIPPED;
1674 } else if (bootreason_in_blacklist()) {
1675 // Skip update-on-reboot when bootreason is kernel_panic or similar
1676 ui->Print("bootreason is in the blacklist; skip OTA installation\n");
1677 log_failure_code(kBootreasonInBlacklist, update_package);
Yabin Cui99281df2016-02-17 12:21:52 -08001678 status = INSTALL_SKIPPED;
1679 } else {
1680 status = install_package(update_package, &should_wipe_cache,
Tianjie Xu16255832016-04-30 11:49:59 -07001681 TEMPORARY_INSTALL_FILE, true, retry_count);
Yabin Cui99281df2016-02-17 12:21:52 -08001682 if (status == INSTALL_SUCCESS && should_wipe_cache) {
1683 wipe_cache(false, device);
1684 }
1685 if (status != INSTALL_SUCCESS) {
1686 ui->Print("Installation aborted.\n");
Tianjie Xu3c62b672016-02-05 18:25:58 -08001687 // When I/O error happens, reboot and retry installation EIO_RETRY_COUNT
1688 // times before we abandon this OTA update.
1689 if (status == INSTALL_RETRY && retry_count < EIO_RETRY_COUNT) {
1690 copy_logs();
1691 set_retry_bootloader_message(retry_count, argc, argv);
1692 // Print retry count on screen.
1693 ui->Print("Retry attempt %d\n", retry_count);
Doug Zongker7c3ae452013-05-14 11:03:02 -07001694
Tianjie Xu3c62b672016-02-05 18:25:58 -08001695 // Reboot and retry the update
Elliott Hughescb220402016-09-23 15:30:55 -07001696 if (!android::base::SetProperty(ANDROID_RB_PROPERTY, "reboot,recovery")) {
Tianjie Xu3c62b672016-02-05 18:25:58 -08001697 ui->Print("Reboot failed\n");
1698 } else {
1699 while (true) {
1700 pause();
1701 }
1702 }
1703 }
Yabin Cui99281df2016-02-17 12:21:52 -08001704 // If this is an eng or userdebug build, then automatically
1705 // turn the text display on if the script fails so the error
1706 // message is visible.
1707 if (is_ro_debuggable()) {
1708 ui->ShowText(true);
1709 }
Doug Zongker7c3ae452013-05-14 11:03:02 -07001710 }
1711 }
Tao Baoe39a9bc2015-03-31 12:19:05 -07001712 } else if (should_wipe_data) {
1713 if (!wipe_data(false, device)) {
1714 status = INSTALL_ERROR;
1715 }
Tao Baoc679f932015-03-30 09:43:49 -07001716 } else if (should_wipe_cache) {
Tao Baoe39a9bc2015-03-31 12:19:05 -07001717 if (!wipe_cache(false, device)) {
1718 status = INSTALL_ERROR;
1719 }
Tao Bao108ab212016-06-10 10:13:32 -07001720 } else if (should_wipe_ab) {
Yabin Cui6faf0262016-06-09 14:09:39 -07001721 if (!wipe_ab_device(wipe_package_size)) {
Tao Bao862a4c12016-06-02 11:16:50 -07001722 status = INSTALL_ERROR;
1723 }
Tao Baoc679f932015-03-30 09:43:49 -07001724 } else if (sideload) {
1725 // 'adb reboot sideload' acts the same as user presses key combinations
1726 // to enter the sideload mode. When 'sideload-auto-reboot' is used, text
1727 // display will NOT be turned on by default. And it will reboot after
1728 // sideload finishes even if there are errors. Unless one turns on the
1729 // text display during the installation. This is to enable automated
1730 // testing.
1731 if (!sideload_auto_reboot) {
1732 ui->ShowText(true);
1733 }
1734 status = apply_from_adb(ui, &should_wipe_cache, TEMPORARY_INSTALL_FILE);
1735 if (status == INSTALL_SUCCESS && should_wipe_cache) {
Tao Baoe39a9bc2015-03-31 12:19:05 -07001736 if (!wipe_cache(false, device)) {
1737 status = INSTALL_ERROR;
1738 }
Tao Baoc679f932015-03-30 09:43:49 -07001739 }
1740 ui->Print("\nInstall from ADB complete (status: %d).\n", status);
1741 if (sideload_auto_reboot) {
1742 ui->Print("Rebooting automatically.\n");
1743 }
Doug Zongkere5d5ac72012-04-12 11:01:22 -07001744 } else if (!just_exit) {
Doug Zongker02ec6b82012-08-22 17:26:40 -07001745 status = INSTALL_NONE; // No command specified
1746 ui->SetBackground(RecoveryUI::NO_COMMAND);
Tao Bao785d22c2015-05-04 09:34:29 -07001747
1748 // http://b/17489952
1749 // If this is an eng or userdebug build, automatically turn on the
1750 // text display if no command is specified.
1751 if (is_ro_debuggable()) {
1752 ui->ShowText(true);
1753 }
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001754 }
1755
Tao Baoc679f932015-03-30 09:43:49 -07001756 if (!sideload_auto_reboot && (status == INSTALL_ERROR || status == INSTALL_CORRUPT)) {
Doug Zongkerf24fd7e2013-07-02 11:43:25 -07001757 copy_logs();
Doug Zongker02ec6b82012-08-22 17:26:40 -07001758 ui->SetBackground(RecoveryUI::ERROR);
1759 }
Tao Baoc679f932015-03-30 09:43:49 -07001760
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001761 Device::BuiltinAction after = shutdown_after ? Device::SHUTDOWN : Device::REBOOT;
Yabin Cui99281df2016-02-17 12:21:52 -08001762 if ((status != INSTALL_SUCCESS && status != INSTALL_SKIPPED && !sideload_auto_reboot) ||
1763 ui->IsTextVisible()) {
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001764 Device::BuiltinAction temp = prompt_and_wait(device, status);
Tao Baoc679f932015-03-30 09:43:49 -07001765 if (temp != Device::NO_ACTION) {
1766 after = temp;
1767 }
Doug Zongker8674a722010-09-15 11:08:23 -07001768 }
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001769
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001770 // Save logs and clean up before rebooting or shutting down.
Tianjie Xuc14d95d2016-03-24 11:50:34 -07001771 finish_recovery();
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001772
1773 switch (after) {
1774 case Device::SHUTDOWN:
1775 ui->Print("Shutting down...\n");
Elliott Hughescb220402016-09-23 15:30:55 -07001776 android::base::SetProperty(ANDROID_RB_PROPERTY, "shutdown,");
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001777 break;
1778
1779 case Device::REBOOT_BOOTLOADER:
1780 ui->Print("Rebooting to bootloader...\n");
Elliott Hughescb220402016-09-23 15:30:55 -07001781 android::base::SetProperty(ANDROID_RB_PROPERTY, "reboot,bootloader");
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001782 break;
1783
1784 default:
1785 ui->Print("Rebooting...\n");
Elliott Hughescb220402016-09-23 15:30:55 -07001786 android::base::SetProperty(ANDROID_RB_PROPERTY, "reboot,");
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001787 break;
Doug Zongkerb1d12632014-03-18 10:32:12 -07001788 }
Tao Bao75238632015-05-27 14:46:17 -07001789 while (true) {
1790 pause();
1791 }
1792 // Should be unreachable.
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001793 return EXIT_SUCCESS;
1794}