blob: 45a6fe90c0950c98c617802dc7247fd29127ca22 [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 Cui99281df2016-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"
Tianjie Xu16255832016-04-30 11:49:59 -070060#include "error_code.h"
Tao Bao75238632015-05-27 14:46:17 -070061#include "fuse_sdcard_provider.h"
62#include "fuse_sideload.h"
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080063#include "install.h"
64#include "minui/minui.h"
65#include "minzip/DirUtil.h"
66#include "roots.h"
Doug Zongker28ce47c2011-10-28 10:33:05 -070067#include "ui.h"
Doug Zongker211aebc2011-10-28 15:13:10 -070068#include "screen_ui.h"
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080069
Stephen Smalley779701d2012-02-09 14:13:23 -050070struct selabel_handle *sehandle;
71
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080072static const struct option OPTIONS[] = {
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080073 { "update_package", required_argument, NULL, 'u' },
Tianjie Xu3c62b672016-02-05 18:25:58 -080074 { "retry_count", required_argument, NULL, 'n' },
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080075 { "wipe_data", no_argument, NULL, 'w' },
76 { "wipe_cache", no_argument, NULL, 'c' },
Doug Zongker4bc98062010-09-03 11:00:13 -070077 { "show_text", no_argument, NULL, 't' },
Tao Baoc679f932015-03-30 09:43:49 -070078 { "sideload", no_argument, NULL, 's' },
79 { "sideload_auto_reboot", no_argument, NULL, 'a' },
Doug Zongkere5d5ac72012-04-12 11:01:22 -070080 { "just_exit", no_argument, NULL, 'x' },
Doug Zongker02ec6b82012-08-22 17:26:40 -070081 { "locale", required_argument, NULL, 'l' },
Doug Zongkerc87bab12013-11-25 13:53:25 -080082 { "stages", required_argument, NULL, 'g' },
Doug Zongkerb1d12632014-03-18 10:32:12 -070083 { "shutdown_after", no_argument, NULL, 'p' },
Jeff Sharkeya6e13ae2014-09-24 11:46:17 -070084 { "reason", required_argument, NULL, 'r' },
Tianjie Xu35926c42016-04-28 18:06:26 -070085 { "security", no_argument, NULL, 'e'},
Tao Bao862a4c12016-06-02 11:16:50 -070086 { "brick", no_argument, NULL, 0 },
Doug Zongker988500b2009-10-06 14:41:38 -070087 { NULL, 0, NULL, 0 },
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080088};
89
Doug Zongker6d0d7ac2013-07-09 13:34:55 -070090static const char *CACHE_LOG_DIR = "/cache/recovery";
Doug Zongkerd4208f92010-09-20 12:16:13 -070091static const char *COMMAND_FILE = "/cache/recovery/command";
Doug Zongkerd4208f92010-09-20 12:16:13 -070092static const char *LOG_FILE = "/cache/recovery/log";
Doug Zongkerd0181b82011-10-19 10:51:12 -070093static const char *LAST_INSTALL_FILE = "/cache/recovery/last_install";
Doug Zongker8b240cc2012-08-29 15:19:29 -070094static const char *LOCALE_FILE = "/cache/recovery/last_locale";
Paul Lawrence661f8a62016-02-25 12:42:19 -080095static const char *CONVERT_FBE_DIR = "/tmp/convert_fbe";
96static const char *CONVERT_FBE_FILE = "/tmp/convert_fbe/convert_fbe";
Michael Ward9d2629c2011-06-23 22:14:24 -070097static const char *CACHE_ROOT = "/cache";
Paul Lawrenced0db3372015-11-05 13:38:40 -080098static const char *DATA_ROOT = "/data";
Doug Zongkerd4208f92010-09-20 12:16:13 -070099static const char *SDCARD_ROOT = "/sdcard";
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800100static const char *TEMPORARY_LOG_FILE = "/tmp/recovery.log";
Doug Zongkerd0181b82011-10-19 10:51:12 -0700101static const char *TEMPORARY_INSTALL_FILE = "/tmp/last_install";
Tao Baof0124322015-04-11 02:04:11 +0000102static const char *LAST_KMSG_FILE = "/cache/recovery/last_kmsg";
Tao Baobef39712015-05-04 18:50:27 -0700103static const char *LAST_LOG_FILE = "/cache/recovery/last_log";
104static const int KEEP_LOG_COUNT = 10;
Tianjie Xuc37c5c32016-06-23 16:52:17 -0700105// We will try to apply the update package 5 times at most in case of an I/O error.
106static const int EIO_RETRY_COUNT = 4;
Yabin Cui99281df2016-02-17 12:21:52 -0800107static const int BATTERY_READ_TIMEOUT_IN_SEC = 10;
108// GmsCore enters recovery mode to install package when having enough battery
109// percentage. Normally, the threshold is 40% without charger and 20% with charger.
110// So we should check battery with a slightly lower limitation.
111static const int BATTERY_OK_PERCENTAGE = 20;
112static const int BATTERY_WITH_CHARGER_OK_PERCENTAGE = 15;
Tao Bao862a4c12016-06-02 11:16:50 -0700113constexpr const char* RECOVERY_BRICK = "/etc/recovery.brick";
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700114
Doug Zongker211aebc2011-10-28 15:13:10 -0700115RecoveryUI* ui = NULL;
Elliott Hughes498cda62016-04-14 16:49:04 -0700116static const char* locale = "en_US";
Doug Zongkerc87bab12013-11-25 13:53:25 -0800117char* stage = NULL;
Jeff Sharkeya6e13ae2014-09-24 11:46:17 -0700118char* reason = NULL;
Tao Bao682c34b2015-04-07 17:16:35 -0700119bool modified_flash = false;
Tao Bao26112e52016-02-25 12:29:40 -0800120static bool has_cache = false;
Doug Zongker211aebc2011-10-28 15:13:10 -0700121
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800122/*
123 * The recovery tool communicates with the main system through /cache files.
124 * /cache/recovery/command - INPUT - command line for tool, one arg per line
125 * /cache/recovery/log - OUTPUT - combined log file from recovery run(s)
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800126 *
127 * The arguments which may be supplied in the recovery.command file:
Doug Zongkerd4208f92010-09-20 12:16:13 -0700128 * --update_package=path - verify install an OTA package file
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800129 * --wipe_data - erase user data (and cache), then reboot
130 * --wipe_cache - wipe cache (but not user data), then reboot
Oscar Montemayor05231562009-11-30 08:40:57 -0800131 * --set_encrypted_filesystem=on|off - enables / diasables encrypted fs
Doug Zongkere5d5ac72012-04-12 11:01:22 -0700132 * --just_exit - do nothing; exit and reboot
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800133 *
134 * After completing, we remove /cache/recovery/command and reboot.
135 * Arguments may also be supplied in the bootloader control block (BCB).
136 * These important scenarios must be safely restartable at any point:
137 *
138 * FACTORY RESET
139 * 1. user selects "factory reset"
140 * 2. main system writes "--wipe_data" to /cache/recovery/command
141 * 3. main system reboots into recovery
142 * 4. get_args() writes BCB with "boot-recovery" and "--wipe_data"
143 * -- after this, rebooting will restart the erase --
Doug Zongkerd4208f92010-09-20 12:16:13 -0700144 * 5. erase_volume() reformats /data
145 * 6. erase_volume() reformats /cache
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800146 * 7. finish_recovery() erases BCB
147 * -- after this, rebooting will restart the main system --
148 * 8. main() calls reboot() to boot main system
149 *
150 * OTA INSTALL
151 * 1. main system downloads OTA package to /cache/some-filename.zip
Doug Zongker9b125b02010-09-22 12:01:37 -0700152 * 2. main system writes "--update_package=/cache/some-filename.zip"
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800153 * 3. main system reboots into recovery
154 * 4. get_args() writes BCB with "boot-recovery" and "--update_package=..."
155 * -- after this, rebooting will attempt to reinstall the update --
156 * 5. install_package() attempts to install the update
157 * NOTE: the package install must itself be restartable from any point
158 * 6. finish_recovery() erases BCB
159 * -- after this, rebooting will (try to) restart the main system --
160 * 7. ** if install failed **
161 * 7a. prompt_and_wait() shows an error icon and waits for the user
162 * 7b; the user reboots (pulling the battery, etc) into the main system
163 * 8. main() calls maybe_install_firmware_update()
164 * ** if the update contained radio/hboot firmware **:
165 * 8a. m_i_f_u() writes BCB with "boot-recovery" and "--wipe_cache"
166 * -- after this, rebooting will reformat cache & restart main system --
167 * 8b. m_i_f_u() writes firmware image into raw cache partition
168 * 8c. m_i_f_u() writes BCB with "update-radio/hboot" and "--wipe_cache"
169 * -- after this, rebooting will attempt to reinstall firmware --
170 * 8d. bootloader tries to flash firmware
171 * 8e. bootloader writes BCB with "boot-recovery" (keeping "--wipe_cache")
172 * -- after this, rebooting will reformat cache & restart main system --
Doug Zongkerd4208f92010-09-20 12:16:13 -0700173 * 8f. erase_volume() reformats /cache
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800174 * 8g. finish_recovery() erases BCB
175 * -- after this, rebooting will (try to) restart the main system --
176 * 9. main() calls reboot() to boot main system
177 */
178
179static const int MAX_ARG_LENGTH = 4096;
180static const int MAX_ARGS = 100;
181
Doug Zongkerd4208f92010-09-20 12:16:13 -0700182// open a given path, mounting partitions as necessary
Tao Bao04ca4262015-09-10 15:32:24 -0700183FILE* fopen_path(const char *path, const char *mode) {
Doug Zongkerd4208f92010-09-20 12:16:13 -0700184 if (ensure_path_mounted(path) != 0) {
185 LOGE("Can't mount %s\n", path);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800186 return NULL;
187 }
188
189 // When writing, try to create the containing directory, if necessary.
190 // Use generous permissions, the system (init.rc) will reset them.
Stephen Smalley779701d2012-02-09 14:13:23 -0500191 if (strchr("wa", mode[0])) dirCreateHierarchy(path, 0777, NULL, 1, sehandle);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800192
193 FILE *fp = fopen(path, mode);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800194 return fp;
195}
196
Tao Bao04ca4262015-09-10 15:32:24 -0700197// close a file, log an error if the error indicator is set
198static void check_and_fclose(FILE *fp, const char *name) {
199 fflush(fp);
200 if (ferror(fp)) LOGE("Error in %s\n(%s)\n", name, strerror(errno));
201 fclose(fp);
202}
203
Elliott Hughesf14af802015-02-10 14:46:14 -0800204bool is_ro_debuggable() {
205 char value[PROPERTY_VALUE_MAX+1];
206 return (property_get("ro.debuggable", value, NULL) == 1 && value[0] == '1');
207}
208
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700209static void redirect_stdio(const char* filename) {
Tao Bao04ca4262015-09-10 15:32:24 -0700210 int pipefd[2];
211 if (pipe(pipefd) == -1) {
212 LOGE("pipe failed: %s\n", strerror(errno));
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700213
Tao Bao04ca4262015-09-10 15:32:24 -0700214 // Fall back to traditional logging mode without timestamps.
215 // If these fail, there's not really anywhere to complain...
216 freopen(filename, "a", stdout); setbuf(stdout, NULL);
217 freopen(filename, "a", stderr); setbuf(stderr, NULL);
218
219 return;
220 }
221
222 pid_t pid = fork();
223 if (pid == -1) {
224 LOGE("fork failed: %s\n", strerror(errno));
225
226 // Fall back to traditional logging mode without timestamps.
227 // If these fail, there's not really anywhere to complain...
228 freopen(filename, "a", stdout); setbuf(stdout, NULL);
229 freopen(filename, "a", stderr); setbuf(stderr, NULL);
230
231 return;
232 }
233
234 if (pid == 0) {
235 /// Close the unused write end.
236 close(pipefd[1]);
237
238 auto start = std::chrono::steady_clock::now();
239
240 // Child logger to actually write to the log file.
241 FILE* log_fp = fopen(filename, "a");
242 if (log_fp == nullptr) {
243 LOGE("fopen \"%s\" failed: %s\n", filename, strerror(errno));
244 close(pipefd[0]);
245 _exit(1);
246 }
247
248 FILE* pipe_fp = fdopen(pipefd[0], "r");
249 if (pipe_fp == nullptr) {
250 LOGE("fdopen failed: %s\n", strerror(errno));
251 check_and_fclose(log_fp, filename);
252 close(pipefd[0]);
253 _exit(1);
254 }
255
256 char* line = nullptr;
257 size_t len = 0;
258 while (getline(&line, &len, pipe_fp) != -1) {
259 auto now = std::chrono::steady_clock::now();
260 double duration = std::chrono::duration_cast<std::chrono::duration<double>>(
261 now - start).count();
262 if (line[0] == '\n') {
263 fprintf(log_fp, "[%12.6lf]\n", duration);
264 } else {
265 fprintf(log_fp, "[%12.6lf] %s", duration, line);
266 }
267 fflush(log_fp);
268 }
269
270 LOGE("getline failed: %s\n", strerror(errno));
271
272 free(line);
273 check_and_fclose(log_fp, filename);
274 close(pipefd[0]);
275 _exit(1);
276 } else {
277 // Redirect stdout/stderr to the logger process.
278 // Close the unused read end.
279 close(pipefd[0]);
280
281 setbuf(stdout, nullptr);
282 setbuf(stderr, nullptr);
283
284 if (dup2(pipefd[1], STDOUT_FILENO) == -1) {
285 LOGE("dup2 stdout failed: %s\n", strerror(errno));
286 }
287 if (dup2(pipefd[1], STDERR_FILENO) == -1) {
288 LOGE("dup2 stderr failed: %s\n", strerror(errno));
289 }
290
291 close(pipefd[1]);
292 }
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800293}
294
295// command line args come from, in decreasing precedence:
296// - the actual command line
297// - the bootloader control block (one per line, after "recovery")
298// - the contents of COMMAND_FILE (one per line)
299static void
300get_args(int *argc, char ***argv) {
301 struct bootloader_message boot;
302 memset(&boot, 0, sizeof(boot));
303 get_bootloader_message(&boot); // this may fail, leaving a zeroed structure
Doug Zongkerc87bab12013-11-25 13:53:25 -0800304 stage = strndup(boot.stage, sizeof(boot.stage));
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800305
306 if (boot.command[0] != 0 && boot.command[0] != 255) {
Mark Salyzynf3bb31c2014-03-14 09:39:48 -0700307 LOGI("Boot command: %.*s\n", (int)sizeof(boot.command), boot.command);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800308 }
309
310 if (boot.status[0] != 0 && boot.status[0] != 255) {
Mark Salyzynf3bb31c2014-03-14 09:39:48 -0700311 LOGI("Boot status: %.*s\n", (int)sizeof(boot.status), boot.status);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800312 }
313
314 // --- if arguments weren't supplied, look in the bootloader control block
315 if (*argc <= 1) {
316 boot.recovery[sizeof(boot.recovery) - 1] = '\0'; // Ensure termination
317 const char *arg = strtok(boot.recovery, "\n");
318 if (arg != NULL && !strcmp(arg, "recovery")) {
319 *argv = (char **) malloc(sizeof(char *) * MAX_ARGS);
320 (*argv)[0] = strdup(arg);
321 for (*argc = 1; *argc < MAX_ARGS; ++*argc) {
322 if ((arg = strtok(NULL, "\n")) == NULL) break;
323 (*argv)[*argc] = strdup(arg);
324 }
325 LOGI("Got arguments from boot message\n");
326 } else if (boot.recovery[0] != 0 && boot.recovery[0] != 255) {
327 LOGE("Bad boot message\n\"%.20s\"\n", boot.recovery);
328 }
329 }
330
Tao Bao26112e52016-02-25 12:29:40 -0800331 // --- if that doesn't work, try the command file (if we have /cache).
332 if (*argc <= 1 && has_cache) {
Doug Zongkerd4208f92010-09-20 12:16:13 -0700333 FILE *fp = fopen_path(COMMAND_FILE, "r");
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800334 if (fp != NULL) {
Jin Feng93ffa752013-06-04 17:46:24 +0800335 char *token;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800336 char *argv0 = (*argv)[0];
337 *argv = (char **) malloc(sizeof(char *) * MAX_ARGS);
338 (*argv)[0] = argv0; // use the same program name
339
340 char buf[MAX_ARG_LENGTH];
341 for (*argc = 1; *argc < MAX_ARGS; ++*argc) {
342 if (!fgets(buf, sizeof(buf), fp)) break;
Jin Feng93ffa752013-06-04 17:46:24 +0800343 token = strtok(buf, "\r\n");
344 if (token != NULL) {
345 (*argv)[*argc] = strdup(token); // Strip newline.
346 } else {
347 --*argc;
348 }
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800349 }
350
351 check_and_fclose(fp, COMMAND_FILE);
352 LOGI("Got arguments from %s\n", COMMAND_FILE);
353 }
354 }
355
356 // --> write the arguments we have back into the bootloader control block
357 // always boot into recovery after this (until finish_recovery() is called)
358 strlcpy(boot.command, "boot-recovery", sizeof(boot.command));
359 strlcpy(boot.recovery, "recovery\n", sizeof(boot.recovery));
360 int i;
361 for (i = 1; i < *argc; ++i) {
362 strlcat(boot.recovery, (*argv)[i], sizeof(boot.recovery));
363 strlcat(boot.recovery, "\n", sizeof(boot.recovery));
364 }
365 set_bootloader_message(&boot);
366}
367
Doug Zongker34c98df2009-08-18 12:05:45 -0700368static void
Oscar Montemayor05231562009-11-30 08:40:57 -0800369set_sdcard_update_bootloader_message() {
Doug Zongker34c98df2009-08-18 12:05:45 -0700370 struct bootloader_message boot;
371 memset(&boot, 0, sizeof(boot));
372 strlcpy(boot.command, "boot-recovery", sizeof(boot.command));
373 strlcpy(boot.recovery, "recovery\n", sizeof(boot.recovery));
374 set_bootloader_message(&boot);
375}
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800376
Tao Baobef39712015-05-04 18:50:27 -0700377// Read from kernel log into buffer and write out to file.
378static void save_kernel_log(const char* destination) {
379 int klog_buf_len = klogctl(KLOG_SIZE_BUFFER, 0, 0);
Patrick Tjincd055ee2014-12-09 11:26:40 -0800380 if (klog_buf_len <= 0) {
Tao Baobef39712015-05-04 18:50:27 -0700381 LOGE("Error getting klog size: %s\n", strerror(errno));
Patrick Tjincd055ee2014-12-09 11:26:40 -0800382 return;
383 }
384
Tao Baobef39712015-05-04 18:50:27 -0700385 std::string buffer(klog_buf_len, 0);
386 int n = klogctl(KLOG_READ_ALL, &buffer[0], klog_buf_len);
387 if (n == -1) {
388 LOGE("Error in reading klog: %s\n", strerror(errno));
Patrick Tjincd055ee2014-12-09 11:26:40 -0800389 return;
390 }
Tao Baobef39712015-05-04 18:50:27 -0700391 buffer.resize(n);
392 android::base::WriteStringToFile(buffer, destination);
Patrick Tjincd055ee2014-12-09 11:26:40 -0800393}
394
Mark Salyzyna4f701a2016-03-09 14:58:16 -0800395// write content to the current pmsg session.
396static ssize_t __pmsg_write(const char *filename, const char *buf, size_t len) {
397 return __android_log_pmsg_file_write(LOG_ID_SYSTEM, ANDROID_LOG_INFO,
398 filename, buf, len);
399}
400
401static void copy_log_file_to_pmsg(const char* source, const char* destination) {
402 std::string content;
403 android::base::ReadFileToString(source, &content);
404 __pmsg_write(destination, content.c_str(), content.length());
405}
406
Tao Baof0124322015-04-11 02:04:11 +0000407// How much of the temp log we have copied to the copy in cache.
Chih-Hung Hsieh54a27472016-04-18 11:30:55 -0700408static off_t tmplog_offset = 0;
Tao Baof0124322015-04-11 02:04:11 +0000409
Tao Baobef39712015-05-04 18:50:27 -0700410static void copy_log_file(const char* source, const char* destination, bool append) {
411 FILE* dest_fp = fopen_path(destination, append ? "a" : "w");
412 if (dest_fp == nullptr) {
Doug Zongker2c3539e2010-09-29 13:21:30 -0700413 LOGE("Can't open %s\n", destination);
414 } else {
Tao Baobef39712015-05-04 18:50:27 -0700415 FILE* source_fp = fopen(source, "r");
416 if (source_fp != nullptr) {
Tao Baof0124322015-04-11 02:04:11 +0000417 if (append) {
Chih-Hung Hsieh54a27472016-04-18 11:30:55 -0700418 fseeko(source_fp, tmplog_offset, SEEK_SET); // Since last write
Doug Zongker2c3539e2010-09-29 13:21:30 -0700419 }
420 char buf[4096];
Tao Baobef39712015-05-04 18:50:27 -0700421 size_t bytes;
422 while ((bytes = fread(buf, 1, sizeof(buf), source_fp)) != 0) {
423 fwrite(buf, 1, bytes, dest_fp);
Doug Zongker2c3539e2010-09-29 13:21:30 -0700424 }
Tao Baobef39712015-05-04 18:50:27 -0700425 if (append) {
Chih-Hung Hsieh54a27472016-04-18 11:30:55 -0700426 tmplog_offset = ftello(source_fp);
Tao Baobef39712015-05-04 18:50:27 -0700427 }
428 check_and_fclose(source_fp, source);
Doug Zongker2c3539e2010-09-29 13:21:30 -0700429 }
Tao Baobef39712015-05-04 18:50:27 -0700430 check_and_fclose(dest_fp, destination);
Doug Zongker2c3539e2010-09-29 13:21:30 -0700431 }
432}
433
Tao Baobef39712015-05-04 18:50:27 -0700434// Rename last_log -> last_log.1 -> last_log.2 -> ... -> last_log.$max.
435// Similarly rename last_kmsg -> last_kmsg.1 -> ... -> last_kmsg.$max.
436// Overwrite any existing last_log.$max and last_kmsg.$max.
437static void rotate_logs(int max) {
Tao Bao682c34b2015-04-07 17:16:35 -0700438 // Logs should only be rotated once.
439 static bool rotated = false;
440 if (rotated) {
441 return;
442 }
443 rotated = true;
444 ensure_path_mounted(LAST_LOG_FILE);
Tao Baobef39712015-05-04 18:50:27 -0700445 ensure_path_mounted(LAST_KMSG_FILE);
Tao Bao682c34b2015-04-07 17:16:35 -0700446
Tao Bao682c34b2015-04-07 17:16:35 -0700447 for (int i = max-1; i >= 0; --i) {
Tao Bao80e46e02015-06-03 10:49:29 -0700448 std::string old_log = android::base::StringPrintf("%s", LAST_LOG_FILE);
449 if (i > 0) {
450 old_log += "." + std::to_string(i);
451 }
Tao Baobef39712015-05-04 18:50:27 -0700452 std::string new_log = android::base::StringPrintf("%s.%d", LAST_LOG_FILE, i+1);
453 // Ignore errors if old_log doesn't exist.
454 rename(old_log.c_str(), new_log.c_str());
455
Tao Bao80e46e02015-06-03 10:49:29 -0700456 std::string old_kmsg = android::base::StringPrintf("%s", LAST_KMSG_FILE);
457 if (i > 0) {
458 old_kmsg += "." + std::to_string(i);
459 }
Tao Baobef39712015-05-04 18:50:27 -0700460 std::string new_kmsg = android::base::StringPrintf("%s.%d", LAST_KMSG_FILE, i+1);
461 rename(old_kmsg.c_str(), new_kmsg.c_str());
Doug Zongkerda1ebae2013-05-16 11:23:48 -0700462 }
463}
Doug Zongker2c3539e2010-09-29 13:21:30 -0700464
Tao Bao682c34b2015-04-07 17:16:35 -0700465static void copy_logs() {
466 // We only rotate and record the log of the current session if there are
467 // actual attempts to modify the flash, such as wipes, installs from BCB
468 // or menu selections. This is to avoid unnecessary rotation (and
469 // possible deletion) of log files, if it does not do anything loggable.
470 if (!modified_flash) {
471 return;
472 }
473
Mark Salyzyna4f701a2016-03-09 14:58:16 -0800474 // Always write to pmsg, this allows the OTA logs to be caught in logcat -L
475 copy_log_file_to_pmsg(TEMPORARY_LOG_FILE, LAST_LOG_FILE);
476 copy_log_file_to_pmsg(TEMPORARY_INSTALL_FILE, LAST_INSTALL_FILE);
477
478 // We can do nothing for now if there's no /cache partition.
479 if (!has_cache) {
480 return;
481 }
482
Tao Baobef39712015-05-04 18:50:27 -0700483 rotate_logs(KEEP_LOG_COUNT);
Tao Bao682c34b2015-04-07 17:16:35 -0700484
Doug Zongkerf24fd7e2013-07-02 11:43:25 -0700485 // Copy logs to cache so the system can find out what happened.
Tao Baof0124322015-04-11 02:04:11 +0000486 copy_log_file(TEMPORARY_LOG_FILE, LOG_FILE, true);
487 copy_log_file(TEMPORARY_LOG_FILE, LAST_LOG_FILE, false);
488 copy_log_file(TEMPORARY_INSTALL_FILE, LAST_INSTALL_FILE, false);
489 save_kernel_log(LAST_KMSG_FILE);
Doug Zongkerf24fd7e2013-07-02 11:43:25 -0700490 chmod(LOG_FILE, 0600);
491 chown(LOG_FILE, 1000, 1000); // system user
Tao Baof0124322015-04-11 02:04:11 +0000492 chmod(LAST_KMSG_FILE, 0600);
493 chown(LAST_KMSG_FILE, 1000, 1000); // system user
Doug Zongkerf24fd7e2013-07-02 11:43:25 -0700494 chmod(LAST_LOG_FILE, 0640);
495 chmod(LAST_INSTALL_FILE, 0644);
496 sync();
497}
498
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800499// clear the recovery command and prepare to boot a (hopefully working) system,
Tianjie Xuc14d95d2016-03-24 11:50:34 -0700500// copy our log file to cache as well (for the system to read). This function is
501// idempotent: call it as many times as you like.
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800502static void
Tianjie Xuc14d95d2016-03-24 11:50:34 -0700503finish_recovery() {
Doug Zongker4f33e552012-08-23 13:16:12 -0700504 // Save the locale to cache, so if recovery is next started up
505 // without a --locale argument (eg, directly from the bootloader)
506 // it will use the last-known locale.
Mark Salyzyna4f701a2016-03-09 14:58:16 -0800507 if (locale != NULL) {
508 size_t len = strlen(locale);
509 __pmsg_write(LOCALE_FILE, locale, len);
510 if (has_cache) {
511 LOGI("Saving locale \"%s\"\n", locale);
512 FILE* fp = fopen_path(LOCALE_FILE, "w");
Johan Harvyl85691422016-08-05 15:42:59 +0200513 if (fp != NULL) {
514 fwrite(locale, 1, len, fp);
515 fflush(fp);
516 fsync(fileno(fp));
517 check_and_fclose(fp, LOCALE_FILE);
518 }
Mark Salyzyna4f701a2016-03-09 14:58:16 -0800519 }
Doug Zongker4f33e552012-08-23 13:16:12 -0700520 }
521
Doug Zongkerf24fd7e2013-07-02 11:43:25 -0700522 copy_logs();
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800523
Doug Zongkere5d5ac72012-04-12 11:01:22 -0700524 // Reset to normal system boot so recovery won't cycle indefinitely.
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800525 struct bootloader_message boot;
526 memset(&boot, 0, sizeof(boot));
527 set_bootloader_message(&boot);
528
529 // Remove the command file, so recovery won't repeat indefinitely.
Tao Bao26112e52016-02-25 12:29:40 -0800530 if (has_cache) {
531 if (ensure_path_mounted(COMMAND_FILE) != 0 || (unlink(COMMAND_FILE) && errno != ENOENT)) {
532 LOGW("Can't unlink %s\n", COMMAND_FILE);
533 }
534 ensure_path_unmounted(CACHE_ROOT);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800535 }
536
537 sync(); // For good measure.
538}
539
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700540typedef struct _saved_log_file {
541 char* name;
542 struct stat st;
543 unsigned char* data;
544 struct _saved_log_file* next;
545} saved_log_file;
546
Elliott Hughes945548e2015-06-05 17:59:56 -0700547static bool erase_volume(const char* volume) {
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700548 bool is_cache = (strcmp(volume, CACHE_ROOT) == 0);
Paul Lawrenced0db3372015-11-05 13:38:40 -0800549 bool is_data = (strcmp(volume, DATA_ROOT) == 0);
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700550
Doug Zongker02ec6b82012-08-22 17:26:40 -0700551 ui->SetBackground(RecoveryUI::ERASING);
Doug Zongker211aebc2011-10-28 15:13:10 -0700552 ui->SetProgressType(RecoveryUI::INDETERMINATE);
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700553
554 saved_log_file* head = NULL;
555
556 if (is_cache) {
Tao Baobef39712015-05-04 18:50:27 -0700557 // If we're reformatting /cache, we load any past logs
558 // (i.e. "/cache/recovery/last_*") and the current log
559 // ("/cache/recovery/log") into memory, so we can restore them after
560 // the reformat.
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700561
562 ensure_path_mounted(volume);
563
564 DIR* d;
565 struct dirent* de;
566 d = opendir(CACHE_LOG_DIR);
567 if (d) {
568 char path[PATH_MAX];
569 strcpy(path, CACHE_LOG_DIR);
570 strcat(path, "/");
571 int path_len = strlen(path);
572 while ((de = readdir(d)) != NULL) {
Tao Baobef39712015-05-04 18:50:27 -0700573 if (strncmp(de->d_name, "last_", 5) == 0 || strcmp(de->d_name, "log") == 0) {
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700574 saved_log_file* p = (saved_log_file*) malloc(sizeof(saved_log_file));
575 strcpy(path+path_len, de->d_name);
576 p->name = strdup(path);
577 if (stat(path, &(p->st)) == 0) {
578 // truncate files to 512kb
579 if (p->st.st_size > (1 << 19)) {
580 p->st.st_size = 1 << 19;
581 }
582 p->data = (unsigned char*) malloc(p->st.st_size);
583 FILE* f = fopen(path, "rb");
584 fread(p->data, 1, p->st.st_size, f);
585 fclose(f);
586 p->next = head;
587 head = p;
588 } else {
589 free(p);
590 }
591 }
592 }
593 closedir(d);
594 } else {
595 if (errno != ENOENT) {
596 printf("opendir failed: %s\n", strerror(errno));
597 }
598 }
599 }
600
Doug Zongker211aebc2011-10-28 15:13:10 -0700601 ui->Print("Formatting %s...\n", volume);
Doug Zongker2c3539e2010-09-29 13:21:30 -0700602
Doug Zongkerd0181b82011-10-19 10:51:12 -0700603 ensure_path_unmounted(volume);
Paul Lawrenced0db3372015-11-05 13:38:40 -0800604
605 int result;
606
607 if (is_data && reason && strcmp(reason, "convert_fbe") == 0) {
608 // Create convert_fbe breadcrumb file to signal to init
609 // to convert to file based encryption, not full disk encryption
Paul Lawrence661f8a62016-02-25 12:42:19 -0800610 if (mkdir(CONVERT_FBE_DIR, 0700) != 0) {
611 ui->Print("Failed to make convert_fbe dir %s\n", strerror(errno));
612 return true;
613 }
Paul Lawrenced0db3372015-11-05 13:38:40 -0800614 FILE* f = fopen(CONVERT_FBE_FILE, "wb");
615 if (!f) {
Paul Lawrence661f8a62016-02-25 12:42:19 -0800616 ui->Print("Failed to convert to file encryption %s\n", strerror(errno));
Paul Lawrenced0db3372015-11-05 13:38:40 -0800617 return true;
618 }
619 fclose(f);
620 result = format_volume(volume, CONVERT_FBE_DIR);
621 remove(CONVERT_FBE_FILE);
622 rmdir(CONVERT_FBE_DIR);
623 } else {
624 result = format_volume(volume);
625 }
Doug Zongkerd0181b82011-10-19 10:51:12 -0700626
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700627 if (is_cache) {
628 while (head) {
629 FILE* f = fopen_path(head->name, "wb");
630 if (f) {
631 fwrite(head->data, 1, head->st.st_size, f);
632 fclose(f);
633 chmod(head->name, head->st.st_mode);
634 chown(head->name, head->st.st_uid, head->st.st_gid);
635 }
636 free(head->name);
637 free(head->data);
638 saved_log_file* temp = head->next;
639 free(head);
640 head = temp;
641 }
642
Tao Baof0124322015-04-11 02:04:11 +0000643 // Any part of the log we'd copied to cache is now gone.
644 // Reset the pointer so we copy from the beginning of the temp
645 // log.
646 tmplog_offset = 0;
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700647 copy_logs();
Doug Zongker2c3539e2010-09-29 13:21:30 -0700648 }
649
Elliott Hughes945548e2015-06-05 17:59:56 -0700650 return (result == 0);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800651}
652
Doug Zongkerf93d8162009-09-22 15:16:02 -0700653static int
Doug Zongker28ce47c2011-10-28 10:33:05 -0700654get_menu_selection(const char* const * headers, const char* const * items,
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700655 int menu_only, int initial_selection, Device* device) {
Doug Zongkerf93d8162009-09-22 15:16:02 -0700656 // throw away keys pressed previously, so user doesn't
657 // accidentally trigger menu items.
Doug Zongker211aebc2011-10-28 15:13:10 -0700658 ui->FlushKeys();
Doug Zongkerf93d8162009-09-22 15:16:02 -0700659
Doug Zongker211aebc2011-10-28 15:13:10 -0700660 ui->StartMenu(headers, items, initial_selection);
Doug Zongker8674a722010-09-15 11:08:23 -0700661 int selected = initial_selection;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800662 int chosen_item = -1;
663
Doug Zongkerf93d8162009-09-22 15:16:02 -0700664 while (chosen_item < 0) {
Doug Zongker211aebc2011-10-28 15:13:10 -0700665 int key = ui->WaitKey();
666 int visible = ui->IsTextVisible();
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800667
Doug Zongker5cae4452011-01-25 13:15:30 -0800668 if (key == -1) { // ui_wait_key() timed out
Doug Zongker211aebc2011-10-28 15:13:10 -0700669 if (ui->WasTextEverVisible()) {
Doug Zongker5cae4452011-01-25 13:15:30 -0800670 continue;
671 } else {
672 LOGI("timed out waiting for key input; rebooting.\n");
Doug Zongker211aebc2011-10-28 15:13:10 -0700673 ui->EndMenu();
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700674 return 0; // XXX fixme
Doug Zongker5cae4452011-01-25 13:15:30 -0800675 }
676 }
677
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700678 int action = device->HandleMenuKey(key, visible);
Doug Zongkerddd6a282009-06-09 12:22:33 -0700679
680 if (action < 0) {
681 switch (action) {
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700682 case Device::kHighlightUp:
Elliott Hughes642aaa72015-04-10 12:47:46 -0700683 selected = ui->SelectMenu(--selected);
Doug Zongkerddd6a282009-06-09 12:22:33 -0700684 break;
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700685 case Device::kHighlightDown:
Elliott Hughes642aaa72015-04-10 12:47:46 -0700686 selected = ui->SelectMenu(++selected);
Doug Zongkerddd6a282009-06-09 12:22:33 -0700687 break;
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700688 case Device::kInvokeItem:
Doug Zongkerddd6a282009-06-09 12:22:33 -0700689 chosen_item = selected;
690 break;
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700691 case Device::kNoAction:
Doug Zongkerddd6a282009-06-09 12:22:33 -0700692 break;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800693 }
Doug Zongkerf93d8162009-09-22 15:16:02 -0700694 } else if (!menu_only) {
Doug Zongkerddd6a282009-06-09 12:22:33 -0700695 chosen_item = action;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800696 }
Doug Zongkerf93d8162009-09-22 15:16:02 -0700697 }
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800698
Doug Zongker211aebc2011-10-28 15:13:10 -0700699 ui->EndMenu();
Doug Zongkerf93d8162009-09-22 15:16:02 -0700700 return chosen_item;
701}
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800702
Doug Zongker8674a722010-09-15 11:08:23 -0700703static int compare_string(const void* a, const void* b) {
704 return strcmp(*(const char**)a, *(const char**)b);
705}
706
Doug Zongker93950222014-07-08 14:10:23 -0700707// Returns a malloc'd path, or NULL.
Elliott Hughes30694c92015-03-25 15:16:51 -0700708static char* browse_directory(const char* path, Device* device) {
Michael Ward9d2629c2011-06-23 22:14:24 -0700709 ensure_path_mounted(path);
Doug Zongkerc18eeb82010-09-21 16:49:26 -0700710
Elliott Hughes30694c92015-03-25 15:16:51 -0700711 DIR* d = opendir(path);
Doug Zongker8674a722010-09-15 11:08:23 -0700712 if (d == NULL) {
713 LOGE("error opening %s: %s\n", path, strerror(errno));
Doug Zongker93950222014-07-08 14:10:23 -0700714 return NULL;
Doug Zongker8674a722010-09-15 11:08:23 -0700715 }
716
Doug Zongker8674a722010-09-15 11:08:23 -0700717 int d_size = 0;
718 int d_alloc = 10;
Doug Zongker28ce47c2011-10-28 10:33:05 -0700719 char** dirs = (char**)malloc(d_alloc * sizeof(char*));
Doug Zongker8674a722010-09-15 11:08:23 -0700720 int z_size = 1;
721 int z_alloc = 10;
Doug Zongker28ce47c2011-10-28 10:33:05 -0700722 char** zips = (char**)malloc(z_alloc * sizeof(char*));
Doug Zongker8674a722010-09-15 11:08:23 -0700723 zips[0] = strdup("../");
724
Elliott Hughes30694c92015-03-25 15:16:51 -0700725 struct dirent* de;
Doug Zongker8674a722010-09-15 11:08:23 -0700726 while ((de = readdir(d)) != NULL) {
727 int name_len = strlen(de->d_name);
728
729 if (de->d_type == DT_DIR) {
730 // skip "." and ".." entries
731 if (name_len == 1 && de->d_name[0] == '.') continue;
732 if (name_len == 2 && de->d_name[0] == '.' &&
733 de->d_name[1] == '.') continue;
734
735 if (d_size >= d_alloc) {
736 d_alloc *= 2;
Doug Zongker28ce47c2011-10-28 10:33:05 -0700737 dirs = (char**)realloc(dirs, d_alloc * sizeof(char*));
Doug Zongker8674a722010-09-15 11:08:23 -0700738 }
Doug Zongker28ce47c2011-10-28 10:33:05 -0700739 dirs[d_size] = (char*)malloc(name_len + 2);
Doug Zongker8674a722010-09-15 11:08:23 -0700740 strcpy(dirs[d_size], de->d_name);
741 dirs[d_size][name_len] = '/';
742 dirs[d_size][name_len+1] = '\0';
743 ++d_size;
744 } else if (de->d_type == DT_REG &&
745 name_len >= 4 &&
746 strncasecmp(de->d_name + (name_len-4), ".zip", 4) == 0) {
747 if (z_size >= z_alloc) {
748 z_alloc *= 2;
Doug Zongker28ce47c2011-10-28 10:33:05 -0700749 zips = (char**)realloc(zips, z_alloc * sizeof(char*));
Doug Zongker8674a722010-09-15 11:08:23 -0700750 }
751 zips[z_size++] = strdup(de->d_name);
752 }
753 }
754 closedir(d);
755
756 qsort(dirs, d_size, sizeof(char*), compare_string);
757 qsort(zips, z_size, sizeof(char*), compare_string);
758
759 // append dirs to the zips list
760 if (d_size + z_size + 1 > z_alloc) {
761 z_alloc = d_size + z_size + 1;
Doug Zongker28ce47c2011-10-28 10:33:05 -0700762 zips = (char**)realloc(zips, z_alloc * sizeof(char*));
Doug Zongker8674a722010-09-15 11:08:23 -0700763 }
764 memcpy(zips + z_size, dirs, d_size * sizeof(char*));
765 free(dirs);
766 z_size += d_size;
767 zips[z_size] = NULL;
768
Elliott Hughes8fd86d72015-04-13 14:36:02 -0700769 const char* headers[] = { "Choose a package to install:", path, NULL };
Elliott Hughes30694c92015-03-25 15:16:51 -0700770
Doug Zongker93950222014-07-08 14:10:23 -0700771 char* result;
Doug Zongker8674a722010-09-15 11:08:23 -0700772 int chosen_item = 0;
Doug Zongker93950222014-07-08 14:10:23 -0700773 while (true) {
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700774 chosen_item = get_menu_selection(headers, zips, 1, chosen_item, device);
Doug Zongker8674a722010-09-15 11:08:23 -0700775
776 char* item = zips[chosen_item];
777 int item_len = strlen(item);
778 if (chosen_item == 0) { // item 0 is always "../"
Michael Ward9d2629c2011-06-23 22:14:24 -0700779 // go up but continue browsing (if the caller is update_directory)
Doug Zongker93950222014-07-08 14:10:23 -0700780 result = NULL;
Doug Zongker8674a722010-09-15 11:08:23 -0700781 break;
782 }
Doug Zongker93950222014-07-08 14:10:23 -0700783
784 char new_path[PATH_MAX];
785 strlcpy(new_path, path, PATH_MAX);
786 strlcat(new_path, "/", PATH_MAX);
787 strlcat(new_path, item, PATH_MAX);
788
789 if (item[item_len-1] == '/') {
790 // recurse down into a subdirectory
791 new_path[strlen(new_path)-1] = '\0'; // truncate the trailing '/'
792 result = browse_directory(new_path, device);
793 if (result) break;
794 } else {
795 // selected a zip file: return the malloc'd path to the caller.
796 result = strdup(new_path);
797 break;
798 }
799 }
Doug Zongker8674a722010-09-15 11:08:23 -0700800
Elliott Hughes30694c92015-03-25 15:16:51 -0700801 for (int i = 0; i < z_size; ++i) free(zips[i]);
Doug Zongker8674a722010-09-15 11:08:23 -0700802 free(zips);
Doug Zongker8674a722010-09-15 11:08:23 -0700803
804 return result;
805}
806
Elliott Hughes30694c92015-03-25 15:16:51 -0700807static bool yes_no(Device* device, const char* question1, const char* question2) {
Elliott Hughes8fd86d72015-04-13 14:36:02 -0700808 const char* headers[] = { question1, question2, NULL };
Elliott Hughes30694c92015-03-25 15:16:51 -0700809 const char* items[] = { " No", " Yes", NULL };
Doug Zongkerddd6a282009-06-09 12:22:33 -0700810
Elliott Hughes30694c92015-03-25 15:16:51 -0700811 int chosen_item = get_menu_selection(headers, items, 1, 0, device);
812 return (chosen_item == 1);
813}
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800814
Tao Baoe39a9bc2015-03-31 12:19:05 -0700815// Return true on success.
816static bool wipe_data(int should_confirm, Device* device) {
817 if (should_confirm && !yes_no(device, "Wipe all user data?", " THIS CAN NOT BE UNDONE!")) {
818 return false;
Doug Zongkerf93d8162009-09-22 15:16:02 -0700819 }
Doug Zongker1066d2c2009-04-01 13:57:40 -0700820
Tao Bao682c34b2015-04-07 17:16:35 -0700821 modified_flash = true;
822
Doug Zongker211aebc2011-10-28 15:13:10 -0700823 ui->Print("\n-- Wiping data...\n");
Elliott Hughes945548e2015-06-05 17:59:56 -0700824 bool success =
825 device->PreWipeData() &&
826 erase_volume("/data") &&
Tao Bao26112e52016-02-25 12:29:40 -0800827 (has_cache ? erase_volume("/cache") : true) &&
Elliott Hughes945548e2015-06-05 17:59:56 -0700828 device->PostWipeData();
829 ui->Print("Data wipe %s.\n", success ? "complete" : "failed");
830 return success;
Doug Zongkerf93d8162009-09-22 15:16:02 -0700831}
832
Tao Baoe39a9bc2015-03-31 12:19:05 -0700833// Return true on success.
834static bool wipe_cache(bool should_confirm, Device* device) {
Tao Bao26112e52016-02-25 12:29:40 -0800835 if (!has_cache) {
836 ui->Print("No /cache partition found.\n");
837 return false;
838 }
839
Elliott Hughes30694c92015-03-25 15:16:51 -0700840 if (should_confirm && !yes_no(device, "Wipe cache?", " THIS CAN NOT BE UNDONE!")) {
Tao Baoe39a9bc2015-03-31 12:19:05 -0700841 return false;
Elliott Hughes30694c92015-03-25 15:16:51 -0700842 }
843
Tao Bao682c34b2015-04-07 17:16:35 -0700844 modified_flash = true;
845
Elliott Hughes30694c92015-03-25 15:16:51 -0700846 ui->Print("\n-- Wiping cache...\n");
Elliott Hughes945548e2015-06-05 17:59:56 -0700847 bool success = erase_volume("/cache");
848 ui->Print("Cache wipe %s.\n", success ? "complete" : "failed");
849 return success;
Elliott Hughes30694c92015-03-25 15:16:51 -0700850}
851
Tao Bao862a4c12016-06-02 11:16:50 -0700852// Secure-wipe a given partition. It uses BLKSECDISCARD, if supported.
853// Otherwise, it goes with BLKDISCARD (if device supports BLKDISCARDZEROES) or
854// BLKZEROOUT.
855static bool secure_wipe_partition(const std::string& partition) {
856 android::base::unique_fd fd(TEMP_FAILURE_RETRY(open(partition.c_str(), O_WRONLY)));
857 if (fd == -1) {
858 LOGE("failed to open \"%s\": %s\n", partition.c_str(), strerror(errno));
859 return false;
860 }
861
862 uint64_t range[2] = {0, 0};
863 if (ioctl(fd, BLKGETSIZE64, &range[1]) == -1 || range[1] == 0) {
864 LOGE("failed to get partition size: %s\n", strerror(errno));
865 return false;
866 }
867 printf("Secure-wiping \"%s\" from %" PRIu64 " to %" PRIu64 ".\n",
868 partition.c_str(), range[0], range[1]);
869
870 printf("Trying BLKSECDISCARD...\t");
871 if (ioctl(fd, BLKSECDISCARD, &range) == -1) {
872 printf("failed: %s\n", strerror(errno));
873
874 // Use BLKDISCARD if it zeroes out blocks, otherwise use BLKZEROOUT.
875 unsigned int zeroes;
876 if (ioctl(fd, BLKDISCARDZEROES, &zeroes) == 0 && zeroes != 0) {
877 printf("Trying BLKDISCARD...\t");
878 if (ioctl(fd, BLKDISCARD, &range) == -1) {
879 printf("failed: %s\n", strerror(errno));
880 return false;
881 }
882 } else {
883 printf("Trying BLKZEROOUT...\t");
884 if (ioctl(fd, BLKZEROOUT, &range) == -1) {
885 printf("failed: %s\n", strerror(errno));
886 return false;
887 }
888 }
889 }
890
891 printf("done\n");
892 return true;
893}
894
895// Brick the current device, with a secure wipe of all the partitions in
896// RECOVERY_BRICK.
897static bool brick_device() {
898 ui->SetBackground(RecoveryUI::ERASING);
899 ui->SetProgressType(RecoveryUI::INDETERMINATE);
900
901 std::string partition_list;
902 if (!android::base::ReadFileToString(RECOVERY_BRICK, &partition_list)) {
903 LOGE("failed to read \"%s\".\n", RECOVERY_BRICK);
904 return false;
905 }
906
907 std::vector<std::string> lines = android::base::Split(partition_list, "\n");
908 for (const std::string& line : lines) {
909 std::string partition = android::base::Trim(line);
910 // Ignore '#' comment or empty lines.
911 if (android::base::StartsWith(partition, "#") || partition.empty()) {
912 continue;
913 }
914
915 // Proceed anyway even if it fails to wipe some partition.
916 secure_wipe_partition(partition);
917 }
918 return true;
919}
920
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700921static void choose_recovery_file(Device* device) {
Elliott Hughesc0491632015-05-06 12:40:05 -0700922 // "Back" + KEEP_LOG_COUNT * 2 + terminating nullptr entry
923 char* entries[1 + KEEP_LOG_COUNT * 2 + 1];
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700924 memset(entries, 0, sizeof(entries));
925
Tao Baobef39712015-05-04 18:50:27 -0700926 unsigned int n = 0;
Patrick Tjincd055ee2014-12-09 11:26:40 -0800927
Tianjie Xua54f75e2016-08-17 12:02:46 -0700928 if (has_cache) {
929 // Add LAST_LOG_FILE + LAST_LOG_FILE.x
930 // Add LAST_KMSG_FILE + LAST_KMSG_FILE.x
931 for (int i = 0; i < KEEP_LOG_COUNT; i++) {
932 char* log_file;
933 int ret;
934 ret = (i == 0) ? asprintf(&log_file, "%s", LAST_LOG_FILE) :
935 asprintf(&log_file, "%s.%d", LAST_LOG_FILE, i);
936 if (ret == -1) {
937 // memory allocation failure - return early. Should never happen.
938 return;
939 }
940 if ((ensure_path_mounted(log_file) != 0) || (access(log_file, R_OK) == -1)) {
941 free(log_file);
942 } else {
943 entries[n++] = log_file;
944 }
Tao Baobef39712015-05-04 18:50:27 -0700945
Tianjie Xua54f75e2016-08-17 12:02:46 -0700946 char* kmsg_file;
947 ret = (i == 0) ? asprintf(&kmsg_file, "%s", LAST_KMSG_FILE) :
948 asprintf(&kmsg_file, "%s.%d", LAST_KMSG_FILE, i);
949 if (ret == -1) {
950 // memory allocation failure - return early. Should never happen.
951 return;
952 }
953 if ((ensure_path_mounted(kmsg_file) != 0) || (access(kmsg_file, R_OK) == -1)) {
954 free(kmsg_file);
955 } else {
956 entries[n++] = kmsg_file;
957 }
Tao Baobef39712015-05-04 18:50:27 -0700958 }
Tianjie Xua54f75e2016-08-17 12:02:46 -0700959 } else {
960 // If cache partition is not found, view /tmp/recovery.log instead.
961 ui->Print("No /cache partition found.\n");
962 if (access(TEMPORARY_LOG_FILE, R_OK) == -1) {
963 return;
964 } else{
965 entries[n++] = strdup(TEMPORARY_LOG_FILE);
Tao Baobef39712015-05-04 18:50:27 -0700966 }
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700967 }
968
Elliott Hughesc0491632015-05-06 12:40:05 -0700969 entries[n++] = strdup("Back");
970
Tao Baobef39712015-05-04 18:50:27 -0700971 const char* headers[] = { "Select file to view", nullptr };
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700972
Elliott Hughes8de52072015-04-08 20:06:50 -0700973 while (true) {
Elliott Hughes30694c92015-03-25 15:16:51 -0700974 int chosen_item = get_menu_selection(headers, entries, 1, 0, device);
Elliott Hughesc0491632015-05-06 12:40:05 -0700975 if (strcmp(entries[chosen_item], "Back") == 0) break;
Elliott Hughes8de52072015-04-08 20:06:50 -0700976
Elliott Hughes8de52072015-04-08 20:06:50 -0700977 ui->ShowFile(entries[chosen_item]);
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700978 }
979
Tao Baobef39712015-05-04 18:50:27 -0700980 for (size_t i = 0; i < (sizeof(entries) / sizeof(*entries)); i++) {
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700981 free(entries[i]);
982 }
983}
984
Elliott Hughes498cda62016-04-14 16:49:04 -0700985static void run_graphics_test(Device* device) {
986 // Switch to graphics screen.
987 ui->ShowText(false);
988
989 ui->SetProgressType(RecoveryUI::INDETERMINATE);
990 ui->SetBackground(RecoveryUI::INSTALLING_UPDATE);
991 sleep(1);
992
993 ui->SetBackground(RecoveryUI::ERROR);
994 sleep(1);
995
996 ui->SetBackground(RecoveryUI::NO_COMMAND);
997 sleep(1);
998
999 ui->SetBackground(RecoveryUI::ERASING);
1000 sleep(1);
1001
1002 ui->SetBackground(RecoveryUI::INSTALLING_UPDATE);
1003
1004 ui->SetProgressType(RecoveryUI::DETERMINATE);
1005 ui->ShowProgress(1.0, 10.0);
1006 float fraction = 0.0;
1007 for (size_t i = 0; i < 100; ++i) {
1008 fraction += .01;
1009 ui->SetProgress(fraction);
1010 usleep(100000);
1011 }
1012
1013 ui->ShowText(true);
1014}
1015
Tao Baocdcf28f2016-01-13 15:05:20 -08001016// How long (in seconds) we wait for the fuse-provided package file to
1017// appear, before timing out.
1018#define SDCARD_INSTALL_TIMEOUT 10
1019
Tao Bao145d8612015-03-25 15:51:15 -07001020static int apply_from_sdcard(Device* device, bool* wipe_cache) {
Tao Bao682c34b2015-04-07 17:16:35 -07001021 modified_flash = true;
1022
Christian Poetzsch4ec58a42015-02-19 10:42:39 +00001023 if (ensure_path_mounted(SDCARD_ROOT) != 0) {
1024 ui->Print("\n-- Couldn't mount %s.\n", SDCARD_ROOT);
1025 return INSTALL_ERROR;
1026 }
1027
1028 char* path = browse_directory(SDCARD_ROOT, device);
1029 if (path == NULL) {
Elliott Hughes018ed312015-04-08 16:51:36 -07001030 ui->Print("\n-- No package file selected.\n");
caozhiyuanb4effb92015-06-10 16:46:38 +08001031 ensure_path_unmounted(SDCARD_ROOT);
Christian Poetzsch4ec58a42015-02-19 10:42:39 +00001032 return INSTALL_ERROR;
1033 }
1034
1035 ui->Print("\n-- Install %s ...\n", path);
1036 set_sdcard_update_bootloader_message();
Christian Poetzsch4ec58a42015-02-19 10:42:39 +00001037
Tao Baocdcf28f2016-01-13 15:05:20 -08001038 // We used to use fuse in a thread as opposed to a process. Since accessing
1039 // through fuse involves going from kernel to userspace to kernel, it leads
1040 // to deadlock when a page fault occurs. (Bug: 26313124)
1041 pid_t child;
1042 if ((child = fork()) == 0) {
1043 bool status = start_sdcard_fuse(path);
1044
1045 _exit(status ? EXIT_SUCCESS : EXIT_FAILURE);
1046 }
1047
1048 // FUSE_SIDELOAD_HOST_PATHNAME will start to exist once the fuse in child
1049 // process is ready.
1050 int result = INSTALL_ERROR;
1051 int status;
1052 bool waited = false;
1053 for (int i = 0; i < SDCARD_INSTALL_TIMEOUT; ++i) {
1054 if (waitpid(child, &status, WNOHANG) == -1) {
1055 result = INSTALL_ERROR;
1056 waited = true;
1057 break;
1058 }
1059
1060 struct stat sb;
1061 if (stat(FUSE_SIDELOAD_HOST_PATHNAME, &sb) == -1) {
1062 if (errno == ENOENT && i < SDCARD_INSTALL_TIMEOUT-1) {
1063 sleep(1);
1064 continue;
1065 } else {
1066 LOGE("Timed out waiting for the fuse-provided package.\n");
1067 result = INSTALL_ERROR;
1068 kill(child, SIGKILL);
1069 break;
1070 }
1071 }
1072
1073 result = install_package(FUSE_SIDELOAD_HOST_PATHNAME, wipe_cache,
Tianjie Xu16255832016-04-30 11:49:59 -07001074 TEMPORARY_INSTALL_FILE, false, 0/*retry_count*/);
Tao Baocdcf28f2016-01-13 15:05:20 -08001075 break;
1076 }
Christian Poetzsch4ec58a42015-02-19 10:42:39 +00001077
Tao Baocdcf28f2016-01-13 15:05:20 -08001078 if (!waited) {
1079 // Calling stat() on this magic filename signals the fuse
1080 // filesystem to shut down.
1081 struct stat sb;
1082 stat(FUSE_SIDELOAD_HOST_EXIT_PATHNAME, &sb);
1083
1084 waitpid(child, &status, 0);
1085 }
1086
1087 if (!WIFEXITED(status) || WEXITSTATUS(status) != 0) {
1088 LOGE("Error exit from the fuse process: %d\n", WEXITSTATUS(status));
1089 }
1090
Christian Poetzsch4ec58a42015-02-19 10:42:39 +00001091 ensure_path_unmounted(SDCARD_ROOT);
Tao Baocdcf28f2016-01-13 15:05:20 -08001092 return result;
Christian Poetzsch4ec58a42015-02-19 10:42:39 +00001093}
1094
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001095// Return REBOOT, SHUTDOWN, or REBOOT_BOOTLOADER. Returning NO_ACTION
1096// means to take the default, which is to reboot or shutdown depending
1097// on if the --shutdown_after flag was passed to recovery.
1098static Device::BuiltinAction
Doug Zongker6c8553d2012-09-24 10:40:47 -07001099prompt_and_wait(Device* device, int status) {
Doug Zongkerf93d8162009-09-22 15:16:02 -07001100 for (;;) {
Tianjie Xuc14d95d2016-03-24 11:50:34 -07001101 finish_recovery();
Doug Zongker6c8553d2012-09-24 10:40:47 -07001102 switch (status) {
1103 case INSTALL_SUCCESS:
1104 case INSTALL_NONE:
1105 ui->SetBackground(RecoveryUI::NO_COMMAND);
1106 break;
1107
1108 case INSTALL_ERROR:
1109 case INSTALL_CORRUPT:
1110 ui->SetBackground(RecoveryUI::ERROR);
1111 break;
1112 }
Doug Zongker211aebc2011-10-28 15:13:10 -07001113 ui->SetProgressType(RecoveryUI::EMPTY);
Doug Zongkerf93d8162009-09-22 15:16:02 -07001114
Elliott Hughes8fd86d72015-04-13 14:36:02 -07001115 int chosen_item = get_menu_selection(nullptr, device->GetMenuItems(), 0, 0, device);
Doug Zongkerf93d8162009-09-22 15:16:02 -07001116
1117 // device-specific code may take some action here. It may
1118 // return one of the core actions handled in the switch
1119 // statement below.
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001120 Device::BuiltinAction chosen_action = device->InvokeMenuItem(chosen_item);
Doug Zongkerf93d8162009-09-22 15:16:02 -07001121
Elliott Hughes30694c92015-03-25 15:16:51 -07001122 bool should_wipe_cache = false;
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001123 switch (chosen_action) {
1124 case Device::NO_ACTION:
1125 break;
1126
Doug Zongkerdaefc1d2011-10-31 09:34:15 -07001127 case Device::REBOOT:
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001128 case Device::SHUTDOWN:
1129 case Device::REBOOT_BOOTLOADER:
1130 return chosen_action;
Doug Zongkerf93d8162009-09-22 15:16:02 -07001131
Doug Zongkerdaefc1d2011-10-31 09:34:15 -07001132 case Device::WIPE_DATA:
1133 wipe_data(ui->IsTextVisible(), device);
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001134 if (!ui->IsTextVisible()) return Device::NO_ACTION;
Doug Zongkerf93d8162009-09-22 15:16:02 -07001135 break;
1136
Doug Zongkerdaefc1d2011-10-31 09:34:15 -07001137 case Device::WIPE_CACHE:
Elliott Hughes30694c92015-03-25 15:16:51 -07001138 wipe_cache(ui->IsTextVisible(), device);
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001139 if (!ui->IsTextVisible()) return Device::NO_ACTION;
Doug Zongkerf93d8162009-09-22 15:16:02 -07001140 break;
1141
Christian Poetzsch4ec58a42015-02-19 10:42:39 +00001142 case Device::APPLY_ADB_SIDELOAD:
Elliott Hughesec283402015-04-10 10:01:53 -07001143 case Device::APPLY_SDCARD:
Christian Poetzsch4ec58a42015-02-19 10:42:39 +00001144 {
1145 bool adb = (chosen_action == Device::APPLY_ADB_SIDELOAD);
1146 if (adb) {
Elliott Hughes30694c92015-03-25 15:16:51 -07001147 status = apply_from_adb(ui, &should_wipe_cache, TEMPORARY_INSTALL_FILE);
Doug Zongkerd0181b82011-10-19 10:51:12 -07001148 } else {
Elliott Hughes30694c92015-03-25 15:16:51 -07001149 status = apply_from_sdcard(device, &should_wipe_cache);
Doug Zongkerd0181b82011-10-19 10:51:12 -07001150 }
Doug Zongker945fc682014-07-10 10:50:39 -07001151
Elliott Hughes30694c92015-03-25 15:16:51 -07001152 if (status == INSTALL_SUCCESS && should_wipe_cache) {
Tao Baoe39a9bc2015-03-31 12:19:05 -07001153 if (!wipe_cache(false, device)) {
1154 status = INSTALL_ERROR;
1155 }
Christian Poetzsch4ec58a42015-02-19 10:42:39 +00001156 }
1157
Tao Baoc679f932015-03-30 09:43:49 -07001158 if (status != INSTALL_SUCCESS) {
1159 ui->SetBackground(RecoveryUI::ERROR);
1160 ui->Print("Installation aborted.\n");
1161 copy_logs();
1162 } else if (!ui->IsTextVisible()) {
1163 return Device::NO_ACTION; // reboot if logs aren't visible
1164 } else {
1165 ui->Print("\nInstall from %s complete.\n", adb ? "ADB" : "SD card");
Doug Zongker8674a722010-09-15 11:08:23 -07001166 }
Doug Zongkerf93d8162009-09-22 15:16:02 -07001167 }
1168 break;
Doug Zongkerdaefc1d2011-10-31 09:34:15 -07001169
Elliott Hughesec283402015-04-10 10:01:53 -07001170 case Device::VIEW_RECOVERY_LOGS:
1171 choose_recovery_file(device);
Michael Ward9d2629c2011-06-23 22:14:24 -07001172 break;
Doug Zongker9270a202012-01-09 15:16:13 -08001173
Elliott Hughes498cda62016-04-14 16:49:04 -07001174 case Device::RUN_GRAPHICS_TEST:
1175 run_graphics_test(device);
1176 break;
1177
Elliott Hughesec283402015-04-10 10:01:53 -07001178 case Device::MOUNT_SYSTEM:
Tao Baoabb8f772015-07-30 14:43:27 -07001179 char system_root_image[PROPERTY_VALUE_MAX];
1180 property_get("ro.build.system_root_image", system_root_image, "");
1181
1182 // For a system image built with the root directory (i.e.
1183 // system_root_image == "true"), we mount it to /system_root, and symlink /system
1184 // to /system_root/system to make adb shell work (the symlink is created through
1185 // the build system).
1186 // Bug: 22855115
1187 if (strcmp(system_root_image, "true") == 0) {
1188 if (ensure_path_mounted_at("/", "/system_root") != -1) {
1189 ui->Print("Mounted /system.\n");
1190 }
1191 } else {
1192 if (ensure_path_mounted("/system") != -1) {
1193 ui->Print("Mounted /system.\n");
1194 }
Elliott Hughesec283402015-04-10 10:01:53 -07001195 }
Tao Baoabb8f772015-07-30 14:43:27 -07001196
Nick Kralevicha9ad0322014-10-22 18:38:48 -07001197 break;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001198 }
1199 }
1200}
1201
1202static void
Oscar Montemayor05231562009-11-30 08:40:57 -08001203print_property(const char *key, const char *name, void *cookie) {
Doug Zongker56c51052010-07-01 09:18:44 -07001204 printf("%s=%s\n", key, name);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001205}
1206
Doug Zongker02ec6b82012-08-22 17:26:40 -07001207static void
1208load_locale_from_cache() {
1209 FILE* fp = fopen_path(LOCALE_FILE, "r");
1210 char buffer[80];
1211 if (fp != NULL) {
1212 fgets(buffer, sizeof(buffer), fp);
1213 int j = 0;
Doug Zongker5fa8c232012-09-18 12:37:02 -07001214 unsigned int i;
Doug Zongker02ec6b82012-08-22 17:26:40 -07001215 for (i = 0; i < sizeof(buffer) && buffer[i]; ++i) {
1216 if (!isspace(buffer[i])) {
1217 buffer[j++] = buffer[i];
1218 }
1219 }
1220 buffer[j] = 0;
1221 locale = strdup(buffer);
Devin Kim6016d082012-10-08 09:47:37 -07001222 check_and_fclose(fp, LOCALE_FILE);
Doug Zongker02ec6b82012-08-22 17:26:40 -07001223 }
1224}
1225
Doug Zongker7c3ae452013-05-14 11:03:02 -07001226static RecoveryUI* gCurrentUI = NULL;
1227
1228void
1229ui_print(const char* format, ...) {
1230 char buffer[256];
1231
1232 va_list ap;
1233 va_start(ap, format);
1234 vsnprintf(buffer, sizeof(buffer), format, ap);
1235 va_end(ap);
1236
1237 if (gCurrentUI != NULL) {
1238 gCurrentUI->Print("%s", buffer);
1239 } else {
1240 fputs(buffer, stdout);
1241 }
1242}
1243
Yabin Cui99281df2016-02-17 12:21:52 -08001244static bool is_battery_ok() {
1245 struct healthd_config healthd_config = {
1246 .batteryStatusPath = android::String8(android::String8::kEmptyString),
1247 .batteryHealthPath = android::String8(android::String8::kEmptyString),
1248 .batteryPresentPath = android::String8(android::String8::kEmptyString),
1249 .batteryCapacityPath = android::String8(android::String8::kEmptyString),
1250 .batteryVoltagePath = android::String8(android::String8::kEmptyString),
1251 .batteryTemperaturePath = android::String8(android::String8::kEmptyString),
1252 .batteryTechnologyPath = android::String8(android::String8::kEmptyString),
1253 .batteryCurrentNowPath = android::String8(android::String8::kEmptyString),
1254 .batteryCurrentAvgPath = android::String8(android::String8::kEmptyString),
1255 .batteryChargeCounterPath = android::String8(android::String8::kEmptyString),
1256 .batteryFullChargePath = android::String8(android::String8::kEmptyString),
1257 .batteryCycleCountPath = android::String8(android::String8::kEmptyString),
1258 .energyCounter = NULL,
1259 .boot_min_cap = 0,
1260 .screen_on = NULL
1261 };
1262 healthd_board_init(&healthd_config);
1263
1264 android::BatteryMonitor monitor;
1265 monitor.init(&healthd_config);
1266
1267 int wait_second = 0;
1268 while (true) {
1269 int charge_status = monitor.getChargeStatus();
1270 // Treat unknown status as charged.
1271 bool charged = (charge_status != android::BATTERY_STATUS_DISCHARGING &&
1272 charge_status != android::BATTERY_STATUS_NOT_CHARGING);
1273 android::BatteryProperty capacity;
1274 android::status_t status = monitor.getProperty(android::BATTERY_PROP_CAPACITY, &capacity);
1275 ui_print("charge_status %d, charged %d, status %d, capacity %lld\n", charge_status,
1276 charged, status, capacity.valueInt64);
1277 // At startup, the battery drivers in devices like N5X/N6P take some time to load
1278 // the battery profile. Before the load finishes, it reports value 50 as a fake
1279 // capacity. BATTERY_READ_TIMEOUT_IN_SEC is set that the battery drivers are expected
1280 // to finish loading the battery profile earlier than 10 seconds after kernel startup.
1281 if (status == 0 && capacity.valueInt64 == 50) {
1282 if (wait_second < BATTERY_READ_TIMEOUT_IN_SEC) {
1283 sleep(1);
1284 wait_second++;
1285 continue;
1286 }
1287 }
1288 // If we can't read battery percentage, it may be a device without battery. In this
1289 // situation, use 100 as a fake battery percentage.
1290 if (status != 0) {
1291 capacity.valueInt64 = 100;
1292 }
1293 return (charged && capacity.valueInt64 >= BATTERY_WITH_CHARGER_OK_PERCENTAGE) ||
1294 (!charged && capacity.valueInt64 >= BATTERY_OK_PERCENTAGE);
1295 }
1296}
1297
Tianjie Xu3c62b672016-02-05 18:25:58 -08001298static void set_retry_bootloader_message(int retry_count, int argc, char** argv) {
1299 struct bootloader_message boot {};
1300 strlcpy(boot.command, "boot-recovery", sizeof(boot.command));
1301 strlcpy(boot.recovery, "recovery\n", sizeof(boot.recovery));
1302
1303 for (int i = 1; i < argc; ++i) {
1304 if (strstr(argv[i], "retry_count") == nullptr) {
1305 strlcat(boot.recovery, argv[i], sizeof(boot.recovery));
1306 strlcat(boot.recovery, "\n", sizeof(boot.recovery));
1307 }
1308 }
1309
1310 // Initialize counter to 1 if it's not in BCB, otherwise increment it by 1.
1311 if (retry_count == 0) {
1312 strlcat(boot.recovery, "--retry_count=1\n", sizeof(boot.recovery));
1313 } else {
1314 char buffer[20];
1315 snprintf(buffer, sizeof(buffer), "--retry_count=%d\n", retry_count+1);
1316 strlcat(boot.recovery, buffer, sizeof(boot.recovery));
1317 }
1318 set_bootloader_message(&boot);
1319}
1320
Mark Salyzyna4f701a2016-03-09 14:58:16 -08001321static ssize_t logbasename(
1322 log_id_t /* logId */,
1323 char /* prio */,
1324 const char *filename,
1325 const char * /* buf */, size_t len,
1326 void *arg) {
1327 if (strstr(LAST_KMSG_FILE, filename) ||
1328 strstr(LAST_LOG_FILE, filename)) {
1329 bool *doRotate = reinterpret_cast<bool *>(arg);
1330 *doRotate = true;
1331 }
1332 return len;
1333}
1334
1335static ssize_t logrotate(
1336 log_id_t logId,
1337 char prio,
1338 const char *filename,
1339 const char *buf, size_t len,
1340 void *arg) {
1341 bool *doRotate = reinterpret_cast<bool *>(arg);
1342 if (!*doRotate) {
1343 return __android_log_pmsg_file_write(logId, prio, filename, buf, len);
1344 }
1345
1346 std::string name(filename);
Chih-Hung Hsieh23abfd32016-07-27 10:19:47 -07001347 size_t dot = name.find_last_of('.');
Mark Salyzyna4f701a2016-03-09 14:58:16 -08001348 std::string sub = name.substr(0, dot);
1349
1350 if (!strstr(LAST_KMSG_FILE, sub.c_str()) &&
1351 !strstr(LAST_LOG_FILE, sub.c_str())) {
1352 return __android_log_pmsg_file_write(logId, prio, filename, buf, len);
1353 }
1354
1355 // filename rotation
1356 if (dot == std::string::npos) {
1357 name += ".1";
1358 } else {
1359 std::string number = name.substr(dot + 1);
1360 if (!isdigit(number.data()[0])) {
1361 name += ".1";
1362 } else {
Chih-Hung Hsieh54a27472016-04-18 11:30:55 -07001363 auto i = std::stoull(number);
Mark Salyzyna4f701a2016-03-09 14:58:16 -08001364 name = sub + "." + std::to_string(i + 1);
1365 }
1366 }
1367
1368 return __android_log_pmsg_file_write(logId, prio, name.c_str(), buf, len);
1369}
1370
Yabin Cui99281df2016-02-17 12:21:52 -08001371int main(int argc, char **argv) {
Mark Salyzyna4f701a2016-03-09 14:58:16 -08001372 // Take last pmsg contents and rewrite it to the current pmsg session.
1373 static const char filter[] = "recovery/";
1374 // Do we need to rotate?
1375 bool doRotate = false;
1376 __android_log_pmsg_file_read(
1377 LOG_ID_SYSTEM, ANDROID_LOG_INFO, filter,
1378 logbasename, &doRotate);
1379 // Take action to refresh pmsg contents
1380 __android_log_pmsg_file_read(
1381 LOG_ID_SYSTEM, ANDROID_LOG_INFO, filter,
1382 logrotate, &doRotate);
1383
Doug Zongker9270a202012-01-09 15:16:13 -08001384 // If this binary is started with the single argument "--adbd",
1385 // instead of being the normal recovery binary, it turns into kind
1386 // of a stripped-down version of adbd that only supports the
1387 // 'sideload' command. Note this must be a real argument, not
1388 // anything in the command file or bootloader control block; the
1389 // only way recovery should be run with this argument is when it
1390 // starts a copy of itself from the apply_from_adb() function.
1391 if (argc == 2 && strcmp(argv[1], "--adbd") == 0) {
Elliott Hughes9f4fdb32015-11-20 13:03:24 -08001392 adb_server_main(0, DEFAULT_ADB_PORT, -1);
Doug Zongker9270a202012-01-09 15:16:13 -08001393 return 0;
1394 }
1395
Tao Bao04ca4262015-09-10 15:32:24 -07001396 time_t start = time(NULL);
1397
1398 // redirect_stdio should be called only in non-sideload mode. Otherwise
1399 // we may have two logger instances with different timestamps.
1400 redirect_stdio(TEMPORARY_LOG_FILE);
1401
Doug Zongker19a8e242014-01-21 09:25:41 -08001402 printf("Starting recovery (pid %d) on %s", getpid(), ctime(&start));
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001403
Doug Zongkerd4208f92010-09-20 12:16:13 -07001404 load_volume_table();
Tao Bao26112e52016-02-25 12:29:40 -08001405 has_cache = volume_for_path(CACHE_ROOT) != nullptr;
1406
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001407 get_args(&argc, &argv);
1408
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001409 const char *update_package = NULL;
Tao Baoe39a9bc2015-03-31 12:19:05 -07001410 bool should_wipe_data = false;
Tao Baoc679f932015-03-30 09:43:49 -07001411 bool should_wipe_cache = false;
Tao Bao862a4c12016-06-02 11:16:50 -07001412 bool should_brick = false;
Tao Bao145d8612015-03-25 15:51:15 -07001413 bool show_text = false;
Tao Baoc679f932015-03-30 09:43:49 -07001414 bool sideload = false;
1415 bool sideload_auto_reboot = false;
Doug Zongkere5d5ac72012-04-12 11:01:22 -07001416 bool just_exit = false;
Doug Zongkerb1d12632014-03-18 10:32:12 -07001417 bool shutdown_after = false;
Tianjie Xu3c62b672016-02-05 18:25:58 -08001418 int retry_count = 0;
Tianjie Xu35926c42016-04-28 18:06:26 -07001419 bool security_update = false;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001420
1421 int arg;
Tao Bao862a4c12016-06-02 11:16:50 -07001422 int option_index;
1423 while ((arg = getopt_long(argc, argv, "", OPTIONS, &option_index)) != -1) {
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001424 switch (arg) {
Tianjie Xu3c62b672016-02-05 18:25:58 -08001425 case 'n': android::base::ParseInt(optarg, &retry_count, 0); break;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001426 case 'u': update_package = optarg; break;
Tao Baoe39a9bc2015-03-31 12:19:05 -07001427 case 'w': should_wipe_data = true; break;
Tao Baoc679f932015-03-30 09:43:49 -07001428 case 'c': should_wipe_cache = true; break;
Tao Bao145d8612015-03-25 15:51:15 -07001429 case 't': show_text = true; break;
Tao Baoc679f932015-03-30 09:43:49 -07001430 case 's': sideload = true; break;
1431 case 'a': sideload = true; sideload_auto_reboot = true; break;
Doug Zongkere5d5ac72012-04-12 11:01:22 -07001432 case 'x': just_exit = true; break;
Doug Zongker02ec6b82012-08-22 17:26:40 -07001433 case 'l': locale = optarg; break;
Doug Zongkerc87bab12013-11-25 13:53:25 -08001434 case 'g': {
1435 if (stage == NULL || *stage == '\0') {
1436 char buffer[20] = "1/";
1437 strncat(buffer, optarg, sizeof(buffer)-3);
1438 stage = strdup(buffer);
1439 }
1440 break;
1441 }
Doug Zongkerb1d12632014-03-18 10:32:12 -07001442 case 'p': shutdown_after = true; break;
Jeff Sharkeya6e13ae2014-09-24 11:46:17 -07001443 case 'r': reason = optarg; break;
Tianjie Xu35926c42016-04-28 18:06:26 -07001444 case 'e': security_update = true; break;
Tao Bao862a4c12016-06-02 11:16:50 -07001445 case 0: {
1446 if (strcmp(OPTIONS[option_index].name, "brick") == 0) {
1447 should_brick = true;
1448 break;
1449 }
1450 break;
1451 }
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001452 case '?':
1453 LOGE("Invalid command argument\n");
1454 continue;
1455 }
1456 }
1457
Tao Bao26112e52016-02-25 12:29:40 -08001458 if (locale == nullptr && has_cache) {
Doug Zongker02ec6b82012-08-22 17:26:40 -07001459 load_locale_from_cache();
1460 }
1461 printf("locale is [%s]\n", locale);
Doug Zongker0d32f252014-02-13 15:07:56 -08001462 printf("stage is [%s]\n", stage);
Jeff Sharkeya6e13ae2014-09-24 11:46:17 -07001463 printf("reason is [%s]\n", reason);
Doug Zongker02ec6b82012-08-22 17:26:40 -07001464
1465 Device* device = make_device();
1466 ui = device->GetUI();
Doug Zongker7c3ae452013-05-14 11:03:02 -07001467 gCurrentUI = ui;
Doug Zongker02ec6b82012-08-22 17:26:40 -07001468
Doug Zongker5fa8c232012-09-18 12:37:02 -07001469 ui->SetLocale(locale);
Doug Zongker02ec6b82012-08-22 17:26:40 -07001470 ui->Init();
Tianjie Xu35926c42016-04-28 18:06:26 -07001471 // Set background string to "installing security update" for security update,
1472 // otherwise set it to "installing system update".
1473 ui->SetSystemUpdateText(security_update);
Doug Zongkerc87bab12013-11-25 13:53:25 -08001474
1475 int st_cur, st_max;
1476 if (stage != NULL && sscanf(stage, "%d/%d", &st_cur, &st_max) == 2) {
1477 ui->SetStage(st_cur, st_max);
1478 }
1479
Doug Zongker02ec6b82012-08-22 17:26:40 -07001480 ui->SetBackground(RecoveryUI::NONE);
1481 if (show_text) ui->ShowText(true);
1482
Stephen Smalley779701d2012-02-09 14:13:23 -05001483 struct selinux_opt seopts[] = {
1484 { SELABEL_OPT_PATH, "/file_contexts" }
1485 };
1486
1487 sehandle = selabel_open(SELABEL_CTX_FILE, seopts, 1);
1488
1489 if (!sehandle) {
Doug Zongkerfafc85b2013-07-09 12:29:45 -07001490 ui->Print("Warning: No file_contexts\n");
Stephen Smalley779701d2012-02-09 14:13:23 -05001491 }
Stephen Smalley779701d2012-02-09 14:13:23 -05001492
Doug Zongkerdaefc1d2011-10-31 09:34:15 -07001493 device->StartRecovery();
Doug Zongkerefa1bab2010-02-01 15:59:12 -08001494
Doug Zongker56c51052010-07-01 09:18:44 -07001495 printf("Command:");
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001496 for (arg = 0; arg < argc; arg++) {
Doug Zongker56c51052010-07-01 09:18:44 -07001497 printf(" \"%s\"", argv[arg]);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001498 }
Doug Zongker9b125b02010-09-22 12:01:37 -07001499 printf("\n");
1500
1501 if (update_package) {
1502 // For backwards compatibility on the cache partition only, if
1503 // we're given an old 'root' path "CACHE:foo", change it to
1504 // "/cache/foo".
1505 if (strncmp(update_package, "CACHE:", 6) == 0) {
1506 int len = strlen(update_package) + 10;
Doug Zongker28ce47c2011-10-28 10:33:05 -07001507 char* modified_path = (char*)malloc(len);
Jeremy Compostella1b7d9b72015-07-29 17:17:03 +02001508 if (modified_path) {
1509 strlcpy(modified_path, "/cache/", len);
1510 strlcat(modified_path, update_package+6, len);
1511 printf("(replacing path \"%s\" with \"%s\")\n",
1512 update_package, modified_path);
1513 update_package = modified_path;
1514 }
1515 else
1516 printf("modified_path allocation failed\n");
Doug Zongker9b125b02010-09-22 12:01:37 -07001517 }
1518 }
1519 printf("\n");
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001520
1521 property_list(print_property, NULL);
Doug Zongker56c51052010-07-01 09:18:44 -07001522 printf("\n");
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001523
Elliott Hughesbb78d622015-04-09 20:51:08 -07001524 ui->Print("Supported API: %d\n", RECOVERY_API_VERSION);
1525
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001526 int status = INSTALL_SUCCESS;
1527
Doug Zongker540d57f2011-01-18 13:36:58 -08001528 if (update_package != NULL) {
Tao Bao56870012016-04-29 15:37:05 -07001529 // It's not entirely true that we will modify the flash. But we want
1530 // to log the update attempt since update_package is non-NULL.
1531 modified_flash = true;
1532
Yabin Cui99281df2016-02-17 12:21:52 -08001533 if (!is_battery_ok()) {
1534 ui->Print("battery capacity is not enough for installing package, needed is %d%%\n",
1535 BATTERY_OK_PERCENTAGE);
Tianjie Xu16255832016-04-30 11:49:59 -07001536 // Log the error code to last_install when installation skips due to
1537 // low battery.
1538 FILE* install_log = fopen_path(LAST_INSTALL_FILE, "w");
1539 if (install_log != nullptr) {
1540 fprintf(install_log, "%s\n", update_package);
1541 fprintf(install_log, "0\n");
1542 fprintf(install_log, "error: %d\n", kLowBattery);
1543 fclose(install_log);
1544 } else {
1545 LOGE("failed to open last_install: %s\n", strerror(errno));
1546 }
Yabin Cui99281df2016-02-17 12:21:52 -08001547 status = INSTALL_SKIPPED;
1548 } else {
1549 status = install_package(update_package, &should_wipe_cache,
Tianjie Xu16255832016-04-30 11:49:59 -07001550 TEMPORARY_INSTALL_FILE, true, retry_count);
Yabin Cui99281df2016-02-17 12:21:52 -08001551 if (status == INSTALL_SUCCESS && should_wipe_cache) {
1552 wipe_cache(false, device);
1553 }
1554 if (status != INSTALL_SUCCESS) {
1555 ui->Print("Installation aborted.\n");
Tianjie Xu3c62b672016-02-05 18:25:58 -08001556 // When I/O error happens, reboot and retry installation EIO_RETRY_COUNT
1557 // times before we abandon this OTA update.
1558 if (status == INSTALL_RETRY && retry_count < EIO_RETRY_COUNT) {
1559 copy_logs();
1560 set_retry_bootloader_message(retry_count, argc, argv);
1561 // Print retry count on screen.
1562 ui->Print("Retry attempt %d\n", retry_count);
Doug Zongker7c3ae452013-05-14 11:03:02 -07001563
Tianjie Xu3c62b672016-02-05 18:25:58 -08001564 // Reboot and retry the update
1565 int ret = property_set(ANDROID_RB_PROPERTY, "reboot,recovery");
1566 if (ret < 0) {
1567 ui->Print("Reboot failed\n");
1568 } else {
1569 while (true) {
1570 pause();
1571 }
1572 }
1573 }
Yabin Cui99281df2016-02-17 12:21:52 -08001574 // If this is an eng or userdebug build, then automatically
1575 // turn the text display on if the script fails so the error
1576 // message is visible.
1577 if (is_ro_debuggable()) {
1578 ui->ShowText(true);
1579 }
Doug Zongker7c3ae452013-05-14 11:03:02 -07001580 }
1581 }
Tao Baoe39a9bc2015-03-31 12:19:05 -07001582 } else if (should_wipe_data) {
1583 if (!wipe_data(false, device)) {
1584 status = INSTALL_ERROR;
1585 }
Tao Baoc679f932015-03-30 09:43:49 -07001586 } else if (should_wipe_cache) {
Tao Baoe39a9bc2015-03-31 12:19:05 -07001587 if (!wipe_cache(false, device)) {
1588 status = INSTALL_ERROR;
1589 }
Tao Bao862a4c12016-06-02 11:16:50 -07001590 } else if (should_brick) {
1591 if (!brick_device()) {
1592 status = INSTALL_ERROR;
1593 }
Tao Baoc679f932015-03-30 09:43:49 -07001594 } else if (sideload) {
1595 // 'adb reboot sideload' acts the same as user presses key combinations
1596 // to enter the sideload mode. When 'sideload-auto-reboot' is used, text
1597 // display will NOT be turned on by default. And it will reboot after
1598 // sideload finishes even if there are errors. Unless one turns on the
1599 // text display during the installation. This is to enable automated
1600 // testing.
1601 if (!sideload_auto_reboot) {
1602 ui->ShowText(true);
1603 }
1604 status = apply_from_adb(ui, &should_wipe_cache, TEMPORARY_INSTALL_FILE);
1605 if (status == INSTALL_SUCCESS && should_wipe_cache) {
Tao Baoe39a9bc2015-03-31 12:19:05 -07001606 if (!wipe_cache(false, device)) {
1607 status = INSTALL_ERROR;
1608 }
Tao Baoc679f932015-03-30 09:43:49 -07001609 }
1610 ui->Print("\nInstall from ADB complete (status: %d).\n", status);
1611 if (sideload_auto_reboot) {
1612 ui->Print("Rebooting automatically.\n");
1613 }
Doug Zongkere5d5ac72012-04-12 11:01:22 -07001614 } else if (!just_exit) {
Doug Zongker02ec6b82012-08-22 17:26:40 -07001615 status = INSTALL_NONE; // No command specified
1616 ui->SetBackground(RecoveryUI::NO_COMMAND);
Tao Bao785d22c2015-05-04 09:34:29 -07001617
1618 // http://b/17489952
1619 // If this is an eng or userdebug build, automatically turn on the
1620 // text display if no command is specified.
1621 if (is_ro_debuggable()) {
1622 ui->ShowText(true);
1623 }
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001624 }
1625
Tao Baoc679f932015-03-30 09:43:49 -07001626 if (!sideload_auto_reboot && (status == INSTALL_ERROR || status == INSTALL_CORRUPT)) {
Doug Zongkerf24fd7e2013-07-02 11:43:25 -07001627 copy_logs();
Doug Zongker02ec6b82012-08-22 17:26:40 -07001628 ui->SetBackground(RecoveryUI::ERROR);
1629 }
Tao Baoc679f932015-03-30 09:43:49 -07001630
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001631 Device::BuiltinAction after = shutdown_after ? Device::SHUTDOWN : Device::REBOOT;
Yabin Cui99281df2016-02-17 12:21:52 -08001632 if ((status != INSTALL_SUCCESS && status != INSTALL_SKIPPED && !sideload_auto_reboot) ||
1633 ui->IsTextVisible()) {
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001634 Device::BuiltinAction temp = prompt_and_wait(device, status);
Tao Baoc679f932015-03-30 09:43:49 -07001635 if (temp != Device::NO_ACTION) {
1636 after = temp;
1637 }
Doug Zongker8674a722010-09-15 11:08:23 -07001638 }
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001639
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001640 // Save logs and clean up before rebooting or shutting down.
Tianjie Xuc14d95d2016-03-24 11:50:34 -07001641 finish_recovery();
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001642
1643 switch (after) {
1644 case Device::SHUTDOWN:
1645 ui->Print("Shutting down...\n");
1646 property_set(ANDROID_RB_PROPERTY, "shutdown,");
1647 break;
1648
1649 case Device::REBOOT_BOOTLOADER:
1650 ui->Print("Rebooting to bootloader...\n");
1651 property_set(ANDROID_RB_PROPERTY, "reboot,bootloader");
1652 break;
1653
1654 default:
1655 ui->Print("Rebooting...\n");
1656 property_set(ANDROID_RB_PROPERTY, "reboot,");
1657 break;
Doug Zongkerb1d12632014-03-18 10:32:12 -07001658 }
Tao Bao75238632015-05-27 14:46:17 -07001659 while (true) {
1660 pause();
1661 }
1662 // Should be unreachable.
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001663 return EXIT_SUCCESS;
1664}