blob: c681c8ce78b30ebf59d36227a3e5ce05d44aa5a2 [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>
22#include <limits.h>
23#include <linux/input.h>
Doug Zongker7c3ae452013-05-14 11:03:02 -070024#include <stdarg.h>
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080025#include <stdio.h>
26#include <stdlib.h>
27#include <string.h>
Patrick Tjincd055ee2014-12-09 11:26:40 -080028#include <sys/klog.h>
Doug Zongker23ceeea2010-07-08 17:27:55 -070029#include <sys/stat.h>
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080030#include <sys/types.h>
Tao Baocdcf28f2016-01-13 15:05:20 -080031#include <sys/wait.h>
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080032#include <time.h>
33#include <unistd.h>
34
Tao Bao04ca4262015-09-10 15:32:24 -070035#include <chrono>
36
Tao Bao75238632015-05-27 14:46:17 -070037#include <adb.h>
Mark Salyzyna4f701a2016-03-09 14:58:16 -080038#include <android/log.h> /* Android Log Priority Tags */
Elliott Hughes4b166f02015-12-04 15:30:20 -080039#include <android-base/file.h>
Tianjie Xu3c62b672016-02-05 18:25:58 -080040#include <android-base/parseint.h>
Elliott Hughes4b166f02015-12-04 15:30:20 -080041#include <android-base/stringprintf.h>
Tao Bao75238632015-05-27 14:46:17 -070042#include <cutils/android_reboot.h>
43#include <cutils/properties.h>
Elliott Hughes4bbd5bf2016-04-01 18:24:39 -070044#include <healthd/BatteryMonitor.h>
Mark Salyzyna4f701a2016-03-09 14:58:16 -080045#include <log/logger.h> /* Android Log packet format */
46#include <private/android_logger.h> /* private pmsg functions */
Elliott Hughes4bbd5bf2016-04-01 18:24:39 -070047#include <selinux/label.h>
48#include <selinux/selinux.h>
Yabin Cui99281df2016-02-17 12:21:52 -080049
Tao Bao75238632015-05-27 14:46:17 -070050#include "adb_install.h"
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080051#include "bootloader.h"
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080052#include "common.h"
Tao Bao75238632015-05-27 14:46:17 -070053#include "device.h"
54#include "fuse_sdcard_provider.h"
55#include "fuse_sideload.h"
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080056#include "install.h"
57#include "minui/minui.h"
58#include "minzip/DirUtil.h"
59#include "roots.h"
Doug Zongker28ce47c2011-10-28 10:33:05 -070060#include "ui.h"
Doug Zongker211aebc2011-10-28 15:13:10 -070061#include "screen_ui.h"
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080062
Stephen Smalley779701d2012-02-09 14:13:23 -050063struct selabel_handle *sehandle;
64
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080065static const struct option OPTIONS[] = {
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080066 { "update_package", required_argument, NULL, 'u' },
Tianjie Xu3c62b672016-02-05 18:25:58 -080067 { "retry_count", required_argument, NULL, 'n' },
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080068 { "wipe_data", no_argument, NULL, 'w' },
69 { "wipe_cache", no_argument, NULL, 'c' },
Doug Zongker4bc98062010-09-03 11:00:13 -070070 { "show_text", no_argument, NULL, 't' },
Tao Baoc679f932015-03-30 09:43:49 -070071 { "sideload", no_argument, NULL, 's' },
72 { "sideload_auto_reboot", no_argument, NULL, 'a' },
Doug Zongkere5d5ac72012-04-12 11:01:22 -070073 { "just_exit", no_argument, NULL, 'x' },
Doug Zongker02ec6b82012-08-22 17:26:40 -070074 { "locale", required_argument, NULL, 'l' },
Doug Zongkerc87bab12013-11-25 13:53:25 -080075 { "stages", required_argument, NULL, 'g' },
Doug Zongkerb1d12632014-03-18 10:32:12 -070076 { "shutdown_after", no_argument, NULL, 'p' },
Jeff Sharkeya6e13ae2014-09-24 11:46:17 -070077 { "reason", required_argument, NULL, 'r' },
Tianjie Xu35926c42016-04-28 18:06:26 -070078 { "security", no_argument, NULL, 'e'},
Doug Zongker988500b2009-10-06 14:41:38 -070079 { NULL, 0, NULL, 0 },
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080080};
81
Doug Zongker6d0d7ac2013-07-09 13:34:55 -070082static const char *CACHE_LOG_DIR = "/cache/recovery";
Doug Zongkerd4208f92010-09-20 12:16:13 -070083static const char *COMMAND_FILE = "/cache/recovery/command";
Doug Zongkerd4208f92010-09-20 12:16:13 -070084static const char *LOG_FILE = "/cache/recovery/log";
Doug Zongkerd0181b82011-10-19 10:51:12 -070085static const char *LAST_INSTALL_FILE = "/cache/recovery/last_install";
Doug Zongker8b240cc2012-08-29 15:19:29 -070086static const char *LOCALE_FILE = "/cache/recovery/last_locale";
Paul Lawrence661f8a62016-02-25 12:42:19 -080087static const char *CONVERT_FBE_DIR = "/tmp/convert_fbe";
88static const char *CONVERT_FBE_FILE = "/tmp/convert_fbe/convert_fbe";
Michael Ward9d2629c2011-06-23 22:14:24 -070089static const char *CACHE_ROOT = "/cache";
Paul Lawrenced0db3372015-11-05 13:38:40 -080090static const char *DATA_ROOT = "/data";
Doug Zongkerd4208f92010-09-20 12:16:13 -070091static const char *SDCARD_ROOT = "/sdcard";
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080092static const char *TEMPORARY_LOG_FILE = "/tmp/recovery.log";
Doug Zongkerd0181b82011-10-19 10:51:12 -070093static const char *TEMPORARY_INSTALL_FILE = "/tmp/last_install";
Tao Baof0124322015-04-11 02:04:11 +000094static const char *LAST_KMSG_FILE = "/cache/recovery/last_kmsg";
Tao Baobef39712015-05-04 18:50:27 -070095static const char *LAST_LOG_FILE = "/cache/recovery/last_log";
96static const int KEEP_LOG_COUNT = 10;
Tianjie Xu3c62b672016-02-05 18:25:58 -080097static const int EIO_RETRY_COUNT = 2;
Yabin Cui99281df2016-02-17 12:21:52 -080098static const int BATTERY_READ_TIMEOUT_IN_SEC = 10;
99// GmsCore enters recovery mode to install package when having enough battery
100// percentage. Normally, the threshold is 40% without charger and 20% with charger.
101// So we should check battery with a slightly lower limitation.
102static const int BATTERY_OK_PERCENTAGE = 20;
103static const int BATTERY_WITH_CHARGER_OK_PERCENTAGE = 15;
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700104
Doug Zongker211aebc2011-10-28 15:13:10 -0700105RecoveryUI* ui = NULL;
Elliott Hughes498cda62016-04-14 16:49:04 -0700106static const char* locale = "en_US";
Doug Zongkerc87bab12013-11-25 13:53:25 -0800107char* stage = NULL;
Jeff Sharkeya6e13ae2014-09-24 11:46:17 -0700108char* reason = NULL;
Tao Bao682c34b2015-04-07 17:16:35 -0700109bool modified_flash = false;
Tao Bao26112e52016-02-25 12:29:40 -0800110static bool has_cache = false;
Doug Zongker211aebc2011-10-28 15:13:10 -0700111
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800112/*
113 * The recovery tool communicates with the main system through /cache files.
114 * /cache/recovery/command - INPUT - command line for tool, one arg per line
115 * /cache/recovery/log - OUTPUT - combined log file from recovery run(s)
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800116 *
117 * The arguments which may be supplied in the recovery.command file:
Doug Zongkerd4208f92010-09-20 12:16:13 -0700118 * --update_package=path - verify install an OTA package file
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800119 * --wipe_data - erase user data (and cache), then reboot
120 * --wipe_cache - wipe cache (but not user data), then reboot
Oscar Montemayor05231562009-11-30 08:40:57 -0800121 * --set_encrypted_filesystem=on|off - enables / diasables encrypted fs
Doug Zongkere5d5ac72012-04-12 11:01:22 -0700122 * --just_exit - do nothing; exit and reboot
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800123 *
124 * After completing, we remove /cache/recovery/command and reboot.
125 * Arguments may also be supplied in the bootloader control block (BCB).
126 * These important scenarios must be safely restartable at any point:
127 *
128 * FACTORY RESET
129 * 1. user selects "factory reset"
130 * 2. main system writes "--wipe_data" to /cache/recovery/command
131 * 3. main system reboots into recovery
132 * 4. get_args() writes BCB with "boot-recovery" and "--wipe_data"
133 * -- after this, rebooting will restart the erase --
Doug Zongkerd4208f92010-09-20 12:16:13 -0700134 * 5. erase_volume() reformats /data
135 * 6. erase_volume() reformats /cache
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800136 * 7. finish_recovery() erases BCB
137 * -- after this, rebooting will restart the main system --
138 * 8. main() calls reboot() to boot main system
139 *
140 * OTA INSTALL
141 * 1. main system downloads OTA package to /cache/some-filename.zip
Doug Zongker9b125b02010-09-22 12:01:37 -0700142 * 2. main system writes "--update_package=/cache/some-filename.zip"
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800143 * 3. main system reboots into recovery
144 * 4. get_args() writes BCB with "boot-recovery" and "--update_package=..."
145 * -- after this, rebooting will attempt to reinstall the update --
146 * 5. install_package() attempts to install the update
147 * NOTE: the package install must itself be restartable from any point
148 * 6. finish_recovery() erases BCB
149 * -- after this, rebooting will (try to) restart the main system --
150 * 7. ** if install failed **
151 * 7a. prompt_and_wait() shows an error icon and waits for the user
152 * 7b; the user reboots (pulling the battery, etc) into the main system
153 * 8. main() calls maybe_install_firmware_update()
154 * ** if the update contained radio/hboot firmware **:
155 * 8a. m_i_f_u() writes BCB with "boot-recovery" and "--wipe_cache"
156 * -- after this, rebooting will reformat cache & restart main system --
157 * 8b. m_i_f_u() writes firmware image into raw cache partition
158 * 8c. m_i_f_u() writes BCB with "update-radio/hboot" and "--wipe_cache"
159 * -- after this, rebooting will attempt to reinstall firmware --
160 * 8d. bootloader tries to flash firmware
161 * 8e. bootloader writes BCB with "boot-recovery" (keeping "--wipe_cache")
162 * -- after this, rebooting will reformat cache & restart main system --
Doug Zongkerd4208f92010-09-20 12:16:13 -0700163 * 8f. erase_volume() reformats /cache
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800164 * 8g. finish_recovery() erases BCB
165 * -- after this, rebooting will (try to) restart the main system --
166 * 9. main() calls reboot() to boot main system
167 */
168
169static const int MAX_ARG_LENGTH = 4096;
170static const int MAX_ARGS = 100;
171
Doug Zongkerd4208f92010-09-20 12:16:13 -0700172// open a given path, mounting partitions as necessary
Tao Bao04ca4262015-09-10 15:32:24 -0700173FILE* fopen_path(const char *path, const char *mode) {
Doug Zongkerd4208f92010-09-20 12:16:13 -0700174 if (ensure_path_mounted(path) != 0) {
175 LOGE("Can't mount %s\n", path);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800176 return NULL;
177 }
178
179 // When writing, try to create the containing directory, if necessary.
180 // Use generous permissions, the system (init.rc) will reset them.
Stephen Smalley779701d2012-02-09 14:13:23 -0500181 if (strchr("wa", mode[0])) dirCreateHierarchy(path, 0777, NULL, 1, sehandle);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800182
183 FILE *fp = fopen(path, mode);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800184 return fp;
185}
186
Tao Bao04ca4262015-09-10 15:32:24 -0700187// close a file, log an error if the error indicator is set
188static void check_and_fclose(FILE *fp, const char *name) {
189 fflush(fp);
190 if (ferror(fp)) LOGE("Error in %s\n(%s)\n", name, strerror(errno));
191 fclose(fp);
192}
193
Elliott Hughesf14af802015-02-10 14:46:14 -0800194bool is_ro_debuggable() {
195 char value[PROPERTY_VALUE_MAX+1];
196 return (property_get("ro.debuggable", value, NULL) == 1 && value[0] == '1');
197}
198
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700199static void redirect_stdio(const char* filename) {
Tao Bao04ca4262015-09-10 15:32:24 -0700200 int pipefd[2];
201 if (pipe(pipefd) == -1) {
202 LOGE("pipe failed: %s\n", strerror(errno));
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700203
Tao Bao04ca4262015-09-10 15:32:24 -0700204 // Fall back to traditional logging mode without timestamps.
205 // If these fail, there's not really anywhere to complain...
206 freopen(filename, "a", stdout); setbuf(stdout, NULL);
207 freopen(filename, "a", stderr); setbuf(stderr, NULL);
208
209 return;
210 }
211
212 pid_t pid = fork();
213 if (pid == -1) {
214 LOGE("fork failed: %s\n", strerror(errno));
215
216 // Fall back to traditional logging mode without timestamps.
217 // If these fail, there's not really anywhere to complain...
218 freopen(filename, "a", stdout); setbuf(stdout, NULL);
219 freopen(filename, "a", stderr); setbuf(stderr, NULL);
220
221 return;
222 }
223
224 if (pid == 0) {
225 /// Close the unused write end.
226 close(pipefd[1]);
227
228 auto start = std::chrono::steady_clock::now();
229
230 // Child logger to actually write to the log file.
231 FILE* log_fp = fopen(filename, "a");
232 if (log_fp == nullptr) {
233 LOGE("fopen \"%s\" failed: %s\n", filename, strerror(errno));
234 close(pipefd[0]);
235 _exit(1);
236 }
237
238 FILE* pipe_fp = fdopen(pipefd[0], "r");
239 if (pipe_fp == nullptr) {
240 LOGE("fdopen failed: %s\n", strerror(errno));
241 check_and_fclose(log_fp, filename);
242 close(pipefd[0]);
243 _exit(1);
244 }
245
246 char* line = nullptr;
247 size_t len = 0;
248 while (getline(&line, &len, pipe_fp) != -1) {
249 auto now = std::chrono::steady_clock::now();
250 double duration = std::chrono::duration_cast<std::chrono::duration<double>>(
251 now - start).count();
252 if (line[0] == '\n') {
253 fprintf(log_fp, "[%12.6lf]\n", duration);
254 } else {
255 fprintf(log_fp, "[%12.6lf] %s", duration, line);
256 }
257 fflush(log_fp);
258 }
259
260 LOGE("getline failed: %s\n", strerror(errno));
261
262 free(line);
263 check_and_fclose(log_fp, filename);
264 close(pipefd[0]);
265 _exit(1);
266 } else {
267 // Redirect stdout/stderr to the logger process.
268 // Close the unused read end.
269 close(pipefd[0]);
270
271 setbuf(stdout, nullptr);
272 setbuf(stderr, nullptr);
273
274 if (dup2(pipefd[1], STDOUT_FILENO) == -1) {
275 LOGE("dup2 stdout failed: %s\n", strerror(errno));
276 }
277 if (dup2(pipefd[1], STDERR_FILENO) == -1) {
278 LOGE("dup2 stderr failed: %s\n", strerror(errno));
279 }
280
281 close(pipefd[1]);
282 }
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800283}
284
285// command line args come from, in decreasing precedence:
286// - the actual command line
287// - the bootloader control block (one per line, after "recovery")
288// - the contents of COMMAND_FILE (one per line)
289static void
290get_args(int *argc, char ***argv) {
291 struct bootloader_message boot;
292 memset(&boot, 0, sizeof(boot));
293 get_bootloader_message(&boot); // this may fail, leaving a zeroed structure
Doug Zongkerc87bab12013-11-25 13:53:25 -0800294 stage = strndup(boot.stage, sizeof(boot.stage));
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800295
296 if (boot.command[0] != 0 && boot.command[0] != 255) {
Mark Salyzynf3bb31c2014-03-14 09:39:48 -0700297 LOGI("Boot command: %.*s\n", (int)sizeof(boot.command), boot.command);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800298 }
299
300 if (boot.status[0] != 0 && boot.status[0] != 255) {
Mark Salyzynf3bb31c2014-03-14 09:39:48 -0700301 LOGI("Boot status: %.*s\n", (int)sizeof(boot.status), boot.status);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800302 }
303
304 // --- if arguments weren't supplied, look in the bootloader control block
305 if (*argc <= 1) {
306 boot.recovery[sizeof(boot.recovery) - 1] = '\0'; // Ensure termination
307 const char *arg = strtok(boot.recovery, "\n");
308 if (arg != NULL && !strcmp(arg, "recovery")) {
309 *argv = (char **) malloc(sizeof(char *) * MAX_ARGS);
310 (*argv)[0] = strdup(arg);
311 for (*argc = 1; *argc < MAX_ARGS; ++*argc) {
312 if ((arg = strtok(NULL, "\n")) == NULL) break;
313 (*argv)[*argc] = strdup(arg);
314 }
315 LOGI("Got arguments from boot message\n");
316 } else if (boot.recovery[0] != 0 && boot.recovery[0] != 255) {
317 LOGE("Bad boot message\n\"%.20s\"\n", boot.recovery);
318 }
319 }
320
Tao Bao26112e52016-02-25 12:29:40 -0800321 // --- if that doesn't work, try the command file (if we have /cache).
322 if (*argc <= 1 && has_cache) {
Doug Zongkerd4208f92010-09-20 12:16:13 -0700323 FILE *fp = fopen_path(COMMAND_FILE, "r");
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800324 if (fp != NULL) {
Jin Feng93ffa752013-06-04 17:46:24 +0800325 char *token;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800326 char *argv0 = (*argv)[0];
327 *argv = (char **) malloc(sizeof(char *) * MAX_ARGS);
328 (*argv)[0] = argv0; // use the same program name
329
330 char buf[MAX_ARG_LENGTH];
331 for (*argc = 1; *argc < MAX_ARGS; ++*argc) {
332 if (!fgets(buf, sizeof(buf), fp)) break;
Jin Feng93ffa752013-06-04 17:46:24 +0800333 token = strtok(buf, "\r\n");
334 if (token != NULL) {
335 (*argv)[*argc] = strdup(token); // Strip newline.
336 } else {
337 --*argc;
338 }
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800339 }
340
341 check_and_fclose(fp, COMMAND_FILE);
342 LOGI("Got arguments from %s\n", COMMAND_FILE);
343 }
344 }
345
346 // --> write the arguments we have back into the bootloader control block
347 // always boot into recovery after this (until finish_recovery() is called)
348 strlcpy(boot.command, "boot-recovery", sizeof(boot.command));
349 strlcpy(boot.recovery, "recovery\n", sizeof(boot.recovery));
350 int i;
351 for (i = 1; i < *argc; ++i) {
352 strlcat(boot.recovery, (*argv)[i], sizeof(boot.recovery));
353 strlcat(boot.recovery, "\n", sizeof(boot.recovery));
354 }
355 set_bootloader_message(&boot);
356}
357
Doug Zongker34c98df2009-08-18 12:05:45 -0700358static void
Oscar Montemayor05231562009-11-30 08:40:57 -0800359set_sdcard_update_bootloader_message() {
Doug Zongker34c98df2009-08-18 12:05:45 -0700360 struct bootloader_message boot;
361 memset(&boot, 0, sizeof(boot));
362 strlcpy(boot.command, "boot-recovery", sizeof(boot.command));
363 strlcpy(boot.recovery, "recovery\n", sizeof(boot.recovery));
364 set_bootloader_message(&boot);
365}
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800366
Tao Baobef39712015-05-04 18:50:27 -0700367// Read from kernel log into buffer and write out to file.
368static void save_kernel_log(const char* destination) {
369 int klog_buf_len = klogctl(KLOG_SIZE_BUFFER, 0, 0);
Patrick Tjincd055ee2014-12-09 11:26:40 -0800370 if (klog_buf_len <= 0) {
Tao Baobef39712015-05-04 18:50:27 -0700371 LOGE("Error getting klog size: %s\n", strerror(errno));
Patrick Tjincd055ee2014-12-09 11:26:40 -0800372 return;
373 }
374
Tao Baobef39712015-05-04 18:50:27 -0700375 std::string buffer(klog_buf_len, 0);
376 int n = klogctl(KLOG_READ_ALL, &buffer[0], klog_buf_len);
377 if (n == -1) {
378 LOGE("Error in reading klog: %s\n", strerror(errno));
Patrick Tjincd055ee2014-12-09 11:26:40 -0800379 return;
380 }
Tao Baobef39712015-05-04 18:50:27 -0700381 buffer.resize(n);
382 android::base::WriteStringToFile(buffer, destination);
Patrick Tjincd055ee2014-12-09 11:26:40 -0800383}
384
Mark Salyzyna4f701a2016-03-09 14:58:16 -0800385// write content to the current pmsg session.
386static ssize_t __pmsg_write(const char *filename, const char *buf, size_t len) {
387 return __android_log_pmsg_file_write(LOG_ID_SYSTEM, ANDROID_LOG_INFO,
388 filename, buf, len);
389}
390
391static void copy_log_file_to_pmsg(const char* source, const char* destination) {
392 std::string content;
393 android::base::ReadFileToString(source, &content);
394 __pmsg_write(destination, content.c_str(), content.length());
395}
396
Tao Baof0124322015-04-11 02:04:11 +0000397// How much of the temp log we have copied to the copy in cache.
Chih-Hung Hsieh54a27472016-04-18 11:30:55 -0700398static off_t tmplog_offset = 0;
Tao Baof0124322015-04-11 02:04:11 +0000399
Tao Baobef39712015-05-04 18:50:27 -0700400static void copy_log_file(const char* source, const char* destination, bool append) {
401 FILE* dest_fp = fopen_path(destination, append ? "a" : "w");
402 if (dest_fp == nullptr) {
Doug Zongker2c3539e2010-09-29 13:21:30 -0700403 LOGE("Can't open %s\n", destination);
404 } else {
Tao Baobef39712015-05-04 18:50:27 -0700405 FILE* source_fp = fopen(source, "r");
406 if (source_fp != nullptr) {
Tao Baof0124322015-04-11 02:04:11 +0000407 if (append) {
Chih-Hung Hsieh54a27472016-04-18 11:30:55 -0700408 fseeko(source_fp, tmplog_offset, SEEK_SET); // Since last write
Doug Zongker2c3539e2010-09-29 13:21:30 -0700409 }
410 char buf[4096];
Tao Baobef39712015-05-04 18:50:27 -0700411 size_t bytes;
412 while ((bytes = fread(buf, 1, sizeof(buf), source_fp)) != 0) {
413 fwrite(buf, 1, bytes, dest_fp);
Doug Zongker2c3539e2010-09-29 13:21:30 -0700414 }
Tao Baobef39712015-05-04 18:50:27 -0700415 if (append) {
Chih-Hung Hsieh54a27472016-04-18 11:30:55 -0700416 tmplog_offset = ftello(source_fp);
Tao Baobef39712015-05-04 18:50:27 -0700417 }
418 check_and_fclose(source_fp, source);
Doug Zongker2c3539e2010-09-29 13:21:30 -0700419 }
Tao Baobef39712015-05-04 18:50:27 -0700420 check_and_fclose(dest_fp, destination);
Doug Zongker2c3539e2010-09-29 13:21:30 -0700421 }
422}
423
Tao Baobef39712015-05-04 18:50:27 -0700424// Rename last_log -> last_log.1 -> last_log.2 -> ... -> last_log.$max.
425// Similarly rename last_kmsg -> last_kmsg.1 -> ... -> last_kmsg.$max.
426// Overwrite any existing last_log.$max and last_kmsg.$max.
427static void rotate_logs(int max) {
Tao Bao682c34b2015-04-07 17:16:35 -0700428 // Logs should only be rotated once.
429 static bool rotated = false;
430 if (rotated) {
431 return;
432 }
433 rotated = true;
434 ensure_path_mounted(LAST_LOG_FILE);
Tao Baobef39712015-05-04 18:50:27 -0700435 ensure_path_mounted(LAST_KMSG_FILE);
Tao Bao682c34b2015-04-07 17:16:35 -0700436
Tao Bao682c34b2015-04-07 17:16:35 -0700437 for (int i = max-1; i >= 0; --i) {
Tao Bao80e46e02015-06-03 10:49:29 -0700438 std::string old_log = android::base::StringPrintf("%s", LAST_LOG_FILE);
439 if (i > 0) {
440 old_log += "." + std::to_string(i);
441 }
Tao Baobef39712015-05-04 18:50:27 -0700442 std::string new_log = android::base::StringPrintf("%s.%d", LAST_LOG_FILE, i+1);
443 // Ignore errors if old_log doesn't exist.
444 rename(old_log.c_str(), new_log.c_str());
445
Tao Bao80e46e02015-06-03 10:49:29 -0700446 std::string old_kmsg = android::base::StringPrintf("%s", LAST_KMSG_FILE);
447 if (i > 0) {
448 old_kmsg += "." + std::to_string(i);
449 }
Tao Baobef39712015-05-04 18:50:27 -0700450 std::string new_kmsg = android::base::StringPrintf("%s.%d", LAST_KMSG_FILE, i+1);
451 rename(old_kmsg.c_str(), new_kmsg.c_str());
Doug Zongkerda1ebae2013-05-16 11:23:48 -0700452 }
453}
Doug Zongker2c3539e2010-09-29 13:21:30 -0700454
Tao Bao682c34b2015-04-07 17:16:35 -0700455static void copy_logs() {
456 // We only rotate and record the log of the current session if there are
457 // actual attempts to modify the flash, such as wipes, installs from BCB
458 // or menu selections. This is to avoid unnecessary rotation (and
459 // possible deletion) of log files, if it does not do anything loggable.
460 if (!modified_flash) {
461 return;
462 }
463
Mark Salyzyna4f701a2016-03-09 14:58:16 -0800464 // Always write to pmsg, this allows the OTA logs to be caught in logcat -L
465 copy_log_file_to_pmsg(TEMPORARY_LOG_FILE, LAST_LOG_FILE);
466 copy_log_file_to_pmsg(TEMPORARY_INSTALL_FILE, LAST_INSTALL_FILE);
467
468 // We can do nothing for now if there's no /cache partition.
469 if (!has_cache) {
470 return;
471 }
472
Tao Baobef39712015-05-04 18:50:27 -0700473 rotate_logs(KEEP_LOG_COUNT);
Tao Bao682c34b2015-04-07 17:16:35 -0700474
Doug Zongkerf24fd7e2013-07-02 11:43:25 -0700475 // Copy logs to cache so the system can find out what happened.
Tao Baof0124322015-04-11 02:04:11 +0000476 copy_log_file(TEMPORARY_LOG_FILE, LOG_FILE, true);
477 copy_log_file(TEMPORARY_LOG_FILE, LAST_LOG_FILE, false);
478 copy_log_file(TEMPORARY_INSTALL_FILE, LAST_INSTALL_FILE, false);
479 save_kernel_log(LAST_KMSG_FILE);
Doug Zongkerf24fd7e2013-07-02 11:43:25 -0700480 chmod(LOG_FILE, 0600);
481 chown(LOG_FILE, 1000, 1000); // system user
Tao Baof0124322015-04-11 02:04:11 +0000482 chmod(LAST_KMSG_FILE, 0600);
483 chown(LAST_KMSG_FILE, 1000, 1000); // system user
Doug Zongkerf24fd7e2013-07-02 11:43:25 -0700484 chmod(LAST_LOG_FILE, 0640);
485 chmod(LAST_INSTALL_FILE, 0644);
486 sync();
487}
488
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800489// clear the recovery command and prepare to boot a (hopefully working) system,
Tianjie Xuc14d95d2016-03-24 11:50:34 -0700490// copy our log file to cache as well (for the system to read). This function is
491// idempotent: call it as many times as you like.
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800492static void
Tianjie Xuc14d95d2016-03-24 11:50:34 -0700493finish_recovery() {
Doug Zongker4f33e552012-08-23 13:16:12 -0700494 // Save the locale to cache, so if recovery is next started up
495 // without a --locale argument (eg, directly from the bootloader)
496 // it will use the last-known locale.
Mark Salyzyna4f701a2016-03-09 14:58:16 -0800497 if (locale != NULL) {
498 size_t len = strlen(locale);
499 __pmsg_write(LOCALE_FILE, locale, len);
500 if (has_cache) {
501 LOGI("Saving locale \"%s\"\n", locale);
502 FILE* fp = fopen_path(LOCALE_FILE, "w");
503 fwrite(locale, 1, len, fp);
504 fflush(fp);
505 fsync(fileno(fp));
506 check_and_fclose(fp, LOCALE_FILE);
507 }
Doug Zongker4f33e552012-08-23 13:16:12 -0700508 }
509
Doug Zongkerf24fd7e2013-07-02 11:43:25 -0700510 copy_logs();
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800511
Doug Zongkere5d5ac72012-04-12 11:01:22 -0700512 // Reset to normal system boot so recovery won't cycle indefinitely.
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800513 struct bootloader_message boot;
514 memset(&boot, 0, sizeof(boot));
515 set_bootloader_message(&boot);
516
517 // Remove the command file, so recovery won't repeat indefinitely.
Tao Bao26112e52016-02-25 12:29:40 -0800518 if (has_cache) {
519 if (ensure_path_mounted(COMMAND_FILE) != 0 || (unlink(COMMAND_FILE) && errno != ENOENT)) {
520 LOGW("Can't unlink %s\n", COMMAND_FILE);
521 }
522 ensure_path_unmounted(CACHE_ROOT);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800523 }
524
525 sync(); // For good measure.
526}
527
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700528typedef struct _saved_log_file {
529 char* name;
530 struct stat st;
531 unsigned char* data;
532 struct _saved_log_file* next;
533} saved_log_file;
534
Elliott Hughes945548e2015-06-05 17:59:56 -0700535static bool erase_volume(const char* volume) {
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700536 bool is_cache = (strcmp(volume, CACHE_ROOT) == 0);
Paul Lawrenced0db3372015-11-05 13:38:40 -0800537 bool is_data = (strcmp(volume, DATA_ROOT) == 0);
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700538
Doug Zongker02ec6b82012-08-22 17:26:40 -0700539 ui->SetBackground(RecoveryUI::ERASING);
Doug Zongker211aebc2011-10-28 15:13:10 -0700540 ui->SetProgressType(RecoveryUI::INDETERMINATE);
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700541
542 saved_log_file* head = NULL;
543
544 if (is_cache) {
Tao Baobef39712015-05-04 18:50:27 -0700545 // If we're reformatting /cache, we load any past logs
546 // (i.e. "/cache/recovery/last_*") and the current log
547 // ("/cache/recovery/log") into memory, so we can restore them after
548 // the reformat.
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700549
550 ensure_path_mounted(volume);
551
552 DIR* d;
553 struct dirent* de;
554 d = opendir(CACHE_LOG_DIR);
555 if (d) {
556 char path[PATH_MAX];
557 strcpy(path, CACHE_LOG_DIR);
558 strcat(path, "/");
559 int path_len = strlen(path);
560 while ((de = readdir(d)) != NULL) {
Tao Baobef39712015-05-04 18:50:27 -0700561 if (strncmp(de->d_name, "last_", 5) == 0 || strcmp(de->d_name, "log") == 0) {
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700562 saved_log_file* p = (saved_log_file*) malloc(sizeof(saved_log_file));
563 strcpy(path+path_len, de->d_name);
564 p->name = strdup(path);
565 if (stat(path, &(p->st)) == 0) {
566 // truncate files to 512kb
567 if (p->st.st_size > (1 << 19)) {
568 p->st.st_size = 1 << 19;
569 }
570 p->data = (unsigned char*) malloc(p->st.st_size);
571 FILE* f = fopen(path, "rb");
572 fread(p->data, 1, p->st.st_size, f);
573 fclose(f);
574 p->next = head;
575 head = p;
576 } else {
577 free(p);
578 }
579 }
580 }
581 closedir(d);
582 } else {
583 if (errno != ENOENT) {
584 printf("opendir failed: %s\n", strerror(errno));
585 }
586 }
587 }
588
Doug Zongker211aebc2011-10-28 15:13:10 -0700589 ui->Print("Formatting %s...\n", volume);
Doug Zongker2c3539e2010-09-29 13:21:30 -0700590
Doug Zongkerd0181b82011-10-19 10:51:12 -0700591 ensure_path_unmounted(volume);
Paul Lawrenced0db3372015-11-05 13:38:40 -0800592
593 int result;
594
595 if (is_data && reason && strcmp(reason, "convert_fbe") == 0) {
596 // Create convert_fbe breadcrumb file to signal to init
597 // to convert to file based encryption, not full disk encryption
Paul Lawrence661f8a62016-02-25 12:42:19 -0800598 if (mkdir(CONVERT_FBE_DIR, 0700) != 0) {
599 ui->Print("Failed to make convert_fbe dir %s\n", strerror(errno));
600 return true;
601 }
Paul Lawrenced0db3372015-11-05 13:38:40 -0800602 FILE* f = fopen(CONVERT_FBE_FILE, "wb");
603 if (!f) {
Paul Lawrence661f8a62016-02-25 12:42:19 -0800604 ui->Print("Failed to convert to file encryption %s\n", strerror(errno));
Paul Lawrenced0db3372015-11-05 13:38:40 -0800605 return true;
606 }
607 fclose(f);
608 result = format_volume(volume, CONVERT_FBE_DIR);
609 remove(CONVERT_FBE_FILE);
610 rmdir(CONVERT_FBE_DIR);
611 } else {
612 result = format_volume(volume);
613 }
Doug Zongkerd0181b82011-10-19 10:51:12 -0700614
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700615 if (is_cache) {
616 while (head) {
617 FILE* f = fopen_path(head->name, "wb");
618 if (f) {
619 fwrite(head->data, 1, head->st.st_size, f);
620 fclose(f);
621 chmod(head->name, head->st.st_mode);
622 chown(head->name, head->st.st_uid, head->st.st_gid);
623 }
624 free(head->name);
625 free(head->data);
626 saved_log_file* temp = head->next;
627 free(head);
628 head = temp;
629 }
630
Tao Baof0124322015-04-11 02:04:11 +0000631 // Any part of the log we'd copied to cache is now gone.
632 // Reset the pointer so we copy from the beginning of the temp
633 // log.
634 tmplog_offset = 0;
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700635 copy_logs();
Doug Zongker2c3539e2010-09-29 13:21:30 -0700636 }
637
Elliott Hughes945548e2015-06-05 17:59:56 -0700638 return (result == 0);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800639}
640
Doug Zongkerf93d8162009-09-22 15:16:02 -0700641static int
Doug Zongker28ce47c2011-10-28 10:33:05 -0700642get_menu_selection(const char* const * headers, const char* const * items,
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700643 int menu_only, int initial_selection, Device* device) {
Doug Zongkerf93d8162009-09-22 15:16:02 -0700644 // throw away keys pressed previously, so user doesn't
645 // accidentally trigger menu items.
Doug Zongker211aebc2011-10-28 15:13:10 -0700646 ui->FlushKeys();
Doug Zongkerf93d8162009-09-22 15:16:02 -0700647
Doug Zongker211aebc2011-10-28 15:13:10 -0700648 ui->StartMenu(headers, items, initial_selection);
Doug Zongker8674a722010-09-15 11:08:23 -0700649 int selected = initial_selection;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800650 int chosen_item = -1;
651
Doug Zongkerf93d8162009-09-22 15:16:02 -0700652 while (chosen_item < 0) {
Doug Zongker211aebc2011-10-28 15:13:10 -0700653 int key = ui->WaitKey();
654 int visible = ui->IsTextVisible();
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800655
Doug Zongker5cae4452011-01-25 13:15:30 -0800656 if (key == -1) { // ui_wait_key() timed out
Doug Zongker211aebc2011-10-28 15:13:10 -0700657 if (ui->WasTextEverVisible()) {
Doug Zongker5cae4452011-01-25 13:15:30 -0800658 continue;
659 } else {
660 LOGI("timed out waiting for key input; rebooting.\n");
Doug Zongker211aebc2011-10-28 15:13:10 -0700661 ui->EndMenu();
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700662 return 0; // XXX fixme
Doug Zongker5cae4452011-01-25 13:15:30 -0800663 }
664 }
665
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700666 int action = device->HandleMenuKey(key, visible);
Doug Zongkerddd6a282009-06-09 12:22:33 -0700667
668 if (action < 0) {
669 switch (action) {
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700670 case Device::kHighlightUp:
Elliott Hughes642aaa72015-04-10 12:47:46 -0700671 selected = ui->SelectMenu(--selected);
Doug Zongkerddd6a282009-06-09 12:22:33 -0700672 break;
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700673 case Device::kHighlightDown:
Elliott Hughes642aaa72015-04-10 12:47:46 -0700674 selected = ui->SelectMenu(++selected);
Doug Zongkerddd6a282009-06-09 12:22:33 -0700675 break;
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700676 case Device::kInvokeItem:
Doug Zongkerddd6a282009-06-09 12:22:33 -0700677 chosen_item = selected;
678 break;
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700679 case Device::kNoAction:
Doug Zongkerddd6a282009-06-09 12:22:33 -0700680 break;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800681 }
Doug Zongkerf93d8162009-09-22 15:16:02 -0700682 } else if (!menu_only) {
Doug Zongkerddd6a282009-06-09 12:22:33 -0700683 chosen_item = action;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800684 }
Doug Zongkerf93d8162009-09-22 15:16:02 -0700685 }
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800686
Doug Zongker211aebc2011-10-28 15:13:10 -0700687 ui->EndMenu();
Doug Zongkerf93d8162009-09-22 15:16:02 -0700688 return chosen_item;
689}
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800690
Doug Zongker8674a722010-09-15 11:08:23 -0700691static int compare_string(const void* a, const void* b) {
692 return strcmp(*(const char**)a, *(const char**)b);
693}
694
Doug Zongker93950222014-07-08 14:10:23 -0700695// Returns a malloc'd path, or NULL.
Elliott Hughes30694c92015-03-25 15:16:51 -0700696static char* browse_directory(const char* path, Device* device) {
Michael Ward9d2629c2011-06-23 22:14:24 -0700697 ensure_path_mounted(path);
Doug Zongkerc18eeb82010-09-21 16:49:26 -0700698
Elliott Hughes30694c92015-03-25 15:16:51 -0700699 DIR* d = opendir(path);
Doug Zongker8674a722010-09-15 11:08:23 -0700700 if (d == NULL) {
701 LOGE("error opening %s: %s\n", path, strerror(errno));
Doug Zongker93950222014-07-08 14:10:23 -0700702 return NULL;
Doug Zongker8674a722010-09-15 11:08:23 -0700703 }
704
Doug Zongker8674a722010-09-15 11:08:23 -0700705 int d_size = 0;
706 int d_alloc = 10;
Doug Zongker28ce47c2011-10-28 10:33:05 -0700707 char** dirs = (char**)malloc(d_alloc * sizeof(char*));
Doug Zongker8674a722010-09-15 11:08:23 -0700708 int z_size = 1;
709 int z_alloc = 10;
Doug Zongker28ce47c2011-10-28 10:33:05 -0700710 char** zips = (char**)malloc(z_alloc * sizeof(char*));
Doug Zongker8674a722010-09-15 11:08:23 -0700711 zips[0] = strdup("../");
712
Elliott Hughes30694c92015-03-25 15:16:51 -0700713 struct dirent* de;
Doug Zongker8674a722010-09-15 11:08:23 -0700714 while ((de = readdir(d)) != NULL) {
715 int name_len = strlen(de->d_name);
716
717 if (de->d_type == DT_DIR) {
718 // skip "." and ".." entries
719 if (name_len == 1 && de->d_name[0] == '.') continue;
720 if (name_len == 2 && de->d_name[0] == '.' &&
721 de->d_name[1] == '.') continue;
722
723 if (d_size >= d_alloc) {
724 d_alloc *= 2;
Doug Zongker28ce47c2011-10-28 10:33:05 -0700725 dirs = (char**)realloc(dirs, d_alloc * sizeof(char*));
Doug Zongker8674a722010-09-15 11:08:23 -0700726 }
Doug Zongker28ce47c2011-10-28 10:33:05 -0700727 dirs[d_size] = (char*)malloc(name_len + 2);
Doug Zongker8674a722010-09-15 11:08:23 -0700728 strcpy(dirs[d_size], de->d_name);
729 dirs[d_size][name_len] = '/';
730 dirs[d_size][name_len+1] = '\0';
731 ++d_size;
732 } else if (de->d_type == DT_REG &&
733 name_len >= 4 &&
734 strncasecmp(de->d_name + (name_len-4), ".zip", 4) == 0) {
735 if (z_size >= z_alloc) {
736 z_alloc *= 2;
Doug Zongker28ce47c2011-10-28 10:33:05 -0700737 zips = (char**)realloc(zips, z_alloc * sizeof(char*));
Doug Zongker8674a722010-09-15 11:08:23 -0700738 }
739 zips[z_size++] = strdup(de->d_name);
740 }
741 }
742 closedir(d);
743
744 qsort(dirs, d_size, sizeof(char*), compare_string);
745 qsort(zips, z_size, sizeof(char*), compare_string);
746
747 // append dirs to the zips list
748 if (d_size + z_size + 1 > z_alloc) {
749 z_alloc = d_size + z_size + 1;
Doug Zongker28ce47c2011-10-28 10:33:05 -0700750 zips = (char**)realloc(zips, z_alloc * sizeof(char*));
Doug Zongker8674a722010-09-15 11:08:23 -0700751 }
752 memcpy(zips + z_size, dirs, d_size * sizeof(char*));
753 free(dirs);
754 z_size += d_size;
755 zips[z_size] = NULL;
756
Elliott Hughes8fd86d72015-04-13 14:36:02 -0700757 const char* headers[] = { "Choose a package to install:", path, NULL };
Elliott Hughes30694c92015-03-25 15:16:51 -0700758
Doug Zongker93950222014-07-08 14:10:23 -0700759 char* result;
Doug Zongker8674a722010-09-15 11:08:23 -0700760 int chosen_item = 0;
Doug Zongker93950222014-07-08 14:10:23 -0700761 while (true) {
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700762 chosen_item = get_menu_selection(headers, zips, 1, chosen_item, device);
Doug Zongker8674a722010-09-15 11:08:23 -0700763
764 char* item = zips[chosen_item];
765 int item_len = strlen(item);
766 if (chosen_item == 0) { // item 0 is always "../"
Michael Ward9d2629c2011-06-23 22:14:24 -0700767 // go up but continue browsing (if the caller is update_directory)
Doug Zongker93950222014-07-08 14:10:23 -0700768 result = NULL;
Doug Zongker8674a722010-09-15 11:08:23 -0700769 break;
770 }
Doug Zongker93950222014-07-08 14:10:23 -0700771
772 char new_path[PATH_MAX];
773 strlcpy(new_path, path, PATH_MAX);
774 strlcat(new_path, "/", PATH_MAX);
775 strlcat(new_path, item, PATH_MAX);
776
777 if (item[item_len-1] == '/') {
778 // recurse down into a subdirectory
779 new_path[strlen(new_path)-1] = '\0'; // truncate the trailing '/'
780 result = browse_directory(new_path, device);
781 if (result) break;
782 } else {
783 // selected a zip file: return the malloc'd path to the caller.
784 result = strdup(new_path);
785 break;
786 }
787 }
Doug Zongker8674a722010-09-15 11:08:23 -0700788
Elliott Hughes30694c92015-03-25 15:16:51 -0700789 for (int i = 0; i < z_size; ++i) free(zips[i]);
Doug Zongker8674a722010-09-15 11:08:23 -0700790 free(zips);
Doug Zongker8674a722010-09-15 11:08:23 -0700791
792 return result;
793}
794
Elliott Hughes30694c92015-03-25 15:16:51 -0700795static bool yes_no(Device* device, const char* question1, const char* question2) {
Elliott Hughes8fd86d72015-04-13 14:36:02 -0700796 const char* headers[] = { question1, question2, NULL };
Elliott Hughes30694c92015-03-25 15:16:51 -0700797 const char* items[] = { " No", " Yes", NULL };
Doug Zongkerddd6a282009-06-09 12:22:33 -0700798
Elliott Hughes30694c92015-03-25 15:16:51 -0700799 int chosen_item = get_menu_selection(headers, items, 1, 0, device);
800 return (chosen_item == 1);
801}
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800802
Tao Baoe39a9bc2015-03-31 12:19:05 -0700803// Return true on success.
804static bool wipe_data(int should_confirm, Device* device) {
805 if (should_confirm && !yes_no(device, "Wipe all user data?", " THIS CAN NOT BE UNDONE!")) {
806 return false;
Doug Zongkerf93d8162009-09-22 15:16:02 -0700807 }
Doug Zongker1066d2c2009-04-01 13:57:40 -0700808
Tao Bao682c34b2015-04-07 17:16:35 -0700809 modified_flash = true;
810
Doug Zongker211aebc2011-10-28 15:13:10 -0700811 ui->Print("\n-- Wiping data...\n");
Elliott Hughes945548e2015-06-05 17:59:56 -0700812 bool success =
813 device->PreWipeData() &&
814 erase_volume("/data") &&
Tao Bao26112e52016-02-25 12:29:40 -0800815 (has_cache ? erase_volume("/cache") : true) &&
Elliott Hughes945548e2015-06-05 17:59:56 -0700816 device->PostWipeData();
817 ui->Print("Data wipe %s.\n", success ? "complete" : "failed");
818 return success;
Doug Zongkerf93d8162009-09-22 15:16:02 -0700819}
820
Tao Baoe39a9bc2015-03-31 12:19:05 -0700821// Return true on success.
822static bool wipe_cache(bool should_confirm, Device* device) {
Tao Bao26112e52016-02-25 12:29:40 -0800823 if (!has_cache) {
824 ui->Print("No /cache partition found.\n");
825 return false;
826 }
827
Elliott Hughes30694c92015-03-25 15:16:51 -0700828 if (should_confirm && !yes_no(device, "Wipe cache?", " THIS CAN NOT BE UNDONE!")) {
Tao Baoe39a9bc2015-03-31 12:19:05 -0700829 return false;
Elliott Hughes30694c92015-03-25 15:16:51 -0700830 }
831
Tao Bao682c34b2015-04-07 17:16:35 -0700832 modified_flash = true;
833
Elliott Hughes30694c92015-03-25 15:16:51 -0700834 ui->Print("\n-- Wiping cache...\n");
Elliott Hughes945548e2015-06-05 17:59:56 -0700835 bool success = erase_volume("/cache");
836 ui->Print("Cache wipe %s.\n", success ? "complete" : "failed");
837 return success;
Elliott Hughes30694c92015-03-25 15:16:51 -0700838}
839
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700840static void choose_recovery_file(Device* device) {
Tao Bao26112e52016-02-25 12:29:40 -0800841 if (!has_cache) {
842 ui->Print("No /cache partition found.\n");
843 return;
844 }
845
Elliott Hughesc0491632015-05-06 12:40:05 -0700846 // "Back" + KEEP_LOG_COUNT * 2 + terminating nullptr entry
847 char* entries[1 + KEEP_LOG_COUNT * 2 + 1];
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700848 memset(entries, 0, sizeof(entries));
849
Tao Baobef39712015-05-04 18:50:27 -0700850 unsigned int n = 0;
Patrick Tjincd055ee2014-12-09 11:26:40 -0800851
Patrick Tjincd055ee2014-12-09 11:26:40 -0800852 // Add LAST_LOG_FILE + LAST_LOG_FILE.x
Tao Baobef39712015-05-04 18:50:27 -0700853 // Add LAST_KMSG_FILE + LAST_KMSG_FILE.x
854 for (int i = 0; i < KEEP_LOG_COUNT; i++) {
855 char* log_file;
Tao Bao80e46e02015-06-03 10:49:29 -0700856 int ret;
857 ret = (i == 0) ? asprintf(&log_file, "%s", LAST_LOG_FILE) :
858 asprintf(&log_file, "%s.%d", LAST_LOG_FILE, i);
859 if (ret == -1) {
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700860 // memory allocation failure - return early. Should never happen.
861 return;
862 }
Tao Baobef39712015-05-04 18:50:27 -0700863 if ((ensure_path_mounted(log_file) != 0) || (access(log_file, R_OK) == -1)) {
864 free(log_file);
865 } else {
866 entries[n++] = log_file;
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700867 }
Tao Baobef39712015-05-04 18:50:27 -0700868
869 char* kmsg_file;
Tao Bao80e46e02015-06-03 10:49:29 -0700870 ret = (i == 0) ? asprintf(&kmsg_file, "%s", LAST_KMSG_FILE) :
871 asprintf(&kmsg_file, "%s.%d", LAST_KMSG_FILE, i);
872 if (ret == -1) {
Tao Baobef39712015-05-04 18:50:27 -0700873 // memory allocation failure - return early. Should never happen.
874 return;
875 }
876 if ((ensure_path_mounted(kmsg_file) != 0) || (access(kmsg_file, R_OK) == -1)) {
877 free(kmsg_file);
878 } else {
879 entries[n++] = kmsg_file;
880 }
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700881 }
882
Elliott Hughesc0491632015-05-06 12:40:05 -0700883 entries[n++] = strdup("Back");
884
Tao Baobef39712015-05-04 18:50:27 -0700885 const char* headers[] = { "Select file to view", nullptr };
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700886
Elliott Hughes8de52072015-04-08 20:06:50 -0700887 while (true) {
Elliott Hughes30694c92015-03-25 15:16:51 -0700888 int chosen_item = get_menu_selection(headers, entries, 1, 0, device);
Elliott Hughesc0491632015-05-06 12:40:05 -0700889 if (strcmp(entries[chosen_item], "Back") == 0) break;
Elliott Hughes8de52072015-04-08 20:06:50 -0700890
Elliott Hughes8de52072015-04-08 20:06:50 -0700891 ui->ShowFile(entries[chosen_item]);
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700892 }
893
Tao Baobef39712015-05-04 18:50:27 -0700894 for (size_t i = 0; i < (sizeof(entries) / sizeof(*entries)); i++) {
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700895 free(entries[i]);
896 }
897}
898
Elliott Hughes498cda62016-04-14 16:49:04 -0700899static void run_graphics_test(Device* device) {
900 // Switch to graphics screen.
901 ui->ShowText(false);
902
903 ui->SetProgressType(RecoveryUI::INDETERMINATE);
904 ui->SetBackground(RecoveryUI::INSTALLING_UPDATE);
905 sleep(1);
906
907 ui->SetBackground(RecoveryUI::ERROR);
908 sleep(1);
909
910 ui->SetBackground(RecoveryUI::NO_COMMAND);
911 sleep(1);
912
913 ui->SetBackground(RecoveryUI::ERASING);
914 sleep(1);
915
916 ui->SetBackground(RecoveryUI::INSTALLING_UPDATE);
917
918 ui->SetProgressType(RecoveryUI::DETERMINATE);
919 ui->ShowProgress(1.0, 10.0);
920 float fraction = 0.0;
921 for (size_t i = 0; i < 100; ++i) {
922 fraction += .01;
923 ui->SetProgress(fraction);
924 usleep(100000);
925 }
926
927 ui->ShowText(true);
928}
929
Tao Baocdcf28f2016-01-13 15:05:20 -0800930// How long (in seconds) we wait for the fuse-provided package file to
931// appear, before timing out.
932#define SDCARD_INSTALL_TIMEOUT 10
933
Tao Bao145d8612015-03-25 15:51:15 -0700934static int apply_from_sdcard(Device* device, bool* wipe_cache) {
Tao Bao682c34b2015-04-07 17:16:35 -0700935 modified_flash = true;
936
Christian Poetzsch4ec58a42015-02-19 10:42:39 +0000937 if (ensure_path_mounted(SDCARD_ROOT) != 0) {
938 ui->Print("\n-- Couldn't mount %s.\n", SDCARD_ROOT);
939 return INSTALL_ERROR;
940 }
941
942 char* path = browse_directory(SDCARD_ROOT, device);
943 if (path == NULL) {
Elliott Hughes018ed312015-04-08 16:51:36 -0700944 ui->Print("\n-- No package file selected.\n");
caozhiyuanb4effb92015-06-10 16:46:38 +0800945 ensure_path_unmounted(SDCARD_ROOT);
Christian Poetzsch4ec58a42015-02-19 10:42:39 +0000946 return INSTALL_ERROR;
947 }
948
949 ui->Print("\n-- Install %s ...\n", path);
950 set_sdcard_update_bootloader_message();
Christian Poetzsch4ec58a42015-02-19 10:42:39 +0000951
Tao Baocdcf28f2016-01-13 15:05:20 -0800952 // We used to use fuse in a thread as opposed to a process. Since accessing
953 // through fuse involves going from kernel to userspace to kernel, it leads
954 // to deadlock when a page fault occurs. (Bug: 26313124)
955 pid_t child;
956 if ((child = fork()) == 0) {
957 bool status = start_sdcard_fuse(path);
958
959 _exit(status ? EXIT_SUCCESS : EXIT_FAILURE);
960 }
961
962 // FUSE_SIDELOAD_HOST_PATHNAME will start to exist once the fuse in child
963 // process is ready.
964 int result = INSTALL_ERROR;
965 int status;
966 bool waited = false;
967 for (int i = 0; i < SDCARD_INSTALL_TIMEOUT; ++i) {
968 if (waitpid(child, &status, WNOHANG) == -1) {
969 result = INSTALL_ERROR;
970 waited = true;
971 break;
972 }
973
974 struct stat sb;
975 if (stat(FUSE_SIDELOAD_HOST_PATHNAME, &sb) == -1) {
976 if (errno == ENOENT && i < SDCARD_INSTALL_TIMEOUT-1) {
977 sleep(1);
978 continue;
979 } else {
980 LOGE("Timed out waiting for the fuse-provided package.\n");
981 result = INSTALL_ERROR;
982 kill(child, SIGKILL);
983 break;
984 }
985 }
986
987 result = install_package(FUSE_SIDELOAD_HOST_PATHNAME, wipe_cache,
Christian Poetzsch4ec58a42015-02-19 10:42:39 +0000988 TEMPORARY_INSTALL_FILE, false);
Tao Baocdcf28f2016-01-13 15:05:20 -0800989 break;
990 }
Christian Poetzsch4ec58a42015-02-19 10:42:39 +0000991
Tao Baocdcf28f2016-01-13 15:05:20 -0800992 if (!waited) {
993 // Calling stat() on this magic filename signals the fuse
994 // filesystem to shut down.
995 struct stat sb;
996 stat(FUSE_SIDELOAD_HOST_EXIT_PATHNAME, &sb);
997
998 waitpid(child, &status, 0);
999 }
1000
1001 if (!WIFEXITED(status) || WEXITSTATUS(status) != 0) {
1002 LOGE("Error exit from the fuse process: %d\n", WEXITSTATUS(status));
1003 }
1004
Christian Poetzsch4ec58a42015-02-19 10:42:39 +00001005 ensure_path_unmounted(SDCARD_ROOT);
Tao Baocdcf28f2016-01-13 15:05:20 -08001006 return result;
Christian Poetzsch4ec58a42015-02-19 10:42:39 +00001007}
1008
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001009// Return REBOOT, SHUTDOWN, or REBOOT_BOOTLOADER. Returning NO_ACTION
1010// means to take the default, which is to reboot or shutdown depending
1011// on if the --shutdown_after flag was passed to recovery.
1012static Device::BuiltinAction
Doug Zongker6c8553d2012-09-24 10:40:47 -07001013prompt_and_wait(Device* device, int status) {
Doug Zongkerf93d8162009-09-22 15:16:02 -07001014 for (;;) {
Tianjie Xuc14d95d2016-03-24 11:50:34 -07001015 finish_recovery();
Doug Zongker6c8553d2012-09-24 10:40:47 -07001016 switch (status) {
1017 case INSTALL_SUCCESS:
1018 case INSTALL_NONE:
1019 ui->SetBackground(RecoveryUI::NO_COMMAND);
1020 break;
1021
1022 case INSTALL_ERROR:
1023 case INSTALL_CORRUPT:
1024 ui->SetBackground(RecoveryUI::ERROR);
1025 break;
1026 }
Doug Zongker211aebc2011-10-28 15:13:10 -07001027 ui->SetProgressType(RecoveryUI::EMPTY);
Doug Zongkerf93d8162009-09-22 15:16:02 -07001028
Elliott Hughes8fd86d72015-04-13 14:36:02 -07001029 int chosen_item = get_menu_selection(nullptr, device->GetMenuItems(), 0, 0, device);
Doug Zongkerf93d8162009-09-22 15:16:02 -07001030
1031 // device-specific code may take some action here. It may
1032 // return one of the core actions handled in the switch
1033 // statement below.
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001034 Device::BuiltinAction chosen_action = device->InvokeMenuItem(chosen_item);
Doug Zongkerf93d8162009-09-22 15:16:02 -07001035
Elliott Hughes30694c92015-03-25 15:16:51 -07001036 bool should_wipe_cache = false;
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001037 switch (chosen_action) {
1038 case Device::NO_ACTION:
1039 break;
1040
Doug Zongkerdaefc1d2011-10-31 09:34:15 -07001041 case Device::REBOOT:
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001042 case Device::SHUTDOWN:
1043 case Device::REBOOT_BOOTLOADER:
1044 return chosen_action;
Doug Zongkerf93d8162009-09-22 15:16:02 -07001045
Doug Zongkerdaefc1d2011-10-31 09:34:15 -07001046 case Device::WIPE_DATA:
1047 wipe_data(ui->IsTextVisible(), device);
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001048 if (!ui->IsTextVisible()) return Device::NO_ACTION;
Doug Zongkerf93d8162009-09-22 15:16:02 -07001049 break;
1050
Doug Zongkerdaefc1d2011-10-31 09:34:15 -07001051 case Device::WIPE_CACHE:
Elliott Hughes30694c92015-03-25 15:16:51 -07001052 wipe_cache(ui->IsTextVisible(), device);
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001053 if (!ui->IsTextVisible()) return Device::NO_ACTION;
Doug Zongkerf93d8162009-09-22 15:16:02 -07001054 break;
1055
Christian Poetzsch4ec58a42015-02-19 10:42:39 +00001056 case Device::APPLY_ADB_SIDELOAD:
Elliott Hughesec283402015-04-10 10:01:53 -07001057 case Device::APPLY_SDCARD:
Christian Poetzsch4ec58a42015-02-19 10:42:39 +00001058 {
1059 bool adb = (chosen_action == Device::APPLY_ADB_SIDELOAD);
1060 if (adb) {
Elliott Hughes30694c92015-03-25 15:16:51 -07001061 status = apply_from_adb(ui, &should_wipe_cache, TEMPORARY_INSTALL_FILE);
Doug Zongkerd0181b82011-10-19 10:51:12 -07001062 } else {
Elliott Hughes30694c92015-03-25 15:16:51 -07001063 status = apply_from_sdcard(device, &should_wipe_cache);
Doug Zongkerd0181b82011-10-19 10:51:12 -07001064 }
Doug Zongker945fc682014-07-10 10:50:39 -07001065
Elliott Hughes30694c92015-03-25 15:16:51 -07001066 if (status == INSTALL_SUCCESS && should_wipe_cache) {
Tao Baoe39a9bc2015-03-31 12:19:05 -07001067 if (!wipe_cache(false, device)) {
1068 status = INSTALL_ERROR;
1069 }
Christian Poetzsch4ec58a42015-02-19 10:42:39 +00001070 }
1071
Tao Baoc679f932015-03-30 09:43:49 -07001072 if (status != INSTALL_SUCCESS) {
1073 ui->SetBackground(RecoveryUI::ERROR);
1074 ui->Print("Installation aborted.\n");
1075 copy_logs();
1076 } else if (!ui->IsTextVisible()) {
1077 return Device::NO_ACTION; // reboot if logs aren't visible
1078 } else {
1079 ui->Print("\nInstall from %s complete.\n", adb ? "ADB" : "SD card");
Doug Zongker8674a722010-09-15 11:08:23 -07001080 }
Doug Zongkerf93d8162009-09-22 15:16:02 -07001081 }
1082 break;
Doug Zongkerdaefc1d2011-10-31 09:34:15 -07001083
Elliott Hughesec283402015-04-10 10:01:53 -07001084 case Device::VIEW_RECOVERY_LOGS:
1085 choose_recovery_file(device);
Michael Ward9d2629c2011-06-23 22:14:24 -07001086 break;
Doug Zongker9270a202012-01-09 15:16:13 -08001087
Elliott Hughes498cda62016-04-14 16:49:04 -07001088 case Device::RUN_GRAPHICS_TEST:
1089 run_graphics_test(device);
1090 break;
1091
Elliott Hughesec283402015-04-10 10:01:53 -07001092 case Device::MOUNT_SYSTEM:
Tao Baoabb8f772015-07-30 14:43:27 -07001093 char system_root_image[PROPERTY_VALUE_MAX];
1094 property_get("ro.build.system_root_image", system_root_image, "");
1095
1096 // For a system image built with the root directory (i.e.
1097 // system_root_image == "true"), we mount it to /system_root, and symlink /system
1098 // to /system_root/system to make adb shell work (the symlink is created through
1099 // the build system).
1100 // Bug: 22855115
1101 if (strcmp(system_root_image, "true") == 0) {
1102 if (ensure_path_mounted_at("/", "/system_root") != -1) {
1103 ui->Print("Mounted /system.\n");
1104 }
1105 } else {
1106 if (ensure_path_mounted("/system") != -1) {
1107 ui->Print("Mounted /system.\n");
1108 }
Elliott Hughesec283402015-04-10 10:01:53 -07001109 }
Tao Baoabb8f772015-07-30 14:43:27 -07001110
Nick Kralevicha9ad0322014-10-22 18:38:48 -07001111 break;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001112 }
1113 }
1114}
1115
1116static void
Oscar Montemayor05231562009-11-30 08:40:57 -08001117print_property(const char *key, const char *name, void *cookie) {
Doug Zongker56c51052010-07-01 09:18:44 -07001118 printf("%s=%s\n", key, name);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001119}
1120
Doug Zongker02ec6b82012-08-22 17:26:40 -07001121static void
1122load_locale_from_cache() {
1123 FILE* fp = fopen_path(LOCALE_FILE, "r");
1124 char buffer[80];
1125 if (fp != NULL) {
1126 fgets(buffer, sizeof(buffer), fp);
1127 int j = 0;
Doug Zongker5fa8c232012-09-18 12:37:02 -07001128 unsigned int i;
Doug Zongker02ec6b82012-08-22 17:26:40 -07001129 for (i = 0; i < sizeof(buffer) && buffer[i]; ++i) {
1130 if (!isspace(buffer[i])) {
1131 buffer[j++] = buffer[i];
1132 }
1133 }
1134 buffer[j] = 0;
1135 locale = strdup(buffer);
Devin Kim6016d082012-10-08 09:47:37 -07001136 check_and_fclose(fp, LOCALE_FILE);
Doug Zongker02ec6b82012-08-22 17:26:40 -07001137 }
1138}
1139
Doug Zongker7c3ae452013-05-14 11:03:02 -07001140static RecoveryUI* gCurrentUI = NULL;
1141
1142void
1143ui_print(const char* format, ...) {
1144 char buffer[256];
1145
1146 va_list ap;
1147 va_start(ap, format);
1148 vsnprintf(buffer, sizeof(buffer), format, ap);
1149 va_end(ap);
1150
1151 if (gCurrentUI != NULL) {
1152 gCurrentUI->Print("%s", buffer);
1153 } else {
1154 fputs(buffer, stdout);
1155 }
1156}
1157
Yabin Cui99281df2016-02-17 12:21:52 -08001158static bool is_battery_ok() {
1159 struct healthd_config healthd_config = {
1160 .batteryStatusPath = android::String8(android::String8::kEmptyString),
1161 .batteryHealthPath = android::String8(android::String8::kEmptyString),
1162 .batteryPresentPath = android::String8(android::String8::kEmptyString),
1163 .batteryCapacityPath = android::String8(android::String8::kEmptyString),
1164 .batteryVoltagePath = android::String8(android::String8::kEmptyString),
1165 .batteryTemperaturePath = android::String8(android::String8::kEmptyString),
1166 .batteryTechnologyPath = android::String8(android::String8::kEmptyString),
1167 .batteryCurrentNowPath = android::String8(android::String8::kEmptyString),
1168 .batteryCurrentAvgPath = android::String8(android::String8::kEmptyString),
1169 .batteryChargeCounterPath = android::String8(android::String8::kEmptyString),
1170 .batteryFullChargePath = android::String8(android::String8::kEmptyString),
1171 .batteryCycleCountPath = android::String8(android::String8::kEmptyString),
1172 .energyCounter = NULL,
1173 .boot_min_cap = 0,
1174 .screen_on = NULL
1175 };
1176 healthd_board_init(&healthd_config);
1177
1178 android::BatteryMonitor monitor;
1179 monitor.init(&healthd_config);
1180
1181 int wait_second = 0;
1182 while (true) {
1183 int charge_status = monitor.getChargeStatus();
1184 // Treat unknown status as charged.
1185 bool charged = (charge_status != android::BATTERY_STATUS_DISCHARGING &&
1186 charge_status != android::BATTERY_STATUS_NOT_CHARGING);
1187 android::BatteryProperty capacity;
1188 android::status_t status = monitor.getProperty(android::BATTERY_PROP_CAPACITY, &capacity);
1189 ui_print("charge_status %d, charged %d, status %d, capacity %lld\n", charge_status,
1190 charged, status, capacity.valueInt64);
1191 // At startup, the battery drivers in devices like N5X/N6P take some time to load
1192 // the battery profile. Before the load finishes, it reports value 50 as a fake
1193 // capacity. BATTERY_READ_TIMEOUT_IN_SEC is set that the battery drivers are expected
1194 // to finish loading the battery profile earlier than 10 seconds after kernel startup.
1195 if (status == 0 && capacity.valueInt64 == 50) {
1196 if (wait_second < BATTERY_READ_TIMEOUT_IN_SEC) {
1197 sleep(1);
1198 wait_second++;
1199 continue;
1200 }
1201 }
1202 // If we can't read battery percentage, it may be a device without battery. In this
1203 // situation, use 100 as a fake battery percentage.
1204 if (status != 0) {
1205 capacity.valueInt64 = 100;
1206 }
1207 return (charged && capacity.valueInt64 >= BATTERY_WITH_CHARGER_OK_PERCENTAGE) ||
1208 (!charged && capacity.valueInt64 >= BATTERY_OK_PERCENTAGE);
1209 }
1210}
1211
Tianjie Xu3c62b672016-02-05 18:25:58 -08001212static void set_retry_bootloader_message(int retry_count, int argc, char** argv) {
1213 struct bootloader_message boot {};
1214 strlcpy(boot.command, "boot-recovery", sizeof(boot.command));
1215 strlcpy(boot.recovery, "recovery\n", sizeof(boot.recovery));
1216
1217 for (int i = 1; i < argc; ++i) {
1218 if (strstr(argv[i], "retry_count") == nullptr) {
1219 strlcat(boot.recovery, argv[i], sizeof(boot.recovery));
1220 strlcat(boot.recovery, "\n", sizeof(boot.recovery));
1221 }
1222 }
1223
1224 // Initialize counter to 1 if it's not in BCB, otherwise increment it by 1.
1225 if (retry_count == 0) {
1226 strlcat(boot.recovery, "--retry_count=1\n", sizeof(boot.recovery));
1227 } else {
1228 char buffer[20];
1229 snprintf(buffer, sizeof(buffer), "--retry_count=%d\n", retry_count+1);
1230 strlcat(boot.recovery, buffer, sizeof(boot.recovery));
1231 }
1232 set_bootloader_message(&boot);
1233}
1234
Mark Salyzyna4f701a2016-03-09 14:58:16 -08001235static ssize_t logbasename(
1236 log_id_t /* logId */,
1237 char /* prio */,
1238 const char *filename,
1239 const char * /* buf */, size_t len,
1240 void *arg) {
1241 if (strstr(LAST_KMSG_FILE, filename) ||
1242 strstr(LAST_LOG_FILE, filename)) {
1243 bool *doRotate = reinterpret_cast<bool *>(arg);
1244 *doRotate = true;
1245 }
1246 return len;
1247}
1248
1249static ssize_t logrotate(
1250 log_id_t logId,
1251 char prio,
1252 const char *filename,
1253 const char *buf, size_t len,
1254 void *arg) {
1255 bool *doRotate = reinterpret_cast<bool *>(arg);
1256 if (!*doRotate) {
1257 return __android_log_pmsg_file_write(logId, prio, filename, buf, len);
1258 }
1259
1260 std::string name(filename);
1261 size_t dot = name.find_last_of(".");
1262 std::string sub = name.substr(0, dot);
1263
1264 if (!strstr(LAST_KMSG_FILE, sub.c_str()) &&
1265 !strstr(LAST_LOG_FILE, sub.c_str())) {
1266 return __android_log_pmsg_file_write(logId, prio, filename, buf, len);
1267 }
1268
1269 // filename rotation
1270 if (dot == std::string::npos) {
1271 name += ".1";
1272 } else {
1273 std::string number = name.substr(dot + 1);
1274 if (!isdigit(number.data()[0])) {
1275 name += ".1";
1276 } else {
Chih-Hung Hsieh54a27472016-04-18 11:30:55 -07001277 auto i = std::stoull(number);
Mark Salyzyna4f701a2016-03-09 14:58:16 -08001278 name = sub + "." + std::to_string(i + 1);
1279 }
1280 }
1281
1282 return __android_log_pmsg_file_write(logId, prio, name.c_str(), buf, len);
1283}
1284
Yabin Cui99281df2016-02-17 12:21:52 -08001285int main(int argc, char **argv) {
Mark Salyzyna4f701a2016-03-09 14:58:16 -08001286 // Take last pmsg contents and rewrite it to the current pmsg session.
1287 static const char filter[] = "recovery/";
1288 // Do we need to rotate?
1289 bool doRotate = false;
1290 __android_log_pmsg_file_read(
1291 LOG_ID_SYSTEM, ANDROID_LOG_INFO, filter,
1292 logbasename, &doRotate);
1293 // Take action to refresh pmsg contents
1294 __android_log_pmsg_file_read(
1295 LOG_ID_SYSTEM, ANDROID_LOG_INFO, filter,
1296 logrotate, &doRotate);
1297
Doug Zongker9270a202012-01-09 15:16:13 -08001298 // If this binary is started with the single argument "--adbd",
1299 // instead of being the normal recovery binary, it turns into kind
1300 // of a stripped-down version of adbd that only supports the
1301 // 'sideload' command. Note this must be a real argument, not
1302 // anything in the command file or bootloader control block; the
1303 // only way recovery should be run with this argument is when it
1304 // starts a copy of itself from the apply_from_adb() function.
1305 if (argc == 2 && strcmp(argv[1], "--adbd") == 0) {
Elliott Hughes9f4fdb32015-11-20 13:03:24 -08001306 adb_server_main(0, DEFAULT_ADB_PORT, -1);
Doug Zongker9270a202012-01-09 15:16:13 -08001307 return 0;
1308 }
1309
Tao Bao04ca4262015-09-10 15:32:24 -07001310 time_t start = time(NULL);
1311
1312 // redirect_stdio should be called only in non-sideload mode. Otherwise
1313 // we may have two logger instances with different timestamps.
1314 redirect_stdio(TEMPORARY_LOG_FILE);
1315
Doug Zongker19a8e242014-01-21 09:25:41 -08001316 printf("Starting recovery (pid %d) on %s", getpid(), ctime(&start));
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001317
Doug Zongkerd4208f92010-09-20 12:16:13 -07001318 load_volume_table();
Tao Bao26112e52016-02-25 12:29:40 -08001319 has_cache = volume_for_path(CACHE_ROOT) != nullptr;
1320
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001321 get_args(&argc, &argv);
1322
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001323 const char *update_package = NULL;
Tao Baoe39a9bc2015-03-31 12:19:05 -07001324 bool should_wipe_data = false;
Tao Baoc679f932015-03-30 09:43:49 -07001325 bool should_wipe_cache = false;
Tao Bao145d8612015-03-25 15:51:15 -07001326 bool show_text = false;
Tao Baoc679f932015-03-30 09:43:49 -07001327 bool sideload = false;
1328 bool sideload_auto_reboot = false;
Doug Zongkere5d5ac72012-04-12 11:01:22 -07001329 bool just_exit = false;
Doug Zongkerb1d12632014-03-18 10:32:12 -07001330 bool shutdown_after = false;
Tianjie Xu3c62b672016-02-05 18:25:58 -08001331 int retry_count = 0;
Tianjie Xu35926c42016-04-28 18:06:26 -07001332 bool security_update = false;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001333
1334 int arg;
1335 while ((arg = getopt_long(argc, argv, "", OPTIONS, NULL)) != -1) {
1336 switch (arg) {
Tianjie Xu3c62b672016-02-05 18:25:58 -08001337 case 'n': android::base::ParseInt(optarg, &retry_count, 0); break;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001338 case 'u': update_package = optarg; break;
Tao Baoe39a9bc2015-03-31 12:19:05 -07001339 case 'w': should_wipe_data = true; break;
Tao Baoc679f932015-03-30 09:43:49 -07001340 case 'c': should_wipe_cache = true; break;
Tao Bao145d8612015-03-25 15:51:15 -07001341 case 't': show_text = true; break;
Tao Baoc679f932015-03-30 09:43:49 -07001342 case 's': sideload = true; break;
1343 case 'a': sideload = true; sideload_auto_reboot = true; break;
Doug Zongkere5d5ac72012-04-12 11:01:22 -07001344 case 'x': just_exit = true; break;
Doug Zongker02ec6b82012-08-22 17:26:40 -07001345 case 'l': locale = optarg; break;
Doug Zongkerc87bab12013-11-25 13:53:25 -08001346 case 'g': {
1347 if (stage == NULL || *stage == '\0') {
1348 char buffer[20] = "1/";
1349 strncat(buffer, optarg, sizeof(buffer)-3);
1350 stage = strdup(buffer);
1351 }
1352 break;
1353 }
Doug Zongkerb1d12632014-03-18 10:32:12 -07001354 case 'p': shutdown_after = true; break;
Jeff Sharkeya6e13ae2014-09-24 11:46:17 -07001355 case 'r': reason = optarg; break;
Tianjie Xu35926c42016-04-28 18:06:26 -07001356 case 'e': security_update = true; break;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001357 case '?':
1358 LOGE("Invalid command argument\n");
1359 continue;
1360 }
1361 }
1362
Tao Bao26112e52016-02-25 12:29:40 -08001363 if (locale == nullptr && has_cache) {
Doug Zongker02ec6b82012-08-22 17:26:40 -07001364 load_locale_from_cache();
1365 }
1366 printf("locale is [%s]\n", locale);
Doug Zongker0d32f252014-02-13 15:07:56 -08001367 printf("stage is [%s]\n", stage);
Jeff Sharkeya6e13ae2014-09-24 11:46:17 -07001368 printf("reason is [%s]\n", reason);
Doug Zongker02ec6b82012-08-22 17:26:40 -07001369
1370 Device* device = make_device();
1371 ui = device->GetUI();
Doug Zongker7c3ae452013-05-14 11:03:02 -07001372 gCurrentUI = ui;
Doug Zongker02ec6b82012-08-22 17:26:40 -07001373
Doug Zongker5fa8c232012-09-18 12:37:02 -07001374 ui->SetLocale(locale);
Doug Zongker02ec6b82012-08-22 17:26:40 -07001375 ui->Init();
Tianjie Xu35926c42016-04-28 18:06:26 -07001376 // Set background string to "installing security update" for security update,
1377 // otherwise set it to "installing system update".
1378 ui->SetSystemUpdateText(security_update);
Doug Zongkerc87bab12013-11-25 13:53:25 -08001379
1380 int st_cur, st_max;
1381 if (stage != NULL && sscanf(stage, "%d/%d", &st_cur, &st_max) == 2) {
1382 ui->SetStage(st_cur, st_max);
1383 }
1384
Doug Zongker02ec6b82012-08-22 17:26:40 -07001385 ui->SetBackground(RecoveryUI::NONE);
1386 if (show_text) ui->ShowText(true);
1387
Stephen Smalley779701d2012-02-09 14:13:23 -05001388 struct selinux_opt seopts[] = {
1389 { SELABEL_OPT_PATH, "/file_contexts" }
1390 };
1391
1392 sehandle = selabel_open(SELABEL_CTX_FILE, seopts, 1);
1393
1394 if (!sehandle) {
Doug Zongkerfafc85b2013-07-09 12:29:45 -07001395 ui->Print("Warning: No file_contexts\n");
Stephen Smalley779701d2012-02-09 14:13:23 -05001396 }
Stephen Smalley779701d2012-02-09 14:13:23 -05001397
Doug Zongkerdaefc1d2011-10-31 09:34:15 -07001398 device->StartRecovery();
Doug Zongkerefa1bab2010-02-01 15:59:12 -08001399
Doug Zongker56c51052010-07-01 09:18:44 -07001400 printf("Command:");
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001401 for (arg = 0; arg < argc; arg++) {
Doug Zongker56c51052010-07-01 09:18:44 -07001402 printf(" \"%s\"", argv[arg]);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001403 }
Doug Zongker9b125b02010-09-22 12:01:37 -07001404 printf("\n");
1405
1406 if (update_package) {
1407 // For backwards compatibility on the cache partition only, if
1408 // we're given an old 'root' path "CACHE:foo", change it to
1409 // "/cache/foo".
1410 if (strncmp(update_package, "CACHE:", 6) == 0) {
1411 int len = strlen(update_package) + 10;
Doug Zongker28ce47c2011-10-28 10:33:05 -07001412 char* modified_path = (char*)malloc(len);
Jeremy Compostella1b7d9b72015-07-29 17:17:03 +02001413 if (modified_path) {
1414 strlcpy(modified_path, "/cache/", len);
1415 strlcat(modified_path, update_package+6, len);
1416 printf("(replacing path \"%s\" with \"%s\")\n",
1417 update_package, modified_path);
1418 update_package = modified_path;
1419 }
1420 else
1421 printf("modified_path allocation failed\n");
Doug Zongker9b125b02010-09-22 12:01:37 -07001422 }
1423 }
1424 printf("\n");
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001425
1426 property_list(print_property, NULL);
Doug Zongker56c51052010-07-01 09:18:44 -07001427 printf("\n");
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001428
Elliott Hughesbb78d622015-04-09 20:51:08 -07001429 ui->Print("Supported API: %d\n", RECOVERY_API_VERSION);
1430
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001431 int status = INSTALL_SUCCESS;
1432
Doug Zongker540d57f2011-01-18 13:36:58 -08001433 if (update_package != NULL) {
Tao Bao56870012016-04-29 15:37:05 -07001434 // It's not entirely true that we will modify the flash. But we want
1435 // to log the update attempt since update_package is non-NULL.
1436 modified_flash = true;
1437
Yabin Cui99281df2016-02-17 12:21:52 -08001438 if (!is_battery_ok()) {
1439 ui->Print("battery capacity is not enough for installing package, needed is %d%%\n",
1440 BATTERY_OK_PERCENTAGE);
1441 status = INSTALL_SKIPPED;
1442 } else {
1443 status = install_package(update_package, &should_wipe_cache,
1444 TEMPORARY_INSTALL_FILE, true);
1445 if (status == INSTALL_SUCCESS && should_wipe_cache) {
1446 wipe_cache(false, device);
1447 }
1448 if (status != INSTALL_SUCCESS) {
1449 ui->Print("Installation aborted.\n");
Tianjie Xu3c62b672016-02-05 18:25:58 -08001450 // When I/O error happens, reboot and retry installation EIO_RETRY_COUNT
1451 // times before we abandon this OTA update.
1452 if (status == INSTALL_RETRY && retry_count < EIO_RETRY_COUNT) {
1453 copy_logs();
1454 set_retry_bootloader_message(retry_count, argc, argv);
1455 // Print retry count on screen.
1456 ui->Print("Retry attempt %d\n", retry_count);
Doug Zongker7c3ae452013-05-14 11:03:02 -07001457
Tianjie Xu3c62b672016-02-05 18:25:58 -08001458 // Reboot and retry the update
1459 int ret = property_set(ANDROID_RB_PROPERTY, "reboot,recovery");
1460 if (ret < 0) {
1461 ui->Print("Reboot failed\n");
1462 } else {
1463 while (true) {
1464 pause();
1465 }
1466 }
1467 }
Yabin Cui99281df2016-02-17 12:21:52 -08001468 // If this is an eng or userdebug build, then automatically
1469 // turn the text display on if the script fails so the error
1470 // message is visible.
1471 if (is_ro_debuggable()) {
1472 ui->ShowText(true);
1473 }
Doug Zongker7c3ae452013-05-14 11:03:02 -07001474 }
1475 }
Tao Baoe39a9bc2015-03-31 12:19:05 -07001476 } else if (should_wipe_data) {
1477 if (!wipe_data(false, device)) {
1478 status = INSTALL_ERROR;
1479 }
Tao Baoc679f932015-03-30 09:43:49 -07001480 } else if (should_wipe_cache) {
Tao Baoe39a9bc2015-03-31 12:19:05 -07001481 if (!wipe_cache(false, device)) {
1482 status = INSTALL_ERROR;
1483 }
Tao Baoc679f932015-03-30 09:43:49 -07001484 } else if (sideload) {
1485 // 'adb reboot sideload' acts the same as user presses key combinations
1486 // to enter the sideload mode. When 'sideload-auto-reboot' is used, text
1487 // display will NOT be turned on by default. And it will reboot after
1488 // sideload finishes even if there are errors. Unless one turns on the
1489 // text display during the installation. This is to enable automated
1490 // testing.
1491 if (!sideload_auto_reboot) {
1492 ui->ShowText(true);
1493 }
1494 status = apply_from_adb(ui, &should_wipe_cache, TEMPORARY_INSTALL_FILE);
1495 if (status == INSTALL_SUCCESS && should_wipe_cache) {
Tao Baoe39a9bc2015-03-31 12:19:05 -07001496 if (!wipe_cache(false, device)) {
1497 status = INSTALL_ERROR;
1498 }
Tao Baoc679f932015-03-30 09:43:49 -07001499 }
1500 ui->Print("\nInstall from ADB complete (status: %d).\n", status);
1501 if (sideload_auto_reboot) {
1502 ui->Print("Rebooting automatically.\n");
1503 }
Doug Zongkere5d5ac72012-04-12 11:01:22 -07001504 } else if (!just_exit) {
Doug Zongker02ec6b82012-08-22 17:26:40 -07001505 status = INSTALL_NONE; // No command specified
1506 ui->SetBackground(RecoveryUI::NO_COMMAND);
Tao Bao785d22c2015-05-04 09:34:29 -07001507
1508 // http://b/17489952
1509 // If this is an eng or userdebug build, automatically turn on the
1510 // text display if no command is specified.
1511 if (is_ro_debuggable()) {
1512 ui->ShowText(true);
1513 }
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001514 }
1515
Tao Baoc679f932015-03-30 09:43:49 -07001516 if (!sideload_auto_reboot && (status == INSTALL_ERROR || status == INSTALL_CORRUPT)) {
Doug Zongkerf24fd7e2013-07-02 11:43:25 -07001517 copy_logs();
Doug Zongker02ec6b82012-08-22 17:26:40 -07001518 ui->SetBackground(RecoveryUI::ERROR);
1519 }
Tao Baoc679f932015-03-30 09:43:49 -07001520
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001521 Device::BuiltinAction after = shutdown_after ? Device::SHUTDOWN : Device::REBOOT;
Yabin Cui99281df2016-02-17 12:21:52 -08001522 if ((status != INSTALL_SUCCESS && status != INSTALL_SKIPPED && !sideload_auto_reboot) ||
1523 ui->IsTextVisible()) {
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001524 Device::BuiltinAction temp = prompt_and_wait(device, status);
Tao Baoc679f932015-03-30 09:43:49 -07001525 if (temp != Device::NO_ACTION) {
1526 after = temp;
1527 }
Doug Zongker8674a722010-09-15 11:08:23 -07001528 }
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001529
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001530 // Save logs and clean up before rebooting or shutting down.
Tianjie Xuc14d95d2016-03-24 11:50:34 -07001531 finish_recovery();
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001532
1533 switch (after) {
1534 case Device::SHUTDOWN:
1535 ui->Print("Shutting down...\n");
1536 property_set(ANDROID_RB_PROPERTY, "shutdown,");
1537 break;
1538
1539 case Device::REBOOT_BOOTLOADER:
1540 ui->Print("Rebooting to bootloader...\n");
1541 property_set(ANDROID_RB_PROPERTY, "reboot,bootloader");
1542 break;
1543
1544 default:
1545 ui->Print("Rebooting...\n");
1546 property_set(ANDROID_RB_PROPERTY, "reboot,");
1547 break;
Doug Zongkerb1d12632014-03-18 10:32:12 -07001548 }
Tao Bao75238632015-05-27 14:46:17 -07001549 while (true) {
1550 pause();
1551 }
1552 // Should be unreachable.
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001553 return EXIT_SUCCESS;
1554}