blob: 0dfcce02e27f75ca8b9af3fed7a0a65767e4cb53 [file] [log] [blame]
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001/*
2 * Copyright (C) 2007 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17#include <ctype.h>
Doug Zongker7c3ae452013-05-14 11:03:02 -070018#include <dirent.h>
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080019#include <errno.h>
20#include <fcntl.h>
21#include <getopt.h>
Tao Bao862a4c12016-06-02 11:16:50 -070022#include <inttypes.h>
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080023#include <limits.h>
Tao Bao862a4c12016-06-02 11:16:50 -070024#include <linux/fs.h>
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080025#include <linux/input.h>
Doug Zongker7c3ae452013-05-14 11:03:02 -070026#include <stdarg.h>
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080027#include <stdio.h>
28#include <stdlib.h>
29#include <string.h>
Patrick Tjincd055ee2014-12-09 11:26:40 -080030#include <sys/klog.h>
Doug Zongker23ceeea2010-07-08 17:27:55 -070031#include <sys/stat.h>
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080032#include <sys/types.h>
Tao Baocdcf28f2016-01-13 15:05:20 -080033#include <sys/wait.h>
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080034#include <time.h>
35#include <unistd.h>
36
Tao Bao04ca4262015-09-10 15:32:24 -070037#include <chrono>
Tao Bao862a4c12016-06-02 11:16:50 -070038#include <string>
39#include <vector>
Tao Bao04ca4262015-09-10 15:32:24 -070040
Tao Bao75238632015-05-27 14:46:17 -070041#include <adb.h>
Mark Salyzyna4f701a2016-03-09 14:58:16 -080042#include <android/log.h> /* Android Log Priority Tags */
Elliott Hughes4b166f02015-12-04 15:30:20 -080043#include <android-base/file.h>
Tianjie Xu3c62b672016-02-05 18:25:58 -080044#include <android-base/parseint.h>
Elliott Hughes4b166f02015-12-04 15:30:20 -080045#include <android-base/stringprintf.h>
Tao Bao862a4c12016-06-02 11:16:50 -070046#include <android-base/strings.h>
47#include <android-base/unique_fd.h>
Tao Bao75238632015-05-27 14:46:17 -070048#include <cutils/android_reboot.h>
49#include <cutils/properties.h>
Elliott Hughes4bbd5bf2016-04-01 18:24:39 -070050#include <healthd/BatteryMonitor.h>
Mark Salyzyna4f701a2016-03-09 14:58:16 -080051#include <log/logger.h> /* Android Log packet format */
52#include <private/android_logger.h> /* private pmsg functions */
Elliott Hughes4bbd5bf2016-04-01 18:24:39 -070053#include <selinux/label.h>
54#include <selinux/selinux.h>
Yabin Cui53e7a062016-02-17 12:21:52 -080055
Tao Bao75238632015-05-27 14:46:17 -070056#include "adb_install.h"
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080057#include "bootloader.h"
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080058#include "common.h"
Tao Bao75238632015-05-27 14:46:17 -070059#include "device.h"
60#include "fuse_sdcard_provider.h"
61#include "fuse_sideload.h"
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080062#include "install.h"
63#include "minui/minui.h"
64#include "minzip/DirUtil.h"
65#include "roots.h"
Doug Zongker28ce47c2011-10-28 10:33:05 -070066#include "ui.h"
Doug Zongker211aebc2011-10-28 15:13:10 -070067#include "screen_ui.h"
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080068
Stephen Smalley779701d2012-02-09 14:13:23 -050069struct selabel_handle *sehandle;
70
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080071static const struct option OPTIONS[] = {
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080072 { "update_package", required_argument, NULL, 'u' },
Tianjie Xu3c62b672016-02-05 18:25:58 -080073 { "retry_count", required_argument, NULL, 'n' },
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080074 { "wipe_data", no_argument, NULL, 'w' },
75 { "wipe_cache", no_argument, NULL, 'c' },
Doug Zongker4bc98062010-09-03 11:00:13 -070076 { "show_text", no_argument, NULL, 't' },
Tao Baoc679f932015-03-30 09:43:49 -070077 { "sideload", no_argument, NULL, 's' },
78 { "sideload_auto_reboot", no_argument, NULL, 'a' },
Doug Zongkere5d5ac72012-04-12 11:01:22 -070079 { "just_exit", no_argument, NULL, 'x' },
Doug Zongker02ec6b82012-08-22 17:26:40 -070080 { "locale", required_argument, NULL, 'l' },
Doug Zongkerc87bab12013-11-25 13:53:25 -080081 { "stages", required_argument, NULL, 'g' },
Doug Zongkerb1d12632014-03-18 10:32:12 -070082 { "shutdown_after", no_argument, NULL, 'p' },
Jeff Sharkeya6e13ae2014-09-24 11:46:17 -070083 { "reason", required_argument, NULL, 'r' },
Tao Bao862a4c12016-06-02 11:16:50 -070084 { "brick", no_argument, NULL, 0 },
Doug Zongker988500b2009-10-06 14:41:38 -070085 { NULL, 0, NULL, 0 },
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080086};
87
Doug Zongker6d0d7ac2013-07-09 13:34:55 -070088static const char *CACHE_LOG_DIR = "/cache/recovery";
Doug Zongkerd4208f92010-09-20 12:16:13 -070089static const char *COMMAND_FILE = "/cache/recovery/command";
Doug Zongkerd4208f92010-09-20 12:16:13 -070090static const char *LOG_FILE = "/cache/recovery/log";
Doug Zongkerd0181b82011-10-19 10:51:12 -070091static const char *LAST_INSTALL_FILE = "/cache/recovery/last_install";
Doug Zongker8b240cc2012-08-29 15:19:29 -070092static const char *LOCALE_FILE = "/cache/recovery/last_locale";
Michael Ward9d2629c2011-06-23 22:14:24 -070093static const char *CACHE_ROOT = "/cache";
Doug Zongkerd4208f92010-09-20 12:16:13 -070094static const char *SDCARD_ROOT = "/sdcard";
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080095static const char *TEMPORARY_LOG_FILE = "/tmp/recovery.log";
Doug Zongkerd0181b82011-10-19 10:51:12 -070096static const char *TEMPORARY_INSTALL_FILE = "/tmp/last_install";
Tao Baof0124322015-04-11 02:04:11 +000097static const char *LAST_KMSG_FILE = "/cache/recovery/last_kmsg";
Tao Baobef39712015-05-04 18:50:27 -070098static const char *LAST_LOG_FILE = "/cache/recovery/last_log";
99static const int KEEP_LOG_COUNT = 10;
Tianjie Xu3c62b672016-02-05 18:25:58 -0800100static const int EIO_RETRY_COUNT = 2;
Yabin Cui53e7a062016-02-17 12:21:52 -0800101static const int BATTERY_READ_TIMEOUT_IN_SEC = 10;
102// GmsCore enters recovery mode to install package when having enough battery
103// percentage. Normally, the threshold is 40% without charger and 20% with charger.
104// So we should check battery with a slightly lower limitation.
105static const int BATTERY_OK_PERCENTAGE = 20;
106static const int BATTERY_WITH_CHARGER_OK_PERCENTAGE = 15;
Tao Bao862a4c12016-06-02 11:16:50 -0700107constexpr const char* RECOVERY_BRICK = "/etc/recovery.brick";
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700108
Doug Zongker211aebc2011-10-28 15:13:10 -0700109RecoveryUI* ui = NULL;
Doug Zongker02ec6b82012-08-22 17:26:40 -0700110char* locale = NULL;
Doug Zongkerc87bab12013-11-25 13:53:25 -0800111char* stage = NULL;
Jeff Sharkeya6e13ae2014-09-24 11:46:17 -0700112char* reason = NULL;
Tao Bao682c34b2015-04-07 17:16:35 -0700113bool modified_flash = false;
Tao Bao26112e52016-02-25 12:29:40 -0800114static bool has_cache = false;
Doug Zongker211aebc2011-10-28 15:13:10 -0700115
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800116/*
117 * The recovery tool communicates with the main system through /cache files.
118 * /cache/recovery/command - INPUT - command line for tool, one arg per line
119 * /cache/recovery/log - OUTPUT - combined log file from recovery run(s)
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800120 *
121 * The arguments which may be supplied in the recovery.command file:
Doug Zongkerd4208f92010-09-20 12:16:13 -0700122 * --update_package=path - verify install an OTA package file
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800123 * --wipe_data - erase user data (and cache), then reboot
124 * --wipe_cache - wipe cache (but not user data), then reboot
Oscar Montemayor05231562009-11-30 08:40:57 -0800125 * --set_encrypted_filesystem=on|off - enables / diasables encrypted fs
Doug Zongkere5d5ac72012-04-12 11:01:22 -0700126 * --just_exit - do nothing; exit and reboot
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800127 *
128 * After completing, we remove /cache/recovery/command and reboot.
129 * Arguments may also be supplied in the bootloader control block (BCB).
130 * These important scenarios must be safely restartable at any point:
131 *
132 * FACTORY RESET
133 * 1. user selects "factory reset"
134 * 2. main system writes "--wipe_data" to /cache/recovery/command
135 * 3. main system reboots into recovery
136 * 4. get_args() writes BCB with "boot-recovery" and "--wipe_data"
137 * -- after this, rebooting will restart the erase --
Doug Zongkerd4208f92010-09-20 12:16:13 -0700138 * 5. erase_volume() reformats /data
139 * 6. erase_volume() reformats /cache
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800140 * 7. finish_recovery() erases BCB
141 * -- after this, rebooting will restart the main system --
142 * 8. main() calls reboot() to boot main system
143 *
144 * OTA INSTALL
145 * 1. main system downloads OTA package to /cache/some-filename.zip
Doug Zongker9b125b02010-09-22 12:01:37 -0700146 * 2. main system writes "--update_package=/cache/some-filename.zip"
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800147 * 3. main system reboots into recovery
148 * 4. get_args() writes BCB with "boot-recovery" and "--update_package=..."
149 * -- after this, rebooting will attempt to reinstall the update --
150 * 5. install_package() attempts to install the update
151 * NOTE: the package install must itself be restartable from any point
152 * 6. finish_recovery() erases BCB
153 * -- after this, rebooting will (try to) restart the main system --
154 * 7. ** if install failed **
155 * 7a. prompt_and_wait() shows an error icon and waits for the user
156 * 7b; the user reboots (pulling the battery, etc) into the main system
157 * 8. main() calls maybe_install_firmware_update()
158 * ** if the update contained radio/hboot firmware **:
159 * 8a. m_i_f_u() writes BCB with "boot-recovery" and "--wipe_cache"
160 * -- after this, rebooting will reformat cache & restart main system --
161 * 8b. m_i_f_u() writes firmware image into raw cache partition
162 * 8c. m_i_f_u() writes BCB with "update-radio/hboot" and "--wipe_cache"
163 * -- after this, rebooting will attempt to reinstall firmware --
164 * 8d. bootloader tries to flash firmware
165 * 8e. bootloader writes BCB with "boot-recovery" (keeping "--wipe_cache")
166 * -- after this, rebooting will reformat cache & restart main system --
Doug Zongkerd4208f92010-09-20 12:16:13 -0700167 * 8f. erase_volume() reformats /cache
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800168 * 8g. finish_recovery() erases BCB
169 * -- after this, rebooting will (try to) restart the main system --
170 * 9. main() calls reboot() to boot main system
171 */
172
173static const int MAX_ARG_LENGTH = 4096;
174static const int MAX_ARGS = 100;
175
Doug Zongkerd4208f92010-09-20 12:16:13 -0700176// open a given path, mounting partitions as necessary
Tao Bao04ca4262015-09-10 15:32:24 -0700177FILE* fopen_path(const char *path, const char *mode) {
Doug Zongkerd4208f92010-09-20 12:16:13 -0700178 if (ensure_path_mounted(path) != 0) {
179 LOGE("Can't mount %s\n", path);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800180 return NULL;
181 }
182
183 // When writing, try to create the containing directory, if necessary.
184 // Use generous permissions, the system (init.rc) will reset them.
Stephen Smalley779701d2012-02-09 14:13:23 -0500185 if (strchr("wa", mode[0])) dirCreateHierarchy(path, 0777, NULL, 1, sehandle);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800186
187 FILE *fp = fopen(path, mode);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800188 return fp;
189}
190
Tao Bao04ca4262015-09-10 15:32:24 -0700191// close a file, log an error if the error indicator is set
192static void check_and_fclose(FILE *fp, const char *name) {
193 fflush(fp);
194 if (ferror(fp)) LOGE("Error in %s\n(%s)\n", name, strerror(errno));
195 fclose(fp);
196}
197
Elliott Hughesf14af802015-02-10 14:46:14 -0800198bool is_ro_debuggable() {
199 char value[PROPERTY_VALUE_MAX+1];
200 return (property_get("ro.debuggable", value, NULL) == 1 && value[0] == '1');
201}
202
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700203static void redirect_stdio(const char* filename) {
Tao Bao04ca4262015-09-10 15:32:24 -0700204 int pipefd[2];
205 if (pipe(pipefd) == -1) {
206 LOGE("pipe failed: %s\n", strerror(errno));
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700207
Tao Bao04ca4262015-09-10 15:32:24 -0700208 // Fall back to traditional logging mode without timestamps.
209 // If these fail, there's not really anywhere to complain...
210 freopen(filename, "a", stdout); setbuf(stdout, NULL);
211 freopen(filename, "a", stderr); setbuf(stderr, NULL);
212
213 return;
214 }
215
216 pid_t pid = fork();
217 if (pid == -1) {
218 LOGE("fork failed: %s\n", strerror(errno));
219
220 // Fall back to traditional logging mode without timestamps.
221 // If these fail, there's not really anywhere to complain...
222 freopen(filename, "a", stdout); setbuf(stdout, NULL);
223 freopen(filename, "a", stderr); setbuf(stderr, NULL);
224
225 return;
226 }
227
228 if (pid == 0) {
229 /// Close the unused write end.
230 close(pipefd[1]);
231
232 auto start = std::chrono::steady_clock::now();
233
234 // Child logger to actually write to the log file.
235 FILE* log_fp = fopen(filename, "a");
236 if (log_fp == nullptr) {
237 LOGE("fopen \"%s\" failed: %s\n", filename, strerror(errno));
238 close(pipefd[0]);
239 _exit(1);
240 }
241
242 FILE* pipe_fp = fdopen(pipefd[0], "r");
243 if (pipe_fp == nullptr) {
244 LOGE("fdopen failed: %s\n", strerror(errno));
245 check_and_fclose(log_fp, filename);
246 close(pipefd[0]);
247 _exit(1);
248 }
249
250 char* line = nullptr;
251 size_t len = 0;
252 while (getline(&line, &len, pipe_fp) != -1) {
253 auto now = std::chrono::steady_clock::now();
254 double duration = std::chrono::duration_cast<std::chrono::duration<double>>(
255 now - start).count();
256 if (line[0] == '\n') {
257 fprintf(log_fp, "[%12.6lf]\n", duration);
258 } else {
259 fprintf(log_fp, "[%12.6lf] %s", duration, line);
260 }
261 fflush(log_fp);
262 }
263
264 LOGE("getline failed: %s\n", strerror(errno));
265
266 free(line);
267 check_and_fclose(log_fp, filename);
268 close(pipefd[0]);
269 _exit(1);
270 } else {
271 // Redirect stdout/stderr to the logger process.
272 // Close the unused read end.
273 close(pipefd[0]);
274
275 setbuf(stdout, nullptr);
276 setbuf(stderr, nullptr);
277
278 if (dup2(pipefd[1], STDOUT_FILENO) == -1) {
279 LOGE("dup2 stdout failed: %s\n", strerror(errno));
280 }
281 if (dup2(pipefd[1], STDERR_FILENO) == -1) {
282 LOGE("dup2 stderr failed: %s\n", strerror(errno));
283 }
284
285 close(pipefd[1]);
286 }
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800287}
288
289// command line args come from, in decreasing precedence:
290// - the actual command line
291// - the bootloader control block (one per line, after "recovery")
292// - the contents of COMMAND_FILE (one per line)
293static void
294get_args(int *argc, char ***argv) {
295 struct bootloader_message boot;
296 memset(&boot, 0, sizeof(boot));
297 get_bootloader_message(&boot); // this may fail, leaving a zeroed structure
Doug Zongkerc87bab12013-11-25 13:53:25 -0800298 stage = strndup(boot.stage, sizeof(boot.stage));
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800299
300 if (boot.command[0] != 0 && boot.command[0] != 255) {
Mark Salyzynf3bb31c2014-03-14 09:39:48 -0700301 LOGI("Boot command: %.*s\n", (int)sizeof(boot.command), boot.command);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800302 }
303
304 if (boot.status[0] != 0 && boot.status[0] != 255) {
Mark Salyzynf3bb31c2014-03-14 09:39:48 -0700305 LOGI("Boot status: %.*s\n", (int)sizeof(boot.status), boot.status);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800306 }
307
308 // --- if arguments weren't supplied, look in the bootloader control block
309 if (*argc <= 1) {
310 boot.recovery[sizeof(boot.recovery) - 1] = '\0'; // Ensure termination
311 const char *arg = strtok(boot.recovery, "\n");
312 if (arg != NULL && !strcmp(arg, "recovery")) {
313 *argv = (char **) malloc(sizeof(char *) * MAX_ARGS);
314 (*argv)[0] = strdup(arg);
315 for (*argc = 1; *argc < MAX_ARGS; ++*argc) {
316 if ((arg = strtok(NULL, "\n")) == NULL) break;
317 (*argv)[*argc] = strdup(arg);
318 }
319 LOGI("Got arguments from boot message\n");
320 } else if (boot.recovery[0] != 0 && boot.recovery[0] != 255) {
321 LOGE("Bad boot message\n\"%.20s\"\n", boot.recovery);
322 }
323 }
324
Tao Bao26112e52016-02-25 12:29:40 -0800325 // --- if that doesn't work, try the command file (if we have /cache).
326 if (*argc <= 1 && has_cache) {
Doug Zongkerd4208f92010-09-20 12:16:13 -0700327 FILE *fp = fopen_path(COMMAND_FILE, "r");
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800328 if (fp != NULL) {
Jin Feng93ffa752013-06-04 17:46:24 +0800329 char *token;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800330 char *argv0 = (*argv)[0];
331 *argv = (char **) malloc(sizeof(char *) * MAX_ARGS);
332 (*argv)[0] = argv0; // use the same program name
333
334 char buf[MAX_ARG_LENGTH];
335 for (*argc = 1; *argc < MAX_ARGS; ++*argc) {
336 if (!fgets(buf, sizeof(buf), fp)) break;
Jin Feng93ffa752013-06-04 17:46:24 +0800337 token = strtok(buf, "\r\n");
338 if (token != NULL) {
339 (*argv)[*argc] = strdup(token); // Strip newline.
340 } else {
341 --*argc;
342 }
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800343 }
344
345 check_and_fclose(fp, COMMAND_FILE);
346 LOGI("Got arguments from %s\n", COMMAND_FILE);
347 }
348 }
349
350 // --> write the arguments we have back into the bootloader control block
351 // always boot into recovery after this (until finish_recovery() is called)
352 strlcpy(boot.command, "boot-recovery", sizeof(boot.command));
353 strlcpy(boot.recovery, "recovery\n", sizeof(boot.recovery));
354 int i;
355 for (i = 1; i < *argc; ++i) {
356 strlcat(boot.recovery, (*argv)[i], sizeof(boot.recovery));
357 strlcat(boot.recovery, "\n", sizeof(boot.recovery));
358 }
359 set_bootloader_message(&boot);
360}
361
Doug Zongker34c98df2009-08-18 12:05:45 -0700362static void
Oscar Montemayor05231562009-11-30 08:40:57 -0800363set_sdcard_update_bootloader_message() {
Doug Zongker34c98df2009-08-18 12:05:45 -0700364 struct bootloader_message boot;
365 memset(&boot, 0, sizeof(boot));
366 strlcpy(boot.command, "boot-recovery", sizeof(boot.command));
367 strlcpy(boot.recovery, "recovery\n", sizeof(boot.recovery));
368 set_bootloader_message(&boot);
369}
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800370
Tao Baobef39712015-05-04 18:50:27 -0700371// Read from kernel log into buffer and write out to file.
372static void save_kernel_log(const char* destination) {
373 int klog_buf_len = klogctl(KLOG_SIZE_BUFFER, 0, 0);
Patrick Tjincd055ee2014-12-09 11:26:40 -0800374 if (klog_buf_len <= 0) {
Tao Baobef39712015-05-04 18:50:27 -0700375 LOGE("Error getting klog size: %s\n", strerror(errno));
Patrick Tjincd055ee2014-12-09 11:26:40 -0800376 return;
377 }
378
Tao Baobef39712015-05-04 18:50:27 -0700379 std::string buffer(klog_buf_len, 0);
380 int n = klogctl(KLOG_READ_ALL, &buffer[0], klog_buf_len);
381 if (n == -1) {
382 LOGE("Error in reading klog: %s\n", strerror(errno));
Patrick Tjincd055ee2014-12-09 11:26:40 -0800383 return;
384 }
Tao Baobef39712015-05-04 18:50:27 -0700385 buffer.resize(n);
386 android::base::WriteStringToFile(buffer, destination);
Patrick Tjincd055ee2014-12-09 11:26:40 -0800387}
388
Mark Salyzyna4f701a2016-03-09 14:58:16 -0800389// write content to the current pmsg session.
390static ssize_t __pmsg_write(const char *filename, const char *buf, size_t len) {
391 return __android_log_pmsg_file_write(LOG_ID_SYSTEM, ANDROID_LOG_INFO,
392 filename, buf, len);
393}
394
395static void copy_log_file_to_pmsg(const char* source, const char* destination) {
396 std::string content;
397 android::base::ReadFileToString(source, &content);
398 __pmsg_write(destination, content.c_str(), content.length());
399}
400
Tao Baof0124322015-04-11 02:04:11 +0000401// How much of the temp log we have copied to the copy in cache.
Chih-Hung Hsieh54a27472016-04-18 11:30:55 -0700402static off_t tmplog_offset = 0;
Tao Baof0124322015-04-11 02:04:11 +0000403
Tao Baobef39712015-05-04 18:50:27 -0700404static void copy_log_file(const char* source, const char* destination, bool append) {
405 FILE* dest_fp = fopen_path(destination, append ? "a" : "w");
406 if (dest_fp == nullptr) {
Doug Zongker2c3539e2010-09-29 13:21:30 -0700407 LOGE("Can't open %s\n", destination);
408 } else {
Tao Baobef39712015-05-04 18:50:27 -0700409 FILE* source_fp = fopen(source, "r");
410 if (source_fp != nullptr) {
Tao Baof0124322015-04-11 02:04:11 +0000411 if (append) {
Chih-Hung Hsieh54a27472016-04-18 11:30:55 -0700412 fseeko(source_fp, tmplog_offset, SEEK_SET); // Since last write
Doug Zongker2c3539e2010-09-29 13:21:30 -0700413 }
414 char buf[4096];
Tao Baobef39712015-05-04 18:50:27 -0700415 size_t bytes;
416 while ((bytes = fread(buf, 1, sizeof(buf), source_fp)) != 0) {
417 fwrite(buf, 1, bytes, dest_fp);
Doug Zongker2c3539e2010-09-29 13:21:30 -0700418 }
Tao Baobef39712015-05-04 18:50:27 -0700419 if (append) {
Chih-Hung Hsieh54a27472016-04-18 11:30:55 -0700420 tmplog_offset = ftello(source_fp);
Tao Baobef39712015-05-04 18:50:27 -0700421 }
422 check_and_fclose(source_fp, source);
Doug Zongker2c3539e2010-09-29 13:21:30 -0700423 }
Tao Baobef39712015-05-04 18:50:27 -0700424 check_and_fclose(dest_fp, destination);
Doug Zongker2c3539e2010-09-29 13:21:30 -0700425 }
426}
427
Tao Baobef39712015-05-04 18:50:27 -0700428// Rename last_log -> last_log.1 -> last_log.2 -> ... -> last_log.$max.
429// Similarly rename last_kmsg -> last_kmsg.1 -> ... -> last_kmsg.$max.
430// Overwrite any existing last_log.$max and last_kmsg.$max.
431static void rotate_logs(int max) {
Tao Bao682c34b2015-04-07 17:16:35 -0700432 // Logs should only be rotated once.
433 static bool rotated = false;
434 if (rotated) {
435 return;
436 }
437 rotated = true;
438 ensure_path_mounted(LAST_LOG_FILE);
Tao Baobef39712015-05-04 18:50:27 -0700439 ensure_path_mounted(LAST_KMSG_FILE);
Tao Bao682c34b2015-04-07 17:16:35 -0700440
Tao Bao682c34b2015-04-07 17:16:35 -0700441 for (int i = max-1; i >= 0; --i) {
Tao Bao80e46e02015-06-03 10:49:29 -0700442 std::string old_log = android::base::StringPrintf("%s", LAST_LOG_FILE);
443 if (i > 0) {
444 old_log += "." + std::to_string(i);
445 }
Tao Baobef39712015-05-04 18:50:27 -0700446 std::string new_log = android::base::StringPrintf("%s.%d", LAST_LOG_FILE, i+1);
447 // Ignore errors if old_log doesn't exist.
448 rename(old_log.c_str(), new_log.c_str());
449
Tao Bao80e46e02015-06-03 10:49:29 -0700450 std::string old_kmsg = android::base::StringPrintf("%s", LAST_KMSG_FILE);
451 if (i > 0) {
452 old_kmsg += "." + std::to_string(i);
453 }
Tao Baobef39712015-05-04 18:50:27 -0700454 std::string new_kmsg = android::base::StringPrintf("%s.%d", LAST_KMSG_FILE, i+1);
455 rename(old_kmsg.c_str(), new_kmsg.c_str());
Doug Zongkerda1ebae2013-05-16 11:23:48 -0700456 }
457}
Doug Zongker2c3539e2010-09-29 13:21:30 -0700458
Tao Bao682c34b2015-04-07 17:16:35 -0700459static void copy_logs() {
460 // We only rotate and record the log of the current session if there are
461 // actual attempts to modify the flash, such as wipes, installs from BCB
462 // or menu selections. This is to avoid unnecessary rotation (and
463 // possible deletion) of log files, if it does not do anything loggable.
464 if (!modified_flash) {
465 return;
466 }
467
Mark Salyzyna4f701a2016-03-09 14:58:16 -0800468 // Always write to pmsg, this allows the OTA logs to be caught in logcat -L
469 copy_log_file_to_pmsg(TEMPORARY_LOG_FILE, LAST_LOG_FILE);
470 copy_log_file_to_pmsg(TEMPORARY_INSTALL_FILE, LAST_INSTALL_FILE);
471
472 // We can do nothing for now if there's no /cache partition.
473 if (!has_cache) {
474 return;
475 }
476
Tao Baobef39712015-05-04 18:50:27 -0700477 rotate_logs(KEEP_LOG_COUNT);
Tao Bao682c34b2015-04-07 17:16:35 -0700478
Doug Zongkerf24fd7e2013-07-02 11:43:25 -0700479 // Copy logs to cache so the system can find out what happened.
Tao Baof0124322015-04-11 02:04:11 +0000480 copy_log_file(TEMPORARY_LOG_FILE, LOG_FILE, true);
481 copy_log_file(TEMPORARY_LOG_FILE, LAST_LOG_FILE, false);
482 copy_log_file(TEMPORARY_INSTALL_FILE, LAST_INSTALL_FILE, false);
483 save_kernel_log(LAST_KMSG_FILE);
Doug Zongkerf24fd7e2013-07-02 11:43:25 -0700484 chmod(LOG_FILE, 0600);
485 chown(LOG_FILE, 1000, 1000); // system user
Tao Baof0124322015-04-11 02:04:11 +0000486 chmod(LAST_KMSG_FILE, 0600);
487 chown(LAST_KMSG_FILE, 1000, 1000); // system user
Doug Zongkerf24fd7e2013-07-02 11:43:25 -0700488 chmod(LAST_LOG_FILE, 0640);
489 chmod(LAST_INSTALL_FILE, 0644);
490 sync();
491}
492
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800493// clear the recovery command and prepare to boot a (hopefully working) system,
Tianjie Xuc14d95d2016-03-24 11:50:34 -0700494// copy our log file to cache as well (for the system to read). This function is
495// idempotent: call it as many times as you like.
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800496static void
Tianjie Xuc14d95d2016-03-24 11:50:34 -0700497finish_recovery() {
Doug Zongker4f33e552012-08-23 13:16:12 -0700498 // Save the locale to cache, so if recovery is next started up
499 // without a --locale argument (eg, directly from the bootloader)
500 // it will use the last-known locale.
Mark Salyzyna4f701a2016-03-09 14:58:16 -0800501 if (locale != NULL) {
502 size_t len = strlen(locale);
503 __pmsg_write(LOCALE_FILE, locale, len);
504 if (has_cache) {
505 LOGI("Saving locale \"%s\"\n", locale);
506 FILE* fp = fopen_path(LOCALE_FILE, "w");
Johan Harvyl85691422016-08-05 15:42:59 +0200507 if (fp != NULL) {
508 fwrite(locale, 1, len, fp);
509 fflush(fp);
510 fsync(fileno(fp));
511 check_and_fclose(fp, LOCALE_FILE);
512 }
Mark Salyzyna4f701a2016-03-09 14:58:16 -0800513 }
Doug Zongker4f33e552012-08-23 13:16:12 -0700514 }
515
Doug Zongkerf24fd7e2013-07-02 11:43:25 -0700516 copy_logs();
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800517
Doug Zongkere5d5ac72012-04-12 11:01:22 -0700518 // Reset to normal system boot so recovery won't cycle indefinitely.
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800519 struct bootloader_message boot;
520 memset(&boot, 0, sizeof(boot));
521 set_bootloader_message(&boot);
522
523 // Remove the command file, so recovery won't repeat indefinitely.
Tao Bao26112e52016-02-25 12:29:40 -0800524 if (has_cache) {
525 if (ensure_path_mounted(COMMAND_FILE) != 0 || (unlink(COMMAND_FILE) && errno != ENOENT)) {
526 LOGW("Can't unlink %s\n", COMMAND_FILE);
527 }
528 ensure_path_unmounted(CACHE_ROOT);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800529 }
530
531 sync(); // For good measure.
532}
533
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700534typedef struct _saved_log_file {
535 char* name;
536 struct stat st;
537 unsigned char* data;
538 struct _saved_log_file* next;
539} saved_log_file;
540
Elliott Hughes945548e2015-06-05 17:59:56 -0700541static bool erase_volume(const char* volume) {
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700542 bool is_cache = (strcmp(volume, CACHE_ROOT) == 0);
543
Doug Zongker02ec6b82012-08-22 17:26:40 -0700544 ui->SetBackground(RecoveryUI::ERASING);
Doug Zongker211aebc2011-10-28 15:13:10 -0700545 ui->SetProgressType(RecoveryUI::INDETERMINATE);
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700546
547 saved_log_file* head = NULL;
548
549 if (is_cache) {
Tao Baobef39712015-05-04 18:50:27 -0700550 // If we're reformatting /cache, we load any past logs
551 // (i.e. "/cache/recovery/last_*") and the current log
552 // ("/cache/recovery/log") into memory, so we can restore them after
553 // the reformat.
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700554
555 ensure_path_mounted(volume);
556
557 DIR* d;
558 struct dirent* de;
559 d = opendir(CACHE_LOG_DIR);
560 if (d) {
561 char path[PATH_MAX];
562 strcpy(path, CACHE_LOG_DIR);
563 strcat(path, "/");
564 int path_len = strlen(path);
565 while ((de = readdir(d)) != NULL) {
Tao Baobef39712015-05-04 18:50:27 -0700566 if (strncmp(de->d_name, "last_", 5) == 0 || strcmp(de->d_name, "log") == 0) {
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700567 saved_log_file* p = (saved_log_file*) malloc(sizeof(saved_log_file));
568 strcpy(path+path_len, de->d_name);
569 p->name = strdup(path);
570 if (stat(path, &(p->st)) == 0) {
571 // truncate files to 512kb
572 if (p->st.st_size > (1 << 19)) {
573 p->st.st_size = 1 << 19;
574 }
575 p->data = (unsigned char*) malloc(p->st.st_size);
576 FILE* f = fopen(path, "rb");
577 fread(p->data, 1, p->st.st_size, f);
578 fclose(f);
579 p->next = head;
580 head = p;
581 } else {
582 free(p);
583 }
584 }
585 }
586 closedir(d);
587 } else {
588 if (errno != ENOENT) {
589 printf("opendir failed: %s\n", strerror(errno));
590 }
591 }
592 }
593
Doug Zongker211aebc2011-10-28 15:13:10 -0700594 ui->Print("Formatting %s...\n", volume);
Doug Zongker2c3539e2010-09-29 13:21:30 -0700595
Doug Zongkerd0181b82011-10-19 10:51:12 -0700596 ensure_path_unmounted(volume);
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700597 int result = format_volume(volume);
Doug Zongkerd0181b82011-10-19 10:51:12 -0700598
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700599 if (is_cache) {
600 while (head) {
601 FILE* f = fopen_path(head->name, "wb");
602 if (f) {
603 fwrite(head->data, 1, head->st.st_size, f);
604 fclose(f);
605 chmod(head->name, head->st.st_mode);
606 chown(head->name, head->st.st_uid, head->st.st_gid);
607 }
608 free(head->name);
609 free(head->data);
610 saved_log_file* temp = head->next;
611 free(head);
612 head = temp;
613 }
614
Tao Baof0124322015-04-11 02:04:11 +0000615 // Any part of the log we'd copied to cache is now gone.
616 // Reset the pointer so we copy from the beginning of the temp
617 // log.
618 tmplog_offset = 0;
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700619 copy_logs();
Doug Zongker2c3539e2010-09-29 13:21:30 -0700620 }
621
Elliott Hughes945548e2015-06-05 17:59:56 -0700622 return (result == 0);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800623}
624
Doug Zongkerf93d8162009-09-22 15:16:02 -0700625static int
Doug Zongker28ce47c2011-10-28 10:33:05 -0700626get_menu_selection(const char* const * headers, const char* const * items,
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700627 int menu_only, int initial_selection, Device* device) {
Doug Zongkerf93d8162009-09-22 15:16:02 -0700628 // throw away keys pressed previously, so user doesn't
629 // accidentally trigger menu items.
Doug Zongker211aebc2011-10-28 15:13:10 -0700630 ui->FlushKeys();
Doug Zongkerf93d8162009-09-22 15:16:02 -0700631
Doug Zongker211aebc2011-10-28 15:13:10 -0700632 ui->StartMenu(headers, items, initial_selection);
Doug Zongker8674a722010-09-15 11:08:23 -0700633 int selected = initial_selection;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800634 int chosen_item = -1;
635
Doug Zongkerf93d8162009-09-22 15:16:02 -0700636 while (chosen_item < 0) {
Doug Zongker211aebc2011-10-28 15:13:10 -0700637 int key = ui->WaitKey();
638 int visible = ui->IsTextVisible();
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800639
Doug Zongker5cae4452011-01-25 13:15:30 -0800640 if (key == -1) { // ui_wait_key() timed out
Doug Zongker211aebc2011-10-28 15:13:10 -0700641 if (ui->WasTextEverVisible()) {
Doug Zongker5cae4452011-01-25 13:15:30 -0800642 continue;
643 } else {
644 LOGI("timed out waiting for key input; rebooting.\n");
Doug Zongker211aebc2011-10-28 15:13:10 -0700645 ui->EndMenu();
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700646 return 0; // XXX fixme
Doug Zongker5cae4452011-01-25 13:15:30 -0800647 }
648 }
649
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700650 int action = device->HandleMenuKey(key, visible);
Doug Zongkerddd6a282009-06-09 12:22:33 -0700651
652 if (action < 0) {
653 switch (action) {
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700654 case Device::kHighlightUp:
Elliott Hughes642aaa72015-04-10 12:47:46 -0700655 selected = ui->SelectMenu(--selected);
Doug Zongkerddd6a282009-06-09 12:22:33 -0700656 break;
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700657 case Device::kHighlightDown:
Elliott Hughes642aaa72015-04-10 12:47:46 -0700658 selected = ui->SelectMenu(++selected);
Doug Zongkerddd6a282009-06-09 12:22:33 -0700659 break;
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700660 case Device::kInvokeItem:
Doug Zongkerddd6a282009-06-09 12:22:33 -0700661 chosen_item = selected;
662 break;
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700663 case Device::kNoAction:
Doug Zongkerddd6a282009-06-09 12:22:33 -0700664 break;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800665 }
Doug Zongkerf93d8162009-09-22 15:16:02 -0700666 } else if (!menu_only) {
Doug Zongkerddd6a282009-06-09 12:22:33 -0700667 chosen_item = action;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800668 }
Doug Zongkerf93d8162009-09-22 15:16:02 -0700669 }
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800670
Doug Zongker211aebc2011-10-28 15:13:10 -0700671 ui->EndMenu();
Doug Zongkerf93d8162009-09-22 15:16:02 -0700672 return chosen_item;
673}
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800674
Doug Zongker8674a722010-09-15 11:08:23 -0700675static int compare_string(const void* a, const void* b) {
676 return strcmp(*(const char**)a, *(const char**)b);
677}
678
Doug Zongker93950222014-07-08 14:10:23 -0700679// Returns a malloc'd path, or NULL.
Elliott Hughes30694c92015-03-25 15:16:51 -0700680static char* browse_directory(const char* path, Device* device) {
Michael Ward9d2629c2011-06-23 22:14:24 -0700681 ensure_path_mounted(path);
Doug Zongkerc18eeb82010-09-21 16:49:26 -0700682
Elliott Hughes30694c92015-03-25 15:16:51 -0700683 DIR* d = opendir(path);
Doug Zongker8674a722010-09-15 11:08:23 -0700684 if (d == NULL) {
685 LOGE("error opening %s: %s\n", path, strerror(errno));
Doug Zongker93950222014-07-08 14:10:23 -0700686 return NULL;
Doug Zongker8674a722010-09-15 11:08:23 -0700687 }
688
Doug Zongker8674a722010-09-15 11:08:23 -0700689 int d_size = 0;
690 int d_alloc = 10;
Doug Zongker28ce47c2011-10-28 10:33:05 -0700691 char** dirs = (char**)malloc(d_alloc * sizeof(char*));
Doug Zongker8674a722010-09-15 11:08:23 -0700692 int z_size = 1;
693 int z_alloc = 10;
Doug Zongker28ce47c2011-10-28 10:33:05 -0700694 char** zips = (char**)malloc(z_alloc * sizeof(char*));
Doug Zongker8674a722010-09-15 11:08:23 -0700695 zips[0] = strdup("../");
696
Elliott Hughes30694c92015-03-25 15:16:51 -0700697 struct dirent* de;
Doug Zongker8674a722010-09-15 11:08:23 -0700698 while ((de = readdir(d)) != NULL) {
699 int name_len = strlen(de->d_name);
700
701 if (de->d_type == DT_DIR) {
702 // skip "." and ".." entries
703 if (name_len == 1 && de->d_name[0] == '.') continue;
704 if (name_len == 2 && de->d_name[0] == '.' &&
705 de->d_name[1] == '.') continue;
706
707 if (d_size >= d_alloc) {
708 d_alloc *= 2;
Doug Zongker28ce47c2011-10-28 10:33:05 -0700709 dirs = (char**)realloc(dirs, d_alloc * sizeof(char*));
Doug Zongker8674a722010-09-15 11:08:23 -0700710 }
Doug Zongker28ce47c2011-10-28 10:33:05 -0700711 dirs[d_size] = (char*)malloc(name_len + 2);
Doug Zongker8674a722010-09-15 11:08:23 -0700712 strcpy(dirs[d_size], de->d_name);
713 dirs[d_size][name_len] = '/';
714 dirs[d_size][name_len+1] = '\0';
715 ++d_size;
716 } else if (de->d_type == DT_REG &&
717 name_len >= 4 &&
718 strncasecmp(de->d_name + (name_len-4), ".zip", 4) == 0) {
719 if (z_size >= z_alloc) {
720 z_alloc *= 2;
Doug Zongker28ce47c2011-10-28 10:33:05 -0700721 zips = (char**)realloc(zips, z_alloc * sizeof(char*));
Doug Zongker8674a722010-09-15 11:08:23 -0700722 }
723 zips[z_size++] = strdup(de->d_name);
724 }
725 }
726 closedir(d);
727
728 qsort(dirs, d_size, sizeof(char*), compare_string);
729 qsort(zips, z_size, sizeof(char*), compare_string);
730
731 // append dirs to the zips list
732 if (d_size + z_size + 1 > z_alloc) {
733 z_alloc = d_size + z_size + 1;
Doug Zongker28ce47c2011-10-28 10:33:05 -0700734 zips = (char**)realloc(zips, z_alloc * sizeof(char*));
Doug Zongker8674a722010-09-15 11:08:23 -0700735 }
736 memcpy(zips + z_size, dirs, d_size * sizeof(char*));
737 free(dirs);
738 z_size += d_size;
739 zips[z_size] = NULL;
740
Elliott Hughes8fd86d72015-04-13 14:36:02 -0700741 const char* headers[] = { "Choose a package to install:", path, NULL };
Elliott Hughes30694c92015-03-25 15:16:51 -0700742
Doug Zongker93950222014-07-08 14:10:23 -0700743 char* result;
Doug Zongker8674a722010-09-15 11:08:23 -0700744 int chosen_item = 0;
Doug Zongker93950222014-07-08 14:10:23 -0700745 while (true) {
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700746 chosen_item = get_menu_selection(headers, zips, 1, chosen_item, device);
Doug Zongker8674a722010-09-15 11:08:23 -0700747
748 char* item = zips[chosen_item];
749 int item_len = strlen(item);
750 if (chosen_item == 0) { // item 0 is always "../"
Michael Ward9d2629c2011-06-23 22:14:24 -0700751 // go up but continue browsing (if the caller is update_directory)
Doug Zongker93950222014-07-08 14:10:23 -0700752 result = NULL;
Doug Zongker8674a722010-09-15 11:08:23 -0700753 break;
754 }
Doug Zongker93950222014-07-08 14:10:23 -0700755
756 char new_path[PATH_MAX];
757 strlcpy(new_path, path, PATH_MAX);
758 strlcat(new_path, "/", PATH_MAX);
759 strlcat(new_path, item, PATH_MAX);
760
761 if (item[item_len-1] == '/') {
762 // recurse down into a subdirectory
763 new_path[strlen(new_path)-1] = '\0'; // truncate the trailing '/'
764 result = browse_directory(new_path, device);
765 if (result) break;
766 } else {
767 // selected a zip file: return the malloc'd path to the caller.
768 result = strdup(new_path);
769 break;
770 }
771 }
Doug Zongker8674a722010-09-15 11:08:23 -0700772
Elliott Hughes30694c92015-03-25 15:16:51 -0700773 for (int i = 0; i < z_size; ++i) free(zips[i]);
Doug Zongker8674a722010-09-15 11:08:23 -0700774 free(zips);
Doug Zongker8674a722010-09-15 11:08:23 -0700775
776 return result;
777}
778
Elliott Hughes30694c92015-03-25 15:16:51 -0700779static bool yes_no(Device* device, const char* question1, const char* question2) {
Elliott Hughes8fd86d72015-04-13 14:36:02 -0700780 const char* headers[] = { question1, question2, NULL };
Elliott Hughes30694c92015-03-25 15:16:51 -0700781 const char* items[] = { " No", " Yes", NULL };
Doug Zongkerddd6a282009-06-09 12:22:33 -0700782
Elliott Hughes30694c92015-03-25 15:16:51 -0700783 int chosen_item = get_menu_selection(headers, items, 1, 0, device);
784 return (chosen_item == 1);
785}
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800786
Tao Baoe39a9bc2015-03-31 12:19:05 -0700787// Return true on success.
788static bool wipe_data(int should_confirm, Device* device) {
789 if (should_confirm && !yes_no(device, "Wipe all user data?", " THIS CAN NOT BE UNDONE!")) {
790 return false;
Doug Zongkerf93d8162009-09-22 15:16:02 -0700791 }
Doug Zongker1066d2c2009-04-01 13:57:40 -0700792
Tao Bao682c34b2015-04-07 17:16:35 -0700793 modified_flash = true;
794
Doug Zongker211aebc2011-10-28 15:13:10 -0700795 ui->Print("\n-- Wiping data...\n");
Elliott Hughes945548e2015-06-05 17:59:56 -0700796 bool success =
797 device->PreWipeData() &&
798 erase_volume("/data") &&
Tao Bao26112e52016-02-25 12:29:40 -0800799 (has_cache ? erase_volume("/cache") : true) &&
Elliott Hughes945548e2015-06-05 17:59:56 -0700800 device->PostWipeData();
801 ui->Print("Data wipe %s.\n", success ? "complete" : "failed");
802 return success;
Doug Zongkerf93d8162009-09-22 15:16:02 -0700803}
804
Tao Baoe39a9bc2015-03-31 12:19:05 -0700805// Return true on success.
806static bool wipe_cache(bool should_confirm, Device* device) {
Tao Bao26112e52016-02-25 12:29:40 -0800807 if (!has_cache) {
808 ui->Print("No /cache partition found.\n");
809 return false;
810 }
811
Elliott Hughes30694c92015-03-25 15:16:51 -0700812 if (should_confirm && !yes_no(device, "Wipe cache?", " THIS CAN NOT BE UNDONE!")) {
Tao Baoe39a9bc2015-03-31 12:19:05 -0700813 return false;
Elliott Hughes30694c92015-03-25 15:16:51 -0700814 }
815
Tao Bao682c34b2015-04-07 17:16:35 -0700816 modified_flash = true;
817
Elliott Hughes30694c92015-03-25 15:16:51 -0700818 ui->Print("\n-- Wiping cache...\n");
Elliott Hughes945548e2015-06-05 17:59:56 -0700819 bool success = erase_volume("/cache");
820 ui->Print("Cache wipe %s.\n", success ? "complete" : "failed");
821 return success;
Elliott Hughes30694c92015-03-25 15:16:51 -0700822}
823
Tao Bao862a4c12016-06-02 11:16:50 -0700824// Secure-wipe a given partition. It uses BLKSECDISCARD, if supported.
825// Otherwise, it goes with BLKDISCARD (if device supports BLKDISCARDZEROES) or
826// BLKZEROOUT.
827static bool secure_wipe_partition(const std::string& partition) {
828 android::base::unique_fd fd(TEMP_FAILURE_RETRY(open(partition.c_str(), O_WRONLY)));
829 if (fd == -1) {
830 LOGE("failed to open \"%s\": %s\n", partition.c_str(), strerror(errno));
831 return false;
832 }
833
834 uint64_t range[2] = {0, 0};
835 if (ioctl(fd, BLKGETSIZE64, &range[1]) == -1 || range[1] == 0) {
836 LOGE("failed to get partition size: %s\n", strerror(errno));
837 return false;
838 }
839 printf("Secure-wiping \"%s\" from %" PRIu64 " to %" PRIu64 ".\n",
840 partition.c_str(), range[0], range[1]);
841
842 printf("Trying BLKSECDISCARD...\t");
843 if (ioctl(fd, BLKSECDISCARD, &range) == -1) {
844 printf("failed: %s\n", strerror(errno));
845
846 // Use BLKDISCARD if it zeroes out blocks, otherwise use BLKZEROOUT.
847 unsigned int zeroes;
848 if (ioctl(fd, BLKDISCARDZEROES, &zeroes) == 0 && zeroes != 0) {
849 printf("Trying BLKDISCARD...\t");
850 if (ioctl(fd, BLKDISCARD, &range) == -1) {
851 printf("failed: %s\n", strerror(errno));
852 return false;
853 }
854 } else {
855 printf("Trying BLKZEROOUT...\t");
856 if (ioctl(fd, BLKZEROOUT, &range) == -1) {
857 printf("failed: %s\n", strerror(errno));
858 return false;
859 }
860 }
861 }
862
863 printf("done\n");
864 return true;
865}
866
867// Brick the current device, with a secure wipe of all the partitions in
868// RECOVERY_BRICK.
869static bool brick_device() {
870 ui->SetBackground(RecoveryUI::ERASING);
871 ui->SetProgressType(RecoveryUI::INDETERMINATE);
872
873 std::string partition_list;
874 if (!android::base::ReadFileToString(RECOVERY_BRICK, &partition_list)) {
875 LOGE("failed to read \"%s\".\n", RECOVERY_BRICK);
876 return false;
877 }
878
879 std::vector<std::string> lines = android::base::Split(partition_list, "\n");
880 for (const std::string& line : lines) {
881 std::string partition = android::base::Trim(line);
882 // Ignore '#' comment or empty lines.
883 if (android::base::StartsWith(partition, "#") || partition.empty()) {
884 continue;
885 }
886
887 // Proceed anyway even if it fails to wipe some partition.
888 secure_wipe_partition(partition);
889 }
890 return true;
891}
892
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700893static void choose_recovery_file(Device* device) {
Elliott Hughesc0491632015-05-06 12:40:05 -0700894 // "Back" + KEEP_LOG_COUNT * 2 + terminating nullptr entry
895 char* entries[1 + KEEP_LOG_COUNT * 2 + 1];
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700896 memset(entries, 0, sizeof(entries));
897
Tao Baobef39712015-05-04 18:50:27 -0700898 unsigned int n = 0;
Patrick Tjincd055ee2014-12-09 11:26:40 -0800899
Tianjie Xua54f75e2016-08-17 12:02:46 -0700900 if (has_cache) {
901 // Add LAST_LOG_FILE + LAST_LOG_FILE.x
902 // Add LAST_KMSG_FILE + LAST_KMSG_FILE.x
903 for (int i = 0; i < KEEP_LOG_COUNT; i++) {
904 char* log_file;
905 int ret;
906 ret = (i == 0) ? asprintf(&log_file, "%s", LAST_LOG_FILE) :
907 asprintf(&log_file, "%s.%d", LAST_LOG_FILE, i);
908 if (ret == -1) {
909 // memory allocation failure - return early. Should never happen.
910 return;
911 }
912 if ((ensure_path_mounted(log_file) != 0) || (access(log_file, R_OK) == -1)) {
913 free(log_file);
914 } else {
915 entries[n++] = log_file;
916 }
Tao Baobef39712015-05-04 18:50:27 -0700917
Tianjie Xua54f75e2016-08-17 12:02:46 -0700918 char* kmsg_file;
919 ret = (i == 0) ? asprintf(&kmsg_file, "%s", LAST_KMSG_FILE) :
920 asprintf(&kmsg_file, "%s.%d", LAST_KMSG_FILE, i);
921 if (ret == -1) {
922 // memory allocation failure - return early. Should never happen.
923 return;
924 }
925 if ((ensure_path_mounted(kmsg_file) != 0) || (access(kmsg_file, R_OK) == -1)) {
926 free(kmsg_file);
927 } else {
928 entries[n++] = kmsg_file;
929 }
Tao Baobef39712015-05-04 18:50:27 -0700930 }
Tianjie Xua54f75e2016-08-17 12:02:46 -0700931 } else {
932 // If cache partition is not found, view /tmp/recovery.log instead.
933 ui->Print("No /cache partition found.\n");
934 if (access(TEMPORARY_LOG_FILE, R_OK) == -1) {
935 return;
936 } else{
937 entries[n++] = strdup(TEMPORARY_LOG_FILE);
Tao Baobef39712015-05-04 18:50:27 -0700938 }
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700939 }
940
Elliott Hughesc0491632015-05-06 12:40:05 -0700941 entries[n++] = strdup("Back");
942
Tao Baobef39712015-05-04 18:50:27 -0700943 const char* headers[] = { "Select file to view", nullptr };
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700944
Elliott Hughes8de52072015-04-08 20:06:50 -0700945 while (true) {
Elliott Hughes30694c92015-03-25 15:16:51 -0700946 int chosen_item = get_menu_selection(headers, entries, 1, 0, device);
Elliott Hughesc0491632015-05-06 12:40:05 -0700947 if (strcmp(entries[chosen_item], "Back") == 0) break;
Elliott Hughes8de52072015-04-08 20:06:50 -0700948
Elliott Hughes8de52072015-04-08 20:06:50 -0700949 ui->ShowFile(entries[chosen_item]);
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700950 }
951
Tao Baobef39712015-05-04 18:50:27 -0700952 for (size_t i = 0; i < (sizeof(entries) / sizeof(*entries)); i++) {
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700953 free(entries[i]);
954 }
955}
956
Tao Baocdcf28f2016-01-13 15:05:20 -0800957// How long (in seconds) we wait for the fuse-provided package file to
958// appear, before timing out.
959#define SDCARD_INSTALL_TIMEOUT 10
960
Tao Bao145d8612015-03-25 15:51:15 -0700961static int apply_from_sdcard(Device* device, bool* wipe_cache) {
Tao Bao682c34b2015-04-07 17:16:35 -0700962 modified_flash = true;
963
Christian Poetzsch4ec58a42015-02-19 10:42:39 +0000964 if (ensure_path_mounted(SDCARD_ROOT) != 0) {
965 ui->Print("\n-- Couldn't mount %s.\n", SDCARD_ROOT);
966 return INSTALL_ERROR;
967 }
968
969 char* path = browse_directory(SDCARD_ROOT, device);
970 if (path == NULL) {
Elliott Hughes018ed312015-04-08 16:51:36 -0700971 ui->Print("\n-- No package file selected.\n");
caozhiyuanb4effb92015-06-10 16:46:38 +0800972 ensure_path_unmounted(SDCARD_ROOT);
Christian Poetzsch4ec58a42015-02-19 10:42:39 +0000973 return INSTALL_ERROR;
974 }
975
976 ui->Print("\n-- Install %s ...\n", path);
977 set_sdcard_update_bootloader_message();
Christian Poetzsch4ec58a42015-02-19 10:42:39 +0000978
Tao Baocdcf28f2016-01-13 15:05:20 -0800979 // We used to use fuse in a thread as opposed to a process. Since accessing
980 // through fuse involves going from kernel to userspace to kernel, it leads
981 // to deadlock when a page fault occurs. (Bug: 26313124)
982 pid_t child;
983 if ((child = fork()) == 0) {
984 bool status = start_sdcard_fuse(path);
985
986 _exit(status ? EXIT_SUCCESS : EXIT_FAILURE);
987 }
988
989 // FUSE_SIDELOAD_HOST_PATHNAME will start to exist once the fuse in child
990 // process is ready.
991 int result = INSTALL_ERROR;
992 int status;
993 bool waited = false;
994 for (int i = 0; i < SDCARD_INSTALL_TIMEOUT; ++i) {
995 if (waitpid(child, &status, WNOHANG) == -1) {
996 result = INSTALL_ERROR;
997 waited = true;
998 break;
999 }
1000
1001 struct stat sb;
1002 if (stat(FUSE_SIDELOAD_HOST_PATHNAME, &sb) == -1) {
1003 if (errno == ENOENT && i < SDCARD_INSTALL_TIMEOUT-1) {
1004 sleep(1);
1005 continue;
1006 } else {
1007 LOGE("Timed out waiting for the fuse-provided package.\n");
1008 result = INSTALL_ERROR;
1009 kill(child, SIGKILL);
1010 break;
1011 }
1012 }
1013
1014 result = install_package(FUSE_SIDELOAD_HOST_PATHNAME, wipe_cache,
Christian Poetzsch4ec58a42015-02-19 10:42:39 +00001015 TEMPORARY_INSTALL_FILE, false);
Tao Baocdcf28f2016-01-13 15:05:20 -08001016 break;
1017 }
Christian Poetzsch4ec58a42015-02-19 10:42:39 +00001018
Tao Baocdcf28f2016-01-13 15:05:20 -08001019 if (!waited) {
1020 // Calling stat() on this magic filename signals the fuse
1021 // filesystem to shut down.
1022 struct stat sb;
1023 stat(FUSE_SIDELOAD_HOST_EXIT_PATHNAME, &sb);
1024
1025 waitpid(child, &status, 0);
1026 }
1027
1028 if (!WIFEXITED(status) || WEXITSTATUS(status) != 0) {
1029 LOGE("Error exit from the fuse process: %d\n", WEXITSTATUS(status));
1030 }
1031
Christian Poetzsch4ec58a42015-02-19 10:42:39 +00001032 ensure_path_unmounted(SDCARD_ROOT);
Tao Baocdcf28f2016-01-13 15:05:20 -08001033 return result;
Christian Poetzsch4ec58a42015-02-19 10:42:39 +00001034}
1035
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001036// Return REBOOT, SHUTDOWN, or REBOOT_BOOTLOADER. Returning NO_ACTION
1037// means to take the default, which is to reboot or shutdown depending
1038// on if the --shutdown_after flag was passed to recovery.
1039static Device::BuiltinAction
Doug Zongker6c8553d2012-09-24 10:40:47 -07001040prompt_and_wait(Device* device, int status) {
Doug Zongkerf93d8162009-09-22 15:16:02 -07001041 for (;;) {
Tianjie Xuc14d95d2016-03-24 11:50:34 -07001042 finish_recovery();
Doug Zongker6c8553d2012-09-24 10:40:47 -07001043 switch (status) {
1044 case INSTALL_SUCCESS:
1045 case INSTALL_NONE:
1046 ui->SetBackground(RecoveryUI::NO_COMMAND);
1047 break;
1048
1049 case INSTALL_ERROR:
1050 case INSTALL_CORRUPT:
1051 ui->SetBackground(RecoveryUI::ERROR);
1052 break;
1053 }
Doug Zongker211aebc2011-10-28 15:13:10 -07001054 ui->SetProgressType(RecoveryUI::EMPTY);
Doug Zongkerf93d8162009-09-22 15:16:02 -07001055
Elliott Hughes8fd86d72015-04-13 14:36:02 -07001056 int chosen_item = get_menu_selection(nullptr, device->GetMenuItems(), 0, 0, device);
Doug Zongkerf93d8162009-09-22 15:16:02 -07001057
1058 // device-specific code may take some action here. It may
1059 // return one of the core actions handled in the switch
1060 // statement below.
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001061 Device::BuiltinAction chosen_action = device->InvokeMenuItem(chosen_item);
Doug Zongkerf93d8162009-09-22 15:16:02 -07001062
Elliott Hughes30694c92015-03-25 15:16:51 -07001063 bool should_wipe_cache = false;
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001064 switch (chosen_action) {
1065 case Device::NO_ACTION:
1066 break;
1067
Doug Zongkerdaefc1d2011-10-31 09:34:15 -07001068 case Device::REBOOT:
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001069 case Device::SHUTDOWN:
1070 case Device::REBOOT_BOOTLOADER:
1071 return chosen_action;
Doug Zongkerf93d8162009-09-22 15:16:02 -07001072
Doug Zongkerdaefc1d2011-10-31 09:34:15 -07001073 case Device::WIPE_DATA:
1074 wipe_data(ui->IsTextVisible(), device);
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001075 if (!ui->IsTextVisible()) return Device::NO_ACTION;
Doug Zongkerf93d8162009-09-22 15:16:02 -07001076 break;
1077
Doug Zongkerdaefc1d2011-10-31 09:34:15 -07001078 case Device::WIPE_CACHE:
Elliott Hughes30694c92015-03-25 15:16:51 -07001079 wipe_cache(ui->IsTextVisible(), device);
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001080 if (!ui->IsTextVisible()) return Device::NO_ACTION;
Doug Zongkerf93d8162009-09-22 15:16:02 -07001081 break;
1082
Christian Poetzsch4ec58a42015-02-19 10:42:39 +00001083 case Device::APPLY_ADB_SIDELOAD:
Elliott Hughesec283402015-04-10 10:01:53 -07001084 case Device::APPLY_SDCARD:
Christian Poetzsch4ec58a42015-02-19 10:42:39 +00001085 {
1086 bool adb = (chosen_action == Device::APPLY_ADB_SIDELOAD);
1087 if (adb) {
Elliott Hughes30694c92015-03-25 15:16:51 -07001088 status = apply_from_adb(ui, &should_wipe_cache, TEMPORARY_INSTALL_FILE);
Doug Zongkerd0181b82011-10-19 10:51:12 -07001089 } else {
Elliott Hughes30694c92015-03-25 15:16:51 -07001090 status = apply_from_sdcard(device, &should_wipe_cache);
Doug Zongkerd0181b82011-10-19 10:51:12 -07001091 }
Doug Zongker945fc682014-07-10 10:50:39 -07001092
Elliott Hughes30694c92015-03-25 15:16:51 -07001093 if (status == INSTALL_SUCCESS && should_wipe_cache) {
Tao Baoe39a9bc2015-03-31 12:19:05 -07001094 if (!wipe_cache(false, device)) {
1095 status = INSTALL_ERROR;
1096 }
Christian Poetzsch4ec58a42015-02-19 10:42:39 +00001097 }
1098
Tao Baoc679f932015-03-30 09:43:49 -07001099 if (status != INSTALL_SUCCESS) {
1100 ui->SetBackground(RecoveryUI::ERROR);
1101 ui->Print("Installation aborted.\n");
1102 copy_logs();
1103 } else if (!ui->IsTextVisible()) {
1104 return Device::NO_ACTION; // reboot if logs aren't visible
1105 } else {
1106 ui->Print("\nInstall from %s complete.\n", adb ? "ADB" : "SD card");
Doug Zongker8674a722010-09-15 11:08:23 -07001107 }
Doug Zongkerf93d8162009-09-22 15:16:02 -07001108 }
1109 break;
Doug Zongkerdaefc1d2011-10-31 09:34:15 -07001110
Elliott Hughesec283402015-04-10 10:01:53 -07001111 case Device::VIEW_RECOVERY_LOGS:
1112 choose_recovery_file(device);
Michael Ward9d2629c2011-06-23 22:14:24 -07001113 break;
Doug Zongker9270a202012-01-09 15:16:13 -08001114
Elliott Hughesec283402015-04-10 10:01:53 -07001115 case Device::MOUNT_SYSTEM:
Tao Baoabb8f772015-07-30 14:43:27 -07001116 char system_root_image[PROPERTY_VALUE_MAX];
1117 property_get("ro.build.system_root_image", system_root_image, "");
1118
1119 // For a system image built with the root directory (i.e.
1120 // system_root_image == "true"), we mount it to /system_root, and symlink /system
1121 // to /system_root/system to make adb shell work (the symlink is created through
1122 // the build system).
1123 // Bug: 22855115
1124 if (strcmp(system_root_image, "true") == 0) {
1125 if (ensure_path_mounted_at("/", "/system_root") != -1) {
1126 ui->Print("Mounted /system.\n");
1127 }
1128 } else {
1129 if (ensure_path_mounted("/system") != -1) {
1130 ui->Print("Mounted /system.\n");
1131 }
Elliott Hughesec283402015-04-10 10:01:53 -07001132 }
Tao Baoabb8f772015-07-30 14:43:27 -07001133
Nick Kralevicha9ad0322014-10-22 18:38:48 -07001134 break;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001135 }
1136 }
1137}
1138
1139static void
Oscar Montemayor05231562009-11-30 08:40:57 -08001140print_property(const char *key, const char *name, void *cookie) {
Doug Zongker56c51052010-07-01 09:18:44 -07001141 printf("%s=%s\n", key, name);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001142}
1143
Doug Zongker02ec6b82012-08-22 17:26:40 -07001144static void
1145load_locale_from_cache() {
1146 FILE* fp = fopen_path(LOCALE_FILE, "r");
1147 char buffer[80];
1148 if (fp != NULL) {
1149 fgets(buffer, sizeof(buffer), fp);
1150 int j = 0;
Doug Zongker5fa8c232012-09-18 12:37:02 -07001151 unsigned int i;
Doug Zongker02ec6b82012-08-22 17:26:40 -07001152 for (i = 0; i < sizeof(buffer) && buffer[i]; ++i) {
1153 if (!isspace(buffer[i])) {
1154 buffer[j++] = buffer[i];
1155 }
1156 }
1157 buffer[j] = 0;
1158 locale = strdup(buffer);
Devin Kim6016d082012-10-08 09:47:37 -07001159 check_and_fclose(fp, LOCALE_FILE);
Doug Zongker02ec6b82012-08-22 17:26:40 -07001160 }
1161}
1162
Doug Zongker7c3ae452013-05-14 11:03:02 -07001163static RecoveryUI* gCurrentUI = NULL;
1164
1165void
1166ui_print(const char* format, ...) {
1167 char buffer[256];
1168
1169 va_list ap;
1170 va_start(ap, format);
1171 vsnprintf(buffer, sizeof(buffer), format, ap);
1172 va_end(ap);
1173
1174 if (gCurrentUI != NULL) {
1175 gCurrentUI->Print("%s", buffer);
1176 } else {
1177 fputs(buffer, stdout);
1178 }
1179}
1180
Yabin Cui53e7a062016-02-17 12:21:52 -08001181static bool is_battery_ok() {
1182 struct healthd_config healthd_config = {
1183 .batteryStatusPath = android::String8(android::String8::kEmptyString),
1184 .batteryHealthPath = android::String8(android::String8::kEmptyString),
1185 .batteryPresentPath = android::String8(android::String8::kEmptyString),
1186 .batteryCapacityPath = android::String8(android::String8::kEmptyString),
1187 .batteryVoltagePath = android::String8(android::String8::kEmptyString),
1188 .batteryTemperaturePath = android::String8(android::String8::kEmptyString),
1189 .batteryTechnologyPath = android::String8(android::String8::kEmptyString),
1190 .batteryCurrentNowPath = android::String8(android::String8::kEmptyString),
1191 .batteryCurrentAvgPath = android::String8(android::String8::kEmptyString),
1192 .batteryChargeCounterPath = android::String8(android::String8::kEmptyString),
1193 .batteryFullChargePath = android::String8(android::String8::kEmptyString),
1194 .batteryCycleCountPath = android::String8(android::String8::kEmptyString),
1195 .energyCounter = NULL,
1196 .boot_min_cap = 0,
1197 .screen_on = NULL
1198 };
1199 healthd_board_init(&healthd_config);
1200
1201 android::BatteryMonitor monitor;
1202 monitor.init(&healthd_config);
1203
1204 int wait_second = 0;
1205 while (true) {
1206 int charge_status = monitor.getChargeStatus();
1207 // Treat unknown status as charged.
1208 bool charged = (charge_status != android::BATTERY_STATUS_DISCHARGING &&
1209 charge_status != android::BATTERY_STATUS_NOT_CHARGING);
1210 android::BatteryProperty capacity;
1211 android::status_t status = monitor.getProperty(android::BATTERY_PROP_CAPACITY, &capacity);
1212 ui_print("charge_status %d, charged %d, status %d, capacity %lld\n", charge_status,
1213 charged, status, capacity.valueInt64);
1214 // At startup, the battery drivers in devices like N5X/N6P take some time to load
1215 // the battery profile. Before the load finishes, it reports value 50 as a fake
1216 // capacity. BATTERY_READ_TIMEOUT_IN_SEC is set that the battery drivers are expected
1217 // to finish loading the battery profile earlier than 10 seconds after kernel startup.
1218 if (status == 0 && capacity.valueInt64 == 50) {
1219 if (wait_second < BATTERY_READ_TIMEOUT_IN_SEC) {
1220 sleep(1);
1221 wait_second++;
1222 continue;
1223 }
1224 }
1225 // If we can't read battery percentage, it may be a device without battery. In this
1226 // situation, use 100 as a fake battery percentage.
1227 if (status != 0) {
1228 capacity.valueInt64 = 100;
1229 }
1230 return (charged && capacity.valueInt64 >= BATTERY_WITH_CHARGER_OK_PERCENTAGE) ||
1231 (!charged && capacity.valueInt64 >= BATTERY_OK_PERCENTAGE);
1232 }
1233}
1234
Tianjie Xu3c62b672016-02-05 18:25:58 -08001235static void set_retry_bootloader_message(int retry_count, int argc, char** argv) {
1236 struct bootloader_message boot {};
1237 strlcpy(boot.command, "boot-recovery", sizeof(boot.command));
1238 strlcpy(boot.recovery, "recovery\n", sizeof(boot.recovery));
1239
1240 for (int i = 1; i < argc; ++i) {
1241 if (strstr(argv[i], "retry_count") == nullptr) {
1242 strlcat(boot.recovery, argv[i], sizeof(boot.recovery));
1243 strlcat(boot.recovery, "\n", sizeof(boot.recovery));
1244 }
1245 }
1246
1247 // Initialize counter to 1 if it's not in BCB, otherwise increment it by 1.
1248 if (retry_count == 0) {
1249 strlcat(boot.recovery, "--retry_count=1\n", sizeof(boot.recovery));
1250 } else {
1251 char buffer[20];
1252 snprintf(buffer, sizeof(buffer), "--retry_count=%d\n", retry_count+1);
1253 strlcat(boot.recovery, buffer, sizeof(boot.recovery));
1254 }
1255 set_bootloader_message(&boot);
1256}
1257
Mark Salyzyna4f701a2016-03-09 14:58:16 -08001258static ssize_t logbasename(
1259 log_id_t /* logId */,
1260 char /* prio */,
1261 const char *filename,
1262 const char * /* buf */, size_t len,
1263 void *arg) {
1264 if (strstr(LAST_KMSG_FILE, filename) ||
1265 strstr(LAST_LOG_FILE, filename)) {
1266 bool *doRotate = reinterpret_cast<bool *>(arg);
1267 *doRotate = true;
1268 }
1269 return len;
1270}
1271
1272static ssize_t logrotate(
1273 log_id_t logId,
1274 char prio,
1275 const char *filename,
1276 const char *buf, size_t len,
1277 void *arg) {
1278 bool *doRotate = reinterpret_cast<bool *>(arg);
1279 if (!*doRotate) {
1280 return __android_log_pmsg_file_write(logId, prio, filename, buf, len);
1281 }
1282
1283 std::string name(filename);
Chih-Hung Hsieh23abfd32016-07-27 10:19:47 -07001284 size_t dot = name.find_last_of('.');
Mark Salyzyna4f701a2016-03-09 14:58:16 -08001285 std::string sub = name.substr(0, dot);
1286
1287 if (!strstr(LAST_KMSG_FILE, sub.c_str()) &&
1288 !strstr(LAST_LOG_FILE, sub.c_str())) {
1289 return __android_log_pmsg_file_write(logId, prio, filename, buf, len);
1290 }
1291
1292 // filename rotation
1293 if (dot == std::string::npos) {
1294 name += ".1";
1295 } else {
1296 std::string number = name.substr(dot + 1);
1297 if (!isdigit(number.data()[0])) {
1298 name += ".1";
1299 } else {
Chih-Hung Hsieh54a27472016-04-18 11:30:55 -07001300 auto i = std::stoull(number);
Mark Salyzyna4f701a2016-03-09 14:58:16 -08001301 name = sub + "." + std::to_string(i + 1);
1302 }
1303 }
1304
1305 return __android_log_pmsg_file_write(logId, prio, name.c_str(), buf, len);
1306}
1307
Yabin Cui53e7a062016-02-17 12:21:52 -08001308int main(int argc, char **argv) {
Mark Salyzyna4f701a2016-03-09 14:58:16 -08001309 // Take last pmsg contents and rewrite it to the current pmsg session.
1310 static const char filter[] = "recovery/";
1311 // Do we need to rotate?
1312 bool doRotate = false;
1313 __android_log_pmsg_file_read(
1314 LOG_ID_SYSTEM, ANDROID_LOG_INFO, filter,
1315 logbasename, &doRotate);
1316 // Take action to refresh pmsg contents
1317 __android_log_pmsg_file_read(
1318 LOG_ID_SYSTEM, ANDROID_LOG_INFO, filter,
1319 logrotate, &doRotate);
1320
Doug Zongker9270a202012-01-09 15:16:13 -08001321 // If this binary is started with the single argument "--adbd",
1322 // instead of being the normal recovery binary, it turns into kind
1323 // of a stripped-down version of adbd that only supports the
1324 // 'sideload' command. Note this must be a real argument, not
1325 // anything in the command file or bootloader control block; the
1326 // only way recovery should be run with this argument is when it
1327 // starts a copy of itself from the apply_from_adb() function.
1328 if (argc == 2 && strcmp(argv[1], "--adbd") == 0) {
Elliott Hughes9f4fdb32015-11-20 13:03:24 -08001329 adb_server_main(0, DEFAULT_ADB_PORT, -1);
Doug Zongker9270a202012-01-09 15:16:13 -08001330 return 0;
1331 }
1332
Tao Bao04ca4262015-09-10 15:32:24 -07001333 time_t start = time(NULL);
1334
1335 // redirect_stdio should be called only in non-sideload mode. Otherwise
1336 // we may have two logger instances with different timestamps.
1337 redirect_stdio(TEMPORARY_LOG_FILE);
1338
Doug Zongker19a8e242014-01-21 09:25:41 -08001339 printf("Starting recovery (pid %d) on %s", getpid(), ctime(&start));
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001340
Doug Zongkerd4208f92010-09-20 12:16:13 -07001341 load_volume_table();
Tao Bao26112e52016-02-25 12:29:40 -08001342 has_cache = volume_for_path(CACHE_ROOT) != nullptr;
1343
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001344 get_args(&argc, &argv);
1345
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001346 const char *update_package = NULL;
Tao Baoe39a9bc2015-03-31 12:19:05 -07001347 bool should_wipe_data = false;
Tao Baoc679f932015-03-30 09:43:49 -07001348 bool should_wipe_cache = false;
Tao Bao862a4c12016-06-02 11:16:50 -07001349 bool should_brick = false;
Tao Bao145d8612015-03-25 15:51:15 -07001350 bool show_text = false;
Tao Baoc679f932015-03-30 09:43:49 -07001351 bool sideload = false;
1352 bool sideload_auto_reboot = false;
Doug Zongkere5d5ac72012-04-12 11:01:22 -07001353 bool just_exit = false;
Doug Zongkerb1d12632014-03-18 10:32:12 -07001354 bool shutdown_after = false;
Tianjie Xu3c62b672016-02-05 18:25:58 -08001355 int retry_count = 0;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001356
1357 int arg;
Tao Bao862a4c12016-06-02 11:16:50 -07001358 int option_index;
1359 while ((arg = getopt_long(argc, argv, "", OPTIONS, &option_index)) != -1) {
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001360 switch (arg) {
Tianjie Xu3c62b672016-02-05 18:25:58 -08001361 case 'n': android::base::ParseInt(optarg, &retry_count, 0); break;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001362 case 'u': update_package = optarg; break;
Tao Baoe39a9bc2015-03-31 12:19:05 -07001363 case 'w': should_wipe_data = true; break;
Tao Baoc679f932015-03-30 09:43:49 -07001364 case 'c': should_wipe_cache = true; break;
Tao Bao145d8612015-03-25 15:51:15 -07001365 case 't': show_text = true; break;
Tao Baoc679f932015-03-30 09:43:49 -07001366 case 's': sideload = true; break;
1367 case 'a': sideload = true; sideload_auto_reboot = true; break;
Doug Zongkere5d5ac72012-04-12 11:01:22 -07001368 case 'x': just_exit = true; break;
Doug Zongker02ec6b82012-08-22 17:26:40 -07001369 case 'l': locale = optarg; break;
Doug Zongkerc87bab12013-11-25 13:53:25 -08001370 case 'g': {
1371 if (stage == NULL || *stage == '\0') {
1372 char buffer[20] = "1/";
1373 strncat(buffer, optarg, sizeof(buffer)-3);
1374 stage = strdup(buffer);
1375 }
1376 break;
1377 }
Doug Zongkerb1d12632014-03-18 10:32:12 -07001378 case 'p': shutdown_after = true; break;
Jeff Sharkeya6e13ae2014-09-24 11:46:17 -07001379 case 'r': reason = optarg; break;
Tao Bao862a4c12016-06-02 11:16:50 -07001380 case 0: {
1381 if (strcmp(OPTIONS[option_index].name, "brick") == 0) {
1382 should_brick = true;
1383 break;
1384 }
1385 break;
1386 }
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001387 case '?':
1388 LOGE("Invalid command argument\n");
1389 continue;
1390 }
1391 }
1392
Tao Bao26112e52016-02-25 12:29:40 -08001393 if (locale == nullptr && has_cache) {
Doug Zongker02ec6b82012-08-22 17:26:40 -07001394 load_locale_from_cache();
1395 }
1396 printf("locale is [%s]\n", locale);
Doug Zongker0d32f252014-02-13 15:07:56 -08001397 printf("stage is [%s]\n", stage);
Jeff Sharkeya6e13ae2014-09-24 11:46:17 -07001398 printf("reason is [%s]\n", reason);
Doug Zongker02ec6b82012-08-22 17:26:40 -07001399
1400 Device* device = make_device();
1401 ui = device->GetUI();
Doug Zongker7c3ae452013-05-14 11:03:02 -07001402 gCurrentUI = ui;
Doug Zongker02ec6b82012-08-22 17:26:40 -07001403
Doug Zongker5fa8c232012-09-18 12:37:02 -07001404 ui->SetLocale(locale);
Doug Zongker02ec6b82012-08-22 17:26:40 -07001405 ui->Init();
Doug Zongkerc87bab12013-11-25 13:53:25 -08001406
1407 int st_cur, st_max;
1408 if (stage != NULL && sscanf(stage, "%d/%d", &st_cur, &st_max) == 2) {
1409 ui->SetStage(st_cur, st_max);
1410 }
1411
Doug Zongker02ec6b82012-08-22 17:26:40 -07001412 ui->SetBackground(RecoveryUI::NONE);
1413 if (show_text) ui->ShowText(true);
1414
Stephen Smalley779701d2012-02-09 14:13:23 -05001415 struct selinux_opt seopts[] = {
1416 { SELABEL_OPT_PATH, "/file_contexts" }
1417 };
1418
1419 sehandle = selabel_open(SELABEL_CTX_FILE, seopts, 1);
1420
1421 if (!sehandle) {
Doug Zongkerfafc85b2013-07-09 12:29:45 -07001422 ui->Print("Warning: No file_contexts\n");
Stephen Smalley779701d2012-02-09 14:13:23 -05001423 }
Stephen Smalley779701d2012-02-09 14:13:23 -05001424
Doug Zongkerdaefc1d2011-10-31 09:34:15 -07001425 device->StartRecovery();
Doug Zongkerefa1bab2010-02-01 15:59:12 -08001426
Doug Zongker56c51052010-07-01 09:18:44 -07001427 printf("Command:");
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001428 for (arg = 0; arg < argc; arg++) {
Doug Zongker56c51052010-07-01 09:18:44 -07001429 printf(" \"%s\"", argv[arg]);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001430 }
Doug Zongker9b125b02010-09-22 12:01:37 -07001431 printf("\n");
1432
1433 if (update_package) {
1434 // For backwards compatibility on the cache partition only, if
1435 // we're given an old 'root' path "CACHE:foo", change it to
1436 // "/cache/foo".
1437 if (strncmp(update_package, "CACHE:", 6) == 0) {
1438 int len = strlen(update_package) + 10;
Doug Zongker28ce47c2011-10-28 10:33:05 -07001439 char* modified_path = (char*)malloc(len);
Jeremy Compostella1b7d9b72015-07-29 17:17:03 +02001440 if (modified_path) {
1441 strlcpy(modified_path, "/cache/", len);
1442 strlcat(modified_path, update_package+6, len);
1443 printf("(replacing path \"%s\" with \"%s\")\n",
1444 update_package, modified_path);
1445 update_package = modified_path;
1446 }
1447 else
1448 printf("modified_path allocation failed\n");
Doug Zongker9b125b02010-09-22 12:01:37 -07001449 }
1450 }
1451 printf("\n");
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001452
1453 property_list(print_property, NULL);
Doug Zongker56c51052010-07-01 09:18:44 -07001454 printf("\n");
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001455
Elliott Hughesbb78d622015-04-09 20:51:08 -07001456 ui->Print("Supported API: %d\n", RECOVERY_API_VERSION);
1457
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001458 int status = INSTALL_SUCCESS;
1459
Doug Zongker540d57f2011-01-18 13:36:58 -08001460 if (update_package != NULL) {
Tao Bao37c45022016-04-29 15:37:05 -07001461 // It's not entirely true that we will modify the flash. But we want
1462 // to log the update attempt since update_package is non-NULL.
1463 modified_flash = true;
1464
Yabin Cui53e7a062016-02-17 12:21:52 -08001465 if (!is_battery_ok()) {
1466 ui->Print("battery capacity is not enough for installing package, needed is %d%%\n",
1467 BATTERY_OK_PERCENTAGE);
1468 status = INSTALL_SKIPPED;
1469 } else {
1470 status = install_package(update_package, &should_wipe_cache,
1471 TEMPORARY_INSTALL_FILE, true);
1472 if (status == INSTALL_SUCCESS && should_wipe_cache) {
1473 wipe_cache(false, device);
1474 }
1475 if (status != INSTALL_SUCCESS) {
1476 ui->Print("Installation aborted.\n");
Tianjie Xu3c62b672016-02-05 18:25:58 -08001477 // When I/O error happens, reboot and retry installation EIO_RETRY_COUNT
1478 // times before we abandon this OTA update.
1479 if (status == INSTALL_RETRY && retry_count < EIO_RETRY_COUNT) {
1480 copy_logs();
1481 set_retry_bootloader_message(retry_count, argc, argv);
1482 // Print retry count on screen.
1483 ui->Print("Retry attempt %d\n", retry_count);
Doug Zongker7c3ae452013-05-14 11:03:02 -07001484
Tianjie Xu3c62b672016-02-05 18:25:58 -08001485 // Reboot and retry the update
1486 int ret = property_set(ANDROID_RB_PROPERTY, "reboot,recovery");
1487 if (ret < 0) {
1488 ui->Print("Reboot failed\n");
1489 } else {
1490 while (true) {
1491 pause();
1492 }
1493 }
1494 }
Yabin Cui53e7a062016-02-17 12:21:52 -08001495 // If this is an eng or userdebug build, then automatically
1496 // turn the text display on if the script fails so the error
1497 // message is visible.
1498 if (is_ro_debuggable()) {
1499 ui->ShowText(true);
1500 }
Doug Zongker7c3ae452013-05-14 11:03:02 -07001501 }
1502 }
Tao Baoe39a9bc2015-03-31 12:19:05 -07001503 } else if (should_wipe_data) {
1504 if (!wipe_data(false, device)) {
1505 status = INSTALL_ERROR;
1506 }
Tao Baoc679f932015-03-30 09:43:49 -07001507 } else if (should_wipe_cache) {
Tao Baoe39a9bc2015-03-31 12:19:05 -07001508 if (!wipe_cache(false, device)) {
1509 status = INSTALL_ERROR;
1510 }
Tao Bao862a4c12016-06-02 11:16:50 -07001511 } else if (should_brick) {
1512 if (!brick_device()) {
1513 status = INSTALL_ERROR;
1514 }
Tao Baoc679f932015-03-30 09:43:49 -07001515 } else if (sideload) {
1516 // 'adb reboot sideload' acts the same as user presses key combinations
1517 // to enter the sideload mode. When 'sideload-auto-reboot' is used, text
1518 // display will NOT be turned on by default. And it will reboot after
1519 // sideload finishes even if there are errors. Unless one turns on the
1520 // text display during the installation. This is to enable automated
1521 // testing.
1522 if (!sideload_auto_reboot) {
1523 ui->ShowText(true);
1524 }
1525 status = apply_from_adb(ui, &should_wipe_cache, TEMPORARY_INSTALL_FILE);
1526 if (status == INSTALL_SUCCESS && should_wipe_cache) {
Tao Baoe39a9bc2015-03-31 12:19:05 -07001527 if (!wipe_cache(false, device)) {
1528 status = INSTALL_ERROR;
1529 }
Tao Baoc679f932015-03-30 09:43:49 -07001530 }
1531 ui->Print("\nInstall from ADB complete (status: %d).\n", status);
1532 if (sideload_auto_reboot) {
1533 ui->Print("Rebooting automatically.\n");
1534 }
Doug Zongkere5d5ac72012-04-12 11:01:22 -07001535 } else if (!just_exit) {
Doug Zongker02ec6b82012-08-22 17:26:40 -07001536 status = INSTALL_NONE; // No command specified
1537 ui->SetBackground(RecoveryUI::NO_COMMAND);
Tao Bao785d22c2015-05-04 09:34:29 -07001538
1539 // http://b/17489952
1540 // If this is an eng or userdebug build, automatically turn on the
1541 // text display if no command is specified.
1542 if (is_ro_debuggable()) {
1543 ui->ShowText(true);
1544 }
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001545 }
1546
Tao Baoc679f932015-03-30 09:43:49 -07001547 if (!sideload_auto_reboot && (status == INSTALL_ERROR || status == INSTALL_CORRUPT)) {
Doug Zongkerf24fd7e2013-07-02 11:43:25 -07001548 copy_logs();
Doug Zongker02ec6b82012-08-22 17:26:40 -07001549 ui->SetBackground(RecoveryUI::ERROR);
1550 }
Tao Baoc679f932015-03-30 09:43:49 -07001551
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001552 Device::BuiltinAction after = shutdown_after ? Device::SHUTDOWN : Device::REBOOT;
Yabin Cui53e7a062016-02-17 12:21:52 -08001553 if ((status != INSTALL_SUCCESS && status != INSTALL_SKIPPED && !sideload_auto_reboot) ||
1554 ui->IsTextVisible()) {
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001555 Device::BuiltinAction temp = prompt_and_wait(device, status);
Tao Baoc679f932015-03-30 09:43:49 -07001556 if (temp != Device::NO_ACTION) {
1557 after = temp;
1558 }
Doug Zongker8674a722010-09-15 11:08:23 -07001559 }
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001560
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001561 // Save logs and clean up before rebooting or shutting down.
Tianjie Xuc14d95d2016-03-24 11:50:34 -07001562 finish_recovery();
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001563
1564 switch (after) {
1565 case Device::SHUTDOWN:
1566 ui->Print("Shutting down...\n");
1567 property_set(ANDROID_RB_PROPERTY, "shutdown,");
1568 break;
1569
1570 case Device::REBOOT_BOOTLOADER:
1571 ui->Print("Rebooting to bootloader...\n");
1572 property_set(ANDROID_RB_PROPERTY, "reboot,bootloader");
1573 break;
1574
1575 default:
1576 ui->Print("Rebooting...\n");
1577 property_set(ANDROID_RB_PROPERTY, "reboot,");
1578 break;
Doug Zongkerb1d12632014-03-18 10:32:12 -07001579 }
Tao Bao75238632015-05-27 14:46:17 -07001580 while (true) {
1581 pause();
1582 }
1583 // Should be unreachable.
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001584 return EXIT_SUCCESS;
1585}