blob: f423dac643cb6da8e1c4165cf7eb07d9e3f57b25 [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 Xu7b0ad9c2016-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 Cui8b309f62016-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>
Tianjie Xu8cf5c8f2016-09-08 20:10:11 -070056#include <ziparchive/zip_archive.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"
Tianjie Xu8cf5c8f2016-09-08 20:10:11 -070067#include "otautil/DirUtil.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
72static const struct option OPTIONS[] = {
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080073 { "update_package", required_argument, NULL, 'u' },
Tianjie Xu3c62b672016-02-05 18:25:58 -080074 { "retry_count", required_argument, NULL, 'n' },
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080075 { "wipe_data", no_argument, NULL, 'w' },
76 { "wipe_cache", no_argument, NULL, 'c' },
Doug Zongker4bc98062010-09-03 11:00:13 -070077 { "show_text", no_argument, NULL, 't' },
Tao Baoc679f932015-03-30 09:43:49 -070078 { "sideload", no_argument, NULL, 's' },
79 { "sideload_auto_reboot", no_argument, NULL, 'a' },
Doug Zongkere5d5ac72012-04-12 11:01:22 -070080 { "just_exit", no_argument, NULL, 'x' },
Doug Zongker02ec6b82012-08-22 17:26:40 -070081 { "locale", required_argument, NULL, 'l' },
Doug Zongkerc87bab12013-11-25 13:53:25 -080082 { "stages", required_argument, NULL, 'g' },
Doug Zongkerb1d12632014-03-18 10:32:12 -070083 { "shutdown_after", no_argument, NULL, 'p' },
Jeff Sharkeya6e13ae2014-09-24 11:46:17 -070084 { "reason", required_argument, NULL, 'r' },
Tianjie Xu35926c42016-04-28 18:06:26 -070085 { "security", no_argument, NULL, 'e'},
Yabin Cui8b309f62016-06-24 18:22:02 -070086 { "wipe_ab", no_argument, NULL, 0 },
Yabin Cuifd99a312016-06-09 14:09:39 -070087 { "wipe_package_size", required_argument, NULL, 0 },
Doug Zongker988500b2009-10-06 14:41:38 -070088 { NULL, 0, NULL, 0 },
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080089};
90
Tianjie Xu06e57ac2016-07-11 14:04:08 -070091// More bootreasons can be found in "system/core/bootstat/bootstat.cpp".
92static const std::vector<std::string> bootreason_blacklist {
93 "kernel_panic",
94 "Panic",
95};
96
Doug Zongker6d0d7ac2013-07-09 13:34:55 -070097static const char *CACHE_LOG_DIR = "/cache/recovery";
Doug Zongkerd4208f92010-09-20 12:16:13 -070098static const char *COMMAND_FILE = "/cache/recovery/command";
Doug Zongkerd4208f92010-09-20 12:16:13 -070099static const char *LOG_FILE = "/cache/recovery/log";
Doug Zongkerd0181b82011-10-19 10:51:12 -0700100static const char *LAST_INSTALL_FILE = "/cache/recovery/last_install";
Doug Zongker8b240cc2012-08-29 15:19:29 -0700101static const char *LOCALE_FILE = "/cache/recovery/last_locale";
Paul Lawrence661f8a62016-02-25 12:42:19 -0800102static const char *CONVERT_FBE_DIR = "/tmp/convert_fbe";
103static const char *CONVERT_FBE_FILE = "/tmp/convert_fbe/convert_fbe";
Michael Ward9d2629c2011-06-23 22:14:24 -0700104static const char *CACHE_ROOT = "/cache";
Paul Lawrenced0db3372015-11-05 13:38:40 -0800105static const char *DATA_ROOT = "/data";
Doug Zongkerd4208f92010-09-20 12:16:13 -0700106static const char *SDCARD_ROOT = "/sdcard";
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800107static const char *TEMPORARY_LOG_FILE = "/tmp/recovery.log";
Doug Zongkerd0181b82011-10-19 10:51:12 -0700108static const char *TEMPORARY_INSTALL_FILE = "/tmp/last_install";
Tao Baof0124322015-04-11 02:04:11 +0000109static const char *LAST_KMSG_FILE = "/cache/recovery/last_kmsg";
Tao Baobef39712015-05-04 18:50:27 -0700110static const char *LAST_LOG_FILE = "/cache/recovery/last_log";
111static const int KEEP_LOG_COUNT = 10;
Tianjie Xuc37c5c32016-06-23 16:52:17 -0700112// We will try to apply the update package 5 times at most in case of an I/O error.
113static const int EIO_RETRY_COUNT = 4;
Yabin Cui99281df2016-02-17 12:21:52 -0800114static const int BATTERY_READ_TIMEOUT_IN_SEC = 10;
115// GmsCore enters recovery mode to install package when having enough battery
116// percentage. Normally, the threshold is 40% without charger and 20% with charger.
117// So we should check battery with a slightly lower limitation.
118static const int BATTERY_OK_PERCENTAGE = 20;
119static const int BATTERY_WITH_CHARGER_OK_PERCENTAGE = 15;
Tao Baoac9d94d2016-11-03 11:37:15 -0700120static constexpr const char* RECOVERY_WIPE = "/etc/recovery.wipe";
121static constexpr const char* DEFAULT_LOCALE = "en_US";
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700122
Tao Baoac9d94d2016-11-03 11:37:15 -0700123static std::string locale;
Dan Albert8584fcf2016-10-27 03:08:08 +0000124static bool has_cache = false;
Tao Baoc0319b62016-10-13 15:17:04 -0700125
Tao Baoac9d94d2016-11-03 11:37:15 -0700126RecoveryUI* ui = nullptr;
127bool modified_flash = false;
128const char* stage = nullptr;
129const char* reason = nullptr;
130struct selabel_handle* sehandle;
131
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 Xu7b0ad9c2016-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);
Tao Baoac9d94d2016-11-03 11:37:15 -0700210 if (fsync(fileno(fp)) == -1) {
211 PLOG(ERROR) << "Failed to fsync " << name;
212 }
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -0700213 if (ferror(fp)) {
214 PLOG(ERROR) << "Error in " << name;
215 }
Tao Bao04ca4262015-09-10 15:32:24 -0700216 fclose(fp);
217}
218
Elliott Hughesf14af802015-02-10 14:46:14 -0800219bool is_ro_debuggable() {
Elliott Hughescb220402016-09-23 15:30:55 -0700220 return android::base::GetBoolProperty("ro.debuggable", false);
Elliott Hughesf14af802015-02-10 14:46:14 -0800221}
222
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700223static void redirect_stdio(const char* filename) {
Tao Bao04ca4262015-09-10 15:32:24 -0700224 int pipefd[2];
225 if (pipe(pipefd) == -1) {
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -0700226 PLOG(ERROR) << "pipe failed";
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700227
Tao Bao04ca4262015-09-10 15:32:24 -0700228 // Fall back to traditional logging mode without timestamps.
229 // If these fail, there's not really anywhere to complain...
230 freopen(filename, "a", stdout); setbuf(stdout, NULL);
231 freopen(filename, "a", stderr); setbuf(stderr, NULL);
232
233 return;
234 }
235
236 pid_t pid = fork();
237 if (pid == -1) {
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -0700238 PLOG(ERROR) << "fork failed";
Tao Bao04ca4262015-09-10 15:32:24 -0700239
240 // Fall back to traditional logging mode without timestamps.
241 // If these fail, there's not really anywhere to complain...
242 freopen(filename, "a", stdout); setbuf(stdout, NULL);
243 freopen(filename, "a", stderr); setbuf(stderr, NULL);
244
245 return;
246 }
247
248 if (pid == 0) {
249 /// Close the unused write end.
250 close(pipefd[1]);
251
252 auto start = std::chrono::steady_clock::now();
253
254 // Child logger to actually write to the log file.
255 FILE* log_fp = fopen(filename, "a");
256 if (log_fp == nullptr) {
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -0700257 PLOG(ERROR) << "fopen \"" << filename << "\" failed";
Tao Bao04ca4262015-09-10 15:32:24 -0700258 close(pipefd[0]);
259 _exit(1);
260 }
261
262 FILE* pipe_fp = fdopen(pipefd[0], "r");
263 if (pipe_fp == nullptr) {
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -0700264 PLOG(ERROR) << "fdopen failed";
Tao Bao04ca4262015-09-10 15:32:24 -0700265 check_and_fclose(log_fp, filename);
266 close(pipefd[0]);
267 _exit(1);
268 }
269
270 char* line = nullptr;
271 size_t len = 0;
272 while (getline(&line, &len, pipe_fp) != -1) {
273 auto now = std::chrono::steady_clock::now();
274 double duration = std::chrono::duration_cast<std::chrono::duration<double>>(
275 now - start).count();
276 if (line[0] == '\n') {
277 fprintf(log_fp, "[%12.6lf]\n", duration);
278 } else {
279 fprintf(log_fp, "[%12.6lf] %s", duration, line);
280 }
281 fflush(log_fp);
282 }
283
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -0700284 PLOG(ERROR) << "getline failed";
Tao Bao04ca4262015-09-10 15:32:24 -0700285
286 free(line);
287 check_and_fclose(log_fp, filename);
288 close(pipefd[0]);
289 _exit(1);
290 } else {
291 // Redirect stdout/stderr to the logger process.
292 // Close the unused read end.
293 close(pipefd[0]);
294
295 setbuf(stdout, nullptr);
296 setbuf(stderr, nullptr);
297
298 if (dup2(pipefd[1], STDOUT_FILENO) == -1) {
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -0700299 PLOG(ERROR) << "dup2 stdout failed";
Tao Bao04ca4262015-09-10 15:32:24 -0700300 }
301 if (dup2(pipefd[1], STDERR_FILENO) == -1) {
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -0700302 PLOG(ERROR) << "dup2 stderr failed";
Tao Bao04ca4262015-09-10 15:32:24 -0700303 }
304
305 close(pipefd[1]);
306 }
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800307}
308
309// command line args come from, in decreasing precedence:
310// - the actual command line
311// - the bootloader control block (one per line, after "recovery")
312// - the contents of COMMAND_FILE (one per line)
313static void
314get_args(int *argc, char ***argv) {
Yabin Cui8b309f62016-06-24 18:22:02 -0700315 bootloader_message boot = {};
316 std::string err;
317 if (!read_bootloader_message(&boot, &err)) {
318 LOG(ERROR) << err;
319 // If fails, leave a zeroed bootloader_message.
320 memset(&boot, 0, sizeof(boot));
321 }
Doug Zongkerc87bab12013-11-25 13:53:25 -0800322 stage = strndup(boot.stage, sizeof(boot.stage));
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800323
Tianjie Xu7aa88742016-09-28 11:42:17 -0700324 if (boot.command[0] != 0) {
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -0700325 std::string boot_command = std::string(boot.command, sizeof(boot.command));
326 LOG(INFO) << "Boot command: " << boot_command;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800327 }
328
Tianjie Xu7aa88742016-09-28 11:42:17 -0700329 if (boot.status[0] != 0) {
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -0700330 std::string boot_status = std::string(boot.status, sizeof(boot.status));
331 LOG(INFO) << "Boot status: " << boot_status;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800332 }
333
334 // --- if arguments weren't supplied, look in the bootloader control block
335 if (*argc <= 1) {
336 boot.recovery[sizeof(boot.recovery) - 1] = '\0'; // Ensure termination
337 const char *arg = strtok(boot.recovery, "\n");
338 if (arg != NULL && !strcmp(arg, "recovery")) {
339 *argv = (char **) malloc(sizeof(char *) * MAX_ARGS);
340 (*argv)[0] = strdup(arg);
341 for (*argc = 1; *argc < MAX_ARGS; ++*argc) {
342 if ((arg = strtok(NULL, "\n")) == NULL) break;
343 (*argv)[*argc] = strdup(arg);
344 }
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -0700345 LOG(INFO) << "Got arguments from boot message";
Tianjie Xu7aa88742016-09-28 11:42:17 -0700346 } else if (boot.recovery[0] != 0) {
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -0700347 std::string boot_recovery = std::string(boot.recovery, 20);
348 LOG(ERROR) << "Bad boot message\n" << "\"" <<boot_recovery << "\"";
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800349 }
350 }
351
Tao Bao26112e52016-02-25 12:29:40 -0800352 // --- if that doesn't work, try the command file (if we have /cache).
353 if (*argc <= 1 && has_cache) {
Doug Zongkerd4208f92010-09-20 12:16:13 -0700354 FILE *fp = fopen_path(COMMAND_FILE, "r");
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800355 if (fp != NULL) {
Jin Feng93ffa752013-06-04 17:46:24 +0800356 char *token;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800357 char *argv0 = (*argv)[0];
358 *argv = (char **) malloc(sizeof(char *) * MAX_ARGS);
359 (*argv)[0] = argv0; // use the same program name
360
361 char buf[MAX_ARG_LENGTH];
362 for (*argc = 1; *argc < MAX_ARGS; ++*argc) {
363 if (!fgets(buf, sizeof(buf), fp)) break;
Jin Feng93ffa752013-06-04 17:46:24 +0800364 token = strtok(buf, "\r\n");
365 if (token != NULL) {
366 (*argv)[*argc] = strdup(token); // Strip newline.
367 } else {
368 --*argc;
369 }
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800370 }
371
372 check_and_fclose(fp, COMMAND_FILE);
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -0700373 LOG(INFO) << "Got arguments from " << COMMAND_FILE;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800374 }
375 }
376
377 // --> write the arguments we have back into the bootloader control block
378 // always boot into recovery after this (until finish_recovery() is called)
Tianjie Xubd56f152016-09-28 16:32:10 -0700379 std::vector<std::string> options;
380 for (int i = 1; i < *argc; ++i) {
381 options.push_back((*argv)[i]);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800382 }
Tianjie Xubd56f152016-09-28 16:32:10 -0700383 if (!write_bootloader_message(options, &err)) {
Yabin Cui8b309f62016-06-24 18:22:02 -0700384 LOG(ERROR) << err;
385 }
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() {
Tianjie Xubd56f152016-09-28 16:32:10 -0700390 std::vector<std::string> options;
Yabin Cui8b309f62016-06-24 18:22:02 -0700391 std::string err;
Tianjie Xubd56f152016-09-28 16:32:10 -0700392 if (!write_bootloader_message(options, &err)) {
Yabin Cui8b309f62016-06-24 18:22:02 -0700393 LOG(ERROR) << err;
394 }
Doug Zongker34c98df2009-08-18 12:05:45 -0700395}
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800396
Tao Baobef39712015-05-04 18:50:27 -0700397// Read from kernel log into buffer and write out to file.
398static void save_kernel_log(const char* destination) {
399 int klog_buf_len = klogctl(KLOG_SIZE_BUFFER, 0, 0);
Patrick Tjincd055ee2014-12-09 11:26:40 -0800400 if (klog_buf_len <= 0) {
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -0700401 PLOG(ERROR) << "Error getting klog size";
Patrick Tjincd055ee2014-12-09 11:26:40 -0800402 return;
403 }
404
Tao Baobef39712015-05-04 18:50:27 -0700405 std::string buffer(klog_buf_len, 0);
406 int n = klogctl(KLOG_READ_ALL, &buffer[0], klog_buf_len);
407 if (n == -1) {
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -0700408 PLOG(ERROR) << "Error in reading klog";
Patrick Tjincd055ee2014-12-09 11:26:40 -0800409 return;
410 }
Tao Baobef39712015-05-04 18:50:27 -0700411 buffer.resize(n);
412 android::base::WriteStringToFile(buffer, destination);
Patrick Tjincd055ee2014-12-09 11:26:40 -0800413}
414
Mark Salyzyna4f701a2016-03-09 14:58:16 -0800415// write content to the current pmsg session.
416static ssize_t __pmsg_write(const char *filename, const char *buf, size_t len) {
417 return __android_log_pmsg_file_write(LOG_ID_SYSTEM, ANDROID_LOG_INFO,
418 filename, buf, len);
419}
420
421static void copy_log_file_to_pmsg(const char* source, const char* destination) {
422 std::string content;
423 android::base::ReadFileToString(source, &content);
424 __pmsg_write(destination, content.c_str(), content.length());
425}
426
Tao Baof0124322015-04-11 02:04:11 +0000427// How much of the temp log we have copied to the copy in cache.
Chih-Hung Hsieh54a27472016-04-18 11:30:55 -0700428static off_t tmplog_offset = 0;
Tao Baof0124322015-04-11 02:04:11 +0000429
Tao Baobef39712015-05-04 18:50:27 -0700430static void copy_log_file(const char* source, const char* destination, bool append) {
431 FILE* dest_fp = fopen_path(destination, append ? "a" : "w");
432 if (dest_fp == nullptr) {
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -0700433 PLOG(ERROR) << "Can't open " << destination;
Doug Zongker2c3539e2010-09-29 13:21:30 -0700434 } else {
Tao Baobef39712015-05-04 18:50:27 -0700435 FILE* source_fp = fopen(source, "r");
436 if (source_fp != nullptr) {
Tao Baof0124322015-04-11 02:04:11 +0000437 if (append) {
Chih-Hung Hsieh54a27472016-04-18 11:30:55 -0700438 fseeko(source_fp, tmplog_offset, SEEK_SET); // Since last write
Doug Zongker2c3539e2010-09-29 13:21:30 -0700439 }
440 char buf[4096];
Tao Baobef39712015-05-04 18:50:27 -0700441 size_t bytes;
442 while ((bytes = fread(buf, 1, sizeof(buf), source_fp)) != 0) {
443 fwrite(buf, 1, bytes, dest_fp);
Doug Zongker2c3539e2010-09-29 13:21:30 -0700444 }
Tao Baobef39712015-05-04 18:50:27 -0700445 if (append) {
Chih-Hung Hsieh54a27472016-04-18 11:30:55 -0700446 tmplog_offset = ftello(source_fp);
Tao Baobef39712015-05-04 18:50:27 -0700447 }
448 check_and_fclose(source_fp, source);
Doug Zongker2c3539e2010-09-29 13:21:30 -0700449 }
Tao Baobef39712015-05-04 18:50:27 -0700450 check_and_fclose(dest_fp, destination);
Doug Zongker2c3539e2010-09-29 13:21:30 -0700451 }
452}
453
Tao Baobef39712015-05-04 18:50:27 -0700454// Rename last_log -> last_log.1 -> last_log.2 -> ... -> last_log.$max.
455// Similarly rename last_kmsg -> last_kmsg.1 -> ... -> last_kmsg.$max.
456// Overwrite any existing last_log.$max and last_kmsg.$max.
457static void rotate_logs(int max) {
Tao Bao682c34b2015-04-07 17:16:35 -0700458 // Logs should only be rotated once.
459 static bool rotated = false;
460 if (rotated) {
461 return;
462 }
463 rotated = true;
464 ensure_path_mounted(LAST_LOG_FILE);
Tao Baobef39712015-05-04 18:50:27 -0700465 ensure_path_mounted(LAST_KMSG_FILE);
Tao Bao682c34b2015-04-07 17:16:35 -0700466
Tao Bao682c34b2015-04-07 17:16:35 -0700467 for (int i = max-1; i >= 0; --i) {
Tao Bao80e46e02015-06-03 10:49:29 -0700468 std::string old_log = android::base::StringPrintf("%s", LAST_LOG_FILE);
469 if (i > 0) {
470 old_log += "." + std::to_string(i);
471 }
Tao Baobef39712015-05-04 18:50:27 -0700472 std::string new_log = android::base::StringPrintf("%s.%d", LAST_LOG_FILE, i+1);
473 // Ignore errors if old_log doesn't exist.
474 rename(old_log.c_str(), new_log.c_str());
475
Tao Bao80e46e02015-06-03 10:49:29 -0700476 std::string old_kmsg = android::base::StringPrintf("%s", LAST_KMSG_FILE);
477 if (i > 0) {
478 old_kmsg += "." + std::to_string(i);
479 }
Tao Baobef39712015-05-04 18:50:27 -0700480 std::string new_kmsg = android::base::StringPrintf("%s.%d", LAST_KMSG_FILE, i+1);
481 rename(old_kmsg.c_str(), new_kmsg.c_str());
Doug Zongkerda1ebae2013-05-16 11:23:48 -0700482 }
483}
Doug Zongker2c3539e2010-09-29 13:21:30 -0700484
Tao Bao682c34b2015-04-07 17:16:35 -0700485static void copy_logs() {
486 // We only rotate and record the log of the current session if there are
487 // actual attempts to modify the flash, such as wipes, installs from BCB
488 // or menu selections. This is to avoid unnecessary rotation (and
489 // possible deletion) of log files, if it does not do anything loggable.
490 if (!modified_flash) {
491 return;
492 }
493
Mark Salyzyna4f701a2016-03-09 14:58:16 -0800494 // Always write to pmsg, this allows the OTA logs to be caught in logcat -L
495 copy_log_file_to_pmsg(TEMPORARY_LOG_FILE, LAST_LOG_FILE);
496 copy_log_file_to_pmsg(TEMPORARY_INSTALL_FILE, LAST_INSTALL_FILE);
497
498 // We can do nothing for now if there's no /cache partition.
499 if (!has_cache) {
500 return;
501 }
502
Tao Baobef39712015-05-04 18:50:27 -0700503 rotate_logs(KEEP_LOG_COUNT);
Tao Bao682c34b2015-04-07 17:16:35 -0700504
Doug Zongkerf24fd7e2013-07-02 11:43:25 -0700505 // Copy logs to cache so the system can find out what happened.
Tao Baof0124322015-04-11 02:04:11 +0000506 copy_log_file(TEMPORARY_LOG_FILE, LOG_FILE, true);
507 copy_log_file(TEMPORARY_LOG_FILE, LAST_LOG_FILE, false);
508 copy_log_file(TEMPORARY_INSTALL_FILE, LAST_INSTALL_FILE, false);
509 save_kernel_log(LAST_KMSG_FILE);
Doug Zongkerf24fd7e2013-07-02 11:43:25 -0700510 chmod(LOG_FILE, 0600);
511 chown(LOG_FILE, 1000, 1000); // system user
Tao Baof0124322015-04-11 02:04:11 +0000512 chmod(LAST_KMSG_FILE, 0600);
513 chown(LAST_KMSG_FILE, 1000, 1000); // system user
Doug Zongkerf24fd7e2013-07-02 11:43:25 -0700514 chmod(LAST_LOG_FILE, 0640);
515 chmod(LAST_INSTALL_FILE, 0644);
516 sync();
517}
518
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800519// clear the recovery command and prepare to boot a (hopefully working) system,
Tianjie Xuc14d95d2016-03-24 11:50:34 -0700520// copy our log file to cache as well (for the system to read). This function is
521// idempotent: call it as many times as you like.
Tao Baoac9d94d2016-11-03 11:37:15 -0700522static void finish_recovery() {
Doug Zongker4f33e552012-08-23 13:16:12 -0700523 // Save the locale to cache, so if recovery is next started up
524 // without a --locale argument (eg, directly from the bootloader)
525 // it will use the last-known locale.
Tao Baoac9d94d2016-11-03 11:37:15 -0700526 if (!locale.empty() && has_cache) {
527 LOG(INFO) << "Saving locale \"" << locale << "\"";
528
529 FILE* fp = fopen_path(LOCALE_FILE, "w");
530 if (!android::base::WriteStringToFd(locale, fileno(fp))) {
531 PLOG(ERROR) << "Failed to save locale to " << LOCALE_FILE;
Mark Salyzyna4f701a2016-03-09 14:58:16 -0800532 }
Tao Baoac9d94d2016-11-03 11:37:15 -0700533 check_and_fclose(fp, LOCALE_FILE);
Doug Zongker4f33e552012-08-23 13:16:12 -0700534 }
535
Doug Zongkerf24fd7e2013-07-02 11:43:25 -0700536 copy_logs();
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800537
Doug Zongkere5d5ac72012-04-12 11:01:22 -0700538 // Reset to normal system boot so recovery won't cycle indefinitely.
Yabin Cui8b309f62016-06-24 18:22:02 -0700539 std::string err;
Tianjie Xubd56f152016-09-28 16:32:10 -0700540 if (!clear_bootloader_message(&err)) {
Yabin Cui8b309f62016-06-24 18:22:02 -0700541 LOG(ERROR) << err;
542 }
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800543
544 // Remove the command file, so recovery won't repeat indefinitely.
Tao Bao26112e52016-02-25 12:29:40 -0800545 if (has_cache) {
546 if (ensure_path_mounted(COMMAND_FILE) != 0 || (unlink(COMMAND_FILE) && errno != ENOENT)) {
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -0700547 LOG(WARNING) << "Can't unlink " << COMMAND_FILE;
Tao Bao26112e52016-02-25 12:29:40 -0800548 }
549 ensure_path_unmounted(CACHE_ROOT);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800550 }
551
552 sync(); // For good measure.
553}
554
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700555typedef struct _saved_log_file {
556 char* name;
557 struct stat st;
558 unsigned char* data;
559 struct _saved_log_file* next;
560} saved_log_file;
561
Elliott Hughes945548e2015-06-05 17:59:56 -0700562static bool erase_volume(const char* volume) {
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700563 bool is_cache = (strcmp(volume, CACHE_ROOT) == 0);
Paul Lawrenced0db3372015-11-05 13:38:40 -0800564 bool is_data = (strcmp(volume, DATA_ROOT) == 0);
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700565
Doug Zongker02ec6b82012-08-22 17:26:40 -0700566 ui->SetBackground(RecoveryUI::ERASING);
Doug Zongker211aebc2011-10-28 15:13:10 -0700567 ui->SetProgressType(RecoveryUI::INDETERMINATE);
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700568
569 saved_log_file* head = NULL;
570
571 if (is_cache) {
Tao Baobef39712015-05-04 18:50:27 -0700572 // If we're reformatting /cache, we load any past logs
573 // (i.e. "/cache/recovery/last_*") and the current log
574 // ("/cache/recovery/log") into memory, so we can restore them after
575 // the reformat.
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700576
577 ensure_path_mounted(volume);
578
579 DIR* d;
580 struct dirent* de;
581 d = opendir(CACHE_LOG_DIR);
582 if (d) {
583 char path[PATH_MAX];
584 strcpy(path, CACHE_LOG_DIR);
585 strcat(path, "/");
586 int path_len = strlen(path);
587 while ((de = readdir(d)) != NULL) {
Tao Baobef39712015-05-04 18:50:27 -0700588 if (strncmp(de->d_name, "last_", 5) == 0 || strcmp(de->d_name, "log") == 0) {
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700589 saved_log_file* p = (saved_log_file*) malloc(sizeof(saved_log_file));
590 strcpy(path+path_len, de->d_name);
591 p->name = strdup(path);
592 if (stat(path, &(p->st)) == 0) {
593 // truncate files to 512kb
594 if (p->st.st_size > (1 << 19)) {
595 p->st.st_size = 1 << 19;
596 }
597 p->data = (unsigned char*) malloc(p->st.st_size);
598 FILE* f = fopen(path, "rb");
599 fread(p->data, 1, p->st.st_size, f);
600 fclose(f);
601 p->next = head;
602 head = p;
603 } else {
604 free(p);
605 }
606 }
607 }
608 closedir(d);
609 } else {
610 if (errno != ENOENT) {
611 printf("opendir failed: %s\n", strerror(errno));
612 }
613 }
614 }
615
Doug Zongker211aebc2011-10-28 15:13:10 -0700616 ui->Print("Formatting %s...\n", volume);
Doug Zongker2c3539e2010-09-29 13:21:30 -0700617
Doug Zongkerd0181b82011-10-19 10:51:12 -0700618 ensure_path_unmounted(volume);
Paul Lawrenced0db3372015-11-05 13:38:40 -0800619
620 int result;
621
622 if (is_data && reason && strcmp(reason, "convert_fbe") == 0) {
623 // Create convert_fbe breadcrumb file to signal to init
624 // to convert to file based encryption, not full disk encryption
Paul Lawrence661f8a62016-02-25 12:42:19 -0800625 if (mkdir(CONVERT_FBE_DIR, 0700) != 0) {
626 ui->Print("Failed to make convert_fbe dir %s\n", strerror(errno));
627 return true;
628 }
Paul Lawrenced0db3372015-11-05 13:38:40 -0800629 FILE* f = fopen(CONVERT_FBE_FILE, "wb");
630 if (!f) {
Paul Lawrence661f8a62016-02-25 12:42:19 -0800631 ui->Print("Failed to convert to file encryption %s\n", strerror(errno));
Paul Lawrenced0db3372015-11-05 13:38:40 -0800632 return true;
633 }
634 fclose(f);
635 result = format_volume(volume, CONVERT_FBE_DIR);
636 remove(CONVERT_FBE_FILE);
637 rmdir(CONVERT_FBE_DIR);
638 } else {
639 result = format_volume(volume);
640 }
Doug Zongkerd0181b82011-10-19 10:51:12 -0700641
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700642 if (is_cache) {
643 while (head) {
644 FILE* f = fopen_path(head->name, "wb");
645 if (f) {
646 fwrite(head->data, 1, head->st.st_size, f);
647 fclose(f);
648 chmod(head->name, head->st.st_mode);
649 chown(head->name, head->st.st_uid, head->st.st_gid);
650 }
651 free(head->name);
652 free(head->data);
653 saved_log_file* temp = head->next;
654 free(head);
655 head = temp;
656 }
657
Tao Baof0124322015-04-11 02:04:11 +0000658 // Any part of the log we'd copied to cache is now gone.
659 // Reset the pointer so we copy from the beginning of the temp
660 // log.
661 tmplog_offset = 0;
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700662 copy_logs();
Doug Zongker2c3539e2010-09-29 13:21:30 -0700663 }
664
Elliott Hughes945548e2015-06-05 17:59:56 -0700665 return (result == 0);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800666}
667
Doug Zongkerf93d8162009-09-22 15:16:02 -0700668static int
Doug Zongker28ce47c2011-10-28 10:33:05 -0700669get_menu_selection(const char* const * headers, const char* const * items,
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700670 int menu_only, int initial_selection, Device* device) {
Doug Zongkerf93d8162009-09-22 15:16:02 -0700671 // throw away keys pressed previously, so user doesn't
672 // accidentally trigger menu items.
Doug Zongker211aebc2011-10-28 15:13:10 -0700673 ui->FlushKeys();
Doug Zongkerf93d8162009-09-22 15:16:02 -0700674
Doug Zongker211aebc2011-10-28 15:13:10 -0700675 ui->StartMenu(headers, items, initial_selection);
Doug Zongker8674a722010-09-15 11:08:23 -0700676 int selected = initial_selection;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800677 int chosen_item = -1;
678
Doug Zongkerf93d8162009-09-22 15:16:02 -0700679 while (chosen_item < 0) {
Doug Zongker211aebc2011-10-28 15:13:10 -0700680 int key = ui->WaitKey();
681 int visible = ui->IsTextVisible();
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800682
Doug Zongker5cae4452011-01-25 13:15:30 -0800683 if (key == -1) { // ui_wait_key() timed out
Doug Zongker211aebc2011-10-28 15:13:10 -0700684 if (ui->WasTextEverVisible()) {
Doug Zongker5cae4452011-01-25 13:15:30 -0800685 continue;
686 } else {
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -0700687 LOG(INFO) << "timed out waiting for key input; rebooting.";
Doug Zongker211aebc2011-10-28 15:13:10 -0700688 ui->EndMenu();
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700689 return 0; // XXX fixme
Doug Zongker5cae4452011-01-25 13:15:30 -0800690 }
691 }
692
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700693 int action = device->HandleMenuKey(key, visible);
Doug Zongkerddd6a282009-06-09 12:22:33 -0700694
695 if (action < 0) {
696 switch (action) {
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700697 case Device::kHighlightUp:
Elliott Hughes642aaa72015-04-10 12:47:46 -0700698 selected = ui->SelectMenu(--selected);
Doug Zongkerddd6a282009-06-09 12:22:33 -0700699 break;
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700700 case Device::kHighlightDown:
Elliott Hughes642aaa72015-04-10 12:47:46 -0700701 selected = ui->SelectMenu(++selected);
Doug Zongkerddd6a282009-06-09 12:22:33 -0700702 break;
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700703 case Device::kInvokeItem:
Doug Zongkerddd6a282009-06-09 12:22:33 -0700704 chosen_item = selected;
705 break;
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700706 case Device::kNoAction:
Doug Zongkerddd6a282009-06-09 12:22:33 -0700707 break;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800708 }
Doug Zongkerf93d8162009-09-22 15:16:02 -0700709 } else if (!menu_only) {
Doug Zongkerddd6a282009-06-09 12:22:33 -0700710 chosen_item = action;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800711 }
Doug Zongkerf93d8162009-09-22 15:16:02 -0700712 }
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800713
Doug Zongker211aebc2011-10-28 15:13:10 -0700714 ui->EndMenu();
Doug Zongkerf93d8162009-09-22 15:16:02 -0700715 return chosen_item;
716}
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800717
Doug Zongker8674a722010-09-15 11:08:23 -0700718static int compare_string(const void* a, const void* b) {
719 return strcmp(*(const char**)a, *(const char**)b);
720}
721
Doug Zongker93950222014-07-08 14:10:23 -0700722// Returns a malloc'd path, or NULL.
Elliott Hughes30694c92015-03-25 15:16:51 -0700723static char* browse_directory(const char* path, Device* device) {
Michael Ward9d2629c2011-06-23 22:14:24 -0700724 ensure_path_mounted(path);
Doug Zongkerc18eeb82010-09-21 16:49:26 -0700725
Elliott Hughes30694c92015-03-25 15:16:51 -0700726 DIR* d = opendir(path);
Doug Zongker8674a722010-09-15 11:08:23 -0700727 if (d == NULL) {
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -0700728 PLOG(ERROR) << "error opening " << path;
Doug Zongker93950222014-07-08 14:10:23 -0700729 return NULL;
Doug Zongker8674a722010-09-15 11:08:23 -0700730 }
731
Doug Zongker8674a722010-09-15 11:08:23 -0700732 int d_size = 0;
733 int d_alloc = 10;
Doug Zongker28ce47c2011-10-28 10:33:05 -0700734 char** dirs = (char**)malloc(d_alloc * sizeof(char*));
Doug Zongker8674a722010-09-15 11:08:23 -0700735 int z_size = 1;
736 int z_alloc = 10;
Doug Zongker28ce47c2011-10-28 10:33:05 -0700737 char** zips = (char**)malloc(z_alloc * sizeof(char*));
Doug Zongker8674a722010-09-15 11:08:23 -0700738 zips[0] = strdup("../");
739
Elliott Hughes30694c92015-03-25 15:16:51 -0700740 struct dirent* de;
Doug Zongker8674a722010-09-15 11:08:23 -0700741 while ((de = readdir(d)) != NULL) {
742 int name_len = strlen(de->d_name);
743
744 if (de->d_type == DT_DIR) {
745 // skip "." and ".." entries
746 if (name_len == 1 && de->d_name[0] == '.') continue;
747 if (name_len == 2 && de->d_name[0] == '.' &&
748 de->d_name[1] == '.') continue;
749
750 if (d_size >= d_alloc) {
751 d_alloc *= 2;
Doug Zongker28ce47c2011-10-28 10:33:05 -0700752 dirs = (char**)realloc(dirs, d_alloc * sizeof(char*));
Doug Zongker8674a722010-09-15 11:08:23 -0700753 }
Doug Zongker28ce47c2011-10-28 10:33:05 -0700754 dirs[d_size] = (char*)malloc(name_len + 2);
Doug Zongker8674a722010-09-15 11:08:23 -0700755 strcpy(dirs[d_size], de->d_name);
756 dirs[d_size][name_len] = '/';
757 dirs[d_size][name_len+1] = '\0';
758 ++d_size;
759 } else if (de->d_type == DT_REG &&
760 name_len >= 4 &&
761 strncasecmp(de->d_name + (name_len-4), ".zip", 4) == 0) {
762 if (z_size >= z_alloc) {
763 z_alloc *= 2;
Doug Zongker28ce47c2011-10-28 10:33:05 -0700764 zips = (char**)realloc(zips, z_alloc * sizeof(char*));
Doug Zongker8674a722010-09-15 11:08:23 -0700765 }
766 zips[z_size++] = strdup(de->d_name);
767 }
768 }
769 closedir(d);
770
771 qsort(dirs, d_size, sizeof(char*), compare_string);
772 qsort(zips, z_size, sizeof(char*), compare_string);
773
774 // append dirs to the zips list
775 if (d_size + z_size + 1 > z_alloc) {
776 z_alloc = d_size + z_size + 1;
Doug Zongker28ce47c2011-10-28 10:33:05 -0700777 zips = (char**)realloc(zips, z_alloc * sizeof(char*));
Doug Zongker8674a722010-09-15 11:08:23 -0700778 }
779 memcpy(zips + z_size, dirs, d_size * sizeof(char*));
780 free(dirs);
781 z_size += d_size;
782 zips[z_size] = NULL;
783
Elliott Hughes8fd86d72015-04-13 14:36:02 -0700784 const char* headers[] = { "Choose a package to install:", path, NULL };
Elliott Hughes30694c92015-03-25 15:16:51 -0700785
Doug Zongker93950222014-07-08 14:10:23 -0700786 char* result;
Doug Zongker8674a722010-09-15 11:08:23 -0700787 int chosen_item = 0;
Doug Zongker93950222014-07-08 14:10:23 -0700788 while (true) {
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700789 chosen_item = get_menu_selection(headers, zips, 1, chosen_item, device);
Doug Zongker8674a722010-09-15 11:08:23 -0700790
791 char* item = zips[chosen_item];
792 int item_len = strlen(item);
793 if (chosen_item == 0) { // item 0 is always "../"
Michael Ward9d2629c2011-06-23 22:14:24 -0700794 // go up but continue browsing (if the caller is update_directory)
Doug Zongker93950222014-07-08 14:10:23 -0700795 result = NULL;
Doug Zongker8674a722010-09-15 11:08:23 -0700796 break;
797 }
Doug Zongker93950222014-07-08 14:10:23 -0700798
799 char new_path[PATH_MAX];
800 strlcpy(new_path, path, PATH_MAX);
801 strlcat(new_path, "/", PATH_MAX);
802 strlcat(new_path, item, PATH_MAX);
803
804 if (item[item_len-1] == '/') {
805 // recurse down into a subdirectory
806 new_path[strlen(new_path)-1] = '\0'; // truncate the trailing '/'
807 result = browse_directory(new_path, device);
808 if (result) break;
809 } else {
810 // selected a zip file: return the malloc'd path to the caller.
811 result = strdup(new_path);
812 break;
813 }
814 }
Doug Zongker8674a722010-09-15 11:08:23 -0700815
Elliott Hughes30694c92015-03-25 15:16:51 -0700816 for (int i = 0; i < z_size; ++i) free(zips[i]);
Doug Zongker8674a722010-09-15 11:08:23 -0700817 free(zips);
Doug Zongker8674a722010-09-15 11:08:23 -0700818
819 return result;
820}
821
Elliott Hughes30694c92015-03-25 15:16:51 -0700822static bool yes_no(Device* device, const char* question1, const char* question2) {
Elliott Hughes8fd86d72015-04-13 14:36:02 -0700823 const char* headers[] = { question1, question2, NULL };
Elliott Hughes30694c92015-03-25 15:16:51 -0700824 const char* items[] = { " No", " Yes", NULL };
Doug Zongkerddd6a282009-06-09 12:22:33 -0700825
Elliott Hughes30694c92015-03-25 15:16:51 -0700826 int chosen_item = get_menu_selection(headers, items, 1, 0, device);
827 return (chosen_item == 1);
828}
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800829
Tao Baoe39a9bc2015-03-31 12:19:05 -0700830// Return true on success.
831static bool wipe_data(int should_confirm, Device* device) {
832 if (should_confirm && !yes_no(device, "Wipe all user data?", " THIS CAN NOT BE UNDONE!")) {
833 return false;
Doug Zongkerf93d8162009-09-22 15:16:02 -0700834 }
Doug Zongker1066d2c2009-04-01 13:57:40 -0700835
Tao Bao682c34b2015-04-07 17:16:35 -0700836 modified_flash = true;
837
Doug Zongker211aebc2011-10-28 15:13:10 -0700838 ui->Print("\n-- Wiping data...\n");
Elliott Hughes945548e2015-06-05 17:59:56 -0700839 bool success =
840 device->PreWipeData() &&
841 erase_volume("/data") &&
Tao Bao26112e52016-02-25 12:29:40 -0800842 (has_cache ? erase_volume("/cache") : true) &&
Elliott Hughes945548e2015-06-05 17:59:56 -0700843 device->PostWipeData();
844 ui->Print("Data wipe %s.\n", success ? "complete" : "failed");
845 return success;
Doug Zongkerf93d8162009-09-22 15:16:02 -0700846}
847
Tao Baoe39a9bc2015-03-31 12:19:05 -0700848// Return true on success.
849static bool wipe_cache(bool should_confirm, Device* device) {
Tao Bao26112e52016-02-25 12:29:40 -0800850 if (!has_cache) {
851 ui->Print("No /cache partition found.\n");
852 return false;
853 }
854
Elliott Hughes30694c92015-03-25 15:16:51 -0700855 if (should_confirm && !yes_no(device, "Wipe cache?", " THIS CAN NOT BE UNDONE!")) {
Tao Baoe39a9bc2015-03-31 12:19:05 -0700856 return false;
Elliott Hughes30694c92015-03-25 15:16:51 -0700857 }
858
Tao Bao682c34b2015-04-07 17:16:35 -0700859 modified_flash = true;
860
Elliott Hughes30694c92015-03-25 15:16:51 -0700861 ui->Print("\n-- Wiping cache...\n");
Elliott Hughes945548e2015-06-05 17:59:56 -0700862 bool success = erase_volume("/cache");
863 ui->Print("Cache wipe %s.\n", success ? "complete" : "failed");
864 return success;
Elliott Hughes30694c92015-03-25 15:16:51 -0700865}
866
Tao Bao862a4c12016-06-02 11:16:50 -0700867// Secure-wipe a given partition. It uses BLKSECDISCARD, if supported.
868// Otherwise, it goes with BLKDISCARD (if device supports BLKDISCARDZEROES) or
869// BLKZEROOUT.
870static bool secure_wipe_partition(const std::string& partition) {
871 android::base::unique_fd fd(TEMP_FAILURE_RETRY(open(partition.c_str(), O_WRONLY)));
872 if (fd == -1) {
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -0700873 PLOG(ERROR) << "failed to open \"" << partition << "\"";
Tao Bao862a4c12016-06-02 11:16:50 -0700874 return false;
875 }
876
877 uint64_t range[2] = {0, 0};
878 if (ioctl(fd, BLKGETSIZE64, &range[1]) == -1 || range[1] == 0) {
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -0700879 PLOG(ERROR) << "failed to get partition size";
Tao Bao862a4c12016-06-02 11:16:50 -0700880 return false;
881 }
882 printf("Secure-wiping \"%s\" from %" PRIu64 " to %" PRIu64 ".\n",
883 partition.c_str(), range[0], range[1]);
884
885 printf("Trying BLKSECDISCARD...\t");
886 if (ioctl(fd, BLKSECDISCARD, &range) == -1) {
887 printf("failed: %s\n", strerror(errno));
888
889 // Use BLKDISCARD if it zeroes out blocks, otherwise use BLKZEROOUT.
890 unsigned int zeroes;
891 if (ioctl(fd, BLKDISCARDZEROES, &zeroes) == 0 && zeroes != 0) {
892 printf("Trying BLKDISCARD...\t");
893 if (ioctl(fd, BLKDISCARD, &range) == -1) {
894 printf("failed: %s\n", strerror(errno));
895 return false;
896 }
897 } else {
898 printf("Trying BLKZEROOUT...\t");
899 if (ioctl(fd, BLKZEROOUT, &range) == -1) {
900 printf("failed: %s\n", strerror(errno));
901 return false;
902 }
903 }
904 }
905
906 printf("done\n");
907 return true;
908}
909
Yabin Cuifd99a312016-06-09 14:09:39 -0700910// Check if the wipe package matches expectation:
911// 1. verify the package.
912// 2. check metadata (ota-type, pre-device and serial number if having one).
913static bool check_wipe_package(size_t wipe_package_size) {
914 if (wipe_package_size == 0) {
915 LOG(ERROR) << "wipe_package_size is zero";
916 return false;
917 }
918 std::string wipe_package;
919 std::string err_str;
920 if (!read_wipe_package(&wipe_package, wipe_package_size, &err_str)) {
921 PLOG(ERROR) << "Failed to read wipe package";
922 return false;
923 }
924 if (!verify_package(reinterpret_cast<const unsigned char*>(wipe_package.data()),
925 wipe_package.size())) {
926 LOG(ERROR) << "Failed to verify package";
927 return false;
928 }
929
930 // Extract metadata
931 ZipArchiveHandle zip;
932 int err = OpenArchiveFromMemory(reinterpret_cast<void*>(&wipe_package[0]),
933 wipe_package.size(), "wipe_package", &zip);
934 if (err != 0) {
935 LOG(ERROR) << "Can't open wipe package : " << ErrorCodeString(err);
936 return false;
937 }
938 std::string metadata;
939 if (!read_metadata_from_package(&zip, &metadata)) {
940 CloseArchive(zip);
941 return false;
942 }
943 CloseArchive(zip);
944
945 // Check metadata
946 std::vector<std::string> lines = android::base::Split(metadata, "\n");
947 bool ota_type_matched = false;
948 bool device_type_matched = false;
949 bool has_serial_number = false;
950 bool serial_number_matched = false;
951 for (const auto& line : lines) {
952 if (line == "ota-type=BRICK") {
953 ota_type_matched = true;
954 } else if (android::base::StartsWith(line, "pre-device=")) {
955 std::string device_type = line.substr(strlen("pre-device="));
956 char real_device_type[PROPERTY_VALUE_MAX];
957 property_get("ro.build.product", real_device_type, "");
958 device_type_matched = (device_type == real_device_type);
959 } else if (android::base::StartsWith(line, "serialno=")) {
960 std::string serial_no = line.substr(strlen("serialno="));
961 char real_serial_no[PROPERTY_VALUE_MAX];
962 property_get("ro.serialno", real_serial_no, "");
963 has_serial_number = true;
964 serial_number_matched = (serial_no == real_serial_no);
965 }
966 }
967 return ota_type_matched && device_type_matched && (!has_serial_number || serial_number_matched);
968}
969
Yabin Cui8b309f62016-06-24 18:22:02 -0700970// Wipe the current A/B device, with a secure wipe of all the partitions in
971// RECOVERY_WIPE.
Yabin Cuifd99a312016-06-09 14:09:39 -0700972static bool wipe_ab_device(size_t wipe_package_size) {
Tao Bao862a4c12016-06-02 11:16:50 -0700973 ui->SetBackground(RecoveryUI::ERASING);
974 ui->SetProgressType(RecoveryUI::INDETERMINATE);
975
Yabin Cuifd99a312016-06-09 14:09:39 -0700976 if (!check_wipe_package(wipe_package_size)) {
977 LOG(ERROR) << "Failed to verify wipe package";
978 return false;
979 }
Tao Bao862a4c12016-06-02 11:16:50 -0700980 std::string partition_list;
Yabin Cui8b309f62016-06-24 18:22:02 -0700981 if (!android::base::ReadFileToString(RECOVERY_WIPE, &partition_list)) {
982 LOG(ERROR) << "failed to read \"" << RECOVERY_WIPE << "\"";
Tao Bao862a4c12016-06-02 11:16:50 -0700983 return false;
984 }
985
986 std::vector<std::string> lines = android::base::Split(partition_list, "\n");
987 for (const std::string& line : lines) {
988 std::string partition = android::base::Trim(line);
989 // Ignore '#' comment or empty lines.
990 if (android::base::StartsWith(partition, "#") || partition.empty()) {
991 continue;
992 }
993
994 // Proceed anyway even if it fails to wipe some partition.
995 secure_wipe_partition(partition);
996 }
997 return true;
998}
999
Nick Kralevicha9ad0322014-10-22 18:38:48 -07001000static void choose_recovery_file(Device* device) {
Elliott Hughesc0491632015-05-06 12:40:05 -07001001 // "Back" + KEEP_LOG_COUNT * 2 + terminating nullptr entry
1002 char* entries[1 + KEEP_LOG_COUNT * 2 + 1];
Nick Kralevicha9ad0322014-10-22 18:38:48 -07001003 memset(entries, 0, sizeof(entries));
1004
Tao Baobef39712015-05-04 18:50:27 -07001005 unsigned int n = 0;
Patrick Tjincd055ee2014-12-09 11:26:40 -08001006
Tianjie Xua54f75e2016-08-17 12:02:46 -07001007 if (has_cache) {
1008 // Add LAST_LOG_FILE + LAST_LOG_FILE.x
1009 // Add LAST_KMSG_FILE + LAST_KMSG_FILE.x
1010 for (int i = 0; i < KEEP_LOG_COUNT; i++) {
1011 char* log_file;
1012 int ret;
1013 ret = (i == 0) ? asprintf(&log_file, "%s", LAST_LOG_FILE) :
1014 asprintf(&log_file, "%s.%d", LAST_LOG_FILE, i);
1015 if (ret == -1) {
1016 // memory allocation failure - return early. Should never happen.
1017 return;
1018 }
1019 if ((ensure_path_mounted(log_file) != 0) || (access(log_file, R_OK) == -1)) {
1020 free(log_file);
1021 } else {
1022 entries[n++] = log_file;
1023 }
Tao Baobef39712015-05-04 18:50:27 -07001024
Tianjie Xua54f75e2016-08-17 12:02:46 -07001025 char* kmsg_file;
1026 ret = (i == 0) ? asprintf(&kmsg_file, "%s", LAST_KMSG_FILE) :
1027 asprintf(&kmsg_file, "%s.%d", LAST_KMSG_FILE, i);
1028 if (ret == -1) {
1029 // memory allocation failure - return early. Should never happen.
1030 return;
1031 }
1032 if ((ensure_path_mounted(kmsg_file) != 0) || (access(kmsg_file, R_OK) == -1)) {
1033 free(kmsg_file);
1034 } else {
1035 entries[n++] = kmsg_file;
1036 }
Tao Baobef39712015-05-04 18:50:27 -07001037 }
Tianjie Xua54f75e2016-08-17 12:02:46 -07001038 } else {
1039 // If cache partition is not found, view /tmp/recovery.log instead.
1040 ui->Print("No /cache partition found.\n");
1041 if (access(TEMPORARY_LOG_FILE, R_OK) == -1) {
1042 return;
1043 } else{
1044 entries[n++] = strdup(TEMPORARY_LOG_FILE);
Tao Baobef39712015-05-04 18:50:27 -07001045 }
Nick Kralevicha9ad0322014-10-22 18:38:48 -07001046 }
1047
Elliott Hughesc0491632015-05-06 12:40:05 -07001048 entries[n++] = strdup("Back");
1049
Tao Baobef39712015-05-04 18:50:27 -07001050 const char* headers[] = { "Select file to view", nullptr };
Nick Kralevicha9ad0322014-10-22 18:38:48 -07001051
Elliott Hughes8de52072015-04-08 20:06:50 -07001052 while (true) {
Elliott Hughes30694c92015-03-25 15:16:51 -07001053 int chosen_item = get_menu_selection(headers, entries, 1, 0, device);
Elliott Hughesc0491632015-05-06 12:40:05 -07001054 if (strcmp(entries[chosen_item], "Back") == 0) break;
Elliott Hughes8de52072015-04-08 20:06:50 -07001055
Elliott Hughes8de52072015-04-08 20:06:50 -07001056 ui->ShowFile(entries[chosen_item]);
Nick Kralevicha9ad0322014-10-22 18:38:48 -07001057 }
1058
Tao Baobef39712015-05-04 18:50:27 -07001059 for (size_t i = 0; i < (sizeof(entries) / sizeof(*entries)); i++) {
Nick Kralevicha9ad0322014-10-22 18:38:48 -07001060 free(entries[i]);
1061 }
1062}
1063
Elliott Hughes498cda62016-04-14 16:49:04 -07001064static void run_graphics_test(Device* device) {
1065 // Switch to graphics screen.
1066 ui->ShowText(false);
1067
1068 ui->SetProgressType(RecoveryUI::INDETERMINATE);
1069 ui->SetBackground(RecoveryUI::INSTALLING_UPDATE);
1070 sleep(1);
1071
1072 ui->SetBackground(RecoveryUI::ERROR);
1073 sleep(1);
1074
1075 ui->SetBackground(RecoveryUI::NO_COMMAND);
1076 sleep(1);
1077
1078 ui->SetBackground(RecoveryUI::ERASING);
1079 sleep(1);
1080
1081 ui->SetBackground(RecoveryUI::INSTALLING_UPDATE);
1082
1083 ui->SetProgressType(RecoveryUI::DETERMINATE);
1084 ui->ShowProgress(1.0, 10.0);
1085 float fraction = 0.0;
1086 for (size_t i = 0; i < 100; ++i) {
1087 fraction += .01;
1088 ui->SetProgress(fraction);
1089 usleep(100000);
1090 }
1091
1092 ui->ShowText(true);
1093}
1094
Tao Baocdcf28f2016-01-13 15:05:20 -08001095// How long (in seconds) we wait for the fuse-provided package file to
1096// appear, before timing out.
1097#define SDCARD_INSTALL_TIMEOUT 10
1098
Tao Bao145d8612015-03-25 15:51:15 -07001099static int apply_from_sdcard(Device* device, bool* wipe_cache) {
Tao Bao682c34b2015-04-07 17:16:35 -07001100 modified_flash = true;
1101
Christian Poetzsch4ec58a42015-02-19 10:42:39 +00001102 if (ensure_path_mounted(SDCARD_ROOT) != 0) {
1103 ui->Print("\n-- Couldn't mount %s.\n", SDCARD_ROOT);
1104 return INSTALL_ERROR;
1105 }
1106
1107 char* path = browse_directory(SDCARD_ROOT, device);
1108 if (path == NULL) {
Elliott Hughes018ed312015-04-08 16:51:36 -07001109 ui->Print("\n-- No package file selected.\n");
caozhiyuanb4effb92015-06-10 16:46:38 +08001110 ensure_path_unmounted(SDCARD_ROOT);
Christian Poetzsch4ec58a42015-02-19 10:42:39 +00001111 return INSTALL_ERROR;
1112 }
1113
1114 ui->Print("\n-- Install %s ...\n", path);
1115 set_sdcard_update_bootloader_message();
Christian Poetzsch4ec58a42015-02-19 10:42:39 +00001116
Tao Baocdcf28f2016-01-13 15:05:20 -08001117 // We used to use fuse in a thread as opposed to a process. Since accessing
1118 // through fuse involves going from kernel to userspace to kernel, it leads
1119 // to deadlock when a page fault occurs. (Bug: 26313124)
1120 pid_t child;
1121 if ((child = fork()) == 0) {
1122 bool status = start_sdcard_fuse(path);
1123
1124 _exit(status ? EXIT_SUCCESS : EXIT_FAILURE);
1125 }
1126
1127 // FUSE_SIDELOAD_HOST_PATHNAME will start to exist once the fuse in child
1128 // process is ready.
1129 int result = INSTALL_ERROR;
1130 int status;
1131 bool waited = false;
1132 for (int i = 0; i < SDCARD_INSTALL_TIMEOUT; ++i) {
1133 if (waitpid(child, &status, WNOHANG) == -1) {
1134 result = INSTALL_ERROR;
1135 waited = true;
1136 break;
1137 }
1138
1139 struct stat sb;
1140 if (stat(FUSE_SIDELOAD_HOST_PATHNAME, &sb) == -1) {
1141 if (errno == ENOENT && i < SDCARD_INSTALL_TIMEOUT-1) {
1142 sleep(1);
1143 continue;
1144 } else {
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -07001145 LOG(ERROR) << "Timed out waiting for the fuse-provided package.";
Tao Baocdcf28f2016-01-13 15:05:20 -08001146 result = INSTALL_ERROR;
1147 kill(child, SIGKILL);
1148 break;
1149 }
1150 }
1151
1152 result = install_package(FUSE_SIDELOAD_HOST_PATHNAME, wipe_cache,
Tianjie Xu16255832016-04-30 11:49:59 -07001153 TEMPORARY_INSTALL_FILE, false, 0/*retry_count*/);
Tao Baocdcf28f2016-01-13 15:05:20 -08001154 break;
1155 }
Christian Poetzsch4ec58a42015-02-19 10:42:39 +00001156
Tao Baocdcf28f2016-01-13 15:05:20 -08001157 if (!waited) {
1158 // Calling stat() on this magic filename signals the fuse
1159 // filesystem to shut down.
1160 struct stat sb;
1161 stat(FUSE_SIDELOAD_HOST_EXIT_PATHNAME, &sb);
1162
1163 waitpid(child, &status, 0);
1164 }
1165
1166 if (!WIFEXITED(status) || WEXITSTATUS(status) != 0) {
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -07001167 LOG(ERROR) << "Error exit from the fuse process: " << WEXITSTATUS(status);
Tao Baocdcf28f2016-01-13 15:05:20 -08001168 }
1169
Christian Poetzsch4ec58a42015-02-19 10:42:39 +00001170 ensure_path_unmounted(SDCARD_ROOT);
Tao Baocdcf28f2016-01-13 15:05:20 -08001171 return result;
Christian Poetzsch4ec58a42015-02-19 10:42:39 +00001172}
1173
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001174// Return REBOOT, SHUTDOWN, or REBOOT_BOOTLOADER. Returning NO_ACTION
1175// means to take the default, which is to reboot or shutdown depending
1176// on if the --shutdown_after flag was passed to recovery.
1177static Device::BuiltinAction
Doug Zongker6c8553d2012-09-24 10:40:47 -07001178prompt_and_wait(Device* device, int status) {
Doug Zongkerf93d8162009-09-22 15:16:02 -07001179 for (;;) {
Tianjie Xuc14d95d2016-03-24 11:50:34 -07001180 finish_recovery();
Doug Zongker6c8553d2012-09-24 10:40:47 -07001181 switch (status) {
1182 case INSTALL_SUCCESS:
1183 case INSTALL_NONE:
1184 ui->SetBackground(RecoveryUI::NO_COMMAND);
1185 break;
1186
1187 case INSTALL_ERROR:
1188 case INSTALL_CORRUPT:
1189 ui->SetBackground(RecoveryUI::ERROR);
1190 break;
1191 }
Doug Zongker211aebc2011-10-28 15:13:10 -07001192 ui->SetProgressType(RecoveryUI::EMPTY);
Doug Zongkerf93d8162009-09-22 15:16:02 -07001193
Elliott Hughes8fd86d72015-04-13 14:36:02 -07001194 int chosen_item = get_menu_selection(nullptr, device->GetMenuItems(), 0, 0, device);
Doug Zongkerf93d8162009-09-22 15:16:02 -07001195
1196 // device-specific code may take some action here. It may
1197 // return one of the core actions handled in the switch
1198 // statement below.
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001199 Device::BuiltinAction chosen_action = device->InvokeMenuItem(chosen_item);
Doug Zongkerf93d8162009-09-22 15:16:02 -07001200
Elliott Hughes30694c92015-03-25 15:16:51 -07001201 bool should_wipe_cache = false;
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001202 switch (chosen_action) {
1203 case Device::NO_ACTION:
1204 break;
1205
Doug Zongkerdaefc1d2011-10-31 09:34:15 -07001206 case Device::REBOOT:
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001207 case Device::SHUTDOWN:
1208 case Device::REBOOT_BOOTLOADER:
1209 return chosen_action;
Doug Zongkerf93d8162009-09-22 15:16:02 -07001210
Doug Zongkerdaefc1d2011-10-31 09:34:15 -07001211 case Device::WIPE_DATA:
1212 wipe_data(ui->IsTextVisible(), device);
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001213 if (!ui->IsTextVisible()) return Device::NO_ACTION;
Doug Zongkerf93d8162009-09-22 15:16:02 -07001214 break;
1215
Doug Zongkerdaefc1d2011-10-31 09:34:15 -07001216 case Device::WIPE_CACHE:
Elliott Hughes30694c92015-03-25 15:16:51 -07001217 wipe_cache(ui->IsTextVisible(), device);
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001218 if (!ui->IsTextVisible()) return Device::NO_ACTION;
Doug Zongkerf93d8162009-09-22 15:16:02 -07001219 break;
1220
Christian Poetzsch4ec58a42015-02-19 10:42:39 +00001221 case Device::APPLY_ADB_SIDELOAD:
Elliott Hughesec283402015-04-10 10:01:53 -07001222 case Device::APPLY_SDCARD:
Christian Poetzsch4ec58a42015-02-19 10:42:39 +00001223 {
1224 bool adb = (chosen_action == Device::APPLY_ADB_SIDELOAD);
1225 if (adb) {
Elliott Hughes30694c92015-03-25 15:16:51 -07001226 status = apply_from_adb(ui, &should_wipe_cache, TEMPORARY_INSTALL_FILE);
Doug Zongkerd0181b82011-10-19 10:51:12 -07001227 } else {
Elliott Hughes30694c92015-03-25 15:16:51 -07001228 status = apply_from_sdcard(device, &should_wipe_cache);
Doug Zongkerd0181b82011-10-19 10:51:12 -07001229 }
Doug Zongker945fc682014-07-10 10:50:39 -07001230
Elliott Hughes30694c92015-03-25 15:16:51 -07001231 if (status == INSTALL_SUCCESS && should_wipe_cache) {
Tao Baoe39a9bc2015-03-31 12:19:05 -07001232 if (!wipe_cache(false, device)) {
1233 status = INSTALL_ERROR;
1234 }
Christian Poetzsch4ec58a42015-02-19 10:42:39 +00001235 }
1236
Tao Baoc679f932015-03-30 09:43:49 -07001237 if (status != INSTALL_SUCCESS) {
1238 ui->SetBackground(RecoveryUI::ERROR);
1239 ui->Print("Installation aborted.\n");
1240 copy_logs();
1241 } else if (!ui->IsTextVisible()) {
1242 return Device::NO_ACTION; // reboot if logs aren't visible
1243 } else {
1244 ui->Print("\nInstall from %s complete.\n", adb ? "ADB" : "SD card");
Doug Zongker8674a722010-09-15 11:08:23 -07001245 }
Doug Zongkerf93d8162009-09-22 15:16:02 -07001246 }
1247 break;
Doug Zongkerdaefc1d2011-10-31 09:34:15 -07001248
Elliott Hughesec283402015-04-10 10:01:53 -07001249 case Device::VIEW_RECOVERY_LOGS:
1250 choose_recovery_file(device);
Michael Ward9d2629c2011-06-23 22:14:24 -07001251 break;
Doug Zongker9270a202012-01-09 15:16:13 -08001252
Elliott Hughes498cda62016-04-14 16:49:04 -07001253 case Device::RUN_GRAPHICS_TEST:
1254 run_graphics_test(device);
1255 break;
1256
Elliott Hughesec283402015-04-10 10:01:53 -07001257 case Device::MOUNT_SYSTEM:
Tao Baoabb8f772015-07-30 14:43:27 -07001258 // For a system image built with the root directory (i.e.
1259 // system_root_image == "true"), we mount it to /system_root, and symlink /system
1260 // to /system_root/system to make adb shell work (the symlink is created through
1261 // the build system).
1262 // Bug: 22855115
Elliott Hughescb220402016-09-23 15:30:55 -07001263 if (android::base::GetBoolProperty("ro.build.system_root_image", false)) {
Tao Baoabb8f772015-07-30 14:43:27 -07001264 if (ensure_path_mounted_at("/", "/system_root") != -1) {
1265 ui->Print("Mounted /system.\n");
1266 }
1267 } else {
1268 if (ensure_path_mounted("/system") != -1) {
1269 ui->Print("Mounted /system.\n");
1270 }
Elliott Hughesec283402015-04-10 10:01:53 -07001271 }
Tao Baoabb8f772015-07-30 14:43:27 -07001272
Nick Kralevicha9ad0322014-10-22 18:38:48 -07001273 break;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001274 }
1275 }
1276}
1277
1278static void
Oscar Montemayor05231562009-11-30 08:40:57 -08001279print_property(const char *key, const char *name, void *cookie) {
Doug Zongker56c51052010-07-01 09:18:44 -07001280 printf("%s=%s\n", key, name);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001281}
1282
Tao Baoac9d94d2016-11-03 11:37:15 -07001283static std::string load_locale_from_cache() {
1284 if (ensure_path_mounted(LOCALE_FILE) != 0) {
1285 LOG(ERROR) << "Can't mount " << LOCALE_FILE;
1286 return "";
Doug Zongker02ec6b82012-08-22 17:26:40 -07001287 }
Tao Baoac9d94d2016-11-03 11:37:15 -07001288
1289 std::string content;
1290 if (!android::base::ReadFileToString(LOCALE_FILE, &content)) {
1291 PLOG(ERROR) << "Can't read " << LOCALE_FILE;
1292 return "";
1293 }
1294
1295 return android::base::Trim(content);
Doug Zongker02ec6b82012-08-22 17:26:40 -07001296}
1297
Tao Baoac9d94d2016-11-03 11:37:15 -07001298void ui_print(const char* format, ...) {
1299 std::string buffer;
Doug Zongker7c3ae452013-05-14 11:03:02 -07001300 va_list ap;
1301 va_start(ap, format);
Tao Baoac9d94d2016-11-03 11:37:15 -07001302 android::base::StringAppendV(&buffer, format, ap);
Doug Zongker7c3ae452013-05-14 11:03:02 -07001303 va_end(ap);
1304
Tao Baoac9d94d2016-11-03 11:37:15 -07001305 if (ui != nullptr) {
1306 ui->Print("%s", buffer.c_str());
Doug Zongker7c3ae452013-05-14 11:03:02 -07001307 } else {
Tao Baoac9d94d2016-11-03 11:37:15 -07001308 fputs(buffer.c_str(), stdout);
Doug Zongker7c3ae452013-05-14 11:03:02 -07001309 }
1310}
1311
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -07001312static constexpr char log_characters[] = "VDIWEF";
1313
1314void UiLogger(android::base::LogId id, android::base::LogSeverity severity,
1315 const char* tag, const char* file, unsigned int line,
1316 const char* message) {
Tao Baoac9d94d2016-11-03 11:37:15 -07001317 if (severity >= android::base::ERROR && ui != nullptr) {
1318 ui->Print("E:%s\n", message);
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -07001319 } else {
1320 fprintf(stdout, "%c:%s\n", log_characters[severity], message);
1321 }
1322}
1323
Yabin Cui99281df2016-02-17 12:21:52 -08001324static bool is_battery_ok() {
1325 struct healthd_config healthd_config = {
1326 .batteryStatusPath = android::String8(android::String8::kEmptyString),
1327 .batteryHealthPath = android::String8(android::String8::kEmptyString),
1328 .batteryPresentPath = android::String8(android::String8::kEmptyString),
1329 .batteryCapacityPath = android::String8(android::String8::kEmptyString),
1330 .batteryVoltagePath = android::String8(android::String8::kEmptyString),
1331 .batteryTemperaturePath = android::String8(android::String8::kEmptyString),
1332 .batteryTechnologyPath = android::String8(android::String8::kEmptyString),
1333 .batteryCurrentNowPath = android::String8(android::String8::kEmptyString),
1334 .batteryCurrentAvgPath = android::String8(android::String8::kEmptyString),
1335 .batteryChargeCounterPath = android::String8(android::String8::kEmptyString),
1336 .batteryFullChargePath = android::String8(android::String8::kEmptyString),
1337 .batteryCycleCountPath = android::String8(android::String8::kEmptyString),
1338 .energyCounter = NULL,
1339 .boot_min_cap = 0,
1340 .screen_on = NULL
1341 };
1342 healthd_board_init(&healthd_config);
1343
1344 android::BatteryMonitor monitor;
1345 monitor.init(&healthd_config);
1346
1347 int wait_second = 0;
1348 while (true) {
1349 int charge_status = monitor.getChargeStatus();
1350 // Treat unknown status as charged.
1351 bool charged = (charge_status != android::BATTERY_STATUS_DISCHARGING &&
1352 charge_status != android::BATTERY_STATUS_NOT_CHARGING);
1353 android::BatteryProperty capacity;
1354 android::status_t status = monitor.getProperty(android::BATTERY_PROP_CAPACITY, &capacity);
1355 ui_print("charge_status %d, charged %d, status %d, capacity %lld\n", charge_status,
1356 charged, status, capacity.valueInt64);
1357 // At startup, the battery drivers in devices like N5X/N6P take some time to load
1358 // the battery profile. Before the load finishes, it reports value 50 as a fake
1359 // capacity. BATTERY_READ_TIMEOUT_IN_SEC is set that the battery drivers are expected
1360 // to finish loading the battery profile earlier than 10 seconds after kernel startup.
1361 if (status == 0 && capacity.valueInt64 == 50) {
1362 if (wait_second < BATTERY_READ_TIMEOUT_IN_SEC) {
1363 sleep(1);
1364 wait_second++;
1365 continue;
1366 }
1367 }
1368 // If we can't read battery percentage, it may be a device without battery. In this
1369 // situation, use 100 as a fake battery percentage.
1370 if (status != 0) {
1371 capacity.valueInt64 = 100;
1372 }
1373 return (charged && capacity.valueInt64 >= BATTERY_WITH_CHARGER_OK_PERCENTAGE) ||
1374 (!charged && capacity.valueInt64 >= BATTERY_OK_PERCENTAGE);
1375 }
1376}
1377
Tianjie Xu3c62b672016-02-05 18:25:58 -08001378static void set_retry_bootloader_message(int retry_count, int argc, char** argv) {
Tianjie Xubd56f152016-09-28 16:32:10 -07001379 std::vector<std::string> options;
Tianjie Xu3c62b672016-02-05 18:25:58 -08001380 for (int i = 1; i < argc; ++i) {
1381 if (strstr(argv[i], "retry_count") == nullptr) {
Tianjie Xubd56f152016-09-28 16:32:10 -07001382 options.push_back(argv[i]);
Tianjie Xu3c62b672016-02-05 18:25:58 -08001383 }
1384 }
1385
Tianjie Xubd56f152016-09-28 16:32:10 -07001386 // Increment the retry counter by 1.
1387 options.push_back(android::base::StringPrintf("--retry_count=%d", retry_count+1));
Yabin Cui8b309f62016-06-24 18:22:02 -07001388 std::string err;
Tianjie Xubd56f152016-09-28 16:32:10 -07001389 if (!write_bootloader_message(options, &err)) {
Yabin Cui8b309f62016-06-24 18:22:02 -07001390 LOG(ERROR) << err;
1391 }
Tianjie Xu3c62b672016-02-05 18:25:58 -08001392}
1393
Tianjie Xu06e57ac2016-07-11 14:04:08 -07001394static bool bootreason_in_blacklist() {
1395 char bootreason[PROPERTY_VALUE_MAX];
1396 if (property_get("ro.boot.bootreason", bootreason, nullptr) > 0) {
1397 for (const auto& str : bootreason_blacklist) {
1398 if (strcasecmp(str.c_str(), bootreason) == 0) {
1399 return true;
1400 }
1401 }
1402 }
1403 return false;
1404}
1405
1406static void log_failure_code(ErrorCode code, const char *update_package) {
1407 std::vector<std::string> log_buffer = {
1408 update_package,
1409 "0", // install result
1410 "error: " + std::to_string(code),
1411 };
1412 std::string log_content = android::base::Join(log_buffer, "\n");
1413 if (!android::base::WriteStringToFile(log_content, TEMPORARY_INSTALL_FILE)) {
Tao Baoac9d94d2016-11-03 11:37:15 -07001414 PLOG(ERROR) << "failed to write " << TEMPORARY_INSTALL_FILE;
Tianjie Xu06e57ac2016-07-11 14:04:08 -07001415 }
1416
1417 // Also write the info into last_log.
1418 LOG(INFO) << log_content;
1419}
1420
Mark Salyzyna4f701a2016-03-09 14:58:16 -08001421static ssize_t logbasename(
1422 log_id_t /* logId */,
1423 char /* prio */,
1424 const char *filename,
1425 const char * /* buf */, size_t len,
1426 void *arg) {
1427 if (strstr(LAST_KMSG_FILE, filename) ||
1428 strstr(LAST_LOG_FILE, filename)) {
1429 bool *doRotate = reinterpret_cast<bool *>(arg);
1430 *doRotate = true;
1431 }
1432 return len;
1433}
1434
1435static ssize_t logrotate(
1436 log_id_t logId,
1437 char prio,
1438 const char *filename,
1439 const char *buf, size_t len,
1440 void *arg) {
1441 bool *doRotate = reinterpret_cast<bool *>(arg);
1442 if (!*doRotate) {
1443 return __android_log_pmsg_file_write(logId, prio, filename, buf, len);
1444 }
1445
1446 std::string name(filename);
Chih-Hung Hsieh23abfd32016-07-27 10:19:47 -07001447 size_t dot = name.find_last_of('.');
Mark Salyzyna4f701a2016-03-09 14:58:16 -08001448 std::string sub = name.substr(0, dot);
1449
1450 if (!strstr(LAST_KMSG_FILE, sub.c_str()) &&
1451 !strstr(LAST_LOG_FILE, sub.c_str())) {
1452 return __android_log_pmsg_file_write(logId, prio, filename, buf, len);
1453 }
1454
1455 // filename rotation
1456 if (dot == std::string::npos) {
1457 name += ".1";
1458 } else {
1459 std::string number = name.substr(dot + 1);
1460 if (!isdigit(number.data()[0])) {
1461 name += ".1";
1462 } else {
Chih-Hung Hsieh54a27472016-04-18 11:30:55 -07001463 auto i = std::stoull(number);
Mark Salyzyna4f701a2016-03-09 14:58:16 -08001464 name = sub + "." + std::to_string(i + 1);
1465 }
1466 }
1467
1468 return __android_log_pmsg_file_write(logId, prio, name.c_str(), buf, len);
1469}
1470
Yabin Cui99281df2016-02-17 12:21:52 -08001471int main(int argc, char **argv) {
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -07001472 // We don't have logcat yet under recovery; so we'll print error on screen and
1473 // log to stdout (which is redirected to recovery.log) as we used to do.
1474 android::base::InitLogging(argv, &UiLogger);
1475
Mark Salyzyna4f701a2016-03-09 14:58:16 -08001476 // Take last pmsg contents and rewrite it to the current pmsg session.
1477 static const char filter[] = "recovery/";
1478 // Do we need to rotate?
1479 bool doRotate = false;
1480 __android_log_pmsg_file_read(
1481 LOG_ID_SYSTEM, ANDROID_LOG_INFO, filter,
1482 logbasename, &doRotate);
1483 // Take action to refresh pmsg contents
1484 __android_log_pmsg_file_read(
1485 LOG_ID_SYSTEM, ANDROID_LOG_INFO, filter,
1486 logrotate, &doRotate);
1487
Doug Zongker9270a202012-01-09 15:16:13 -08001488 // If this binary is started with the single argument "--adbd",
1489 // instead of being the normal recovery binary, it turns into kind
1490 // of a stripped-down version of adbd that only supports the
1491 // 'sideload' command. Note this must be a real argument, not
1492 // anything in the command file or bootloader control block; the
1493 // only way recovery should be run with this argument is when it
1494 // starts a copy of itself from the apply_from_adb() function.
1495 if (argc == 2 && strcmp(argv[1], "--adbd") == 0) {
Josh Gaoacb2a2f2016-08-26 18:24:34 -07001496 minadbd_main();
Doug Zongker9270a202012-01-09 15:16:13 -08001497 return 0;
1498 }
1499
Tao Bao04ca4262015-09-10 15:32:24 -07001500 time_t start = time(NULL);
1501
1502 // redirect_stdio should be called only in non-sideload mode. Otherwise
1503 // we may have two logger instances with different timestamps.
1504 redirect_stdio(TEMPORARY_LOG_FILE);
1505
Doug Zongker19a8e242014-01-21 09:25:41 -08001506 printf("Starting recovery (pid %d) on %s", getpid(), ctime(&start));
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001507
Doug Zongkerd4208f92010-09-20 12:16:13 -07001508 load_volume_table();
Tao Bao26112e52016-02-25 12:29:40 -08001509 has_cache = volume_for_path(CACHE_ROOT) != nullptr;
1510
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001511 get_args(&argc, &argv);
1512
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001513 const char *update_package = NULL;
Tao Baoe39a9bc2015-03-31 12:19:05 -07001514 bool should_wipe_data = false;
Tao Baoc679f932015-03-30 09:43:49 -07001515 bool should_wipe_cache = false;
Yabin Cui8b309f62016-06-24 18:22:02 -07001516 bool should_wipe_ab = false;
Yabin Cuifd99a312016-06-09 14:09:39 -07001517 size_t wipe_package_size = 0;
Tao Bao145d8612015-03-25 15:51:15 -07001518 bool show_text = false;
Tao Baoc679f932015-03-30 09:43:49 -07001519 bool sideload = false;
1520 bool sideload_auto_reboot = false;
Doug Zongkere5d5ac72012-04-12 11:01:22 -07001521 bool just_exit = false;
Doug Zongkerb1d12632014-03-18 10:32:12 -07001522 bool shutdown_after = false;
Tianjie Xu3c62b672016-02-05 18:25:58 -08001523 int retry_count = 0;
Tianjie Xu35926c42016-04-28 18:06:26 -07001524 bool security_update = false;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001525
1526 int arg;
Tao Bao862a4c12016-06-02 11:16:50 -07001527 int option_index;
1528 while ((arg = getopt_long(argc, argv, "", OPTIONS, &option_index)) != -1) {
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001529 switch (arg) {
Tianjie Xu3c62b672016-02-05 18:25:58 -08001530 case 'n': android::base::ParseInt(optarg, &retry_count, 0); break;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001531 case 'u': update_package = optarg; break;
Tao Baoe39a9bc2015-03-31 12:19:05 -07001532 case 'w': should_wipe_data = true; break;
Tao Baoc679f932015-03-30 09:43:49 -07001533 case 'c': should_wipe_cache = true; break;
Tao Bao145d8612015-03-25 15:51:15 -07001534 case 't': show_text = true; break;
Tao Baoc679f932015-03-30 09:43:49 -07001535 case 's': sideload = true; break;
1536 case 'a': sideload = true; sideload_auto_reboot = true; break;
Doug Zongkere5d5ac72012-04-12 11:01:22 -07001537 case 'x': just_exit = true; break;
Doug Zongker02ec6b82012-08-22 17:26:40 -07001538 case 'l': locale = optarg; break;
Doug Zongkerc87bab12013-11-25 13:53:25 -08001539 case 'g': {
1540 if (stage == NULL || *stage == '\0') {
1541 char buffer[20] = "1/";
1542 strncat(buffer, optarg, sizeof(buffer)-3);
1543 stage = strdup(buffer);
1544 }
1545 break;
1546 }
Doug Zongkerb1d12632014-03-18 10:32:12 -07001547 case 'p': shutdown_after = true; break;
Jeff Sharkeya6e13ae2014-09-24 11:46:17 -07001548 case 'r': reason = optarg; break;
Tianjie Xu35926c42016-04-28 18:06:26 -07001549 case 'e': security_update = true; break;
Tao Bao862a4c12016-06-02 11:16:50 -07001550 case 0: {
Yabin Cui8b309f62016-06-24 18:22:02 -07001551 if (strcmp(OPTIONS[option_index].name, "wipe_ab") == 0) {
1552 should_wipe_ab = true;
Tao Bao862a4c12016-06-02 11:16:50 -07001553 break;
Yabin Cuifd99a312016-06-09 14:09:39 -07001554 } else if (strcmp(OPTIONS[option_index].name, "wipe_package_size") == 0) {
1555 android::base::ParseUint(optarg, &wipe_package_size);
1556 break;
Tao Bao862a4c12016-06-02 11:16:50 -07001557 }
1558 break;
1559 }
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001560 case '?':
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -07001561 LOG(ERROR) << "Invalid command argument";
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001562 continue;
1563 }
1564 }
1565
Tao Baoac9d94d2016-11-03 11:37:15 -07001566 if (locale.empty()) {
1567 if (has_cache) {
1568 locale = load_locale_from_cache();
1569 }
1570
1571 if (locale.empty()) {
1572 locale = DEFAULT_LOCALE;
1573 }
Doug Zongker02ec6b82012-08-22 17:26:40 -07001574 }
Tao Baoac9d94d2016-11-03 11:37:15 -07001575
1576 printf("locale is [%s]\n", locale.c_str());
Doug Zongker0d32f252014-02-13 15:07:56 -08001577 printf("stage is [%s]\n", stage);
Jeff Sharkeya6e13ae2014-09-24 11:46:17 -07001578 printf("reason is [%s]\n", reason);
Doug Zongker02ec6b82012-08-22 17:26:40 -07001579
1580 Device* device = make_device();
1581 ui = device->GetUI();
1582
Tao Baoac9d94d2016-11-03 11:37:15 -07001583 ui->SetLocale(locale.c_str());
Doug Zongker02ec6b82012-08-22 17:26:40 -07001584 ui->Init();
Tianjie Xu35926c42016-04-28 18:06:26 -07001585 // Set background string to "installing security update" for security update,
1586 // otherwise set it to "installing system update".
1587 ui->SetSystemUpdateText(security_update);
Doug Zongkerc87bab12013-11-25 13:53:25 -08001588
1589 int st_cur, st_max;
1590 if (stage != NULL && sscanf(stage, "%d/%d", &st_cur, &st_max) == 2) {
1591 ui->SetStage(st_cur, st_max);
1592 }
1593
Doug Zongker02ec6b82012-08-22 17:26:40 -07001594 ui->SetBackground(RecoveryUI::NONE);
1595 if (show_text) ui->ShowText(true);
1596
Stephen Smalley779701d2012-02-09 14:13:23 -05001597 struct selinux_opt seopts[] = {
Tao Baoac9d94d2016-11-03 11:37:15 -07001598 { SELABEL_OPT_PATH, "/file_contexts" }
Stephen Smalley779701d2012-02-09 14:13:23 -05001599 };
1600
1601 sehandle = selabel_open(SELABEL_CTX_FILE, seopts, 1);
1602
1603 if (!sehandle) {
Doug Zongkerfafc85b2013-07-09 12:29:45 -07001604 ui->Print("Warning: No file_contexts\n");
Stephen Smalley779701d2012-02-09 14:13:23 -05001605 }
Stephen Smalley779701d2012-02-09 14:13:23 -05001606
Doug Zongkerdaefc1d2011-10-31 09:34:15 -07001607 device->StartRecovery();
Doug Zongkerefa1bab2010-02-01 15:59:12 -08001608
Doug Zongker56c51052010-07-01 09:18:44 -07001609 printf("Command:");
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001610 for (arg = 0; arg < argc; arg++) {
Doug Zongker56c51052010-07-01 09:18:44 -07001611 printf(" \"%s\"", argv[arg]);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001612 }
Doug Zongker9b125b02010-09-22 12:01:37 -07001613 printf("\n");
1614
1615 if (update_package) {
1616 // For backwards compatibility on the cache partition only, if
1617 // we're given an old 'root' path "CACHE:foo", change it to
1618 // "/cache/foo".
1619 if (strncmp(update_package, "CACHE:", 6) == 0) {
1620 int len = strlen(update_package) + 10;
Doug Zongker28ce47c2011-10-28 10:33:05 -07001621 char* modified_path = (char*)malloc(len);
Jeremy Compostella1b7d9b72015-07-29 17:17:03 +02001622 if (modified_path) {
1623 strlcpy(modified_path, "/cache/", len);
1624 strlcat(modified_path, update_package+6, len);
1625 printf("(replacing path \"%s\" with \"%s\")\n",
1626 update_package, modified_path);
1627 update_package = modified_path;
1628 }
1629 else
1630 printf("modified_path allocation failed\n");
Doug Zongker9b125b02010-09-22 12:01:37 -07001631 }
1632 }
1633 printf("\n");
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001634
1635 property_list(print_property, NULL);
Doug Zongker56c51052010-07-01 09:18:44 -07001636 printf("\n");
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001637
Elliott Hughesbb78d622015-04-09 20:51:08 -07001638 ui->Print("Supported API: %d\n", RECOVERY_API_VERSION);
1639
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001640 int status = INSTALL_SUCCESS;
1641
Doug Zongker540d57f2011-01-18 13:36:58 -08001642 if (update_package != NULL) {
Tao Bao56870012016-04-29 15:37:05 -07001643 // It's not entirely true that we will modify the flash. But we want
1644 // to log the update attempt since update_package is non-NULL.
1645 modified_flash = true;
1646
Yabin Cui99281df2016-02-17 12:21:52 -08001647 if (!is_battery_ok()) {
1648 ui->Print("battery capacity is not enough for installing package, needed is %d%%\n",
1649 BATTERY_OK_PERCENTAGE);
Tianjie Xu16255832016-04-30 11:49:59 -07001650 // Log the error code to last_install when installation skips due to
1651 // low battery.
Tianjie Xu06e57ac2016-07-11 14:04:08 -07001652 log_failure_code(kLowBattery, update_package);
1653 status = INSTALL_SKIPPED;
1654 } else if (bootreason_in_blacklist()) {
1655 // Skip update-on-reboot when bootreason is kernel_panic or similar
1656 ui->Print("bootreason is in the blacklist; skip OTA installation\n");
1657 log_failure_code(kBootreasonInBlacklist, update_package);
Yabin Cui99281df2016-02-17 12:21:52 -08001658 status = INSTALL_SKIPPED;
1659 } else {
1660 status = install_package(update_package, &should_wipe_cache,
Tianjie Xu16255832016-04-30 11:49:59 -07001661 TEMPORARY_INSTALL_FILE, true, retry_count);
Yabin Cui99281df2016-02-17 12:21:52 -08001662 if (status == INSTALL_SUCCESS && should_wipe_cache) {
1663 wipe_cache(false, device);
1664 }
1665 if (status != INSTALL_SUCCESS) {
1666 ui->Print("Installation aborted.\n");
Tianjie Xu3c62b672016-02-05 18:25:58 -08001667 // When I/O error happens, reboot and retry installation EIO_RETRY_COUNT
1668 // times before we abandon this OTA update.
1669 if (status == INSTALL_RETRY && retry_count < EIO_RETRY_COUNT) {
1670 copy_logs();
1671 set_retry_bootloader_message(retry_count, argc, argv);
1672 // Print retry count on screen.
1673 ui->Print("Retry attempt %d\n", retry_count);
Doug Zongker7c3ae452013-05-14 11:03:02 -07001674
Tianjie Xu3c62b672016-02-05 18:25:58 -08001675 // Reboot and retry the update
Elliott Hughescb220402016-09-23 15:30:55 -07001676 if (!android::base::SetProperty(ANDROID_RB_PROPERTY, "reboot,recovery")) {
Tianjie Xu3c62b672016-02-05 18:25:58 -08001677 ui->Print("Reboot failed\n");
1678 } else {
1679 while (true) {
1680 pause();
1681 }
1682 }
1683 }
Yabin Cui99281df2016-02-17 12:21:52 -08001684 // If this is an eng or userdebug build, then automatically
1685 // turn the text display on if the script fails so the error
1686 // message is visible.
1687 if (is_ro_debuggable()) {
1688 ui->ShowText(true);
1689 }
Doug Zongker7c3ae452013-05-14 11:03:02 -07001690 }
1691 }
Tao Baoe39a9bc2015-03-31 12:19:05 -07001692 } else if (should_wipe_data) {
1693 if (!wipe_data(false, device)) {
1694 status = INSTALL_ERROR;
1695 }
Tao Baoc679f932015-03-30 09:43:49 -07001696 } else if (should_wipe_cache) {
Tao Baoe39a9bc2015-03-31 12:19:05 -07001697 if (!wipe_cache(false, device)) {
1698 status = INSTALL_ERROR;
1699 }
Yabin Cui8b309f62016-06-24 18:22:02 -07001700 } else if (should_wipe_ab) {
Yabin Cuifd99a312016-06-09 14:09:39 -07001701 if (!wipe_ab_device(wipe_package_size)) {
Tao Bao862a4c12016-06-02 11:16:50 -07001702 status = INSTALL_ERROR;
1703 }
Tao Baoc679f932015-03-30 09:43:49 -07001704 } else if (sideload) {
1705 // 'adb reboot sideload' acts the same as user presses key combinations
1706 // to enter the sideload mode. When 'sideload-auto-reboot' is used, text
1707 // display will NOT be turned on by default. And it will reboot after
1708 // sideload finishes even if there are errors. Unless one turns on the
1709 // text display during the installation. This is to enable automated
1710 // testing.
1711 if (!sideload_auto_reboot) {
1712 ui->ShowText(true);
1713 }
1714 status = apply_from_adb(ui, &should_wipe_cache, TEMPORARY_INSTALL_FILE);
1715 if (status == INSTALL_SUCCESS && should_wipe_cache) {
Tao Baoe39a9bc2015-03-31 12:19:05 -07001716 if (!wipe_cache(false, device)) {
1717 status = INSTALL_ERROR;
1718 }
Tao Baoc679f932015-03-30 09:43:49 -07001719 }
1720 ui->Print("\nInstall from ADB complete (status: %d).\n", status);
1721 if (sideload_auto_reboot) {
1722 ui->Print("Rebooting automatically.\n");
1723 }
Doug Zongkere5d5ac72012-04-12 11:01:22 -07001724 } else if (!just_exit) {
Doug Zongker02ec6b82012-08-22 17:26:40 -07001725 status = INSTALL_NONE; // No command specified
1726 ui->SetBackground(RecoveryUI::NO_COMMAND);
Tao Bao785d22c2015-05-04 09:34:29 -07001727
1728 // http://b/17489952
1729 // If this is an eng or userdebug build, automatically turn on the
1730 // text display if no command is specified.
1731 if (is_ro_debuggable()) {
1732 ui->ShowText(true);
1733 }
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001734 }
1735
Tao Baoc679f932015-03-30 09:43:49 -07001736 if (!sideload_auto_reboot && (status == INSTALL_ERROR || status == INSTALL_CORRUPT)) {
Doug Zongkerf24fd7e2013-07-02 11:43:25 -07001737 copy_logs();
Doug Zongker02ec6b82012-08-22 17:26:40 -07001738 ui->SetBackground(RecoveryUI::ERROR);
1739 }
Tao Baoc679f932015-03-30 09:43:49 -07001740
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001741 Device::BuiltinAction after = shutdown_after ? Device::SHUTDOWN : Device::REBOOT;
Yabin Cui99281df2016-02-17 12:21:52 -08001742 if ((status != INSTALL_SUCCESS && status != INSTALL_SKIPPED && !sideload_auto_reboot) ||
1743 ui->IsTextVisible()) {
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001744 Device::BuiltinAction temp = prompt_and_wait(device, status);
Tao Baoc679f932015-03-30 09:43:49 -07001745 if (temp != Device::NO_ACTION) {
1746 after = temp;
1747 }
Doug Zongker8674a722010-09-15 11:08:23 -07001748 }
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001749
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001750 // Save logs and clean up before rebooting or shutting down.
Tianjie Xuc14d95d2016-03-24 11:50:34 -07001751 finish_recovery();
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001752
1753 switch (after) {
1754 case Device::SHUTDOWN:
1755 ui->Print("Shutting down...\n");
Elliott Hughescb220402016-09-23 15:30:55 -07001756 android::base::SetProperty(ANDROID_RB_PROPERTY, "shutdown,");
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001757 break;
1758
1759 case Device::REBOOT_BOOTLOADER:
1760 ui->Print("Rebooting to bootloader...\n");
Elliott Hughescb220402016-09-23 15:30:55 -07001761 android::base::SetProperty(ANDROID_RB_PROPERTY, "reboot,bootloader");
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001762 break;
1763
1764 default:
1765 ui->Print("Rebooting...\n");
Elliott Hughescb220402016-09-23 15:30:55 -07001766 android::base::SetProperty(ANDROID_RB_PROPERTY, "reboot,");
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001767 break;
Doug Zongkerb1d12632014-03-18 10:32:12 -07001768 }
Tao Bao75238632015-05-27 14:46:17 -07001769 while (true) {
Tao Baoac9d94d2016-11-03 11:37:15 -07001770 pause();
Tao Bao75238632015-05-27 14:46:17 -07001771 }
1772 // Should be unreachable.
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001773 return EXIT_SUCCESS;
1774}