blob: 573ae1abbd8b84fde04e9ea9905dec2de8b6fde2 [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"
Tianjie Xu16255832016-04-30 11:49:59 -070054#include "error_code.h"
Tao Bao75238632015-05-27 14:46:17 -070055#include "fuse_sdcard_provider.h"
56#include "fuse_sideload.h"
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080057#include "install.h"
58#include "minui/minui.h"
59#include "minzip/DirUtil.h"
60#include "roots.h"
Doug Zongker28ce47c2011-10-28 10:33:05 -070061#include "ui.h"
Doug Zongker211aebc2011-10-28 15:13:10 -070062#include "screen_ui.h"
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080063
Stephen Smalley779701d2012-02-09 14:13:23 -050064struct selabel_handle *sehandle;
65
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080066static const struct option OPTIONS[] = {
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080067 { "update_package", required_argument, NULL, 'u' },
Tianjie Xu3c62b672016-02-05 18:25:58 -080068 { "retry_count", required_argument, NULL, 'n' },
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080069 { "wipe_data", no_argument, NULL, 'w' },
70 { "wipe_cache", no_argument, NULL, 'c' },
Doug Zongker4bc98062010-09-03 11:00:13 -070071 { "show_text", no_argument, NULL, 't' },
Tao Baoc679f932015-03-30 09:43:49 -070072 { "sideload", no_argument, NULL, 's' },
73 { "sideload_auto_reboot", no_argument, NULL, 'a' },
Doug Zongkere5d5ac72012-04-12 11:01:22 -070074 { "just_exit", no_argument, NULL, 'x' },
Doug Zongker02ec6b82012-08-22 17:26:40 -070075 { "locale", required_argument, NULL, 'l' },
Doug Zongkerc87bab12013-11-25 13:53:25 -080076 { "stages", required_argument, NULL, 'g' },
Doug Zongkerb1d12632014-03-18 10:32:12 -070077 { "shutdown_after", no_argument, NULL, 'p' },
Jeff Sharkeya6e13ae2014-09-24 11:46:17 -070078 { "reason", required_argument, NULL, 'r' },
Tianjie Xu35926c42016-04-28 18:06:26 -070079 { "security", no_argument, NULL, 'e'},
Doug Zongker988500b2009-10-06 14:41:38 -070080 { NULL, 0, NULL, 0 },
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080081};
82
Doug Zongker6d0d7ac2013-07-09 13:34:55 -070083static const char *CACHE_LOG_DIR = "/cache/recovery";
Doug Zongkerd4208f92010-09-20 12:16:13 -070084static const char *COMMAND_FILE = "/cache/recovery/command";
Doug Zongkerd4208f92010-09-20 12:16:13 -070085static const char *LOG_FILE = "/cache/recovery/log";
Doug Zongkerd0181b82011-10-19 10:51:12 -070086static const char *LAST_INSTALL_FILE = "/cache/recovery/last_install";
Doug Zongker8b240cc2012-08-29 15:19:29 -070087static const char *LOCALE_FILE = "/cache/recovery/last_locale";
Paul Lawrence661f8a62016-02-25 12:42:19 -080088static const char *CONVERT_FBE_DIR = "/tmp/convert_fbe";
89static const char *CONVERT_FBE_FILE = "/tmp/convert_fbe/convert_fbe";
Michael Ward9d2629c2011-06-23 22:14:24 -070090static const char *CACHE_ROOT = "/cache";
Paul Lawrenced0db3372015-11-05 13:38:40 -080091static const char *DATA_ROOT = "/data";
Doug Zongkerd4208f92010-09-20 12:16:13 -070092static const char *SDCARD_ROOT = "/sdcard";
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080093static const char *TEMPORARY_LOG_FILE = "/tmp/recovery.log";
Doug Zongkerd0181b82011-10-19 10:51:12 -070094static const char *TEMPORARY_INSTALL_FILE = "/tmp/last_install";
Tao Baof0124322015-04-11 02:04:11 +000095static const char *LAST_KMSG_FILE = "/cache/recovery/last_kmsg";
Tao Baobef39712015-05-04 18:50:27 -070096static const char *LAST_LOG_FILE = "/cache/recovery/last_log";
97static const int KEEP_LOG_COUNT = 10;
Tianjie Xu3c62b672016-02-05 18:25:58 -080098static const int EIO_RETRY_COUNT = 2;
Yabin Cui99281df2016-02-17 12:21:52 -080099static const int BATTERY_READ_TIMEOUT_IN_SEC = 10;
100// GmsCore enters recovery mode to install package when having enough battery
101// percentage. Normally, the threshold is 40% without charger and 20% with charger.
102// So we should check battery with a slightly lower limitation.
103static const int BATTERY_OK_PERCENTAGE = 20;
104static const int BATTERY_WITH_CHARGER_OK_PERCENTAGE = 15;
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700105
Doug Zongker211aebc2011-10-28 15:13:10 -0700106RecoveryUI* ui = NULL;
Elliott Hughes498cda62016-04-14 16:49:04 -0700107static const char* locale = "en_US";
Doug Zongkerc87bab12013-11-25 13:53:25 -0800108char* stage = NULL;
Jeff Sharkeya6e13ae2014-09-24 11:46:17 -0700109char* reason = NULL;
Tao Bao682c34b2015-04-07 17:16:35 -0700110bool modified_flash = false;
Tao Bao26112e52016-02-25 12:29:40 -0800111static bool has_cache = false;
Doug Zongker211aebc2011-10-28 15:13:10 -0700112
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800113/*
114 * The recovery tool communicates with the main system through /cache files.
115 * /cache/recovery/command - INPUT - command line for tool, one arg per line
116 * /cache/recovery/log - OUTPUT - combined log file from recovery run(s)
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800117 *
118 * The arguments which may be supplied in the recovery.command file:
Doug Zongkerd4208f92010-09-20 12:16:13 -0700119 * --update_package=path - verify install an OTA package file
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800120 * --wipe_data - erase user data (and cache), then reboot
121 * --wipe_cache - wipe cache (but not user data), then reboot
Oscar Montemayor05231562009-11-30 08:40:57 -0800122 * --set_encrypted_filesystem=on|off - enables / diasables encrypted fs
Doug Zongkere5d5ac72012-04-12 11:01:22 -0700123 * --just_exit - do nothing; exit and reboot
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800124 *
125 * After completing, we remove /cache/recovery/command and reboot.
126 * Arguments may also be supplied in the bootloader control block (BCB).
127 * These important scenarios must be safely restartable at any point:
128 *
129 * FACTORY RESET
130 * 1. user selects "factory reset"
131 * 2. main system writes "--wipe_data" to /cache/recovery/command
132 * 3. main system reboots into recovery
133 * 4. get_args() writes BCB with "boot-recovery" and "--wipe_data"
134 * -- after this, rebooting will restart the erase --
Doug Zongkerd4208f92010-09-20 12:16:13 -0700135 * 5. erase_volume() reformats /data
136 * 6. erase_volume() reformats /cache
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800137 * 7. finish_recovery() erases BCB
138 * -- after this, rebooting will restart the main system --
139 * 8. main() calls reboot() to boot main system
140 *
141 * OTA INSTALL
142 * 1. main system downloads OTA package to /cache/some-filename.zip
Doug Zongker9b125b02010-09-22 12:01:37 -0700143 * 2. main system writes "--update_package=/cache/some-filename.zip"
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800144 * 3. main system reboots into recovery
145 * 4. get_args() writes BCB with "boot-recovery" and "--update_package=..."
146 * -- after this, rebooting will attempt to reinstall the update --
147 * 5. install_package() attempts to install the update
148 * NOTE: the package install must itself be restartable from any point
149 * 6. finish_recovery() erases BCB
150 * -- after this, rebooting will (try to) restart the main system --
151 * 7. ** if install failed **
152 * 7a. prompt_and_wait() shows an error icon and waits for the user
153 * 7b; the user reboots (pulling the battery, etc) into the main system
154 * 8. main() calls maybe_install_firmware_update()
155 * ** if the update contained radio/hboot firmware **:
156 * 8a. m_i_f_u() writes BCB with "boot-recovery" and "--wipe_cache"
157 * -- after this, rebooting will reformat cache & restart main system --
158 * 8b. m_i_f_u() writes firmware image into raw cache partition
159 * 8c. m_i_f_u() writes BCB with "update-radio/hboot" and "--wipe_cache"
160 * -- after this, rebooting will attempt to reinstall firmware --
161 * 8d. bootloader tries to flash firmware
162 * 8e. bootloader writes BCB with "boot-recovery" (keeping "--wipe_cache")
163 * -- after this, rebooting will reformat cache & restart main system --
Doug Zongkerd4208f92010-09-20 12:16:13 -0700164 * 8f. erase_volume() reformats /cache
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800165 * 8g. finish_recovery() erases BCB
166 * -- after this, rebooting will (try to) restart the main system --
167 * 9. main() calls reboot() to boot main system
168 */
169
170static const int MAX_ARG_LENGTH = 4096;
171static const int MAX_ARGS = 100;
172
Doug Zongkerd4208f92010-09-20 12:16:13 -0700173// open a given path, mounting partitions as necessary
Tao Bao04ca4262015-09-10 15:32:24 -0700174FILE* fopen_path(const char *path, const char *mode) {
Doug Zongkerd4208f92010-09-20 12:16:13 -0700175 if (ensure_path_mounted(path) != 0) {
176 LOGE("Can't mount %s\n", path);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800177 return NULL;
178 }
179
180 // When writing, try to create the containing directory, if necessary.
181 // Use generous permissions, the system (init.rc) will reset them.
Stephen Smalley779701d2012-02-09 14:13:23 -0500182 if (strchr("wa", mode[0])) dirCreateHierarchy(path, 0777, NULL, 1, sehandle);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800183
184 FILE *fp = fopen(path, mode);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800185 return fp;
186}
187
Tao Bao04ca4262015-09-10 15:32:24 -0700188// close a file, log an error if the error indicator is set
189static void check_and_fclose(FILE *fp, const char *name) {
190 fflush(fp);
191 if (ferror(fp)) LOGE("Error in %s\n(%s)\n", name, strerror(errno));
192 fclose(fp);
193}
194
Elliott Hughesf14af802015-02-10 14:46:14 -0800195bool is_ro_debuggable() {
196 char value[PROPERTY_VALUE_MAX+1];
197 return (property_get("ro.debuggable", value, NULL) == 1 && value[0] == '1');
198}
199
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700200static void redirect_stdio(const char* filename) {
Tao Bao04ca4262015-09-10 15:32:24 -0700201 int pipefd[2];
202 if (pipe(pipefd) == -1) {
203 LOGE("pipe failed: %s\n", strerror(errno));
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700204
Tao Bao04ca4262015-09-10 15:32:24 -0700205 // Fall back to traditional logging mode without timestamps.
206 // If these fail, there's not really anywhere to complain...
207 freopen(filename, "a", stdout); setbuf(stdout, NULL);
208 freopen(filename, "a", stderr); setbuf(stderr, NULL);
209
210 return;
211 }
212
213 pid_t pid = fork();
214 if (pid == -1) {
215 LOGE("fork failed: %s\n", strerror(errno));
216
217 // Fall back to traditional logging mode without timestamps.
218 // If these fail, there's not really anywhere to complain...
219 freopen(filename, "a", stdout); setbuf(stdout, NULL);
220 freopen(filename, "a", stderr); setbuf(stderr, NULL);
221
222 return;
223 }
224
225 if (pid == 0) {
226 /// Close the unused write end.
227 close(pipefd[1]);
228
229 auto start = std::chrono::steady_clock::now();
230
231 // Child logger to actually write to the log file.
232 FILE* log_fp = fopen(filename, "a");
233 if (log_fp == nullptr) {
234 LOGE("fopen \"%s\" failed: %s\n", filename, strerror(errno));
235 close(pipefd[0]);
236 _exit(1);
237 }
238
239 FILE* pipe_fp = fdopen(pipefd[0], "r");
240 if (pipe_fp == nullptr) {
241 LOGE("fdopen failed: %s\n", strerror(errno));
242 check_and_fclose(log_fp, filename);
243 close(pipefd[0]);
244 _exit(1);
245 }
246
247 char* line = nullptr;
248 size_t len = 0;
249 while (getline(&line, &len, pipe_fp) != -1) {
250 auto now = std::chrono::steady_clock::now();
251 double duration = std::chrono::duration_cast<std::chrono::duration<double>>(
252 now - start).count();
253 if (line[0] == '\n') {
254 fprintf(log_fp, "[%12.6lf]\n", duration);
255 } else {
256 fprintf(log_fp, "[%12.6lf] %s", duration, line);
257 }
258 fflush(log_fp);
259 }
260
261 LOGE("getline failed: %s\n", strerror(errno));
262
263 free(line);
264 check_and_fclose(log_fp, filename);
265 close(pipefd[0]);
266 _exit(1);
267 } else {
268 // Redirect stdout/stderr to the logger process.
269 // Close the unused read end.
270 close(pipefd[0]);
271
272 setbuf(stdout, nullptr);
273 setbuf(stderr, nullptr);
274
275 if (dup2(pipefd[1], STDOUT_FILENO) == -1) {
276 LOGE("dup2 stdout failed: %s\n", strerror(errno));
277 }
278 if (dup2(pipefd[1], STDERR_FILENO) == -1) {
279 LOGE("dup2 stderr failed: %s\n", strerror(errno));
280 }
281
282 close(pipefd[1]);
283 }
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800284}
285
286// command line args come from, in decreasing precedence:
287// - the actual command line
288// - the bootloader control block (one per line, after "recovery")
289// - the contents of COMMAND_FILE (one per line)
290static void
291get_args(int *argc, char ***argv) {
292 struct bootloader_message boot;
293 memset(&boot, 0, sizeof(boot));
294 get_bootloader_message(&boot); // this may fail, leaving a zeroed structure
Doug Zongkerc87bab12013-11-25 13:53:25 -0800295 stage = strndup(boot.stage, sizeof(boot.stage));
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800296
297 if (boot.command[0] != 0 && boot.command[0] != 255) {
Mark Salyzynf3bb31c2014-03-14 09:39:48 -0700298 LOGI("Boot command: %.*s\n", (int)sizeof(boot.command), boot.command);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800299 }
300
301 if (boot.status[0] != 0 && boot.status[0] != 255) {
Mark Salyzynf3bb31c2014-03-14 09:39:48 -0700302 LOGI("Boot status: %.*s\n", (int)sizeof(boot.status), boot.status);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800303 }
304
305 // --- if arguments weren't supplied, look in the bootloader control block
306 if (*argc <= 1) {
307 boot.recovery[sizeof(boot.recovery) - 1] = '\0'; // Ensure termination
308 const char *arg = strtok(boot.recovery, "\n");
309 if (arg != NULL && !strcmp(arg, "recovery")) {
310 *argv = (char **) malloc(sizeof(char *) * MAX_ARGS);
311 (*argv)[0] = strdup(arg);
312 for (*argc = 1; *argc < MAX_ARGS; ++*argc) {
313 if ((arg = strtok(NULL, "\n")) == NULL) break;
314 (*argv)[*argc] = strdup(arg);
315 }
316 LOGI("Got arguments from boot message\n");
317 } else if (boot.recovery[0] != 0 && boot.recovery[0] != 255) {
318 LOGE("Bad boot message\n\"%.20s\"\n", boot.recovery);
319 }
320 }
321
Tao Bao26112e52016-02-25 12:29:40 -0800322 // --- if that doesn't work, try the command file (if we have /cache).
323 if (*argc <= 1 && has_cache) {
Doug Zongkerd4208f92010-09-20 12:16:13 -0700324 FILE *fp = fopen_path(COMMAND_FILE, "r");
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800325 if (fp != NULL) {
Jin Feng93ffa752013-06-04 17:46:24 +0800326 char *token;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800327 char *argv0 = (*argv)[0];
328 *argv = (char **) malloc(sizeof(char *) * MAX_ARGS);
329 (*argv)[0] = argv0; // use the same program name
330
331 char buf[MAX_ARG_LENGTH];
332 for (*argc = 1; *argc < MAX_ARGS; ++*argc) {
333 if (!fgets(buf, sizeof(buf), fp)) break;
Jin Feng93ffa752013-06-04 17:46:24 +0800334 token = strtok(buf, "\r\n");
335 if (token != NULL) {
336 (*argv)[*argc] = strdup(token); // Strip newline.
337 } else {
338 --*argc;
339 }
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800340 }
341
342 check_and_fclose(fp, COMMAND_FILE);
343 LOGI("Got arguments from %s\n", COMMAND_FILE);
344 }
345 }
346
347 // --> write the arguments we have back into the bootloader control block
348 // always boot into recovery after this (until finish_recovery() is called)
349 strlcpy(boot.command, "boot-recovery", sizeof(boot.command));
350 strlcpy(boot.recovery, "recovery\n", sizeof(boot.recovery));
351 int i;
352 for (i = 1; i < *argc; ++i) {
353 strlcat(boot.recovery, (*argv)[i], sizeof(boot.recovery));
354 strlcat(boot.recovery, "\n", sizeof(boot.recovery));
355 }
356 set_bootloader_message(&boot);
357}
358
Doug Zongker34c98df2009-08-18 12:05:45 -0700359static void
Oscar Montemayor05231562009-11-30 08:40:57 -0800360set_sdcard_update_bootloader_message() {
Doug Zongker34c98df2009-08-18 12:05:45 -0700361 struct bootloader_message boot;
362 memset(&boot, 0, sizeof(boot));
363 strlcpy(boot.command, "boot-recovery", sizeof(boot.command));
364 strlcpy(boot.recovery, "recovery\n", sizeof(boot.recovery));
365 set_bootloader_message(&boot);
366}
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800367
Tao Baobef39712015-05-04 18:50:27 -0700368// Read from kernel log into buffer and write out to file.
369static void save_kernel_log(const char* destination) {
370 int klog_buf_len = klogctl(KLOG_SIZE_BUFFER, 0, 0);
Patrick Tjincd055ee2014-12-09 11:26:40 -0800371 if (klog_buf_len <= 0) {
Tao Baobef39712015-05-04 18:50:27 -0700372 LOGE("Error getting klog size: %s\n", strerror(errno));
Patrick Tjincd055ee2014-12-09 11:26:40 -0800373 return;
374 }
375
Tao Baobef39712015-05-04 18:50:27 -0700376 std::string buffer(klog_buf_len, 0);
377 int n = klogctl(KLOG_READ_ALL, &buffer[0], klog_buf_len);
378 if (n == -1) {
379 LOGE("Error in reading klog: %s\n", strerror(errno));
Patrick Tjincd055ee2014-12-09 11:26:40 -0800380 return;
381 }
Tao Baobef39712015-05-04 18:50:27 -0700382 buffer.resize(n);
383 android::base::WriteStringToFile(buffer, destination);
Patrick Tjincd055ee2014-12-09 11:26:40 -0800384}
385
Mark Salyzyna4f701a2016-03-09 14:58:16 -0800386// write content to the current pmsg session.
387static ssize_t __pmsg_write(const char *filename, const char *buf, size_t len) {
388 return __android_log_pmsg_file_write(LOG_ID_SYSTEM, ANDROID_LOG_INFO,
389 filename, buf, len);
390}
391
392static void copy_log_file_to_pmsg(const char* source, const char* destination) {
393 std::string content;
394 android::base::ReadFileToString(source, &content);
395 __pmsg_write(destination, content.c_str(), content.length());
396}
397
Tao Baof0124322015-04-11 02:04:11 +0000398// How much of the temp log we have copied to the copy in cache.
Chih-Hung Hsieh54a27472016-04-18 11:30:55 -0700399static off_t tmplog_offset = 0;
Tao Baof0124322015-04-11 02:04:11 +0000400
Tao Baobef39712015-05-04 18:50:27 -0700401static void copy_log_file(const char* source, const char* destination, bool append) {
402 FILE* dest_fp = fopen_path(destination, append ? "a" : "w");
403 if (dest_fp == nullptr) {
Doug Zongker2c3539e2010-09-29 13:21:30 -0700404 LOGE("Can't open %s\n", destination);
405 } else {
Tao Baobef39712015-05-04 18:50:27 -0700406 FILE* source_fp = fopen(source, "r");
407 if (source_fp != nullptr) {
Tao Baof0124322015-04-11 02:04:11 +0000408 if (append) {
Chih-Hung Hsieh54a27472016-04-18 11:30:55 -0700409 fseeko(source_fp, tmplog_offset, SEEK_SET); // Since last write
Doug Zongker2c3539e2010-09-29 13:21:30 -0700410 }
411 char buf[4096];
Tao Baobef39712015-05-04 18:50:27 -0700412 size_t bytes;
413 while ((bytes = fread(buf, 1, sizeof(buf), source_fp)) != 0) {
414 fwrite(buf, 1, bytes, dest_fp);
Doug Zongker2c3539e2010-09-29 13:21:30 -0700415 }
Tao Baobef39712015-05-04 18:50:27 -0700416 if (append) {
Chih-Hung Hsieh54a27472016-04-18 11:30:55 -0700417 tmplog_offset = ftello(source_fp);
Tao Baobef39712015-05-04 18:50:27 -0700418 }
419 check_and_fclose(source_fp, source);
Doug Zongker2c3539e2010-09-29 13:21:30 -0700420 }
Tao Baobef39712015-05-04 18:50:27 -0700421 check_and_fclose(dest_fp, destination);
Doug Zongker2c3539e2010-09-29 13:21:30 -0700422 }
423}
424
Tao Baobef39712015-05-04 18:50:27 -0700425// Rename last_log -> last_log.1 -> last_log.2 -> ... -> last_log.$max.
426// Similarly rename last_kmsg -> last_kmsg.1 -> ... -> last_kmsg.$max.
427// Overwrite any existing last_log.$max and last_kmsg.$max.
428static void rotate_logs(int max) {
Tao Bao682c34b2015-04-07 17:16:35 -0700429 // Logs should only be rotated once.
430 static bool rotated = false;
431 if (rotated) {
432 return;
433 }
434 rotated = true;
435 ensure_path_mounted(LAST_LOG_FILE);
Tao Baobef39712015-05-04 18:50:27 -0700436 ensure_path_mounted(LAST_KMSG_FILE);
Tao Bao682c34b2015-04-07 17:16:35 -0700437
Tao Bao682c34b2015-04-07 17:16:35 -0700438 for (int i = max-1; i >= 0; --i) {
Tao Bao80e46e02015-06-03 10:49:29 -0700439 std::string old_log = android::base::StringPrintf("%s", LAST_LOG_FILE);
440 if (i > 0) {
441 old_log += "." + std::to_string(i);
442 }
Tao Baobef39712015-05-04 18:50:27 -0700443 std::string new_log = android::base::StringPrintf("%s.%d", LAST_LOG_FILE, i+1);
444 // Ignore errors if old_log doesn't exist.
445 rename(old_log.c_str(), new_log.c_str());
446
Tao Bao80e46e02015-06-03 10:49:29 -0700447 std::string old_kmsg = android::base::StringPrintf("%s", LAST_KMSG_FILE);
448 if (i > 0) {
449 old_kmsg += "." + std::to_string(i);
450 }
Tao Baobef39712015-05-04 18:50:27 -0700451 std::string new_kmsg = android::base::StringPrintf("%s.%d", LAST_KMSG_FILE, i+1);
452 rename(old_kmsg.c_str(), new_kmsg.c_str());
Doug Zongkerda1ebae2013-05-16 11:23:48 -0700453 }
454}
Doug Zongker2c3539e2010-09-29 13:21:30 -0700455
Tao Bao682c34b2015-04-07 17:16:35 -0700456static void copy_logs() {
457 // We only rotate and record the log of the current session if there are
458 // actual attempts to modify the flash, such as wipes, installs from BCB
459 // or menu selections. This is to avoid unnecessary rotation (and
460 // possible deletion) of log files, if it does not do anything loggable.
461 if (!modified_flash) {
462 return;
463 }
464
Mark Salyzyna4f701a2016-03-09 14:58:16 -0800465 // Always write to pmsg, this allows the OTA logs to be caught in logcat -L
466 copy_log_file_to_pmsg(TEMPORARY_LOG_FILE, LAST_LOG_FILE);
467 copy_log_file_to_pmsg(TEMPORARY_INSTALL_FILE, LAST_INSTALL_FILE);
468
469 // We can do nothing for now if there's no /cache partition.
470 if (!has_cache) {
471 return;
472 }
473
Tao Baobef39712015-05-04 18:50:27 -0700474 rotate_logs(KEEP_LOG_COUNT);
Tao Bao682c34b2015-04-07 17:16:35 -0700475
Doug Zongkerf24fd7e2013-07-02 11:43:25 -0700476 // Copy logs to cache so the system can find out what happened.
Tao Baof0124322015-04-11 02:04:11 +0000477 copy_log_file(TEMPORARY_LOG_FILE, LOG_FILE, true);
478 copy_log_file(TEMPORARY_LOG_FILE, LAST_LOG_FILE, false);
479 copy_log_file(TEMPORARY_INSTALL_FILE, LAST_INSTALL_FILE, false);
480 save_kernel_log(LAST_KMSG_FILE);
Doug Zongkerf24fd7e2013-07-02 11:43:25 -0700481 chmod(LOG_FILE, 0600);
482 chown(LOG_FILE, 1000, 1000); // system user
Tao Baof0124322015-04-11 02:04:11 +0000483 chmod(LAST_KMSG_FILE, 0600);
484 chown(LAST_KMSG_FILE, 1000, 1000); // system user
Doug Zongkerf24fd7e2013-07-02 11:43:25 -0700485 chmod(LAST_LOG_FILE, 0640);
486 chmod(LAST_INSTALL_FILE, 0644);
487 sync();
488}
489
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800490// clear the recovery command and prepare to boot a (hopefully working) system,
Tianjie Xuc14d95d2016-03-24 11:50:34 -0700491// copy our log file to cache as well (for the system to read). This function is
492// idempotent: call it as many times as you like.
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800493static void
Tianjie Xuc14d95d2016-03-24 11:50:34 -0700494finish_recovery() {
Doug Zongker4f33e552012-08-23 13:16:12 -0700495 // Save the locale to cache, so if recovery is next started up
496 // without a --locale argument (eg, directly from the bootloader)
497 // it will use the last-known locale.
Mark Salyzyna4f701a2016-03-09 14:58:16 -0800498 if (locale != NULL) {
499 size_t len = strlen(locale);
500 __pmsg_write(LOCALE_FILE, locale, len);
501 if (has_cache) {
502 LOGI("Saving locale \"%s\"\n", locale);
503 FILE* fp = fopen_path(LOCALE_FILE, "w");
504 fwrite(locale, 1, len, fp);
505 fflush(fp);
506 fsync(fileno(fp));
507 check_and_fclose(fp, LOCALE_FILE);
508 }
Doug Zongker4f33e552012-08-23 13:16:12 -0700509 }
510
Doug Zongkerf24fd7e2013-07-02 11:43:25 -0700511 copy_logs();
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800512
Doug Zongkere5d5ac72012-04-12 11:01:22 -0700513 // Reset to normal system boot so recovery won't cycle indefinitely.
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800514 struct bootloader_message boot;
515 memset(&boot, 0, sizeof(boot));
516 set_bootloader_message(&boot);
517
518 // Remove the command file, so recovery won't repeat indefinitely.
Tao Bao26112e52016-02-25 12:29:40 -0800519 if (has_cache) {
520 if (ensure_path_mounted(COMMAND_FILE) != 0 || (unlink(COMMAND_FILE) && errno != ENOENT)) {
521 LOGW("Can't unlink %s\n", COMMAND_FILE);
522 }
523 ensure_path_unmounted(CACHE_ROOT);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800524 }
525
526 sync(); // For good measure.
527}
528
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700529typedef struct _saved_log_file {
530 char* name;
531 struct stat st;
532 unsigned char* data;
533 struct _saved_log_file* next;
534} saved_log_file;
535
Elliott Hughes945548e2015-06-05 17:59:56 -0700536static bool erase_volume(const char* volume) {
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700537 bool is_cache = (strcmp(volume, CACHE_ROOT) == 0);
Paul Lawrenced0db3372015-11-05 13:38:40 -0800538 bool is_data = (strcmp(volume, DATA_ROOT) == 0);
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700539
Doug Zongker02ec6b82012-08-22 17:26:40 -0700540 ui->SetBackground(RecoveryUI::ERASING);
Doug Zongker211aebc2011-10-28 15:13:10 -0700541 ui->SetProgressType(RecoveryUI::INDETERMINATE);
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700542
543 saved_log_file* head = NULL;
544
545 if (is_cache) {
Tao Baobef39712015-05-04 18:50:27 -0700546 // If we're reformatting /cache, we load any past logs
547 // (i.e. "/cache/recovery/last_*") and the current log
548 // ("/cache/recovery/log") into memory, so we can restore them after
549 // the reformat.
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700550
551 ensure_path_mounted(volume);
552
553 DIR* d;
554 struct dirent* de;
555 d = opendir(CACHE_LOG_DIR);
556 if (d) {
557 char path[PATH_MAX];
558 strcpy(path, CACHE_LOG_DIR);
559 strcat(path, "/");
560 int path_len = strlen(path);
561 while ((de = readdir(d)) != NULL) {
Tao Baobef39712015-05-04 18:50:27 -0700562 if (strncmp(de->d_name, "last_", 5) == 0 || strcmp(de->d_name, "log") == 0) {
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700563 saved_log_file* p = (saved_log_file*) malloc(sizeof(saved_log_file));
564 strcpy(path+path_len, de->d_name);
565 p->name = strdup(path);
566 if (stat(path, &(p->st)) == 0) {
567 // truncate files to 512kb
568 if (p->st.st_size > (1 << 19)) {
569 p->st.st_size = 1 << 19;
570 }
571 p->data = (unsigned char*) malloc(p->st.st_size);
572 FILE* f = fopen(path, "rb");
573 fread(p->data, 1, p->st.st_size, f);
574 fclose(f);
575 p->next = head;
576 head = p;
577 } else {
578 free(p);
579 }
580 }
581 }
582 closedir(d);
583 } else {
584 if (errno != ENOENT) {
585 printf("opendir failed: %s\n", strerror(errno));
586 }
587 }
588 }
589
Doug Zongker211aebc2011-10-28 15:13:10 -0700590 ui->Print("Formatting %s...\n", volume);
Doug Zongker2c3539e2010-09-29 13:21:30 -0700591
Doug Zongkerd0181b82011-10-19 10:51:12 -0700592 ensure_path_unmounted(volume);
Paul Lawrenced0db3372015-11-05 13:38:40 -0800593
594 int result;
595
596 if (is_data && reason && strcmp(reason, "convert_fbe") == 0) {
597 // Create convert_fbe breadcrumb file to signal to init
598 // to convert to file based encryption, not full disk encryption
Paul Lawrence661f8a62016-02-25 12:42:19 -0800599 if (mkdir(CONVERT_FBE_DIR, 0700) != 0) {
600 ui->Print("Failed to make convert_fbe dir %s\n", strerror(errno));
601 return true;
602 }
Paul Lawrenced0db3372015-11-05 13:38:40 -0800603 FILE* f = fopen(CONVERT_FBE_FILE, "wb");
604 if (!f) {
Paul Lawrence661f8a62016-02-25 12:42:19 -0800605 ui->Print("Failed to convert to file encryption %s\n", strerror(errno));
Paul Lawrenced0db3372015-11-05 13:38:40 -0800606 return true;
607 }
608 fclose(f);
609 result = format_volume(volume, CONVERT_FBE_DIR);
610 remove(CONVERT_FBE_FILE);
611 rmdir(CONVERT_FBE_DIR);
612 } else {
613 result = format_volume(volume);
614 }
Doug Zongkerd0181b82011-10-19 10:51:12 -0700615
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700616 if (is_cache) {
617 while (head) {
618 FILE* f = fopen_path(head->name, "wb");
619 if (f) {
620 fwrite(head->data, 1, head->st.st_size, f);
621 fclose(f);
622 chmod(head->name, head->st.st_mode);
623 chown(head->name, head->st.st_uid, head->st.st_gid);
624 }
625 free(head->name);
626 free(head->data);
627 saved_log_file* temp = head->next;
628 free(head);
629 head = temp;
630 }
631
Tao Baof0124322015-04-11 02:04:11 +0000632 // Any part of the log we'd copied to cache is now gone.
633 // Reset the pointer so we copy from the beginning of the temp
634 // log.
635 tmplog_offset = 0;
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700636 copy_logs();
Doug Zongker2c3539e2010-09-29 13:21:30 -0700637 }
638
Elliott Hughes945548e2015-06-05 17:59:56 -0700639 return (result == 0);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800640}
641
Doug Zongkerf93d8162009-09-22 15:16:02 -0700642static int
Doug Zongker28ce47c2011-10-28 10:33:05 -0700643get_menu_selection(const char* const * headers, const char* const * items,
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700644 int menu_only, int initial_selection, Device* device) {
Doug Zongkerf93d8162009-09-22 15:16:02 -0700645 // throw away keys pressed previously, so user doesn't
646 // accidentally trigger menu items.
Doug Zongker211aebc2011-10-28 15:13:10 -0700647 ui->FlushKeys();
Doug Zongkerf93d8162009-09-22 15:16:02 -0700648
Doug Zongker211aebc2011-10-28 15:13:10 -0700649 ui->StartMenu(headers, items, initial_selection);
Doug Zongker8674a722010-09-15 11:08:23 -0700650 int selected = initial_selection;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800651 int chosen_item = -1;
652
Doug Zongkerf93d8162009-09-22 15:16:02 -0700653 while (chosen_item < 0) {
Doug Zongker211aebc2011-10-28 15:13:10 -0700654 int key = ui->WaitKey();
655 int visible = ui->IsTextVisible();
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800656
Doug Zongker5cae4452011-01-25 13:15:30 -0800657 if (key == -1) { // ui_wait_key() timed out
Doug Zongker211aebc2011-10-28 15:13:10 -0700658 if (ui->WasTextEverVisible()) {
Doug Zongker5cae4452011-01-25 13:15:30 -0800659 continue;
660 } else {
661 LOGI("timed out waiting for key input; rebooting.\n");
Doug Zongker211aebc2011-10-28 15:13:10 -0700662 ui->EndMenu();
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700663 return 0; // XXX fixme
Doug Zongker5cae4452011-01-25 13:15:30 -0800664 }
665 }
666
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700667 int action = device->HandleMenuKey(key, visible);
Doug Zongkerddd6a282009-06-09 12:22:33 -0700668
669 if (action < 0) {
670 switch (action) {
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700671 case Device::kHighlightUp:
Elliott Hughes642aaa72015-04-10 12:47:46 -0700672 selected = ui->SelectMenu(--selected);
Doug Zongkerddd6a282009-06-09 12:22:33 -0700673 break;
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700674 case Device::kHighlightDown:
Elliott Hughes642aaa72015-04-10 12:47:46 -0700675 selected = ui->SelectMenu(++selected);
Doug Zongkerddd6a282009-06-09 12:22:33 -0700676 break;
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700677 case Device::kInvokeItem:
Doug Zongkerddd6a282009-06-09 12:22:33 -0700678 chosen_item = selected;
679 break;
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700680 case Device::kNoAction:
Doug Zongkerddd6a282009-06-09 12:22:33 -0700681 break;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800682 }
Doug Zongkerf93d8162009-09-22 15:16:02 -0700683 } else if (!menu_only) {
Doug Zongkerddd6a282009-06-09 12:22:33 -0700684 chosen_item = action;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800685 }
Doug Zongkerf93d8162009-09-22 15:16:02 -0700686 }
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800687
Doug Zongker211aebc2011-10-28 15:13:10 -0700688 ui->EndMenu();
Doug Zongkerf93d8162009-09-22 15:16:02 -0700689 return chosen_item;
690}
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800691
Doug Zongker8674a722010-09-15 11:08:23 -0700692static int compare_string(const void* a, const void* b) {
693 return strcmp(*(const char**)a, *(const char**)b);
694}
695
Doug Zongker93950222014-07-08 14:10:23 -0700696// Returns a malloc'd path, or NULL.
Elliott Hughes30694c92015-03-25 15:16:51 -0700697static char* browse_directory(const char* path, Device* device) {
Michael Ward9d2629c2011-06-23 22:14:24 -0700698 ensure_path_mounted(path);
Doug Zongkerc18eeb82010-09-21 16:49:26 -0700699
Elliott Hughes30694c92015-03-25 15:16:51 -0700700 DIR* d = opendir(path);
Doug Zongker8674a722010-09-15 11:08:23 -0700701 if (d == NULL) {
702 LOGE("error opening %s: %s\n", path, strerror(errno));
Doug Zongker93950222014-07-08 14:10:23 -0700703 return NULL;
Doug Zongker8674a722010-09-15 11:08:23 -0700704 }
705
Doug Zongker8674a722010-09-15 11:08:23 -0700706 int d_size = 0;
707 int d_alloc = 10;
Doug Zongker28ce47c2011-10-28 10:33:05 -0700708 char** dirs = (char**)malloc(d_alloc * sizeof(char*));
Doug Zongker8674a722010-09-15 11:08:23 -0700709 int z_size = 1;
710 int z_alloc = 10;
Doug Zongker28ce47c2011-10-28 10:33:05 -0700711 char** zips = (char**)malloc(z_alloc * sizeof(char*));
Doug Zongker8674a722010-09-15 11:08:23 -0700712 zips[0] = strdup("../");
713
Elliott Hughes30694c92015-03-25 15:16:51 -0700714 struct dirent* de;
Doug Zongker8674a722010-09-15 11:08:23 -0700715 while ((de = readdir(d)) != NULL) {
716 int name_len = strlen(de->d_name);
717
718 if (de->d_type == DT_DIR) {
719 // skip "." and ".." entries
720 if (name_len == 1 && de->d_name[0] == '.') continue;
721 if (name_len == 2 && de->d_name[0] == '.' &&
722 de->d_name[1] == '.') continue;
723
724 if (d_size >= d_alloc) {
725 d_alloc *= 2;
Doug Zongker28ce47c2011-10-28 10:33:05 -0700726 dirs = (char**)realloc(dirs, d_alloc * sizeof(char*));
Doug Zongker8674a722010-09-15 11:08:23 -0700727 }
Doug Zongker28ce47c2011-10-28 10:33:05 -0700728 dirs[d_size] = (char*)malloc(name_len + 2);
Doug Zongker8674a722010-09-15 11:08:23 -0700729 strcpy(dirs[d_size], de->d_name);
730 dirs[d_size][name_len] = '/';
731 dirs[d_size][name_len+1] = '\0';
732 ++d_size;
733 } else if (de->d_type == DT_REG &&
734 name_len >= 4 &&
735 strncasecmp(de->d_name + (name_len-4), ".zip", 4) == 0) {
736 if (z_size >= z_alloc) {
737 z_alloc *= 2;
Doug Zongker28ce47c2011-10-28 10:33:05 -0700738 zips = (char**)realloc(zips, z_alloc * sizeof(char*));
Doug Zongker8674a722010-09-15 11:08:23 -0700739 }
740 zips[z_size++] = strdup(de->d_name);
741 }
742 }
743 closedir(d);
744
745 qsort(dirs, d_size, sizeof(char*), compare_string);
746 qsort(zips, z_size, sizeof(char*), compare_string);
747
748 // append dirs to the zips list
749 if (d_size + z_size + 1 > z_alloc) {
750 z_alloc = d_size + z_size + 1;
Doug Zongker28ce47c2011-10-28 10:33:05 -0700751 zips = (char**)realloc(zips, z_alloc * sizeof(char*));
Doug Zongker8674a722010-09-15 11:08:23 -0700752 }
753 memcpy(zips + z_size, dirs, d_size * sizeof(char*));
754 free(dirs);
755 z_size += d_size;
756 zips[z_size] = NULL;
757
Elliott Hughes8fd86d72015-04-13 14:36:02 -0700758 const char* headers[] = { "Choose a package to install:", path, NULL };
Elliott Hughes30694c92015-03-25 15:16:51 -0700759
Doug Zongker93950222014-07-08 14:10:23 -0700760 char* result;
Doug Zongker8674a722010-09-15 11:08:23 -0700761 int chosen_item = 0;
Doug Zongker93950222014-07-08 14:10:23 -0700762 while (true) {
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700763 chosen_item = get_menu_selection(headers, zips, 1, chosen_item, device);
Doug Zongker8674a722010-09-15 11:08:23 -0700764
765 char* item = zips[chosen_item];
766 int item_len = strlen(item);
767 if (chosen_item == 0) { // item 0 is always "../"
Michael Ward9d2629c2011-06-23 22:14:24 -0700768 // go up but continue browsing (if the caller is update_directory)
Doug Zongker93950222014-07-08 14:10:23 -0700769 result = NULL;
Doug Zongker8674a722010-09-15 11:08:23 -0700770 break;
771 }
Doug Zongker93950222014-07-08 14:10:23 -0700772
773 char new_path[PATH_MAX];
774 strlcpy(new_path, path, PATH_MAX);
775 strlcat(new_path, "/", PATH_MAX);
776 strlcat(new_path, item, PATH_MAX);
777
778 if (item[item_len-1] == '/') {
779 // recurse down into a subdirectory
780 new_path[strlen(new_path)-1] = '\0'; // truncate the trailing '/'
781 result = browse_directory(new_path, device);
782 if (result) break;
783 } else {
784 // selected a zip file: return the malloc'd path to the caller.
785 result = strdup(new_path);
786 break;
787 }
788 }
Doug Zongker8674a722010-09-15 11:08:23 -0700789
Elliott Hughes30694c92015-03-25 15:16:51 -0700790 for (int i = 0; i < z_size; ++i) free(zips[i]);
Doug Zongker8674a722010-09-15 11:08:23 -0700791 free(zips);
Doug Zongker8674a722010-09-15 11:08:23 -0700792
793 return result;
794}
795
Elliott Hughes30694c92015-03-25 15:16:51 -0700796static bool yes_no(Device* device, const char* question1, const char* question2) {
Elliott Hughes8fd86d72015-04-13 14:36:02 -0700797 const char* headers[] = { question1, question2, NULL };
Elliott Hughes30694c92015-03-25 15:16:51 -0700798 const char* items[] = { " No", " Yes", NULL };
Doug Zongkerddd6a282009-06-09 12:22:33 -0700799
Elliott Hughes30694c92015-03-25 15:16:51 -0700800 int chosen_item = get_menu_selection(headers, items, 1, 0, device);
801 return (chosen_item == 1);
802}
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800803
Tao Baoe39a9bc2015-03-31 12:19:05 -0700804// Return true on success.
805static bool wipe_data(int should_confirm, Device* device) {
806 if (should_confirm && !yes_no(device, "Wipe all user data?", " THIS CAN NOT BE UNDONE!")) {
807 return false;
Doug Zongkerf93d8162009-09-22 15:16:02 -0700808 }
Doug Zongker1066d2c2009-04-01 13:57:40 -0700809
Tao Bao682c34b2015-04-07 17:16:35 -0700810 modified_flash = true;
811
Doug Zongker211aebc2011-10-28 15:13:10 -0700812 ui->Print("\n-- Wiping data...\n");
Elliott Hughes945548e2015-06-05 17:59:56 -0700813 bool success =
814 device->PreWipeData() &&
815 erase_volume("/data") &&
Tao Bao26112e52016-02-25 12:29:40 -0800816 (has_cache ? erase_volume("/cache") : true) &&
Elliott Hughes945548e2015-06-05 17:59:56 -0700817 device->PostWipeData();
818 ui->Print("Data wipe %s.\n", success ? "complete" : "failed");
819 return success;
Doug Zongkerf93d8162009-09-22 15:16:02 -0700820}
821
Tao Baoe39a9bc2015-03-31 12:19:05 -0700822// Return true on success.
823static bool wipe_cache(bool should_confirm, Device* device) {
Tao Bao26112e52016-02-25 12:29:40 -0800824 if (!has_cache) {
825 ui->Print("No /cache partition found.\n");
826 return false;
827 }
828
Elliott Hughes30694c92015-03-25 15:16:51 -0700829 if (should_confirm && !yes_no(device, "Wipe cache?", " THIS CAN NOT BE UNDONE!")) {
Tao Baoe39a9bc2015-03-31 12:19:05 -0700830 return false;
Elliott Hughes30694c92015-03-25 15:16:51 -0700831 }
832
Tao Bao682c34b2015-04-07 17:16:35 -0700833 modified_flash = true;
834
Elliott Hughes30694c92015-03-25 15:16:51 -0700835 ui->Print("\n-- Wiping cache...\n");
Elliott Hughes945548e2015-06-05 17:59:56 -0700836 bool success = erase_volume("/cache");
837 ui->Print("Cache wipe %s.\n", success ? "complete" : "failed");
838 return success;
Elliott Hughes30694c92015-03-25 15:16:51 -0700839}
840
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700841static void choose_recovery_file(Device* device) {
Tao Bao26112e52016-02-25 12:29:40 -0800842 if (!has_cache) {
843 ui->Print("No /cache partition found.\n");
844 return;
845 }
846
Elliott Hughesc0491632015-05-06 12:40:05 -0700847 // "Back" + KEEP_LOG_COUNT * 2 + terminating nullptr entry
848 char* entries[1 + KEEP_LOG_COUNT * 2 + 1];
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700849 memset(entries, 0, sizeof(entries));
850
Tao Baobef39712015-05-04 18:50:27 -0700851 unsigned int n = 0;
Patrick Tjincd055ee2014-12-09 11:26:40 -0800852
Patrick Tjincd055ee2014-12-09 11:26:40 -0800853 // Add LAST_LOG_FILE + LAST_LOG_FILE.x
Tao Baobef39712015-05-04 18:50:27 -0700854 // Add LAST_KMSG_FILE + LAST_KMSG_FILE.x
855 for (int i = 0; i < KEEP_LOG_COUNT; i++) {
856 char* log_file;
Tao Bao80e46e02015-06-03 10:49:29 -0700857 int ret;
858 ret = (i == 0) ? asprintf(&log_file, "%s", LAST_LOG_FILE) :
859 asprintf(&log_file, "%s.%d", LAST_LOG_FILE, i);
860 if (ret == -1) {
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700861 // memory allocation failure - return early. Should never happen.
862 return;
863 }
Tao Baobef39712015-05-04 18:50:27 -0700864 if ((ensure_path_mounted(log_file) != 0) || (access(log_file, R_OK) == -1)) {
865 free(log_file);
866 } else {
867 entries[n++] = log_file;
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700868 }
Tao Baobef39712015-05-04 18:50:27 -0700869
870 char* kmsg_file;
Tao Bao80e46e02015-06-03 10:49:29 -0700871 ret = (i == 0) ? asprintf(&kmsg_file, "%s", LAST_KMSG_FILE) :
872 asprintf(&kmsg_file, "%s.%d", LAST_KMSG_FILE, i);
873 if (ret == -1) {
Tao Baobef39712015-05-04 18:50:27 -0700874 // memory allocation failure - return early. Should never happen.
875 return;
876 }
877 if ((ensure_path_mounted(kmsg_file) != 0) || (access(kmsg_file, R_OK) == -1)) {
878 free(kmsg_file);
879 } else {
880 entries[n++] = kmsg_file;
881 }
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700882 }
883
Elliott Hughesc0491632015-05-06 12:40:05 -0700884 entries[n++] = strdup("Back");
885
Tao Baobef39712015-05-04 18:50:27 -0700886 const char* headers[] = { "Select file to view", nullptr };
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700887
Elliott Hughes8de52072015-04-08 20:06:50 -0700888 while (true) {
Elliott Hughes30694c92015-03-25 15:16:51 -0700889 int chosen_item = get_menu_selection(headers, entries, 1, 0, device);
Elliott Hughesc0491632015-05-06 12:40:05 -0700890 if (strcmp(entries[chosen_item], "Back") == 0) break;
Elliott Hughes8de52072015-04-08 20:06:50 -0700891
Elliott Hughes8de52072015-04-08 20:06:50 -0700892 ui->ShowFile(entries[chosen_item]);
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700893 }
894
Tao Baobef39712015-05-04 18:50:27 -0700895 for (size_t i = 0; i < (sizeof(entries) / sizeof(*entries)); i++) {
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700896 free(entries[i]);
897 }
898}
899
Elliott Hughes498cda62016-04-14 16:49:04 -0700900static void run_graphics_test(Device* device) {
901 // Switch to graphics screen.
902 ui->ShowText(false);
903
904 ui->SetProgressType(RecoveryUI::INDETERMINATE);
905 ui->SetBackground(RecoveryUI::INSTALLING_UPDATE);
906 sleep(1);
907
908 ui->SetBackground(RecoveryUI::ERROR);
909 sleep(1);
910
911 ui->SetBackground(RecoveryUI::NO_COMMAND);
912 sleep(1);
913
914 ui->SetBackground(RecoveryUI::ERASING);
915 sleep(1);
916
917 ui->SetBackground(RecoveryUI::INSTALLING_UPDATE);
918
919 ui->SetProgressType(RecoveryUI::DETERMINATE);
920 ui->ShowProgress(1.0, 10.0);
921 float fraction = 0.0;
922 for (size_t i = 0; i < 100; ++i) {
923 fraction += .01;
924 ui->SetProgress(fraction);
925 usleep(100000);
926 }
927
928 ui->ShowText(true);
929}
930
Tao Baocdcf28f2016-01-13 15:05:20 -0800931// How long (in seconds) we wait for the fuse-provided package file to
932// appear, before timing out.
933#define SDCARD_INSTALL_TIMEOUT 10
934
Tao Bao145d8612015-03-25 15:51:15 -0700935static int apply_from_sdcard(Device* device, bool* wipe_cache) {
Tao Bao682c34b2015-04-07 17:16:35 -0700936 modified_flash = true;
937
Christian Poetzsch4ec58a42015-02-19 10:42:39 +0000938 if (ensure_path_mounted(SDCARD_ROOT) != 0) {
939 ui->Print("\n-- Couldn't mount %s.\n", SDCARD_ROOT);
940 return INSTALL_ERROR;
941 }
942
943 char* path = browse_directory(SDCARD_ROOT, device);
944 if (path == NULL) {
Elliott Hughes018ed312015-04-08 16:51:36 -0700945 ui->Print("\n-- No package file selected.\n");
caozhiyuanb4effb92015-06-10 16:46:38 +0800946 ensure_path_unmounted(SDCARD_ROOT);
Christian Poetzsch4ec58a42015-02-19 10:42:39 +0000947 return INSTALL_ERROR;
948 }
949
950 ui->Print("\n-- Install %s ...\n", path);
951 set_sdcard_update_bootloader_message();
Christian Poetzsch4ec58a42015-02-19 10:42:39 +0000952
Tao Baocdcf28f2016-01-13 15:05:20 -0800953 // We used to use fuse in a thread as opposed to a process. Since accessing
954 // through fuse involves going from kernel to userspace to kernel, it leads
955 // to deadlock when a page fault occurs. (Bug: 26313124)
956 pid_t child;
957 if ((child = fork()) == 0) {
958 bool status = start_sdcard_fuse(path);
959
960 _exit(status ? EXIT_SUCCESS : EXIT_FAILURE);
961 }
962
963 // FUSE_SIDELOAD_HOST_PATHNAME will start to exist once the fuse in child
964 // process is ready.
965 int result = INSTALL_ERROR;
966 int status;
967 bool waited = false;
968 for (int i = 0; i < SDCARD_INSTALL_TIMEOUT; ++i) {
969 if (waitpid(child, &status, WNOHANG) == -1) {
970 result = INSTALL_ERROR;
971 waited = true;
972 break;
973 }
974
975 struct stat sb;
976 if (stat(FUSE_SIDELOAD_HOST_PATHNAME, &sb) == -1) {
977 if (errno == ENOENT && i < SDCARD_INSTALL_TIMEOUT-1) {
978 sleep(1);
979 continue;
980 } else {
981 LOGE("Timed out waiting for the fuse-provided package.\n");
982 result = INSTALL_ERROR;
983 kill(child, SIGKILL);
984 break;
985 }
986 }
987
988 result = install_package(FUSE_SIDELOAD_HOST_PATHNAME, wipe_cache,
Tianjie Xu16255832016-04-30 11:49:59 -0700989 TEMPORARY_INSTALL_FILE, false, 0/*retry_count*/);
Tao Baocdcf28f2016-01-13 15:05:20 -0800990 break;
991 }
Christian Poetzsch4ec58a42015-02-19 10:42:39 +0000992
Tao Baocdcf28f2016-01-13 15:05:20 -0800993 if (!waited) {
994 // Calling stat() on this magic filename signals the fuse
995 // filesystem to shut down.
996 struct stat sb;
997 stat(FUSE_SIDELOAD_HOST_EXIT_PATHNAME, &sb);
998
999 waitpid(child, &status, 0);
1000 }
1001
1002 if (!WIFEXITED(status) || WEXITSTATUS(status) != 0) {
1003 LOGE("Error exit from the fuse process: %d\n", WEXITSTATUS(status));
1004 }
1005
Christian Poetzsch4ec58a42015-02-19 10:42:39 +00001006 ensure_path_unmounted(SDCARD_ROOT);
Tao Baocdcf28f2016-01-13 15:05:20 -08001007 return result;
Christian Poetzsch4ec58a42015-02-19 10:42:39 +00001008}
1009
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001010// Return REBOOT, SHUTDOWN, or REBOOT_BOOTLOADER. Returning NO_ACTION
1011// means to take the default, which is to reboot or shutdown depending
1012// on if the --shutdown_after flag was passed to recovery.
1013static Device::BuiltinAction
Doug Zongker6c8553d2012-09-24 10:40:47 -07001014prompt_and_wait(Device* device, int status) {
Doug Zongkerf93d8162009-09-22 15:16:02 -07001015 for (;;) {
Tianjie Xuc14d95d2016-03-24 11:50:34 -07001016 finish_recovery();
Doug Zongker6c8553d2012-09-24 10:40:47 -07001017 switch (status) {
1018 case INSTALL_SUCCESS:
1019 case INSTALL_NONE:
1020 ui->SetBackground(RecoveryUI::NO_COMMAND);
1021 break;
1022
1023 case INSTALL_ERROR:
1024 case INSTALL_CORRUPT:
1025 ui->SetBackground(RecoveryUI::ERROR);
1026 break;
1027 }
Doug Zongker211aebc2011-10-28 15:13:10 -07001028 ui->SetProgressType(RecoveryUI::EMPTY);
Doug Zongkerf93d8162009-09-22 15:16:02 -07001029
Elliott Hughes8fd86d72015-04-13 14:36:02 -07001030 int chosen_item = get_menu_selection(nullptr, device->GetMenuItems(), 0, 0, device);
Doug Zongkerf93d8162009-09-22 15:16:02 -07001031
1032 // device-specific code may take some action here. It may
1033 // return one of the core actions handled in the switch
1034 // statement below.
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001035 Device::BuiltinAction chosen_action = device->InvokeMenuItem(chosen_item);
Doug Zongkerf93d8162009-09-22 15:16:02 -07001036
Elliott Hughes30694c92015-03-25 15:16:51 -07001037 bool should_wipe_cache = false;
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001038 switch (chosen_action) {
1039 case Device::NO_ACTION:
1040 break;
1041
Doug Zongkerdaefc1d2011-10-31 09:34:15 -07001042 case Device::REBOOT:
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001043 case Device::SHUTDOWN:
1044 case Device::REBOOT_BOOTLOADER:
1045 return chosen_action;
Doug Zongkerf93d8162009-09-22 15:16:02 -07001046
Doug Zongkerdaefc1d2011-10-31 09:34:15 -07001047 case Device::WIPE_DATA:
1048 wipe_data(ui->IsTextVisible(), device);
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001049 if (!ui->IsTextVisible()) return Device::NO_ACTION;
Doug Zongkerf93d8162009-09-22 15:16:02 -07001050 break;
1051
Doug Zongkerdaefc1d2011-10-31 09:34:15 -07001052 case Device::WIPE_CACHE:
Elliott Hughes30694c92015-03-25 15:16:51 -07001053 wipe_cache(ui->IsTextVisible(), device);
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001054 if (!ui->IsTextVisible()) return Device::NO_ACTION;
Doug Zongkerf93d8162009-09-22 15:16:02 -07001055 break;
1056
Christian Poetzsch4ec58a42015-02-19 10:42:39 +00001057 case Device::APPLY_ADB_SIDELOAD:
Elliott Hughesec283402015-04-10 10:01:53 -07001058 case Device::APPLY_SDCARD:
Christian Poetzsch4ec58a42015-02-19 10:42:39 +00001059 {
1060 bool adb = (chosen_action == Device::APPLY_ADB_SIDELOAD);
1061 if (adb) {
Elliott Hughes30694c92015-03-25 15:16:51 -07001062 status = apply_from_adb(ui, &should_wipe_cache, TEMPORARY_INSTALL_FILE);
Doug Zongkerd0181b82011-10-19 10:51:12 -07001063 } else {
Elliott Hughes30694c92015-03-25 15:16:51 -07001064 status = apply_from_sdcard(device, &should_wipe_cache);
Doug Zongkerd0181b82011-10-19 10:51:12 -07001065 }
Doug Zongker945fc682014-07-10 10:50:39 -07001066
Elliott Hughes30694c92015-03-25 15:16:51 -07001067 if (status == INSTALL_SUCCESS && should_wipe_cache) {
Tao Baoe39a9bc2015-03-31 12:19:05 -07001068 if (!wipe_cache(false, device)) {
1069 status = INSTALL_ERROR;
1070 }
Christian Poetzsch4ec58a42015-02-19 10:42:39 +00001071 }
1072
Tao Baoc679f932015-03-30 09:43:49 -07001073 if (status != INSTALL_SUCCESS) {
1074 ui->SetBackground(RecoveryUI::ERROR);
1075 ui->Print("Installation aborted.\n");
1076 copy_logs();
1077 } else if (!ui->IsTextVisible()) {
1078 return Device::NO_ACTION; // reboot if logs aren't visible
1079 } else {
1080 ui->Print("\nInstall from %s complete.\n", adb ? "ADB" : "SD card");
Doug Zongker8674a722010-09-15 11:08:23 -07001081 }
Doug Zongkerf93d8162009-09-22 15:16:02 -07001082 }
1083 break;
Doug Zongkerdaefc1d2011-10-31 09:34:15 -07001084
Elliott Hughesec283402015-04-10 10:01:53 -07001085 case Device::VIEW_RECOVERY_LOGS:
1086 choose_recovery_file(device);
Michael Ward9d2629c2011-06-23 22:14:24 -07001087 break;
Doug Zongker9270a202012-01-09 15:16:13 -08001088
Elliott Hughes498cda62016-04-14 16:49:04 -07001089 case Device::RUN_GRAPHICS_TEST:
1090 run_graphics_test(device);
1091 break;
1092
Elliott Hughesec283402015-04-10 10:01:53 -07001093 case Device::MOUNT_SYSTEM:
Tao Baoabb8f772015-07-30 14:43:27 -07001094 char system_root_image[PROPERTY_VALUE_MAX];
1095 property_get("ro.build.system_root_image", system_root_image, "");
1096
1097 // For a system image built with the root directory (i.e.
1098 // system_root_image == "true"), we mount it to /system_root, and symlink /system
1099 // to /system_root/system to make adb shell work (the symlink is created through
1100 // the build system).
1101 // Bug: 22855115
1102 if (strcmp(system_root_image, "true") == 0) {
1103 if (ensure_path_mounted_at("/", "/system_root") != -1) {
1104 ui->Print("Mounted /system.\n");
1105 }
1106 } else {
1107 if (ensure_path_mounted("/system") != -1) {
1108 ui->Print("Mounted /system.\n");
1109 }
Elliott Hughesec283402015-04-10 10:01:53 -07001110 }
Tao Baoabb8f772015-07-30 14:43:27 -07001111
Nick Kralevicha9ad0322014-10-22 18:38:48 -07001112 break;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001113 }
1114 }
1115}
1116
1117static void
Oscar Montemayor05231562009-11-30 08:40:57 -08001118print_property(const char *key, const char *name, void *cookie) {
Doug Zongker56c51052010-07-01 09:18:44 -07001119 printf("%s=%s\n", key, name);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001120}
1121
Doug Zongker02ec6b82012-08-22 17:26:40 -07001122static void
1123load_locale_from_cache() {
1124 FILE* fp = fopen_path(LOCALE_FILE, "r");
1125 char buffer[80];
1126 if (fp != NULL) {
1127 fgets(buffer, sizeof(buffer), fp);
1128 int j = 0;
Doug Zongker5fa8c232012-09-18 12:37:02 -07001129 unsigned int i;
Doug Zongker02ec6b82012-08-22 17:26:40 -07001130 for (i = 0; i < sizeof(buffer) && buffer[i]; ++i) {
1131 if (!isspace(buffer[i])) {
1132 buffer[j++] = buffer[i];
1133 }
1134 }
1135 buffer[j] = 0;
1136 locale = strdup(buffer);
Devin Kim6016d082012-10-08 09:47:37 -07001137 check_and_fclose(fp, LOCALE_FILE);
Doug Zongker02ec6b82012-08-22 17:26:40 -07001138 }
1139}
1140
Doug Zongker7c3ae452013-05-14 11:03:02 -07001141static RecoveryUI* gCurrentUI = NULL;
1142
1143void
1144ui_print(const char* format, ...) {
1145 char buffer[256];
1146
1147 va_list ap;
1148 va_start(ap, format);
1149 vsnprintf(buffer, sizeof(buffer), format, ap);
1150 va_end(ap);
1151
1152 if (gCurrentUI != NULL) {
1153 gCurrentUI->Print("%s", buffer);
1154 } else {
1155 fputs(buffer, stdout);
1156 }
1157}
1158
Yabin Cui99281df2016-02-17 12:21:52 -08001159static bool is_battery_ok() {
1160 struct healthd_config healthd_config = {
1161 .batteryStatusPath = android::String8(android::String8::kEmptyString),
1162 .batteryHealthPath = android::String8(android::String8::kEmptyString),
1163 .batteryPresentPath = android::String8(android::String8::kEmptyString),
1164 .batteryCapacityPath = android::String8(android::String8::kEmptyString),
1165 .batteryVoltagePath = android::String8(android::String8::kEmptyString),
1166 .batteryTemperaturePath = android::String8(android::String8::kEmptyString),
1167 .batteryTechnologyPath = android::String8(android::String8::kEmptyString),
1168 .batteryCurrentNowPath = android::String8(android::String8::kEmptyString),
1169 .batteryCurrentAvgPath = android::String8(android::String8::kEmptyString),
1170 .batteryChargeCounterPath = android::String8(android::String8::kEmptyString),
1171 .batteryFullChargePath = android::String8(android::String8::kEmptyString),
1172 .batteryCycleCountPath = android::String8(android::String8::kEmptyString),
1173 .energyCounter = NULL,
1174 .boot_min_cap = 0,
1175 .screen_on = NULL
1176 };
1177 healthd_board_init(&healthd_config);
1178
1179 android::BatteryMonitor monitor;
1180 monitor.init(&healthd_config);
1181
1182 int wait_second = 0;
1183 while (true) {
1184 int charge_status = monitor.getChargeStatus();
1185 // Treat unknown status as charged.
1186 bool charged = (charge_status != android::BATTERY_STATUS_DISCHARGING &&
1187 charge_status != android::BATTERY_STATUS_NOT_CHARGING);
1188 android::BatteryProperty capacity;
1189 android::status_t status = monitor.getProperty(android::BATTERY_PROP_CAPACITY, &capacity);
1190 ui_print("charge_status %d, charged %d, status %d, capacity %lld\n", charge_status,
1191 charged, status, capacity.valueInt64);
1192 // At startup, the battery drivers in devices like N5X/N6P take some time to load
1193 // the battery profile. Before the load finishes, it reports value 50 as a fake
1194 // capacity. BATTERY_READ_TIMEOUT_IN_SEC is set that the battery drivers are expected
1195 // to finish loading the battery profile earlier than 10 seconds after kernel startup.
1196 if (status == 0 && capacity.valueInt64 == 50) {
1197 if (wait_second < BATTERY_READ_TIMEOUT_IN_SEC) {
1198 sleep(1);
1199 wait_second++;
1200 continue;
1201 }
1202 }
1203 // If we can't read battery percentage, it may be a device without battery. In this
1204 // situation, use 100 as a fake battery percentage.
1205 if (status != 0) {
1206 capacity.valueInt64 = 100;
1207 }
1208 return (charged && capacity.valueInt64 >= BATTERY_WITH_CHARGER_OK_PERCENTAGE) ||
1209 (!charged && capacity.valueInt64 >= BATTERY_OK_PERCENTAGE);
1210 }
1211}
1212
Tianjie Xu3c62b672016-02-05 18:25:58 -08001213static void set_retry_bootloader_message(int retry_count, int argc, char** argv) {
1214 struct bootloader_message boot {};
1215 strlcpy(boot.command, "boot-recovery", sizeof(boot.command));
1216 strlcpy(boot.recovery, "recovery\n", sizeof(boot.recovery));
1217
1218 for (int i = 1; i < argc; ++i) {
1219 if (strstr(argv[i], "retry_count") == nullptr) {
1220 strlcat(boot.recovery, argv[i], sizeof(boot.recovery));
1221 strlcat(boot.recovery, "\n", sizeof(boot.recovery));
1222 }
1223 }
1224
1225 // Initialize counter to 1 if it's not in BCB, otherwise increment it by 1.
1226 if (retry_count == 0) {
1227 strlcat(boot.recovery, "--retry_count=1\n", sizeof(boot.recovery));
1228 } else {
1229 char buffer[20];
1230 snprintf(buffer, sizeof(buffer), "--retry_count=%d\n", retry_count+1);
1231 strlcat(boot.recovery, buffer, sizeof(boot.recovery));
1232 }
1233 set_bootloader_message(&boot);
1234}
1235
Mark Salyzyna4f701a2016-03-09 14:58:16 -08001236static ssize_t logbasename(
1237 log_id_t /* logId */,
1238 char /* prio */,
1239 const char *filename,
1240 const char * /* buf */, size_t len,
1241 void *arg) {
1242 if (strstr(LAST_KMSG_FILE, filename) ||
1243 strstr(LAST_LOG_FILE, filename)) {
1244 bool *doRotate = reinterpret_cast<bool *>(arg);
1245 *doRotate = true;
1246 }
1247 return len;
1248}
1249
1250static ssize_t logrotate(
1251 log_id_t logId,
1252 char prio,
1253 const char *filename,
1254 const char *buf, size_t len,
1255 void *arg) {
1256 bool *doRotate = reinterpret_cast<bool *>(arg);
1257 if (!*doRotate) {
1258 return __android_log_pmsg_file_write(logId, prio, filename, buf, len);
1259 }
1260
1261 std::string name(filename);
1262 size_t dot = name.find_last_of(".");
1263 std::string sub = name.substr(0, dot);
1264
1265 if (!strstr(LAST_KMSG_FILE, sub.c_str()) &&
1266 !strstr(LAST_LOG_FILE, sub.c_str())) {
1267 return __android_log_pmsg_file_write(logId, prio, filename, buf, len);
1268 }
1269
1270 // filename rotation
1271 if (dot == std::string::npos) {
1272 name += ".1";
1273 } else {
1274 std::string number = name.substr(dot + 1);
1275 if (!isdigit(number.data()[0])) {
1276 name += ".1";
1277 } else {
Chih-Hung Hsieh54a27472016-04-18 11:30:55 -07001278 auto i = std::stoull(number);
Mark Salyzyna4f701a2016-03-09 14:58:16 -08001279 name = sub + "." + std::to_string(i + 1);
1280 }
1281 }
1282
1283 return __android_log_pmsg_file_write(logId, prio, name.c_str(), buf, len);
1284}
1285
Yabin Cui99281df2016-02-17 12:21:52 -08001286int main(int argc, char **argv) {
Mark Salyzyna4f701a2016-03-09 14:58:16 -08001287 // Take last pmsg contents and rewrite it to the current pmsg session.
1288 static const char filter[] = "recovery/";
1289 // Do we need to rotate?
1290 bool doRotate = false;
1291 __android_log_pmsg_file_read(
1292 LOG_ID_SYSTEM, ANDROID_LOG_INFO, filter,
1293 logbasename, &doRotate);
1294 // Take action to refresh pmsg contents
1295 __android_log_pmsg_file_read(
1296 LOG_ID_SYSTEM, ANDROID_LOG_INFO, filter,
1297 logrotate, &doRotate);
1298
Doug Zongker9270a202012-01-09 15:16:13 -08001299 // If this binary is started with the single argument "--adbd",
1300 // instead of being the normal recovery binary, it turns into kind
1301 // of a stripped-down version of adbd that only supports the
1302 // 'sideload' command. Note this must be a real argument, not
1303 // anything in the command file or bootloader control block; the
1304 // only way recovery should be run with this argument is when it
1305 // starts a copy of itself from the apply_from_adb() function.
1306 if (argc == 2 && strcmp(argv[1], "--adbd") == 0) {
Elliott Hughes9f4fdb32015-11-20 13:03:24 -08001307 adb_server_main(0, DEFAULT_ADB_PORT, -1);
Doug Zongker9270a202012-01-09 15:16:13 -08001308 return 0;
1309 }
1310
Tao Bao04ca4262015-09-10 15:32:24 -07001311 time_t start = time(NULL);
1312
1313 // redirect_stdio should be called only in non-sideload mode. Otherwise
1314 // we may have two logger instances with different timestamps.
1315 redirect_stdio(TEMPORARY_LOG_FILE);
1316
Doug Zongker19a8e242014-01-21 09:25:41 -08001317 printf("Starting recovery (pid %d) on %s", getpid(), ctime(&start));
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001318
Doug Zongkerd4208f92010-09-20 12:16:13 -07001319 load_volume_table();
Tao Bao26112e52016-02-25 12:29:40 -08001320 has_cache = volume_for_path(CACHE_ROOT) != nullptr;
1321
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001322 get_args(&argc, &argv);
1323
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001324 const char *update_package = NULL;
Tao Baoe39a9bc2015-03-31 12:19:05 -07001325 bool should_wipe_data = false;
Tao Baoc679f932015-03-30 09:43:49 -07001326 bool should_wipe_cache = false;
Tao Bao145d8612015-03-25 15:51:15 -07001327 bool show_text = false;
Tao Baoc679f932015-03-30 09:43:49 -07001328 bool sideload = false;
1329 bool sideload_auto_reboot = false;
Doug Zongkere5d5ac72012-04-12 11:01:22 -07001330 bool just_exit = false;
Doug Zongkerb1d12632014-03-18 10:32:12 -07001331 bool shutdown_after = false;
Tianjie Xu3c62b672016-02-05 18:25:58 -08001332 int retry_count = 0;
Tianjie Xu35926c42016-04-28 18:06:26 -07001333 bool security_update = false;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001334
1335 int arg;
1336 while ((arg = getopt_long(argc, argv, "", OPTIONS, NULL)) != -1) {
1337 switch (arg) {
Tianjie Xu3c62b672016-02-05 18:25:58 -08001338 case 'n': android::base::ParseInt(optarg, &retry_count, 0); break;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001339 case 'u': update_package = optarg; break;
Tao Baoe39a9bc2015-03-31 12:19:05 -07001340 case 'w': should_wipe_data = true; break;
Tao Baoc679f932015-03-30 09:43:49 -07001341 case 'c': should_wipe_cache = true; break;
Tao Bao145d8612015-03-25 15:51:15 -07001342 case 't': show_text = true; break;
Tao Baoc679f932015-03-30 09:43:49 -07001343 case 's': sideload = true; break;
1344 case 'a': sideload = true; sideload_auto_reboot = true; break;
Doug Zongkere5d5ac72012-04-12 11:01:22 -07001345 case 'x': just_exit = true; break;
Doug Zongker02ec6b82012-08-22 17:26:40 -07001346 case 'l': locale = optarg; break;
Doug Zongkerc87bab12013-11-25 13:53:25 -08001347 case 'g': {
1348 if (stage == NULL || *stage == '\0') {
1349 char buffer[20] = "1/";
1350 strncat(buffer, optarg, sizeof(buffer)-3);
1351 stage = strdup(buffer);
1352 }
1353 break;
1354 }
Doug Zongkerb1d12632014-03-18 10:32:12 -07001355 case 'p': shutdown_after = true; break;
Jeff Sharkeya6e13ae2014-09-24 11:46:17 -07001356 case 'r': reason = optarg; break;
Tianjie Xu35926c42016-04-28 18:06:26 -07001357 case 'e': security_update = true; break;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001358 case '?':
1359 LOGE("Invalid command argument\n");
1360 continue;
1361 }
1362 }
1363
Tao Bao26112e52016-02-25 12:29:40 -08001364 if (locale == nullptr && has_cache) {
Doug Zongker02ec6b82012-08-22 17:26:40 -07001365 load_locale_from_cache();
1366 }
1367 printf("locale is [%s]\n", locale);
Doug Zongker0d32f252014-02-13 15:07:56 -08001368 printf("stage is [%s]\n", stage);
Jeff Sharkeya6e13ae2014-09-24 11:46:17 -07001369 printf("reason is [%s]\n", reason);
Doug Zongker02ec6b82012-08-22 17:26:40 -07001370
1371 Device* device = make_device();
1372 ui = device->GetUI();
Doug Zongker7c3ae452013-05-14 11:03:02 -07001373 gCurrentUI = ui;
Doug Zongker02ec6b82012-08-22 17:26:40 -07001374
Doug Zongker5fa8c232012-09-18 12:37:02 -07001375 ui->SetLocale(locale);
Doug Zongker02ec6b82012-08-22 17:26:40 -07001376 ui->Init();
Tianjie Xu35926c42016-04-28 18:06:26 -07001377 // Set background string to "installing security update" for security update,
1378 // otherwise set it to "installing system update".
1379 ui->SetSystemUpdateText(security_update);
Doug Zongkerc87bab12013-11-25 13:53:25 -08001380
1381 int st_cur, st_max;
1382 if (stage != NULL && sscanf(stage, "%d/%d", &st_cur, &st_max) == 2) {
1383 ui->SetStage(st_cur, st_max);
1384 }
1385
Doug Zongker02ec6b82012-08-22 17:26:40 -07001386 ui->SetBackground(RecoveryUI::NONE);
1387 if (show_text) ui->ShowText(true);
1388
Stephen Smalley779701d2012-02-09 14:13:23 -05001389 struct selinux_opt seopts[] = {
1390 { SELABEL_OPT_PATH, "/file_contexts" }
1391 };
1392
1393 sehandle = selabel_open(SELABEL_CTX_FILE, seopts, 1);
1394
1395 if (!sehandle) {
Doug Zongkerfafc85b2013-07-09 12:29:45 -07001396 ui->Print("Warning: No file_contexts\n");
Stephen Smalley779701d2012-02-09 14:13:23 -05001397 }
Stephen Smalley779701d2012-02-09 14:13:23 -05001398
Doug Zongkerdaefc1d2011-10-31 09:34:15 -07001399 device->StartRecovery();
Doug Zongkerefa1bab2010-02-01 15:59:12 -08001400
Doug Zongker56c51052010-07-01 09:18:44 -07001401 printf("Command:");
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001402 for (arg = 0; arg < argc; arg++) {
Doug Zongker56c51052010-07-01 09:18:44 -07001403 printf(" \"%s\"", argv[arg]);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001404 }
Doug Zongker9b125b02010-09-22 12:01:37 -07001405 printf("\n");
1406
1407 if (update_package) {
1408 // For backwards compatibility on the cache partition only, if
1409 // we're given an old 'root' path "CACHE:foo", change it to
1410 // "/cache/foo".
1411 if (strncmp(update_package, "CACHE:", 6) == 0) {
1412 int len = strlen(update_package) + 10;
Doug Zongker28ce47c2011-10-28 10:33:05 -07001413 char* modified_path = (char*)malloc(len);
Jeremy Compostella1b7d9b72015-07-29 17:17:03 +02001414 if (modified_path) {
1415 strlcpy(modified_path, "/cache/", len);
1416 strlcat(modified_path, update_package+6, len);
1417 printf("(replacing path \"%s\" with \"%s\")\n",
1418 update_package, modified_path);
1419 update_package = modified_path;
1420 }
1421 else
1422 printf("modified_path allocation failed\n");
Doug Zongker9b125b02010-09-22 12:01:37 -07001423 }
1424 }
1425 printf("\n");
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001426
1427 property_list(print_property, NULL);
Doug Zongker56c51052010-07-01 09:18:44 -07001428 printf("\n");
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001429
Elliott Hughesbb78d622015-04-09 20:51:08 -07001430 ui->Print("Supported API: %d\n", RECOVERY_API_VERSION);
1431
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001432 int status = INSTALL_SUCCESS;
1433
Doug Zongker540d57f2011-01-18 13:36:58 -08001434 if (update_package != NULL) {
Tao Bao56870012016-04-29 15:37:05 -07001435 // It's not entirely true that we will modify the flash. But we want
1436 // to log the update attempt since update_package is non-NULL.
1437 modified_flash = true;
1438
Yabin Cui99281df2016-02-17 12:21:52 -08001439 if (!is_battery_ok()) {
1440 ui->Print("battery capacity is not enough for installing package, needed is %d%%\n",
1441 BATTERY_OK_PERCENTAGE);
Tianjie Xu16255832016-04-30 11:49:59 -07001442 // Log the error code to last_install when installation skips due to
1443 // low battery.
1444 FILE* install_log = fopen_path(LAST_INSTALL_FILE, "w");
1445 if (install_log != nullptr) {
1446 fprintf(install_log, "%s\n", update_package);
1447 fprintf(install_log, "0\n");
1448 fprintf(install_log, "error: %d\n", kLowBattery);
1449 fclose(install_log);
1450 } else {
1451 LOGE("failed to open last_install: %s\n", strerror(errno));
1452 }
Yabin Cui99281df2016-02-17 12:21:52 -08001453 status = INSTALL_SKIPPED;
1454 } else {
1455 status = install_package(update_package, &should_wipe_cache,
Tianjie Xu16255832016-04-30 11:49:59 -07001456 TEMPORARY_INSTALL_FILE, true, retry_count);
Yabin Cui99281df2016-02-17 12:21:52 -08001457 if (status == INSTALL_SUCCESS && should_wipe_cache) {
1458 wipe_cache(false, device);
1459 }
1460 if (status != INSTALL_SUCCESS) {
1461 ui->Print("Installation aborted.\n");
Tianjie Xu3c62b672016-02-05 18:25:58 -08001462 // When I/O error happens, reboot and retry installation EIO_RETRY_COUNT
1463 // times before we abandon this OTA update.
1464 if (status == INSTALL_RETRY && retry_count < EIO_RETRY_COUNT) {
1465 copy_logs();
1466 set_retry_bootloader_message(retry_count, argc, argv);
1467 // Print retry count on screen.
1468 ui->Print("Retry attempt %d\n", retry_count);
Doug Zongker7c3ae452013-05-14 11:03:02 -07001469
Tianjie Xu3c62b672016-02-05 18:25:58 -08001470 // Reboot and retry the update
1471 int ret = property_set(ANDROID_RB_PROPERTY, "reboot,recovery");
1472 if (ret < 0) {
1473 ui->Print("Reboot failed\n");
1474 } else {
1475 while (true) {
1476 pause();
1477 }
1478 }
1479 }
Yabin Cui99281df2016-02-17 12:21:52 -08001480 // If this is an eng or userdebug build, then automatically
1481 // turn the text display on if the script fails so the error
1482 // message is visible.
1483 if (is_ro_debuggable()) {
1484 ui->ShowText(true);
1485 }
Doug Zongker7c3ae452013-05-14 11:03:02 -07001486 }
1487 }
Tao Baoe39a9bc2015-03-31 12:19:05 -07001488 } else if (should_wipe_data) {
1489 if (!wipe_data(false, device)) {
1490 status = INSTALL_ERROR;
1491 }
Tao Baoc679f932015-03-30 09:43:49 -07001492 } else if (should_wipe_cache) {
Tao Baoe39a9bc2015-03-31 12:19:05 -07001493 if (!wipe_cache(false, device)) {
1494 status = INSTALL_ERROR;
1495 }
Tao Baoc679f932015-03-30 09:43:49 -07001496 } else if (sideload) {
1497 // 'adb reboot sideload' acts the same as user presses key combinations
1498 // to enter the sideload mode. When 'sideload-auto-reboot' is used, text
1499 // display will NOT be turned on by default. And it will reboot after
1500 // sideload finishes even if there are errors. Unless one turns on the
1501 // text display during the installation. This is to enable automated
1502 // testing.
1503 if (!sideload_auto_reboot) {
1504 ui->ShowText(true);
1505 }
1506 status = apply_from_adb(ui, &should_wipe_cache, TEMPORARY_INSTALL_FILE);
1507 if (status == INSTALL_SUCCESS && should_wipe_cache) {
Tao Baoe39a9bc2015-03-31 12:19:05 -07001508 if (!wipe_cache(false, device)) {
1509 status = INSTALL_ERROR;
1510 }
Tao Baoc679f932015-03-30 09:43:49 -07001511 }
1512 ui->Print("\nInstall from ADB complete (status: %d).\n", status);
1513 if (sideload_auto_reboot) {
1514 ui->Print("Rebooting automatically.\n");
1515 }
Doug Zongkere5d5ac72012-04-12 11:01:22 -07001516 } else if (!just_exit) {
Doug Zongker02ec6b82012-08-22 17:26:40 -07001517 status = INSTALL_NONE; // No command specified
1518 ui->SetBackground(RecoveryUI::NO_COMMAND);
Tao Bao785d22c2015-05-04 09:34:29 -07001519
1520 // http://b/17489952
1521 // If this is an eng or userdebug build, automatically turn on the
1522 // text display if no command is specified.
1523 if (is_ro_debuggable()) {
1524 ui->ShowText(true);
1525 }
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001526 }
1527
Tao Baoc679f932015-03-30 09:43:49 -07001528 if (!sideload_auto_reboot && (status == INSTALL_ERROR || status == INSTALL_CORRUPT)) {
Doug Zongkerf24fd7e2013-07-02 11:43:25 -07001529 copy_logs();
Doug Zongker02ec6b82012-08-22 17:26:40 -07001530 ui->SetBackground(RecoveryUI::ERROR);
1531 }
Tao Baoc679f932015-03-30 09:43:49 -07001532
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001533 Device::BuiltinAction after = shutdown_after ? Device::SHUTDOWN : Device::REBOOT;
Yabin Cui99281df2016-02-17 12:21:52 -08001534 if ((status != INSTALL_SUCCESS && status != INSTALL_SKIPPED && !sideload_auto_reboot) ||
1535 ui->IsTextVisible()) {
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001536 Device::BuiltinAction temp = prompt_and_wait(device, status);
Tao Baoc679f932015-03-30 09:43:49 -07001537 if (temp != Device::NO_ACTION) {
1538 after = temp;
1539 }
Doug Zongker8674a722010-09-15 11:08:23 -07001540 }
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001541
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001542 // Save logs and clean up before rebooting or shutting down.
Tianjie Xuc14d95d2016-03-24 11:50:34 -07001543 finish_recovery();
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001544
1545 switch (after) {
1546 case Device::SHUTDOWN:
1547 ui->Print("Shutting down...\n");
1548 property_set(ANDROID_RB_PROPERTY, "shutdown,");
1549 break;
1550
1551 case Device::REBOOT_BOOTLOADER:
1552 ui->Print("Rebooting to bootloader...\n");
1553 property_set(ANDROID_RB_PROPERTY, "reboot,bootloader");
1554 break;
1555
1556 default:
1557 ui->Print("Rebooting...\n");
1558 property_set(ANDROID_RB_PROPERTY, "reboot,");
1559 break;
Doug Zongkerb1d12632014-03-18 10:32:12 -07001560 }
Tao Bao75238632015-05-27 14:46:17 -07001561 while (true) {
1562 pause();
1563 }
1564 // Should be unreachable.
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001565 return EXIT_SUCCESS;
1566}