blob: 7419bac002b27ce66bc0ed1b7286bc5a71348840 [file] [log] [blame]
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001/*
2 * Copyright (C) 2007 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17#include <ctype.h>
Doug Zongker7c3ae452013-05-14 11:03:02 -070018#include <dirent.h>
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080019#include <errno.h>
20#include <fcntl.h>
21#include <getopt.h>
Tao Bao862a4c12016-06-02 11:16:50 -070022#include <inttypes.h>
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080023#include <limits.h>
Tao Bao862a4c12016-06-02 11:16:50 -070024#include <linux/fs.h>
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080025#include <linux/input.h>
Doug Zongker7c3ae452013-05-14 11:03:02 -070026#include <stdarg.h>
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080027#include <stdio.h>
28#include <stdlib.h>
29#include <string.h>
Patrick Tjincd055ee2014-12-09 11:26:40 -080030#include <sys/klog.h>
Doug Zongker23ceeea2010-07-08 17:27:55 -070031#include <sys/stat.h>
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080032#include <sys/types.h>
Tao Baocdcf28f2016-01-13 15:05:20 -080033#include <sys/wait.h>
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080034#include <time.h>
35#include <unistd.h>
36
Tao Bao04ca4262015-09-10 15:32:24 -070037#include <chrono>
Tao Bao862a4c12016-06-02 11:16:50 -070038#include <string>
39#include <vector>
Tao Bao04ca4262015-09-10 15:32:24 -070040
Tao Bao75238632015-05-27 14:46:17 -070041#include <adb.h>
Mark Salyzyna4f701a2016-03-09 14:58:16 -080042#include <android/log.h> /* Android Log Priority Tags */
Elliott Hughes4b166f02015-12-04 15:30:20 -080043#include <android-base/file.h>
Tianjie Xuc21edd42016-08-05 18:00:04 -070044#include <android-base/logging.h>
Tianjie Xu3c62b672016-02-05 18:25:58 -080045#include <android-base/parseint.h>
Elliott Hughescb220402016-09-23 15:30:55 -070046#include <android-base/properties.h>
Elliott Hughes4b166f02015-12-04 15:30:20 -080047#include <android-base/stringprintf.h>
Tao Bao862a4c12016-06-02 11:16:50 -070048#include <android-base/strings.h>
49#include <android-base/unique_fd.h>
Yabin Cui2f272c02016-06-24 18:22:02 -070050#include <bootloader_message/bootloader_message.h>
Tao Bao75238632015-05-27 14:46:17 -070051#include <cutils/android_reboot.h>
Elliott Hughescb220402016-09-23 15:30:55 -070052#include <cutils/properties.h> /* for property_list */
Elliott Hughes4bbd5bf2016-04-01 18:24:39 -070053#include <healthd/BatteryMonitor.h>
Mark Salyzyna4f701a2016-03-09 14:58:16 -080054#include <private/android_logger.h> /* private pmsg functions */
Elliott Hughes4bbd5bf2016-04-01 18:24:39 -070055#include <selinux/label.h>
56#include <selinux/selinux.h>
Yabin Cui99281df2016-02-17 12:21:52 -080057
Tao Bao75238632015-05-27 14:46:17 -070058#include "adb_install.h"
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080059#include "common.h"
Tao Bao75238632015-05-27 14:46:17 -070060#include "device.h"
Tianjie Xu16255832016-04-30 11:49:59 -070061#include "error_code.h"
Tao Bao75238632015-05-27 14:46:17 -070062#include "fuse_sdcard_provider.h"
63#include "fuse_sideload.h"
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080064#include "install.h"
Josh Gaoacb2a2f2016-08-26 18:24:34 -070065#include "minadbd/minadbd.h"
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080066#include "minui/minui.h"
67#include "minzip/DirUtil.h"
Yabin Cui6faf0262016-06-09 14:09:39 -070068#include "minzip/Zip.h"
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080069#include "roots.h"
Doug Zongker28ce47c2011-10-28 10:33:05 -070070#include "ui.h"
Doug Zongker211aebc2011-10-28 15:13:10 -070071#include "screen_ui.h"
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080072
Stephen Smalley779701d2012-02-09 14:13:23 -050073struct selabel_handle *sehandle;
74
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080075static const struct option OPTIONS[] = {
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080076 { "update_package", required_argument, NULL, 'u' },
Tianjie Xu3c62b672016-02-05 18:25:58 -080077 { "retry_count", required_argument, NULL, 'n' },
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080078 { "wipe_data", no_argument, NULL, 'w' },
79 { "wipe_cache", no_argument, NULL, 'c' },
Doug Zongker4bc98062010-09-03 11:00:13 -070080 { "show_text", no_argument, NULL, 't' },
Tao Baoc679f932015-03-30 09:43:49 -070081 { "sideload", no_argument, NULL, 's' },
82 { "sideload_auto_reboot", no_argument, NULL, 'a' },
Doug Zongkere5d5ac72012-04-12 11:01:22 -070083 { "just_exit", no_argument, NULL, 'x' },
Doug Zongker02ec6b82012-08-22 17:26:40 -070084 { "locale", required_argument, NULL, 'l' },
Doug Zongkerc87bab12013-11-25 13:53:25 -080085 { "stages", required_argument, NULL, 'g' },
Doug Zongkerb1d12632014-03-18 10:32:12 -070086 { "shutdown_after", no_argument, NULL, 'p' },
Jeff Sharkeya6e13ae2014-09-24 11:46:17 -070087 { "reason", required_argument, NULL, 'r' },
Tianjie Xu35926c42016-04-28 18:06:26 -070088 { "security", no_argument, NULL, 'e'},
Tao Bao108ab212016-06-10 10:13:32 -070089 { "wipe_ab", no_argument, NULL, 0 },
Yabin Cui6faf0262016-06-09 14:09:39 -070090 { "wipe_package_size", required_argument, NULL, 0 },
Doug Zongker988500b2009-10-06 14:41:38 -070091 { NULL, 0, NULL, 0 },
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080092};
93
Tianjie Xu27b9fc82016-07-11 14:04:08 -070094// More bootreasons can be found in "system/core/bootstat/bootstat.cpp".
95static const std::vector<std::string> bootreason_blacklist {
96 "kernel_panic",
97 "Panic",
98};
99
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700100static const char *CACHE_LOG_DIR = "/cache/recovery";
Doug Zongkerd4208f92010-09-20 12:16:13 -0700101static const char *COMMAND_FILE = "/cache/recovery/command";
Doug Zongkerd4208f92010-09-20 12:16:13 -0700102static const char *LOG_FILE = "/cache/recovery/log";
Doug Zongkerd0181b82011-10-19 10:51:12 -0700103static const char *LAST_INSTALL_FILE = "/cache/recovery/last_install";
Doug Zongker8b240cc2012-08-29 15:19:29 -0700104static const char *LOCALE_FILE = "/cache/recovery/last_locale";
Paul Lawrence661f8a62016-02-25 12:42:19 -0800105static const char *CONVERT_FBE_DIR = "/tmp/convert_fbe";
106static const char *CONVERT_FBE_FILE = "/tmp/convert_fbe/convert_fbe";
Michael Ward9d2629c2011-06-23 22:14:24 -0700107static const char *CACHE_ROOT = "/cache";
Paul Lawrenced0db3372015-11-05 13:38:40 -0800108static const char *DATA_ROOT = "/data";
Doug Zongkerd4208f92010-09-20 12:16:13 -0700109static const char *SDCARD_ROOT = "/sdcard";
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800110static const char *TEMPORARY_LOG_FILE = "/tmp/recovery.log";
Doug Zongkerd0181b82011-10-19 10:51:12 -0700111static const char *TEMPORARY_INSTALL_FILE = "/tmp/last_install";
Tao Baof0124322015-04-11 02:04:11 +0000112static const char *LAST_KMSG_FILE = "/cache/recovery/last_kmsg";
Tao Baobef39712015-05-04 18:50:27 -0700113static const char *LAST_LOG_FILE = "/cache/recovery/last_log";
114static const int KEEP_LOG_COUNT = 10;
Tianjie Xuc37c5c32016-06-23 16:52:17 -0700115// We will try to apply the update package 5 times at most in case of an I/O error.
116static const int EIO_RETRY_COUNT = 4;
Yabin Cui99281df2016-02-17 12:21:52 -0800117static const int BATTERY_READ_TIMEOUT_IN_SEC = 10;
118// GmsCore enters recovery mode to install package when having enough battery
119// percentage. Normally, the threshold is 40% without charger and 20% with charger.
120// So we should check battery with a slightly lower limitation.
121static const int BATTERY_OK_PERCENTAGE = 20;
122static const int BATTERY_WITH_CHARGER_OK_PERCENTAGE = 15;
Tao Bao108ab212016-06-10 10:13:32 -0700123constexpr const char* RECOVERY_WIPE = "/etc/recovery.wipe";
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700124
Doug Zongker211aebc2011-10-28 15:13:10 -0700125RecoveryUI* ui = NULL;
Elliott Hughes498cda62016-04-14 16:49:04 -0700126static const char* locale = "en_US";
Doug Zongkerc87bab12013-11-25 13:53:25 -0800127char* stage = NULL;
Jeff Sharkeya6e13ae2014-09-24 11:46:17 -0700128char* reason = NULL;
Tao Bao682c34b2015-04-07 17:16:35 -0700129bool modified_flash = false;
Tao Bao26112e52016-02-25 12:29:40 -0800130static bool has_cache = false;
Doug Zongker211aebc2011-10-28 15:13:10 -0700131
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800132/*
133 * The recovery tool communicates with the main system through /cache files.
134 * /cache/recovery/command - INPUT - command line for tool, one arg per line
135 * /cache/recovery/log - OUTPUT - combined log file from recovery run(s)
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800136 *
137 * The arguments which may be supplied in the recovery.command file:
Doug Zongkerd4208f92010-09-20 12:16:13 -0700138 * --update_package=path - verify install an OTA package file
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800139 * --wipe_data - erase user data (and cache), then reboot
140 * --wipe_cache - wipe cache (but not user data), then reboot
Oscar Montemayor05231562009-11-30 08:40:57 -0800141 * --set_encrypted_filesystem=on|off - enables / diasables encrypted fs
Doug Zongkere5d5ac72012-04-12 11:01:22 -0700142 * --just_exit - do nothing; exit and reboot
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800143 *
144 * After completing, we remove /cache/recovery/command and reboot.
145 * Arguments may also be supplied in the bootloader control block (BCB).
146 * These important scenarios must be safely restartable at any point:
147 *
148 * FACTORY RESET
149 * 1. user selects "factory reset"
150 * 2. main system writes "--wipe_data" to /cache/recovery/command
151 * 3. main system reboots into recovery
152 * 4. get_args() writes BCB with "boot-recovery" and "--wipe_data"
153 * -- after this, rebooting will restart the erase --
Doug Zongkerd4208f92010-09-20 12:16:13 -0700154 * 5. erase_volume() reformats /data
155 * 6. erase_volume() reformats /cache
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800156 * 7. finish_recovery() erases BCB
157 * -- after this, rebooting will restart the main system --
158 * 8. main() calls reboot() to boot main system
159 *
160 * OTA INSTALL
161 * 1. main system downloads OTA package to /cache/some-filename.zip
Doug Zongker9b125b02010-09-22 12:01:37 -0700162 * 2. main system writes "--update_package=/cache/some-filename.zip"
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800163 * 3. main system reboots into recovery
164 * 4. get_args() writes BCB with "boot-recovery" and "--update_package=..."
165 * -- after this, rebooting will attempt to reinstall the update --
166 * 5. install_package() attempts to install the update
167 * NOTE: the package install must itself be restartable from any point
168 * 6. finish_recovery() erases BCB
169 * -- after this, rebooting will (try to) restart the main system --
170 * 7. ** if install failed **
171 * 7a. prompt_and_wait() shows an error icon and waits for the user
172 * 7b; the user reboots (pulling the battery, etc) into the main system
173 * 8. main() calls maybe_install_firmware_update()
174 * ** if the update contained radio/hboot firmware **:
175 * 8a. m_i_f_u() writes BCB with "boot-recovery" and "--wipe_cache"
176 * -- after this, rebooting will reformat cache & restart main system --
177 * 8b. m_i_f_u() writes firmware image into raw cache partition
178 * 8c. m_i_f_u() writes BCB with "update-radio/hboot" and "--wipe_cache"
179 * -- after this, rebooting will attempt to reinstall firmware --
180 * 8d. bootloader tries to flash firmware
181 * 8e. bootloader writes BCB with "boot-recovery" (keeping "--wipe_cache")
182 * -- after this, rebooting will reformat cache & restart main system --
Doug Zongkerd4208f92010-09-20 12:16:13 -0700183 * 8f. erase_volume() reformats /cache
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800184 * 8g. finish_recovery() erases BCB
185 * -- after this, rebooting will (try to) restart the main system --
186 * 9. main() calls reboot() to boot main system
187 */
188
189static const int MAX_ARG_LENGTH = 4096;
190static const int MAX_ARGS = 100;
191
Doug Zongkerd4208f92010-09-20 12:16:13 -0700192// open a given path, mounting partitions as necessary
Tao Bao04ca4262015-09-10 15:32:24 -0700193FILE* fopen_path(const char *path, const char *mode) {
Doug Zongkerd4208f92010-09-20 12:16:13 -0700194 if (ensure_path_mounted(path) != 0) {
Tianjie Xuc21edd42016-08-05 18:00:04 -0700195 LOG(ERROR) << "Can't mount " << path;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800196 return NULL;
197 }
198
199 // When writing, try to create the containing directory, if necessary.
200 // Use generous permissions, the system (init.rc) will reset them.
Stephen Smalley779701d2012-02-09 14:13:23 -0500201 if (strchr("wa", mode[0])) dirCreateHierarchy(path, 0777, NULL, 1, sehandle);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800202
203 FILE *fp = fopen(path, mode);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800204 return fp;
205}
206
Tao Bao04ca4262015-09-10 15:32:24 -0700207// close a file, log an error if the error indicator is set
208static void check_and_fclose(FILE *fp, const char *name) {
209 fflush(fp);
Tianjie Xuc21edd42016-08-05 18:00:04 -0700210 if (ferror(fp)) {
211 PLOG(ERROR) << "Error in " << name;
212 }
Tao Bao04ca4262015-09-10 15:32:24 -0700213 fclose(fp);
214}
215
Elliott Hughesf14af802015-02-10 14:46:14 -0800216bool is_ro_debuggable() {
Elliott Hughescb220402016-09-23 15:30:55 -0700217 return android::base::GetBoolProperty("ro.debuggable", false);
Elliott Hughesf14af802015-02-10 14:46:14 -0800218}
219
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700220static void redirect_stdio(const char* filename) {
Tao Bao04ca4262015-09-10 15:32:24 -0700221 int pipefd[2];
222 if (pipe(pipefd) == -1) {
Tianjie Xuc21edd42016-08-05 18:00:04 -0700223 PLOG(ERROR) << "pipe failed";
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700224
Tao Bao04ca4262015-09-10 15:32:24 -0700225 // Fall back to traditional logging mode without timestamps.
226 // If these fail, there's not really anywhere to complain...
227 freopen(filename, "a", stdout); setbuf(stdout, NULL);
228 freopen(filename, "a", stderr); setbuf(stderr, NULL);
229
230 return;
231 }
232
233 pid_t pid = fork();
234 if (pid == -1) {
Tianjie Xuc21edd42016-08-05 18:00:04 -0700235 PLOG(ERROR) << "fork failed";
Tao Bao04ca4262015-09-10 15:32:24 -0700236
237 // Fall back to traditional logging mode without timestamps.
238 // If these fail, there's not really anywhere to complain...
239 freopen(filename, "a", stdout); setbuf(stdout, NULL);
240 freopen(filename, "a", stderr); setbuf(stderr, NULL);
241
242 return;
243 }
244
245 if (pid == 0) {
246 /// Close the unused write end.
247 close(pipefd[1]);
248
249 auto start = std::chrono::steady_clock::now();
250
251 // Child logger to actually write to the log file.
252 FILE* log_fp = fopen(filename, "a");
253 if (log_fp == nullptr) {
Tianjie Xuc21edd42016-08-05 18:00:04 -0700254 PLOG(ERROR) << "fopen \"" << filename << "\" failed";
Tao Bao04ca4262015-09-10 15:32:24 -0700255 close(pipefd[0]);
256 _exit(1);
257 }
258
259 FILE* pipe_fp = fdopen(pipefd[0], "r");
260 if (pipe_fp == nullptr) {
Tianjie Xuc21edd42016-08-05 18:00:04 -0700261 PLOG(ERROR) << "fdopen failed";
Tao Bao04ca4262015-09-10 15:32:24 -0700262 check_and_fclose(log_fp, filename);
263 close(pipefd[0]);
264 _exit(1);
265 }
266
267 char* line = nullptr;
268 size_t len = 0;
269 while (getline(&line, &len, pipe_fp) != -1) {
270 auto now = std::chrono::steady_clock::now();
271 double duration = std::chrono::duration_cast<std::chrono::duration<double>>(
272 now - start).count();
273 if (line[0] == '\n') {
274 fprintf(log_fp, "[%12.6lf]\n", duration);
275 } else {
276 fprintf(log_fp, "[%12.6lf] %s", duration, line);
277 }
278 fflush(log_fp);
279 }
280
Tianjie Xuc21edd42016-08-05 18:00:04 -0700281 PLOG(ERROR) << "getline failed";
Tao Bao04ca4262015-09-10 15:32:24 -0700282
283 free(line);
284 check_and_fclose(log_fp, filename);
285 close(pipefd[0]);
286 _exit(1);
287 } else {
288 // Redirect stdout/stderr to the logger process.
289 // Close the unused read end.
290 close(pipefd[0]);
291
292 setbuf(stdout, nullptr);
293 setbuf(stderr, nullptr);
294
295 if (dup2(pipefd[1], STDOUT_FILENO) == -1) {
Tianjie Xuc21edd42016-08-05 18:00:04 -0700296 PLOG(ERROR) << "dup2 stdout failed";
Tao Bao04ca4262015-09-10 15:32:24 -0700297 }
298 if (dup2(pipefd[1], STDERR_FILENO) == -1) {
Tianjie Xuc21edd42016-08-05 18:00:04 -0700299 PLOG(ERROR) << "dup2 stderr failed";
Tao Bao04ca4262015-09-10 15:32:24 -0700300 }
301
302 close(pipefd[1]);
303 }
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800304}
305
306// command line args come from, in decreasing precedence:
307// - the actual command line
308// - the bootloader control block (one per line, after "recovery")
309// - the contents of COMMAND_FILE (one per line)
310static void
311get_args(int *argc, char ***argv) {
Yabin Cui2f272c02016-06-24 18:22:02 -0700312 bootloader_message boot = {};
313 std::string err;
314 if (!read_bootloader_message(&boot, &err)) {
Tianjie Xuc21edd42016-08-05 18:00:04 -0700315 LOG(ERROR) << err;
Yabin Cui2f272c02016-06-24 18:22:02 -0700316 // If fails, leave a zeroed bootloader_message.
317 memset(&boot, 0, sizeof(boot));
318 }
Doug Zongkerc87bab12013-11-25 13:53:25 -0800319 stage = strndup(boot.stage, sizeof(boot.stage));
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800320
Tianjie Xu17e316c2016-09-28 11:42:17 -0700321 if (boot.command[0] != 0) {
Tianjie Xuc21edd42016-08-05 18:00:04 -0700322 std::string boot_command = std::string(boot.command, sizeof(boot.command));
323 LOG(INFO) << "Boot command: " << boot_command;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800324 }
325
Tianjie Xu17e316c2016-09-28 11:42:17 -0700326 if (boot.status[0] != 0) {
Tianjie Xuc21edd42016-08-05 18:00:04 -0700327 std::string boot_status = std::string(boot.status, sizeof(boot.status));
328 LOG(INFO) << "Boot status: " << boot_status;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800329 }
330
331 // --- if arguments weren't supplied, look in the bootloader control block
332 if (*argc <= 1) {
333 boot.recovery[sizeof(boot.recovery) - 1] = '\0'; // Ensure termination
334 const char *arg = strtok(boot.recovery, "\n");
335 if (arg != NULL && !strcmp(arg, "recovery")) {
336 *argv = (char **) malloc(sizeof(char *) * MAX_ARGS);
337 (*argv)[0] = strdup(arg);
338 for (*argc = 1; *argc < MAX_ARGS; ++*argc) {
339 if ((arg = strtok(NULL, "\n")) == NULL) break;
340 (*argv)[*argc] = strdup(arg);
341 }
Tianjie Xuc21edd42016-08-05 18:00:04 -0700342 LOG(INFO) << "Got arguments from boot message";
Tianjie Xu17e316c2016-09-28 11:42:17 -0700343 } else if (boot.recovery[0] != 0) {
Tianjie Xuc21edd42016-08-05 18:00:04 -0700344 std::string boot_recovery = std::string(boot.recovery, 20);
345 LOG(ERROR) << "Bad boot message\n" << "\"" <<boot_recovery << "\"";
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800346 }
347 }
348
Tao Bao26112e52016-02-25 12:29:40 -0800349 // --- if that doesn't work, try the command file (if we have /cache).
350 if (*argc <= 1 && has_cache) {
Doug Zongkerd4208f92010-09-20 12:16:13 -0700351 FILE *fp = fopen_path(COMMAND_FILE, "r");
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800352 if (fp != NULL) {
Jin Feng93ffa752013-06-04 17:46:24 +0800353 char *token;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800354 char *argv0 = (*argv)[0];
355 *argv = (char **) malloc(sizeof(char *) * MAX_ARGS);
356 (*argv)[0] = argv0; // use the same program name
357
358 char buf[MAX_ARG_LENGTH];
359 for (*argc = 1; *argc < MAX_ARGS; ++*argc) {
360 if (!fgets(buf, sizeof(buf), fp)) break;
Jin Feng93ffa752013-06-04 17:46:24 +0800361 token = strtok(buf, "\r\n");
362 if (token != NULL) {
363 (*argv)[*argc] = strdup(token); // Strip newline.
364 } else {
365 --*argc;
366 }
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800367 }
368
369 check_and_fclose(fp, COMMAND_FILE);
Tianjie Xuc21edd42016-08-05 18:00:04 -0700370 LOG(INFO) << "Got arguments from " << COMMAND_FILE;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800371 }
372 }
373
374 // --> write the arguments we have back into the bootloader control block
375 // always boot into recovery after this (until finish_recovery() is called)
376 strlcpy(boot.command, "boot-recovery", sizeof(boot.command));
377 strlcpy(boot.recovery, "recovery\n", sizeof(boot.recovery));
378 int i;
379 for (i = 1; i < *argc; ++i) {
380 strlcat(boot.recovery, (*argv)[i], sizeof(boot.recovery));
381 strlcat(boot.recovery, "\n", sizeof(boot.recovery));
382 }
Yabin Cui2f272c02016-06-24 18:22:02 -0700383 if (!write_bootloader_message(boot, &err)) {
Tianjie Xuc21edd42016-08-05 18:00:04 -0700384 LOG(ERROR) << err;
Yabin Cui2f272c02016-06-24 18:22:02 -0700385 }
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800386}
387
Doug Zongker34c98df2009-08-18 12:05:45 -0700388static void
Oscar Montemayor05231562009-11-30 08:40:57 -0800389set_sdcard_update_bootloader_message() {
Yabin Cui2f272c02016-06-24 18:22:02 -0700390 bootloader_message boot = {};
Doug Zongker34c98df2009-08-18 12:05:45 -0700391 strlcpy(boot.command, "boot-recovery", sizeof(boot.command));
392 strlcpy(boot.recovery, "recovery\n", sizeof(boot.recovery));
Yabin Cui2f272c02016-06-24 18:22:02 -0700393 std::string err;
394 if (!write_bootloader_message(boot, &err)) {
Tianjie Xuc21edd42016-08-05 18:00:04 -0700395 LOG(ERROR) << err;
Yabin Cui2f272c02016-06-24 18:22:02 -0700396 }
Doug Zongker34c98df2009-08-18 12:05:45 -0700397}
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800398
Tao Baobef39712015-05-04 18:50:27 -0700399// Read from kernel log into buffer and write out to file.
400static void save_kernel_log(const char* destination) {
401 int klog_buf_len = klogctl(KLOG_SIZE_BUFFER, 0, 0);
Patrick Tjincd055ee2014-12-09 11:26:40 -0800402 if (klog_buf_len <= 0) {
Tianjie Xuc21edd42016-08-05 18:00:04 -0700403 PLOG(ERROR) << "Error getting klog size";
Patrick Tjincd055ee2014-12-09 11:26:40 -0800404 return;
405 }
406
Tao Baobef39712015-05-04 18:50:27 -0700407 std::string buffer(klog_buf_len, 0);
408 int n = klogctl(KLOG_READ_ALL, &buffer[0], klog_buf_len);
409 if (n == -1) {
Tianjie Xuc21edd42016-08-05 18:00:04 -0700410 PLOG(ERROR) << "Error in reading klog";
Patrick Tjincd055ee2014-12-09 11:26:40 -0800411 return;
412 }
Tao Baobef39712015-05-04 18:50:27 -0700413 buffer.resize(n);
414 android::base::WriteStringToFile(buffer, destination);
Patrick Tjincd055ee2014-12-09 11:26:40 -0800415}
416
Mark Salyzyna4f701a2016-03-09 14:58:16 -0800417// write content to the current pmsg session.
418static ssize_t __pmsg_write(const char *filename, const char *buf, size_t len) {
419 return __android_log_pmsg_file_write(LOG_ID_SYSTEM, ANDROID_LOG_INFO,
420 filename, buf, len);
421}
422
423static void copy_log_file_to_pmsg(const char* source, const char* destination) {
424 std::string content;
425 android::base::ReadFileToString(source, &content);
426 __pmsg_write(destination, content.c_str(), content.length());
427}
428
Tao Baof0124322015-04-11 02:04:11 +0000429// How much of the temp log we have copied to the copy in cache.
Chih-Hung Hsieh54a27472016-04-18 11:30:55 -0700430static off_t tmplog_offset = 0;
Tao Baof0124322015-04-11 02:04:11 +0000431
Tao Baobef39712015-05-04 18:50:27 -0700432static void copy_log_file(const char* source, const char* destination, bool append) {
433 FILE* dest_fp = fopen_path(destination, append ? "a" : "w");
434 if (dest_fp == nullptr) {
Tianjie Xuc21edd42016-08-05 18:00:04 -0700435 PLOG(ERROR) << "Can't open " << destination;
Doug Zongker2c3539e2010-09-29 13:21:30 -0700436 } else {
Tao Baobef39712015-05-04 18:50:27 -0700437 FILE* source_fp = fopen(source, "r");
438 if (source_fp != nullptr) {
Tao Baof0124322015-04-11 02:04:11 +0000439 if (append) {
Chih-Hung Hsieh54a27472016-04-18 11:30:55 -0700440 fseeko(source_fp, tmplog_offset, SEEK_SET); // Since last write
Doug Zongker2c3539e2010-09-29 13:21:30 -0700441 }
442 char buf[4096];
Tao Baobef39712015-05-04 18:50:27 -0700443 size_t bytes;
444 while ((bytes = fread(buf, 1, sizeof(buf), source_fp)) != 0) {
445 fwrite(buf, 1, bytes, dest_fp);
Doug Zongker2c3539e2010-09-29 13:21:30 -0700446 }
Tao Baobef39712015-05-04 18:50:27 -0700447 if (append) {
Chih-Hung Hsieh54a27472016-04-18 11:30:55 -0700448 tmplog_offset = ftello(source_fp);
Tao Baobef39712015-05-04 18:50:27 -0700449 }
450 check_and_fclose(source_fp, source);
Doug Zongker2c3539e2010-09-29 13:21:30 -0700451 }
Tao Baobef39712015-05-04 18:50:27 -0700452 check_and_fclose(dest_fp, destination);
Doug Zongker2c3539e2010-09-29 13:21:30 -0700453 }
454}
455
Tao Baobef39712015-05-04 18:50:27 -0700456// Rename last_log -> last_log.1 -> last_log.2 -> ... -> last_log.$max.
457// Similarly rename last_kmsg -> last_kmsg.1 -> ... -> last_kmsg.$max.
458// Overwrite any existing last_log.$max and last_kmsg.$max.
459static void rotate_logs(int max) {
Tao Bao682c34b2015-04-07 17:16:35 -0700460 // Logs should only be rotated once.
461 static bool rotated = false;
462 if (rotated) {
463 return;
464 }
465 rotated = true;
466 ensure_path_mounted(LAST_LOG_FILE);
Tao Baobef39712015-05-04 18:50:27 -0700467 ensure_path_mounted(LAST_KMSG_FILE);
Tao Bao682c34b2015-04-07 17:16:35 -0700468
Tao Bao682c34b2015-04-07 17:16:35 -0700469 for (int i = max-1; i >= 0; --i) {
Tao Bao80e46e02015-06-03 10:49:29 -0700470 std::string old_log = android::base::StringPrintf("%s", LAST_LOG_FILE);
471 if (i > 0) {
472 old_log += "." + std::to_string(i);
473 }
Tao Baobef39712015-05-04 18:50:27 -0700474 std::string new_log = android::base::StringPrintf("%s.%d", LAST_LOG_FILE, i+1);
475 // Ignore errors if old_log doesn't exist.
476 rename(old_log.c_str(), new_log.c_str());
477
Tao Bao80e46e02015-06-03 10:49:29 -0700478 std::string old_kmsg = android::base::StringPrintf("%s", LAST_KMSG_FILE);
479 if (i > 0) {
480 old_kmsg += "." + std::to_string(i);
481 }
Tao Baobef39712015-05-04 18:50:27 -0700482 std::string new_kmsg = android::base::StringPrintf("%s.%d", LAST_KMSG_FILE, i+1);
483 rename(old_kmsg.c_str(), new_kmsg.c_str());
Doug Zongkerda1ebae2013-05-16 11:23:48 -0700484 }
485}
Doug Zongker2c3539e2010-09-29 13:21:30 -0700486
Tao Bao682c34b2015-04-07 17:16:35 -0700487static void copy_logs() {
488 // We only rotate and record the log of the current session if there are
489 // actual attempts to modify the flash, such as wipes, installs from BCB
490 // or menu selections. This is to avoid unnecessary rotation (and
491 // possible deletion) of log files, if it does not do anything loggable.
492 if (!modified_flash) {
493 return;
494 }
495
Mark Salyzyna4f701a2016-03-09 14:58:16 -0800496 // Always write to pmsg, this allows the OTA logs to be caught in logcat -L
497 copy_log_file_to_pmsg(TEMPORARY_LOG_FILE, LAST_LOG_FILE);
498 copy_log_file_to_pmsg(TEMPORARY_INSTALL_FILE, LAST_INSTALL_FILE);
499
500 // We can do nothing for now if there's no /cache partition.
501 if (!has_cache) {
502 return;
503 }
504
Tao Baobef39712015-05-04 18:50:27 -0700505 rotate_logs(KEEP_LOG_COUNT);
Tao Bao682c34b2015-04-07 17:16:35 -0700506
Doug Zongkerf24fd7e2013-07-02 11:43:25 -0700507 // Copy logs to cache so the system can find out what happened.
Tao Baof0124322015-04-11 02:04:11 +0000508 copy_log_file(TEMPORARY_LOG_FILE, LOG_FILE, true);
509 copy_log_file(TEMPORARY_LOG_FILE, LAST_LOG_FILE, false);
510 copy_log_file(TEMPORARY_INSTALL_FILE, LAST_INSTALL_FILE, false);
511 save_kernel_log(LAST_KMSG_FILE);
Doug Zongkerf24fd7e2013-07-02 11:43:25 -0700512 chmod(LOG_FILE, 0600);
513 chown(LOG_FILE, 1000, 1000); // system user
Tao Baof0124322015-04-11 02:04:11 +0000514 chmod(LAST_KMSG_FILE, 0600);
515 chown(LAST_KMSG_FILE, 1000, 1000); // system user
Doug Zongkerf24fd7e2013-07-02 11:43:25 -0700516 chmod(LAST_LOG_FILE, 0640);
517 chmod(LAST_INSTALL_FILE, 0644);
518 sync();
519}
520
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800521// clear the recovery command and prepare to boot a (hopefully working) system,
Tianjie Xuc14d95d2016-03-24 11:50:34 -0700522// copy our log file to cache as well (for the system to read). This function is
523// idempotent: call it as many times as you like.
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800524static void
Tianjie Xuc14d95d2016-03-24 11:50:34 -0700525finish_recovery() {
Doug Zongker4f33e552012-08-23 13:16:12 -0700526 // Save the locale to cache, so if recovery is next started up
527 // without a --locale argument (eg, directly from the bootloader)
528 // it will use the last-known locale.
Mark Salyzyna4f701a2016-03-09 14:58:16 -0800529 if (locale != NULL) {
530 size_t len = strlen(locale);
531 __pmsg_write(LOCALE_FILE, locale, len);
532 if (has_cache) {
Tianjie Xuc21edd42016-08-05 18:00:04 -0700533 LOG(INFO) << "Saving locale \"" << locale << "\"";
Mark Salyzyna4f701a2016-03-09 14:58:16 -0800534 FILE* fp = fopen_path(LOCALE_FILE, "w");
Johan Harvyl85691422016-08-05 15:42:59 +0200535 if (fp != NULL) {
536 fwrite(locale, 1, len, fp);
537 fflush(fp);
538 fsync(fileno(fp));
539 check_and_fclose(fp, LOCALE_FILE);
540 }
Mark Salyzyna4f701a2016-03-09 14:58:16 -0800541 }
Doug Zongker4f33e552012-08-23 13:16:12 -0700542 }
543
Doug Zongkerf24fd7e2013-07-02 11:43:25 -0700544 copy_logs();
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800545
Doug Zongkere5d5ac72012-04-12 11:01:22 -0700546 // Reset to normal system boot so recovery won't cycle indefinitely.
Yabin Cui2f272c02016-06-24 18:22:02 -0700547 bootloader_message boot = {};
548 std::string err;
549 if (!write_bootloader_message(boot, &err)) {
Tianjie Xuc21edd42016-08-05 18:00:04 -0700550 LOG(ERROR) << err;
Yabin Cui2f272c02016-06-24 18:22:02 -0700551 }
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800552
553 // Remove the command file, so recovery won't repeat indefinitely.
Tao Bao26112e52016-02-25 12:29:40 -0800554 if (has_cache) {
555 if (ensure_path_mounted(COMMAND_FILE) != 0 || (unlink(COMMAND_FILE) && errno != ENOENT)) {
Tianjie Xuc21edd42016-08-05 18:00:04 -0700556 LOG(WARNING) << "Can't unlink " << COMMAND_FILE;
Tao Bao26112e52016-02-25 12:29:40 -0800557 }
558 ensure_path_unmounted(CACHE_ROOT);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800559 }
560
561 sync(); // For good measure.
562}
563
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700564typedef struct _saved_log_file {
565 char* name;
566 struct stat st;
567 unsigned char* data;
568 struct _saved_log_file* next;
569} saved_log_file;
570
Elliott Hughes945548e2015-06-05 17:59:56 -0700571static bool erase_volume(const char* volume) {
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700572 bool is_cache = (strcmp(volume, CACHE_ROOT) == 0);
Paul Lawrenced0db3372015-11-05 13:38:40 -0800573 bool is_data = (strcmp(volume, DATA_ROOT) == 0);
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700574
Doug Zongker02ec6b82012-08-22 17:26:40 -0700575 ui->SetBackground(RecoveryUI::ERASING);
Doug Zongker211aebc2011-10-28 15:13:10 -0700576 ui->SetProgressType(RecoveryUI::INDETERMINATE);
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700577
578 saved_log_file* head = NULL;
579
580 if (is_cache) {
Tao Baobef39712015-05-04 18:50:27 -0700581 // If we're reformatting /cache, we load any past logs
582 // (i.e. "/cache/recovery/last_*") and the current log
583 // ("/cache/recovery/log") into memory, so we can restore them after
584 // the reformat.
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700585
586 ensure_path_mounted(volume);
587
588 DIR* d;
589 struct dirent* de;
590 d = opendir(CACHE_LOG_DIR);
591 if (d) {
592 char path[PATH_MAX];
593 strcpy(path, CACHE_LOG_DIR);
594 strcat(path, "/");
595 int path_len = strlen(path);
596 while ((de = readdir(d)) != NULL) {
Tao Baobef39712015-05-04 18:50:27 -0700597 if (strncmp(de->d_name, "last_", 5) == 0 || strcmp(de->d_name, "log") == 0) {
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700598 saved_log_file* p = (saved_log_file*) malloc(sizeof(saved_log_file));
599 strcpy(path+path_len, de->d_name);
600 p->name = strdup(path);
601 if (stat(path, &(p->st)) == 0) {
602 // truncate files to 512kb
603 if (p->st.st_size > (1 << 19)) {
604 p->st.st_size = 1 << 19;
605 }
606 p->data = (unsigned char*) malloc(p->st.st_size);
607 FILE* f = fopen(path, "rb");
608 fread(p->data, 1, p->st.st_size, f);
609 fclose(f);
610 p->next = head;
611 head = p;
612 } else {
613 free(p);
614 }
615 }
616 }
617 closedir(d);
618 } else {
619 if (errno != ENOENT) {
620 printf("opendir failed: %s\n", strerror(errno));
621 }
622 }
623 }
624
Doug Zongker211aebc2011-10-28 15:13:10 -0700625 ui->Print("Formatting %s...\n", volume);
Doug Zongker2c3539e2010-09-29 13:21:30 -0700626
Doug Zongkerd0181b82011-10-19 10:51:12 -0700627 ensure_path_unmounted(volume);
Paul Lawrenced0db3372015-11-05 13:38:40 -0800628
629 int result;
630
631 if (is_data && reason && strcmp(reason, "convert_fbe") == 0) {
632 // Create convert_fbe breadcrumb file to signal to init
633 // to convert to file based encryption, not full disk encryption
Paul Lawrence661f8a62016-02-25 12:42:19 -0800634 if (mkdir(CONVERT_FBE_DIR, 0700) != 0) {
635 ui->Print("Failed to make convert_fbe dir %s\n", strerror(errno));
636 return true;
637 }
Paul Lawrenced0db3372015-11-05 13:38:40 -0800638 FILE* f = fopen(CONVERT_FBE_FILE, "wb");
639 if (!f) {
Paul Lawrence661f8a62016-02-25 12:42:19 -0800640 ui->Print("Failed to convert to file encryption %s\n", strerror(errno));
Paul Lawrenced0db3372015-11-05 13:38:40 -0800641 return true;
642 }
643 fclose(f);
644 result = format_volume(volume, CONVERT_FBE_DIR);
645 remove(CONVERT_FBE_FILE);
646 rmdir(CONVERT_FBE_DIR);
647 } else {
648 result = format_volume(volume);
649 }
Doug Zongkerd0181b82011-10-19 10:51:12 -0700650
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700651 if (is_cache) {
652 while (head) {
653 FILE* f = fopen_path(head->name, "wb");
654 if (f) {
655 fwrite(head->data, 1, head->st.st_size, f);
656 fclose(f);
657 chmod(head->name, head->st.st_mode);
658 chown(head->name, head->st.st_uid, head->st.st_gid);
659 }
660 free(head->name);
661 free(head->data);
662 saved_log_file* temp = head->next;
663 free(head);
664 head = temp;
665 }
666
Tao Baof0124322015-04-11 02:04:11 +0000667 // Any part of the log we'd copied to cache is now gone.
668 // Reset the pointer so we copy from the beginning of the temp
669 // log.
670 tmplog_offset = 0;
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700671 copy_logs();
Doug Zongker2c3539e2010-09-29 13:21:30 -0700672 }
673
Elliott Hughes945548e2015-06-05 17:59:56 -0700674 return (result == 0);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800675}
676
Doug Zongkerf93d8162009-09-22 15:16:02 -0700677static int
Doug Zongker28ce47c2011-10-28 10:33:05 -0700678get_menu_selection(const char* const * headers, const char* const * items,
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700679 int menu_only, int initial_selection, Device* device) {
Doug Zongkerf93d8162009-09-22 15:16:02 -0700680 // throw away keys pressed previously, so user doesn't
681 // accidentally trigger menu items.
Doug Zongker211aebc2011-10-28 15:13:10 -0700682 ui->FlushKeys();
Doug Zongkerf93d8162009-09-22 15:16:02 -0700683
Doug Zongker211aebc2011-10-28 15:13:10 -0700684 ui->StartMenu(headers, items, initial_selection);
Doug Zongker8674a722010-09-15 11:08:23 -0700685 int selected = initial_selection;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800686 int chosen_item = -1;
687
Doug Zongkerf93d8162009-09-22 15:16:02 -0700688 while (chosen_item < 0) {
Doug Zongker211aebc2011-10-28 15:13:10 -0700689 int key = ui->WaitKey();
690 int visible = ui->IsTextVisible();
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800691
Doug Zongker5cae4452011-01-25 13:15:30 -0800692 if (key == -1) { // ui_wait_key() timed out
Doug Zongker211aebc2011-10-28 15:13:10 -0700693 if (ui->WasTextEverVisible()) {
Doug Zongker5cae4452011-01-25 13:15:30 -0800694 continue;
695 } else {
Tianjie Xuc21edd42016-08-05 18:00:04 -0700696 LOG(INFO) << "timed out waiting for key input; rebooting.";
Doug Zongker211aebc2011-10-28 15:13:10 -0700697 ui->EndMenu();
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700698 return 0; // XXX fixme
Doug Zongker5cae4452011-01-25 13:15:30 -0800699 }
700 }
701
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700702 int action = device->HandleMenuKey(key, visible);
Doug Zongkerddd6a282009-06-09 12:22:33 -0700703
704 if (action < 0) {
705 switch (action) {
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700706 case Device::kHighlightUp:
Elliott Hughes642aaa72015-04-10 12:47:46 -0700707 selected = ui->SelectMenu(--selected);
Doug Zongkerddd6a282009-06-09 12:22:33 -0700708 break;
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700709 case Device::kHighlightDown:
Elliott Hughes642aaa72015-04-10 12:47:46 -0700710 selected = ui->SelectMenu(++selected);
Doug Zongkerddd6a282009-06-09 12:22:33 -0700711 break;
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700712 case Device::kInvokeItem:
Doug Zongkerddd6a282009-06-09 12:22:33 -0700713 chosen_item = selected;
714 break;
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700715 case Device::kNoAction:
Doug Zongkerddd6a282009-06-09 12:22:33 -0700716 break;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800717 }
Doug Zongkerf93d8162009-09-22 15:16:02 -0700718 } else if (!menu_only) {
Doug Zongkerddd6a282009-06-09 12:22:33 -0700719 chosen_item = action;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800720 }
Doug Zongkerf93d8162009-09-22 15:16:02 -0700721 }
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800722
Doug Zongker211aebc2011-10-28 15:13:10 -0700723 ui->EndMenu();
Doug Zongkerf93d8162009-09-22 15:16:02 -0700724 return chosen_item;
725}
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800726
Doug Zongker8674a722010-09-15 11:08:23 -0700727static int compare_string(const void* a, const void* b) {
728 return strcmp(*(const char**)a, *(const char**)b);
729}
730
Doug Zongker93950222014-07-08 14:10:23 -0700731// Returns a malloc'd path, or NULL.
Elliott Hughes30694c92015-03-25 15:16:51 -0700732static char* browse_directory(const char* path, Device* device) {
Michael Ward9d2629c2011-06-23 22:14:24 -0700733 ensure_path_mounted(path);
Doug Zongkerc18eeb82010-09-21 16:49:26 -0700734
Elliott Hughes30694c92015-03-25 15:16:51 -0700735 DIR* d = opendir(path);
Doug Zongker8674a722010-09-15 11:08:23 -0700736 if (d == NULL) {
Tianjie Xuc21edd42016-08-05 18:00:04 -0700737 PLOG(ERROR) << "error opening " << path;
Doug Zongker93950222014-07-08 14:10:23 -0700738 return NULL;
Doug Zongker8674a722010-09-15 11:08:23 -0700739 }
740
Doug Zongker8674a722010-09-15 11:08:23 -0700741 int d_size = 0;
742 int d_alloc = 10;
Doug Zongker28ce47c2011-10-28 10:33:05 -0700743 char** dirs = (char**)malloc(d_alloc * sizeof(char*));
Doug Zongker8674a722010-09-15 11:08:23 -0700744 int z_size = 1;
745 int z_alloc = 10;
Doug Zongker28ce47c2011-10-28 10:33:05 -0700746 char** zips = (char**)malloc(z_alloc * sizeof(char*));
Doug Zongker8674a722010-09-15 11:08:23 -0700747 zips[0] = strdup("../");
748
Elliott Hughes30694c92015-03-25 15:16:51 -0700749 struct dirent* de;
Doug Zongker8674a722010-09-15 11:08:23 -0700750 while ((de = readdir(d)) != NULL) {
751 int name_len = strlen(de->d_name);
752
753 if (de->d_type == DT_DIR) {
754 // skip "." and ".." entries
755 if (name_len == 1 && de->d_name[0] == '.') continue;
756 if (name_len == 2 && de->d_name[0] == '.' &&
757 de->d_name[1] == '.') continue;
758
759 if (d_size >= d_alloc) {
760 d_alloc *= 2;
Doug Zongker28ce47c2011-10-28 10:33:05 -0700761 dirs = (char**)realloc(dirs, d_alloc * sizeof(char*));
Doug Zongker8674a722010-09-15 11:08:23 -0700762 }
Doug Zongker28ce47c2011-10-28 10:33:05 -0700763 dirs[d_size] = (char*)malloc(name_len + 2);
Doug Zongker8674a722010-09-15 11:08:23 -0700764 strcpy(dirs[d_size], de->d_name);
765 dirs[d_size][name_len] = '/';
766 dirs[d_size][name_len+1] = '\0';
767 ++d_size;
768 } else if (de->d_type == DT_REG &&
769 name_len >= 4 &&
770 strncasecmp(de->d_name + (name_len-4), ".zip", 4) == 0) {
771 if (z_size >= z_alloc) {
772 z_alloc *= 2;
Doug Zongker28ce47c2011-10-28 10:33:05 -0700773 zips = (char**)realloc(zips, z_alloc * sizeof(char*));
Doug Zongker8674a722010-09-15 11:08:23 -0700774 }
775 zips[z_size++] = strdup(de->d_name);
776 }
777 }
778 closedir(d);
779
780 qsort(dirs, d_size, sizeof(char*), compare_string);
781 qsort(zips, z_size, sizeof(char*), compare_string);
782
783 // append dirs to the zips list
784 if (d_size + z_size + 1 > z_alloc) {
785 z_alloc = d_size + z_size + 1;
Doug Zongker28ce47c2011-10-28 10:33:05 -0700786 zips = (char**)realloc(zips, z_alloc * sizeof(char*));
Doug Zongker8674a722010-09-15 11:08:23 -0700787 }
788 memcpy(zips + z_size, dirs, d_size * sizeof(char*));
789 free(dirs);
790 z_size += d_size;
791 zips[z_size] = NULL;
792
Elliott Hughes8fd86d72015-04-13 14:36:02 -0700793 const char* headers[] = { "Choose a package to install:", path, NULL };
Elliott Hughes30694c92015-03-25 15:16:51 -0700794
Doug Zongker93950222014-07-08 14:10:23 -0700795 char* result;
Doug Zongker8674a722010-09-15 11:08:23 -0700796 int chosen_item = 0;
Doug Zongker93950222014-07-08 14:10:23 -0700797 while (true) {
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700798 chosen_item = get_menu_selection(headers, zips, 1, chosen_item, device);
Doug Zongker8674a722010-09-15 11:08:23 -0700799
800 char* item = zips[chosen_item];
801 int item_len = strlen(item);
802 if (chosen_item == 0) { // item 0 is always "../"
Michael Ward9d2629c2011-06-23 22:14:24 -0700803 // go up but continue browsing (if the caller is update_directory)
Doug Zongker93950222014-07-08 14:10:23 -0700804 result = NULL;
Doug Zongker8674a722010-09-15 11:08:23 -0700805 break;
806 }
Doug Zongker93950222014-07-08 14:10:23 -0700807
808 char new_path[PATH_MAX];
809 strlcpy(new_path, path, PATH_MAX);
810 strlcat(new_path, "/", PATH_MAX);
811 strlcat(new_path, item, PATH_MAX);
812
813 if (item[item_len-1] == '/') {
814 // recurse down into a subdirectory
815 new_path[strlen(new_path)-1] = '\0'; // truncate the trailing '/'
816 result = browse_directory(new_path, device);
817 if (result) break;
818 } else {
819 // selected a zip file: return the malloc'd path to the caller.
820 result = strdup(new_path);
821 break;
822 }
823 }
Doug Zongker8674a722010-09-15 11:08:23 -0700824
Elliott Hughes30694c92015-03-25 15:16:51 -0700825 for (int i = 0; i < z_size; ++i) free(zips[i]);
Doug Zongker8674a722010-09-15 11:08:23 -0700826 free(zips);
Doug Zongker8674a722010-09-15 11:08:23 -0700827
828 return result;
829}
830
Elliott Hughes30694c92015-03-25 15:16:51 -0700831static bool yes_no(Device* device, const char* question1, const char* question2) {
Elliott Hughes8fd86d72015-04-13 14:36:02 -0700832 const char* headers[] = { question1, question2, NULL };
Elliott Hughes30694c92015-03-25 15:16:51 -0700833 const char* items[] = { " No", " Yes", NULL };
Doug Zongkerddd6a282009-06-09 12:22:33 -0700834
Elliott Hughes30694c92015-03-25 15:16:51 -0700835 int chosen_item = get_menu_selection(headers, items, 1, 0, device);
836 return (chosen_item == 1);
837}
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800838
Tao Baoe39a9bc2015-03-31 12:19:05 -0700839// Return true on success.
840static bool wipe_data(int should_confirm, Device* device) {
841 if (should_confirm && !yes_no(device, "Wipe all user data?", " THIS CAN NOT BE UNDONE!")) {
842 return false;
Doug Zongkerf93d8162009-09-22 15:16:02 -0700843 }
Doug Zongker1066d2c2009-04-01 13:57:40 -0700844
Tao Bao682c34b2015-04-07 17:16:35 -0700845 modified_flash = true;
846
Doug Zongker211aebc2011-10-28 15:13:10 -0700847 ui->Print("\n-- Wiping data...\n");
Elliott Hughes945548e2015-06-05 17:59:56 -0700848 bool success =
849 device->PreWipeData() &&
850 erase_volume("/data") &&
Tao Bao26112e52016-02-25 12:29:40 -0800851 (has_cache ? erase_volume("/cache") : true) &&
Elliott Hughes945548e2015-06-05 17:59:56 -0700852 device->PostWipeData();
853 ui->Print("Data wipe %s.\n", success ? "complete" : "failed");
854 return success;
Doug Zongkerf93d8162009-09-22 15:16:02 -0700855}
856
Tao Baoe39a9bc2015-03-31 12:19:05 -0700857// Return true on success.
858static bool wipe_cache(bool should_confirm, Device* device) {
Tao Bao26112e52016-02-25 12:29:40 -0800859 if (!has_cache) {
860 ui->Print("No /cache partition found.\n");
861 return false;
862 }
863
Elliott Hughes30694c92015-03-25 15:16:51 -0700864 if (should_confirm && !yes_no(device, "Wipe cache?", " THIS CAN NOT BE UNDONE!")) {
Tao Baoe39a9bc2015-03-31 12:19:05 -0700865 return false;
Elliott Hughes30694c92015-03-25 15:16:51 -0700866 }
867
Tao Bao682c34b2015-04-07 17:16:35 -0700868 modified_flash = true;
869
Elliott Hughes30694c92015-03-25 15:16:51 -0700870 ui->Print("\n-- Wiping cache...\n");
Elliott Hughes945548e2015-06-05 17:59:56 -0700871 bool success = erase_volume("/cache");
872 ui->Print("Cache wipe %s.\n", success ? "complete" : "failed");
873 return success;
Elliott Hughes30694c92015-03-25 15:16:51 -0700874}
875
Tao Bao862a4c12016-06-02 11:16:50 -0700876// Secure-wipe a given partition. It uses BLKSECDISCARD, if supported.
877// Otherwise, it goes with BLKDISCARD (if device supports BLKDISCARDZEROES) or
878// BLKZEROOUT.
879static bool secure_wipe_partition(const std::string& partition) {
880 android::base::unique_fd fd(TEMP_FAILURE_RETRY(open(partition.c_str(), O_WRONLY)));
881 if (fd == -1) {
Tianjie Xuc21edd42016-08-05 18:00:04 -0700882 PLOG(ERROR) << "failed to open \"" << partition << "\"";
Tao Bao862a4c12016-06-02 11:16:50 -0700883 return false;
884 }
885
886 uint64_t range[2] = {0, 0};
887 if (ioctl(fd, BLKGETSIZE64, &range[1]) == -1 || range[1] == 0) {
Tianjie Xuc21edd42016-08-05 18:00:04 -0700888 PLOG(ERROR) << "failed to get partition size";
Tao Bao862a4c12016-06-02 11:16:50 -0700889 return false;
890 }
891 printf("Secure-wiping \"%s\" from %" PRIu64 " to %" PRIu64 ".\n",
892 partition.c_str(), range[0], range[1]);
893
894 printf("Trying BLKSECDISCARD...\t");
895 if (ioctl(fd, BLKSECDISCARD, &range) == -1) {
896 printf("failed: %s\n", strerror(errno));
897
898 // Use BLKDISCARD if it zeroes out blocks, otherwise use BLKZEROOUT.
899 unsigned int zeroes;
900 if (ioctl(fd, BLKDISCARDZEROES, &zeroes) == 0 && zeroes != 0) {
901 printf("Trying BLKDISCARD...\t");
902 if (ioctl(fd, BLKDISCARD, &range) == -1) {
903 printf("failed: %s\n", strerror(errno));
904 return false;
905 }
906 } else {
907 printf("Trying BLKZEROOUT...\t");
908 if (ioctl(fd, BLKZEROOUT, &range) == -1) {
909 printf("failed: %s\n", strerror(errno));
910 return false;
911 }
912 }
913 }
914
915 printf("done\n");
916 return true;
917}
918
Yabin Cui6faf0262016-06-09 14:09:39 -0700919// Check if the wipe package matches expectation:
920// 1. verify the package.
921// 2. check metadata (ota-type, pre-device and serial number if having one).
922static bool check_wipe_package(size_t wipe_package_size) {
923 if (wipe_package_size == 0) {
Tianjie Xuc21edd42016-08-05 18:00:04 -0700924 LOG(ERROR) << "wipe_package_size is zero";
Yabin Cui6faf0262016-06-09 14:09:39 -0700925 return false;
926 }
927 std::string wipe_package;
Yabin Cui2f272c02016-06-24 18:22:02 -0700928 std::string err_str;
929 if (!read_wipe_package(&wipe_package, wipe_package_size, &err_str)) {
Tianjie Xuc21edd42016-08-05 18:00:04 -0700930 PLOG(ERROR) << "Failed to read wipe package";
Yabin Cui6faf0262016-06-09 14:09:39 -0700931 return false;
932 }
933 if (!verify_package(reinterpret_cast<const unsigned char*>(wipe_package.data()),
934 wipe_package.size())) {
Tianjie Xuc21edd42016-08-05 18:00:04 -0700935 LOG(ERROR) << "Failed to verify package";
Yabin Cui6faf0262016-06-09 14:09:39 -0700936 return false;
937 }
938
939 // Extract metadata
940 ZipArchive zip;
941 int err = mzOpenZipArchive(reinterpret_cast<unsigned char*>(&wipe_package[0]),
942 wipe_package.size(), &zip);
943 if (err != 0) {
Tianjie Xuc21edd42016-08-05 18:00:04 -0700944 LOG(ERROR) << "Can't open wipe package";
Yabin Cui6faf0262016-06-09 14:09:39 -0700945 return false;
946 }
947 std::string metadata;
948 if (!read_metadata_from_package(&zip, &metadata)) {
949 mzCloseZipArchive(&zip);
950 return false;
951 }
952 mzCloseZipArchive(&zip);
953
954 // Check metadata
955 std::vector<std::string> lines = android::base::Split(metadata, "\n");
956 bool ota_type_matched = false;
957 bool device_type_matched = false;
958 bool has_serial_number = false;
959 bool serial_number_matched = false;
960 for (const auto& line : lines) {
961 if (line == "ota-type=BRICK") {
962 ota_type_matched = true;
963 } else if (android::base::StartsWith(line, "pre-device=")) {
964 std::string device_type = line.substr(strlen("pre-device="));
965 char real_device_type[PROPERTY_VALUE_MAX];
966 property_get("ro.build.product", real_device_type, "");
967 device_type_matched = (device_type == real_device_type);
968 } else if (android::base::StartsWith(line, "serialno=")) {
969 std::string serial_no = line.substr(strlen("serialno="));
970 char real_serial_no[PROPERTY_VALUE_MAX];
971 property_get("ro.serialno", real_serial_no, "");
972 has_serial_number = true;
973 serial_number_matched = (serial_no == real_serial_no);
974 }
975 }
976 return ota_type_matched && device_type_matched && (!has_serial_number || serial_number_matched);
977}
978
Tao Bao108ab212016-06-10 10:13:32 -0700979// Wipe the current A/B device, with a secure wipe of all the partitions in
980// RECOVERY_WIPE.
Yabin Cui6faf0262016-06-09 14:09:39 -0700981static bool wipe_ab_device(size_t wipe_package_size) {
Tao Bao862a4c12016-06-02 11:16:50 -0700982 ui->SetBackground(RecoveryUI::ERASING);
983 ui->SetProgressType(RecoveryUI::INDETERMINATE);
984
Yabin Cui6faf0262016-06-09 14:09:39 -0700985 if (!check_wipe_package(wipe_package_size)) {
Tianjie Xuc21edd42016-08-05 18:00:04 -0700986 LOG(ERROR) << "Failed to verify wipe package";
Yabin Cui6faf0262016-06-09 14:09:39 -0700987 return false;
988 }
Tao Bao862a4c12016-06-02 11:16:50 -0700989 std::string partition_list;
Tao Bao108ab212016-06-10 10:13:32 -0700990 if (!android::base::ReadFileToString(RECOVERY_WIPE, &partition_list)) {
Tianjie Xuc21edd42016-08-05 18:00:04 -0700991 LOG(ERROR) << "failed to read \"" << RECOVERY_WIPE << "\"";
Tao Bao862a4c12016-06-02 11:16:50 -0700992 return false;
993 }
994
995 std::vector<std::string> lines = android::base::Split(partition_list, "\n");
996 for (const std::string& line : lines) {
997 std::string partition = android::base::Trim(line);
998 // Ignore '#' comment or empty lines.
999 if (android::base::StartsWith(partition, "#") || partition.empty()) {
1000 continue;
1001 }
1002
1003 // Proceed anyway even if it fails to wipe some partition.
1004 secure_wipe_partition(partition);
1005 }
1006 return true;
1007}
1008
Nick Kralevicha9ad0322014-10-22 18:38:48 -07001009static void choose_recovery_file(Device* device) {
Elliott Hughesc0491632015-05-06 12:40:05 -07001010 // "Back" + KEEP_LOG_COUNT * 2 + terminating nullptr entry
1011 char* entries[1 + KEEP_LOG_COUNT * 2 + 1];
Nick Kralevicha9ad0322014-10-22 18:38:48 -07001012 memset(entries, 0, sizeof(entries));
1013
Tao Baobef39712015-05-04 18:50:27 -07001014 unsigned int n = 0;
Patrick Tjincd055ee2014-12-09 11:26:40 -08001015
Tianjie Xua54f75e2016-08-17 12:02:46 -07001016 if (has_cache) {
1017 // Add LAST_LOG_FILE + LAST_LOG_FILE.x
1018 // Add LAST_KMSG_FILE + LAST_KMSG_FILE.x
1019 for (int i = 0; i < KEEP_LOG_COUNT; i++) {
1020 char* log_file;
1021 int ret;
1022 ret = (i == 0) ? asprintf(&log_file, "%s", LAST_LOG_FILE) :
1023 asprintf(&log_file, "%s.%d", LAST_LOG_FILE, i);
1024 if (ret == -1) {
1025 // memory allocation failure - return early. Should never happen.
1026 return;
1027 }
1028 if ((ensure_path_mounted(log_file) != 0) || (access(log_file, R_OK) == -1)) {
1029 free(log_file);
1030 } else {
1031 entries[n++] = log_file;
1032 }
Tao Baobef39712015-05-04 18:50:27 -07001033
Tianjie Xua54f75e2016-08-17 12:02:46 -07001034 char* kmsg_file;
1035 ret = (i == 0) ? asprintf(&kmsg_file, "%s", LAST_KMSG_FILE) :
1036 asprintf(&kmsg_file, "%s.%d", LAST_KMSG_FILE, i);
1037 if (ret == -1) {
1038 // memory allocation failure - return early. Should never happen.
1039 return;
1040 }
1041 if ((ensure_path_mounted(kmsg_file) != 0) || (access(kmsg_file, R_OK) == -1)) {
1042 free(kmsg_file);
1043 } else {
1044 entries[n++] = kmsg_file;
1045 }
Tao Baobef39712015-05-04 18:50:27 -07001046 }
Tianjie Xua54f75e2016-08-17 12:02:46 -07001047 } else {
1048 // If cache partition is not found, view /tmp/recovery.log instead.
1049 ui->Print("No /cache partition found.\n");
1050 if (access(TEMPORARY_LOG_FILE, R_OK) == -1) {
1051 return;
1052 } else{
1053 entries[n++] = strdup(TEMPORARY_LOG_FILE);
Tao Baobef39712015-05-04 18:50:27 -07001054 }
Nick Kralevicha9ad0322014-10-22 18:38:48 -07001055 }
1056
Elliott Hughesc0491632015-05-06 12:40:05 -07001057 entries[n++] = strdup("Back");
1058
Tao Baobef39712015-05-04 18:50:27 -07001059 const char* headers[] = { "Select file to view", nullptr };
Nick Kralevicha9ad0322014-10-22 18:38:48 -07001060
Elliott Hughes8de52072015-04-08 20:06:50 -07001061 while (true) {
Elliott Hughes30694c92015-03-25 15:16:51 -07001062 int chosen_item = get_menu_selection(headers, entries, 1, 0, device);
Elliott Hughesc0491632015-05-06 12:40:05 -07001063 if (strcmp(entries[chosen_item], "Back") == 0) break;
Elliott Hughes8de52072015-04-08 20:06:50 -07001064
Elliott Hughes8de52072015-04-08 20:06:50 -07001065 ui->ShowFile(entries[chosen_item]);
Nick Kralevicha9ad0322014-10-22 18:38:48 -07001066 }
1067
Tao Baobef39712015-05-04 18:50:27 -07001068 for (size_t i = 0; i < (sizeof(entries) / sizeof(*entries)); i++) {
Nick Kralevicha9ad0322014-10-22 18:38:48 -07001069 free(entries[i]);
1070 }
1071}
1072
Elliott Hughes498cda62016-04-14 16:49:04 -07001073static void run_graphics_test(Device* device) {
1074 // Switch to graphics screen.
1075 ui->ShowText(false);
1076
1077 ui->SetProgressType(RecoveryUI::INDETERMINATE);
1078 ui->SetBackground(RecoveryUI::INSTALLING_UPDATE);
1079 sleep(1);
1080
1081 ui->SetBackground(RecoveryUI::ERROR);
1082 sleep(1);
1083
1084 ui->SetBackground(RecoveryUI::NO_COMMAND);
1085 sleep(1);
1086
1087 ui->SetBackground(RecoveryUI::ERASING);
1088 sleep(1);
1089
1090 ui->SetBackground(RecoveryUI::INSTALLING_UPDATE);
1091
1092 ui->SetProgressType(RecoveryUI::DETERMINATE);
1093 ui->ShowProgress(1.0, 10.0);
1094 float fraction = 0.0;
1095 for (size_t i = 0; i < 100; ++i) {
1096 fraction += .01;
1097 ui->SetProgress(fraction);
1098 usleep(100000);
1099 }
1100
1101 ui->ShowText(true);
1102}
1103
Tao Baocdcf28f2016-01-13 15:05:20 -08001104// How long (in seconds) we wait for the fuse-provided package file to
1105// appear, before timing out.
1106#define SDCARD_INSTALL_TIMEOUT 10
1107
Tao Bao145d8612015-03-25 15:51:15 -07001108static int apply_from_sdcard(Device* device, bool* wipe_cache) {
Tao Bao682c34b2015-04-07 17:16:35 -07001109 modified_flash = true;
1110
Christian Poetzsch4ec58a42015-02-19 10:42:39 +00001111 if (ensure_path_mounted(SDCARD_ROOT) != 0) {
1112 ui->Print("\n-- Couldn't mount %s.\n", SDCARD_ROOT);
1113 return INSTALL_ERROR;
1114 }
1115
1116 char* path = browse_directory(SDCARD_ROOT, device);
1117 if (path == NULL) {
Elliott Hughes018ed312015-04-08 16:51:36 -07001118 ui->Print("\n-- No package file selected.\n");
caozhiyuanb4effb92015-06-10 16:46:38 +08001119 ensure_path_unmounted(SDCARD_ROOT);
Christian Poetzsch4ec58a42015-02-19 10:42:39 +00001120 return INSTALL_ERROR;
1121 }
1122
1123 ui->Print("\n-- Install %s ...\n", path);
1124 set_sdcard_update_bootloader_message();
Christian Poetzsch4ec58a42015-02-19 10:42:39 +00001125
Tao Baocdcf28f2016-01-13 15:05:20 -08001126 // We used to use fuse in a thread as opposed to a process. Since accessing
1127 // through fuse involves going from kernel to userspace to kernel, it leads
1128 // to deadlock when a page fault occurs. (Bug: 26313124)
1129 pid_t child;
1130 if ((child = fork()) == 0) {
1131 bool status = start_sdcard_fuse(path);
1132
1133 _exit(status ? EXIT_SUCCESS : EXIT_FAILURE);
1134 }
1135
1136 // FUSE_SIDELOAD_HOST_PATHNAME will start to exist once the fuse in child
1137 // process is ready.
1138 int result = INSTALL_ERROR;
1139 int status;
1140 bool waited = false;
1141 for (int i = 0; i < SDCARD_INSTALL_TIMEOUT; ++i) {
1142 if (waitpid(child, &status, WNOHANG) == -1) {
1143 result = INSTALL_ERROR;
1144 waited = true;
1145 break;
1146 }
1147
1148 struct stat sb;
1149 if (stat(FUSE_SIDELOAD_HOST_PATHNAME, &sb) == -1) {
1150 if (errno == ENOENT && i < SDCARD_INSTALL_TIMEOUT-1) {
1151 sleep(1);
1152 continue;
1153 } else {
Tianjie Xuc21edd42016-08-05 18:00:04 -07001154 LOG(ERROR) << "Timed out waiting for the fuse-provided package.";
Tao Baocdcf28f2016-01-13 15:05:20 -08001155 result = INSTALL_ERROR;
1156 kill(child, SIGKILL);
1157 break;
1158 }
1159 }
1160
1161 result = install_package(FUSE_SIDELOAD_HOST_PATHNAME, wipe_cache,
Tianjie Xu16255832016-04-30 11:49:59 -07001162 TEMPORARY_INSTALL_FILE, false, 0/*retry_count*/);
Tao Baocdcf28f2016-01-13 15:05:20 -08001163 break;
1164 }
Christian Poetzsch4ec58a42015-02-19 10:42:39 +00001165
Tao Baocdcf28f2016-01-13 15:05:20 -08001166 if (!waited) {
1167 // Calling stat() on this magic filename signals the fuse
1168 // filesystem to shut down.
1169 struct stat sb;
1170 stat(FUSE_SIDELOAD_HOST_EXIT_PATHNAME, &sb);
1171
1172 waitpid(child, &status, 0);
1173 }
1174
1175 if (!WIFEXITED(status) || WEXITSTATUS(status) != 0) {
Tianjie Xuc21edd42016-08-05 18:00:04 -07001176 LOG(ERROR) << "Error exit from the fuse process: " << WEXITSTATUS(status);
Tao Baocdcf28f2016-01-13 15:05:20 -08001177 }
1178
Christian Poetzsch4ec58a42015-02-19 10:42:39 +00001179 ensure_path_unmounted(SDCARD_ROOT);
Tao Baocdcf28f2016-01-13 15:05:20 -08001180 return result;
Christian Poetzsch4ec58a42015-02-19 10:42:39 +00001181}
1182
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001183// Return REBOOT, SHUTDOWN, or REBOOT_BOOTLOADER. Returning NO_ACTION
1184// means to take the default, which is to reboot or shutdown depending
1185// on if the --shutdown_after flag was passed to recovery.
1186static Device::BuiltinAction
Doug Zongker6c8553d2012-09-24 10:40:47 -07001187prompt_and_wait(Device* device, int status) {
Doug Zongkerf93d8162009-09-22 15:16:02 -07001188 for (;;) {
Tianjie Xuc14d95d2016-03-24 11:50:34 -07001189 finish_recovery();
Doug Zongker6c8553d2012-09-24 10:40:47 -07001190 switch (status) {
1191 case INSTALL_SUCCESS:
1192 case INSTALL_NONE:
1193 ui->SetBackground(RecoveryUI::NO_COMMAND);
1194 break;
1195
1196 case INSTALL_ERROR:
1197 case INSTALL_CORRUPT:
1198 ui->SetBackground(RecoveryUI::ERROR);
1199 break;
1200 }
Doug Zongker211aebc2011-10-28 15:13:10 -07001201 ui->SetProgressType(RecoveryUI::EMPTY);
Doug Zongkerf93d8162009-09-22 15:16:02 -07001202
Elliott Hughes8fd86d72015-04-13 14:36:02 -07001203 int chosen_item = get_menu_selection(nullptr, device->GetMenuItems(), 0, 0, device);
Doug Zongkerf93d8162009-09-22 15:16:02 -07001204
1205 // device-specific code may take some action here. It may
1206 // return one of the core actions handled in the switch
1207 // statement below.
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001208 Device::BuiltinAction chosen_action = device->InvokeMenuItem(chosen_item);
Doug Zongkerf93d8162009-09-22 15:16:02 -07001209
Elliott Hughes30694c92015-03-25 15:16:51 -07001210 bool should_wipe_cache = false;
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001211 switch (chosen_action) {
1212 case Device::NO_ACTION:
1213 break;
1214
Doug Zongkerdaefc1d2011-10-31 09:34:15 -07001215 case Device::REBOOT:
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001216 case Device::SHUTDOWN:
1217 case Device::REBOOT_BOOTLOADER:
1218 return chosen_action;
Doug Zongkerf93d8162009-09-22 15:16:02 -07001219
Doug Zongkerdaefc1d2011-10-31 09:34:15 -07001220 case Device::WIPE_DATA:
1221 wipe_data(ui->IsTextVisible(), device);
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001222 if (!ui->IsTextVisible()) return Device::NO_ACTION;
Doug Zongkerf93d8162009-09-22 15:16:02 -07001223 break;
1224
Doug Zongkerdaefc1d2011-10-31 09:34:15 -07001225 case Device::WIPE_CACHE:
Elliott Hughes30694c92015-03-25 15:16:51 -07001226 wipe_cache(ui->IsTextVisible(), device);
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001227 if (!ui->IsTextVisible()) return Device::NO_ACTION;
Doug Zongkerf93d8162009-09-22 15:16:02 -07001228 break;
1229
Christian Poetzsch4ec58a42015-02-19 10:42:39 +00001230 case Device::APPLY_ADB_SIDELOAD:
Elliott Hughesec283402015-04-10 10:01:53 -07001231 case Device::APPLY_SDCARD:
Christian Poetzsch4ec58a42015-02-19 10:42:39 +00001232 {
1233 bool adb = (chosen_action == Device::APPLY_ADB_SIDELOAD);
1234 if (adb) {
Elliott Hughes30694c92015-03-25 15:16:51 -07001235 status = apply_from_adb(ui, &should_wipe_cache, TEMPORARY_INSTALL_FILE);
Doug Zongkerd0181b82011-10-19 10:51:12 -07001236 } else {
Elliott Hughes30694c92015-03-25 15:16:51 -07001237 status = apply_from_sdcard(device, &should_wipe_cache);
Doug Zongkerd0181b82011-10-19 10:51:12 -07001238 }
Doug Zongker945fc682014-07-10 10:50:39 -07001239
Elliott Hughes30694c92015-03-25 15:16:51 -07001240 if (status == INSTALL_SUCCESS && should_wipe_cache) {
Tao Baoe39a9bc2015-03-31 12:19:05 -07001241 if (!wipe_cache(false, device)) {
1242 status = INSTALL_ERROR;
1243 }
Christian Poetzsch4ec58a42015-02-19 10:42:39 +00001244 }
1245
Tao Baoc679f932015-03-30 09:43:49 -07001246 if (status != INSTALL_SUCCESS) {
1247 ui->SetBackground(RecoveryUI::ERROR);
1248 ui->Print("Installation aborted.\n");
1249 copy_logs();
1250 } else if (!ui->IsTextVisible()) {
1251 return Device::NO_ACTION; // reboot if logs aren't visible
1252 } else {
1253 ui->Print("\nInstall from %s complete.\n", adb ? "ADB" : "SD card");
Doug Zongker8674a722010-09-15 11:08:23 -07001254 }
Doug Zongkerf93d8162009-09-22 15:16:02 -07001255 }
1256 break;
Doug Zongkerdaefc1d2011-10-31 09:34:15 -07001257
Elliott Hughesec283402015-04-10 10:01:53 -07001258 case Device::VIEW_RECOVERY_LOGS:
1259 choose_recovery_file(device);
Michael Ward9d2629c2011-06-23 22:14:24 -07001260 break;
Doug Zongker9270a202012-01-09 15:16:13 -08001261
Elliott Hughes498cda62016-04-14 16:49:04 -07001262 case Device::RUN_GRAPHICS_TEST:
1263 run_graphics_test(device);
1264 break;
1265
Elliott Hughesec283402015-04-10 10:01:53 -07001266 case Device::MOUNT_SYSTEM:
Tao Baoabb8f772015-07-30 14:43:27 -07001267 // For a system image built with the root directory (i.e.
1268 // system_root_image == "true"), we mount it to /system_root, and symlink /system
1269 // to /system_root/system to make adb shell work (the symlink is created through
1270 // the build system).
1271 // Bug: 22855115
Elliott Hughescb220402016-09-23 15:30:55 -07001272 if (android::base::GetBoolProperty("ro.build.system_root_image", false)) {
Tao Baoabb8f772015-07-30 14:43:27 -07001273 if (ensure_path_mounted_at("/", "/system_root") != -1) {
1274 ui->Print("Mounted /system.\n");
1275 }
1276 } else {
1277 if (ensure_path_mounted("/system") != -1) {
1278 ui->Print("Mounted /system.\n");
1279 }
Elliott Hughesec283402015-04-10 10:01:53 -07001280 }
Tao Baoabb8f772015-07-30 14:43:27 -07001281
Nick Kralevicha9ad0322014-10-22 18:38:48 -07001282 break;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001283 }
1284 }
1285}
1286
1287static void
Oscar Montemayor05231562009-11-30 08:40:57 -08001288print_property(const char *key, const char *name, void *cookie) {
Doug Zongker56c51052010-07-01 09:18:44 -07001289 printf("%s=%s\n", key, name);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001290}
1291
Doug Zongker02ec6b82012-08-22 17:26:40 -07001292static void
1293load_locale_from_cache() {
1294 FILE* fp = fopen_path(LOCALE_FILE, "r");
1295 char buffer[80];
1296 if (fp != NULL) {
1297 fgets(buffer, sizeof(buffer), fp);
1298 int j = 0;
Doug Zongker5fa8c232012-09-18 12:37:02 -07001299 unsigned int i;
Doug Zongker02ec6b82012-08-22 17:26:40 -07001300 for (i = 0; i < sizeof(buffer) && buffer[i]; ++i) {
1301 if (!isspace(buffer[i])) {
1302 buffer[j++] = buffer[i];
1303 }
1304 }
1305 buffer[j] = 0;
1306 locale = strdup(buffer);
Devin Kim6016d082012-10-08 09:47:37 -07001307 check_and_fclose(fp, LOCALE_FILE);
Doug Zongker02ec6b82012-08-22 17:26:40 -07001308 }
1309}
1310
Doug Zongker7c3ae452013-05-14 11:03:02 -07001311static RecoveryUI* gCurrentUI = NULL;
1312
1313void
1314ui_print(const char* format, ...) {
1315 char buffer[256];
1316
1317 va_list ap;
1318 va_start(ap, format);
1319 vsnprintf(buffer, sizeof(buffer), format, ap);
1320 va_end(ap);
1321
1322 if (gCurrentUI != NULL) {
1323 gCurrentUI->Print("%s", buffer);
1324 } else {
1325 fputs(buffer, stdout);
1326 }
1327}
1328
Tianjie Xuc21edd42016-08-05 18:00:04 -07001329static constexpr char log_characters[] = "VDIWEF";
1330
1331void UiLogger(android::base::LogId id, android::base::LogSeverity severity,
1332 const char* tag, const char* file, unsigned int line,
1333 const char* message) {
1334 if (severity >= android::base::ERROR && gCurrentUI != NULL) {
1335 gCurrentUI->Print("E:%s\n", message);
1336 } else {
1337 fprintf(stdout, "%c:%s\n", log_characters[severity], message);
1338 }
1339}
1340
Yabin Cui99281df2016-02-17 12:21:52 -08001341static bool is_battery_ok() {
1342 struct healthd_config healthd_config = {
1343 .batteryStatusPath = android::String8(android::String8::kEmptyString),
1344 .batteryHealthPath = android::String8(android::String8::kEmptyString),
1345 .batteryPresentPath = android::String8(android::String8::kEmptyString),
1346 .batteryCapacityPath = android::String8(android::String8::kEmptyString),
1347 .batteryVoltagePath = android::String8(android::String8::kEmptyString),
1348 .batteryTemperaturePath = android::String8(android::String8::kEmptyString),
1349 .batteryTechnologyPath = android::String8(android::String8::kEmptyString),
1350 .batteryCurrentNowPath = android::String8(android::String8::kEmptyString),
1351 .batteryCurrentAvgPath = android::String8(android::String8::kEmptyString),
1352 .batteryChargeCounterPath = android::String8(android::String8::kEmptyString),
1353 .batteryFullChargePath = android::String8(android::String8::kEmptyString),
1354 .batteryCycleCountPath = android::String8(android::String8::kEmptyString),
1355 .energyCounter = NULL,
1356 .boot_min_cap = 0,
1357 .screen_on = NULL
1358 };
1359 healthd_board_init(&healthd_config);
1360
1361 android::BatteryMonitor monitor;
1362 monitor.init(&healthd_config);
1363
1364 int wait_second = 0;
1365 while (true) {
1366 int charge_status = monitor.getChargeStatus();
1367 // Treat unknown status as charged.
1368 bool charged = (charge_status != android::BATTERY_STATUS_DISCHARGING &&
1369 charge_status != android::BATTERY_STATUS_NOT_CHARGING);
1370 android::BatteryProperty capacity;
1371 android::status_t status = monitor.getProperty(android::BATTERY_PROP_CAPACITY, &capacity);
1372 ui_print("charge_status %d, charged %d, status %d, capacity %lld\n", charge_status,
1373 charged, status, capacity.valueInt64);
1374 // At startup, the battery drivers in devices like N5X/N6P take some time to load
1375 // the battery profile. Before the load finishes, it reports value 50 as a fake
1376 // capacity. BATTERY_READ_TIMEOUT_IN_SEC is set that the battery drivers are expected
1377 // to finish loading the battery profile earlier than 10 seconds after kernel startup.
1378 if (status == 0 && capacity.valueInt64 == 50) {
1379 if (wait_second < BATTERY_READ_TIMEOUT_IN_SEC) {
1380 sleep(1);
1381 wait_second++;
1382 continue;
1383 }
1384 }
1385 // If we can't read battery percentage, it may be a device without battery. In this
1386 // situation, use 100 as a fake battery percentage.
1387 if (status != 0) {
1388 capacity.valueInt64 = 100;
1389 }
1390 return (charged && capacity.valueInt64 >= BATTERY_WITH_CHARGER_OK_PERCENTAGE) ||
1391 (!charged && capacity.valueInt64 >= BATTERY_OK_PERCENTAGE);
1392 }
1393}
1394
Tianjie Xu3c62b672016-02-05 18:25:58 -08001395static void set_retry_bootloader_message(int retry_count, int argc, char** argv) {
Yabin Cui2f272c02016-06-24 18:22:02 -07001396 bootloader_message boot = {};
Tianjie Xu3c62b672016-02-05 18:25:58 -08001397 strlcpy(boot.command, "boot-recovery", sizeof(boot.command));
1398 strlcpy(boot.recovery, "recovery\n", sizeof(boot.recovery));
1399
1400 for (int i = 1; i < argc; ++i) {
1401 if (strstr(argv[i], "retry_count") == nullptr) {
1402 strlcat(boot.recovery, argv[i], sizeof(boot.recovery));
1403 strlcat(boot.recovery, "\n", sizeof(boot.recovery));
1404 }
1405 }
1406
1407 // Initialize counter to 1 if it's not in BCB, otherwise increment it by 1.
1408 if (retry_count == 0) {
1409 strlcat(boot.recovery, "--retry_count=1\n", sizeof(boot.recovery));
1410 } else {
1411 char buffer[20];
1412 snprintf(buffer, sizeof(buffer), "--retry_count=%d\n", retry_count+1);
1413 strlcat(boot.recovery, buffer, sizeof(boot.recovery));
1414 }
Yabin Cui2f272c02016-06-24 18:22:02 -07001415 std::string err;
1416 if (!write_bootloader_message(boot, &err)) {
Tianjie Xuc21edd42016-08-05 18:00:04 -07001417 LOG(ERROR) << err;
Yabin Cui2f272c02016-06-24 18:22:02 -07001418 }
Tianjie Xu3c62b672016-02-05 18:25:58 -08001419}
1420
Tianjie Xu27b9fc82016-07-11 14:04:08 -07001421static bool bootreason_in_blacklist() {
1422 char bootreason[PROPERTY_VALUE_MAX];
1423 if (property_get("ro.boot.bootreason", bootreason, nullptr) > 0) {
1424 for (const auto& str : bootreason_blacklist) {
1425 if (strcasecmp(str.c_str(), bootreason) == 0) {
1426 return true;
1427 }
1428 }
1429 }
1430 return false;
1431}
1432
1433static void log_failure_code(ErrorCode code, const char *update_package) {
Tao Baobadaac42016-09-26 11:39:14 -07001434 std::vector<std::string> log_buffer = {
1435 update_package,
1436 "0", // install result
1437 "error: " + std::to_string(code),
1438 };
1439 std::string log_content = android::base::Join(log_buffer, "\n");
1440 if (!android::base::WriteStringToFile(log_content, TEMPORARY_INSTALL_FILE)) {
1441 PLOG(ERROR) << "failed to write " << TEMPORARY_INSTALL_FILE;
Tianjie Xu27b9fc82016-07-11 14:04:08 -07001442 }
Tao Baobadaac42016-09-26 11:39:14 -07001443
1444 // Also write the info into last_log.
1445 LOG(INFO) << log_content;
Tianjie Xu27b9fc82016-07-11 14:04:08 -07001446}
1447
Mark Salyzyna4f701a2016-03-09 14:58:16 -08001448static ssize_t logbasename(
1449 log_id_t /* logId */,
1450 char /* prio */,
1451 const char *filename,
1452 const char * /* buf */, size_t len,
1453 void *arg) {
1454 if (strstr(LAST_KMSG_FILE, filename) ||
1455 strstr(LAST_LOG_FILE, filename)) {
1456 bool *doRotate = reinterpret_cast<bool *>(arg);
1457 *doRotate = true;
1458 }
1459 return len;
1460}
1461
1462static ssize_t logrotate(
1463 log_id_t logId,
1464 char prio,
1465 const char *filename,
1466 const char *buf, size_t len,
1467 void *arg) {
1468 bool *doRotate = reinterpret_cast<bool *>(arg);
1469 if (!*doRotate) {
1470 return __android_log_pmsg_file_write(logId, prio, filename, buf, len);
1471 }
1472
1473 std::string name(filename);
Chih-Hung Hsieh23abfd32016-07-27 10:19:47 -07001474 size_t dot = name.find_last_of('.');
Mark Salyzyna4f701a2016-03-09 14:58:16 -08001475 std::string sub = name.substr(0, dot);
1476
1477 if (!strstr(LAST_KMSG_FILE, sub.c_str()) &&
1478 !strstr(LAST_LOG_FILE, sub.c_str())) {
1479 return __android_log_pmsg_file_write(logId, prio, filename, buf, len);
1480 }
1481
1482 // filename rotation
1483 if (dot == std::string::npos) {
1484 name += ".1";
1485 } else {
1486 std::string number = name.substr(dot + 1);
1487 if (!isdigit(number.data()[0])) {
1488 name += ".1";
1489 } else {
Chih-Hung Hsieh54a27472016-04-18 11:30:55 -07001490 auto i = std::stoull(number);
Mark Salyzyna4f701a2016-03-09 14:58:16 -08001491 name = sub + "." + std::to_string(i + 1);
1492 }
1493 }
1494
1495 return __android_log_pmsg_file_write(logId, prio, name.c_str(), buf, len);
1496}
1497
Yabin Cui99281df2016-02-17 12:21:52 -08001498int main(int argc, char **argv) {
Tianjie Xuc21edd42016-08-05 18:00:04 -07001499 // We don't have logcat yet under recovery; so we'll print error on screen and
1500 // log to stdout (which is redirected to recovery.log) as we used to do.
1501 android::base::InitLogging(argv, &UiLogger);
1502
Mark Salyzyna4f701a2016-03-09 14:58:16 -08001503 // Take last pmsg contents and rewrite it to the current pmsg session.
1504 static const char filter[] = "recovery/";
1505 // Do we need to rotate?
1506 bool doRotate = false;
1507 __android_log_pmsg_file_read(
1508 LOG_ID_SYSTEM, ANDROID_LOG_INFO, filter,
1509 logbasename, &doRotate);
1510 // Take action to refresh pmsg contents
1511 __android_log_pmsg_file_read(
1512 LOG_ID_SYSTEM, ANDROID_LOG_INFO, filter,
1513 logrotate, &doRotate);
1514
Doug Zongker9270a202012-01-09 15:16:13 -08001515 // If this binary is started with the single argument "--adbd",
1516 // instead of being the normal recovery binary, it turns into kind
1517 // of a stripped-down version of adbd that only supports the
1518 // 'sideload' command. Note this must be a real argument, not
1519 // anything in the command file or bootloader control block; the
1520 // only way recovery should be run with this argument is when it
1521 // starts a copy of itself from the apply_from_adb() function.
1522 if (argc == 2 && strcmp(argv[1], "--adbd") == 0) {
Josh Gaoacb2a2f2016-08-26 18:24:34 -07001523 minadbd_main();
Doug Zongker9270a202012-01-09 15:16:13 -08001524 return 0;
1525 }
1526
Tao Bao04ca4262015-09-10 15:32:24 -07001527 time_t start = time(NULL);
1528
1529 // redirect_stdio should be called only in non-sideload mode. Otherwise
1530 // we may have two logger instances with different timestamps.
1531 redirect_stdio(TEMPORARY_LOG_FILE);
1532
Doug Zongker19a8e242014-01-21 09:25:41 -08001533 printf("Starting recovery (pid %d) on %s", getpid(), ctime(&start));
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001534
Doug Zongkerd4208f92010-09-20 12:16:13 -07001535 load_volume_table();
Tao Bao26112e52016-02-25 12:29:40 -08001536 has_cache = volume_for_path(CACHE_ROOT) != nullptr;
1537
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001538 get_args(&argc, &argv);
1539
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001540 const char *update_package = NULL;
Tao Baoe39a9bc2015-03-31 12:19:05 -07001541 bool should_wipe_data = false;
Tao Baoc679f932015-03-30 09:43:49 -07001542 bool should_wipe_cache = false;
Tao Bao108ab212016-06-10 10:13:32 -07001543 bool should_wipe_ab = false;
Yabin Cui6faf0262016-06-09 14:09:39 -07001544 size_t wipe_package_size = 0;
Tao Bao145d8612015-03-25 15:51:15 -07001545 bool show_text = false;
Tao Baoc679f932015-03-30 09:43:49 -07001546 bool sideload = false;
1547 bool sideload_auto_reboot = false;
Doug Zongkere5d5ac72012-04-12 11:01:22 -07001548 bool just_exit = false;
Doug Zongkerb1d12632014-03-18 10:32:12 -07001549 bool shutdown_after = false;
Tianjie Xu3c62b672016-02-05 18:25:58 -08001550 int retry_count = 0;
Tianjie Xu35926c42016-04-28 18:06:26 -07001551 bool security_update = false;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001552
1553 int arg;
Tao Bao862a4c12016-06-02 11:16:50 -07001554 int option_index;
1555 while ((arg = getopt_long(argc, argv, "", OPTIONS, &option_index)) != -1) {
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001556 switch (arg) {
Tianjie Xu3c62b672016-02-05 18:25:58 -08001557 case 'n': android::base::ParseInt(optarg, &retry_count, 0); break;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001558 case 'u': update_package = optarg; break;
Tao Baoe39a9bc2015-03-31 12:19:05 -07001559 case 'w': should_wipe_data = true; break;
Tao Baoc679f932015-03-30 09:43:49 -07001560 case 'c': should_wipe_cache = true; break;
Tao Bao145d8612015-03-25 15:51:15 -07001561 case 't': show_text = true; break;
Tao Baoc679f932015-03-30 09:43:49 -07001562 case 's': sideload = true; break;
1563 case 'a': sideload = true; sideload_auto_reboot = true; break;
Doug Zongkere5d5ac72012-04-12 11:01:22 -07001564 case 'x': just_exit = true; break;
Doug Zongker02ec6b82012-08-22 17:26:40 -07001565 case 'l': locale = optarg; break;
Doug Zongkerc87bab12013-11-25 13:53:25 -08001566 case 'g': {
1567 if (stage == NULL || *stage == '\0') {
1568 char buffer[20] = "1/";
1569 strncat(buffer, optarg, sizeof(buffer)-3);
1570 stage = strdup(buffer);
1571 }
1572 break;
1573 }
Doug Zongkerb1d12632014-03-18 10:32:12 -07001574 case 'p': shutdown_after = true; break;
Jeff Sharkeya6e13ae2014-09-24 11:46:17 -07001575 case 'r': reason = optarg; break;
Tianjie Xu35926c42016-04-28 18:06:26 -07001576 case 'e': security_update = true; break;
Tao Bao862a4c12016-06-02 11:16:50 -07001577 case 0: {
Tao Bao108ab212016-06-10 10:13:32 -07001578 if (strcmp(OPTIONS[option_index].name, "wipe_ab") == 0) {
1579 should_wipe_ab = true;
Tao Bao862a4c12016-06-02 11:16:50 -07001580 break;
Yabin Cui6faf0262016-06-09 14:09:39 -07001581 } else if (strcmp(OPTIONS[option_index].name, "wipe_package_size") == 0) {
1582 android::base::ParseUint(optarg, &wipe_package_size);
1583 break;
Tao Bao862a4c12016-06-02 11:16:50 -07001584 }
1585 break;
1586 }
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001587 case '?':
Tianjie Xuc21edd42016-08-05 18:00:04 -07001588 LOG(ERROR) << "Invalid command argument";
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001589 continue;
1590 }
1591 }
1592
Tao Bao26112e52016-02-25 12:29:40 -08001593 if (locale == nullptr && has_cache) {
Doug Zongker02ec6b82012-08-22 17:26:40 -07001594 load_locale_from_cache();
1595 }
1596 printf("locale is [%s]\n", locale);
Doug Zongker0d32f252014-02-13 15:07:56 -08001597 printf("stage is [%s]\n", stage);
Jeff Sharkeya6e13ae2014-09-24 11:46:17 -07001598 printf("reason is [%s]\n", reason);
Doug Zongker02ec6b82012-08-22 17:26:40 -07001599
1600 Device* device = make_device();
1601 ui = device->GetUI();
Doug Zongker7c3ae452013-05-14 11:03:02 -07001602 gCurrentUI = ui;
Doug Zongker02ec6b82012-08-22 17:26:40 -07001603
Doug Zongker5fa8c232012-09-18 12:37:02 -07001604 ui->SetLocale(locale);
Doug Zongker02ec6b82012-08-22 17:26:40 -07001605 ui->Init();
Tianjie Xu35926c42016-04-28 18:06:26 -07001606 // Set background string to "installing security update" for security update,
1607 // otherwise set it to "installing system update".
1608 ui->SetSystemUpdateText(security_update);
Doug Zongkerc87bab12013-11-25 13:53:25 -08001609
1610 int st_cur, st_max;
1611 if (stage != NULL && sscanf(stage, "%d/%d", &st_cur, &st_max) == 2) {
1612 ui->SetStage(st_cur, st_max);
1613 }
1614
Doug Zongker02ec6b82012-08-22 17:26:40 -07001615 ui->SetBackground(RecoveryUI::NONE);
1616 if (show_text) ui->ShowText(true);
1617
Stephen Smalley779701d2012-02-09 14:13:23 -05001618 struct selinux_opt seopts[] = {
1619 { SELABEL_OPT_PATH, "/file_contexts" }
1620 };
1621
1622 sehandle = selabel_open(SELABEL_CTX_FILE, seopts, 1);
1623
1624 if (!sehandle) {
Doug Zongkerfafc85b2013-07-09 12:29:45 -07001625 ui->Print("Warning: No file_contexts\n");
Stephen Smalley779701d2012-02-09 14:13:23 -05001626 }
Stephen Smalley779701d2012-02-09 14:13:23 -05001627
Doug Zongkerdaefc1d2011-10-31 09:34:15 -07001628 device->StartRecovery();
Doug Zongkerefa1bab2010-02-01 15:59:12 -08001629
Doug Zongker56c51052010-07-01 09:18:44 -07001630 printf("Command:");
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001631 for (arg = 0; arg < argc; arg++) {
Doug Zongker56c51052010-07-01 09:18:44 -07001632 printf(" \"%s\"", argv[arg]);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001633 }
Doug Zongker9b125b02010-09-22 12:01:37 -07001634 printf("\n");
1635
1636 if (update_package) {
1637 // For backwards compatibility on the cache partition only, if
1638 // we're given an old 'root' path "CACHE:foo", change it to
1639 // "/cache/foo".
1640 if (strncmp(update_package, "CACHE:", 6) == 0) {
1641 int len = strlen(update_package) + 10;
Doug Zongker28ce47c2011-10-28 10:33:05 -07001642 char* modified_path = (char*)malloc(len);
Jeremy Compostella1b7d9b72015-07-29 17:17:03 +02001643 if (modified_path) {
1644 strlcpy(modified_path, "/cache/", len);
1645 strlcat(modified_path, update_package+6, len);
1646 printf("(replacing path \"%s\" with \"%s\")\n",
1647 update_package, modified_path);
1648 update_package = modified_path;
1649 }
1650 else
1651 printf("modified_path allocation failed\n");
Doug Zongker9b125b02010-09-22 12:01:37 -07001652 }
1653 }
1654 printf("\n");
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001655
1656 property_list(print_property, NULL);
Doug Zongker56c51052010-07-01 09:18:44 -07001657 printf("\n");
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001658
Elliott Hughesbb78d622015-04-09 20:51:08 -07001659 ui->Print("Supported API: %d\n", RECOVERY_API_VERSION);
1660
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001661 int status = INSTALL_SUCCESS;
1662
Doug Zongker540d57f2011-01-18 13:36:58 -08001663 if (update_package != NULL) {
Tao Bao56870012016-04-29 15:37:05 -07001664 // It's not entirely true that we will modify the flash. But we want
1665 // to log the update attempt since update_package is non-NULL.
1666 modified_flash = true;
1667
Yabin Cui99281df2016-02-17 12:21:52 -08001668 if (!is_battery_ok()) {
1669 ui->Print("battery capacity is not enough for installing package, needed is %d%%\n",
1670 BATTERY_OK_PERCENTAGE);
Tianjie Xu16255832016-04-30 11:49:59 -07001671 // Log the error code to last_install when installation skips due to
1672 // low battery.
Tianjie Xu27b9fc82016-07-11 14:04:08 -07001673 log_failure_code(kLowBattery, update_package);
1674 status = INSTALL_SKIPPED;
1675 } else if (bootreason_in_blacklist()) {
1676 // Skip update-on-reboot when bootreason is kernel_panic or similar
1677 ui->Print("bootreason is in the blacklist; skip OTA installation\n");
1678 log_failure_code(kBootreasonInBlacklist, update_package);
Yabin Cui99281df2016-02-17 12:21:52 -08001679 status = INSTALL_SKIPPED;
1680 } else {
1681 status = install_package(update_package, &should_wipe_cache,
Tianjie Xu16255832016-04-30 11:49:59 -07001682 TEMPORARY_INSTALL_FILE, true, retry_count);
Yabin Cui99281df2016-02-17 12:21:52 -08001683 if (status == INSTALL_SUCCESS && should_wipe_cache) {
1684 wipe_cache(false, device);
1685 }
1686 if (status != INSTALL_SUCCESS) {
1687 ui->Print("Installation aborted.\n");
Tianjie Xu3c62b672016-02-05 18:25:58 -08001688 // When I/O error happens, reboot and retry installation EIO_RETRY_COUNT
1689 // times before we abandon this OTA update.
1690 if (status == INSTALL_RETRY && retry_count < EIO_RETRY_COUNT) {
1691 copy_logs();
1692 set_retry_bootloader_message(retry_count, argc, argv);
1693 // Print retry count on screen.
1694 ui->Print("Retry attempt %d\n", retry_count);
Doug Zongker7c3ae452013-05-14 11:03:02 -07001695
Tianjie Xu3c62b672016-02-05 18:25:58 -08001696 // Reboot and retry the update
Elliott Hughescb220402016-09-23 15:30:55 -07001697 if (!android::base::SetProperty(ANDROID_RB_PROPERTY, "reboot,recovery")) {
Tianjie Xu3c62b672016-02-05 18:25:58 -08001698 ui->Print("Reboot failed\n");
1699 } else {
1700 while (true) {
1701 pause();
1702 }
1703 }
1704 }
Yabin Cui99281df2016-02-17 12:21:52 -08001705 // If this is an eng or userdebug build, then automatically
1706 // turn the text display on if the script fails so the error
1707 // message is visible.
1708 if (is_ro_debuggable()) {
1709 ui->ShowText(true);
1710 }
Doug Zongker7c3ae452013-05-14 11:03:02 -07001711 }
1712 }
Tao Baoe39a9bc2015-03-31 12:19:05 -07001713 } else if (should_wipe_data) {
1714 if (!wipe_data(false, device)) {
1715 status = INSTALL_ERROR;
1716 }
Tao Baoc679f932015-03-30 09:43:49 -07001717 } else if (should_wipe_cache) {
Tao Baoe39a9bc2015-03-31 12:19:05 -07001718 if (!wipe_cache(false, device)) {
1719 status = INSTALL_ERROR;
1720 }
Tao Bao108ab212016-06-10 10:13:32 -07001721 } else if (should_wipe_ab) {
Yabin Cui6faf0262016-06-09 14:09:39 -07001722 if (!wipe_ab_device(wipe_package_size)) {
Tao Bao862a4c12016-06-02 11:16:50 -07001723 status = INSTALL_ERROR;
1724 }
Tao Baoc679f932015-03-30 09:43:49 -07001725 } else if (sideload) {
1726 // 'adb reboot sideload' acts the same as user presses key combinations
1727 // to enter the sideload mode. When 'sideload-auto-reboot' is used, text
1728 // display will NOT be turned on by default. And it will reboot after
1729 // sideload finishes even if there are errors. Unless one turns on the
1730 // text display during the installation. This is to enable automated
1731 // testing.
1732 if (!sideload_auto_reboot) {
1733 ui->ShowText(true);
1734 }
1735 status = apply_from_adb(ui, &should_wipe_cache, TEMPORARY_INSTALL_FILE);
1736 if (status == INSTALL_SUCCESS && should_wipe_cache) {
Tao Baoe39a9bc2015-03-31 12:19:05 -07001737 if (!wipe_cache(false, device)) {
1738 status = INSTALL_ERROR;
1739 }
Tao Baoc679f932015-03-30 09:43:49 -07001740 }
1741 ui->Print("\nInstall from ADB complete (status: %d).\n", status);
1742 if (sideload_auto_reboot) {
1743 ui->Print("Rebooting automatically.\n");
1744 }
Doug Zongkere5d5ac72012-04-12 11:01:22 -07001745 } else if (!just_exit) {
Doug Zongker02ec6b82012-08-22 17:26:40 -07001746 status = INSTALL_NONE; // No command specified
1747 ui->SetBackground(RecoveryUI::NO_COMMAND);
Tao Bao785d22c2015-05-04 09:34:29 -07001748
1749 // http://b/17489952
1750 // If this is an eng or userdebug build, automatically turn on the
1751 // text display if no command is specified.
1752 if (is_ro_debuggable()) {
1753 ui->ShowText(true);
1754 }
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001755 }
1756
Tao Baoc679f932015-03-30 09:43:49 -07001757 if (!sideload_auto_reboot && (status == INSTALL_ERROR || status == INSTALL_CORRUPT)) {
Doug Zongkerf24fd7e2013-07-02 11:43:25 -07001758 copy_logs();
Doug Zongker02ec6b82012-08-22 17:26:40 -07001759 ui->SetBackground(RecoveryUI::ERROR);
1760 }
Tao Baoc679f932015-03-30 09:43:49 -07001761
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001762 Device::BuiltinAction after = shutdown_after ? Device::SHUTDOWN : Device::REBOOT;
Yabin Cui99281df2016-02-17 12:21:52 -08001763 if ((status != INSTALL_SUCCESS && status != INSTALL_SKIPPED && !sideload_auto_reboot) ||
1764 ui->IsTextVisible()) {
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001765 Device::BuiltinAction temp = prompt_and_wait(device, status);
Tao Baoc679f932015-03-30 09:43:49 -07001766 if (temp != Device::NO_ACTION) {
1767 after = temp;
1768 }
Doug Zongker8674a722010-09-15 11:08:23 -07001769 }
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001770
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001771 // Save logs and clean up before rebooting or shutting down.
Tianjie Xuc14d95d2016-03-24 11:50:34 -07001772 finish_recovery();
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001773
1774 switch (after) {
1775 case Device::SHUTDOWN:
1776 ui->Print("Shutting down...\n");
Elliott Hughescb220402016-09-23 15:30:55 -07001777 android::base::SetProperty(ANDROID_RB_PROPERTY, "shutdown,");
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001778 break;
1779
1780 case Device::REBOOT_BOOTLOADER:
1781 ui->Print("Rebooting to bootloader...\n");
Elliott Hughescb220402016-09-23 15:30:55 -07001782 android::base::SetProperty(ANDROID_RB_PROPERTY, "reboot,bootloader");
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001783 break;
1784
1785 default:
1786 ui->Print("Rebooting...\n");
Elliott Hughescb220402016-09-23 15:30:55 -07001787 android::base::SetProperty(ANDROID_RB_PROPERTY, "reboot,");
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001788 break;
Doug Zongkerb1d12632014-03-18 10:32:12 -07001789 }
Tao Bao75238632015-05-27 14:46:17 -07001790 while (true) {
1791 pause();
1792 }
1793 // Should be unreachable.
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001794 return EXIT_SUCCESS;
1795}