blob: aee455a911301f12da1950fb8f8175ac929fcc8a [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>
Mark Salyzyna4f701a2016-03-09 14:58:16 -080044#include <log/logger.h> /* Android Log packet format */
45#include <private/android_logger.h> /* private pmsg functions */
Tao Baobef39712015-05-04 18:50:27 -070046
Yabin Cui99281df2016-02-17 12:21:52 -080047#include <healthd/BatteryMonitor.h>
48
Tao Bao75238632015-05-27 14:46:17 -070049#include "adb_install.h"
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080050#include "bootloader.h"
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080051#include "common.h"
Tao Bao75238632015-05-27 14:46:17 -070052#include "device.h"
53#include "fuse_sdcard_provider.h"
54#include "fuse_sideload.h"
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080055#include "install.h"
56#include "minui/minui.h"
57#include "minzip/DirUtil.h"
58#include "roots.h"
Doug Zongker28ce47c2011-10-28 10:33:05 -070059#include "ui.h"
Doug Zongker211aebc2011-10-28 15:13:10 -070060#include "screen_ui.h"
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080061
Stephen Smalley779701d2012-02-09 14:13:23 -050062struct selabel_handle *sehandle;
63
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080064static const struct option OPTIONS[] = {
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080065 { "update_package", required_argument, NULL, 'u' },
Tianjie Xu3c62b672016-02-05 18:25:58 -080066 { "retry_count", required_argument, NULL, 'n' },
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080067 { "wipe_data", no_argument, NULL, 'w' },
68 { "wipe_cache", no_argument, NULL, 'c' },
Doug Zongker4bc98062010-09-03 11:00:13 -070069 { "show_text", no_argument, NULL, 't' },
Tao Baoc679f932015-03-30 09:43:49 -070070 { "sideload", no_argument, NULL, 's' },
71 { "sideload_auto_reboot", no_argument, NULL, 'a' },
Doug Zongkere5d5ac72012-04-12 11:01:22 -070072 { "just_exit", no_argument, NULL, 'x' },
Doug Zongker02ec6b82012-08-22 17:26:40 -070073 { "locale", required_argument, NULL, 'l' },
Doug Zongkerc87bab12013-11-25 13:53:25 -080074 { "stages", required_argument, NULL, 'g' },
Doug Zongkerb1d12632014-03-18 10:32:12 -070075 { "shutdown_after", no_argument, NULL, 'p' },
Jeff Sharkeya6e13ae2014-09-24 11:46:17 -070076 { "reason", required_argument, NULL, 'r' },
Doug Zongker988500b2009-10-06 14:41:38 -070077 { NULL, 0, NULL, 0 },
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080078};
79
Doug Zongker6d0d7ac2013-07-09 13:34:55 -070080static const char *CACHE_LOG_DIR = "/cache/recovery";
Doug Zongkerd4208f92010-09-20 12:16:13 -070081static const char *COMMAND_FILE = "/cache/recovery/command";
Doug Zongkerd4208f92010-09-20 12:16:13 -070082static const char *LOG_FILE = "/cache/recovery/log";
Doug Zongkerd0181b82011-10-19 10:51:12 -070083static const char *LAST_INSTALL_FILE = "/cache/recovery/last_install";
Doug Zongker8b240cc2012-08-29 15:19:29 -070084static const char *LOCALE_FILE = "/cache/recovery/last_locale";
Paul Lawrence661f8a62016-02-25 12:42:19 -080085static const char *CONVERT_FBE_DIR = "/tmp/convert_fbe";
86static const char *CONVERT_FBE_FILE = "/tmp/convert_fbe/convert_fbe";
Michael Ward9d2629c2011-06-23 22:14:24 -070087static const char *CACHE_ROOT = "/cache";
Paul Lawrenced0db3372015-11-05 13:38:40 -080088static const char *DATA_ROOT = "/data";
Doug Zongkerd4208f92010-09-20 12:16:13 -070089static const char *SDCARD_ROOT = "/sdcard";
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080090static const char *TEMPORARY_LOG_FILE = "/tmp/recovery.log";
Doug Zongkerd0181b82011-10-19 10:51:12 -070091static const char *TEMPORARY_INSTALL_FILE = "/tmp/last_install";
Tao Baof0124322015-04-11 02:04:11 +000092static const char *LAST_KMSG_FILE = "/cache/recovery/last_kmsg";
Tao Baobef39712015-05-04 18:50:27 -070093static const char *LAST_LOG_FILE = "/cache/recovery/last_log";
94static const int KEEP_LOG_COUNT = 10;
Tianjie Xu3c62b672016-02-05 18:25:58 -080095static const int EIO_RETRY_COUNT = 2;
Yabin Cui99281df2016-02-17 12:21:52 -080096static const int BATTERY_READ_TIMEOUT_IN_SEC = 10;
97// GmsCore enters recovery mode to install package when having enough battery
98// percentage. Normally, the threshold is 40% without charger and 20% with charger.
99// So we should check battery with a slightly lower limitation.
100static const int BATTERY_OK_PERCENTAGE = 20;
101static const int BATTERY_WITH_CHARGER_OK_PERCENTAGE = 15;
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700102
Doug Zongker211aebc2011-10-28 15:13:10 -0700103RecoveryUI* ui = NULL;
Doug Zongker02ec6b82012-08-22 17:26:40 -0700104char* locale = NULL;
Doug Zongkerc87bab12013-11-25 13:53:25 -0800105char* stage = NULL;
Jeff Sharkeya6e13ae2014-09-24 11:46:17 -0700106char* reason = NULL;
Tao Bao682c34b2015-04-07 17:16:35 -0700107bool modified_flash = false;
Tao Bao26112e52016-02-25 12:29:40 -0800108static bool has_cache = false;
Doug Zongker211aebc2011-10-28 15:13:10 -0700109
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800110/*
111 * The recovery tool communicates with the main system through /cache files.
112 * /cache/recovery/command - INPUT - command line for tool, one arg per line
113 * /cache/recovery/log - OUTPUT - combined log file from recovery run(s)
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800114 *
115 * The arguments which may be supplied in the recovery.command file:
Doug Zongkerd4208f92010-09-20 12:16:13 -0700116 * --update_package=path - verify install an OTA package file
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800117 * --wipe_data - erase user data (and cache), then reboot
118 * --wipe_cache - wipe cache (but not user data), then reboot
Oscar Montemayor05231562009-11-30 08:40:57 -0800119 * --set_encrypted_filesystem=on|off - enables / diasables encrypted fs
Doug Zongkere5d5ac72012-04-12 11:01:22 -0700120 * --just_exit - do nothing; exit and reboot
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800121 *
122 * After completing, we remove /cache/recovery/command and reboot.
123 * Arguments may also be supplied in the bootloader control block (BCB).
124 * These important scenarios must be safely restartable at any point:
125 *
126 * FACTORY RESET
127 * 1. user selects "factory reset"
128 * 2. main system writes "--wipe_data" to /cache/recovery/command
129 * 3. main system reboots into recovery
130 * 4. get_args() writes BCB with "boot-recovery" and "--wipe_data"
131 * -- after this, rebooting will restart the erase --
Doug Zongkerd4208f92010-09-20 12:16:13 -0700132 * 5. erase_volume() reformats /data
133 * 6. erase_volume() reformats /cache
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800134 * 7. finish_recovery() erases BCB
135 * -- after this, rebooting will restart the main system --
136 * 8. main() calls reboot() to boot main system
137 *
138 * OTA INSTALL
139 * 1. main system downloads OTA package to /cache/some-filename.zip
Doug Zongker9b125b02010-09-22 12:01:37 -0700140 * 2. main system writes "--update_package=/cache/some-filename.zip"
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800141 * 3. main system reboots into recovery
142 * 4. get_args() writes BCB with "boot-recovery" and "--update_package=..."
143 * -- after this, rebooting will attempt to reinstall the update --
144 * 5. install_package() attempts to install the update
145 * NOTE: the package install must itself be restartable from any point
146 * 6. finish_recovery() erases BCB
147 * -- after this, rebooting will (try to) restart the main system --
148 * 7. ** if install failed **
149 * 7a. prompt_and_wait() shows an error icon and waits for the user
150 * 7b; the user reboots (pulling the battery, etc) into the main system
151 * 8. main() calls maybe_install_firmware_update()
152 * ** if the update contained radio/hboot firmware **:
153 * 8a. m_i_f_u() writes BCB with "boot-recovery" and "--wipe_cache"
154 * -- after this, rebooting will reformat cache & restart main system --
155 * 8b. m_i_f_u() writes firmware image into raw cache partition
156 * 8c. m_i_f_u() writes BCB with "update-radio/hboot" and "--wipe_cache"
157 * -- after this, rebooting will attempt to reinstall firmware --
158 * 8d. bootloader tries to flash firmware
159 * 8e. bootloader writes BCB with "boot-recovery" (keeping "--wipe_cache")
160 * -- after this, rebooting will reformat cache & restart main system --
Doug Zongkerd4208f92010-09-20 12:16:13 -0700161 * 8f. erase_volume() reformats /cache
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800162 * 8g. finish_recovery() erases BCB
163 * -- after this, rebooting will (try to) restart the main system --
164 * 9. main() calls reboot() to boot main system
165 */
166
167static const int MAX_ARG_LENGTH = 4096;
168static const int MAX_ARGS = 100;
169
Doug Zongkerd4208f92010-09-20 12:16:13 -0700170// open a given path, mounting partitions as necessary
Tao Bao04ca4262015-09-10 15:32:24 -0700171FILE* fopen_path(const char *path, const char *mode) {
Doug Zongkerd4208f92010-09-20 12:16:13 -0700172 if (ensure_path_mounted(path) != 0) {
173 LOGE("Can't mount %s\n", path);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800174 return NULL;
175 }
176
177 // When writing, try to create the containing directory, if necessary.
178 // Use generous permissions, the system (init.rc) will reset them.
Stephen Smalley779701d2012-02-09 14:13:23 -0500179 if (strchr("wa", mode[0])) dirCreateHierarchy(path, 0777, NULL, 1, sehandle);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800180
181 FILE *fp = fopen(path, mode);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800182 return fp;
183}
184
Tao Bao04ca4262015-09-10 15:32:24 -0700185// close a file, log an error if the error indicator is set
186static void check_and_fclose(FILE *fp, const char *name) {
187 fflush(fp);
188 if (ferror(fp)) LOGE("Error in %s\n(%s)\n", name, strerror(errno));
189 fclose(fp);
190}
191
Elliott Hughesf14af802015-02-10 14:46:14 -0800192bool is_ro_debuggable() {
193 char value[PROPERTY_VALUE_MAX+1];
194 return (property_get("ro.debuggable", value, NULL) == 1 && value[0] == '1');
195}
196
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700197static void redirect_stdio(const char* filename) {
Tao Bao04ca4262015-09-10 15:32:24 -0700198 int pipefd[2];
199 if (pipe(pipefd) == -1) {
200 LOGE("pipe failed: %s\n", strerror(errno));
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700201
Tao Bao04ca4262015-09-10 15:32:24 -0700202 // Fall back to traditional logging mode without timestamps.
203 // If these fail, there's not really anywhere to complain...
204 freopen(filename, "a", stdout); setbuf(stdout, NULL);
205 freopen(filename, "a", stderr); setbuf(stderr, NULL);
206
207 return;
208 }
209
210 pid_t pid = fork();
211 if (pid == -1) {
212 LOGE("fork failed: %s\n", strerror(errno));
213
214 // Fall back to traditional logging mode without timestamps.
215 // If these fail, there's not really anywhere to complain...
216 freopen(filename, "a", stdout); setbuf(stdout, NULL);
217 freopen(filename, "a", stderr); setbuf(stderr, NULL);
218
219 return;
220 }
221
222 if (pid == 0) {
223 /// Close the unused write end.
224 close(pipefd[1]);
225
226 auto start = std::chrono::steady_clock::now();
227
228 // Child logger to actually write to the log file.
229 FILE* log_fp = fopen(filename, "a");
230 if (log_fp == nullptr) {
231 LOGE("fopen \"%s\" failed: %s\n", filename, strerror(errno));
232 close(pipefd[0]);
233 _exit(1);
234 }
235
236 FILE* pipe_fp = fdopen(pipefd[0], "r");
237 if (pipe_fp == nullptr) {
238 LOGE("fdopen failed: %s\n", strerror(errno));
239 check_and_fclose(log_fp, filename);
240 close(pipefd[0]);
241 _exit(1);
242 }
243
244 char* line = nullptr;
245 size_t len = 0;
246 while (getline(&line, &len, pipe_fp) != -1) {
247 auto now = std::chrono::steady_clock::now();
248 double duration = std::chrono::duration_cast<std::chrono::duration<double>>(
249 now - start).count();
250 if (line[0] == '\n') {
251 fprintf(log_fp, "[%12.6lf]\n", duration);
252 } else {
253 fprintf(log_fp, "[%12.6lf] %s", duration, line);
254 }
255 fflush(log_fp);
256 }
257
258 LOGE("getline failed: %s\n", strerror(errno));
259
260 free(line);
261 check_and_fclose(log_fp, filename);
262 close(pipefd[0]);
263 _exit(1);
264 } else {
265 // Redirect stdout/stderr to the logger process.
266 // Close the unused read end.
267 close(pipefd[0]);
268
269 setbuf(stdout, nullptr);
270 setbuf(stderr, nullptr);
271
272 if (dup2(pipefd[1], STDOUT_FILENO) == -1) {
273 LOGE("dup2 stdout failed: %s\n", strerror(errno));
274 }
275 if (dup2(pipefd[1], STDERR_FILENO) == -1) {
276 LOGE("dup2 stderr failed: %s\n", strerror(errno));
277 }
278
279 close(pipefd[1]);
280 }
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800281}
282
283// command line args come from, in decreasing precedence:
284// - the actual command line
285// - the bootloader control block (one per line, after "recovery")
286// - the contents of COMMAND_FILE (one per line)
287static void
288get_args(int *argc, char ***argv) {
289 struct bootloader_message boot;
290 memset(&boot, 0, sizeof(boot));
291 get_bootloader_message(&boot); // this may fail, leaving a zeroed structure
Doug Zongkerc87bab12013-11-25 13:53:25 -0800292 stage = strndup(boot.stage, sizeof(boot.stage));
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800293
294 if (boot.command[0] != 0 && boot.command[0] != 255) {
Mark Salyzynf3bb31c2014-03-14 09:39:48 -0700295 LOGI("Boot command: %.*s\n", (int)sizeof(boot.command), boot.command);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800296 }
297
298 if (boot.status[0] != 0 && boot.status[0] != 255) {
Mark Salyzynf3bb31c2014-03-14 09:39:48 -0700299 LOGI("Boot status: %.*s\n", (int)sizeof(boot.status), boot.status);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800300 }
301
302 // --- if arguments weren't supplied, look in the bootloader control block
303 if (*argc <= 1) {
304 boot.recovery[sizeof(boot.recovery) - 1] = '\0'; // Ensure termination
305 const char *arg = strtok(boot.recovery, "\n");
306 if (arg != NULL && !strcmp(arg, "recovery")) {
307 *argv = (char **) malloc(sizeof(char *) * MAX_ARGS);
308 (*argv)[0] = strdup(arg);
309 for (*argc = 1; *argc < MAX_ARGS; ++*argc) {
310 if ((arg = strtok(NULL, "\n")) == NULL) break;
311 (*argv)[*argc] = strdup(arg);
312 }
313 LOGI("Got arguments from boot message\n");
314 } else if (boot.recovery[0] != 0 && boot.recovery[0] != 255) {
315 LOGE("Bad boot message\n\"%.20s\"\n", boot.recovery);
316 }
317 }
318
Tao Bao26112e52016-02-25 12:29:40 -0800319 // --- if that doesn't work, try the command file (if we have /cache).
320 if (*argc <= 1 && has_cache) {
Doug Zongkerd4208f92010-09-20 12:16:13 -0700321 FILE *fp = fopen_path(COMMAND_FILE, "r");
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800322 if (fp != NULL) {
Jin Feng93ffa752013-06-04 17:46:24 +0800323 char *token;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800324 char *argv0 = (*argv)[0];
325 *argv = (char **) malloc(sizeof(char *) * MAX_ARGS);
326 (*argv)[0] = argv0; // use the same program name
327
328 char buf[MAX_ARG_LENGTH];
329 for (*argc = 1; *argc < MAX_ARGS; ++*argc) {
330 if (!fgets(buf, sizeof(buf), fp)) break;
Jin Feng93ffa752013-06-04 17:46:24 +0800331 token = strtok(buf, "\r\n");
332 if (token != NULL) {
333 (*argv)[*argc] = strdup(token); // Strip newline.
334 } else {
335 --*argc;
336 }
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800337 }
338
339 check_and_fclose(fp, COMMAND_FILE);
340 LOGI("Got arguments from %s\n", COMMAND_FILE);
341 }
342 }
343
344 // --> write the arguments we have back into the bootloader control block
345 // always boot into recovery after this (until finish_recovery() is called)
346 strlcpy(boot.command, "boot-recovery", sizeof(boot.command));
347 strlcpy(boot.recovery, "recovery\n", sizeof(boot.recovery));
348 int i;
349 for (i = 1; i < *argc; ++i) {
350 strlcat(boot.recovery, (*argv)[i], sizeof(boot.recovery));
351 strlcat(boot.recovery, "\n", sizeof(boot.recovery));
352 }
353 set_bootloader_message(&boot);
354}
355
Doug Zongker34c98df2009-08-18 12:05:45 -0700356static void
Oscar Montemayor05231562009-11-30 08:40:57 -0800357set_sdcard_update_bootloader_message() {
Doug Zongker34c98df2009-08-18 12:05:45 -0700358 struct bootloader_message boot;
359 memset(&boot, 0, sizeof(boot));
360 strlcpy(boot.command, "boot-recovery", sizeof(boot.command));
361 strlcpy(boot.recovery, "recovery\n", sizeof(boot.recovery));
362 set_bootloader_message(&boot);
363}
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800364
Tao Baobef39712015-05-04 18:50:27 -0700365// Read from kernel log into buffer and write out to file.
366static void save_kernel_log(const char* destination) {
367 int klog_buf_len = klogctl(KLOG_SIZE_BUFFER, 0, 0);
Patrick Tjincd055ee2014-12-09 11:26:40 -0800368 if (klog_buf_len <= 0) {
Tao Baobef39712015-05-04 18:50:27 -0700369 LOGE("Error getting klog size: %s\n", strerror(errno));
Patrick Tjincd055ee2014-12-09 11:26:40 -0800370 return;
371 }
372
Tao Baobef39712015-05-04 18:50:27 -0700373 std::string buffer(klog_buf_len, 0);
374 int n = klogctl(KLOG_READ_ALL, &buffer[0], klog_buf_len);
375 if (n == -1) {
376 LOGE("Error in reading klog: %s\n", strerror(errno));
Patrick Tjincd055ee2014-12-09 11:26:40 -0800377 return;
378 }
Tao Baobef39712015-05-04 18:50:27 -0700379 buffer.resize(n);
380 android::base::WriteStringToFile(buffer, destination);
Patrick Tjincd055ee2014-12-09 11:26:40 -0800381}
382
Mark Salyzyna4f701a2016-03-09 14:58:16 -0800383// write content to the current pmsg session.
384static ssize_t __pmsg_write(const char *filename, const char *buf, size_t len) {
385 return __android_log_pmsg_file_write(LOG_ID_SYSTEM, ANDROID_LOG_INFO,
386 filename, buf, len);
387}
388
389static void copy_log_file_to_pmsg(const char* source, const char* destination) {
390 std::string content;
391 android::base::ReadFileToString(source, &content);
392 __pmsg_write(destination, content.c_str(), content.length());
393}
394
Tao Baof0124322015-04-11 02:04:11 +0000395// How much of the temp log we have copied to the copy in cache.
396static long tmplog_offset = 0;
397
Tao Baobef39712015-05-04 18:50:27 -0700398static void copy_log_file(const char* source, const char* destination, bool append) {
399 FILE* dest_fp = fopen_path(destination, append ? "a" : "w");
400 if (dest_fp == nullptr) {
Doug Zongker2c3539e2010-09-29 13:21:30 -0700401 LOGE("Can't open %s\n", destination);
402 } else {
Tao Baobef39712015-05-04 18:50:27 -0700403 FILE* source_fp = fopen(source, "r");
404 if (source_fp != nullptr) {
Tao Baof0124322015-04-11 02:04:11 +0000405 if (append) {
Tao Baobef39712015-05-04 18:50:27 -0700406 fseek(source_fp, tmplog_offset, SEEK_SET); // Since last write
Doug Zongker2c3539e2010-09-29 13:21:30 -0700407 }
408 char buf[4096];
Tao Baobef39712015-05-04 18:50:27 -0700409 size_t bytes;
410 while ((bytes = fread(buf, 1, sizeof(buf), source_fp)) != 0) {
411 fwrite(buf, 1, bytes, dest_fp);
Doug Zongker2c3539e2010-09-29 13:21:30 -0700412 }
Tao Baobef39712015-05-04 18:50:27 -0700413 if (append) {
414 tmplog_offset = ftell(source_fp);
415 }
416 check_and_fclose(source_fp, source);
Doug Zongker2c3539e2010-09-29 13:21:30 -0700417 }
Tao Baobef39712015-05-04 18:50:27 -0700418 check_and_fclose(dest_fp, destination);
Doug Zongker2c3539e2010-09-29 13:21:30 -0700419 }
420}
421
Tao Baobef39712015-05-04 18:50:27 -0700422// Rename last_log -> last_log.1 -> last_log.2 -> ... -> last_log.$max.
423// Similarly rename last_kmsg -> last_kmsg.1 -> ... -> last_kmsg.$max.
424// Overwrite any existing last_log.$max and last_kmsg.$max.
425static void rotate_logs(int max) {
Tao Bao682c34b2015-04-07 17:16:35 -0700426 // Logs should only be rotated once.
427 static bool rotated = false;
428 if (rotated) {
429 return;
430 }
431 rotated = true;
432 ensure_path_mounted(LAST_LOG_FILE);
Tao Baobef39712015-05-04 18:50:27 -0700433 ensure_path_mounted(LAST_KMSG_FILE);
Tao Bao682c34b2015-04-07 17:16:35 -0700434
Tao Bao682c34b2015-04-07 17:16:35 -0700435 for (int i = max-1; i >= 0; --i) {
Tao Bao80e46e02015-06-03 10:49:29 -0700436 std::string old_log = android::base::StringPrintf("%s", LAST_LOG_FILE);
437 if (i > 0) {
438 old_log += "." + std::to_string(i);
439 }
Tao Baobef39712015-05-04 18:50:27 -0700440 std::string new_log = android::base::StringPrintf("%s.%d", LAST_LOG_FILE, i+1);
441 // Ignore errors if old_log doesn't exist.
442 rename(old_log.c_str(), new_log.c_str());
443
Tao Bao80e46e02015-06-03 10:49:29 -0700444 std::string old_kmsg = android::base::StringPrintf("%s", LAST_KMSG_FILE);
445 if (i > 0) {
446 old_kmsg += "." + std::to_string(i);
447 }
Tao Baobef39712015-05-04 18:50:27 -0700448 std::string new_kmsg = android::base::StringPrintf("%s.%d", LAST_KMSG_FILE, i+1);
449 rename(old_kmsg.c_str(), new_kmsg.c_str());
Doug Zongkerda1ebae2013-05-16 11:23:48 -0700450 }
451}
Doug Zongker2c3539e2010-09-29 13:21:30 -0700452
Tao Bao682c34b2015-04-07 17:16:35 -0700453static void copy_logs() {
454 // We only rotate and record the log of the current session if there are
455 // actual attempts to modify the flash, such as wipes, installs from BCB
456 // or menu selections. This is to avoid unnecessary rotation (and
457 // possible deletion) of log files, if it does not do anything loggable.
458 if (!modified_flash) {
459 return;
460 }
461
Mark Salyzyna4f701a2016-03-09 14:58:16 -0800462 // Always write to pmsg, this allows the OTA logs to be caught in logcat -L
463 copy_log_file_to_pmsg(TEMPORARY_LOG_FILE, LAST_LOG_FILE);
464 copy_log_file_to_pmsg(TEMPORARY_INSTALL_FILE, LAST_INSTALL_FILE);
465
466 // We can do nothing for now if there's no /cache partition.
467 if (!has_cache) {
468 return;
469 }
470
Tao Baobef39712015-05-04 18:50:27 -0700471 rotate_logs(KEEP_LOG_COUNT);
Tao Bao682c34b2015-04-07 17:16:35 -0700472
Doug Zongkerf24fd7e2013-07-02 11:43:25 -0700473 // Copy logs to cache so the system can find out what happened.
Tao Baof0124322015-04-11 02:04:11 +0000474 copy_log_file(TEMPORARY_LOG_FILE, LOG_FILE, true);
475 copy_log_file(TEMPORARY_LOG_FILE, LAST_LOG_FILE, false);
476 copy_log_file(TEMPORARY_INSTALL_FILE, LAST_INSTALL_FILE, false);
477 save_kernel_log(LAST_KMSG_FILE);
Doug Zongkerf24fd7e2013-07-02 11:43:25 -0700478 chmod(LOG_FILE, 0600);
479 chown(LOG_FILE, 1000, 1000); // system user
Tao Baof0124322015-04-11 02:04:11 +0000480 chmod(LAST_KMSG_FILE, 0600);
481 chown(LAST_KMSG_FILE, 1000, 1000); // system user
Doug Zongkerf24fd7e2013-07-02 11:43:25 -0700482 chmod(LAST_LOG_FILE, 0640);
483 chmod(LAST_INSTALL_FILE, 0644);
484 sync();
485}
486
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800487// clear the recovery command and prepare to boot a (hopefully working) system,
Tianjie Xuc14d95d2016-03-24 11:50:34 -0700488// copy our log file to cache as well (for the system to read). This function is
489// idempotent: call it as many times as you like.
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800490static void
Tianjie Xuc14d95d2016-03-24 11:50:34 -0700491finish_recovery() {
Doug Zongker4f33e552012-08-23 13:16:12 -0700492 // Save the locale to cache, so if recovery is next started up
493 // without a --locale argument (eg, directly from the bootloader)
494 // it will use the last-known locale.
Mark Salyzyna4f701a2016-03-09 14:58:16 -0800495 if (locale != NULL) {
496 size_t len = strlen(locale);
497 __pmsg_write(LOCALE_FILE, locale, len);
498 if (has_cache) {
499 LOGI("Saving locale \"%s\"\n", locale);
500 FILE* fp = fopen_path(LOCALE_FILE, "w");
501 fwrite(locale, 1, len, fp);
502 fflush(fp);
503 fsync(fileno(fp));
504 check_and_fclose(fp, LOCALE_FILE);
505 }
Doug Zongker4f33e552012-08-23 13:16:12 -0700506 }
507
Doug Zongkerf24fd7e2013-07-02 11:43:25 -0700508 copy_logs();
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800509
Doug Zongkere5d5ac72012-04-12 11:01:22 -0700510 // Reset to normal system boot so recovery won't cycle indefinitely.
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800511 struct bootloader_message boot;
512 memset(&boot, 0, sizeof(boot));
513 set_bootloader_message(&boot);
514
515 // Remove the command file, so recovery won't repeat indefinitely.
Tao Bao26112e52016-02-25 12:29:40 -0800516 if (has_cache) {
517 if (ensure_path_mounted(COMMAND_FILE) != 0 || (unlink(COMMAND_FILE) && errno != ENOENT)) {
518 LOGW("Can't unlink %s\n", COMMAND_FILE);
519 }
520 ensure_path_unmounted(CACHE_ROOT);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800521 }
522
523 sync(); // For good measure.
524}
525
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700526typedef struct _saved_log_file {
527 char* name;
528 struct stat st;
529 unsigned char* data;
530 struct _saved_log_file* next;
531} saved_log_file;
532
Elliott Hughes945548e2015-06-05 17:59:56 -0700533static bool erase_volume(const char* volume) {
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700534 bool is_cache = (strcmp(volume, CACHE_ROOT) == 0);
Paul Lawrenced0db3372015-11-05 13:38:40 -0800535 bool is_data = (strcmp(volume, DATA_ROOT) == 0);
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700536
Doug Zongker02ec6b82012-08-22 17:26:40 -0700537 ui->SetBackground(RecoveryUI::ERASING);
Doug Zongker211aebc2011-10-28 15:13:10 -0700538 ui->SetProgressType(RecoveryUI::INDETERMINATE);
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700539
540 saved_log_file* head = NULL;
541
542 if (is_cache) {
Tao Baobef39712015-05-04 18:50:27 -0700543 // If we're reformatting /cache, we load any past logs
544 // (i.e. "/cache/recovery/last_*") and the current log
545 // ("/cache/recovery/log") into memory, so we can restore them after
546 // the reformat.
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700547
548 ensure_path_mounted(volume);
549
550 DIR* d;
551 struct dirent* de;
552 d = opendir(CACHE_LOG_DIR);
553 if (d) {
554 char path[PATH_MAX];
555 strcpy(path, CACHE_LOG_DIR);
556 strcat(path, "/");
557 int path_len = strlen(path);
558 while ((de = readdir(d)) != NULL) {
Tao Baobef39712015-05-04 18:50:27 -0700559 if (strncmp(de->d_name, "last_", 5) == 0 || strcmp(de->d_name, "log") == 0) {
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700560 saved_log_file* p = (saved_log_file*) malloc(sizeof(saved_log_file));
561 strcpy(path+path_len, de->d_name);
562 p->name = strdup(path);
563 if (stat(path, &(p->st)) == 0) {
564 // truncate files to 512kb
565 if (p->st.st_size > (1 << 19)) {
566 p->st.st_size = 1 << 19;
567 }
568 p->data = (unsigned char*) malloc(p->st.st_size);
569 FILE* f = fopen(path, "rb");
570 fread(p->data, 1, p->st.st_size, f);
571 fclose(f);
572 p->next = head;
573 head = p;
574 } else {
575 free(p);
576 }
577 }
578 }
579 closedir(d);
580 } else {
581 if (errno != ENOENT) {
582 printf("opendir failed: %s\n", strerror(errno));
583 }
584 }
585 }
586
Doug Zongker211aebc2011-10-28 15:13:10 -0700587 ui->Print("Formatting %s...\n", volume);
Doug Zongker2c3539e2010-09-29 13:21:30 -0700588
Doug Zongkerd0181b82011-10-19 10:51:12 -0700589 ensure_path_unmounted(volume);
Paul Lawrenced0db3372015-11-05 13:38:40 -0800590
591 int result;
592
593 if (is_data && reason && strcmp(reason, "convert_fbe") == 0) {
594 // Create convert_fbe breadcrumb file to signal to init
595 // to convert to file based encryption, not full disk encryption
Paul Lawrence661f8a62016-02-25 12:42:19 -0800596 if (mkdir(CONVERT_FBE_DIR, 0700) != 0) {
597 ui->Print("Failed to make convert_fbe dir %s\n", strerror(errno));
598 return true;
599 }
Paul Lawrenced0db3372015-11-05 13:38:40 -0800600 FILE* f = fopen(CONVERT_FBE_FILE, "wb");
601 if (!f) {
Paul Lawrence661f8a62016-02-25 12:42:19 -0800602 ui->Print("Failed to convert to file encryption %s\n", strerror(errno));
Paul Lawrenced0db3372015-11-05 13:38:40 -0800603 return true;
604 }
605 fclose(f);
606 result = format_volume(volume, CONVERT_FBE_DIR);
607 remove(CONVERT_FBE_FILE);
608 rmdir(CONVERT_FBE_DIR);
609 } else {
610 result = format_volume(volume);
611 }
Doug Zongkerd0181b82011-10-19 10:51:12 -0700612
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700613 if (is_cache) {
614 while (head) {
615 FILE* f = fopen_path(head->name, "wb");
616 if (f) {
617 fwrite(head->data, 1, head->st.st_size, f);
618 fclose(f);
619 chmod(head->name, head->st.st_mode);
620 chown(head->name, head->st.st_uid, head->st.st_gid);
621 }
622 free(head->name);
623 free(head->data);
624 saved_log_file* temp = head->next;
625 free(head);
626 head = temp;
627 }
628
Tao Baof0124322015-04-11 02:04:11 +0000629 // Any part of the log we'd copied to cache is now gone.
630 // Reset the pointer so we copy from the beginning of the temp
631 // log.
632 tmplog_offset = 0;
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700633 copy_logs();
Doug Zongker2c3539e2010-09-29 13:21:30 -0700634 }
635
Elliott Hughes945548e2015-06-05 17:59:56 -0700636 return (result == 0);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800637}
638
Doug Zongkerf93d8162009-09-22 15:16:02 -0700639static int
Doug Zongker28ce47c2011-10-28 10:33:05 -0700640get_menu_selection(const char* const * headers, const char* const * items,
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700641 int menu_only, int initial_selection, Device* device) {
Doug Zongkerf93d8162009-09-22 15:16:02 -0700642 // throw away keys pressed previously, so user doesn't
643 // accidentally trigger menu items.
Doug Zongker211aebc2011-10-28 15:13:10 -0700644 ui->FlushKeys();
Doug Zongkerf93d8162009-09-22 15:16:02 -0700645
Doug Zongker211aebc2011-10-28 15:13:10 -0700646 ui->StartMenu(headers, items, initial_selection);
Doug Zongker8674a722010-09-15 11:08:23 -0700647 int selected = initial_selection;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800648 int chosen_item = -1;
649
Doug Zongkerf93d8162009-09-22 15:16:02 -0700650 while (chosen_item < 0) {
Doug Zongker211aebc2011-10-28 15:13:10 -0700651 int key = ui->WaitKey();
652 int visible = ui->IsTextVisible();
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800653
Doug Zongker5cae4452011-01-25 13:15:30 -0800654 if (key == -1) { // ui_wait_key() timed out
Doug Zongker211aebc2011-10-28 15:13:10 -0700655 if (ui->WasTextEverVisible()) {
Doug Zongker5cae4452011-01-25 13:15:30 -0800656 continue;
657 } else {
658 LOGI("timed out waiting for key input; rebooting.\n");
Doug Zongker211aebc2011-10-28 15:13:10 -0700659 ui->EndMenu();
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700660 return 0; // XXX fixme
Doug Zongker5cae4452011-01-25 13:15:30 -0800661 }
662 }
663
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700664 int action = device->HandleMenuKey(key, visible);
Doug Zongkerddd6a282009-06-09 12:22:33 -0700665
666 if (action < 0) {
667 switch (action) {
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700668 case Device::kHighlightUp:
Elliott Hughes642aaa72015-04-10 12:47:46 -0700669 selected = ui->SelectMenu(--selected);
Doug Zongkerddd6a282009-06-09 12:22:33 -0700670 break;
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700671 case Device::kHighlightDown:
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::kInvokeItem:
Doug Zongkerddd6a282009-06-09 12:22:33 -0700675 chosen_item = selected;
676 break;
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700677 case Device::kNoAction:
Doug Zongkerddd6a282009-06-09 12:22:33 -0700678 break;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800679 }
Doug Zongkerf93d8162009-09-22 15:16:02 -0700680 } else if (!menu_only) {
Doug Zongkerddd6a282009-06-09 12:22:33 -0700681 chosen_item = action;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800682 }
Doug Zongkerf93d8162009-09-22 15:16:02 -0700683 }
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800684
Doug Zongker211aebc2011-10-28 15:13:10 -0700685 ui->EndMenu();
Doug Zongkerf93d8162009-09-22 15:16:02 -0700686 return chosen_item;
687}
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800688
Doug Zongker8674a722010-09-15 11:08:23 -0700689static int compare_string(const void* a, const void* b) {
690 return strcmp(*(const char**)a, *(const char**)b);
691}
692
Doug Zongker93950222014-07-08 14:10:23 -0700693// Returns a malloc'd path, or NULL.
Elliott Hughes30694c92015-03-25 15:16:51 -0700694static char* browse_directory(const char* path, Device* device) {
Michael Ward9d2629c2011-06-23 22:14:24 -0700695 ensure_path_mounted(path);
Doug Zongkerc18eeb82010-09-21 16:49:26 -0700696
Elliott Hughes30694c92015-03-25 15:16:51 -0700697 DIR* d = opendir(path);
Doug Zongker8674a722010-09-15 11:08:23 -0700698 if (d == NULL) {
699 LOGE("error opening %s: %s\n", path, strerror(errno));
Doug Zongker93950222014-07-08 14:10:23 -0700700 return NULL;
Doug Zongker8674a722010-09-15 11:08:23 -0700701 }
702
Doug Zongker8674a722010-09-15 11:08:23 -0700703 int d_size = 0;
704 int d_alloc = 10;
Doug Zongker28ce47c2011-10-28 10:33:05 -0700705 char** dirs = (char**)malloc(d_alloc * sizeof(char*));
Doug Zongker8674a722010-09-15 11:08:23 -0700706 int z_size = 1;
707 int z_alloc = 10;
Doug Zongker28ce47c2011-10-28 10:33:05 -0700708 char** zips = (char**)malloc(z_alloc * sizeof(char*));
Doug Zongker8674a722010-09-15 11:08:23 -0700709 zips[0] = strdup("../");
710
Elliott Hughes30694c92015-03-25 15:16:51 -0700711 struct dirent* de;
Doug Zongker8674a722010-09-15 11:08:23 -0700712 while ((de = readdir(d)) != NULL) {
713 int name_len = strlen(de->d_name);
714
715 if (de->d_type == DT_DIR) {
716 // skip "." and ".." entries
717 if (name_len == 1 && de->d_name[0] == '.') continue;
718 if (name_len == 2 && de->d_name[0] == '.' &&
719 de->d_name[1] == '.') continue;
720
721 if (d_size >= d_alloc) {
722 d_alloc *= 2;
Doug Zongker28ce47c2011-10-28 10:33:05 -0700723 dirs = (char**)realloc(dirs, d_alloc * sizeof(char*));
Doug Zongker8674a722010-09-15 11:08:23 -0700724 }
Doug Zongker28ce47c2011-10-28 10:33:05 -0700725 dirs[d_size] = (char*)malloc(name_len + 2);
Doug Zongker8674a722010-09-15 11:08:23 -0700726 strcpy(dirs[d_size], de->d_name);
727 dirs[d_size][name_len] = '/';
728 dirs[d_size][name_len+1] = '\0';
729 ++d_size;
730 } else if (de->d_type == DT_REG &&
731 name_len >= 4 &&
732 strncasecmp(de->d_name + (name_len-4), ".zip", 4) == 0) {
733 if (z_size >= z_alloc) {
734 z_alloc *= 2;
Doug Zongker28ce47c2011-10-28 10:33:05 -0700735 zips = (char**)realloc(zips, z_alloc * sizeof(char*));
Doug Zongker8674a722010-09-15 11:08:23 -0700736 }
737 zips[z_size++] = strdup(de->d_name);
738 }
739 }
740 closedir(d);
741
742 qsort(dirs, d_size, sizeof(char*), compare_string);
743 qsort(zips, z_size, sizeof(char*), compare_string);
744
745 // append dirs to the zips list
746 if (d_size + z_size + 1 > z_alloc) {
747 z_alloc = d_size + z_size + 1;
Doug Zongker28ce47c2011-10-28 10:33:05 -0700748 zips = (char**)realloc(zips, z_alloc * sizeof(char*));
Doug Zongker8674a722010-09-15 11:08:23 -0700749 }
750 memcpy(zips + z_size, dirs, d_size * sizeof(char*));
751 free(dirs);
752 z_size += d_size;
753 zips[z_size] = NULL;
754
Elliott Hughes8fd86d72015-04-13 14:36:02 -0700755 const char* headers[] = { "Choose a package to install:", path, NULL };
Elliott Hughes30694c92015-03-25 15:16:51 -0700756
Doug Zongker93950222014-07-08 14:10:23 -0700757 char* result;
Doug Zongker8674a722010-09-15 11:08:23 -0700758 int chosen_item = 0;
Doug Zongker93950222014-07-08 14:10:23 -0700759 while (true) {
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700760 chosen_item = get_menu_selection(headers, zips, 1, chosen_item, device);
Doug Zongker8674a722010-09-15 11:08:23 -0700761
762 char* item = zips[chosen_item];
763 int item_len = strlen(item);
764 if (chosen_item == 0) { // item 0 is always "../"
Michael Ward9d2629c2011-06-23 22:14:24 -0700765 // go up but continue browsing (if the caller is update_directory)
Doug Zongker93950222014-07-08 14:10:23 -0700766 result = NULL;
Doug Zongker8674a722010-09-15 11:08:23 -0700767 break;
768 }
Doug Zongker93950222014-07-08 14:10:23 -0700769
770 char new_path[PATH_MAX];
771 strlcpy(new_path, path, PATH_MAX);
772 strlcat(new_path, "/", PATH_MAX);
773 strlcat(new_path, item, PATH_MAX);
774
775 if (item[item_len-1] == '/') {
776 // recurse down into a subdirectory
777 new_path[strlen(new_path)-1] = '\0'; // truncate the trailing '/'
778 result = browse_directory(new_path, device);
779 if (result) break;
780 } else {
781 // selected a zip file: return the malloc'd path to the caller.
782 result = strdup(new_path);
783 break;
784 }
785 }
Doug Zongker8674a722010-09-15 11:08:23 -0700786
Elliott Hughes30694c92015-03-25 15:16:51 -0700787 for (int i = 0; i < z_size; ++i) free(zips[i]);
Doug Zongker8674a722010-09-15 11:08:23 -0700788 free(zips);
Doug Zongker8674a722010-09-15 11:08:23 -0700789
790 return result;
791}
792
Elliott Hughes30694c92015-03-25 15:16:51 -0700793static bool yes_no(Device* device, const char* question1, const char* question2) {
Elliott Hughes8fd86d72015-04-13 14:36:02 -0700794 const char* headers[] = { question1, question2, NULL };
Elliott Hughes30694c92015-03-25 15:16:51 -0700795 const char* items[] = { " No", " Yes", NULL };
Doug Zongkerddd6a282009-06-09 12:22:33 -0700796
Elliott Hughes30694c92015-03-25 15:16:51 -0700797 int chosen_item = get_menu_selection(headers, items, 1, 0, device);
798 return (chosen_item == 1);
799}
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800800
Tao Baoe39a9bc2015-03-31 12:19:05 -0700801// Return true on success.
802static bool wipe_data(int should_confirm, Device* device) {
803 if (should_confirm && !yes_no(device, "Wipe all user data?", " THIS CAN NOT BE UNDONE!")) {
804 return false;
Doug Zongkerf93d8162009-09-22 15:16:02 -0700805 }
Doug Zongker1066d2c2009-04-01 13:57:40 -0700806
Tao Bao682c34b2015-04-07 17:16:35 -0700807 modified_flash = true;
808
Doug Zongker211aebc2011-10-28 15:13:10 -0700809 ui->Print("\n-- Wiping data...\n");
Elliott Hughes945548e2015-06-05 17:59:56 -0700810 bool success =
811 device->PreWipeData() &&
812 erase_volume("/data") &&
Tao Bao26112e52016-02-25 12:29:40 -0800813 (has_cache ? erase_volume("/cache") : true) &&
Elliott Hughes945548e2015-06-05 17:59:56 -0700814 device->PostWipeData();
815 ui->Print("Data wipe %s.\n", success ? "complete" : "failed");
816 return success;
Doug Zongkerf93d8162009-09-22 15:16:02 -0700817}
818
Tao Baoe39a9bc2015-03-31 12:19:05 -0700819// Return true on success.
820static bool wipe_cache(bool should_confirm, Device* device) {
Tao Bao26112e52016-02-25 12:29:40 -0800821 if (!has_cache) {
822 ui->Print("No /cache partition found.\n");
823 return false;
824 }
825
Elliott Hughes30694c92015-03-25 15:16:51 -0700826 if (should_confirm && !yes_no(device, "Wipe cache?", " THIS CAN NOT BE UNDONE!")) {
Tao Baoe39a9bc2015-03-31 12:19:05 -0700827 return false;
Elliott Hughes30694c92015-03-25 15:16:51 -0700828 }
829
Tao Bao682c34b2015-04-07 17:16:35 -0700830 modified_flash = true;
831
Elliott Hughes30694c92015-03-25 15:16:51 -0700832 ui->Print("\n-- Wiping cache...\n");
Elliott Hughes945548e2015-06-05 17:59:56 -0700833 bool success = erase_volume("/cache");
834 ui->Print("Cache wipe %s.\n", success ? "complete" : "failed");
835 return success;
Elliott Hughes30694c92015-03-25 15:16:51 -0700836}
837
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700838static void choose_recovery_file(Device* device) {
Tao Bao26112e52016-02-25 12:29:40 -0800839 if (!has_cache) {
840 ui->Print("No /cache partition found.\n");
841 return;
842 }
843
Elliott Hughesc0491632015-05-06 12:40:05 -0700844 // "Back" + KEEP_LOG_COUNT * 2 + terminating nullptr entry
845 char* entries[1 + KEEP_LOG_COUNT * 2 + 1];
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700846 memset(entries, 0, sizeof(entries));
847
Tao Baobef39712015-05-04 18:50:27 -0700848 unsigned int n = 0;
Patrick Tjincd055ee2014-12-09 11:26:40 -0800849
Patrick Tjincd055ee2014-12-09 11:26:40 -0800850 // Add LAST_LOG_FILE + LAST_LOG_FILE.x
Tao Baobef39712015-05-04 18:50:27 -0700851 // Add LAST_KMSG_FILE + LAST_KMSG_FILE.x
852 for (int i = 0; i < KEEP_LOG_COUNT; i++) {
853 char* log_file;
Tao Bao80e46e02015-06-03 10:49:29 -0700854 int ret;
855 ret = (i == 0) ? asprintf(&log_file, "%s", LAST_LOG_FILE) :
856 asprintf(&log_file, "%s.%d", LAST_LOG_FILE, i);
857 if (ret == -1) {
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700858 // memory allocation failure - return early. Should never happen.
859 return;
860 }
Tao Baobef39712015-05-04 18:50:27 -0700861 if ((ensure_path_mounted(log_file) != 0) || (access(log_file, R_OK) == -1)) {
862 free(log_file);
863 } else {
864 entries[n++] = log_file;
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700865 }
Tao Baobef39712015-05-04 18:50:27 -0700866
867 char* kmsg_file;
Tao Bao80e46e02015-06-03 10:49:29 -0700868 ret = (i == 0) ? asprintf(&kmsg_file, "%s", LAST_KMSG_FILE) :
869 asprintf(&kmsg_file, "%s.%d", LAST_KMSG_FILE, i);
870 if (ret == -1) {
Tao Baobef39712015-05-04 18:50:27 -0700871 // memory allocation failure - return early. Should never happen.
872 return;
873 }
874 if ((ensure_path_mounted(kmsg_file) != 0) || (access(kmsg_file, R_OK) == -1)) {
875 free(kmsg_file);
876 } else {
877 entries[n++] = kmsg_file;
878 }
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700879 }
880
Elliott Hughesc0491632015-05-06 12:40:05 -0700881 entries[n++] = strdup("Back");
882
Tao Baobef39712015-05-04 18:50:27 -0700883 const char* headers[] = { "Select file to view", nullptr };
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700884
Elliott Hughes8de52072015-04-08 20:06:50 -0700885 while (true) {
Elliott Hughes30694c92015-03-25 15:16:51 -0700886 int chosen_item = get_menu_selection(headers, entries, 1, 0, device);
Elliott Hughesc0491632015-05-06 12:40:05 -0700887 if (strcmp(entries[chosen_item], "Back") == 0) break;
Elliott Hughes8de52072015-04-08 20:06:50 -0700888
Elliott Hughes8de52072015-04-08 20:06:50 -0700889 ui->ShowFile(entries[chosen_item]);
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700890 }
891
Tao Baobef39712015-05-04 18:50:27 -0700892 for (size_t i = 0; i < (sizeof(entries) / sizeof(*entries)); i++) {
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700893 free(entries[i]);
894 }
895}
896
Tao Baocdcf28f2016-01-13 15:05:20 -0800897// How long (in seconds) we wait for the fuse-provided package file to
898// appear, before timing out.
899#define SDCARD_INSTALL_TIMEOUT 10
900
Tao Bao145d8612015-03-25 15:51:15 -0700901static int apply_from_sdcard(Device* device, bool* wipe_cache) {
Tao Bao682c34b2015-04-07 17:16:35 -0700902 modified_flash = true;
903
Christian Poetzsch4ec58a42015-02-19 10:42:39 +0000904 if (ensure_path_mounted(SDCARD_ROOT) != 0) {
905 ui->Print("\n-- Couldn't mount %s.\n", SDCARD_ROOT);
906 return INSTALL_ERROR;
907 }
908
909 char* path = browse_directory(SDCARD_ROOT, device);
910 if (path == NULL) {
Elliott Hughes018ed312015-04-08 16:51:36 -0700911 ui->Print("\n-- No package file selected.\n");
caozhiyuanb4effb92015-06-10 16:46:38 +0800912 ensure_path_unmounted(SDCARD_ROOT);
Christian Poetzsch4ec58a42015-02-19 10:42:39 +0000913 return INSTALL_ERROR;
914 }
915
916 ui->Print("\n-- Install %s ...\n", path);
917 set_sdcard_update_bootloader_message();
Christian Poetzsch4ec58a42015-02-19 10:42:39 +0000918
Tao Baocdcf28f2016-01-13 15:05:20 -0800919 // We used to use fuse in a thread as opposed to a process. Since accessing
920 // through fuse involves going from kernel to userspace to kernel, it leads
921 // to deadlock when a page fault occurs. (Bug: 26313124)
922 pid_t child;
923 if ((child = fork()) == 0) {
924 bool status = start_sdcard_fuse(path);
925
926 _exit(status ? EXIT_SUCCESS : EXIT_FAILURE);
927 }
928
929 // FUSE_SIDELOAD_HOST_PATHNAME will start to exist once the fuse in child
930 // process is ready.
931 int result = INSTALL_ERROR;
932 int status;
933 bool waited = false;
934 for (int i = 0; i < SDCARD_INSTALL_TIMEOUT; ++i) {
935 if (waitpid(child, &status, WNOHANG) == -1) {
936 result = INSTALL_ERROR;
937 waited = true;
938 break;
939 }
940
941 struct stat sb;
942 if (stat(FUSE_SIDELOAD_HOST_PATHNAME, &sb) == -1) {
943 if (errno == ENOENT && i < SDCARD_INSTALL_TIMEOUT-1) {
944 sleep(1);
945 continue;
946 } else {
947 LOGE("Timed out waiting for the fuse-provided package.\n");
948 result = INSTALL_ERROR;
949 kill(child, SIGKILL);
950 break;
951 }
952 }
953
954 result = install_package(FUSE_SIDELOAD_HOST_PATHNAME, wipe_cache,
Christian Poetzsch4ec58a42015-02-19 10:42:39 +0000955 TEMPORARY_INSTALL_FILE, false);
Tao Baocdcf28f2016-01-13 15:05:20 -0800956 break;
957 }
Christian Poetzsch4ec58a42015-02-19 10:42:39 +0000958
Tao Baocdcf28f2016-01-13 15:05:20 -0800959 if (!waited) {
960 // Calling stat() on this magic filename signals the fuse
961 // filesystem to shut down.
962 struct stat sb;
963 stat(FUSE_SIDELOAD_HOST_EXIT_PATHNAME, &sb);
964
965 waitpid(child, &status, 0);
966 }
967
968 if (!WIFEXITED(status) || WEXITSTATUS(status) != 0) {
969 LOGE("Error exit from the fuse process: %d\n", WEXITSTATUS(status));
970 }
971
Christian Poetzsch4ec58a42015-02-19 10:42:39 +0000972 ensure_path_unmounted(SDCARD_ROOT);
Tao Baocdcf28f2016-01-13 15:05:20 -0800973 return result;
Christian Poetzsch4ec58a42015-02-19 10:42:39 +0000974}
975
Doug Zongker8d9d3d52014-04-01 13:20:23 -0700976// Return REBOOT, SHUTDOWN, or REBOOT_BOOTLOADER. Returning NO_ACTION
977// means to take the default, which is to reboot or shutdown depending
978// on if the --shutdown_after flag was passed to recovery.
979static Device::BuiltinAction
Doug Zongker6c8553d2012-09-24 10:40:47 -0700980prompt_and_wait(Device* device, int status) {
Doug Zongkerf93d8162009-09-22 15:16:02 -0700981 for (;;) {
Tianjie Xuc14d95d2016-03-24 11:50:34 -0700982 finish_recovery();
Doug Zongker6c8553d2012-09-24 10:40:47 -0700983 switch (status) {
984 case INSTALL_SUCCESS:
985 case INSTALL_NONE:
986 ui->SetBackground(RecoveryUI::NO_COMMAND);
987 break;
988
989 case INSTALL_ERROR:
990 case INSTALL_CORRUPT:
991 ui->SetBackground(RecoveryUI::ERROR);
992 break;
993 }
Doug Zongker211aebc2011-10-28 15:13:10 -0700994 ui->SetProgressType(RecoveryUI::EMPTY);
Doug Zongkerf93d8162009-09-22 15:16:02 -0700995
Elliott Hughes8fd86d72015-04-13 14:36:02 -0700996 int chosen_item = get_menu_selection(nullptr, device->GetMenuItems(), 0, 0, device);
Doug Zongkerf93d8162009-09-22 15:16:02 -0700997
998 // device-specific code may take some action here. It may
999 // return one of the core actions handled in the switch
1000 // statement below.
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001001 Device::BuiltinAction chosen_action = device->InvokeMenuItem(chosen_item);
Doug Zongkerf93d8162009-09-22 15:16:02 -07001002
Elliott Hughes30694c92015-03-25 15:16:51 -07001003 bool should_wipe_cache = false;
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001004 switch (chosen_action) {
1005 case Device::NO_ACTION:
1006 break;
1007
Doug Zongkerdaefc1d2011-10-31 09:34:15 -07001008 case Device::REBOOT:
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001009 case Device::SHUTDOWN:
1010 case Device::REBOOT_BOOTLOADER:
1011 return chosen_action;
Doug Zongkerf93d8162009-09-22 15:16:02 -07001012
Doug Zongkerdaefc1d2011-10-31 09:34:15 -07001013 case Device::WIPE_DATA:
1014 wipe_data(ui->IsTextVisible(), device);
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001015 if (!ui->IsTextVisible()) return Device::NO_ACTION;
Doug Zongkerf93d8162009-09-22 15:16:02 -07001016 break;
1017
Doug Zongkerdaefc1d2011-10-31 09:34:15 -07001018 case Device::WIPE_CACHE:
Elliott Hughes30694c92015-03-25 15:16:51 -07001019 wipe_cache(ui->IsTextVisible(), device);
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001020 if (!ui->IsTextVisible()) return Device::NO_ACTION;
Doug Zongkerf93d8162009-09-22 15:16:02 -07001021 break;
1022
Christian Poetzsch4ec58a42015-02-19 10:42:39 +00001023 case Device::APPLY_ADB_SIDELOAD:
Elliott Hughesec283402015-04-10 10:01:53 -07001024 case Device::APPLY_SDCARD:
Christian Poetzsch4ec58a42015-02-19 10:42:39 +00001025 {
1026 bool adb = (chosen_action == Device::APPLY_ADB_SIDELOAD);
1027 if (adb) {
Elliott Hughes30694c92015-03-25 15:16:51 -07001028 status = apply_from_adb(ui, &should_wipe_cache, TEMPORARY_INSTALL_FILE);
Doug Zongkerd0181b82011-10-19 10:51:12 -07001029 } else {
Elliott Hughes30694c92015-03-25 15:16:51 -07001030 status = apply_from_sdcard(device, &should_wipe_cache);
Doug Zongkerd0181b82011-10-19 10:51:12 -07001031 }
Doug Zongker945fc682014-07-10 10:50:39 -07001032
Elliott Hughes30694c92015-03-25 15:16:51 -07001033 if (status == INSTALL_SUCCESS && should_wipe_cache) {
Tao Baoe39a9bc2015-03-31 12:19:05 -07001034 if (!wipe_cache(false, device)) {
1035 status = INSTALL_ERROR;
1036 }
Christian Poetzsch4ec58a42015-02-19 10:42:39 +00001037 }
1038
Tao Baoc679f932015-03-30 09:43:49 -07001039 if (status != INSTALL_SUCCESS) {
1040 ui->SetBackground(RecoveryUI::ERROR);
1041 ui->Print("Installation aborted.\n");
1042 copy_logs();
1043 } else if (!ui->IsTextVisible()) {
1044 return Device::NO_ACTION; // reboot if logs aren't visible
1045 } else {
1046 ui->Print("\nInstall from %s complete.\n", adb ? "ADB" : "SD card");
Doug Zongker8674a722010-09-15 11:08:23 -07001047 }
Doug Zongkerf93d8162009-09-22 15:16:02 -07001048 }
1049 break;
Doug Zongkerdaefc1d2011-10-31 09:34:15 -07001050
Elliott Hughesec283402015-04-10 10:01:53 -07001051 case Device::VIEW_RECOVERY_LOGS:
1052 choose_recovery_file(device);
Michael Ward9d2629c2011-06-23 22:14:24 -07001053 break;
Doug Zongker9270a202012-01-09 15:16:13 -08001054
Elliott Hughesec283402015-04-10 10:01:53 -07001055 case Device::MOUNT_SYSTEM:
Tao Baoabb8f772015-07-30 14:43:27 -07001056 char system_root_image[PROPERTY_VALUE_MAX];
1057 property_get("ro.build.system_root_image", system_root_image, "");
1058
1059 // For a system image built with the root directory (i.e.
1060 // system_root_image == "true"), we mount it to /system_root, and symlink /system
1061 // to /system_root/system to make adb shell work (the symlink is created through
1062 // the build system).
1063 // Bug: 22855115
1064 if (strcmp(system_root_image, "true") == 0) {
1065 if (ensure_path_mounted_at("/", "/system_root") != -1) {
1066 ui->Print("Mounted /system.\n");
1067 }
1068 } else {
1069 if (ensure_path_mounted("/system") != -1) {
1070 ui->Print("Mounted /system.\n");
1071 }
Elliott Hughesec283402015-04-10 10:01:53 -07001072 }
Tao Baoabb8f772015-07-30 14:43:27 -07001073
Nick Kralevicha9ad0322014-10-22 18:38:48 -07001074 break;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001075 }
1076 }
1077}
1078
1079static void
Oscar Montemayor05231562009-11-30 08:40:57 -08001080print_property(const char *key, const char *name, void *cookie) {
Doug Zongker56c51052010-07-01 09:18:44 -07001081 printf("%s=%s\n", key, name);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001082}
1083
Doug Zongker02ec6b82012-08-22 17:26:40 -07001084static void
1085load_locale_from_cache() {
1086 FILE* fp = fopen_path(LOCALE_FILE, "r");
1087 char buffer[80];
1088 if (fp != NULL) {
1089 fgets(buffer, sizeof(buffer), fp);
1090 int j = 0;
Doug Zongker5fa8c232012-09-18 12:37:02 -07001091 unsigned int i;
Doug Zongker02ec6b82012-08-22 17:26:40 -07001092 for (i = 0; i < sizeof(buffer) && buffer[i]; ++i) {
1093 if (!isspace(buffer[i])) {
1094 buffer[j++] = buffer[i];
1095 }
1096 }
1097 buffer[j] = 0;
1098 locale = strdup(buffer);
Devin Kim6016d082012-10-08 09:47:37 -07001099 check_and_fclose(fp, LOCALE_FILE);
Doug Zongker02ec6b82012-08-22 17:26:40 -07001100 }
1101}
1102
Doug Zongker7c3ae452013-05-14 11:03:02 -07001103static RecoveryUI* gCurrentUI = NULL;
1104
1105void
1106ui_print(const char* format, ...) {
1107 char buffer[256];
1108
1109 va_list ap;
1110 va_start(ap, format);
1111 vsnprintf(buffer, sizeof(buffer), format, ap);
1112 va_end(ap);
1113
1114 if (gCurrentUI != NULL) {
1115 gCurrentUI->Print("%s", buffer);
1116 } else {
1117 fputs(buffer, stdout);
1118 }
1119}
1120
Yabin Cui99281df2016-02-17 12:21:52 -08001121static bool is_battery_ok() {
1122 struct healthd_config healthd_config = {
1123 .batteryStatusPath = android::String8(android::String8::kEmptyString),
1124 .batteryHealthPath = android::String8(android::String8::kEmptyString),
1125 .batteryPresentPath = android::String8(android::String8::kEmptyString),
1126 .batteryCapacityPath = android::String8(android::String8::kEmptyString),
1127 .batteryVoltagePath = android::String8(android::String8::kEmptyString),
1128 .batteryTemperaturePath = android::String8(android::String8::kEmptyString),
1129 .batteryTechnologyPath = android::String8(android::String8::kEmptyString),
1130 .batteryCurrentNowPath = android::String8(android::String8::kEmptyString),
1131 .batteryCurrentAvgPath = android::String8(android::String8::kEmptyString),
1132 .batteryChargeCounterPath = android::String8(android::String8::kEmptyString),
1133 .batteryFullChargePath = android::String8(android::String8::kEmptyString),
1134 .batteryCycleCountPath = android::String8(android::String8::kEmptyString),
1135 .energyCounter = NULL,
1136 .boot_min_cap = 0,
1137 .screen_on = NULL
1138 };
1139 healthd_board_init(&healthd_config);
1140
1141 android::BatteryMonitor monitor;
1142 monitor.init(&healthd_config);
1143
1144 int wait_second = 0;
1145 while (true) {
1146 int charge_status = monitor.getChargeStatus();
1147 // Treat unknown status as charged.
1148 bool charged = (charge_status != android::BATTERY_STATUS_DISCHARGING &&
1149 charge_status != android::BATTERY_STATUS_NOT_CHARGING);
1150 android::BatteryProperty capacity;
1151 android::status_t status = monitor.getProperty(android::BATTERY_PROP_CAPACITY, &capacity);
1152 ui_print("charge_status %d, charged %d, status %d, capacity %lld\n", charge_status,
1153 charged, status, capacity.valueInt64);
1154 // At startup, the battery drivers in devices like N5X/N6P take some time to load
1155 // the battery profile. Before the load finishes, it reports value 50 as a fake
1156 // capacity. BATTERY_READ_TIMEOUT_IN_SEC is set that the battery drivers are expected
1157 // to finish loading the battery profile earlier than 10 seconds after kernel startup.
1158 if (status == 0 && capacity.valueInt64 == 50) {
1159 if (wait_second < BATTERY_READ_TIMEOUT_IN_SEC) {
1160 sleep(1);
1161 wait_second++;
1162 continue;
1163 }
1164 }
1165 // If we can't read battery percentage, it may be a device without battery. In this
1166 // situation, use 100 as a fake battery percentage.
1167 if (status != 0) {
1168 capacity.valueInt64 = 100;
1169 }
1170 return (charged && capacity.valueInt64 >= BATTERY_WITH_CHARGER_OK_PERCENTAGE) ||
1171 (!charged && capacity.valueInt64 >= BATTERY_OK_PERCENTAGE);
1172 }
1173}
1174
Tianjie Xu3c62b672016-02-05 18:25:58 -08001175static void set_retry_bootloader_message(int retry_count, int argc, char** argv) {
1176 struct bootloader_message boot {};
1177 strlcpy(boot.command, "boot-recovery", sizeof(boot.command));
1178 strlcpy(boot.recovery, "recovery\n", sizeof(boot.recovery));
1179
1180 for (int i = 1; i < argc; ++i) {
1181 if (strstr(argv[i], "retry_count") == nullptr) {
1182 strlcat(boot.recovery, argv[i], sizeof(boot.recovery));
1183 strlcat(boot.recovery, "\n", sizeof(boot.recovery));
1184 }
1185 }
1186
1187 // Initialize counter to 1 if it's not in BCB, otherwise increment it by 1.
1188 if (retry_count == 0) {
1189 strlcat(boot.recovery, "--retry_count=1\n", sizeof(boot.recovery));
1190 } else {
1191 char buffer[20];
1192 snprintf(buffer, sizeof(buffer), "--retry_count=%d\n", retry_count+1);
1193 strlcat(boot.recovery, buffer, sizeof(boot.recovery));
1194 }
1195 set_bootloader_message(&boot);
1196}
1197
Mark Salyzyna4f701a2016-03-09 14:58:16 -08001198static ssize_t logbasename(
1199 log_id_t /* logId */,
1200 char /* prio */,
1201 const char *filename,
1202 const char * /* buf */, size_t len,
1203 void *arg) {
1204 if (strstr(LAST_KMSG_FILE, filename) ||
1205 strstr(LAST_LOG_FILE, filename)) {
1206 bool *doRotate = reinterpret_cast<bool *>(arg);
1207 *doRotate = true;
1208 }
1209 return len;
1210}
1211
1212static ssize_t logrotate(
1213 log_id_t logId,
1214 char prio,
1215 const char *filename,
1216 const char *buf, size_t len,
1217 void *arg) {
1218 bool *doRotate = reinterpret_cast<bool *>(arg);
1219 if (!*doRotate) {
1220 return __android_log_pmsg_file_write(logId, prio, filename, buf, len);
1221 }
1222
1223 std::string name(filename);
1224 size_t dot = name.find_last_of(".");
1225 std::string sub = name.substr(0, dot);
1226
1227 if (!strstr(LAST_KMSG_FILE, sub.c_str()) &&
1228 !strstr(LAST_LOG_FILE, sub.c_str())) {
1229 return __android_log_pmsg_file_write(logId, prio, filename, buf, len);
1230 }
1231
1232 // filename rotation
1233 if (dot == std::string::npos) {
1234 name += ".1";
1235 } else {
1236 std::string number = name.substr(dot + 1);
1237 if (!isdigit(number.data()[0])) {
1238 name += ".1";
1239 } else {
1240 unsigned long long i = std::stoull(number);
1241 name = sub + "." + std::to_string(i + 1);
1242 }
1243 }
1244
1245 return __android_log_pmsg_file_write(logId, prio, name.c_str(), buf, len);
1246}
1247
Yabin Cui99281df2016-02-17 12:21:52 -08001248int main(int argc, char **argv) {
Mark Salyzyna4f701a2016-03-09 14:58:16 -08001249 // Take last pmsg contents and rewrite it to the current pmsg session.
1250 static const char filter[] = "recovery/";
1251 // Do we need to rotate?
1252 bool doRotate = false;
1253 __android_log_pmsg_file_read(
1254 LOG_ID_SYSTEM, ANDROID_LOG_INFO, filter,
1255 logbasename, &doRotate);
1256 // Take action to refresh pmsg contents
1257 __android_log_pmsg_file_read(
1258 LOG_ID_SYSTEM, ANDROID_LOG_INFO, filter,
1259 logrotate, &doRotate);
1260
Doug Zongker9270a202012-01-09 15:16:13 -08001261 // If this binary is started with the single argument "--adbd",
1262 // instead of being the normal recovery binary, it turns into kind
1263 // of a stripped-down version of adbd that only supports the
1264 // 'sideload' command. Note this must be a real argument, not
1265 // anything in the command file or bootloader control block; the
1266 // only way recovery should be run with this argument is when it
1267 // starts a copy of itself from the apply_from_adb() function.
1268 if (argc == 2 && strcmp(argv[1], "--adbd") == 0) {
Elliott Hughes9f4fdb32015-11-20 13:03:24 -08001269 adb_server_main(0, DEFAULT_ADB_PORT, -1);
Doug Zongker9270a202012-01-09 15:16:13 -08001270 return 0;
1271 }
1272
Tao Bao04ca4262015-09-10 15:32:24 -07001273 time_t start = time(NULL);
1274
1275 // redirect_stdio should be called only in non-sideload mode. Otherwise
1276 // we may have two logger instances with different timestamps.
1277 redirect_stdio(TEMPORARY_LOG_FILE);
1278
Doug Zongker19a8e242014-01-21 09:25:41 -08001279 printf("Starting recovery (pid %d) on %s", getpid(), ctime(&start));
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001280
Doug Zongkerd4208f92010-09-20 12:16:13 -07001281 load_volume_table();
Tao Bao26112e52016-02-25 12:29:40 -08001282 has_cache = volume_for_path(CACHE_ROOT) != nullptr;
1283
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001284 get_args(&argc, &argv);
1285
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001286 const char *update_package = NULL;
Tao Baoe39a9bc2015-03-31 12:19:05 -07001287 bool should_wipe_data = false;
Tao Baoc679f932015-03-30 09:43:49 -07001288 bool should_wipe_cache = false;
Tao Bao145d8612015-03-25 15:51:15 -07001289 bool show_text = false;
Tao Baoc679f932015-03-30 09:43:49 -07001290 bool sideload = false;
1291 bool sideload_auto_reboot = false;
Doug Zongkere5d5ac72012-04-12 11:01:22 -07001292 bool just_exit = false;
Doug Zongkerb1d12632014-03-18 10:32:12 -07001293 bool shutdown_after = false;
Tianjie Xu3c62b672016-02-05 18:25:58 -08001294 int retry_count = 0;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001295
1296 int arg;
1297 while ((arg = getopt_long(argc, argv, "", OPTIONS, NULL)) != -1) {
1298 switch (arg) {
Tianjie Xu3c62b672016-02-05 18:25:58 -08001299 case 'n': android::base::ParseInt(optarg, &retry_count, 0); break;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001300 case 'u': update_package = optarg; break;
Tao Baoe39a9bc2015-03-31 12:19:05 -07001301 case 'w': should_wipe_data = true; break;
Tao Baoc679f932015-03-30 09:43:49 -07001302 case 'c': should_wipe_cache = true; break;
Tao Bao145d8612015-03-25 15:51:15 -07001303 case 't': show_text = true; break;
Tao Baoc679f932015-03-30 09:43:49 -07001304 case 's': sideload = true; break;
1305 case 'a': sideload = true; sideload_auto_reboot = true; break;
Doug Zongkere5d5ac72012-04-12 11:01:22 -07001306 case 'x': just_exit = true; break;
Doug Zongker02ec6b82012-08-22 17:26:40 -07001307 case 'l': locale = optarg; break;
Doug Zongkerc87bab12013-11-25 13:53:25 -08001308 case 'g': {
1309 if (stage == NULL || *stage == '\0') {
1310 char buffer[20] = "1/";
1311 strncat(buffer, optarg, sizeof(buffer)-3);
1312 stage = strdup(buffer);
1313 }
1314 break;
1315 }
Doug Zongkerb1d12632014-03-18 10:32:12 -07001316 case 'p': shutdown_after = true; break;
Jeff Sharkeya6e13ae2014-09-24 11:46:17 -07001317 case 'r': reason = optarg; break;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001318 case '?':
1319 LOGE("Invalid command argument\n");
1320 continue;
1321 }
1322 }
1323
Tao Bao26112e52016-02-25 12:29:40 -08001324 if (locale == nullptr && has_cache) {
Doug Zongker02ec6b82012-08-22 17:26:40 -07001325 load_locale_from_cache();
1326 }
1327 printf("locale is [%s]\n", locale);
Doug Zongker0d32f252014-02-13 15:07:56 -08001328 printf("stage is [%s]\n", stage);
Jeff Sharkeya6e13ae2014-09-24 11:46:17 -07001329 printf("reason is [%s]\n", reason);
Doug Zongker02ec6b82012-08-22 17:26:40 -07001330
1331 Device* device = make_device();
1332 ui = device->GetUI();
Doug Zongker7c3ae452013-05-14 11:03:02 -07001333 gCurrentUI = ui;
Doug Zongker02ec6b82012-08-22 17:26:40 -07001334
Doug Zongker5fa8c232012-09-18 12:37:02 -07001335 ui->SetLocale(locale);
Doug Zongker02ec6b82012-08-22 17:26:40 -07001336 ui->Init();
Doug Zongkerc87bab12013-11-25 13:53:25 -08001337
1338 int st_cur, st_max;
1339 if (stage != NULL && sscanf(stage, "%d/%d", &st_cur, &st_max) == 2) {
1340 ui->SetStage(st_cur, st_max);
1341 }
1342
Doug Zongker02ec6b82012-08-22 17:26:40 -07001343 ui->SetBackground(RecoveryUI::NONE);
1344 if (show_text) ui->ShowText(true);
1345
Stephen Smalley779701d2012-02-09 14:13:23 -05001346 struct selinux_opt seopts[] = {
1347 { SELABEL_OPT_PATH, "/file_contexts" }
1348 };
1349
1350 sehandle = selabel_open(SELABEL_CTX_FILE, seopts, 1);
1351
1352 if (!sehandle) {
Doug Zongkerfafc85b2013-07-09 12:29:45 -07001353 ui->Print("Warning: No file_contexts\n");
Stephen Smalley779701d2012-02-09 14:13:23 -05001354 }
Stephen Smalley779701d2012-02-09 14:13:23 -05001355
Doug Zongkerdaefc1d2011-10-31 09:34:15 -07001356 device->StartRecovery();
Doug Zongkerefa1bab2010-02-01 15:59:12 -08001357
Doug Zongker56c51052010-07-01 09:18:44 -07001358 printf("Command:");
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001359 for (arg = 0; arg < argc; arg++) {
Doug Zongker56c51052010-07-01 09:18:44 -07001360 printf(" \"%s\"", argv[arg]);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001361 }
Doug Zongker9b125b02010-09-22 12:01:37 -07001362 printf("\n");
1363
1364 if (update_package) {
1365 // For backwards compatibility on the cache partition only, if
1366 // we're given an old 'root' path "CACHE:foo", change it to
1367 // "/cache/foo".
1368 if (strncmp(update_package, "CACHE:", 6) == 0) {
1369 int len = strlen(update_package) + 10;
Doug Zongker28ce47c2011-10-28 10:33:05 -07001370 char* modified_path = (char*)malloc(len);
Jeremy Compostella1b7d9b72015-07-29 17:17:03 +02001371 if (modified_path) {
1372 strlcpy(modified_path, "/cache/", len);
1373 strlcat(modified_path, update_package+6, len);
1374 printf("(replacing path \"%s\" with \"%s\")\n",
1375 update_package, modified_path);
1376 update_package = modified_path;
1377 }
1378 else
1379 printf("modified_path allocation failed\n");
Doug Zongker9b125b02010-09-22 12:01:37 -07001380 }
1381 }
1382 printf("\n");
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001383
1384 property_list(print_property, NULL);
Doug Zongker56c51052010-07-01 09:18:44 -07001385 printf("\n");
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001386
Elliott Hughesbb78d622015-04-09 20:51:08 -07001387 ui->Print("Supported API: %d\n", RECOVERY_API_VERSION);
1388
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001389 int status = INSTALL_SUCCESS;
1390
Doug Zongker540d57f2011-01-18 13:36:58 -08001391 if (update_package != NULL) {
Yabin Cui99281df2016-02-17 12:21:52 -08001392 if (!is_battery_ok()) {
1393 ui->Print("battery capacity is not enough for installing package, needed is %d%%\n",
1394 BATTERY_OK_PERCENTAGE);
1395 status = INSTALL_SKIPPED;
1396 } else {
1397 status = install_package(update_package, &should_wipe_cache,
1398 TEMPORARY_INSTALL_FILE, true);
1399 if (status == INSTALL_SUCCESS && should_wipe_cache) {
1400 wipe_cache(false, device);
1401 }
1402 if (status != INSTALL_SUCCESS) {
1403 ui->Print("Installation aborted.\n");
Tianjie Xu3c62b672016-02-05 18:25:58 -08001404 // When I/O error happens, reboot and retry installation EIO_RETRY_COUNT
1405 // times before we abandon this OTA update.
1406 if (status == INSTALL_RETRY && retry_count < EIO_RETRY_COUNT) {
1407 copy_logs();
1408 set_retry_bootloader_message(retry_count, argc, argv);
1409 // Print retry count on screen.
1410 ui->Print("Retry attempt %d\n", retry_count);
Doug Zongker7c3ae452013-05-14 11:03:02 -07001411
Tianjie Xu3c62b672016-02-05 18:25:58 -08001412 // Reboot and retry the update
1413 int ret = property_set(ANDROID_RB_PROPERTY, "reboot,recovery");
1414 if (ret < 0) {
1415 ui->Print("Reboot failed\n");
1416 } else {
1417 while (true) {
1418 pause();
1419 }
1420 }
1421 }
Yabin Cui99281df2016-02-17 12:21:52 -08001422 // If this is an eng or userdebug build, then automatically
1423 // turn the text display on if the script fails so the error
1424 // message is visible.
1425 if (is_ro_debuggable()) {
1426 ui->ShowText(true);
1427 }
Doug Zongker7c3ae452013-05-14 11:03:02 -07001428 }
1429 }
Tao Baoe39a9bc2015-03-31 12:19:05 -07001430 } else if (should_wipe_data) {
1431 if (!wipe_data(false, device)) {
1432 status = INSTALL_ERROR;
1433 }
Tao Baoc679f932015-03-30 09:43:49 -07001434 } else if (should_wipe_cache) {
Tao Baoe39a9bc2015-03-31 12:19:05 -07001435 if (!wipe_cache(false, device)) {
1436 status = INSTALL_ERROR;
1437 }
Tao Baoc679f932015-03-30 09:43:49 -07001438 } else if (sideload) {
1439 // 'adb reboot sideload' acts the same as user presses key combinations
1440 // to enter the sideload mode. When 'sideload-auto-reboot' is used, text
1441 // display will NOT be turned on by default. And it will reboot after
1442 // sideload finishes even if there are errors. Unless one turns on the
1443 // text display during the installation. This is to enable automated
1444 // testing.
1445 if (!sideload_auto_reboot) {
1446 ui->ShowText(true);
1447 }
1448 status = apply_from_adb(ui, &should_wipe_cache, TEMPORARY_INSTALL_FILE);
1449 if (status == INSTALL_SUCCESS && should_wipe_cache) {
Tao Baoe39a9bc2015-03-31 12:19:05 -07001450 if (!wipe_cache(false, device)) {
1451 status = INSTALL_ERROR;
1452 }
Tao Baoc679f932015-03-30 09:43:49 -07001453 }
1454 ui->Print("\nInstall from ADB complete (status: %d).\n", status);
1455 if (sideload_auto_reboot) {
1456 ui->Print("Rebooting automatically.\n");
1457 }
Doug Zongkere5d5ac72012-04-12 11:01:22 -07001458 } else if (!just_exit) {
Doug Zongker02ec6b82012-08-22 17:26:40 -07001459 status = INSTALL_NONE; // No command specified
1460 ui->SetBackground(RecoveryUI::NO_COMMAND);
Tao Bao785d22c2015-05-04 09:34:29 -07001461
1462 // http://b/17489952
1463 // If this is an eng or userdebug build, automatically turn on the
1464 // text display if no command is specified.
1465 if (is_ro_debuggable()) {
1466 ui->ShowText(true);
1467 }
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001468 }
1469
Tao Baoc679f932015-03-30 09:43:49 -07001470 if (!sideload_auto_reboot && (status == INSTALL_ERROR || status == INSTALL_CORRUPT)) {
Doug Zongkerf24fd7e2013-07-02 11:43:25 -07001471 copy_logs();
Doug Zongker02ec6b82012-08-22 17:26:40 -07001472 ui->SetBackground(RecoveryUI::ERROR);
1473 }
Tao Baoc679f932015-03-30 09:43:49 -07001474
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001475 Device::BuiltinAction after = shutdown_after ? Device::SHUTDOWN : Device::REBOOT;
Yabin Cui99281df2016-02-17 12:21:52 -08001476 if ((status != INSTALL_SUCCESS && status != INSTALL_SKIPPED && !sideload_auto_reboot) ||
1477 ui->IsTextVisible()) {
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001478 Device::BuiltinAction temp = prompt_and_wait(device, status);
Tao Baoc679f932015-03-30 09:43:49 -07001479 if (temp != Device::NO_ACTION) {
1480 after = temp;
1481 }
Doug Zongker8674a722010-09-15 11:08:23 -07001482 }
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001483
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001484 // Save logs and clean up before rebooting or shutting down.
Tianjie Xuc14d95d2016-03-24 11:50:34 -07001485 finish_recovery();
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001486
1487 switch (after) {
1488 case Device::SHUTDOWN:
1489 ui->Print("Shutting down...\n");
1490 property_set(ANDROID_RB_PROPERTY, "shutdown,");
1491 break;
1492
1493 case Device::REBOOT_BOOTLOADER:
1494 ui->Print("Rebooting to bootloader...\n");
1495 property_set(ANDROID_RB_PROPERTY, "reboot,bootloader");
1496 break;
1497
1498 default:
1499 ui->Print("Rebooting...\n");
1500 property_set(ANDROID_RB_PROPERTY, "reboot,");
1501 break;
Doug Zongkerb1d12632014-03-18 10:32:12 -07001502 }
Tao Bao75238632015-05-27 14:46:17 -07001503 while (true) {
1504 pause();
1505 }
1506 // Should be unreachable.
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001507 return EXIT_SUCCESS;
1508}