blob: 90742d8793429b2fa3b08c52059b0a88c9279590 [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>
Elliott Hughes4b166f02015-12-04 15:30:20 -080038#include <android-base/file.h>
Tianjie Xu3c62b672016-02-05 18:25:58 -080039#include <android-base/parseint.h>
Elliott Hughes4b166f02015-12-04 15:30:20 -080040#include <android-base/stringprintf.h>
Tao Bao75238632015-05-27 14:46:17 -070041#include <cutils/android_reboot.h>
42#include <cutils/properties.h>
Tao Baobef39712015-05-04 18:50:27 -070043
Yabin Cui53e7a062016-02-17 12:21:52 -080044#include <healthd/BatteryMonitor.h>
45
Tao Bao75238632015-05-27 14:46:17 -070046#include "adb_install.h"
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080047#include "bootloader.h"
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080048#include "common.h"
Tao Bao75238632015-05-27 14:46:17 -070049#include "device.h"
50#include "fuse_sdcard_provider.h"
51#include "fuse_sideload.h"
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080052#include "install.h"
53#include "minui/minui.h"
54#include "minzip/DirUtil.h"
55#include "roots.h"
Doug Zongker28ce47c2011-10-28 10:33:05 -070056#include "ui.h"
Doug Zongker211aebc2011-10-28 15:13:10 -070057#include "screen_ui.h"
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080058
Stephen Smalley779701d2012-02-09 14:13:23 -050059struct selabel_handle *sehandle;
60
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080061static const struct option OPTIONS[] = {
Tao Baoc679f932015-03-30 09:43:49 -070062 { "send_intent", required_argument, NULL, 'i' },
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080063 { "update_package", required_argument, NULL, 'u' },
Tianjie Xu3c62b672016-02-05 18:25:58 -080064 { "retry_count", required_argument, NULL, 'n' },
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080065 { "wipe_data", no_argument, NULL, 'w' },
66 { "wipe_cache", no_argument, NULL, 'c' },
Doug Zongker4bc98062010-09-03 11:00:13 -070067 { "show_text", no_argument, NULL, 't' },
Tao Baoc679f932015-03-30 09:43:49 -070068 { "sideload", no_argument, NULL, 's' },
69 { "sideload_auto_reboot", no_argument, NULL, 'a' },
Doug Zongkere5d5ac72012-04-12 11:01:22 -070070 { "just_exit", no_argument, NULL, 'x' },
Doug Zongker02ec6b82012-08-22 17:26:40 -070071 { "locale", required_argument, NULL, 'l' },
Doug Zongkerc87bab12013-11-25 13:53:25 -080072 { "stages", required_argument, NULL, 'g' },
Doug Zongkerb1d12632014-03-18 10:32:12 -070073 { "shutdown_after", no_argument, NULL, 'p' },
Jeff Sharkeya6e13ae2014-09-24 11:46:17 -070074 { "reason", required_argument, NULL, 'r' },
Doug Zongker988500b2009-10-06 14:41:38 -070075 { NULL, 0, NULL, 0 },
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080076};
77
Doug Zongker6d0d7ac2013-07-09 13:34:55 -070078static const char *CACHE_LOG_DIR = "/cache/recovery";
Doug Zongkerd4208f92010-09-20 12:16:13 -070079static const char *COMMAND_FILE = "/cache/recovery/command";
80static const char *INTENT_FILE = "/cache/recovery/intent";
81static const char *LOG_FILE = "/cache/recovery/log";
Doug Zongkerd0181b82011-10-19 10:51:12 -070082static const char *LAST_INSTALL_FILE = "/cache/recovery/last_install";
Doug Zongker8b240cc2012-08-29 15:19:29 -070083static const char *LOCALE_FILE = "/cache/recovery/last_locale";
Michael Ward9d2629c2011-06-23 22:14:24 -070084static const char *CACHE_ROOT = "/cache";
Doug Zongkerd4208f92010-09-20 12:16:13 -070085static const char *SDCARD_ROOT = "/sdcard";
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080086static const char *TEMPORARY_LOG_FILE = "/tmp/recovery.log";
Doug Zongkerd0181b82011-10-19 10:51:12 -070087static const char *TEMPORARY_INSTALL_FILE = "/tmp/last_install";
Tao Baof0124322015-04-11 02:04:11 +000088static const char *LAST_KMSG_FILE = "/cache/recovery/last_kmsg";
Tao Baobef39712015-05-04 18:50:27 -070089static const char *LAST_LOG_FILE = "/cache/recovery/last_log";
90static const int KEEP_LOG_COUNT = 10;
Tianjie Xu3c62b672016-02-05 18:25:58 -080091static const int EIO_RETRY_COUNT = 2;
Yabin Cui53e7a062016-02-17 12:21:52 -080092static const int BATTERY_READ_TIMEOUT_IN_SEC = 10;
93// GmsCore enters recovery mode to install package when having enough battery
94// percentage. Normally, the threshold is 40% without charger and 20% with charger.
95// So we should check battery with a slightly lower limitation.
96static const int BATTERY_OK_PERCENTAGE = 20;
97static const int BATTERY_WITH_CHARGER_OK_PERCENTAGE = 15;
Nick Kralevicha9ad0322014-10-22 18:38:48 -070098
Doug Zongker211aebc2011-10-28 15:13:10 -070099RecoveryUI* ui = NULL;
Doug Zongker02ec6b82012-08-22 17:26:40 -0700100char* locale = NULL;
Doug Zongkerc87bab12013-11-25 13:53:25 -0800101char* stage = NULL;
Jeff Sharkeya6e13ae2014-09-24 11:46:17 -0700102char* reason = NULL;
Tao Bao682c34b2015-04-07 17:16:35 -0700103bool modified_flash = false;
Doug Zongker211aebc2011-10-28 15:13:10 -0700104
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800105/*
106 * The recovery tool communicates with the main system through /cache files.
107 * /cache/recovery/command - INPUT - command line for tool, one arg per line
108 * /cache/recovery/log - OUTPUT - combined log file from recovery run(s)
109 * /cache/recovery/intent - OUTPUT - intent that was passed in
110 *
111 * The arguments which may be supplied in the recovery.command file:
112 * --send_intent=anystring - write the text out to recovery.intent
Doug Zongkerd4208f92010-09-20 12:16:13 -0700113 * --update_package=path - verify install an OTA package file
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800114 * --wipe_data - erase user data (and cache), then reboot
115 * --wipe_cache - wipe cache (but not user data), then reboot
Oscar Montemayor05231562009-11-30 08:40:57 -0800116 * --set_encrypted_filesystem=on|off - enables / diasables encrypted fs
Doug Zongkere5d5ac72012-04-12 11:01:22 -0700117 * --just_exit - do nothing; exit and reboot
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800118 *
119 * After completing, we remove /cache/recovery/command and reboot.
120 * Arguments may also be supplied in the bootloader control block (BCB).
121 * These important scenarios must be safely restartable at any point:
122 *
123 * FACTORY RESET
124 * 1. user selects "factory reset"
125 * 2. main system writes "--wipe_data" to /cache/recovery/command
126 * 3. main system reboots into recovery
127 * 4. get_args() writes BCB with "boot-recovery" and "--wipe_data"
128 * -- after this, rebooting will restart the erase --
Doug Zongkerd4208f92010-09-20 12:16:13 -0700129 * 5. erase_volume() reformats /data
130 * 6. erase_volume() reformats /cache
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800131 * 7. finish_recovery() erases BCB
132 * -- after this, rebooting will restart the main system --
133 * 8. main() calls reboot() to boot main system
134 *
135 * OTA INSTALL
136 * 1. main system downloads OTA package to /cache/some-filename.zip
Doug Zongker9b125b02010-09-22 12:01:37 -0700137 * 2. main system writes "--update_package=/cache/some-filename.zip"
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800138 * 3. main system reboots into recovery
139 * 4. get_args() writes BCB with "boot-recovery" and "--update_package=..."
140 * -- after this, rebooting will attempt to reinstall the update --
141 * 5. install_package() attempts to install the update
142 * NOTE: the package install must itself be restartable from any point
143 * 6. finish_recovery() erases BCB
144 * -- after this, rebooting will (try to) restart the main system --
145 * 7. ** if install failed **
146 * 7a. prompt_and_wait() shows an error icon and waits for the user
147 * 7b; the user reboots (pulling the battery, etc) into the main system
148 * 8. main() calls maybe_install_firmware_update()
149 * ** if the update contained radio/hboot firmware **:
150 * 8a. m_i_f_u() writes BCB with "boot-recovery" and "--wipe_cache"
151 * -- after this, rebooting will reformat cache & restart main system --
152 * 8b. m_i_f_u() writes firmware image into raw cache partition
153 * 8c. m_i_f_u() writes BCB with "update-radio/hboot" and "--wipe_cache"
154 * -- after this, rebooting will attempt to reinstall firmware --
155 * 8d. bootloader tries to flash firmware
156 * 8e. bootloader writes BCB with "boot-recovery" (keeping "--wipe_cache")
157 * -- after this, rebooting will reformat cache & restart main system --
Doug Zongkerd4208f92010-09-20 12:16:13 -0700158 * 8f. erase_volume() reformats /cache
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800159 * 8g. finish_recovery() erases BCB
160 * -- after this, rebooting will (try to) restart the main system --
161 * 9. main() calls reboot() to boot main system
162 */
163
164static const int MAX_ARG_LENGTH = 4096;
165static const int MAX_ARGS = 100;
166
Doug Zongkerd4208f92010-09-20 12:16:13 -0700167// open a given path, mounting partitions as necessary
Tao Bao04ca4262015-09-10 15:32:24 -0700168FILE* fopen_path(const char *path, const char *mode) {
Doug Zongkerd4208f92010-09-20 12:16:13 -0700169 if (ensure_path_mounted(path) != 0) {
170 LOGE("Can't mount %s\n", path);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800171 return NULL;
172 }
173
174 // When writing, try to create the containing directory, if necessary.
175 // Use generous permissions, the system (init.rc) will reset them.
Stephen Smalley779701d2012-02-09 14:13:23 -0500176 if (strchr("wa", mode[0])) dirCreateHierarchy(path, 0777, NULL, 1, sehandle);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800177
178 FILE *fp = fopen(path, mode);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800179 return fp;
180}
181
Tao Bao04ca4262015-09-10 15:32:24 -0700182// close a file, log an error if the error indicator is set
183static void check_and_fclose(FILE *fp, const char *name) {
184 fflush(fp);
185 if (ferror(fp)) LOGE("Error in %s\n(%s)\n", name, strerror(errno));
186 fclose(fp);
187}
188
Elliott Hughesf14af802015-02-10 14:46:14 -0800189bool is_ro_debuggable() {
190 char value[PROPERTY_VALUE_MAX+1];
191 return (property_get("ro.debuggable", value, NULL) == 1 && value[0] == '1');
192}
193
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700194static void redirect_stdio(const char* filename) {
Tao Bao04ca4262015-09-10 15:32:24 -0700195 int pipefd[2];
196 if (pipe(pipefd) == -1) {
197 LOGE("pipe failed: %s\n", strerror(errno));
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700198
Tao Bao04ca4262015-09-10 15:32:24 -0700199 // Fall back to traditional logging mode without timestamps.
200 // If these fail, there's not really anywhere to complain...
201 freopen(filename, "a", stdout); setbuf(stdout, NULL);
202 freopen(filename, "a", stderr); setbuf(stderr, NULL);
203
204 return;
205 }
206
207 pid_t pid = fork();
208 if (pid == -1) {
209 LOGE("fork failed: %s\n", strerror(errno));
210
211 // Fall back to traditional logging mode without timestamps.
212 // If these fail, there's not really anywhere to complain...
213 freopen(filename, "a", stdout); setbuf(stdout, NULL);
214 freopen(filename, "a", stderr); setbuf(stderr, NULL);
215
216 return;
217 }
218
219 if (pid == 0) {
220 /// Close the unused write end.
221 close(pipefd[1]);
222
223 auto start = std::chrono::steady_clock::now();
224
225 // Child logger to actually write to the log file.
226 FILE* log_fp = fopen(filename, "a");
227 if (log_fp == nullptr) {
228 LOGE("fopen \"%s\" failed: %s\n", filename, strerror(errno));
229 close(pipefd[0]);
230 _exit(1);
231 }
232
233 FILE* pipe_fp = fdopen(pipefd[0], "r");
234 if (pipe_fp == nullptr) {
235 LOGE("fdopen failed: %s\n", strerror(errno));
236 check_and_fclose(log_fp, filename);
237 close(pipefd[0]);
238 _exit(1);
239 }
240
241 char* line = nullptr;
242 size_t len = 0;
243 while (getline(&line, &len, pipe_fp) != -1) {
244 auto now = std::chrono::steady_clock::now();
245 double duration = std::chrono::duration_cast<std::chrono::duration<double>>(
246 now - start).count();
247 if (line[0] == '\n') {
248 fprintf(log_fp, "[%12.6lf]\n", duration);
249 } else {
250 fprintf(log_fp, "[%12.6lf] %s", duration, line);
251 }
252 fflush(log_fp);
253 }
254
255 LOGE("getline failed: %s\n", strerror(errno));
256
257 free(line);
258 check_and_fclose(log_fp, filename);
259 close(pipefd[0]);
260 _exit(1);
261 } else {
262 // Redirect stdout/stderr to the logger process.
263 // Close the unused read end.
264 close(pipefd[0]);
265
266 setbuf(stdout, nullptr);
267 setbuf(stderr, nullptr);
268
269 if (dup2(pipefd[1], STDOUT_FILENO) == -1) {
270 LOGE("dup2 stdout failed: %s\n", strerror(errno));
271 }
272 if (dup2(pipefd[1], STDERR_FILENO) == -1) {
273 LOGE("dup2 stderr failed: %s\n", strerror(errno));
274 }
275
276 close(pipefd[1]);
277 }
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800278}
279
280// command line args come from, in decreasing precedence:
281// - the actual command line
282// - the bootloader control block (one per line, after "recovery")
283// - the contents of COMMAND_FILE (one per line)
284static void
285get_args(int *argc, char ***argv) {
286 struct bootloader_message boot;
287 memset(&boot, 0, sizeof(boot));
288 get_bootloader_message(&boot); // this may fail, leaving a zeroed structure
Doug Zongkerc87bab12013-11-25 13:53:25 -0800289 stage = strndup(boot.stage, sizeof(boot.stage));
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800290
291 if (boot.command[0] != 0 && boot.command[0] != 255) {
Mark Salyzynf3bb31c2014-03-14 09:39:48 -0700292 LOGI("Boot command: %.*s\n", (int)sizeof(boot.command), boot.command);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800293 }
294
295 if (boot.status[0] != 0 && boot.status[0] != 255) {
Mark Salyzynf3bb31c2014-03-14 09:39:48 -0700296 LOGI("Boot status: %.*s\n", (int)sizeof(boot.status), boot.status);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800297 }
298
299 // --- if arguments weren't supplied, look in the bootloader control block
300 if (*argc <= 1) {
301 boot.recovery[sizeof(boot.recovery) - 1] = '\0'; // Ensure termination
302 const char *arg = strtok(boot.recovery, "\n");
303 if (arg != NULL && !strcmp(arg, "recovery")) {
304 *argv = (char **) malloc(sizeof(char *) * MAX_ARGS);
305 (*argv)[0] = strdup(arg);
306 for (*argc = 1; *argc < MAX_ARGS; ++*argc) {
307 if ((arg = strtok(NULL, "\n")) == NULL) break;
308 (*argv)[*argc] = strdup(arg);
309 }
310 LOGI("Got arguments from boot message\n");
311 } else if (boot.recovery[0] != 0 && boot.recovery[0] != 255) {
312 LOGE("Bad boot message\n\"%.20s\"\n", boot.recovery);
313 }
314 }
315
316 // --- if that doesn't work, try the command file
317 if (*argc <= 1) {
Doug Zongkerd4208f92010-09-20 12:16:13 -0700318 FILE *fp = fopen_path(COMMAND_FILE, "r");
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800319 if (fp != NULL) {
Jin Feng93ffa752013-06-04 17:46:24 +0800320 char *token;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800321 char *argv0 = (*argv)[0];
322 *argv = (char **) malloc(sizeof(char *) * MAX_ARGS);
323 (*argv)[0] = argv0; // use the same program name
324
325 char buf[MAX_ARG_LENGTH];
326 for (*argc = 1; *argc < MAX_ARGS; ++*argc) {
327 if (!fgets(buf, sizeof(buf), fp)) break;
Jin Feng93ffa752013-06-04 17:46:24 +0800328 token = strtok(buf, "\r\n");
329 if (token != NULL) {
330 (*argv)[*argc] = strdup(token); // Strip newline.
331 } else {
332 --*argc;
333 }
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800334 }
335
336 check_and_fclose(fp, COMMAND_FILE);
337 LOGI("Got arguments from %s\n", COMMAND_FILE);
338 }
339 }
340
341 // --> write the arguments we have back into the bootloader control block
342 // always boot into recovery after this (until finish_recovery() is called)
343 strlcpy(boot.command, "boot-recovery", sizeof(boot.command));
344 strlcpy(boot.recovery, "recovery\n", sizeof(boot.recovery));
345 int i;
346 for (i = 1; i < *argc; ++i) {
347 strlcat(boot.recovery, (*argv)[i], sizeof(boot.recovery));
348 strlcat(boot.recovery, "\n", sizeof(boot.recovery));
349 }
350 set_bootloader_message(&boot);
351}
352
Doug Zongker34c98df2009-08-18 12:05:45 -0700353static void
Oscar Montemayor05231562009-11-30 08:40:57 -0800354set_sdcard_update_bootloader_message() {
Doug Zongker34c98df2009-08-18 12:05:45 -0700355 struct bootloader_message boot;
356 memset(&boot, 0, sizeof(boot));
357 strlcpy(boot.command, "boot-recovery", sizeof(boot.command));
358 strlcpy(boot.recovery, "recovery\n", sizeof(boot.recovery));
359 set_bootloader_message(&boot);
360}
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800361
Tao Baobef39712015-05-04 18:50:27 -0700362// Read from kernel log into buffer and write out to file.
363static void save_kernel_log(const char* destination) {
364 int klog_buf_len = klogctl(KLOG_SIZE_BUFFER, 0, 0);
Patrick Tjincd055ee2014-12-09 11:26:40 -0800365 if (klog_buf_len <= 0) {
Tao Baobef39712015-05-04 18:50:27 -0700366 LOGE("Error getting klog size: %s\n", strerror(errno));
Patrick Tjincd055ee2014-12-09 11:26:40 -0800367 return;
368 }
369
Tao Baobef39712015-05-04 18:50:27 -0700370 std::string buffer(klog_buf_len, 0);
371 int n = klogctl(KLOG_READ_ALL, &buffer[0], klog_buf_len);
372 if (n == -1) {
373 LOGE("Error in reading klog: %s\n", strerror(errno));
Patrick Tjincd055ee2014-12-09 11:26:40 -0800374 return;
375 }
Tao Baobef39712015-05-04 18:50:27 -0700376 buffer.resize(n);
377 android::base::WriteStringToFile(buffer, destination);
Patrick Tjincd055ee2014-12-09 11:26:40 -0800378}
379
Tao Baof0124322015-04-11 02:04:11 +0000380// How much of the temp log we have copied to the copy in cache.
381static long tmplog_offset = 0;
382
Tao Baobef39712015-05-04 18:50:27 -0700383static void copy_log_file(const char* source, const char* destination, bool append) {
384 FILE* dest_fp = fopen_path(destination, append ? "a" : "w");
385 if (dest_fp == nullptr) {
Doug Zongker2c3539e2010-09-29 13:21:30 -0700386 LOGE("Can't open %s\n", destination);
387 } else {
Tao Baobef39712015-05-04 18:50:27 -0700388 FILE* source_fp = fopen(source, "r");
389 if (source_fp != nullptr) {
Tao Baof0124322015-04-11 02:04:11 +0000390 if (append) {
Tao Baobef39712015-05-04 18:50:27 -0700391 fseek(source_fp, tmplog_offset, SEEK_SET); // Since last write
Doug Zongker2c3539e2010-09-29 13:21:30 -0700392 }
393 char buf[4096];
Tao Baobef39712015-05-04 18:50:27 -0700394 size_t bytes;
395 while ((bytes = fread(buf, 1, sizeof(buf), source_fp)) != 0) {
396 fwrite(buf, 1, bytes, dest_fp);
Doug Zongker2c3539e2010-09-29 13:21:30 -0700397 }
Tao Baobef39712015-05-04 18:50:27 -0700398 if (append) {
399 tmplog_offset = ftell(source_fp);
400 }
401 check_and_fclose(source_fp, source);
Doug Zongker2c3539e2010-09-29 13:21:30 -0700402 }
Tao Baobef39712015-05-04 18:50:27 -0700403 check_and_fclose(dest_fp, destination);
Doug Zongker2c3539e2010-09-29 13:21:30 -0700404 }
405}
406
Tao Baobef39712015-05-04 18:50:27 -0700407// Rename last_log -> last_log.1 -> last_log.2 -> ... -> last_log.$max.
408// Similarly rename last_kmsg -> last_kmsg.1 -> ... -> last_kmsg.$max.
409// Overwrite any existing last_log.$max and last_kmsg.$max.
410static void rotate_logs(int max) {
Tao Bao682c34b2015-04-07 17:16:35 -0700411 // Logs should only be rotated once.
412 static bool rotated = false;
413 if (rotated) {
414 return;
415 }
416 rotated = true;
417 ensure_path_mounted(LAST_LOG_FILE);
Tao Baobef39712015-05-04 18:50:27 -0700418 ensure_path_mounted(LAST_KMSG_FILE);
Tao Bao682c34b2015-04-07 17:16:35 -0700419
Tao Bao682c34b2015-04-07 17:16:35 -0700420 for (int i = max-1; i >= 0; --i) {
Tao Bao80e46e02015-06-03 10:49:29 -0700421 std::string old_log = android::base::StringPrintf("%s", LAST_LOG_FILE);
422 if (i > 0) {
423 old_log += "." + std::to_string(i);
424 }
Tao Baobef39712015-05-04 18:50:27 -0700425 std::string new_log = android::base::StringPrintf("%s.%d", LAST_LOG_FILE, i+1);
426 // Ignore errors if old_log doesn't exist.
427 rename(old_log.c_str(), new_log.c_str());
428
Tao Bao80e46e02015-06-03 10:49:29 -0700429 std::string old_kmsg = android::base::StringPrintf("%s", LAST_KMSG_FILE);
430 if (i > 0) {
431 old_kmsg += "." + std::to_string(i);
432 }
Tao Baobef39712015-05-04 18:50:27 -0700433 std::string new_kmsg = android::base::StringPrintf("%s.%d", LAST_KMSG_FILE, i+1);
434 rename(old_kmsg.c_str(), new_kmsg.c_str());
Doug Zongkerda1ebae2013-05-16 11:23:48 -0700435 }
436}
Doug Zongker2c3539e2010-09-29 13:21:30 -0700437
Tao Bao682c34b2015-04-07 17:16:35 -0700438static void copy_logs() {
439 // We only rotate and record the log of the current session if there are
440 // actual attempts to modify the flash, such as wipes, installs from BCB
441 // or menu selections. This is to avoid unnecessary rotation (and
442 // possible deletion) of log files, if it does not do anything loggable.
443 if (!modified_flash) {
444 return;
445 }
446
Tao Baobef39712015-05-04 18:50:27 -0700447 rotate_logs(KEEP_LOG_COUNT);
Tao Bao682c34b2015-04-07 17:16:35 -0700448
Doug Zongkerf24fd7e2013-07-02 11:43:25 -0700449 // Copy logs to cache so the system can find out what happened.
Tao Baof0124322015-04-11 02:04:11 +0000450 copy_log_file(TEMPORARY_LOG_FILE, LOG_FILE, true);
451 copy_log_file(TEMPORARY_LOG_FILE, LAST_LOG_FILE, false);
452 copy_log_file(TEMPORARY_INSTALL_FILE, LAST_INSTALL_FILE, false);
453 save_kernel_log(LAST_KMSG_FILE);
Doug Zongkerf24fd7e2013-07-02 11:43:25 -0700454 chmod(LOG_FILE, 0600);
455 chown(LOG_FILE, 1000, 1000); // system user
Tao Baof0124322015-04-11 02:04:11 +0000456 chmod(LAST_KMSG_FILE, 0600);
457 chown(LAST_KMSG_FILE, 1000, 1000); // system user
Doug Zongkerf24fd7e2013-07-02 11:43:25 -0700458 chmod(LAST_LOG_FILE, 0640);
459 chmod(LAST_INSTALL_FILE, 0644);
460 sync();
461}
462
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800463// clear the recovery command and prepare to boot a (hopefully working) system,
464// copy our log file to cache as well (for the system to read), and
465// record any intent we were asked to communicate back to the system.
466// this function is idempotent: call it as many times as you like.
467static void
Oscar Montemayor05231562009-11-30 08:40:57 -0800468finish_recovery(const char *send_intent) {
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800469 // By this point, we're ready to return to the main system...
470 if (send_intent != NULL) {
Doug Zongkerd4208f92010-09-20 12:16:13 -0700471 FILE *fp = fopen_path(INTENT_FILE, "w");
Jay Freeman (saurik)619ec2f2008-11-17 01:56:05 +0000472 if (fp == NULL) {
473 LOGE("Can't open %s\n", INTENT_FILE);
474 } else {
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800475 fputs(send_intent, fp);
476 check_and_fclose(fp, INTENT_FILE);
477 }
478 }
479
Doug Zongker4f33e552012-08-23 13:16:12 -0700480 // Save the locale to cache, so if recovery is next started up
481 // without a --locale argument (eg, directly from the bootloader)
482 // it will use the last-known locale.
483 if (locale != NULL) {
484 LOGI("Saving locale \"%s\"\n", locale);
485 FILE* fp = fopen_path(LOCALE_FILE, "w");
486 fwrite(locale, 1, strlen(locale), fp);
487 fflush(fp);
488 fsync(fileno(fp));
489 check_and_fclose(fp, LOCALE_FILE);
490 }
491
Doug Zongkerf24fd7e2013-07-02 11:43:25 -0700492 copy_logs();
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800493
Doug Zongkere5d5ac72012-04-12 11:01:22 -0700494 // Reset to normal system boot so recovery won't cycle indefinitely.
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800495 struct bootloader_message boot;
496 memset(&boot, 0, sizeof(boot));
497 set_bootloader_message(&boot);
498
499 // Remove the command file, so recovery won't repeat indefinitely.
Doug Zongkerd4208f92010-09-20 12:16:13 -0700500 if (ensure_path_mounted(COMMAND_FILE) != 0 ||
501 (unlink(COMMAND_FILE) && errno != ENOENT)) {
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800502 LOGW("Can't unlink %s\n", COMMAND_FILE);
503 }
504
Doug Zongkerd0181b82011-10-19 10:51:12 -0700505 ensure_path_unmounted(CACHE_ROOT);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800506 sync(); // For good measure.
507}
508
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700509typedef struct _saved_log_file {
510 char* name;
511 struct stat st;
512 unsigned char* data;
513 struct _saved_log_file* next;
514} saved_log_file;
515
Elliott Hughes945548e2015-06-05 17:59:56 -0700516static bool erase_volume(const char* volume) {
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700517 bool is_cache = (strcmp(volume, CACHE_ROOT) == 0);
518
Doug Zongker02ec6b82012-08-22 17:26:40 -0700519 ui->SetBackground(RecoveryUI::ERASING);
Doug Zongker211aebc2011-10-28 15:13:10 -0700520 ui->SetProgressType(RecoveryUI::INDETERMINATE);
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700521
522 saved_log_file* head = NULL;
523
524 if (is_cache) {
Tao Baobef39712015-05-04 18:50:27 -0700525 // If we're reformatting /cache, we load any past logs
526 // (i.e. "/cache/recovery/last_*") and the current log
527 // ("/cache/recovery/log") into memory, so we can restore them after
528 // the reformat.
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700529
530 ensure_path_mounted(volume);
531
532 DIR* d;
533 struct dirent* de;
534 d = opendir(CACHE_LOG_DIR);
535 if (d) {
536 char path[PATH_MAX];
537 strcpy(path, CACHE_LOG_DIR);
538 strcat(path, "/");
539 int path_len = strlen(path);
540 while ((de = readdir(d)) != NULL) {
Tao Baobef39712015-05-04 18:50:27 -0700541 if (strncmp(de->d_name, "last_", 5) == 0 || strcmp(de->d_name, "log") == 0) {
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700542 saved_log_file* p = (saved_log_file*) malloc(sizeof(saved_log_file));
543 strcpy(path+path_len, de->d_name);
544 p->name = strdup(path);
545 if (stat(path, &(p->st)) == 0) {
546 // truncate files to 512kb
547 if (p->st.st_size > (1 << 19)) {
548 p->st.st_size = 1 << 19;
549 }
550 p->data = (unsigned char*) malloc(p->st.st_size);
551 FILE* f = fopen(path, "rb");
552 fread(p->data, 1, p->st.st_size, f);
553 fclose(f);
554 p->next = head;
555 head = p;
556 } else {
557 free(p);
558 }
559 }
560 }
561 closedir(d);
562 } else {
563 if (errno != ENOENT) {
564 printf("opendir failed: %s\n", strerror(errno));
565 }
566 }
567 }
568
Doug Zongker211aebc2011-10-28 15:13:10 -0700569 ui->Print("Formatting %s...\n", volume);
Doug Zongker2c3539e2010-09-29 13:21:30 -0700570
Doug Zongkerd0181b82011-10-19 10:51:12 -0700571 ensure_path_unmounted(volume);
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700572 int result = format_volume(volume);
Doug Zongkerd0181b82011-10-19 10:51:12 -0700573
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700574 if (is_cache) {
575 while (head) {
576 FILE* f = fopen_path(head->name, "wb");
577 if (f) {
578 fwrite(head->data, 1, head->st.st_size, f);
579 fclose(f);
580 chmod(head->name, head->st.st_mode);
581 chown(head->name, head->st.st_uid, head->st.st_gid);
582 }
583 free(head->name);
584 free(head->data);
585 saved_log_file* temp = head->next;
586 free(head);
587 head = temp;
588 }
589
Tao Baof0124322015-04-11 02:04:11 +0000590 // Any part of the log we'd copied to cache is now gone.
591 // Reset the pointer so we copy from the beginning of the temp
592 // log.
593 tmplog_offset = 0;
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700594 copy_logs();
Doug Zongker2c3539e2010-09-29 13:21:30 -0700595 }
596
Elliott Hughes945548e2015-06-05 17:59:56 -0700597 return (result == 0);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800598}
599
Doug Zongkerf93d8162009-09-22 15:16:02 -0700600static int
Doug Zongker28ce47c2011-10-28 10:33:05 -0700601get_menu_selection(const char* const * headers, const char* const * items,
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700602 int menu_only, int initial_selection, Device* device) {
Doug Zongkerf93d8162009-09-22 15:16:02 -0700603 // throw away keys pressed previously, so user doesn't
604 // accidentally trigger menu items.
Doug Zongker211aebc2011-10-28 15:13:10 -0700605 ui->FlushKeys();
Doug Zongkerf93d8162009-09-22 15:16:02 -0700606
Doug Zongker211aebc2011-10-28 15:13:10 -0700607 ui->StartMenu(headers, items, initial_selection);
Doug Zongker8674a722010-09-15 11:08:23 -0700608 int selected = initial_selection;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800609 int chosen_item = -1;
610
Doug Zongkerf93d8162009-09-22 15:16:02 -0700611 while (chosen_item < 0) {
Doug Zongker211aebc2011-10-28 15:13:10 -0700612 int key = ui->WaitKey();
613 int visible = ui->IsTextVisible();
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800614
Doug Zongker5cae4452011-01-25 13:15:30 -0800615 if (key == -1) { // ui_wait_key() timed out
Doug Zongker211aebc2011-10-28 15:13:10 -0700616 if (ui->WasTextEverVisible()) {
Doug Zongker5cae4452011-01-25 13:15:30 -0800617 continue;
618 } else {
619 LOGI("timed out waiting for key input; rebooting.\n");
Doug Zongker211aebc2011-10-28 15:13:10 -0700620 ui->EndMenu();
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700621 return 0; // XXX fixme
Doug Zongker5cae4452011-01-25 13:15:30 -0800622 }
623 }
624
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700625 int action = device->HandleMenuKey(key, visible);
Doug Zongkerddd6a282009-06-09 12:22:33 -0700626
627 if (action < 0) {
628 switch (action) {
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700629 case Device::kHighlightUp:
Elliott Hughes642aaa72015-04-10 12:47:46 -0700630 selected = ui->SelectMenu(--selected);
Doug Zongkerddd6a282009-06-09 12:22:33 -0700631 break;
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700632 case Device::kHighlightDown:
Elliott Hughes642aaa72015-04-10 12:47:46 -0700633 selected = ui->SelectMenu(++selected);
Doug Zongkerddd6a282009-06-09 12:22:33 -0700634 break;
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700635 case Device::kInvokeItem:
Doug Zongkerddd6a282009-06-09 12:22:33 -0700636 chosen_item = selected;
637 break;
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700638 case Device::kNoAction:
Doug Zongkerddd6a282009-06-09 12:22:33 -0700639 break;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800640 }
Doug Zongkerf93d8162009-09-22 15:16:02 -0700641 } else if (!menu_only) {
Doug Zongkerddd6a282009-06-09 12:22:33 -0700642 chosen_item = action;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800643 }
Doug Zongkerf93d8162009-09-22 15:16:02 -0700644 }
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800645
Doug Zongker211aebc2011-10-28 15:13:10 -0700646 ui->EndMenu();
Doug Zongkerf93d8162009-09-22 15:16:02 -0700647 return chosen_item;
648}
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800649
Doug Zongker8674a722010-09-15 11:08:23 -0700650static int compare_string(const void* a, const void* b) {
651 return strcmp(*(const char**)a, *(const char**)b);
652}
653
Doug Zongker93950222014-07-08 14:10:23 -0700654// Returns a malloc'd path, or NULL.
Elliott Hughes30694c92015-03-25 15:16:51 -0700655static char* browse_directory(const char* path, Device* device) {
Michael Ward9d2629c2011-06-23 22:14:24 -0700656 ensure_path_mounted(path);
Doug Zongkerc18eeb82010-09-21 16:49:26 -0700657
Elliott Hughes30694c92015-03-25 15:16:51 -0700658 DIR* d = opendir(path);
Doug Zongker8674a722010-09-15 11:08:23 -0700659 if (d == NULL) {
660 LOGE("error opening %s: %s\n", path, strerror(errno));
Doug Zongker93950222014-07-08 14:10:23 -0700661 return NULL;
Doug Zongker8674a722010-09-15 11:08:23 -0700662 }
663
Doug Zongker8674a722010-09-15 11:08:23 -0700664 int d_size = 0;
665 int d_alloc = 10;
Doug Zongker28ce47c2011-10-28 10:33:05 -0700666 char** dirs = (char**)malloc(d_alloc * sizeof(char*));
Doug Zongker8674a722010-09-15 11:08:23 -0700667 int z_size = 1;
668 int z_alloc = 10;
Doug Zongker28ce47c2011-10-28 10:33:05 -0700669 char** zips = (char**)malloc(z_alloc * sizeof(char*));
Doug Zongker8674a722010-09-15 11:08:23 -0700670 zips[0] = strdup("../");
671
Elliott Hughes30694c92015-03-25 15:16:51 -0700672 struct dirent* de;
Doug Zongker8674a722010-09-15 11:08:23 -0700673 while ((de = readdir(d)) != NULL) {
674 int name_len = strlen(de->d_name);
675
676 if (de->d_type == DT_DIR) {
677 // skip "." and ".." entries
678 if (name_len == 1 && de->d_name[0] == '.') continue;
679 if (name_len == 2 && de->d_name[0] == '.' &&
680 de->d_name[1] == '.') continue;
681
682 if (d_size >= d_alloc) {
683 d_alloc *= 2;
Doug Zongker28ce47c2011-10-28 10:33:05 -0700684 dirs = (char**)realloc(dirs, d_alloc * sizeof(char*));
Doug Zongker8674a722010-09-15 11:08:23 -0700685 }
Doug Zongker28ce47c2011-10-28 10:33:05 -0700686 dirs[d_size] = (char*)malloc(name_len + 2);
Doug Zongker8674a722010-09-15 11:08:23 -0700687 strcpy(dirs[d_size], de->d_name);
688 dirs[d_size][name_len] = '/';
689 dirs[d_size][name_len+1] = '\0';
690 ++d_size;
691 } else if (de->d_type == DT_REG &&
692 name_len >= 4 &&
693 strncasecmp(de->d_name + (name_len-4), ".zip", 4) == 0) {
694 if (z_size >= z_alloc) {
695 z_alloc *= 2;
Doug Zongker28ce47c2011-10-28 10:33:05 -0700696 zips = (char**)realloc(zips, z_alloc * sizeof(char*));
Doug Zongker8674a722010-09-15 11:08:23 -0700697 }
698 zips[z_size++] = strdup(de->d_name);
699 }
700 }
701 closedir(d);
702
703 qsort(dirs, d_size, sizeof(char*), compare_string);
704 qsort(zips, z_size, sizeof(char*), compare_string);
705
706 // append dirs to the zips list
707 if (d_size + z_size + 1 > z_alloc) {
708 z_alloc = d_size + z_size + 1;
Doug Zongker28ce47c2011-10-28 10:33:05 -0700709 zips = (char**)realloc(zips, z_alloc * sizeof(char*));
Doug Zongker8674a722010-09-15 11:08:23 -0700710 }
711 memcpy(zips + z_size, dirs, d_size * sizeof(char*));
712 free(dirs);
713 z_size += d_size;
714 zips[z_size] = NULL;
715
Elliott Hughes8fd86d72015-04-13 14:36:02 -0700716 const char* headers[] = { "Choose a package to install:", path, NULL };
Elliott Hughes30694c92015-03-25 15:16:51 -0700717
Doug Zongker93950222014-07-08 14:10:23 -0700718 char* result;
Doug Zongker8674a722010-09-15 11:08:23 -0700719 int chosen_item = 0;
Doug Zongker93950222014-07-08 14:10:23 -0700720 while (true) {
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700721 chosen_item = get_menu_selection(headers, zips, 1, chosen_item, device);
Doug Zongker8674a722010-09-15 11:08:23 -0700722
723 char* item = zips[chosen_item];
724 int item_len = strlen(item);
725 if (chosen_item == 0) { // item 0 is always "../"
Michael Ward9d2629c2011-06-23 22:14:24 -0700726 // go up but continue browsing (if the caller is update_directory)
Doug Zongker93950222014-07-08 14:10:23 -0700727 result = NULL;
Doug Zongker8674a722010-09-15 11:08:23 -0700728 break;
729 }
Doug Zongker93950222014-07-08 14:10:23 -0700730
731 char new_path[PATH_MAX];
732 strlcpy(new_path, path, PATH_MAX);
733 strlcat(new_path, "/", PATH_MAX);
734 strlcat(new_path, item, PATH_MAX);
735
736 if (item[item_len-1] == '/') {
737 // recurse down into a subdirectory
738 new_path[strlen(new_path)-1] = '\0'; // truncate the trailing '/'
739 result = browse_directory(new_path, device);
740 if (result) break;
741 } else {
742 // selected a zip file: return the malloc'd path to the caller.
743 result = strdup(new_path);
744 break;
745 }
746 }
Doug Zongker8674a722010-09-15 11:08:23 -0700747
Elliott Hughes30694c92015-03-25 15:16:51 -0700748 for (int i = 0; i < z_size; ++i) free(zips[i]);
Doug Zongker8674a722010-09-15 11:08:23 -0700749 free(zips);
Doug Zongker8674a722010-09-15 11:08:23 -0700750
751 return result;
752}
753
Elliott Hughes30694c92015-03-25 15:16:51 -0700754static bool yes_no(Device* device, const char* question1, const char* question2) {
Elliott Hughes8fd86d72015-04-13 14:36:02 -0700755 const char* headers[] = { question1, question2, NULL };
Elliott Hughes30694c92015-03-25 15:16:51 -0700756 const char* items[] = { " No", " Yes", NULL };
Doug Zongkerddd6a282009-06-09 12:22:33 -0700757
Elliott Hughes30694c92015-03-25 15:16:51 -0700758 int chosen_item = get_menu_selection(headers, items, 1, 0, device);
759 return (chosen_item == 1);
760}
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800761
Tao Baoe39a9bc2015-03-31 12:19:05 -0700762// Return true on success.
763static bool wipe_data(int should_confirm, Device* device) {
764 if (should_confirm && !yes_no(device, "Wipe all user data?", " THIS CAN NOT BE UNDONE!")) {
765 return false;
Doug Zongkerf93d8162009-09-22 15:16:02 -0700766 }
Doug Zongker1066d2c2009-04-01 13:57:40 -0700767
Tao Bao682c34b2015-04-07 17:16:35 -0700768 modified_flash = true;
769
Doug Zongker211aebc2011-10-28 15:13:10 -0700770 ui->Print("\n-- Wiping data...\n");
Elliott Hughes945548e2015-06-05 17:59:56 -0700771 bool success =
772 device->PreWipeData() &&
773 erase_volume("/data") &&
774 erase_volume("/cache") &&
775 device->PostWipeData();
776 ui->Print("Data wipe %s.\n", success ? "complete" : "failed");
777 return success;
Doug Zongkerf93d8162009-09-22 15:16:02 -0700778}
779
Tao Baoe39a9bc2015-03-31 12:19:05 -0700780// Return true on success.
781static bool wipe_cache(bool should_confirm, Device* device) {
Elliott Hughes30694c92015-03-25 15:16:51 -0700782 if (should_confirm && !yes_no(device, "Wipe cache?", " THIS CAN NOT BE UNDONE!")) {
Tao Baoe39a9bc2015-03-31 12:19:05 -0700783 return false;
Elliott Hughes30694c92015-03-25 15:16:51 -0700784 }
785
Tao Bao682c34b2015-04-07 17:16:35 -0700786 modified_flash = true;
787
Elliott Hughes30694c92015-03-25 15:16:51 -0700788 ui->Print("\n-- Wiping cache...\n");
Elliott Hughes945548e2015-06-05 17:59:56 -0700789 bool success = erase_volume("/cache");
790 ui->Print("Cache wipe %s.\n", success ? "complete" : "failed");
791 return success;
Elliott Hughes30694c92015-03-25 15:16:51 -0700792}
793
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700794static void choose_recovery_file(Device* device) {
Elliott Hughesc0491632015-05-06 12:40:05 -0700795 // "Back" + KEEP_LOG_COUNT * 2 + terminating nullptr entry
796 char* entries[1 + KEEP_LOG_COUNT * 2 + 1];
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700797 memset(entries, 0, sizeof(entries));
798
Tao Baobef39712015-05-04 18:50:27 -0700799 unsigned int n = 0;
Patrick Tjincd055ee2014-12-09 11:26:40 -0800800
Patrick Tjincd055ee2014-12-09 11:26:40 -0800801 // Add LAST_LOG_FILE + LAST_LOG_FILE.x
Tao Baobef39712015-05-04 18:50:27 -0700802 // Add LAST_KMSG_FILE + LAST_KMSG_FILE.x
803 for (int i = 0; i < KEEP_LOG_COUNT; i++) {
804 char* log_file;
Tao Bao80e46e02015-06-03 10:49:29 -0700805 int ret;
806 ret = (i == 0) ? asprintf(&log_file, "%s", LAST_LOG_FILE) :
807 asprintf(&log_file, "%s.%d", LAST_LOG_FILE, i);
808 if (ret == -1) {
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700809 // memory allocation failure - return early. Should never happen.
810 return;
811 }
Tao Baobef39712015-05-04 18:50:27 -0700812 if ((ensure_path_mounted(log_file) != 0) || (access(log_file, R_OK) == -1)) {
813 free(log_file);
814 } else {
815 entries[n++] = log_file;
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700816 }
Tao Baobef39712015-05-04 18:50:27 -0700817
818 char* kmsg_file;
Tao Bao80e46e02015-06-03 10:49:29 -0700819 ret = (i == 0) ? asprintf(&kmsg_file, "%s", LAST_KMSG_FILE) :
820 asprintf(&kmsg_file, "%s.%d", LAST_KMSG_FILE, i);
821 if (ret == -1) {
Tao Baobef39712015-05-04 18:50:27 -0700822 // memory allocation failure - return early. Should never happen.
823 return;
824 }
825 if ((ensure_path_mounted(kmsg_file) != 0) || (access(kmsg_file, R_OK) == -1)) {
826 free(kmsg_file);
827 } else {
828 entries[n++] = kmsg_file;
829 }
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700830 }
831
Elliott Hughesc0491632015-05-06 12:40:05 -0700832 entries[n++] = strdup("Back");
833
Tao Baobef39712015-05-04 18:50:27 -0700834 const char* headers[] = { "Select file to view", nullptr };
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700835
Elliott Hughes8de52072015-04-08 20:06:50 -0700836 while (true) {
Elliott Hughes30694c92015-03-25 15:16:51 -0700837 int chosen_item = get_menu_selection(headers, entries, 1, 0, device);
Elliott Hughesc0491632015-05-06 12:40:05 -0700838 if (strcmp(entries[chosen_item], "Back") == 0) break;
Elliott Hughes8de52072015-04-08 20:06:50 -0700839
Elliott Hughes8de52072015-04-08 20:06:50 -0700840 ui->ShowFile(entries[chosen_item]);
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700841 }
842
Tao Baobef39712015-05-04 18:50:27 -0700843 for (size_t i = 0; i < (sizeof(entries) / sizeof(*entries)); i++) {
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700844 free(entries[i]);
845 }
846}
847
Tao Baocdcf28f2016-01-13 15:05:20 -0800848// How long (in seconds) we wait for the fuse-provided package file to
849// appear, before timing out.
850#define SDCARD_INSTALL_TIMEOUT 10
851
Tao Bao145d8612015-03-25 15:51:15 -0700852static int apply_from_sdcard(Device* device, bool* wipe_cache) {
Tao Bao682c34b2015-04-07 17:16:35 -0700853 modified_flash = true;
854
Christian Poetzsch4ec58a42015-02-19 10:42:39 +0000855 if (ensure_path_mounted(SDCARD_ROOT) != 0) {
856 ui->Print("\n-- Couldn't mount %s.\n", SDCARD_ROOT);
857 return INSTALL_ERROR;
858 }
859
860 char* path = browse_directory(SDCARD_ROOT, device);
861 if (path == NULL) {
Elliott Hughes018ed312015-04-08 16:51:36 -0700862 ui->Print("\n-- No package file selected.\n");
caozhiyuanb4effb92015-06-10 16:46:38 +0800863 ensure_path_unmounted(SDCARD_ROOT);
Christian Poetzsch4ec58a42015-02-19 10:42:39 +0000864 return INSTALL_ERROR;
865 }
866
867 ui->Print("\n-- Install %s ...\n", path);
868 set_sdcard_update_bootloader_message();
Christian Poetzsch4ec58a42015-02-19 10:42:39 +0000869
Tao Baocdcf28f2016-01-13 15:05:20 -0800870 // We used to use fuse in a thread as opposed to a process. Since accessing
871 // through fuse involves going from kernel to userspace to kernel, it leads
872 // to deadlock when a page fault occurs. (Bug: 26313124)
873 pid_t child;
874 if ((child = fork()) == 0) {
875 bool status = start_sdcard_fuse(path);
876
877 _exit(status ? EXIT_SUCCESS : EXIT_FAILURE);
878 }
879
880 // FUSE_SIDELOAD_HOST_PATHNAME will start to exist once the fuse in child
881 // process is ready.
882 int result = INSTALL_ERROR;
883 int status;
884 bool waited = false;
885 for (int i = 0; i < SDCARD_INSTALL_TIMEOUT; ++i) {
886 if (waitpid(child, &status, WNOHANG) == -1) {
887 result = INSTALL_ERROR;
888 waited = true;
889 break;
890 }
891
892 struct stat sb;
893 if (stat(FUSE_SIDELOAD_HOST_PATHNAME, &sb) == -1) {
894 if (errno == ENOENT && i < SDCARD_INSTALL_TIMEOUT-1) {
895 sleep(1);
896 continue;
897 } else {
898 LOGE("Timed out waiting for the fuse-provided package.\n");
899 result = INSTALL_ERROR;
900 kill(child, SIGKILL);
901 break;
902 }
903 }
904
905 result = install_package(FUSE_SIDELOAD_HOST_PATHNAME, wipe_cache,
Christian Poetzsch4ec58a42015-02-19 10:42:39 +0000906 TEMPORARY_INSTALL_FILE, false);
Tao Baocdcf28f2016-01-13 15:05:20 -0800907 break;
908 }
Christian Poetzsch4ec58a42015-02-19 10:42:39 +0000909
Tao Baocdcf28f2016-01-13 15:05:20 -0800910 if (!waited) {
911 // Calling stat() on this magic filename signals the fuse
912 // filesystem to shut down.
913 struct stat sb;
914 stat(FUSE_SIDELOAD_HOST_EXIT_PATHNAME, &sb);
915
916 waitpid(child, &status, 0);
917 }
918
919 if (!WIFEXITED(status) || WEXITSTATUS(status) != 0) {
920 LOGE("Error exit from the fuse process: %d\n", WEXITSTATUS(status));
921 }
922
Christian Poetzsch4ec58a42015-02-19 10:42:39 +0000923 ensure_path_unmounted(SDCARD_ROOT);
Tao Baocdcf28f2016-01-13 15:05:20 -0800924 return result;
Christian Poetzsch4ec58a42015-02-19 10:42:39 +0000925}
926
Doug Zongker8d9d3d52014-04-01 13:20:23 -0700927// Return REBOOT, SHUTDOWN, or REBOOT_BOOTLOADER. Returning NO_ACTION
928// means to take the default, which is to reboot or shutdown depending
929// on if the --shutdown_after flag was passed to recovery.
930static Device::BuiltinAction
Doug Zongker6c8553d2012-09-24 10:40:47 -0700931prompt_and_wait(Device* device, int status) {
Doug Zongkerf93d8162009-09-22 15:16:02 -0700932 for (;;) {
933 finish_recovery(NULL);
Doug Zongker6c8553d2012-09-24 10:40:47 -0700934 switch (status) {
935 case INSTALL_SUCCESS:
936 case INSTALL_NONE:
937 ui->SetBackground(RecoveryUI::NO_COMMAND);
938 break;
939
940 case INSTALL_ERROR:
941 case INSTALL_CORRUPT:
942 ui->SetBackground(RecoveryUI::ERROR);
943 break;
944 }
Doug Zongker211aebc2011-10-28 15:13:10 -0700945 ui->SetProgressType(RecoveryUI::EMPTY);
Doug Zongkerf93d8162009-09-22 15:16:02 -0700946
Elliott Hughes8fd86d72015-04-13 14:36:02 -0700947 int chosen_item = get_menu_selection(nullptr, device->GetMenuItems(), 0, 0, device);
Doug Zongkerf93d8162009-09-22 15:16:02 -0700948
949 // device-specific code may take some action here. It may
950 // return one of the core actions handled in the switch
951 // statement below.
Doug Zongker8d9d3d52014-04-01 13:20:23 -0700952 Device::BuiltinAction chosen_action = device->InvokeMenuItem(chosen_item);
Doug Zongkerf93d8162009-09-22 15:16:02 -0700953
Elliott Hughes30694c92015-03-25 15:16:51 -0700954 bool should_wipe_cache = false;
Doug Zongker8d9d3d52014-04-01 13:20:23 -0700955 switch (chosen_action) {
956 case Device::NO_ACTION:
957 break;
958
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700959 case Device::REBOOT:
Doug Zongker8d9d3d52014-04-01 13:20:23 -0700960 case Device::SHUTDOWN:
961 case Device::REBOOT_BOOTLOADER:
962 return chosen_action;
Doug Zongkerf93d8162009-09-22 15:16:02 -0700963
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700964 case Device::WIPE_DATA:
965 wipe_data(ui->IsTextVisible(), device);
Doug Zongker8d9d3d52014-04-01 13:20:23 -0700966 if (!ui->IsTextVisible()) return Device::NO_ACTION;
Doug Zongkerf93d8162009-09-22 15:16:02 -0700967 break;
968
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700969 case Device::WIPE_CACHE:
Elliott Hughes30694c92015-03-25 15:16:51 -0700970 wipe_cache(ui->IsTextVisible(), device);
Doug Zongker8d9d3d52014-04-01 13:20:23 -0700971 if (!ui->IsTextVisible()) return Device::NO_ACTION;
Doug Zongkerf93d8162009-09-22 15:16:02 -0700972 break;
973
Christian Poetzsch4ec58a42015-02-19 10:42:39 +0000974 case Device::APPLY_ADB_SIDELOAD:
Elliott Hughesec283402015-04-10 10:01:53 -0700975 case Device::APPLY_SDCARD:
Christian Poetzsch4ec58a42015-02-19 10:42:39 +0000976 {
977 bool adb = (chosen_action == Device::APPLY_ADB_SIDELOAD);
978 if (adb) {
Elliott Hughes30694c92015-03-25 15:16:51 -0700979 status = apply_from_adb(ui, &should_wipe_cache, TEMPORARY_INSTALL_FILE);
Doug Zongkerd0181b82011-10-19 10:51:12 -0700980 } else {
Elliott Hughes30694c92015-03-25 15:16:51 -0700981 status = apply_from_sdcard(device, &should_wipe_cache);
Doug Zongkerd0181b82011-10-19 10:51:12 -0700982 }
Doug Zongker945fc682014-07-10 10:50:39 -0700983
Elliott Hughes30694c92015-03-25 15:16:51 -0700984 if (status == INSTALL_SUCCESS && should_wipe_cache) {
Tao Baoe39a9bc2015-03-31 12:19:05 -0700985 if (!wipe_cache(false, device)) {
986 status = INSTALL_ERROR;
987 }
Christian Poetzsch4ec58a42015-02-19 10:42:39 +0000988 }
989
Tao Baoc679f932015-03-30 09:43:49 -0700990 if (status != INSTALL_SUCCESS) {
991 ui->SetBackground(RecoveryUI::ERROR);
992 ui->Print("Installation aborted.\n");
993 copy_logs();
994 } else if (!ui->IsTextVisible()) {
995 return Device::NO_ACTION; // reboot if logs aren't visible
996 } else {
997 ui->Print("\nInstall from %s complete.\n", adb ? "ADB" : "SD card");
Doug Zongker8674a722010-09-15 11:08:23 -0700998 }
Doug Zongkerf93d8162009-09-22 15:16:02 -0700999 }
1000 break;
Doug Zongkerdaefc1d2011-10-31 09:34:15 -07001001
Elliott Hughesec283402015-04-10 10:01:53 -07001002 case Device::VIEW_RECOVERY_LOGS:
1003 choose_recovery_file(device);
Michael Ward9d2629c2011-06-23 22:14:24 -07001004 break;
Doug Zongker9270a202012-01-09 15:16:13 -08001005
Elliott Hughesec283402015-04-10 10:01:53 -07001006 case Device::MOUNT_SYSTEM:
Tao Baoabb8f772015-07-30 14:43:27 -07001007 char system_root_image[PROPERTY_VALUE_MAX];
1008 property_get("ro.build.system_root_image", system_root_image, "");
1009
1010 // For a system image built with the root directory (i.e.
1011 // system_root_image == "true"), we mount it to /system_root, and symlink /system
1012 // to /system_root/system to make adb shell work (the symlink is created through
1013 // the build system).
1014 // Bug: 22855115
1015 if (strcmp(system_root_image, "true") == 0) {
1016 if (ensure_path_mounted_at("/", "/system_root") != -1) {
1017 ui->Print("Mounted /system.\n");
1018 }
1019 } else {
1020 if (ensure_path_mounted("/system") != -1) {
1021 ui->Print("Mounted /system.\n");
1022 }
Elliott Hughesec283402015-04-10 10:01:53 -07001023 }
Tao Baoabb8f772015-07-30 14:43:27 -07001024
Nick Kralevicha9ad0322014-10-22 18:38:48 -07001025 break;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001026 }
1027 }
1028}
1029
1030static void
Oscar Montemayor05231562009-11-30 08:40:57 -08001031print_property(const char *key, const char *name, void *cookie) {
Doug Zongker56c51052010-07-01 09:18:44 -07001032 printf("%s=%s\n", key, name);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001033}
1034
Doug Zongker02ec6b82012-08-22 17:26:40 -07001035static void
1036load_locale_from_cache() {
1037 FILE* fp = fopen_path(LOCALE_FILE, "r");
1038 char buffer[80];
1039 if (fp != NULL) {
1040 fgets(buffer, sizeof(buffer), fp);
1041 int j = 0;
Doug Zongker5fa8c232012-09-18 12:37:02 -07001042 unsigned int i;
Doug Zongker02ec6b82012-08-22 17:26:40 -07001043 for (i = 0; i < sizeof(buffer) && buffer[i]; ++i) {
1044 if (!isspace(buffer[i])) {
1045 buffer[j++] = buffer[i];
1046 }
1047 }
1048 buffer[j] = 0;
1049 locale = strdup(buffer);
Devin Kim6016d082012-10-08 09:47:37 -07001050 check_and_fclose(fp, LOCALE_FILE);
Doug Zongker02ec6b82012-08-22 17:26:40 -07001051 }
1052}
1053
Doug Zongker7c3ae452013-05-14 11:03:02 -07001054static RecoveryUI* gCurrentUI = NULL;
1055
1056void
1057ui_print(const char* format, ...) {
1058 char buffer[256];
1059
1060 va_list ap;
1061 va_start(ap, format);
1062 vsnprintf(buffer, sizeof(buffer), format, ap);
1063 va_end(ap);
1064
1065 if (gCurrentUI != NULL) {
1066 gCurrentUI->Print("%s", buffer);
1067 } else {
1068 fputs(buffer, stdout);
1069 }
1070}
1071
Yabin Cui53e7a062016-02-17 12:21:52 -08001072static bool is_battery_ok() {
1073 struct healthd_config healthd_config = {
1074 .batteryStatusPath = android::String8(android::String8::kEmptyString),
1075 .batteryHealthPath = android::String8(android::String8::kEmptyString),
1076 .batteryPresentPath = android::String8(android::String8::kEmptyString),
1077 .batteryCapacityPath = android::String8(android::String8::kEmptyString),
1078 .batteryVoltagePath = android::String8(android::String8::kEmptyString),
1079 .batteryTemperaturePath = android::String8(android::String8::kEmptyString),
1080 .batteryTechnologyPath = android::String8(android::String8::kEmptyString),
1081 .batteryCurrentNowPath = android::String8(android::String8::kEmptyString),
1082 .batteryCurrentAvgPath = android::String8(android::String8::kEmptyString),
1083 .batteryChargeCounterPath = android::String8(android::String8::kEmptyString),
1084 .batteryFullChargePath = android::String8(android::String8::kEmptyString),
1085 .batteryCycleCountPath = android::String8(android::String8::kEmptyString),
1086 .energyCounter = NULL,
1087 .boot_min_cap = 0,
1088 .screen_on = NULL
1089 };
1090 healthd_board_init(&healthd_config);
1091
1092 android::BatteryMonitor monitor;
1093 monitor.init(&healthd_config);
1094
1095 int wait_second = 0;
1096 while (true) {
1097 int charge_status = monitor.getChargeStatus();
1098 // Treat unknown status as charged.
1099 bool charged = (charge_status != android::BATTERY_STATUS_DISCHARGING &&
1100 charge_status != android::BATTERY_STATUS_NOT_CHARGING);
1101 android::BatteryProperty capacity;
1102 android::status_t status = monitor.getProperty(android::BATTERY_PROP_CAPACITY, &capacity);
1103 ui_print("charge_status %d, charged %d, status %d, capacity %lld\n", charge_status,
1104 charged, status, capacity.valueInt64);
1105 // At startup, the battery drivers in devices like N5X/N6P take some time to load
1106 // the battery profile. Before the load finishes, it reports value 50 as a fake
1107 // capacity. BATTERY_READ_TIMEOUT_IN_SEC is set that the battery drivers are expected
1108 // to finish loading the battery profile earlier than 10 seconds after kernel startup.
1109 if (status == 0 && capacity.valueInt64 == 50) {
1110 if (wait_second < BATTERY_READ_TIMEOUT_IN_SEC) {
1111 sleep(1);
1112 wait_second++;
1113 continue;
1114 }
1115 }
1116 // If we can't read battery percentage, it may be a device without battery. In this
1117 // situation, use 100 as a fake battery percentage.
1118 if (status != 0) {
1119 capacity.valueInt64 = 100;
1120 }
1121 return (charged && capacity.valueInt64 >= BATTERY_WITH_CHARGER_OK_PERCENTAGE) ||
1122 (!charged && capacity.valueInt64 >= BATTERY_OK_PERCENTAGE);
1123 }
1124}
1125
Tianjie Xu3c62b672016-02-05 18:25:58 -08001126static void set_retry_bootloader_message(int retry_count, int argc, char** argv) {
1127 struct bootloader_message boot {};
1128 strlcpy(boot.command, "boot-recovery", sizeof(boot.command));
1129 strlcpy(boot.recovery, "recovery\n", sizeof(boot.recovery));
1130
1131 for (int i = 1; i < argc; ++i) {
1132 if (strstr(argv[i], "retry_count") == nullptr) {
1133 strlcat(boot.recovery, argv[i], sizeof(boot.recovery));
1134 strlcat(boot.recovery, "\n", sizeof(boot.recovery));
1135 }
1136 }
1137
1138 // Initialize counter to 1 if it's not in BCB, otherwise increment it by 1.
1139 if (retry_count == 0) {
1140 strlcat(boot.recovery, "--retry_count=1\n", sizeof(boot.recovery));
1141 } else {
1142 char buffer[20];
1143 snprintf(buffer, sizeof(buffer), "--retry_count=%d\n", retry_count+1);
1144 strlcat(boot.recovery, buffer, sizeof(boot.recovery));
1145 }
1146 set_bootloader_message(&boot);
1147}
1148
Yabin Cui53e7a062016-02-17 12:21:52 -08001149int main(int argc, char **argv) {
Doug Zongker9270a202012-01-09 15:16:13 -08001150 // If this binary is started with the single argument "--adbd",
1151 // instead of being the normal recovery binary, it turns into kind
1152 // of a stripped-down version of adbd that only supports the
1153 // 'sideload' command. Note this must be a real argument, not
1154 // anything in the command file or bootloader control block; the
1155 // only way recovery should be run with this argument is when it
1156 // starts a copy of itself from the apply_from_adb() function.
1157 if (argc == 2 && strcmp(argv[1], "--adbd") == 0) {
Elliott Hughes9f4fdb32015-11-20 13:03:24 -08001158 adb_server_main(0, DEFAULT_ADB_PORT, -1);
Doug Zongker9270a202012-01-09 15:16:13 -08001159 return 0;
1160 }
1161
Tao Bao04ca4262015-09-10 15:32:24 -07001162 time_t start = time(NULL);
1163
1164 // redirect_stdio should be called only in non-sideload mode. Otherwise
1165 // we may have two logger instances with different timestamps.
1166 redirect_stdio(TEMPORARY_LOG_FILE);
1167
Doug Zongker19a8e242014-01-21 09:25:41 -08001168 printf("Starting recovery (pid %d) on %s", getpid(), ctime(&start));
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001169
Doug Zongkerd4208f92010-09-20 12:16:13 -07001170 load_volume_table();
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001171 get_args(&argc, &argv);
1172
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001173 const char *send_intent = NULL;
1174 const char *update_package = NULL;
Tao Baoe39a9bc2015-03-31 12:19:05 -07001175 bool should_wipe_data = false;
Tao Baoc679f932015-03-30 09:43:49 -07001176 bool should_wipe_cache = false;
Tao Bao145d8612015-03-25 15:51:15 -07001177 bool show_text = false;
Tao Baoc679f932015-03-30 09:43:49 -07001178 bool sideload = false;
1179 bool sideload_auto_reboot = false;
Doug Zongkere5d5ac72012-04-12 11:01:22 -07001180 bool just_exit = false;
Doug Zongkerb1d12632014-03-18 10:32:12 -07001181 bool shutdown_after = false;
Tianjie Xu3c62b672016-02-05 18:25:58 -08001182 int retry_count = 0;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001183
1184 int arg;
1185 while ((arg = getopt_long(argc, argv, "", OPTIONS, NULL)) != -1) {
1186 switch (arg) {
Tao Baoc679f932015-03-30 09:43:49 -07001187 case 'i': send_intent = optarg; break;
Tianjie Xu3c62b672016-02-05 18:25:58 -08001188 case 'n': android::base::ParseInt(optarg, &retry_count, 0); break;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001189 case 'u': update_package = optarg; break;
Tao Baoe39a9bc2015-03-31 12:19:05 -07001190 case 'w': should_wipe_data = true; break;
Tao Baoc679f932015-03-30 09:43:49 -07001191 case 'c': should_wipe_cache = true; break;
Tao Bao145d8612015-03-25 15:51:15 -07001192 case 't': show_text = true; break;
Tao Baoc679f932015-03-30 09:43:49 -07001193 case 's': sideload = true; break;
1194 case 'a': sideload = true; sideload_auto_reboot = true; break;
Doug Zongkere5d5ac72012-04-12 11:01:22 -07001195 case 'x': just_exit = true; break;
Doug Zongker02ec6b82012-08-22 17:26:40 -07001196 case 'l': locale = optarg; break;
Doug Zongkerc87bab12013-11-25 13:53:25 -08001197 case 'g': {
1198 if (stage == NULL || *stage == '\0') {
1199 char buffer[20] = "1/";
1200 strncat(buffer, optarg, sizeof(buffer)-3);
1201 stage = strdup(buffer);
1202 }
1203 break;
1204 }
Doug Zongkerb1d12632014-03-18 10:32:12 -07001205 case 'p': shutdown_after = true; break;
Jeff Sharkeya6e13ae2014-09-24 11:46:17 -07001206 case 'r': reason = optarg; break;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001207 case '?':
1208 LOGE("Invalid command argument\n");
1209 continue;
1210 }
1211 }
1212
Doug Zongker02ec6b82012-08-22 17:26:40 -07001213 if (locale == NULL) {
1214 load_locale_from_cache();
1215 }
1216 printf("locale is [%s]\n", locale);
Doug Zongker0d32f252014-02-13 15:07:56 -08001217 printf("stage is [%s]\n", stage);
Jeff Sharkeya6e13ae2014-09-24 11:46:17 -07001218 printf("reason is [%s]\n", reason);
Doug Zongker02ec6b82012-08-22 17:26:40 -07001219
1220 Device* device = make_device();
1221 ui = device->GetUI();
Doug Zongker7c3ae452013-05-14 11:03:02 -07001222 gCurrentUI = ui;
Doug Zongker02ec6b82012-08-22 17:26:40 -07001223
Doug Zongker5fa8c232012-09-18 12:37:02 -07001224 ui->SetLocale(locale);
Doug Zongker02ec6b82012-08-22 17:26:40 -07001225 ui->Init();
Doug Zongkerc87bab12013-11-25 13:53:25 -08001226
1227 int st_cur, st_max;
1228 if (stage != NULL && sscanf(stage, "%d/%d", &st_cur, &st_max) == 2) {
1229 ui->SetStage(st_cur, st_max);
1230 }
1231
Doug Zongker02ec6b82012-08-22 17:26:40 -07001232 ui->SetBackground(RecoveryUI::NONE);
1233 if (show_text) ui->ShowText(true);
1234
Stephen Smalley779701d2012-02-09 14:13:23 -05001235 struct selinux_opt seopts[] = {
1236 { SELABEL_OPT_PATH, "/file_contexts" }
1237 };
1238
1239 sehandle = selabel_open(SELABEL_CTX_FILE, seopts, 1);
1240
1241 if (!sehandle) {
Doug Zongkerfafc85b2013-07-09 12:29:45 -07001242 ui->Print("Warning: No file_contexts\n");
Stephen Smalley779701d2012-02-09 14:13:23 -05001243 }
Stephen Smalley779701d2012-02-09 14:13:23 -05001244
Doug Zongkerdaefc1d2011-10-31 09:34:15 -07001245 device->StartRecovery();
Doug Zongkerefa1bab2010-02-01 15:59:12 -08001246
Doug Zongker56c51052010-07-01 09:18:44 -07001247 printf("Command:");
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001248 for (arg = 0; arg < argc; arg++) {
Doug Zongker56c51052010-07-01 09:18:44 -07001249 printf(" \"%s\"", argv[arg]);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001250 }
Doug Zongker9b125b02010-09-22 12:01:37 -07001251 printf("\n");
1252
1253 if (update_package) {
1254 // For backwards compatibility on the cache partition only, if
1255 // we're given an old 'root' path "CACHE:foo", change it to
1256 // "/cache/foo".
1257 if (strncmp(update_package, "CACHE:", 6) == 0) {
1258 int len = strlen(update_package) + 10;
Doug Zongker28ce47c2011-10-28 10:33:05 -07001259 char* modified_path = (char*)malloc(len);
Jeremy Compostella1b7d9b72015-07-29 17:17:03 +02001260 if (modified_path) {
1261 strlcpy(modified_path, "/cache/", len);
1262 strlcat(modified_path, update_package+6, len);
1263 printf("(replacing path \"%s\" with \"%s\")\n",
1264 update_package, modified_path);
1265 update_package = modified_path;
1266 }
1267 else
1268 printf("modified_path allocation failed\n");
Doug Zongker9b125b02010-09-22 12:01:37 -07001269 }
1270 }
1271 printf("\n");
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001272
1273 property_list(print_property, NULL);
Doug Zongker56c51052010-07-01 09:18:44 -07001274 printf("\n");
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001275
Elliott Hughesbb78d622015-04-09 20:51:08 -07001276 ui->Print("Supported API: %d\n", RECOVERY_API_VERSION);
1277
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001278 int status = INSTALL_SUCCESS;
1279
Doug Zongker540d57f2011-01-18 13:36:58 -08001280 if (update_package != NULL) {
Yabin Cui53e7a062016-02-17 12:21:52 -08001281 if (!is_battery_ok()) {
1282 ui->Print("battery capacity is not enough for installing package, needed is %d%%\n",
1283 BATTERY_OK_PERCENTAGE);
1284 status = INSTALL_SKIPPED;
1285 } else {
1286 status = install_package(update_package, &should_wipe_cache,
1287 TEMPORARY_INSTALL_FILE, true);
1288 if (status == INSTALL_SUCCESS && should_wipe_cache) {
1289 wipe_cache(false, device);
1290 }
1291 if (status != INSTALL_SUCCESS) {
1292 ui->Print("Installation aborted.\n");
Tianjie Xu3c62b672016-02-05 18:25:58 -08001293 // When I/O error happens, reboot and retry installation EIO_RETRY_COUNT
1294 // times before we abandon this OTA update.
1295 if (status == INSTALL_RETRY && retry_count < EIO_RETRY_COUNT) {
1296 copy_logs();
1297 set_retry_bootloader_message(retry_count, argc, argv);
1298 // Print retry count on screen.
1299 ui->Print("Retry attempt %d\n", retry_count);
Doug Zongker7c3ae452013-05-14 11:03:02 -07001300
Tianjie Xu3c62b672016-02-05 18:25:58 -08001301 // Reboot and retry the update
1302 int ret = property_set(ANDROID_RB_PROPERTY, "reboot,recovery");
1303 if (ret < 0) {
1304 ui->Print("Reboot failed\n");
1305 } else {
1306 while (true) {
1307 pause();
1308 }
1309 }
1310 }
Yabin Cui53e7a062016-02-17 12:21:52 -08001311 // If this is an eng or userdebug build, then automatically
1312 // turn the text display on if the script fails so the error
1313 // message is visible.
1314 if (is_ro_debuggable()) {
1315 ui->ShowText(true);
1316 }
Doug Zongker7c3ae452013-05-14 11:03:02 -07001317 }
1318 }
Tao Baoe39a9bc2015-03-31 12:19:05 -07001319 } else if (should_wipe_data) {
1320 if (!wipe_data(false, device)) {
1321 status = INSTALL_ERROR;
1322 }
Tao Baoc679f932015-03-30 09:43:49 -07001323 } else if (should_wipe_cache) {
Tao Baoe39a9bc2015-03-31 12:19:05 -07001324 if (!wipe_cache(false, device)) {
1325 status = INSTALL_ERROR;
1326 }
Tao Baoc679f932015-03-30 09:43:49 -07001327 } else if (sideload) {
1328 // 'adb reboot sideload' acts the same as user presses key combinations
1329 // to enter the sideload mode. When 'sideload-auto-reboot' is used, text
1330 // display will NOT be turned on by default. And it will reboot after
1331 // sideload finishes even if there are errors. Unless one turns on the
1332 // text display during the installation. This is to enable automated
1333 // testing.
1334 if (!sideload_auto_reboot) {
1335 ui->ShowText(true);
1336 }
1337 status = apply_from_adb(ui, &should_wipe_cache, TEMPORARY_INSTALL_FILE);
1338 if (status == INSTALL_SUCCESS && should_wipe_cache) {
Tao Baoe39a9bc2015-03-31 12:19:05 -07001339 if (!wipe_cache(false, device)) {
1340 status = INSTALL_ERROR;
1341 }
Tao Baoc679f932015-03-30 09:43:49 -07001342 }
1343 ui->Print("\nInstall from ADB complete (status: %d).\n", status);
1344 if (sideload_auto_reboot) {
1345 ui->Print("Rebooting automatically.\n");
1346 }
Doug Zongkere5d5ac72012-04-12 11:01:22 -07001347 } else if (!just_exit) {
Doug Zongker02ec6b82012-08-22 17:26:40 -07001348 status = INSTALL_NONE; // No command specified
1349 ui->SetBackground(RecoveryUI::NO_COMMAND);
Tao Bao785d22c2015-05-04 09:34:29 -07001350
1351 // http://b/17489952
1352 // If this is an eng or userdebug build, automatically turn on the
1353 // text display if no command is specified.
1354 if (is_ro_debuggable()) {
1355 ui->ShowText(true);
1356 }
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001357 }
1358
Tao Baoc679f932015-03-30 09:43:49 -07001359 if (!sideload_auto_reboot && (status == INSTALL_ERROR || status == INSTALL_CORRUPT)) {
Doug Zongkerf24fd7e2013-07-02 11:43:25 -07001360 copy_logs();
Doug Zongker02ec6b82012-08-22 17:26:40 -07001361 ui->SetBackground(RecoveryUI::ERROR);
1362 }
Tao Baoc679f932015-03-30 09:43:49 -07001363
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001364 Device::BuiltinAction after = shutdown_after ? Device::SHUTDOWN : Device::REBOOT;
Yabin Cui53e7a062016-02-17 12:21:52 -08001365 if ((status != INSTALL_SUCCESS && status != INSTALL_SKIPPED && !sideload_auto_reboot) ||
1366 ui->IsTextVisible()) {
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001367 Device::BuiltinAction temp = prompt_and_wait(device, status);
Tao Baoc679f932015-03-30 09:43:49 -07001368 if (temp != Device::NO_ACTION) {
1369 after = temp;
1370 }
Doug Zongker8674a722010-09-15 11:08:23 -07001371 }
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001372
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001373 // Save logs and clean up before rebooting or shutting down.
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001374 finish_recovery(send_intent);
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001375
1376 switch (after) {
1377 case Device::SHUTDOWN:
1378 ui->Print("Shutting down...\n");
1379 property_set(ANDROID_RB_PROPERTY, "shutdown,");
1380 break;
1381
1382 case Device::REBOOT_BOOTLOADER:
1383 ui->Print("Rebooting to bootloader...\n");
1384 property_set(ANDROID_RB_PROPERTY, "reboot,bootloader");
1385 break;
1386
1387 default:
1388 ui->Print("Rebooting...\n");
1389 property_set(ANDROID_RB_PROPERTY, "reboot,");
1390 break;
Doug Zongkerb1d12632014-03-18 10:32:12 -07001391 }
Tao Bao75238632015-05-27 14:46:17 -07001392 while (true) {
1393 pause();
1394 }
1395 // Should be unreachable.
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001396 return EXIT_SUCCESS;
1397}