blob: 683d101f5132403e63dfaaa9a630a06c79976715 [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
Stephen Smalley779701d2012-02-09 14:13:23 -050072struct selabel_handle *sehandle;
73
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080074static const struct option OPTIONS[] = {
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080075 { "update_package", required_argument, NULL, 'u' },
Tianjie Xu3c62b672016-02-05 18:25:58 -080076 { "retry_count", required_argument, NULL, 'n' },
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080077 { "wipe_data", no_argument, NULL, 'w' },
78 { "wipe_cache", no_argument, NULL, 'c' },
Doug Zongker4bc98062010-09-03 11:00:13 -070079 { "show_text", no_argument, NULL, 't' },
Tao Baoc679f932015-03-30 09:43:49 -070080 { "sideload", no_argument, NULL, 's' },
81 { "sideload_auto_reboot", no_argument, NULL, 'a' },
Doug Zongkere5d5ac72012-04-12 11:01:22 -070082 { "just_exit", no_argument, NULL, 'x' },
Doug Zongker02ec6b82012-08-22 17:26:40 -070083 { "locale", required_argument, NULL, 'l' },
Doug Zongkerc87bab12013-11-25 13:53:25 -080084 { "stages", required_argument, NULL, 'g' },
Doug Zongkerb1d12632014-03-18 10:32:12 -070085 { "shutdown_after", no_argument, NULL, 'p' },
Jeff Sharkeya6e13ae2014-09-24 11:46:17 -070086 { "reason", required_argument, NULL, 'r' },
Tianjie Xu35926c42016-04-28 18:06:26 -070087 { "security", no_argument, NULL, 'e'},
Yabin Cui8b309f62016-06-24 18:22:02 -070088 { "wipe_ab", no_argument, NULL, 0 },
Yabin Cuifd99a312016-06-09 14:09:39 -070089 { "wipe_package_size", required_argument, NULL, 0 },
Doug Zongker988500b2009-10-06 14:41:38 -070090 { NULL, 0, NULL, 0 },
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080091};
92
Doug Zongker6d0d7ac2013-07-09 13:34:55 -070093static const char *CACHE_LOG_DIR = "/cache/recovery";
Doug Zongkerd4208f92010-09-20 12:16:13 -070094static const char *COMMAND_FILE = "/cache/recovery/command";
Doug Zongkerd4208f92010-09-20 12:16:13 -070095static const char *LOG_FILE = "/cache/recovery/log";
Doug Zongkerd0181b82011-10-19 10:51:12 -070096static const char *LAST_INSTALL_FILE = "/cache/recovery/last_install";
Doug Zongker8b240cc2012-08-29 15:19:29 -070097static const char *LOCALE_FILE = "/cache/recovery/last_locale";
Paul Lawrence661f8a62016-02-25 12:42:19 -080098static const char *CONVERT_FBE_DIR = "/tmp/convert_fbe";
99static const char *CONVERT_FBE_FILE = "/tmp/convert_fbe/convert_fbe";
Michael Ward9d2629c2011-06-23 22:14:24 -0700100static const char *CACHE_ROOT = "/cache";
Paul Lawrenced0db3372015-11-05 13:38:40 -0800101static const char *DATA_ROOT = "/data";
Doug Zongkerd4208f92010-09-20 12:16:13 -0700102static const char *SDCARD_ROOT = "/sdcard";
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800103static const char *TEMPORARY_LOG_FILE = "/tmp/recovery.log";
Doug Zongkerd0181b82011-10-19 10:51:12 -0700104static const char *TEMPORARY_INSTALL_FILE = "/tmp/last_install";
Tao Baof0124322015-04-11 02:04:11 +0000105static const char *LAST_KMSG_FILE = "/cache/recovery/last_kmsg";
Tao Baobef39712015-05-04 18:50:27 -0700106static const char *LAST_LOG_FILE = "/cache/recovery/last_log";
107static const int KEEP_LOG_COUNT = 10;
Tianjie Xuc37c5c32016-06-23 16:52:17 -0700108// We will try to apply the update package 5 times at most in case of an I/O error.
109static const int EIO_RETRY_COUNT = 4;
Yabin Cui99281df2016-02-17 12:21:52 -0800110static const int BATTERY_READ_TIMEOUT_IN_SEC = 10;
111// GmsCore enters recovery mode to install package when having enough battery
112// percentage. Normally, the threshold is 40% without charger and 20% with charger.
113// So we should check battery with a slightly lower limitation.
114static const int BATTERY_OK_PERCENTAGE = 20;
115static const int BATTERY_WITH_CHARGER_OK_PERCENTAGE = 15;
Yabin Cui8b309f62016-06-24 18:22:02 -0700116constexpr const char* RECOVERY_WIPE = "/etc/recovery.wipe";
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700117
Doug Zongker211aebc2011-10-28 15:13:10 -0700118RecoveryUI* ui = NULL;
Elliott Hughes498cda62016-04-14 16:49:04 -0700119static const char* locale = "en_US";
Doug Zongkerc87bab12013-11-25 13:53:25 -0800120char* stage = NULL;
Jeff Sharkeya6e13ae2014-09-24 11:46:17 -0700121char* reason = NULL;
Tao Bao682c34b2015-04-07 17:16:35 -0700122bool modified_flash = false;
Tao Bao26112e52016-02-25 12:29:40 -0800123static bool has_cache = false;
Doug Zongker211aebc2011-10-28 15:13:10 -0700124
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800125/*
126 * The recovery tool communicates with the main system through /cache files.
127 * /cache/recovery/command - INPUT - command line for tool, one arg per line
128 * /cache/recovery/log - OUTPUT - combined log file from recovery run(s)
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800129 *
130 * The arguments which may be supplied in the recovery.command file:
Doug Zongkerd4208f92010-09-20 12:16:13 -0700131 * --update_package=path - verify install an OTA package file
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800132 * --wipe_data - erase user data (and cache), then reboot
133 * --wipe_cache - wipe cache (but not user data), then reboot
Oscar Montemayor05231562009-11-30 08:40:57 -0800134 * --set_encrypted_filesystem=on|off - enables / diasables encrypted fs
Doug Zongkere5d5ac72012-04-12 11:01:22 -0700135 * --just_exit - do nothing; exit and reboot
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800136 *
137 * After completing, we remove /cache/recovery/command and reboot.
138 * Arguments may also be supplied in the bootloader control block (BCB).
139 * These important scenarios must be safely restartable at any point:
140 *
141 * FACTORY RESET
142 * 1. user selects "factory reset"
143 * 2. main system writes "--wipe_data" to /cache/recovery/command
144 * 3. main system reboots into recovery
145 * 4. get_args() writes BCB with "boot-recovery" and "--wipe_data"
146 * -- after this, rebooting will restart the erase --
Doug Zongkerd4208f92010-09-20 12:16:13 -0700147 * 5. erase_volume() reformats /data
148 * 6. erase_volume() reformats /cache
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800149 * 7. finish_recovery() erases BCB
150 * -- after this, rebooting will restart the main system --
151 * 8. main() calls reboot() to boot main system
152 *
153 * OTA INSTALL
154 * 1. main system downloads OTA package to /cache/some-filename.zip
Doug Zongker9b125b02010-09-22 12:01:37 -0700155 * 2. main system writes "--update_package=/cache/some-filename.zip"
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800156 * 3. main system reboots into recovery
157 * 4. get_args() writes BCB with "boot-recovery" and "--update_package=..."
158 * -- after this, rebooting will attempt to reinstall the update --
159 * 5. install_package() attempts to install the update
160 * NOTE: the package install must itself be restartable from any point
161 * 6. finish_recovery() erases BCB
162 * -- after this, rebooting will (try to) restart the main system --
163 * 7. ** if install failed **
164 * 7a. prompt_and_wait() shows an error icon and waits for the user
165 * 7b; the user reboots (pulling the battery, etc) into the main system
166 * 8. main() calls maybe_install_firmware_update()
167 * ** if the update contained radio/hboot firmware **:
168 * 8a. m_i_f_u() writes BCB with "boot-recovery" and "--wipe_cache"
169 * -- after this, rebooting will reformat cache & restart main system --
170 * 8b. m_i_f_u() writes firmware image into raw cache partition
171 * 8c. m_i_f_u() writes BCB with "update-radio/hboot" and "--wipe_cache"
172 * -- after this, rebooting will attempt to reinstall firmware --
173 * 8d. bootloader tries to flash firmware
174 * 8e. bootloader writes BCB with "boot-recovery" (keeping "--wipe_cache")
175 * -- after this, rebooting will reformat cache & restart main system --
Doug Zongkerd4208f92010-09-20 12:16:13 -0700176 * 8f. erase_volume() reformats /cache
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800177 * 8g. finish_recovery() erases BCB
178 * -- after this, rebooting will (try to) restart the main system --
179 * 9. main() calls reboot() to boot main system
180 */
181
182static const int MAX_ARG_LENGTH = 4096;
183static const int MAX_ARGS = 100;
184
Doug Zongkerd4208f92010-09-20 12:16:13 -0700185// open a given path, mounting partitions as necessary
Tao Bao04ca4262015-09-10 15:32:24 -0700186FILE* fopen_path(const char *path, const char *mode) {
Doug Zongkerd4208f92010-09-20 12:16:13 -0700187 if (ensure_path_mounted(path) != 0) {
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -0700188 LOG(ERROR) << "Can't mount " << path;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800189 return NULL;
190 }
191
192 // When writing, try to create the containing directory, if necessary.
193 // Use generous permissions, the system (init.rc) will reset them.
Stephen Smalley779701d2012-02-09 14:13:23 -0500194 if (strchr("wa", mode[0])) dirCreateHierarchy(path, 0777, NULL, 1, sehandle);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800195
196 FILE *fp = fopen(path, mode);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800197 return fp;
198}
199
Tao Bao04ca4262015-09-10 15:32:24 -0700200// close a file, log an error if the error indicator is set
201static void check_and_fclose(FILE *fp, const char *name) {
202 fflush(fp);
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -0700203 if (ferror(fp)) {
204 PLOG(ERROR) << "Error in " << name;
205 }
Tao Bao04ca4262015-09-10 15:32:24 -0700206 fclose(fp);
207}
208
Elliott Hughesf14af802015-02-10 14:46:14 -0800209bool is_ro_debuggable() {
Elliott Hughescb220402016-09-23 15:30:55 -0700210 return android::base::GetBoolProperty("ro.debuggable", false);
Elliott Hughesf14af802015-02-10 14:46:14 -0800211}
212
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700213static void redirect_stdio(const char* filename) {
Tao Bao04ca4262015-09-10 15:32:24 -0700214 int pipefd[2];
215 if (pipe(pipefd) == -1) {
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -0700216 PLOG(ERROR) << "pipe failed";
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700217
Tao Bao04ca4262015-09-10 15:32:24 -0700218 // Fall back to traditional logging mode without timestamps.
219 // If these fail, there's not really anywhere to complain...
220 freopen(filename, "a", stdout); setbuf(stdout, NULL);
221 freopen(filename, "a", stderr); setbuf(stderr, NULL);
222
223 return;
224 }
225
226 pid_t pid = fork();
227 if (pid == -1) {
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -0700228 PLOG(ERROR) << "fork failed";
Tao Bao04ca4262015-09-10 15:32:24 -0700229
230 // Fall back to traditional logging mode without timestamps.
231 // If these fail, there's not really anywhere to complain...
232 freopen(filename, "a", stdout); setbuf(stdout, NULL);
233 freopen(filename, "a", stderr); setbuf(stderr, NULL);
234
235 return;
236 }
237
238 if (pid == 0) {
239 /// Close the unused write end.
240 close(pipefd[1]);
241
242 auto start = std::chrono::steady_clock::now();
243
244 // Child logger to actually write to the log file.
245 FILE* log_fp = fopen(filename, "a");
246 if (log_fp == nullptr) {
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -0700247 PLOG(ERROR) << "fopen \"" << filename << "\" failed";
Tao Bao04ca4262015-09-10 15:32:24 -0700248 close(pipefd[0]);
249 _exit(1);
250 }
251
252 FILE* pipe_fp = fdopen(pipefd[0], "r");
253 if (pipe_fp == nullptr) {
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -0700254 PLOG(ERROR) << "fdopen failed";
Tao Bao04ca4262015-09-10 15:32:24 -0700255 check_and_fclose(log_fp, filename);
256 close(pipefd[0]);
257 _exit(1);
258 }
259
260 char* line = nullptr;
261 size_t len = 0;
262 while (getline(&line, &len, pipe_fp) != -1) {
263 auto now = std::chrono::steady_clock::now();
264 double duration = std::chrono::duration_cast<std::chrono::duration<double>>(
265 now - start).count();
266 if (line[0] == '\n') {
267 fprintf(log_fp, "[%12.6lf]\n", duration);
268 } else {
269 fprintf(log_fp, "[%12.6lf] %s", duration, line);
270 }
271 fflush(log_fp);
272 }
273
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -0700274 PLOG(ERROR) << "getline failed";
Tao Bao04ca4262015-09-10 15:32:24 -0700275
276 free(line);
277 check_and_fclose(log_fp, filename);
278 close(pipefd[0]);
279 _exit(1);
280 } else {
281 // Redirect stdout/stderr to the logger process.
282 // Close the unused read end.
283 close(pipefd[0]);
284
285 setbuf(stdout, nullptr);
286 setbuf(stderr, nullptr);
287
288 if (dup2(pipefd[1], STDOUT_FILENO) == -1) {
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -0700289 PLOG(ERROR) << "dup2 stdout failed";
Tao Bao04ca4262015-09-10 15:32:24 -0700290 }
291 if (dup2(pipefd[1], STDERR_FILENO) == -1) {
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -0700292 PLOG(ERROR) << "dup2 stderr failed";
Tao Bao04ca4262015-09-10 15:32:24 -0700293 }
294
295 close(pipefd[1]);
296 }
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800297}
298
299// command line args come from, in decreasing precedence:
300// - the actual command line
301// - the bootloader control block (one per line, after "recovery")
302// - the contents of COMMAND_FILE (one per line)
303static void
304get_args(int *argc, char ***argv) {
Yabin Cui8b309f62016-06-24 18:22:02 -0700305 bootloader_message boot = {};
306 std::string err;
307 if (!read_bootloader_message(&boot, &err)) {
308 LOG(ERROR) << err;
309 // If fails, leave a zeroed bootloader_message.
310 memset(&boot, 0, sizeof(boot));
311 }
Doug Zongkerc87bab12013-11-25 13:53:25 -0800312 stage = strndup(boot.stage, sizeof(boot.stage));
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800313
Tianjie Xu7aa88742016-09-28 11:42:17 -0700314 if (boot.command[0] != 0) {
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -0700315 std::string boot_command = std::string(boot.command, sizeof(boot.command));
316 LOG(INFO) << "Boot command: " << boot_command;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800317 }
318
Tianjie Xu7aa88742016-09-28 11:42:17 -0700319 if (boot.status[0] != 0) {
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -0700320 std::string boot_status = std::string(boot.status, sizeof(boot.status));
321 LOG(INFO) << "Boot status: " << boot_status;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800322 }
323
324 // --- if arguments weren't supplied, look in the bootloader control block
325 if (*argc <= 1) {
326 boot.recovery[sizeof(boot.recovery) - 1] = '\0'; // Ensure termination
327 const char *arg = strtok(boot.recovery, "\n");
328 if (arg != NULL && !strcmp(arg, "recovery")) {
329 *argv = (char **) malloc(sizeof(char *) * MAX_ARGS);
330 (*argv)[0] = strdup(arg);
331 for (*argc = 1; *argc < MAX_ARGS; ++*argc) {
332 if ((arg = strtok(NULL, "\n")) == NULL) break;
333 (*argv)[*argc] = strdup(arg);
334 }
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -0700335 LOG(INFO) << "Got arguments from boot message";
Tianjie Xu7aa88742016-09-28 11:42:17 -0700336 } else if (boot.recovery[0] != 0) {
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -0700337 std::string boot_recovery = std::string(boot.recovery, 20);
338 LOG(ERROR) << "Bad boot message\n" << "\"" <<boot_recovery << "\"";
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800339 }
340 }
341
Tao Bao26112e52016-02-25 12:29:40 -0800342 // --- if that doesn't work, try the command file (if we have /cache).
343 if (*argc <= 1 && has_cache) {
Doug Zongkerd4208f92010-09-20 12:16:13 -0700344 FILE *fp = fopen_path(COMMAND_FILE, "r");
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800345 if (fp != NULL) {
Jin Feng93ffa752013-06-04 17:46:24 +0800346 char *token;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800347 char *argv0 = (*argv)[0];
348 *argv = (char **) malloc(sizeof(char *) * MAX_ARGS);
349 (*argv)[0] = argv0; // use the same program name
350
351 char buf[MAX_ARG_LENGTH];
352 for (*argc = 1; *argc < MAX_ARGS; ++*argc) {
353 if (!fgets(buf, sizeof(buf), fp)) break;
Jin Feng93ffa752013-06-04 17:46:24 +0800354 token = strtok(buf, "\r\n");
355 if (token != NULL) {
356 (*argv)[*argc] = strdup(token); // Strip newline.
357 } else {
358 --*argc;
359 }
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800360 }
361
362 check_and_fclose(fp, COMMAND_FILE);
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -0700363 LOG(INFO) << "Got arguments from " << COMMAND_FILE;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800364 }
365 }
366
367 // --> write the arguments we have back into the bootloader control block
368 // always boot into recovery after this (until finish_recovery() is called)
Tianjie Xubd56f152016-09-28 16:32:10 -0700369 std::vector<std::string> options;
370 for (int i = 1; i < *argc; ++i) {
371 options.push_back((*argv)[i]);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800372 }
Tianjie Xubd56f152016-09-28 16:32:10 -0700373 if (!write_bootloader_message(options, &err)) {
Yabin Cui8b309f62016-06-24 18:22:02 -0700374 LOG(ERROR) << err;
375 }
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800376}
377
Doug Zongker34c98df2009-08-18 12:05:45 -0700378static void
Oscar Montemayor05231562009-11-30 08:40:57 -0800379set_sdcard_update_bootloader_message() {
Tianjie Xubd56f152016-09-28 16:32:10 -0700380 std::vector<std::string> options;
Yabin Cui8b309f62016-06-24 18:22:02 -0700381 std::string err;
Tianjie Xubd56f152016-09-28 16:32:10 -0700382 if (!write_bootloader_message(options, &err)) {
Yabin Cui8b309f62016-06-24 18:22:02 -0700383 LOG(ERROR) << err;
384 }
Doug Zongker34c98df2009-08-18 12:05:45 -0700385}
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800386
Tao Baobef39712015-05-04 18:50:27 -0700387// Read from kernel log into buffer and write out to file.
388static void save_kernel_log(const char* destination) {
389 int klog_buf_len = klogctl(KLOG_SIZE_BUFFER, 0, 0);
Patrick Tjincd055ee2014-12-09 11:26:40 -0800390 if (klog_buf_len <= 0) {
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -0700391 PLOG(ERROR) << "Error getting klog size";
Patrick Tjincd055ee2014-12-09 11:26:40 -0800392 return;
393 }
394
Tao Baobef39712015-05-04 18:50:27 -0700395 std::string buffer(klog_buf_len, 0);
396 int n = klogctl(KLOG_READ_ALL, &buffer[0], klog_buf_len);
397 if (n == -1) {
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -0700398 PLOG(ERROR) << "Error in reading klog";
Patrick Tjincd055ee2014-12-09 11:26:40 -0800399 return;
400 }
Tao Baobef39712015-05-04 18:50:27 -0700401 buffer.resize(n);
402 android::base::WriteStringToFile(buffer, destination);
Patrick Tjincd055ee2014-12-09 11:26:40 -0800403}
404
Mark Salyzyna4f701a2016-03-09 14:58:16 -0800405// write content to the current pmsg session.
406static ssize_t __pmsg_write(const char *filename, const char *buf, size_t len) {
407 return __android_log_pmsg_file_write(LOG_ID_SYSTEM, ANDROID_LOG_INFO,
408 filename, buf, len);
409}
410
411static void copy_log_file_to_pmsg(const char* source, const char* destination) {
412 std::string content;
413 android::base::ReadFileToString(source, &content);
414 __pmsg_write(destination, content.c_str(), content.length());
415}
416
Tao Baof0124322015-04-11 02:04:11 +0000417// How much of the temp log we have copied to the copy in cache.
Chih-Hung Hsieh54a27472016-04-18 11:30:55 -0700418static off_t tmplog_offset = 0;
Tao Baof0124322015-04-11 02:04:11 +0000419
Tao Baobef39712015-05-04 18:50:27 -0700420static void copy_log_file(const char* source, const char* destination, bool append) {
421 FILE* dest_fp = fopen_path(destination, append ? "a" : "w");
422 if (dest_fp == nullptr) {
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -0700423 PLOG(ERROR) << "Can't open " << destination;
Doug Zongker2c3539e2010-09-29 13:21:30 -0700424 } else {
Tao Baobef39712015-05-04 18:50:27 -0700425 FILE* source_fp = fopen(source, "r");
426 if (source_fp != nullptr) {
Tao Baof0124322015-04-11 02:04:11 +0000427 if (append) {
Chih-Hung Hsieh54a27472016-04-18 11:30:55 -0700428 fseeko(source_fp, tmplog_offset, SEEK_SET); // Since last write
Doug Zongker2c3539e2010-09-29 13:21:30 -0700429 }
430 char buf[4096];
Tao Baobef39712015-05-04 18:50:27 -0700431 size_t bytes;
432 while ((bytes = fread(buf, 1, sizeof(buf), source_fp)) != 0) {
433 fwrite(buf, 1, bytes, dest_fp);
Doug Zongker2c3539e2010-09-29 13:21:30 -0700434 }
Tao Baobef39712015-05-04 18:50:27 -0700435 if (append) {
Chih-Hung Hsieh54a27472016-04-18 11:30:55 -0700436 tmplog_offset = ftello(source_fp);
Tao Baobef39712015-05-04 18:50:27 -0700437 }
438 check_and_fclose(source_fp, source);
Doug Zongker2c3539e2010-09-29 13:21:30 -0700439 }
Tao Baobef39712015-05-04 18:50:27 -0700440 check_and_fclose(dest_fp, destination);
Doug Zongker2c3539e2010-09-29 13:21:30 -0700441 }
442}
443
Tao Baobef39712015-05-04 18:50:27 -0700444// Rename last_log -> last_log.1 -> last_log.2 -> ... -> last_log.$max.
445// Similarly rename last_kmsg -> last_kmsg.1 -> ... -> last_kmsg.$max.
446// Overwrite any existing last_log.$max and last_kmsg.$max.
447static void rotate_logs(int max) {
Tao Bao682c34b2015-04-07 17:16:35 -0700448 // Logs should only be rotated once.
449 static bool rotated = false;
450 if (rotated) {
451 return;
452 }
453 rotated = true;
454 ensure_path_mounted(LAST_LOG_FILE);
Tao Baobef39712015-05-04 18:50:27 -0700455 ensure_path_mounted(LAST_KMSG_FILE);
Tao Bao682c34b2015-04-07 17:16:35 -0700456
Tao Bao682c34b2015-04-07 17:16:35 -0700457 for (int i = max-1; i >= 0; --i) {
Tao Bao80e46e02015-06-03 10:49:29 -0700458 std::string old_log = android::base::StringPrintf("%s", LAST_LOG_FILE);
459 if (i > 0) {
460 old_log += "." + std::to_string(i);
461 }
Tao Baobef39712015-05-04 18:50:27 -0700462 std::string new_log = android::base::StringPrintf("%s.%d", LAST_LOG_FILE, i+1);
463 // Ignore errors if old_log doesn't exist.
464 rename(old_log.c_str(), new_log.c_str());
465
Tao Bao80e46e02015-06-03 10:49:29 -0700466 std::string old_kmsg = android::base::StringPrintf("%s", LAST_KMSG_FILE);
467 if (i > 0) {
468 old_kmsg += "." + std::to_string(i);
469 }
Tao Baobef39712015-05-04 18:50:27 -0700470 std::string new_kmsg = android::base::StringPrintf("%s.%d", LAST_KMSG_FILE, i+1);
471 rename(old_kmsg.c_str(), new_kmsg.c_str());
Doug Zongkerda1ebae2013-05-16 11:23:48 -0700472 }
473}
Doug Zongker2c3539e2010-09-29 13:21:30 -0700474
Tao Bao682c34b2015-04-07 17:16:35 -0700475static void copy_logs() {
476 // We only rotate and record the log of the current session if there are
477 // actual attempts to modify the flash, such as wipes, installs from BCB
478 // or menu selections. This is to avoid unnecessary rotation (and
479 // possible deletion) of log files, if it does not do anything loggable.
480 if (!modified_flash) {
481 return;
482 }
483
Mark Salyzyna4f701a2016-03-09 14:58:16 -0800484 // Always write to pmsg, this allows the OTA logs to be caught in logcat -L
485 copy_log_file_to_pmsg(TEMPORARY_LOG_FILE, LAST_LOG_FILE);
486 copy_log_file_to_pmsg(TEMPORARY_INSTALL_FILE, LAST_INSTALL_FILE);
487
488 // We can do nothing for now if there's no /cache partition.
489 if (!has_cache) {
490 return;
491 }
492
Tao Baobef39712015-05-04 18:50:27 -0700493 rotate_logs(KEEP_LOG_COUNT);
Tao Bao682c34b2015-04-07 17:16:35 -0700494
Doug Zongkerf24fd7e2013-07-02 11:43:25 -0700495 // Copy logs to cache so the system can find out what happened.
Tao Baof0124322015-04-11 02:04:11 +0000496 copy_log_file(TEMPORARY_LOG_FILE, LOG_FILE, true);
497 copy_log_file(TEMPORARY_LOG_FILE, LAST_LOG_FILE, false);
498 copy_log_file(TEMPORARY_INSTALL_FILE, LAST_INSTALL_FILE, false);
499 save_kernel_log(LAST_KMSG_FILE);
Doug Zongkerf24fd7e2013-07-02 11:43:25 -0700500 chmod(LOG_FILE, 0600);
501 chown(LOG_FILE, 1000, 1000); // system user
Tao Baof0124322015-04-11 02:04:11 +0000502 chmod(LAST_KMSG_FILE, 0600);
503 chown(LAST_KMSG_FILE, 1000, 1000); // system user
Doug Zongkerf24fd7e2013-07-02 11:43:25 -0700504 chmod(LAST_LOG_FILE, 0640);
505 chmod(LAST_INSTALL_FILE, 0644);
506 sync();
507}
508
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800509// clear the recovery command and prepare to boot a (hopefully working) system,
Tianjie Xuc14d95d2016-03-24 11:50:34 -0700510// copy our log file to cache as well (for the system to read). This function is
511// idempotent: call it as many times as you like.
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800512static void
Tianjie Xuc14d95d2016-03-24 11:50:34 -0700513finish_recovery() {
Doug Zongker4f33e552012-08-23 13:16:12 -0700514 // Save the locale to cache, so if recovery is next started up
515 // without a --locale argument (eg, directly from the bootloader)
516 // it will use the last-known locale.
Mark Salyzyna4f701a2016-03-09 14:58:16 -0800517 if (locale != NULL) {
518 size_t len = strlen(locale);
519 __pmsg_write(LOCALE_FILE, locale, len);
520 if (has_cache) {
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -0700521 LOG(INFO) << "Saving locale \"" << locale << "\"";
Mark Salyzyna4f701a2016-03-09 14:58:16 -0800522 FILE* fp = fopen_path(LOCALE_FILE, "w");
Johan Harvyl85691422016-08-05 15:42:59 +0200523 if (fp != NULL) {
524 fwrite(locale, 1, len, fp);
525 fflush(fp);
526 fsync(fileno(fp));
527 check_and_fclose(fp, LOCALE_FILE);
528 }
Mark Salyzyna4f701a2016-03-09 14:58:16 -0800529 }
Doug Zongker4f33e552012-08-23 13:16:12 -0700530 }
531
Doug Zongkerf24fd7e2013-07-02 11:43:25 -0700532 copy_logs();
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800533
Doug Zongkere5d5ac72012-04-12 11:01:22 -0700534 // Reset to normal system boot so recovery won't cycle indefinitely.
Yabin Cui8b309f62016-06-24 18:22:02 -0700535 std::string err;
Tianjie Xubd56f152016-09-28 16:32:10 -0700536 if (!clear_bootloader_message(&err)) {
Yabin Cui8b309f62016-06-24 18:22:02 -0700537 LOG(ERROR) << err;
538 }
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800539
540 // Remove the command file, so recovery won't repeat indefinitely.
Tao Bao26112e52016-02-25 12:29:40 -0800541 if (has_cache) {
542 if (ensure_path_mounted(COMMAND_FILE) != 0 || (unlink(COMMAND_FILE) && errno != ENOENT)) {
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -0700543 LOG(WARNING) << "Can't unlink " << COMMAND_FILE;
Tao Bao26112e52016-02-25 12:29:40 -0800544 }
545 ensure_path_unmounted(CACHE_ROOT);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800546 }
547
548 sync(); // For good measure.
549}
550
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700551typedef struct _saved_log_file {
552 char* name;
553 struct stat st;
554 unsigned char* data;
555 struct _saved_log_file* next;
556} saved_log_file;
557
Elliott Hughes945548e2015-06-05 17:59:56 -0700558static bool erase_volume(const char* volume) {
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700559 bool is_cache = (strcmp(volume, CACHE_ROOT) == 0);
Paul Lawrenced0db3372015-11-05 13:38:40 -0800560 bool is_data = (strcmp(volume, DATA_ROOT) == 0);
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700561
Doug Zongker02ec6b82012-08-22 17:26:40 -0700562 ui->SetBackground(RecoveryUI::ERASING);
Doug Zongker211aebc2011-10-28 15:13:10 -0700563 ui->SetProgressType(RecoveryUI::INDETERMINATE);
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700564
565 saved_log_file* head = NULL;
566
567 if (is_cache) {
Tao Baobef39712015-05-04 18:50:27 -0700568 // If we're reformatting /cache, we load any past logs
569 // (i.e. "/cache/recovery/last_*") and the current log
570 // ("/cache/recovery/log") into memory, so we can restore them after
571 // the reformat.
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700572
573 ensure_path_mounted(volume);
574
575 DIR* d;
576 struct dirent* de;
577 d = opendir(CACHE_LOG_DIR);
578 if (d) {
579 char path[PATH_MAX];
580 strcpy(path, CACHE_LOG_DIR);
581 strcat(path, "/");
582 int path_len = strlen(path);
583 while ((de = readdir(d)) != NULL) {
Tao Baobef39712015-05-04 18:50:27 -0700584 if (strncmp(de->d_name, "last_", 5) == 0 || strcmp(de->d_name, "log") == 0) {
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700585 saved_log_file* p = (saved_log_file*) malloc(sizeof(saved_log_file));
586 strcpy(path+path_len, de->d_name);
587 p->name = strdup(path);
588 if (stat(path, &(p->st)) == 0) {
589 // truncate files to 512kb
590 if (p->st.st_size > (1 << 19)) {
591 p->st.st_size = 1 << 19;
592 }
593 p->data = (unsigned char*) malloc(p->st.st_size);
594 FILE* f = fopen(path, "rb");
595 fread(p->data, 1, p->st.st_size, f);
596 fclose(f);
597 p->next = head;
598 head = p;
599 } else {
600 free(p);
601 }
602 }
603 }
604 closedir(d);
605 } else {
606 if (errno != ENOENT) {
607 printf("opendir failed: %s\n", strerror(errno));
608 }
609 }
610 }
611
Doug Zongker211aebc2011-10-28 15:13:10 -0700612 ui->Print("Formatting %s...\n", volume);
Doug Zongker2c3539e2010-09-29 13:21:30 -0700613
Doug Zongkerd0181b82011-10-19 10:51:12 -0700614 ensure_path_unmounted(volume);
Paul Lawrenced0db3372015-11-05 13:38:40 -0800615
616 int result;
617
618 if (is_data && reason && strcmp(reason, "convert_fbe") == 0) {
619 // Create convert_fbe breadcrumb file to signal to init
620 // to convert to file based encryption, not full disk encryption
Paul Lawrence661f8a62016-02-25 12:42:19 -0800621 if (mkdir(CONVERT_FBE_DIR, 0700) != 0) {
622 ui->Print("Failed to make convert_fbe dir %s\n", strerror(errno));
623 return true;
624 }
Paul Lawrenced0db3372015-11-05 13:38:40 -0800625 FILE* f = fopen(CONVERT_FBE_FILE, "wb");
626 if (!f) {
Paul Lawrence661f8a62016-02-25 12:42:19 -0800627 ui->Print("Failed to convert to file encryption %s\n", strerror(errno));
Paul Lawrenced0db3372015-11-05 13:38:40 -0800628 return true;
629 }
630 fclose(f);
631 result = format_volume(volume, CONVERT_FBE_DIR);
632 remove(CONVERT_FBE_FILE);
633 rmdir(CONVERT_FBE_DIR);
634 } else {
635 result = format_volume(volume);
636 }
Doug Zongkerd0181b82011-10-19 10:51:12 -0700637
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700638 if (is_cache) {
639 while (head) {
640 FILE* f = fopen_path(head->name, "wb");
641 if (f) {
642 fwrite(head->data, 1, head->st.st_size, f);
643 fclose(f);
644 chmod(head->name, head->st.st_mode);
645 chown(head->name, head->st.st_uid, head->st.st_gid);
646 }
647 free(head->name);
648 free(head->data);
649 saved_log_file* temp = head->next;
650 free(head);
651 head = temp;
652 }
653
Tao Baof0124322015-04-11 02:04:11 +0000654 // Any part of the log we'd copied to cache is now gone.
655 // Reset the pointer so we copy from the beginning of the temp
656 // log.
657 tmplog_offset = 0;
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700658 copy_logs();
Doug Zongker2c3539e2010-09-29 13:21:30 -0700659 }
660
Elliott Hughes945548e2015-06-05 17:59:56 -0700661 return (result == 0);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800662}
663
Doug Zongkerf93d8162009-09-22 15:16:02 -0700664static int
Doug Zongker28ce47c2011-10-28 10:33:05 -0700665get_menu_selection(const char* const * headers, const char* const * items,
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700666 int menu_only, int initial_selection, Device* device) {
Doug Zongkerf93d8162009-09-22 15:16:02 -0700667 // throw away keys pressed previously, so user doesn't
668 // accidentally trigger menu items.
Doug Zongker211aebc2011-10-28 15:13:10 -0700669 ui->FlushKeys();
Doug Zongkerf93d8162009-09-22 15:16:02 -0700670
Doug Zongker211aebc2011-10-28 15:13:10 -0700671 ui->StartMenu(headers, items, initial_selection);
Doug Zongker8674a722010-09-15 11:08:23 -0700672 int selected = initial_selection;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800673 int chosen_item = -1;
674
Doug Zongkerf93d8162009-09-22 15:16:02 -0700675 while (chosen_item < 0) {
Doug Zongker211aebc2011-10-28 15:13:10 -0700676 int key = ui->WaitKey();
677 int visible = ui->IsTextVisible();
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800678
Doug Zongker5cae4452011-01-25 13:15:30 -0800679 if (key == -1) { // ui_wait_key() timed out
Doug Zongker211aebc2011-10-28 15:13:10 -0700680 if (ui->WasTextEverVisible()) {
Doug Zongker5cae4452011-01-25 13:15:30 -0800681 continue;
682 } else {
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -0700683 LOG(INFO) << "timed out waiting for key input; rebooting.";
Doug Zongker211aebc2011-10-28 15:13:10 -0700684 ui->EndMenu();
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700685 return 0; // XXX fixme
Doug Zongker5cae4452011-01-25 13:15:30 -0800686 }
687 }
688
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700689 int action = device->HandleMenuKey(key, visible);
Doug Zongkerddd6a282009-06-09 12:22:33 -0700690
691 if (action < 0) {
692 switch (action) {
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700693 case Device::kHighlightUp:
Elliott Hughes642aaa72015-04-10 12:47:46 -0700694 selected = ui->SelectMenu(--selected);
Doug Zongkerddd6a282009-06-09 12:22:33 -0700695 break;
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700696 case Device::kHighlightDown:
Elliott Hughes642aaa72015-04-10 12:47:46 -0700697 selected = ui->SelectMenu(++selected);
Doug Zongkerddd6a282009-06-09 12:22:33 -0700698 break;
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700699 case Device::kInvokeItem:
Doug Zongkerddd6a282009-06-09 12:22:33 -0700700 chosen_item = selected;
701 break;
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700702 case Device::kNoAction:
Doug Zongkerddd6a282009-06-09 12:22:33 -0700703 break;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800704 }
Doug Zongkerf93d8162009-09-22 15:16:02 -0700705 } else if (!menu_only) {
Doug Zongkerddd6a282009-06-09 12:22:33 -0700706 chosen_item = action;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800707 }
Doug Zongkerf93d8162009-09-22 15:16:02 -0700708 }
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800709
Doug Zongker211aebc2011-10-28 15:13:10 -0700710 ui->EndMenu();
Doug Zongkerf93d8162009-09-22 15:16:02 -0700711 return chosen_item;
712}
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800713
Doug Zongker8674a722010-09-15 11:08:23 -0700714static int compare_string(const void* a, const void* b) {
715 return strcmp(*(const char**)a, *(const char**)b);
716}
717
Doug Zongker93950222014-07-08 14:10:23 -0700718// Returns a malloc'd path, or NULL.
Elliott Hughes30694c92015-03-25 15:16:51 -0700719static char* browse_directory(const char* path, Device* device) {
Michael Ward9d2629c2011-06-23 22:14:24 -0700720 ensure_path_mounted(path);
Doug Zongkerc18eeb82010-09-21 16:49:26 -0700721
Elliott Hughes30694c92015-03-25 15:16:51 -0700722 DIR* d = opendir(path);
Doug Zongker8674a722010-09-15 11:08:23 -0700723 if (d == NULL) {
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -0700724 PLOG(ERROR) << "error opening " << path;
Doug Zongker93950222014-07-08 14:10:23 -0700725 return NULL;
Doug Zongker8674a722010-09-15 11:08:23 -0700726 }
727
Doug Zongker8674a722010-09-15 11:08:23 -0700728 int d_size = 0;
729 int d_alloc = 10;
Doug Zongker28ce47c2011-10-28 10:33:05 -0700730 char** dirs = (char**)malloc(d_alloc * sizeof(char*));
Doug Zongker8674a722010-09-15 11:08:23 -0700731 int z_size = 1;
732 int z_alloc = 10;
Doug Zongker28ce47c2011-10-28 10:33:05 -0700733 char** zips = (char**)malloc(z_alloc * sizeof(char*));
Doug Zongker8674a722010-09-15 11:08:23 -0700734 zips[0] = strdup("../");
735
Elliott Hughes30694c92015-03-25 15:16:51 -0700736 struct dirent* de;
Doug Zongker8674a722010-09-15 11:08:23 -0700737 while ((de = readdir(d)) != NULL) {
738 int name_len = strlen(de->d_name);
739
740 if (de->d_type == DT_DIR) {
741 // skip "." and ".." entries
742 if (name_len == 1 && de->d_name[0] == '.') continue;
743 if (name_len == 2 && de->d_name[0] == '.' &&
744 de->d_name[1] == '.') continue;
745
746 if (d_size >= d_alloc) {
747 d_alloc *= 2;
Doug Zongker28ce47c2011-10-28 10:33:05 -0700748 dirs = (char**)realloc(dirs, d_alloc * sizeof(char*));
Doug Zongker8674a722010-09-15 11:08:23 -0700749 }
Doug Zongker28ce47c2011-10-28 10:33:05 -0700750 dirs[d_size] = (char*)malloc(name_len + 2);
Doug Zongker8674a722010-09-15 11:08:23 -0700751 strcpy(dirs[d_size], de->d_name);
752 dirs[d_size][name_len] = '/';
753 dirs[d_size][name_len+1] = '\0';
754 ++d_size;
755 } else if (de->d_type == DT_REG &&
756 name_len >= 4 &&
757 strncasecmp(de->d_name + (name_len-4), ".zip", 4) == 0) {
758 if (z_size >= z_alloc) {
759 z_alloc *= 2;
Doug Zongker28ce47c2011-10-28 10:33:05 -0700760 zips = (char**)realloc(zips, z_alloc * sizeof(char*));
Doug Zongker8674a722010-09-15 11:08:23 -0700761 }
762 zips[z_size++] = strdup(de->d_name);
763 }
764 }
765 closedir(d);
766
767 qsort(dirs, d_size, sizeof(char*), compare_string);
768 qsort(zips, z_size, sizeof(char*), compare_string);
769
770 // append dirs to the zips list
771 if (d_size + z_size + 1 > z_alloc) {
772 z_alloc = d_size + z_size + 1;
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 memcpy(zips + z_size, dirs, d_size * sizeof(char*));
776 free(dirs);
777 z_size += d_size;
778 zips[z_size] = NULL;
779
Elliott Hughes8fd86d72015-04-13 14:36:02 -0700780 const char* headers[] = { "Choose a package to install:", path, NULL };
Elliott Hughes30694c92015-03-25 15:16:51 -0700781
Doug Zongker93950222014-07-08 14:10:23 -0700782 char* result;
Doug Zongker8674a722010-09-15 11:08:23 -0700783 int chosen_item = 0;
Doug Zongker93950222014-07-08 14:10:23 -0700784 while (true) {
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700785 chosen_item = get_menu_selection(headers, zips, 1, chosen_item, device);
Doug Zongker8674a722010-09-15 11:08:23 -0700786
787 char* item = zips[chosen_item];
788 int item_len = strlen(item);
789 if (chosen_item == 0) { // item 0 is always "../"
Michael Ward9d2629c2011-06-23 22:14:24 -0700790 // go up but continue browsing (if the caller is update_directory)
Doug Zongker93950222014-07-08 14:10:23 -0700791 result = NULL;
Doug Zongker8674a722010-09-15 11:08:23 -0700792 break;
793 }
Doug Zongker93950222014-07-08 14:10:23 -0700794
795 char new_path[PATH_MAX];
796 strlcpy(new_path, path, PATH_MAX);
797 strlcat(new_path, "/", PATH_MAX);
798 strlcat(new_path, item, PATH_MAX);
799
800 if (item[item_len-1] == '/') {
801 // recurse down into a subdirectory
802 new_path[strlen(new_path)-1] = '\0'; // truncate the trailing '/'
803 result = browse_directory(new_path, device);
804 if (result) break;
805 } else {
806 // selected a zip file: return the malloc'd path to the caller.
807 result = strdup(new_path);
808 break;
809 }
810 }
Doug Zongker8674a722010-09-15 11:08:23 -0700811
Elliott Hughes30694c92015-03-25 15:16:51 -0700812 for (int i = 0; i < z_size; ++i) free(zips[i]);
Doug Zongker8674a722010-09-15 11:08:23 -0700813 free(zips);
Doug Zongker8674a722010-09-15 11:08:23 -0700814
815 return result;
816}
817
Elliott Hughes30694c92015-03-25 15:16:51 -0700818static bool yes_no(Device* device, const char* question1, const char* question2) {
Elliott Hughes8fd86d72015-04-13 14:36:02 -0700819 const char* headers[] = { question1, question2, NULL };
Elliott Hughes30694c92015-03-25 15:16:51 -0700820 const char* items[] = { " No", " Yes", NULL };
Doug Zongkerddd6a282009-06-09 12:22:33 -0700821
Elliott Hughes30694c92015-03-25 15:16:51 -0700822 int chosen_item = get_menu_selection(headers, items, 1, 0, device);
823 return (chosen_item == 1);
824}
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800825
Tao Baoe39a9bc2015-03-31 12:19:05 -0700826// Return true on success.
827static bool wipe_data(int should_confirm, Device* device) {
828 if (should_confirm && !yes_no(device, "Wipe all user data?", " THIS CAN NOT BE UNDONE!")) {
829 return false;
Doug Zongkerf93d8162009-09-22 15:16:02 -0700830 }
Doug Zongker1066d2c2009-04-01 13:57:40 -0700831
Tao Bao682c34b2015-04-07 17:16:35 -0700832 modified_flash = true;
833
Doug Zongker211aebc2011-10-28 15:13:10 -0700834 ui->Print("\n-- Wiping data...\n");
Elliott Hughes945548e2015-06-05 17:59:56 -0700835 bool success =
836 device->PreWipeData() &&
837 erase_volume("/data") &&
Tao Bao26112e52016-02-25 12:29:40 -0800838 (has_cache ? erase_volume("/cache") : true) &&
Elliott Hughes945548e2015-06-05 17:59:56 -0700839 device->PostWipeData();
840 ui->Print("Data wipe %s.\n", success ? "complete" : "failed");
841 return success;
Doug Zongkerf93d8162009-09-22 15:16:02 -0700842}
843
Tao Baoe39a9bc2015-03-31 12:19:05 -0700844// Return true on success.
845static bool wipe_cache(bool should_confirm, Device* device) {
Tao Bao26112e52016-02-25 12:29:40 -0800846 if (!has_cache) {
847 ui->Print("No /cache partition found.\n");
848 return false;
849 }
850
Elliott Hughes30694c92015-03-25 15:16:51 -0700851 if (should_confirm && !yes_no(device, "Wipe cache?", " THIS CAN NOT BE UNDONE!")) {
Tao Baoe39a9bc2015-03-31 12:19:05 -0700852 return false;
Elliott Hughes30694c92015-03-25 15:16:51 -0700853 }
854
Tao Bao682c34b2015-04-07 17:16:35 -0700855 modified_flash = true;
856
Elliott Hughes30694c92015-03-25 15:16:51 -0700857 ui->Print("\n-- Wiping cache...\n");
Elliott Hughes945548e2015-06-05 17:59:56 -0700858 bool success = erase_volume("/cache");
859 ui->Print("Cache wipe %s.\n", success ? "complete" : "failed");
860 return success;
Elliott Hughes30694c92015-03-25 15:16:51 -0700861}
862
Tao Bao862a4c12016-06-02 11:16:50 -0700863// Secure-wipe a given partition. It uses BLKSECDISCARD, if supported.
864// Otherwise, it goes with BLKDISCARD (if device supports BLKDISCARDZEROES) or
865// BLKZEROOUT.
866static bool secure_wipe_partition(const std::string& partition) {
867 android::base::unique_fd fd(TEMP_FAILURE_RETRY(open(partition.c_str(), O_WRONLY)));
868 if (fd == -1) {
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -0700869 PLOG(ERROR) << "failed to open \"" << partition << "\"";
Tao Bao862a4c12016-06-02 11:16:50 -0700870 return false;
871 }
872
873 uint64_t range[2] = {0, 0};
874 if (ioctl(fd, BLKGETSIZE64, &range[1]) == -1 || range[1] == 0) {
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -0700875 PLOG(ERROR) << "failed to get partition size";
Tao Bao862a4c12016-06-02 11:16:50 -0700876 return false;
877 }
878 printf("Secure-wiping \"%s\" from %" PRIu64 " to %" PRIu64 ".\n",
879 partition.c_str(), range[0], range[1]);
880
881 printf("Trying BLKSECDISCARD...\t");
882 if (ioctl(fd, BLKSECDISCARD, &range) == -1) {
883 printf("failed: %s\n", strerror(errno));
884
885 // Use BLKDISCARD if it zeroes out blocks, otherwise use BLKZEROOUT.
886 unsigned int zeroes;
887 if (ioctl(fd, BLKDISCARDZEROES, &zeroes) == 0 && zeroes != 0) {
888 printf("Trying BLKDISCARD...\t");
889 if (ioctl(fd, BLKDISCARD, &range) == -1) {
890 printf("failed: %s\n", strerror(errno));
891 return false;
892 }
893 } else {
894 printf("Trying BLKZEROOUT...\t");
895 if (ioctl(fd, BLKZEROOUT, &range) == -1) {
896 printf("failed: %s\n", strerror(errno));
897 return false;
898 }
899 }
900 }
901
902 printf("done\n");
903 return true;
904}
905
Yabin Cuifd99a312016-06-09 14:09:39 -0700906// Check if the wipe package matches expectation:
907// 1. verify the package.
908// 2. check metadata (ota-type, pre-device and serial number if having one).
909static bool check_wipe_package(size_t wipe_package_size) {
910 if (wipe_package_size == 0) {
911 LOG(ERROR) << "wipe_package_size is zero";
912 return false;
913 }
914 std::string wipe_package;
915 std::string err_str;
916 if (!read_wipe_package(&wipe_package, wipe_package_size, &err_str)) {
917 PLOG(ERROR) << "Failed to read wipe package";
918 return false;
919 }
920 if (!verify_package(reinterpret_cast<const unsigned char*>(wipe_package.data()),
921 wipe_package.size())) {
922 LOG(ERROR) << "Failed to verify package";
923 return false;
924 }
925
926 // Extract metadata
927 ZipArchiveHandle zip;
928 int err = OpenArchiveFromMemory(reinterpret_cast<void*>(&wipe_package[0]),
929 wipe_package.size(), "wipe_package", &zip);
930 if (err != 0) {
931 LOG(ERROR) << "Can't open wipe package : " << ErrorCodeString(err);
932 return false;
933 }
934 std::string metadata;
935 if (!read_metadata_from_package(&zip, &metadata)) {
936 CloseArchive(zip);
937 return false;
938 }
939 CloseArchive(zip);
940
941 // Check metadata
942 std::vector<std::string> lines = android::base::Split(metadata, "\n");
943 bool ota_type_matched = false;
944 bool device_type_matched = false;
945 bool has_serial_number = false;
946 bool serial_number_matched = false;
947 for (const auto& line : lines) {
948 if (line == "ota-type=BRICK") {
949 ota_type_matched = true;
950 } else if (android::base::StartsWith(line, "pre-device=")) {
951 std::string device_type = line.substr(strlen("pre-device="));
952 char real_device_type[PROPERTY_VALUE_MAX];
953 property_get("ro.build.product", real_device_type, "");
954 device_type_matched = (device_type == real_device_type);
955 } else if (android::base::StartsWith(line, "serialno=")) {
956 std::string serial_no = line.substr(strlen("serialno="));
957 char real_serial_no[PROPERTY_VALUE_MAX];
958 property_get("ro.serialno", real_serial_no, "");
959 has_serial_number = true;
960 serial_number_matched = (serial_no == real_serial_no);
961 }
962 }
963 return ota_type_matched && device_type_matched && (!has_serial_number || serial_number_matched);
964}
965
Yabin Cui8b309f62016-06-24 18:22:02 -0700966// Wipe the current A/B device, with a secure wipe of all the partitions in
967// RECOVERY_WIPE.
Yabin Cuifd99a312016-06-09 14:09:39 -0700968static bool wipe_ab_device(size_t wipe_package_size) {
Tao Bao862a4c12016-06-02 11:16:50 -0700969 ui->SetBackground(RecoveryUI::ERASING);
970 ui->SetProgressType(RecoveryUI::INDETERMINATE);
971
Yabin Cuifd99a312016-06-09 14:09:39 -0700972 if (!check_wipe_package(wipe_package_size)) {
973 LOG(ERROR) << "Failed to verify wipe package";
974 return false;
975 }
Tao Bao862a4c12016-06-02 11:16:50 -0700976 std::string partition_list;
Yabin Cui8b309f62016-06-24 18:22:02 -0700977 if (!android::base::ReadFileToString(RECOVERY_WIPE, &partition_list)) {
978 LOG(ERROR) << "failed to read \"" << RECOVERY_WIPE << "\"";
Tao Bao862a4c12016-06-02 11:16:50 -0700979 return false;
980 }
981
982 std::vector<std::string> lines = android::base::Split(partition_list, "\n");
983 for (const std::string& line : lines) {
984 std::string partition = android::base::Trim(line);
985 // Ignore '#' comment or empty lines.
986 if (android::base::StartsWith(partition, "#") || partition.empty()) {
987 continue;
988 }
989
990 // Proceed anyway even if it fails to wipe some partition.
991 secure_wipe_partition(partition);
992 }
993 return true;
994}
995
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700996static void choose_recovery_file(Device* device) {
Elliott Hughesc0491632015-05-06 12:40:05 -0700997 // "Back" + KEEP_LOG_COUNT * 2 + terminating nullptr entry
998 char* entries[1 + KEEP_LOG_COUNT * 2 + 1];
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700999 memset(entries, 0, sizeof(entries));
1000
Tao Baobef39712015-05-04 18:50:27 -07001001 unsigned int n = 0;
Patrick Tjincd055ee2014-12-09 11:26:40 -08001002
Tianjie Xua54f75e2016-08-17 12:02:46 -07001003 if (has_cache) {
1004 // Add LAST_LOG_FILE + LAST_LOG_FILE.x
1005 // Add LAST_KMSG_FILE + LAST_KMSG_FILE.x
1006 for (int i = 0; i < KEEP_LOG_COUNT; i++) {
1007 char* log_file;
1008 int ret;
1009 ret = (i == 0) ? asprintf(&log_file, "%s", LAST_LOG_FILE) :
1010 asprintf(&log_file, "%s.%d", LAST_LOG_FILE, i);
1011 if (ret == -1) {
1012 // memory allocation failure - return early. Should never happen.
1013 return;
1014 }
1015 if ((ensure_path_mounted(log_file) != 0) || (access(log_file, R_OK) == -1)) {
1016 free(log_file);
1017 } else {
1018 entries[n++] = log_file;
1019 }
Tao Baobef39712015-05-04 18:50:27 -07001020
Tianjie Xua54f75e2016-08-17 12:02:46 -07001021 char* kmsg_file;
1022 ret = (i == 0) ? asprintf(&kmsg_file, "%s", LAST_KMSG_FILE) :
1023 asprintf(&kmsg_file, "%s.%d", LAST_KMSG_FILE, i);
1024 if (ret == -1) {
1025 // memory allocation failure - return early. Should never happen.
1026 return;
1027 }
1028 if ((ensure_path_mounted(kmsg_file) != 0) || (access(kmsg_file, R_OK) == -1)) {
1029 free(kmsg_file);
1030 } else {
1031 entries[n++] = kmsg_file;
1032 }
Tao Baobef39712015-05-04 18:50:27 -07001033 }
Tianjie Xua54f75e2016-08-17 12:02:46 -07001034 } else {
1035 // If cache partition is not found, view /tmp/recovery.log instead.
1036 ui->Print("No /cache partition found.\n");
1037 if (access(TEMPORARY_LOG_FILE, R_OK) == -1) {
1038 return;
1039 } else{
1040 entries[n++] = strdup(TEMPORARY_LOG_FILE);
Tao Baobef39712015-05-04 18:50:27 -07001041 }
Nick Kralevicha9ad0322014-10-22 18:38:48 -07001042 }
1043
Elliott Hughesc0491632015-05-06 12:40:05 -07001044 entries[n++] = strdup("Back");
1045
Tao Baobef39712015-05-04 18:50:27 -07001046 const char* headers[] = { "Select file to view", nullptr };
Nick Kralevicha9ad0322014-10-22 18:38:48 -07001047
Elliott Hughes8de52072015-04-08 20:06:50 -07001048 while (true) {
Elliott Hughes30694c92015-03-25 15:16:51 -07001049 int chosen_item = get_menu_selection(headers, entries, 1, 0, device);
Elliott Hughesc0491632015-05-06 12:40:05 -07001050 if (strcmp(entries[chosen_item], "Back") == 0) break;
Elliott Hughes8de52072015-04-08 20:06:50 -07001051
Elliott Hughes8de52072015-04-08 20:06:50 -07001052 ui->ShowFile(entries[chosen_item]);
Nick Kralevicha9ad0322014-10-22 18:38:48 -07001053 }
1054
Tao Baobef39712015-05-04 18:50:27 -07001055 for (size_t i = 0; i < (sizeof(entries) / sizeof(*entries)); i++) {
Nick Kralevicha9ad0322014-10-22 18:38:48 -07001056 free(entries[i]);
1057 }
1058}
1059
Elliott Hughes498cda62016-04-14 16:49:04 -07001060static void run_graphics_test(Device* device) {
1061 // Switch to graphics screen.
1062 ui->ShowText(false);
1063
1064 ui->SetProgressType(RecoveryUI::INDETERMINATE);
1065 ui->SetBackground(RecoveryUI::INSTALLING_UPDATE);
1066 sleep(1);
1067
1068 ui->SetBackground(RecoveryUI::ERROR);
1069 sleep(1);
1070
1071 ui->SetBackground(RecoveryUI::NO_COMMAND);
1072 sleep(1);
1073
1074 ui->SetBackground(RecoveryUI::ERASING);
1075 sleep(1);
1076
1077 ui->SetBackground(RecoveryUI::INSTALLING_UPDATE);
1078
1079 ui->SetProgressType(RecoveryUI::DETERMINATE);
1080 ui->ShowProgress(1.0, 10.0);
1081 float fraction = 0.0;
1082 for (size_t i = 0; i < 100; ++i) {
1083 fraction += .01;
1084 ui->SetProgress(fraction);
1085 usleep(100000);
1086 }
1087
1088 ui->ShowText(true);
1089}
1090
Tao Baocdcf28f2016-01-13 15:05:20 -08001091// How long (in seconds) we wait for the fuse-provided package file to
1092// appear, before timing out.
1093#define SDCARD_INSTALL_TIMEOUT 10
1094
Tao Bao145d8612015-03-25 15:51:15 -07001095static int apply_from_sdcard(Device* device, bool* wipe_cache) {
Tao Bao682c34b2015-04-07 17:16:35 -07001096 modified_flash = true;
1097
Christian Poetzsch4ec58a42015-02-19 10:42:39 +00001098 if (ensure_path_mounted(SDCARD_ROOT) != 0) {
1099 ui->Print("\n-- Couldn't mount %s.\n", SDCARD_ROOT);
1100 return INSTALL_ERROR;
1101 }
1102
1103 char* path = browse_directory(SDCARD_ROOT, device);
1104 if (path == NULL) {
Elliott Hughes018ed312015-04-08 16:51:36 -07001105 ui->Print("\n-- No package file selected.\n");
caozhiyuanb4effb92015-06-10 16:46:38 +08001106 ensure_path_unmounted(SDCARD_ROOT);
Christian Poetzsch4ec58a42015-02-19 10:42:39 +00001107 return INSTALL_ERROR;
1108 }
1109
1110 ui->Print("\n-- Install %s ...\n", path);
1111 set_sdcard_update_bootloader_message();
Christian Poetzsch4ec58a42015-02-19 10:42:39 +00001112
Tao Baocdcf28f2016-01-13 15:05:20 -08001113 // We used to use fuse in a thread as opposed to a process. Since accessing
1114 // through fuse involves going from kernel to userspace to kernel, it leads
1115 // to deadlock when a page fault occurs. (Bug: 26313124)
1116 pid_t child;
1117 if ((child = fork()) == 0) {
1118 bool status = start_sdcard_fuse(path);
1119
1120 _exit(status ? EXIT_SUCCESS : EXIT_FAILURE);
1121 }
1122
1123 // FUSE_SIDELOAD_HOST_PATHNAME will start to exist once the fuse in child
1124 // process is ready.
1125 int result = INSTALL_ERROR;
1126 int status;
1127 bool waited = false;
1128 for (int i = 0; i < SDCARD_INSTALL_TIMEOUT; ++i) {
1129 if (waitpid(child, &status, WNOHANG) == -1) {
1130 result = INSTALL_ERROR;
1131 waited = true;
1132 break;
1133 }
1134
1135 struct stat sb;
1136 if (stat(FUSE_SIDELOAD_HOST_PATHNAME, &sb) == -1) {
1137 if (errno == ENOENT && i < SDCARD_INSTALL_TIMEOUT-1) {
1138 sleep(1);
1139 continue;
1140 } else {
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -07001141 LOG(ERROR) << "Timed out waiting for the fuse-provided package.";
Tao Baocdcf28f2016-01-13 15:05:20 -08001142 result = INSTALL_ERROR;
1143 kill(child, SIGKILL);
1144 break;
1145 }
1146 }
1147
1148 result = install_package(FUSE_SIDELOAD_HOST_PATHNAME, wipe_cache,
Tianjie Xu16255832016-04-30 11:49:59 -07001149 TEMPORARY_INSTALL_FILE, false, 0/*retry_count*/);
Tao Baocdcf28f2016-01-13 15:05:20 -08001150 break;
1151 }
Christian Poetzsch4ec58a42015-02-19 10:42:39 +00001152
Tao Baocdcf28f2016-01-13 15:05:20 -08001153 if (!waited) {
1154 // Calling stat() on this magic filename signals the fuse
1155 // filesystem to shut down.
1156 struct stat sb;
1157 stat(FUSE_SIDELOAD_HOST_EXIT_PATHNAME, &sb);
1158
1159 waitpid(child, &status, 0);
1160 }
1161
1162 if (!WIFEXITED(status) || WEXITSTATUS(status) != 0) {
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -07001163 LOG(ERROR) << "Error exit from the fuse process: " << WEXITSTATUS(status);
Tao Baocdcf28f2016-01-13 15:05:20 -08001164 }
1165
Christian Poetzsch4ec58a42015-02-19 10:42:39 +00001166 ensure_path_unmounted(SDCARD_ROOT);
Tao Baocdcf28f2016-01-13 15:05:20 -08001167 return result;
Christian Poetzsch4ec58a42015-02-19 10:42:39 +00001168}
1169
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001170// Return REBOOT, SHUTDOWN, or REBOOT_BOOTLOADER. Returning NO_ACTION
1171// means to take the default, which is to reboot or shutdown depending
1172// on if the --shutdown_after flag was passed to recovery.
1173static Device::BuiltinAction
Doug Zongker6c8553d2012-09-24 10:40:47 -07001174prompt_and_wait(Device* device, int status) {
Doug Zongkerf93d8162009-09-22 15:16:02 -07001175 for (;;) {
Tianjie Xuc14d95d2016-03-24 11:50:34 -07001176 finish_recovery();
Doug Zongker6c8553d2012-09-24 10:40:47 -07001177 switch (status) {
1178 case INSTALL_SUCCESS:
1179 case INSTALL_NONE:
1180 ui->SetBackground(RecoveryUI::NO_COMMAND);
1181 break;
1182
1183 case INSTALL_ERROR:
1184 case INSTALL_CORRUPT:
1185 ui->SetBackground(RecoveryUI::ERROR);
1186 break;
1187 }
Doug Zongker211aebc2011-10-28 15:13:10 -07001188 ui->SetProgressType(RecoveryUI::EMPTY);
Doug Zongkerf93d8162009-09-22 15:16:02 -07001189
Elliott Hughes8fd86d72015-04-13 14:36:02 -07001190 int chosen_item = get_menu_selection(nullptr, device->GetMenuItems(), 0, 0, device);
Doug Zongkerf93d8162009-09-22 15:16:02 -07001191
1192 // device-specific code may take some action here. It may
1193 // return one of the core actions handled in the switch
1194 // statement below.
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001195 Device::BuiltinAction chosen_action = device->InvokeMenuItem(chosen_item);
Doug Zongkerf93d8162009-09-22 15:16:02 -07001196
Elliott Hughes30694c92015-03-25 15:16:51 -07001197 bool should_wipe_cache = false;
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001198 switch (chosen_action) {
1199 case Device::NO_ACTION:
1200 break;
1201
Doug Zongkerdaefc1d2011-10-31 09:34:15 -07001202 case Device::REBOOT:
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001203 case Device::SHUTDOWN:
1204 case Device::REBOOT_BOOTLOADER:
1205 return chosen_action;
Doug Zongkerf93d8162009-09-22 15:16:02 -07001206
Doug Zongkerdaefc1d2011-10-31 09:34:15 -07001207 case Device::WIPE_DATA:
1208 wipe_data(ui->IsTextVisible(), device);
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001209 if (!ui->IsTextVisible()) return Device::NO_ACTION;
Doug Zongkerf93d8162009-09-22 15:16:02 -07001210 break;
1211
Doug Zongkerdaefc1d2011-10-31 09:34:15 -07001212 case Device::WIPE_CACHE:
Elliott Hughes30694c92015-03-25 15:16:51 -07001213 wipe_cache(ui->IsTextVisible(), device);
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001214 if (!ui->IsTextVisible()) return Device::NO_ACTION;
Doug Zongkerf93d8162009-09-22 15:16:02 -07001215 break;
1216
Christian Poetzsch4ec58a42015-02-19 10:42:39 +00001217 case Device::APPLY_ADB_SIDELOAD:
Elliott Hughesec283402015-04-10 10:01:53 -07001218 case Device::APPLY_SDCARD:
Christian Poetzsch4ec58a42015-02-19 10:42:39 +00001219 {
1220 bool adb = (chosen_action == Device::APPLY_ADB_SIDELOAD);
1221 if (adb) {
Elliott Hughes30694c92015-03-25 15:16:51 -07001222 status = apply_from_adb(ui, &should_wipe_cache, TEMPORARY_INSTALL_FILE);
Doug Zongkerd0181b82011-10-19 10:51:12 -07001223 } else {
Elliott Hughes30694c92015-03-25 15:16:51 -07001224 status = apply_from_sdcard(device, &should_wipe_cache);
Doug Zongkerd0181b82011-10-19 10:51:12 -07001225 }
Doug Zongker945fc682014-07-10 10:50:39 -07001226
Elliott Hughes30694c92015-03-25 15:16:51 -07001227 if (status == INSTALL_SUCCESS && should_wipe_cache) {
Tao Baoe39a9bc2015-03-31 12:19:05 -07001228 if (!wipe_cache(false, device)) {
1229 status = INSTALL_ERROR;
1230 }
Christian Poetzsch4ec58a42015-02-19 10:42:39 +00001231 }
1232
Tao Baoc679f932015-03-30 09:43:49 -07001233 if (status != INSTALL_SUCCESS) {
1234 ui->SetBackground(RecoveryUI::ERROR);
1235 ui->Print("Installation aborted.\n");
1236 copy_logs();
1237 } else if (!ui->IsTextVisible()) {
1238 return Device::NO_ACTION; // reboot if logs aren't visible
1239 } else {
1240 ui->Print("\nInstall from %s complete.\n", adb ? "ADB" : "SD card");
Doug Zongker8674a722010-09-15 11:08:23 -07001241 }
Doug Zongkerf93d8162009-09-22 15:16:02 -07001242 }
1243 break;
Doug Zongkerdaefc1d2011-10-31 09:34:15 -07001244
Elliott Hughesec283402015-04-10 10:01:53 -07001245 case Device::VIEW_RECOVERY_LOGS:
1246 choose_recovery_file(device);
Michael Ward9d2629c2011-06-23 22:14:24 -07001247 break;
Doug Zongker9270a202012-01-09 15:16:13 -08001248
Elliott Hughes498cda62016-04-14 16:49:04 -07001249 case Device::RUN_GRAPHICS_TEST:
1250 run_graphics_test(device);
1251 break;
1252
Elliott Hughesec283402015-04-10 10:01:53 -07001253 case Device::MOUNT_SYSTEM:
Tao Baoabb8f772015-07-30 14:43:27 -07001254 // For a system image built with the root directory (i.e.
1255 // system_root_image == "true"), we mount it to /system_root, and symlink /system
1256 // to /system_root/system to make adb shell work (the symlink is created through
1257 // the build system).
1258 // Bug: 22855115
Elliott Hughescb220402016-09-23 15:30:55 -07001259 if (android::base::GetBoolProperty("ro.build.system_root_image", false)) {
Tao Baoabb8f772015-07-30 14:43:27 -07001260 if (ensure_path_mounted_at("/", "/system_root") != -1) {
1261 ui->Print("Mounted /system.\n");
1262 }
1263 } else {
1264 if (ensure_path_mounted("/system") != -1) {
1265 ui->Print("Mounted /system.\n");
1266 }
Elliott Hughesec283402015-04-10 10:01:53 -07001267 }
Tao Baoabb8f772015-07-30 14:43:27 -07001268
Nick Kralevicha9ad0322014-10-22 18:38:48 -07001269 break;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001270 }
1271 }
1272}
1273
1274static void
Oscar Montemayor05231562009-11-30 08:40:57 -08001275print_property(const char *key, const char *name, void *cookie) {
Doug Zongker56c51052010-07-01 09:18:44 -07001276 printf("%s=%s\n", key, name);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001277}
1278
Doug Zongker02ec6b82012-08-22 17:26:40 -07001279static void
1280load_locale_from_cache() {
1281 FILE* fp = fopen_path(LOCALE_FILE, "r");
1282 char buffer[80];
1283 if (fp != NULL) {
1284 fgets(buffer, sizeof(buffer), fp);
1285 int j = 0;
Doug Zongker5fa8c232012-09-18 12:37:02 -07001286 unsigned int i;
Doug Zongker02ec6b82012-08-22 17:26:40 -07001287 for (i = 0; i < sizeof(buffer) && buffer[i]; ++i) {
1288 if (!isspace(buffer[i])) {
1289 buffer[j++] = buffer[i];
1290 }
1291 }
1292 buffer[j] = 0;
1293 locale = strdup(buffer);
Devin Kim6016d082012-10-08 09:47:37 -07001294 check_and_fclose(fp, LOCALE_FILE);
Doug Zongker02ec6b82012-08-22 17:26:40 -07001295 }
1296}
1297
Doug Zongker7c3ae452013-05-14 11:03:02 -07001298static RecoveryUI* gCurrentUI = NULL;
1299
1300void
1301ui_print(const char* format, ...) {
1302 char buffer[256];
1303
1304 va_list ap;
1305 va_start(ap, format);
1306 vsnprintf(buffer, sizeof(buffer), format, ap);
1307 va_end(ap);
1308
1309 if (gCurrentUI != NULL) {
1310 gCurrentUI->Print("%s", buffer);
1311 } else {
1312 fputs(buffer, stdout);
1313 }
1314}
1315
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -07001316static constexpr char log_characters[] = "VDIWEF";
1317
1318void UiLogger(android::base::LogId id, android::base::LogSeverity severity,
1319 const char* tag, const char* file, unsigned int line,
1320 const char* message) {
1321 if (severity >= android::base::ERROR && gCurrentUI != NULL) {
1322 gCurrentUI->Print("E:%s\n", message);
1323 } else {
1324 fprintf(stdout, "%c:%s\n", log_characters[severity], message);
1325 }
1326}
1327
Yabin Cui99281df2016-02-17 12:21:52 -08001328static bool is_battery_ok() {
1329 struct healthd_config healthd_config = {
1330 .batteryStatusPath = android::String8(android::String8::kEmptyString),
1331 .batteryHealthPath = android::String8(android::String8::kEmptyString),
1332 .batteryPresentPath = android::String8(android::String8::kEmptyString),
1333 .batteryCapacityPath = android::String8(android::String8::kEmptyString),
1334 .batteryVoltagePath = android::String8(android::String8::kEmptyString),
1335 .batteryTemperaturePath = android::String8(android::String8::kEmptyString),
1336 .batteryTechnologyPath = android::String8(android::String8::kEmptyString),
1337 .batteryCurrentNowPath = android::String8(android::String8::kEmptyString),
1338 .batteryCurrentAvgPath = android::String8(android::String8::kEmptyString),
1339 .batteryChargeCounterPath = android::String8(android::String8::kEmptyString),
1340 .batteryFullChargePath = android::String8(android::String8::kEmptyString),
1341 .batteryCycleCountPath = android::String8(android::String8::kEmptyString),
1342 .energyCounter = NULL,
1343 .boot_min_cap = 0,
1344 .screen_on = NULL
1345 };
1346 healthd_board_init(&healthd_config);
1347
1348 android::BatteryMonitor monitor;
1349 monitor.init(&healthd_config);
1350
1351 int wait_second = 0;
1352 while (true) {
1353 int charge_status = monitor.getChargeStatus();
1354 // Treat unknown status as charged.
1355 bool charged = (charge_status != android::BATTERY_STATUS_DISCHARGING &&
1356 charge_status != android::BATTERY_STATUS_NOT_CHARGING);
1357 android::BatteryProperty capacity;
1358 android::status_t status = monitor.getProperty(android::BATTERY_PROP_CAPACITY, &capacity);
1359 ui_print("charge_status %d, charged %d, status %d, capacity %lld\n", charge_status,
1360 charged, status, capacity.valueInt64);
1361 // At startup, the battery drivers in devices like N5X/N6P take some time to load
1362 // the battery profile. Before the load finishes, it reports value 50 as a fake
1363 // capacity. BATTERY_READ_TIMEOUT_IN_SEC is set that the battery drivers are expected
1364 // to finish loading the battery profile earlier than 10 seconds after kernel startup.
1365 if (status == 0 && capacity.valueInt64 == 50) {
1366 if (wait_second < BATTERY_READ_TIMEOUT_IN_SEC) {
1367 sleep(1);
1368 wait_second++;
1369 continue;
1370 }
1371 }
1372 // If we can't read battery percentage, it may be a device without battery. In this
1373 // situation, use 100 as a fake battery percentage.
1374 if (status != 0) {
1375 capacity.valueInt64 = 100;
1376 }
1377 return (charged && capacity.valueInt64 >= BATTERY_WITH_CHARGER_OK_PERCENTAGE) ||
1378 (!charged && capacity.valueInt64 >= BATTERY_OK_PERCENTAGE);
1379 }
1380}
1381
Tianjie Xu3c62b672016-02-05 18:25:58 -08001382static void set_retry_bootloader_message(int retry_count, int argc, char** argv) {
Tianjie Xubd56f152016-09-28 16:32:10 -07001383 std::vector<std::string> options;
Tianjie Xu3c62b672016-02-05 18:25:58 -08001384 for (int i = 1; i < argc; ++i) {
1385 if (strstr(argv[i], "retry_count") == nullptr) {
Tianjie Xubd56f152016-09-28 16:32:10 -07001386 options.push_back(argv[i]);
Tianjie Xu3c62b672016-02-05 18:25:58 -08001387 }
1388 }
1389
Tianjie Xubd56f152016-09-28 16:32:10 -07001390 // Increment the retry counter by 1.
1391 options.push_back(android::base::StringPrintf("--retry_count=%d", retry_count+1));
Yabin Cui8b309f62016-06-24 18:22:02 -07001392 std::string err;
Tianjie Xubd56f152016-09-28 16:32:10 -07001393 if (!write_bootloader_message(options, &err)) {
Yabin Cui8b309f62016-06-24 18:22:02 -07001394 LOG(ERROR) << err;
1395 }
Tianjie Xu3c62b672016-02-05 18:25:58 -08001396}
1397
Mark Salyzyna4f701a2016-03-09 14:58:16 -08001398static ssize_t logbasename(
1399 log_id_t /* logId */,
1400 char /* prio */,
1401 const char *filename,
1402 const char * /* buf */, size_t len,
1403 void *arg) {
1404 if (strstr(LAST_KMSG_FILE, filename) ||
1405 strstr(LAST_LOG_FILE, filename)) {
1406 bool *doRotate = reinterpret_cast<bool *>(arg);
1407 *doRotate = true;
1408 }
1409 return len;
1410}
1411
1412static ssize_t logrotate(
1413 log_id_t logId,
1414 char prio,
1415 const char *filename,
1416 const char *buf, size_t len,
1417 void *arg) {
1418 bool *doRotate = reinterpret_cast<bool *>(arg);
1419 if (!*doRotate) {
1420 return __android_log_pmsg_file_write(logId, prio, filename, buf, len);
1421 }
1422
1423 std::string name(filename);
Chih-Hung Hsieh23abfd32016-07-27 10:19:47 -07001424 size_t dot = name.find_last_of('.');
Mark Salyzyna4f701a2016-03-09 14:58:16 -08001425 std::string sub = name.substr(0, dot);
1426
1427 if (!strstr(LAST_KMSG_FILE, sub.c_str()) &&
1428 !strstr(LAST_LOG_FILE, sub.c_str())) {
1429 return __android_log_pmsg_file_write(logId, prio, filename, buf, len);
1430 }
1431
1432 // filename rotation
1433 if (dot == std::string::npos) {
1434 name += ".1";
1435 } else {
1436 std::string number = name.substr(dot + 1);
1437 if (!isdigit(number.data()[0])) {
1438 name += ".1";
1439 } else {
Chih-Hung Hsieh54a27472016-04-18 11:30:55 -07001440 auto i = std::stoull(number);
Mark Salyzyna4f701a2016-03-09 14:58:16 -08001441 name = sub + "." + std::to_string(i + 1);
1442 }
1443 }
1444
1445 return __android_log_pmsg_file_write(logId, prio, name.c_str(), buf, len);
1446}
1447
Yabin Cui99281df2016-02-17 12:21:52 -08001448int main(int argc, char **argv) {
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -07001449 // We don't have logcat yet under recovery; so we'll print error on screen and
1450 // log to stdout (which is redirected to recovery.log) as we used to do.
1451 android::base::InitLogging(argv, &UiLogger);
1452
Mark Salyzyna4f701a2016-03-09 14:58:16 -08001453 // Take last pmsg contents and rewrite it to the current pmsg session.
1454 static const char filter[] = "recovery/";
1455 // Do we need to rotate?
1456 bool doRotate = false;
1457 __android_log_pmsg_file_read(
1458 LOG_ID_SYSTEM, ANDROID_LOG_INFO, filter,
1459 logbasename, &doRotate);
1460 // Take action to refresh pmsg contents
1461 __android_log_pmsg_file_read(
1462 LOG_ID_SYSTEM, ANDROID_LOG_INFO, filter,
1463 logrotate, &doRotate);
1464
Doug Zongker9270a202012-01-09 15:16:13 -08001465 // If this binary is started with the single argument "--adbd",
1466 // instead of being the normal recovery binary, it turns into kind
1467 // of a stripped-down version of adbd that only supports the
1468 // 'sideload' command. Note this must be a real argument, not
1469 // anything in the command file or bootloader control block; the
1470 // only way recovery should be run with this argument is when it
1471 // starts a copy of itself from the apply_from_adb() function.
1472 if (argc == 2 && strcmp(argv[1], "--adbd") == 0) {
Josh Gaoacb2a2f2016-08-26 18:24:34 -07001473 minadbd_main();
Doug Zongker9270a202012-01-09 15:16:13 -08001474 return 0;
1475 }
1476
Tao Bao04ca4262015-09-10 15:32:24 -07001477 time_t start = time(NULL);
1478
1479 // redirect_stdio should be called only in non-sideload mode. Otherwise
1480 // we may have two logger instances with different timestamps.
1481 redirect_stdio(TEMPORARY_LOG_FILE);
1482
Doug Zongker19a8e242014-01-21 09:25:41 -08001483 printf("Starting recovery (pid %d) on %s", getpid(), ctime(&start));
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001484
Doug Zongkerd4208f92010-09-20 12:16:13 -07001485 load_volume_table();
Tao Bao26112e52016-02-25 12:29:40 -08001486 has_cache = volume_for_path(CACHE_ROOT) != nullptr;
1487
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001488 get_args(&argc, &argv);
1489
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001490 const char *update_package = NULL;
Tao Baoe39a9bc2015-03-31 12:19:05 -07001491 bool should_wipe_data = false;
Tao Baoc679f932015-03-30 09:43:49 -07001492 bool should_wipe_cache = false;
Yabin Cui8b309f62016-06-24 18:22:02 -07001493 bool should_wipe_ab = false;
Yabin Cuifd99a312016-06-09 14:09:39 -07001494 size_t wipe_package_size = 0;
Tao Bao145d8612015-03-25 15:51:15 -07001495 bool show_text = false;
Tao Baoc679f932015-03-30 09:43:49 -07001496 bool sideload = false;
1497 bool sideload_auto_reboot = false;
Doug Zongkere5d5ac72012-04-12 11:01:22 -07001498 bool just_exit = false;
Doug Zongkerb1d12632014-03-18 10:32:12 -07001499 bool shutdown_after = false;
Tianjie Xu3c62b672016-02-05 18:25:58 -08001500 int retry_count = 0;
Tianjie Xu35926c42016-04-28 18:06:26 -07001501 bool security_update = false;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001502
1503 int arg;
Tao Bao862a4c12016-06-02 11:16:50 -07001504 int option_index;
1505 while ((arg = getopt_long(argc, argv, "", OPTIONS, &option_index)) != -1) {
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001506 switch (arg) {
Tianjie Xu3c62b672016-02-05 18:25:58 -08001507 case 'n': android::base::ParseInt(optarg, &retry_count, 0); break;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001508 case 'u': update_package = optarg; break;
Tao Baoe39a9bc2015-03-31 12:19:05 -07001509 case 'w': should_wipe_data = true; break;
Tao Baoc679f932015-03-30 09:43:49 -07001510 case 'c': should_wipe_cache = true; break;
Tao Bao145d8612015-03-25 15:51:15 -07001511 case 't': show_text = true; break;
Tao Baoc679f932015-03-30 09:43:49 -07001512 case 's': sideload = true; break;
1513 case 'a': sideload = true; sideload_auto_reboot = true; break;
Doug Zongkere5d5ac72012-04-12 11:01:22 -07001514 case 'x': just_exit = true; break;
Doug Zongker02ec6b82012-08-22 17:26:40 -07001515 case 'l': locale = optarg; break;
Doug Zongkerc87bab12013-11-25 13:53:25 -08001516 case 'g': {
1517 if (stage == NULL || *stage == '\0') {
1518 char buffer[20] = "1/";
1519 strncat(buffer, optarg, sizeof(buffer)-3);
1520 stage = strdup(buffer);
1521 }
1522 break;
1523 }
Doug Zongkerb1d12632014-03-18 10:32:12 -07001524 case 'p': shutdown_after = true; break;
Jeff Sharkeya6e13ae2014-09-24 11:46:17 -07001525 case 'r': reason = optarg; break;
Tianjie Xu35926c42016-04-28 18:06:26 -07001526 case 'e': security_update = true; break;
Tao Bao862a4c12016-06-02 11:16:50 -07001527 case 0: {
Yabin Cui8b309f62016-06-24 18:22:02 -07001528 if (strcmp(OPTIONS[option_index].name, "wipe_ab") == 0) {
1529 should_wipe_ab = true;
Tao Bao862a4c12016-06-02 11:16:50 -07001530 break;
Yabin Cuifd99a312016-06-09 14:09:39 -07001531 } else if (strcmp(OPTIONS[option_index].name, "wipe_package_size") == 0) {
1532 android::base::ParseUint(optarg, &wipe_package_size);
1533 break;
Tao Bao862a4c12016-06-02 11:16:50 -07001534 }
1535 break;
1536 }
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001537 case '?':
Tianjie Xu7b0ad9c2016-08-05 18:00:04 -07001538 LOG(ERROR) << "Invalid command argument";
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001539 continue;
1540 }
1541 }
1542
Tao Bao26112e52016-02-25 12:29:40 -08001543 if (locale == nullptr && has_cache) {
Doug Zongker02ec6b82012-08-22 17:26:40 -07001544 load_locale_from_cache();
1545 }
1546 printf("locale is [%s]\n", locale);
Doug Zongker0d32f252014-02-13 15:07:56 -08001547 printf("stage is [%s]\n", stage);
Jeff Sharkeya6e13ae2014-09-24 11:46:17 -07001548 printf("reason is [%s]\n", reason);
Doug Zongker02ec6b82012-08-22 17:26:40 -07001549
1550 Device* device = make_device();
1551 ui = device->GetUI();
Doug Zongker7c3ae452013-05-14 11:03:02 -07001552 gCurrentUI = ui;
Doug Zongker02ec6b82012-08-22 17:26:40 -07001553
Doug Zongker5fa8c232012-09-18 12:37:02 -07001554 ui->SetLocale(locale);
Doug Zongker02ec6b82012-08-22 17:26:40 -07001555 ui->Init();
Tianjie Xu35926c42016-04-28 18:06:26 -07001556 // Set background string to "installing security update" for security update,
1557 // otherwise set it to "installing system update".
1558 ui->SetSystemUpdateText(security_update);
Doug Zongkerc87bab12013-11-25 13:53:25 -08001559
1560 int st_cur, st_max;
1561 if (stage != NULL && sscanf(stage, "%d/%d", &st_cur, &st_max) == 2) {
1562 ui->SetStage(st_cur, st_max);
1563 }
1564
Doug Zongker02ec6b82012-08-22 17:26:40 -07001565 ui->SetBackground(RecoveryUI::NONE);
1566 if (show_text) ui->ShowText(true);
1567
Stephen Smalley779701d2012-02-09 14:13:23 -05001568 struct selinux_opt seopts[] = {
1569 { SELABEL_OPT_PATH, "/file_contexts" }
1570 };
1571
1572 sehandle = selabel_open(SELABEL_CTX_FILE, seopts, 1);
1573
1574 if (!sehandle) {
Doug Zongkerfafc85b2013-07-09 12:29:45 -07001575 ui->Print("Warning: No file_contexts\n");
Stephen Smalley779701d2012-02-09 14:13:23 -05001576 }
Stephen Smalley779701d2012-02-09 14:13:23 -05001577
Doug Zongkerdaefc1d2011-10-31 09:34:15 -07001578 device->StartRecovery();
Doug Zongkerefa1bab2010-02-01 15:59:12 -08001579
Doug Zongker56c51052010-07-01 09:18:44 -07001580 printf("Command:");
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001581 for (arg = 0; arg < argc; arg++) {
Doug Zongker56c51052010-07-01 09:18:44 -07001582 printf(" \"%s\"", argv[arg]);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001583 }
Doug Zongker9b125b02010-09-22 12:01:37 -07001584 printf("\n");
1585
1586 if (update_package) {
1587 // For backwards compatibility on the cache partition only, if
1588 // we're given an old 'root' path "CACHE:foo", change it to
1589 // "/cache/foo".
1590 if (strncmp(update_package, "CACHE:", 6) == 0) {
1591 int len = strlen(update_package) + 10;
Doug Zongker28ce47c2011-10-28 10:33:05 -07001592 char* modified_path = (char*)malloc(len);
Jeremy Compostella1b7d9b72015-07-29 17:17:03 +02001593 if (modified_path) {
1594 strlcpy(modified_path, "/cache/", len);
1595 strlcat(modified_path, update_package+6, len);
1596 printf("(replacing path \"%s\" with \"%s\")\n",
1597 update_package, modified_path);
1598 update_package = modified_path;
1599 }
1600 else
1601 printf("modified_path allocation failed\n");
Doug Zongker9b125b02010-09-22 12:01:37 -07001602 }
1603 }
1604 printf("\n");
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001605
1606 property_list(print_property, NULL);
Doug Zongker56c51052010-07-01 09:18:44 -07001607 printf("\n");
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001608
Elliott Hughesbb78d622015-04-09 20:51:08 -07001609 ui->Print("Supported API: %d\n", RECOVERY_API_VERSION);
1610
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001611 int status = INSTALL_SUCCESS;
1612
Doug Zongker540d57f2011-01-18 13:36:58 -08001613 if (update_package != NULL) {
Tao Bao56870012016-04-29 15:37:05 -07001614 // It's not entirely true that we will modify the flash. But we want
1615 // to log the update attempt since update_package is non-NULL.
1616 modified_flash = true;
1617
Yabin Cui99281df2016-02-17 12:21:52 -08001618 if (!is_battery_ok()) {
1619 ui->Print("battery capacity is not enough for installing package, needed is %d%%\n",
1620 BATTERY_OK_PERCENTAGE);
Tianjie Xu16255832016-04-30 11:49:59 -07001621 // Log the error code to last_install when installation skips due to
1622 // low battery.
Tao Baof4885ad2016-09-26 11:39:14 -07001623 std::vector<std::string> log_buffer = {
1624 update_package,
1625 "0", // install result
1626 "error: " + std::to_string(kLowBattery),
1627 };
1628 std::string log_content = android::base::Join(log_buffer, "\n");
1629 if (!android::base::WriteStringToFile(log_content, LAST_INSTALL_FILE)) {
1630 PLOG(ERROR) << "failed to write " << LAST_INSTALL_FILE;
Tianjie Xu16255832016-04-30 11:49:59 -07001631 }
Tao Baof4885ad2016-09-26 11:39:14 -07001632
1633 // Also write the info into last_log.
1634 LOG(INFO) << log_content;
1635
Yabin Cui99281df2016-02-17 12:21:52 -08001636 status = INSTALL_SKIPPED;
1637 } else {
1638 status = install_package(update_package, &should_wipe_cache,
Tianjie Xu16255832016-04-30 11:49:59 -07001639 TEMPORARY_INSTALL_FILE, true, retry_count);
Yabin Cui99281df2016-02-17 12:21:52 -08001640 if (status == INSTALL_SUCCESS && should_wipe_cache) {
1641 wipe_cache(false, device);
1642 }
1643 if (status != INSTALL_SUCCESS) {
1644 ui->Print("Installation aborted.\n");
Tianjie Xu3c62b672016-02-05 18:25:58 -08001645 // When I/O error happens, reboot and retry installation EIO_RETRY_COUNT
1646 // times before we abandon this OTA update.
1647 if (status == INSTALL_RETRY && retry_count < EIO_RETRY_COUNT) {
1648 copy_logs();
1649 set_retry_bootloader_message(retry_count, argc, argv);
1650 // Print retry count on screen.
1651 ui->Print("Retry attempt %d\n", retry_count);
Doug Zongker7c3ae452013-05-14 11:03:02 -07001652
Tianjie Xu3c62b672016-02-05 18:25:58 -08001653 // Reboot and retry the update
Elliott Hughescb220402016-09-23 15:30:55 -07001654 if (!android::base::SetProperty(ANDROID_RB_PROPERTY, "reboot,recovery")) {
Tianjie Xu3c62b672016-02-05 18:25:58 -08001655 ui->Print("Reboot failed\n");
1656 } else {
1657 while (true) {
1658 pause();
1659 }
1660 }
1661 }
Yabin Cui99281df2016-02-17 12:21:52 -08001662 // If this is an eng or userdebug build, then automatically
1663 // turn the text display on if the script fails so the error
1664 // message is visible.
1665 if (is_ro_debuggable()) {
1666 ui->ShowText(true);
1667 }
Doug Zongker7c3ae452013-05-14 11:03:02 -07001668 }
1669 }
Tao Baoe39a9bc2015-03-31 12:19:05 -07001670 } else if (should_wipe_data) {
1671 if (!wipe_data(false, device)) {
1672 status = INSTALL_ERROR;
1673 }
Tao Baoc679f932015-03-30 09:43:49 -07001674 } else if (should_wipe_cache) {
Tao Baoe39a9bc2015-03-31 12:19:05 -07001675 if (!wipe_cache(false, device)) {
1676 status = INSTALL_ERROR;
1677 }
Yabin Cui8b309f62016-06-24 18:22:02 -07001678 } else if (should_wipe_ab) {
Yabin Cuifd99a312016-06-09 14:09:39 -07001679 if (!wipe_ab_device(wipe_package_size)) {
Tao Bao862a4c12016-06-02 11:16:50 -07001680 status = INSTALL_ERROR;
1681 }
Tao Baoc679f932015-03-30 09:43:49 -07001682 } else if (sideload) {
1683 // 'adb reboot sideload' acts the same as user presses key combinations
1684 // to enter the sideload mode. When 'sideload-auto-reboot' is used, text
1685 // display will NOT be turned on by default. And it will reboot after
1686 // sideload finishes even if there are errors. Unless one turns on the
1687 // text display during the installation. This is to enable automated
1688 // testing.
1689 if (!sideload_auto_reboot) {
1690 ui->ShowText(true);
1691 }
1692 status = apply_from_adb(ui, &should_wipe_cache, TEMPORARY_INSTALL_FILE);
1693 if (status == INSTALL_SUCCESS && should_wipe_cache) {
Tao Baoe39a9bc2015-03-31 12:19:05 -07001694 if (!wipe_cache(false, device)) {
1695 status = INSTALL_ERROR;
1696 }
Tao Baoc679f932015-03-30 09:43:49 -07001697 }
1698 ui->Print("\nInstall from ADB complete (status: %d).\n", status);
1699 if (sideload_auto_reboot) {
1700 ui->Print("Rebooting automatically.\n");
1701 }
Doug Zongkere5d5ac72012-04-12 11:01:22 -07001702 } else if (!just_exit) {
Doug Zongker02ec6b82012-08-22 17:26:40 -07001703 status = INSTALL_NONE; // No command specified
1704 ui->SetBackground(RecoveryUI::NO_COMMAND);
Tao Bao785d22c2015-05-04 09:34:29 -07001705
1706 // http://b/17489952
1707 // If this is an eng or userdebug build, automatically turn on the
1708 // text display if no command is specified.
1709 if (is_ro_debuggable()) {
1710 ui->ShowText(true);
1711 }
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001712 }
1713
Tao Baoc679f932015-03-30 09:43:49 -07001714 if (!sideload_auto_reboot && (status == INSTALL_ERROR || status == INSTALL_CORRUPT)) {
Doug Zongkerf24fd7e2013-07-02 11:43:25 -07001715 copy_logs();
Doug Zongker02ec6b82012-08-22 17:26:40 -07001716 ui->SetBackground(RecoveryUI::ERROR);
1717 }
Tao Baoc679f932015-03-30 09:43:49 -07001718
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001719 Device::BuiltinAction after = shutdown_after ? Device::SHUTDOWN : Device::REBOOT;
Yabin Cui99281df2016-02-17 12:21:52 -08001720 if ((status != INSTALL_SUCCESS && status != INSTALL_SKIPPED && !sideload_auto_reboot) ||
1721 ui->IsTextVisible()) {
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001722 Device::BuiltinAction temp = prompt_and_wait(device, status);
Tao Baoc679f932015-03-30 09:43:49 -07001723 if (temp != Device::NO_ACTION) {
1724 after = temp;
1725 }
Doug Zongker8674a722010-09-15 11:08:23 -07001726 }
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001727
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001728 // Save logs and clean up before rebooting or shutting down.
Tianjie Xuc14d95d2016-03-24 11:50:34 -07001729 finish_recovery();
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001730
1731 switch (after) {
1732 case Device::SHUTDOWN:
1733 ui->Print("Shutting down...\n");
Elliott Hughescb220402016-09-23 15:30:55 -07001734 android::base::SetProperty(ANDROID_RB_PROPERTY, "shutdown,");
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001735 break;
1736
1737 case Device::REBOOT_BOOTLOADER:
1738 ui->Print("Rebooting to bootloader...\n");
Elliott Hughescb220402016-09-23 15:30:55 -07001739 android::base::SetProperty(ANDROID_RB_PROPERTY, "reboot,bootloader");
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001740 break;
1741
1742 default:
1743 ui->Print("Rebooting...\n");
Elliott Hughescb220402016-09-23 15:30:55 -07001744 android::base::SetProperty(ANDROID_RB_PROPERTY, "reboot,");
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001745 break;
Doug Zongkerb1d12632014-03-18 10:32:12 -07001746 }
Tao Bao75238632015-05-27 14:46:17 -07001747 while (true) {
1748 pause();
1749 }
1750 // Should be unreachable.
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001751 return EXIT_SUCCESS;
1752}