blob: 4ee835c983ef6f35d1c7c2c118616792a729d25b [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[] = {
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080062 { "update_package", required_argument, NULL, 'u' },
Tianjie Xu3c62b672016-02-05 18:25:58 -080063 { "retry_count", required_argument, NULL, 'n' },
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080064 { "wipe_data", no_argument, NULL, 'w' },
65 { "wipe_cache", no_argument, NULL, 'c' },
Doug Zongker4bc98062010-09-03 11:00:13 -070066 { "show_text", no_argument, NULL, 't' },
Tao Baoc679f932015-03-30 09:43:49 -070067 { "sideload", no_argument, NULL, 's' },
68 { "sideload_auto_reboot", no_argument, NULL, 'a' },
Doug Zongkere5d5ac72012-04-12 11:01:22 -070069 { "just_exit", no_argument, NULL, 'x' },
Doug Zongker02ec6b82012-08-22 17:26:40 -070070 { "locale", required_argument, NULL, 'l' },
Doug Zongkerc87bab12013-11-25 13:53:25 -080071 { "stages", required_argument, NULL, 'g' },
Doug Zongkerb1d12632014-03-18 10:32:12 -070072 { "shutdown_after", no_argument, NULL, 'p' },
Jeff Sharkeya6e13ae2014-09-24 11:46:17 -070073 { "reason", required_argument, NULL, 'r' },
Doug Zongker988500b2009-10-06 14:41:38 -070074 { NULL, 0, NULL, 0 },
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080075};
76
Doug Zongker6d0d7ac2013-07-09 13:34:55 -070077static const char *CACHE_LOG_DIR = "/cache/recovery";
Doug Zongkerd4208f92010-09-20 12:16:13 -070078static const char *COMMAND_FILE = "/cache/recovery/command";
Doug Zongkerd4208f92010-09-20 12:16:13 -070079static const char *LOG_FILE = "/cache/recovery/log";
Doug Zongkerd0181b82011-10-19 10:51:12 -070080static const char *LAST_INSTALL_FILE = "/cache/recovery/last_install";
Doug Zongker8b240cc2012-08-29 15:19:29 -070081static const char *LOCALE_FILE = "/cache/recovery/last_locale";
Michael Ward9d2629c2011-06-23 22:14:24 -070082static const char *CACHE_ROOT = "/cache";
Doug Zongkerd4208f92010-09-20 12:16:13 -070083static const char *SDCARD_ROOT = "/sdcard";
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080084static const char *TEMPORARY_LOG_FILE = "/tmp/recovery.log";
Doug Zongkerd0181b82011-10-19 10:51:12 -070085static const char *TEMPORARY_INSTALL_FILE = "/tmp/last_install";
Tao Baof0124322015-04-11 02:04:11 +000086static const char *LAST_KMSG_FILE = "/cache/recovery/last_kmsg";
Tao Baobef39712015-05-04 18:50:27 -070087static const char *LAST_LOG_FILE = "/cache/recovery/last_log";
88static const int KEEP_LOG_COUNT = 10;
Tianjie Xu3c62b672016-02-05 18:25:58 -080089static const int EIO_RETRY_COUNT = 2;
Yabin Cui53e7a062016-02-17 12:21:52 -080090static const int BATTERY_READ_TIMEOUT_IN_SEC = 10;
91// GmsCore enters recovery mode to install package when having enough battery
92// percentage. Normally, the threshold is 40% without charger and 20% with charger.
93// So we should check battery with a slightly lower limitation.
94static const int BATTERY_OK_PERCENTAGE = 20;
95static const int BATTERY_WITH_CHARGER_OK_PERCENTAGE = 15;
Nick Kralevicha9ad0322014-10-22 18:38:48 -070096
Doug Zongker211aebc2011-10-28 15:13:10 -070097RecoveryUI* ui = NULL;
Doug Zongker02ec6b82012-08-22 17:26:40 -070098char* locale = NULL;
Doug Zongkerc87bab12013-11-25 13:53:25 -080099char* stage = NULL;
Jeff Sharkeya6e13ae2014-09-24 11:46:17 -0700100char* reason = NULL;
Tao Bao682c34b2015-04-07 17:16:35 -0700101bool modified_flash = false;
Tao Bao26112e52016-02-25 12:29:40 -0800102static bool has_cache = false;
Doug Zongker211aebc2011-10-28 15:13:10 -0700103
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800104/*
105 * The recovery tool communicates with the main system through /cache files.
106 * /cache/recovery/command - INPUT - command line for tool, one arg per line
107 * /cache/recovery/log - OUTPUT - combined log file from recovery run(s)
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800108 *
109 * The arguments which may be supplied in the recovery.command file:
Doug Zongkerd4208f92010-09-20 12:16:13 -0700110 * --update_package=path - verify install an OTA package file
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800111 * --wipe_data - erase user data (and cache), then reboot
112 * --wipe_cache - wipe cache (but not user data), then reboot
Oscar Montemayor05231562009-11-30 08:40:57 -0800113 * --set_encrypted_filesystem=on|off - enables / diasables encrypted fs
Doug Zongkere5d5ac72012-04-12 11:01:22 -0700114 * --just_exit - do nothing; exit and reboot
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800115 *
116 * After completing, we remove /cache/recovery/command and reboot.
117 * Arguments may also be supplied in the bootloader control block (BCB).
118 * These important scenarios must be safely restartable at any point:
119 *
120 * FACTORY RESET
121 * 1. user selects "factory reset"
122 * 2. main system writes "--wipe_data" to /cache/recovery/command
123 * 3. main system reboots into recovery
124 * 4. get_args() writes BCB with "boot-recovery" and "--wipe_data"
125 * -- after this, rebooting will restart the erase --
Doug Zongkerd4208f92010-09-20 12:16:13 -0700126 * 5. erase_volume() reformats /data
127 * 6. erase_volume() reformats /cache
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800128 * 7. finish_recovery() erases BCB
129 * -- after this, rebooting will restart the main system --
130 * 8. main() calls reboot() to boot main system
131 *
132 * OTA INSTALL
133 * 1. main system downloads OTA package to /cache/some-filename.zip
Doug Zongker9b125b02010-09-22 12:01:37 -0700134 * 2. main system writes "--update_package=/cache/some-filename.zip"
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800135 * 3. main system reboots into recovery
136 * 4. get_args() writes BCB with "boot-recovery" and "--update_package=..."
137 * -- after this, rebooting will attempt to reinstall the update --
138 * 5. install_package() attempts to install the update
139 * NOTE: the package install must itself be restartable from any point
140 * 6. finish_recovery() erases BCB
141 * -- after this, rebooting will (try to) restart the main system --
142 * 7. ** if install failed **
143 * 7a. prompt_and_wait() shows an error icon and waits for the user
144 * 7b; the user reboots (pulling the battery, etc) into the main system
145 * 8. main() calls maybe_install_firmware_update()
146 * ** if the update contained radio/hboot firmware **:
147 * 8a. m_i_f_u() writes BCB with "boot-recovery" and "--wipe_cache"
148 * -- after this, rebooting will reformat cache & restart main system --
149 * 8b. m_i_f_u() writes firmware image into raw cache partition
150 * 8c. m_i_f_u() writes BCB with "update-radio/hboot" and "--wipe_cache"
151 * -- after this, rebooting will attempt to reinstall firmware --
152 * 8d. bootloader tries to flash firmware
153 * 8e. bootloader writes BCB with "boot-recovery" (keeping "--wipe_cache")
154 * -- after this, rebooting will reformat cache & restart main system --
Doug Zongkerd4208f92010-09-20 12:16:13 -0700155 * 8f. erase_volume() reformats /cache
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800156 * 8g. finish_recovery() erases BCB
157 * -- after this, rebooting will (try to) restart the main system --
158 * 9. main() calls reboot() to boot main system
159 */
160
161static const int MAX_ARG_LENGTH = 4096;
162static const int MAX_ARGS = 100;
163
Doug Zongkerd4208f92010-09-20 12:16:13 -0700164// open a given path, mounting partitions as necessary
Tao Bao04ca4262015-09-10 15:32:24 -0700165FILE* fopen_path(const char *path, const char *mode) {
Doug Zongkerd4208f92010-09-20 12:16:13 -0700166 if (ensure_path_mounted(path) != 0) {
167 LOGE("Can't mount %s\n", path);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800168 return NULL;
169 }
170
171 // When writing, try to create the containing directory, if necessary.
172 // Use generous permissions, the system (init.rc) will reset them.
Stephen Smalley779701d2012-02-09 14:13:23 -0500173 if (strchr("wa", mode[0])) dirCreateHierarchy(path, 0777, NULL, 1, sehandle);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800174
175 FILE *fp = fopen(path, mode);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800176 return fp;
177}
178
Tao Bao04ca4262015-09-10 15:32:24 -0700179// close a file, log an error if the error indicator is set
180static void check_and_fclose(FILE *fp, const char *name) {
181 fflush(fp);
182 if (ferror(fp)) LOGE("Error in %s\n(%s)\n", name, strerror(errno));
183 fclose(fp);
184}
185
Elliott Hughesf14af802015-02-10 14:46:14 -0800186bool is_ro_debuggable() {
187 char value[PROPERTY_VALUE_MAX+1];
188 return (property_get("ro.debuggable", value, NULL) == 1 && value[0] == '1');
189}
190
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700191static void redirect_stdio(const char* filename) {
Tao Bao04ca4262015-09-10 15:32:24 -0700192 int pipefd[2];
193 if (pipe(pipefd) == -1) {
194 LOGE("pipe failed: %s\n", strerror(errno));
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700195
Tao Bao04ca4262015-09-10 15:32:24 -0700196 // Fall back to traditional logging mode without timestamps.
197 // If these fail, there's not really anywhere to complain...
198 freopen(filename, "a", stdout); setbuf(stdout, NULL);
199 freopen(filename, "a", stderr); setbuf(stderr, NULL);
200
201 return;
202 }
203
204 pid_t pid = fork();
205 if (pid == -1) {
206 LOGE("fork failed: %s\n", strerror(errno));
207
208 // Fall back to traditional logging mode without timestamps.
209 // If these fail, there's not really anywhere to complain...
210 freopen(filename, "a", stdout); setbuf(stdout, NULL);
211 freopen(filename, "a", stderr); setbuf(stderr, NULL);
212
213 return;
214 }
215
216 if (pid == 0) {
217 /// Close the unused write end.
218 close(pipefd[1]);
219
220 auto start = std::chrono::steady_clock::now();
221
222 // Child logger to actually write to the log file.
223 FILE* log_fp = fopen(filename, "a");
224 if (log_fp == nullptr) {
225 LOGE("fopen \"%s\" failed: %s\n", filename, strerror(errno));
226 close(pipefd[0]);
227 _exit(1);
228 }
229
230 FILE* pipe_fp = fdopen(pipefd[0], "r");
231 if (pipe_fp == nullptr) {
232 LOGE("fdopen failed: %s\n", strerror(errno));
233 check_and_fclose(log_fp, filename);
234 close(pipefd[0]);
235 _exit(1);
236 }
237
238 char* line = nullptr;
239 size_t len = 0;
240 while (getline(&line, &len, pipe_fp) != -1) {
241 auto now = std::chrono::steady_clock::now();
242 double duration = std::chrono::duration_cast<std::chrono::duration<double>>(
243 now - start).count();
244 if (line[0] == '\n') {
245 fprintf(log_fp, "[%12.6lf]\n", duration);
246 } else {
247 fprintf(log_fp, "[%12.6lf] %s", duration, line);
248 }
249 fflush(log_fp);
250 }
251
252 LOGE("getline failed: %s\n", strerror(errno));
253
254 free(line);
255 check_and_fclose(log_fp, filename);
256 close(pipefd[0]);
257 _exit(1);
258 } else {
259 // Redirect stdout/stderr to the logger process.
260 // Close the unused read end.
261 close(pipefd[0]);
262
263 setbuf(stdout, nullptr);
264 setbuf(stderr, nullptr);
265
266 if (dup2(pipefd[1], STDOUT_FILENO) == -1) {
267 LOGE("dup2 stdout failed: %s\n", strerror(errno));
268 }
269 if (dup2(pipefd[1], STDERR_FILENO) == -1) {
270 LOGE("dup2 stderr failed: %s\n", strerror(errno));
271 }
272
273 close(pipefd[1]);
274 }
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800275}
276
277// command line args come from, in decreasing precedence:
278// - the actual command line
279// - the bootloader control block (one per line, after "recovery")
280// - the contents of COMMAND_FILE (one per line)
281static void
282get_args(int *argc, char ***argv) {
283 struct bootloader_message boot;
284 memset(&boot, 0, sizeof(boot));
285 get_bootloader_message(&boot); // this may fail, leaving a zeroed structure
Doug Zongkerc87bab12013-11-25 13:53:25 -0800286 stage = strndup(boot.stage, sizeof(boot.stage));
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800287
288 if (boot.command[0] != 0 && boot.command[0] != 255) {
Mark Salyzynf3bb31c2014-03-14 09:39:48 -0700289 LOGI("Boot command: %.*s\n", (int)sizeof(boot.command), boot.command);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800290 }
291
292 if (boot.status[0] != 0 && boot.status[0] != 255) {
Mark Salyzynf3bb31c2014-03-14 09:39:48 -0700293 LOGI("Boot status: %.*s\n", (int)sizeof(boot.status), boot.status);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800294 }
295
296 // --- if arguments weren't supplied, look in the bootloader control block
297 if (*argc <= 1) {
298 boot.recovery[sizeof(boot.recovery) - 1] = '\0'; // Ensure termination
299 const char *arg = strtok(boot.recovery, "\n");
300 if (arg != NULL && !strcmp(arg, "recovery")) {
301 *argv = (char **) malloc(sizeof(char *) * MAX_ARGS);
302 (*argv)[0] = strdup(arg);
303 for (*argc = 1; *argc < MAX_ARGS; ++*argc) {
304 if ((arg = strtok(NULL, "\n")) == NULL) break;
305 (*argv)[*argc] = strdup(arg);
306 }
307 LOGI("Got arguments from boot message\n");
308 } else if (boot.recovery[0] != 0 && boot.recovery[0] != 255) {
309 LOGE("Bad boot message\n\"%.20s\"\n", boot.recovery);
310 }
311 }
312
Tao Bao26112e52016-02-25 12:29:40 -0800313 // --- if that doesn't work, try the command file (if we have /cache).
314 if (*argc <= 1 && has_cache) {
Doug Zongkerd4208f92010-09-20 12:16:13 -0700315 FILE *fp = fopen_path(COMMAND_FILE, "r");
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800316 if (fp != NULL) {
Jin Feng93ffa752013-06-04 17:46:24 +0800317 char *token;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800318 char *argv0 = (*argv)[0];
319 *argv = (char **) malloc(sizeof(char *) * MAX_ARGS);
320 (*argv)[0] = argv0; // use the same program name
321
322 char buf[MAX_ARG_LENGTH];
323 for (*argc = 1; *argc < MAX_ARGS; ++*argc) {
324 if (!fgets(buf, sizeof(buf), fp)) break;
Jin Feng93ffa752013-06-04 17:46:24 +0800325 token = strtok(buf, "\r\n");
326 if (token != NULL) {
327 (*argv)[*argc] = strdup(token); // Strip newline.
328 } else {
329 --*argc;
330 }
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800331 }
332
333 check_and_fclose(fp, COMMAND_FILE);
334 LOGI("Got arguments from %s\n", COMMAND_FILE);
335 }
336 }
337
338 // --> write the arguments we have back into the bootloader control block
339 // always boot into recovery after this (until finish_recovery() is called)
340 strlcpy(boot.command, "boot-recovery", sizeof(boot.command));
341 strlcpy(boot.recovery, "recovery\n", sizeof(boot.recovery));
342 int i;
343 for (i = 1; i < *argc; ++i) {
344 strlcat(boot.recovery, (*argv)[i], sizeof(boot.recovery));
345 strlcat(boot.recovery, "\n", sizeof(boot.recovery));
346 }
347 set_bootloader_message(&boot);
348}
349
Doug Zongker34c98df2009-08-18 12:05:45 -0700350static void
Oscar Montemayor05231562009-11-30 08:40:57 -0800351set_sdcard_update_bootloader_message() {
Doug Zongker34c98df2009-08-18 12:05:45 -0700352 struct bootloader_message boot;
353 memset(&boot, 0, sizeof(boot));
354 strlcpy(boot.command, "boot-recovery", sizeof(boot.command));
355 strlcpy(boot.recovery, "recovery\n", sizeof(boot.recovery));
356 set_bootloader_message(&boot);
357}
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800358
Tao Baobef39712015-05-04 18:50:27 -0700359// Read from kernel log into buffer and write out to file.
360static void save_kernel_log(const char* destination) {
361 int klog_buf_len = klogctl(KLOG_SIZE_BUFFER, 0, 0);
Patrick Tjincd055ee2014-12-09 11:26:40 -0800362 if (klog_buf_len <= 0) {
Tao Baobef39712015-05-04 18:50:27 -0700363 LOGE("Error getting klog size: %s\n", strerror(errno));
Patrick Tjincd055ee2014-12-09 11:26:40 -0800364 return;
365 }
366
Tao Baobef39712015-05-04 18:50:27 -0700367 std::string buffer(klog_buf_len, 0);
368 int n = klogctl(KLOG_READ_ALL, &buffer[0], klog_buf_len);
369 if (n == -1) {
370 LOGE("Error in reading klog: %s\n", strerror(errno));
Patrick Tjincd055ee2014-12-09 11:26:40 -0800371 return;
372 }
Tao Baobef39712015-05-04 18:50:27 -0700373 buffer.resize(n);
374 android::base::WriteStringToFile(buffer, destination);
Patrick Tjincd055ee2014-12-09 11:26:40 -0800375}
376
Tao Baof0124322015-04-11 02:04:11 +0000377// How much of the temp log we have copied to the copy in cache.
378static long tmplog_offset = 0;
379
Tao Baobef39712015-05-04 18:50:27 -0700380static void copy_log_file(const char* source, const char* destination, bool append) {
381 FILE* dest_fp = fopen_path(destination, append ? "a" : "w");
382 if (dest_fp == nullptr) {
Doug Zongker2c3539e2010-09-29 13:21:30 -0700383 LOGE("Can't open %s\n", destination);
384 } else {
Tao Baobef39712015-05-04 18:50:27 -0700385 FILE* source_fp = fopen(source, "r");
386 if (source_fp != nullptr) {
Tao Baof0124322015-04-11 02:04:11 +0000387 if (append) {
Tao Baobef39712015-05-04 18:50:27 -0700388 fseek(source_fp, tmplog_offset, SEEK_SET); // Since last write
Doug Zongker2c3539e2010-09-29 13:21:30 -0700389 }
390 char buf[4096];
Tao Baobef39712015-05-04 18:50:27 -0700391 size_t bytes;
392 while ((bytes = fread(buf, 1, sizeof(buf), source_fp)) != 0) {
393 fwrite(buf, 1, bytes, dest_fp);
Doug Zongker2c3539e2010-09-29 13:21:30 -0700394 }
Tao Baobef39712015-05-04 18:50:27 -0700395 if (append) {
396 tmplog_offset = ftell(source_fp);
397 }
398 check_and_fclose(source_fp, source);
Doug Zongker2c3539e2010-09-29 13:21:30 -0700399 }
Tao Baobef39712015-05-04 18:50:27 -0700400 check_and_fclose(dest_fp, destination);
Doug Zongker2c3539e2010-09-29 13:21:30 -0700401 }
402}
403
Tao Baobef39712015-05-04 18:50:27 -0700404// Rename last_log -> last_log.1 -> last_log.2 -> ... -> last_log.$max.
405// Similarly rename last_kmsg -> last_kmsg.1 -> ... -> last_kmsg.$max.
406// Overwrite any existing last_log.$max and last_kmsg.$max.
407static void rotate_logs(int max) {
Tao Bao682c34b2015-04-07 17:16:35 -0700408 // Logs should only be rotated once.
409 static bool rotated = false;
410 if (rotated) {
411 return;
412 }
413 rotated = true;
414 ensure_path_mounted(LAST_LOG_FILE);
Tao Baobef39712015-05-04 18:50:27 -0700415 ensure_path_mounted(LAST_KMSG_FILE);
Tao Bao682c34b2015-04-07 17:16:35 -0700416
Tao Bao682c34b2015-04-07 17:16:35 -0700417 for (int i = max-1; i >= 0; --i) {
Tao Bao80e46e02015-06-03 10:49:29 -0700418 std::string old_log = android::base::StringPrintf("%s", LAST_LOG_FILE);
419 if (i > 0) {
420 old_log += "." + std::to_string(i);
421 }
Tao Baobef39712015-05-04 18:50:27 -0700422 std::string new_log = android::base::StringPrintf("%s.%d", LAST_LOG_FILE, i+1);
423 // Ignore errors if old_log doesn't exist.
424 rename(old_log.c_str(), new_log.c_str());
425
Tao Bao80e46e02015-06-03 10:49:29 -0700426 std::string old_kmsg = android::base::StringPrintf("%s", LAST_KMSG_FILE);
427 if (i > 0) {
428 old_kmsg += "." + std::to_string(i);
429 }
Tao Baobef39712015-05-04 18:50:27 -0700430 std::string new_kmsg = android::base::StringPrintf("%s.%d", LAST_KMSG_FILE, i+1);
431 rename(old_kmsg.c_str(), new_kmsg.c_str());
Doug Zongkerda1ebae2013-05-16 11:23:48 -0700432 }
433}
Doug Zongker2c3539e2010-09-29 13:21:30 -0700434
Tao Bao682c34b2015-04-07 17:16:35 -0700435static void copy_logs() {
Tao Bao26112e52016-02-25 12:29:40 -0800436 // We can do nothing for now if there's no /cache partition.
437 if (!has_cache) {
438 return;
439 }
440
Tao Bao682c34b2015-04-07 17:16:35 -0700441 // We only rotate and record the log of the current session if there are
442 // actual attempts to modify the flash, such as wipes, installs from BCB
443 // or menu selections. This is to avoid unnecessary rotation (and
444 // possible deletion) of log files, if it does not do anything loggable.
445 if (!modified_flash) {
446 return;
447 }
448
Tao Baobef39712015-05-04 18:50:27 -0700449 rotate_logs(KEEP_LOG_COUNT);
Tao Bao682c34b2015-04-07 17:16:35 -0700450
Doug Zongkerf24fd7e2013-07-02 11:43:25 -0700451 // Copy logs to cache so the system can find out what happened.
Tao Baof0124322015-04-11 02:04:11 +0000452 copy_log_file(TEMPORARY_LOG_FILE, LOG_FILE, true);
453 copy_log_file(TEMPORARY_LOG_FILE, LAST_LOG_FILE, false);
454 copy_log_file(TEMPORARY_INSTALL_FILE, LAST_INSTALL_FILE, false);
455 save_kernel_log(LAST_KMSG_FILE);
Doug Zongkerf24fd7e2013-07-02 11:43:25 -0700456 chmod(LOG_FILE, 0600);
457 chown(LOG_FILE, 1000, 1000); // system user
Tao Baof0124322015-04-11 02:04:11 +0000458 chmod(LAST_KMSG_FILE, 0600);
459 chown(LAST_KMSG_FILE, 1000, 1000); // system user
Doug Zongkerf24fd7e2013-07-02 11:43:25 -0700460 chmod(LAST_LOG_FILE, 0640);
461 chmod(LAST_INSTALL_FILE, 0644);
462 sync();
463}
464
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800465// clear the recovery command and prepare to boot a (hopefully working) system,
Tianjie Xuc14d95d2016-03-24 11:50:34 -0700466// copy our log file to cache as well (for the system to read). This function is
467// idempotent: call it as many times as you like.
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800468static void
Tianjie Xuc14d95d2016-03-24 11:50:34 -0700469finish_recovery() {
Doug Zongker4f33e552012-08-23 13:16:12 -0700470 // Save the locale to cache, so if recovery is next started up
471 // without a --locale argument (eg, directly from the bootloader)
472 // it will use the last-known locale.
Tao Bao26112e52016-02-25 12:29:40 -0800473 if (locale != NULL && has_cache) {
Doug Zongker4f33e552012-08-23 13:16:12 -0700474 LOGI("Saving locale \"%s\"\n", locale);
475 FILE* fp = fopen_path(LOCALE_FILE, "w");
476 fwrite(locale, 1, strlen(locale), fp);
477 fflush(fp);
478 fsync(fileno(fp));
479 check_and_fclose(fp, LOCALE_FILE);
480 }
481
Doug Zongkerf24fd7e2013-07-02 11:43:25 -0700482 copy_logs();
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800483
Doug Zongkere5d5ac72012-04-12 11:01:22 -0700484 // Reset to normal system boot so recovery won't cycle indefinitely.
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800485 struct bootloader_message boot;
486 memset(&boot, 0, sizeof(boot));
487 set_bootloader_message(&boot);
488
489 // Remove the command file, so recovery won't repeat indefinitely.
Tao Bao26112e52016-02-25 12:29:40 -0800490 if (has_cache) {
491 if (ensure_path_mounted(COMMAND_FILE) != 0 || (unlink(COMMAND_FILE) && errno != ENOENT)) {
492 LOGW("Can't unlink %s\n", COMMAND_FILE);
493 }
494 ensure_path_unmounted(CACHE_ROOT);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800495 }
496
497 sync(); // For good measure.
498}
499
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700500typedef struct _saved_log_file {
501 char* name;
502 struct stat st;
503 unsigned char* data;
504 struct _saved_log_file* next;
505} saved_log_file;
506
Elliott Hughes945548e2015-06-05 17:59:56 -0700507static bool erase_volume(const char* volume) {
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700508 bool is_cache = (strcmp(volume, CACHE_ROOT) == 0);
509
Doug Zongker02ec6b82012-08-22 17:26:40 -0700510 ui->SetBackground(RecoveryUI::ERASING);
Doug Zongker211aebc2011-10-28 15:13:10 -0700511 ui->SetProgressType(RecoveryUI::INDETERMINATE);
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700512
513 saved_log_file* head = NULL;
514
515 if (is_cache) {
Tao Baobef39712015-05-04 18:50:27 -0700516 // If we're reformatting /cache, we load any past logs
517 // (i.e. "/cache/recovery/last_*") and the current log
518 // ("/cache/recovery/log") into memory, so we can restore them after
519 // the reformat.
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700520
521 ensure_path_mounted(volume);
522
523 DIR* d;
524 struct dirent* de;
525 d = opendir(CACHE_LOG_DIR);
526 if (d) {
527 char path[PATH_MAX];
528 strcpy(path, CACHE_LOG_DIR);
529 strcat(path, "/");
530 int path_len = strlen(path);
531 while ((de = readdir(d)) != NULL) {
Tao Baobef39712015-05-04 18:50:27 -0700532 if (strncmp(de->d_name, "last_", 5) == 0 || strcmp(de->d_name, "log") == 0) {
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700533 saved_log_file* p = (saved_log_file*) malloc(sizeof(saved_log_file));
534 strcpy(path+path_len, de->d_name);
535 p->name = strdup(path);
536 if (stat(path, &(p->st)) == 0) {
537 // truncate files to 512kb
538 if (p->st.st_size > (1 << 19)) {
539 p->st.st_size = 1 << 19;
540 }
541 p->data = (unsigned char*) malloc(p->st.st_size);
542 FILE* f = fopen(path, "rb");
543 fread(p->data, 1, p->st.st_size, f);
544 fclose(f);
545 p->next = head;
546 head = p;
547 } else {
548 free(p);
549 }
550 }
551 }
552 closedir(d);
553 } else {
554 if (errno != ENOENT) {
555 printf("opendir failed: %s\n", strerror(errno));
556 }
557 }
558 }
559
Doug Zongker211aebc2011-10-28 15:13:10 -0700560 ui->Print("Formatting %s...\n", volume);
Doug Zongker2c3539e2010-09-29 13:21:30 -0700561
Doug Zongkerd0181b82011-10-19 10:51:12 -0700562 ensure_path_unmounted(volume);
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700563 int result = format_volume(volume);
Doug Zongkerd0181b82011-10-19 10:51:12 -0700564
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700565 if (is_cache) {
566 while (head) {
567 FILE* f = fopen_path(head->name, "wb");
568 if (f) {
569 fwrite(head->data, 1, head->st.st_size, f);
570 fclose(f);
571 chmod(head->name, head->st.st_mode);
572 chown(head->name, head->st.st_uid, head->st.st_gid);
573 }
574 free(head->name);
575 free(head->data);
576 saved_log_file* temp = head->next;
577 free(head);
578 head = temp;
579 }
580
Tao Baof0124322015-04-11 02:04:11 +0000581 // Any part of the log we'd copied to cache is now gone.
582 // Reset the pointer so we copy from the beginning of the temp
583 // log.
584 tmplog_offset = 0;
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700585 copy_logs();
Doug Zongker2c3539e2010-09-29 13:21:30 -0700586 }
587
Elliott Hughes945548e2015-06-05 17:59:56 -0700588 return (result == 0);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800589}
590
Doug Zongkerf93d8162009-09-22 15:16:02 -0700591static int
Doug Zongker28ce47c2011-10-28 10:33:05 -0700592get_menu_selection(const char* const * headers, const char* const * items,
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700593 int menu_only, int initial_selection, Device* device) {
Doug Zongkerf93d8162009-09-22 15:16:02 -0700594 // throw away keys pressed previously, so user doesn't
595 // accidentally trigger menu items.
Doug Zongker211aebc2011-10-28 15:13:10 -0700596 ui->FlushKeys();
Doug Zongkerf93d8162009-09-22 15:16:02 -0700597
Doug Zongker211aebc2011-10-28 15:13:10 -0700598 ui->StartMenu(headers, items, initial_selection);
Doug Zongker8674a722010-09-15 11:08:23 -0700599 int selected = initial_selection;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800600 int chosen_item = -1;
601
Doug Zongkerf93d8162009-09-22 15:16:02 -0700602 while (chosen_item < 0) {
Doug Zongker211aebc2011-10-28 15:13:10 -0700603 int key = ui->WaitKey();
604 int visible = ui->IsTextVisible();
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800605
Doug Zongker5cae4452011-01-25 13:15:30 -0800606 if (key == -1) { // ui_wait_key() timed out
Doug Zongker211aebc2011-10-28 15:13:10 -0700607 if (ui->WasTextEverVisible()) {
Doug Zongker5cae4452011-01-25 13:15:30 -0800608 continue;
609 } else {
610 LOGI("timed out waiting for key input; rebooting.\n");
Doug Zongker211aebc2011-10-28 15:13:10 -0700611 ui->EndMenu();
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700612 return 0; // XXX fixme
Doug Zongker5cae4452011-01-25 13:15:30 -0800613 }
614 }
615
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700616 int action = device->HandleMenuKey(key, visible);
Doug Zongkerddd6a282009-06-09 12:22:33 -0700617
618 if (action < 0) {
619 switch (action) {
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700620 case Device::kHighlightUp:
Elliott Hughes642aaa72015-04-10 12:47:46 -0700621 selected = ui->SelectMenu(--selected);
Doug Zongkerddd6a282009-06-09 12:22:33 -0700622 break;
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700623 case Device::kHighlightDown:
Elliott Hughes642aaa72015-04-10 12:47:46 -0700624 selected = ui->SelectMenu(++selected);
Doug Zongkerddd6a282009-06-09 12:22:33 -0700625 break;
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700626 case Device::kInvokeItem:
Doug Zongkerddd6a282009-06-09 12:22:33 -0700627 chosen_item = selected;
628 break;
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700629 case Device::kNoAction:
Doug Zongkerddd6a282009-06-09 12:22:33 -0700630 break;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800631 }
Doug Zongkerf93d8162009-09-22 15:16:02 -0700632 } else if (!menu_only) {
Doug Zongkerddd6a282009-06-09 12:22:33 -0700633 chosen_item = action;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800634 }
Doug Zongkerf93d8162009-09-22 15:16:02 -0700635 }
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800636
Doug Zongker211aebc2011-10-28 15:13:10 -0700637 ui->EndMenu();
Doug Zongkerf93d8162009-09-22 15:16:02 -0700638 return chosen_item;
639}
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800640
Doug Zongker8674a722010-09-15 11:08:23 -0700641static int compare_string(const void* a, const void* b) {
642 return strcmp(*(const char**)a, *(const char**)b);
643}
644
Doug Zongker93950222014-07-08 14:10:23 -0700645// Returns a malloc'd path, or NULL.
Elliott Hughes30694c92015-03-25 15:16:51 -0700646static char* browse_directory(const char* path, Device* device) {
Michael Ward9d2629c2011-06-23 22:14:24 -0700647 ensure_path_mounted(path);
Doug Zongkerc18eeb82010-09-21 16:49:26 -0700648
Elliott Hughes30694c92015-03-25 15:16:51 -0700649 DIR* d = opendir(path);
Doug Zongker8674a722010-09-15 11:08:23 -0700650 if (d == NULL) {
651 LOGE("error opening %s: %s\n", path, strerror(errno));
Doug Zongker93950222014-07-08 14:10:23 -0700652 return NULL;
Doug Zongker8674a722010-09-15 11:08:23 -0700653 }
654
Doug Zongker8674a722010-09-15 11:08:23 -0700655 int d_size = 0;
656 int d_alloc = 10;
Doug Zongker28ce47c2011-10-28 10:33:05 -0700657 char** dirs = (char**)malloc(d_alloc * sizeof(char*));
Doug Zongker8674a722010-09-15 11:08:23 -0700658 int z_size = 1;
659 int z_alloc = 10;
Doug Zongker28ce47c2011-10-28 10:33:05 -0700660 char** zips = (char**)malloc(z_alloc * sizeof(char*));
Doug Zongker8674a722010-09-15 11:08:23 -0700661 zips[0] = strdup("../");
662
Elliott Hughes30694c92015-03-25 15:16:51 -0700663 struct dirent* de;
Doug Zongker8674a722010-09-15 11:08:23 -0700664 while ((de = readdir(d)) != NULL) {
665 int name_len = strlen(de->d_name);
666
667 if (de->d_type == DT_DIR) {
668 // skip "." and ".." entries
669 if (name_len == 1 && de->d_name[0] == '.') continue;
670 if (name_len == 2 && de->d_name[0] == '.' &&
671 de->d_name[1] == '.') continue;
672
673 if (d_size >= d_alloc) {
674 d_alloc *= 2;
Doug Zongker28ce47c2011-10-28 10:33:05 -0700675 dirs = (char**)realloc(dirs, d_alloc * sizeof(char*));
Doug Zongker8674a722010-09-15 11:08:23 -0700676 }
Doug Zongker28ce47c2011-10-28 10:33:05 -0700677 dirs[d_size] = (char*)malloc(name_len + 2);
Doug Zongker8674a722010-09-15 11:08:23 -0700678 strcpy(dirs[d_size], de->d_name);
679 dirs[d_size][name_len] = '/';
680 dirs[d_size][name_len+1] = '\0';
681 ++d_size;
682 } else if (de->d_type == DT_REG &&
683 name_len >= 4 &&
684 strncasecmp(de->d_name + (name_len-4), ".zip", 4) == 0) {
685 if (z_size >= z_alloc) {
686 z_alloc *= 2;
Doug Zongker28ce47c2011-10-28 10:33:05 -0700687 zips = (char**)realloc(zips, z_alloc * sizeof(char*));
Doug Zongker8674a722010-09-15 11:08:23 -0700688 }
689 zips[z_size++] = strdup(de->d_name);
690 }
691 }
692 closedir(d);
693
694 qsort(dirs, d_size, sizeof(char*), compare_string);
695 qsort(zips, z_size, sizeof(char*), compare_string);
696
697 // append dirs to the zips list
698 if (d_size + z_size + 1 > z_alloc) {
699 z_alloc = d_size + z_size + 1;
Doug Zongker28ce47c2011-10-28 10:33:05 -0700700 zips = (char**)realloc(zips, z_alloc * sizeof(char*));
Doug Zongker8674a722010-09-15 11:08:23 -0700701 }
702 memcpy(zips + z_size, dirs, d_size * sizeof(char*));
703 free(dirs);
704 z_size += d_size;
705 zips[z_size] = NULL;
706
Elliott Hughes8fd86d72015-04-13 14:36:02 -0700707 const char* headers[] = { "Choose a package to install:", path, NULL };
Elliott Hughes30694c92015-03-25 15:16:51 -0700708
Doug Zongker93950222014-07-08 14:10:23 -0700709 char* result;
Doug Zongker8674a722010-09-15 11:08:23 -0700710 int chosen_item = 0;
Doug Zongker93950222014-07-08 14:10:23 -0700711 while (true) {
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700712 chosen_item = get_menu_selection(headers, zips, 1, chosen_item, device);
Doug Zongker8674a722010-09-15 11:08:23 -0700713
714 char* item = zips[chosen_item];
715 int item_len = strlen(item);
716 if (chosen_item == 0) { // item 0 is always "../"
Michael Ward9d2629c2011-06-23 22:14:24 -0700717 // go up but continue browsing (if the caller is update_directory)
Doug Zongker93950222014-07-08 14:10:23 -0700718 result = NULL;
Doug Zongker8674a722010-09-15 11:08:23 -0700719 break;
720 }
Doug Zongker93950222014-07-08 14:10:23 -0700721
722 char new_path[PATH_MAX];
723 strlcpy(new_path, path, PATH_MAX);
724 strlcat(new_path, "/", PATH_MAX);
725 strlcat(new_path, item, PATH_MAX);
726
727 if (item[item_len-1] == '/') {
728 // recurse down into a subdirectory
729 new_path[strlen(new_path)-1] = '\0'; // truncate the trailing '/'
730 result = browse_directory(new_path, device);
731 if (result) break;
732 } else {
733 // selected a zip file: return the malloc'd path to the caller.
734 result = strdup(new_path);
735 break;
736 }
737 }
Doug Zongker8674a722010-09-15 11:08:23 -0700738
Elliott Hughes30694c92015-03-25 15:16:51 -0700739 for (int i = 0; i < z_size; ++i) free(zips[i]);
Doug Zongker8674a722010-09-15 11:08:23 -0700740 free(zips);
Doug Zongker8674a722010-09-15 11:08:23 -0700741
742 return result;
743}
744
Elliott Hughes30694c92015-03-25 15:16:51 -0700745static bool yes_no(Device* device, const char* question1, const char* question2) {
Elliott Hughes8fd86d72015-04-13 14:36:02 -0700746 const char* headers[] = { question1, question2, NULL };
Elliott Hughes30694c92015-03-25 15:16:51 -0700747 const char* items[] = { " No", " Yes", NULL };
Doug Zongkerddd6a282009-06-09 12:22:33 -0700748
Elliott Hughes30694c92015-03-25 15:16:51 -0700749 int chosen_item = get_menu_selection(headers, items, 1, 0, device);
750 return (chosen_item == 1);
751}
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800752
Tao Baoe39a9bc2015-03-31 12:19:05 -0700753// Return true on success.
754static bool wipe_data(int should_confirm, Device* device) {
755 if (should_confirm && !yes_no(device, "Wipe all user data?", " THIS CAN NOT BE UNDONE!")) {
756 return false;
Doug Zongkerf93d8162009-09-22 15:16:02 -0700757 }
Doug Zongker1066d2c2009-04-01 13:57:40 -0700758
Tao Bao682c34b2015-04-07 17:16:35 -0700759 modified_flash = true;
760
Doug Zongker211aebc2011-10-28 15:13:10 -0700761 ui->Print("\n-- Wiping data...\n");
Elliott Hughes945548e2015-06-05 17:59:56 -0700762 bool success =
763 device->PreWipeData() &&
764 erase_volume("/data") &&
Tao Bao26112e52016-02-25 12:29:40 -0800765 (has_cache ? erase_volume("/cache") : true) &&
Elliott Hughes945548e2015-06-05 17:59:56 -0700766 device->PostWipeData();
767 ui->Print("Data wipe %s.\n", success ? "complete" : "failed");
768 return success;
Doug Zongkerf93d8162009-09-22 15:16:02 -0700769}
770
Tao Baoe39a9bc2015-03-31 12:19:05 -0700771// Return true on success.
772static bool wipe_cache(bool should_confirm, Device* device) {
Tao Bao26112e52016-02-25 12:29:40 -0800773 if (!has_cache) {
774 ui->Print("No /cache partition found.\n");
775 return false;
776 }
777
Elliott Hughes30694c92015-03-25 15:16:51 -0700778 if (should_confirm && !yes_no(device, "Wipe cache?", " THIS CAN NOT BE UNDONE!")) {
Tao Baoe39a9bc2015-03-31 12:19:05 -0700779 return false;
Elliott Hughes30694c92015-03-25 15:16:51 -0700780 }
781
Tao Bao682c34b2015-04-07 17:16:35 -0700782 modified_flash = true;
783
Elliott Hughes30694c92015-03-25 15:16:51 -0700784 ui->Print("\n-- Wiping cache...\n");
Elliott Hughes945548e2015-06-05 17:59:56 -0700785 bool success = erase_volume("/cache");
786 ui->Print("Cache wipe %s.\n", success ? "complete" : "failed");
787 return success;
Elliott Hughes30694c92015-03-25 15:16:51 -0700788}
789
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700790static void choose_recovery_file(Device* device) {
Tao Bao26112e52016-02-25 12:29:40 -0800791 if (!has_cache) {
792 ui->Print("No /cache partition found.\n");
793 return;
794 }
795
Elliott Hughesc0491632015-05-06 12:40:05 -0700796 // "Back" + KEEP_LOG_COUNT * 2 + terminating nullptr entry
797 char* entries[1 + KEEP_LOG_COUNT * 2 + 1];
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700798 memset(entries, 0, sizeof(entries));
799
Tao Baobef39712015-05-04 18:50:27 -0700800 unsigned int n = 0;
Patrick Tjincd055ee2014-12-09 11:26:40 -0800801
Patrick Tjincd055ee2014-12-09 11:26:40 -0800802 // Add LAST_LOG_FILE + LAST_LOG_FILE.x
Tao Baobef39712015-05-04 18:50:27 -0700803 // Add LAST_KMSG_FILE + LAST_KMSG_FILE.x
804 for (int i = 0; i < KEEP_LOG_COUNT; i++) {
805 char* log_file;
Tao Bao80e46e02015-06-03 10:49:29 -0700806 int ret;
807 ret = (i == 0) ? asprintf(&log_file, "%s", LAST_LOG_FILE) :
808 asprintf(&log_file, "%s.%d", LAST_LOG_FILE, i);
809 if (ret == -1) {
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700810 // memory allocation failure - return early. Should never happen.
811 return;
812 }
Tao Baobef39712015-05-04 18:50:27 -0700813 if ((ensure_path_mounted(log_file) != 0) || (access(log_file, R_OK) == -1)) {
814 free(log_file);
815 } else {
816 entries[n++] = log_file;
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700817 }
Tao Baobef39712015-05-04 18:50:27 -0700818
819 char* kmsg_file;
Tao Bao80e46e02015-06-03 10:49:29 -0700820 ret = (i == 0) ? asprintf(&kmsg_file, "%s", LAST_KMSG_FILE) :
821 asprintf(&kmsg_file, "%s.%d", LAST_KMSG_FILE, i);
822 if (ret == -1) {
Tao Baobef39712015-05-04 18:50:27 -0700823 // memory allocation failure - return early. Should never happen.
824 return;
825 }
826 if ((ensure_path_mounted(kmsg_file) != 0) || (access(kmsg_file, R_OK) == -1)) {
827 free(kmsg_file);
828 } else {
829 entries[n++] = kmsg_file;
830 }
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700831 }
832
Elliott Hughesc0491632015-05-06 12:40:05 -0700833 entries[n++] = strdup("Back");
834
Tao Baobef39712015-05-04 18:50:27 -0700835 const char* headers[] = { "Select file to view", nullptr };
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700836
Elliott Hughes8de52072015-04-08 20:06:50 -0700837 while (true) {
Elliott Hughes30694c92015-03-25 15:16:51 -0700838 int chosen_item = get_menu_selection(headers, entries, 1, 0, device);
Elliott Hughesc0491632015-05-06 12:40:05 -0700839 if (strcmp(entries[chosen_item], "Back") == 0) break;
Elliott Hughes8de52072015-04-08 20:06:50 -0700840
Elliott Hughes8de52072015-04-08 20:06:50 -0700841 ui->ShowFile(entries[chosen_item]);
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700842 }
843
Tao Baobef39712015-05-04 18:50:27 -0700844 for (size_t i = 0; i < (sizeof(entries) / sizeof(*entries)); i++) {
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700845 free(entries[i]);
846 }
847}
848
Tao Baocdcf28f2016-01-13 15:05:20 -0800849// How long (in seconds) we wait for the fuse-provided package file to
850// appear, before timing out.
851#define SDCARD_INSTALL_TIMEOUT 10
852
Tao Bao145d8612015-03-25 15:51:15 -0700853static int apply_from_sdcard(Device* device, bool* wipe_cache) {
Tao Bao682c34b2015-04-07 17:16:35 -0700854 modified_flash = true;
855
Christian Poetzsch4ec58a42015-02-19 10:42:39 +0000856 if (ensure_path_mounted(SDCARD_ROOT) != 0) {
857 ui->Print("\n-- Couldn't mount %s.\n", SDCARD_ROOT);
858 return INSTALL_ERROR;
859 }
860
861 char* path = browse_directory(SDCARD_ROOT, device);
862 if (path == NULL) {
Elliott Hughes018ed312015-04-08 16:51:36 -0700863 ui->Print("\n-- No package file selected.\n");
caozhiyuanb4effb92015-06-10 16:46:38 +0800864 ensure_path_unmounted(SDCARD_ROOT);
Christian Poetzsch4ec58a42015-02-19 10:42:39 +0000865 return INSTALL_ERROR;
866 }
867
868 ui->Print("\n-- Install %s ...\n", path);
869 set_sdcard_update_bootloader_message();
Christian Poetzsch4ec58a42015-02-19 10:42:39 +0000870
Tao Baocdcf28f2016-01-13 15:05:20 -0800871 // We used to use fuse in a thread as opposed to a process. Since accessing
872 // through fuse involves going from kernel to userspace to kernel, it leads
873 // to deadlock when a page fault occurs. (Bug: 26313124)
874 pid_t child;
875 if ((child = fork()) == 0) {
876 bool status = start_sdcard_fuse(path);
877
878 _exit(status ? EXIT_SUCCESS : EXIT_FAILURE);
879 }
880
881 // FUSE_SIDELOAD_HOST_PATHNAME will start to exist once the fuse in child
882 // process is ready.
883 int result = INSTALL_ERROR;
884 int status;
885 bool waited = false;
886 for (int i = 0; i < SDCARD_INSTALL_TIMEOUT; ++i) {
887 if (waitpid(child, &status, WNOHANG) == -1) {
888 result = INSTALL_ERROR;
889 waited = true;
890 break;
891 }
892
893 struct stat sb;
894 if (stat(FUSE_SIDELOAD_HOST_PATHNAME, &sb) == -1) {
895 if (errno == ENOENT && i < SDCARD_INSTALL_TIMEOUT-1) {
896 sleep(1);
897 continue;
898 } else {
899 LOGE("Timed out waiting for the fuse-provided package.\n");
900 result = INSTALL_ERROR;
901 kill(child, SIGKILL);
902 break;
903 }
904 }
905
906 result = install_package(FUSE_SIDELOAD_HOST_PATHNAME, wipe_cache,
Christian Poetzsch4ec58a42015-02-19 10:42:39 +0000907 TEMPORARY_INSTALL_FILE, false);
Tao Baocdcf28f2016-01-13 15:05:20 -0800908 break;
909 }
Christian Poetzsch4ec58a42015-02-19 10:42:39 +0000910
Tao Baocdcf28f2016-01-13 15:05:20 -0800911 if (!waited) {
912 // Calling stat() on this magic filename signals the fuse
913 // filesystem to shut down.
914 struct stat sb;
915 stat(FUSE_SIDELOAD_HOST_EXIT_PATHNAME, &sb);
916
917 waitpid(child, &status, 0);
918 }
919
920 if (!WIFEXITED(status) || WEXITSTATUS(status) != 0) {
921 LOGE("Error exit from the fuse process: %d\n", WEXITSTATUS(status));
922 }
923
Christian Poetzsch4ec58a42015-02-19 10:42:39 +0000924 ensure_path_unmounted(SDCARD_ROOT);
Tao Baocdcf28f2016-01-13 15:05:20 -0800925 return result;
Christian Poetzsch4ec58a42015-02-19 10:42:39 +0000926}
927
Doug Zongker8d9d3d52014-04-01 13:20:23 -0700928// Return REBOOT, SHUTDOWN, or REBOOT_BOOTLOADER. Returning NO_ACTION
929// means to take the default, which is to reboot or shutdown depending
930// on if the --shutdown_after flag was passed to recovery.
931static Device::BuiltinAction
Doug Zongker6c8553d2012-09-24 10:40:47 -0700932prompt_and_wait(Device* device, int status) {
Doug Zongkerf93d8162009-09-22 15:16:02 -0700933 for (;;) {
Tianjie Xuc14d95d2016-03-24 11:50:34 -0700934 finish_recovery();
Doug Zongker6c8553d2012-09-24 10:40:47 -0700935 switch (status) {
936 case INSTALL_SUCCESS:
937 case INSTALL_NONE:
938 ui->SetBackground(RecoveryUI::NO_COMMAND);
939 break;
940
941 case INSTALL_ERROR:
942 case INSTALL_CORRUPT:
943 ui->SetBackground(RecoveryUI::ERROR);
944 break;
945 }
Doug Zongker211aebc2011-10-28 15:13:10 -0700946 ui->SetProgressType(RecoveryUI::EMPTY);
Doug Zongkerf93d8162009-09-22 15:16:02 -0700947
Elliott Hughes8fd86d72015-04-13 14:36:02 -0700948 int chosen_item = get_menu_selection(nullptr, device->GetMenuItems(), 0, 0, device);
Doug Zongkerf93d8162009-09-22 15:16:02 -0700949
950 // device-specific code may take some action here. It may
951 // return one of the core actions handled in the switch
952 // statement below.
Doug Zongker8d9d3d52014-04-01 13:20:23 -0700953 Device::BuiltinAction chosen_action = device->InvokeMenuItem(chosen_item);
Doug Zongkerf93d8162009-09-22 15:16:02 -0700954
Elliott Hughes30694c92015-03-25 15:16:51 -0700955 bool should_wipe_cache = false;
Doug Zongker8d9d3d52014-04-01 13:20:23 -0700956 switch (chosen_action) {
957 case Device::NO_ACTION:
958 break;
959
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700960 case Device::REBOOT:
Doug Zongker8d9d3d52014-04-01 13:20:23 -0700961 case Device::SHUTDOWN:
962 case Device::REBOOT_BOOTLOADER:
963 return chosen_action;
Doug Zongkerf93d8162009-09-22 15:16:02 -0700964
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700965 case Device::WIPE_DATA:
966 wipe_data(ui->IsTextVisible(), device);
Doug Zongker8d9d3d52014-04-01 13:20:23 -0700967 if (!ui->IsTextVisible()) return Device::NO_ACTION;
Doug Zongkerf93d8162009-09-22 15:16:02 -0700968 break;
969
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700970 case Device::WIPE_CACHE:
Elliott Hughes30694c92015-03-25 15:16:51 -0700971 wipe_cache(ui->IsTextVisible(), device);
Doug Zongker8d9d3d52014-04-01 13:20:23 -0700972 if (!ui->IsTextVisible()) return Device::NO_ACTION;
Doug Zongkerf93d8162009-09-22 15:16:02 -0700973 break;
974
Christian Poetzsch4ec58a42015-02-19 10:42:39 +0000975 case Device::APPLY_ADB_SIDELOAD:
Elliott Hughesec283402015-04-10 10:01:53 -0700976 case Device::APPLY_SDCARD:
Christian Poetzsch4ec58a42015-02-19 10:42:39 +0000977 {
978 bool adb = (chosen_action == Device::APPLY_ADB_SIDELOAD);
979 if (adb) {
Elliott Hughes30694c92015-03-25 15:16:51 -0700980 status = apply_from_adb(ui, &should_wipe_cache, TEMPORARY_INSTALL_FILE);
Doug Zongkerd0181b82011-10-19 10:51:12 -0700981 } else {
Elliott Hughes30694c92015-03-25 15:16:51 -0700982 status = apply_from_sdcard(device, &should_wipe_cache);
Doug Zongkerd0181b82011-10-19 10:51:12 -0700983 }
Doug Zongker945fc682014-07-10 10:50:39 -0700984
Elliott Hughes30694c92015-03-25 15:16:51 -0700985 if (status == INSTALL_SUCCESS && should_wipe_cache) {
Tao Baoe39a9bc2015-03-31 12:19:05 -0700986 if (!wipe_cache(false, device)) {
987 status = INSTALL_ERROR;
988 }
Christian Poetzsch4ec58a42015-02-19 10:42:39 +0000989 }
990
Tao Baoc679f932015-03-30 09:43:49 -0700991 if (status != INSTALL_SUCCESS) {
992 ui->SetBackground(RecoveryUI::ERROR);
993 ui->Print("Installation aborted.\n");
994 copy_logs();
995 } else if (!ui->IsTextVisible()) {
996 return Device::NO_ACTION; // reboot if logs aren't visible
997 } else {
998 ui->Print("\nInstall from %s complete.\n", adb ? "ADB" : "SD card");
Doug Zongker8674a722010-09-15 11:08:23 -0700999 }
Doug Zongkerf93d8162009-09-22 15:16:02 -07001000 }
1001 break;
Doug Zongkerdaefc1d2011-10-31 09:34:15 -07001002
Elliott Hughesec283402015-04-10 10:01:53 -07001003 case Device::VIEW_RECOVERY_LOGS:
1004 choose_recovery_file(device);
Michael Ward9d2629c2011-06-23 22:14:24 -07001005 break;
Doug Zongker9270a202012-01-09 15:16:13 -08001006
Elliott Hughesec283402015-04-10 10:01:53 -07001007 case Device::MOUNT_SYSTEM:
Tao Baoabb8f772015-07-30 14:43:27 -07001008 char system_root_image[PROPERTY_VALUE_MAX];
1009 property_get("ro.build.system_root_image", system_root_image, "");
1010
1011 // For a system image built with the root directory (i.e.
1012 // system_root_image == "true"), we mount it to /system_root, and symlink /system
1013 // to /system_root/system to make adb shell work (the symlink is created through
1014 // the build system).
1015 // Bug: 22855115
1016 if (strcmp(system_root_image, "true") == 0) {
1017 if (ensure_path_mounted_at("/", "/system_root") != -1) {
1018 ui->Print("Mounted /system.\n");
1019 }
1020 } else {
1021 if (ensure_path_mounted("/system") != -1) {
1022 ui->Print("Mounted /system.\n");
1023 }
Elliott Hughesec283402015-04-10 10:01:53 -07001024 }
Tao Baoabb8f772015-07-30 14:43:27 -07001025
Nick Kralevicha9ad0322014-10-22 18:38:48 -07001026 break;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001027 }
1028 }
1029}
1030
1031static void
Oscar Montemayor05231562009-11-30 08:40:57 -08001032print_property(const char *key, const char *name, void *cookie) {
Doug Zongker56c51052010-07-01 09:18:44 -07001033 printf("%s=%s\n", key, name);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001034}
1035
Doug Zongker02ec6b82012-08-22 17:26:40 -07001036static void
1037load_locale_from_cache() {
1038 FILE* fp = fopen_path(LOCALE_FILE, "r");
1039 char buffer[80];
1040 if (fp != NULL) {
1041 fgets(buffer, sizeof(buffer), fp);
1042 int j = 0;
Doug Zongker5fa8c232012-09-18 12:37:02 -07001043 unsigned int i;
Doug Zongker02ec6b82012-08-22 17:26:40 -07001044 for (i = 0; i < sizeof(buffer) && buffer[i]; ++i) {
1045 if (!isspace(buffer[i])) {
1046 buffer[j++] = buffer[i];
1047 }
1048 }
1049 buffer[j] = 0;
1050 locale = strdup(buffer);
Devin Kim6016d082012-10-08 09:47:37 -07001051 check_and_fclose(fp, LOCALE_FILE);
Doug Zongker02ec6b82012-08-22 17:26:40 -07001052 }
1053}
1054
Doug Zongker7c3ae452013-05-14 11:03:02 -07001055static RecoveryUI* gCurrentUI = NULL;
1056
1057void
1058ui_print(const char* format, ...) {
1059 char buffer[256];
1060
1061 va_list ap;
1062 va_start(ap, format);
1063 vsnprintf(buffer, sizeof(buffer), format, ap);
1064 va_end(ap);
1065
1066 if (gCurrentUI != NULL) {
1067 gCurrentUI->Print("%s", buffer);
1068 } else {
1069 fputs(buffer, stdout);
1070 }
1071}
1072
Yabin Cui53e7a062016-02-17 12:21:52 -08001073static bool is_battery_ok() {
1074 struct healthd_config healthd_config = {
1075 .batteryStatusPath = android::String8(android::String8::kEmptyString),
1076 .batteryHealthPath = android::String8(android::String8::kEmptyString),
1077 .batteryPresentPath = android::String8(android::String8::kEmptyString),
1078 .batteryCapacityPath = android::String8(android::String8::kEmptyString),
1079 .batteryVoltagePath = android::String8(android::String8::kEmptyString),
1080 .batteryTemperaturePath = android::String8(android::String8::kEmptyString),
1081 .batteryTechnologyPath = android::String8(android::String8::kEmptyString),
1082 .batteryCurrentNowPath = android::String8(android::String8::kEmptyString),
1083 .batteryCurrentAvgPath = android::String8(android::String8::kEmptyString),
1084 .batteryChargeCounterPath = android::String8(android::String8::kEmptyString),
1085 .batteryFullChargePath = android::String8(android::String8::kEmptyString),
1086 .batteryCycleCountPath = android::String8(android::String8::kEmptyString),
1087 .energyCounter = NULL,
1088 .boot_min_cap = 0,
1089 .screen_on = NULL
1090 };
1091 healthd_board_init(&healthd_config);
1092
1093 android::BatteryMonitor monitor;
1094 monitor.init(&healthd_config);
1095
1096 int wait_second = 0;
1097 while (true) {
1098 int charge_status = monitor.getChargeStatus();
1099 // Treat unknown status as charged.
1100 bool charged = (charge_status != android::BATTERY_STATUS_DISCHARGING &&
1101 charge_status != android::BATTERY_STATUS_NOT_CHARGING);
1102 android::BatteryProperty capacity;
1103 android::status_t status = monitor.getProperty(android::BATTERY_PROP_CAPACITY, &capacity);
1104 ui_print("charge_status %d, charged %d, status %d, capacity %lld\n", charge_status,
1105 charged, status, capacity.valueInt64);
1106 // At startup, the battery drivers in devices like N5X/N6P take some time to load
1107 // the battery profile. Before the load finishes, it reports value 50 as a fake
1108 // capacity. BATTERY_READ_TIMEOUT_IN_SEC is set that the battery drivers are expected
1109 // to finish loading the battery profile earlier than 10 seconds after kernel startup.
1110 if (status == 0 && capacity.valueInt64 == 50) {
1111 if (wait_second < BATTERY_READ_TIMEOUT_IN_SEC) {
1112 sleep(1);
1113 wait_second++;
1114 continue;
1115 }
1116 }
1117 // If we can't read battery percentage, it may be a device without battery. In this
1118 // situation, use 100 as a fake battery percentage.
1119 if (status != 0) {
1120 capacity.valueInt64 = 100;
1121 }
1122 return (charged && capacity.valueInt64 >= BATTERY_WITH_CHARGER_OK_PERCENTAGE) ||
1123 (!charged && capacity.valueInt64 >= BATTERY_OK_PERCENTAGE);
1124 }
1125}
1126
Tianjie Xu3c62b672016-02-05 18:25:58 -08001127static void set_retry_bootloader_message(int retry_count, int argc, char** argv) {
1128 struct bootloader_message boot {};
1129 strlcpy(boot.command, "boot-recovery", sizeof(boot.command));
1130 strlcpy(boot.recovery, "recovery\n", sizeof(boot.recovery));
1131
1132 for (int i = 1; i < argc; ++i) {
1133 if (strstr(argv[i], "retry_count") == nullptr) {
1134 strlcat(boot.recovery, argv[i], sizeof(boot.recovery));
1135 strlcat(boot.recovery, "\n", sizeof(boot.recovery));
1136 }
1137 }
1138
1139 // Initialize counter to 1 if it's not in BCB, otherwise increment it by 1.
1140 if (retry_count == 0) {
1141 strlcat(boot.recovery, "--retry_count=1\n", sizeof(boot.recovery));
1142 } else {
1143 char buffer[20];
1144 snprintf(buffer, sizeof(buffer), "--retry_count=%d\n", retry_count+1);
1145 strlcat(boot.recovery, buffer, sizeof(boot.recovery));
1146 }
1147 set_bootloader_message(&boot);
1148}
1149
Yabin Cui53e7a062016-02-17 12:21:52 -08001150int main(int argc, char **argv) {
Doug Zongker9270a202012-01-09 15:16:13 -08001151 // If this binary is started with the single argument "--adbd",
1152 // instead of being the normal recovery binary, it turns into kind
1153 // of a stripped-down version of adbd that only supports the
1154 // 'sideload' command. Note this must be a real argument, not
1155 // anything in the command file or bootloader control block; the
1156 // only way recovery should be run with this argument is when it
1157 // starts a copy of itself from the apply_from_adb() function.
1158 if (argc == 2 && strcmp(argv[1], "--adbd") == 0) {
Elliott Hughes9f4fdb32015-11-20 13:03:24 -08001159 adb_server_main(0, DEFAULT_ADB_PORT, -1);
Doug Zongker9270a202012-01-09 15:16:13 -08001160 return 0;
1161 }
1162
Tao Bao04ca4262015-09-10 15:32:24 -07001163 time_t start = time(NULL);
1164
1165 // redirect_stdio should be called only in non-sideload mode. Otherwise
1166 // we may have two logger instances with different timestamps.
1167 redirect_stdio(TEMPORARY_LOG_FILE);
1168
Doug Zongker19a8e242014-01-21 09:25:41 -08001169 printf("Starting recovery (pid %d) on %s", getpid(), ctime(&start));
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001170
Doug Zongkerd4208f92010-09-20 12:16:13 -07001171 load_volume_table();
Tao Bao26112e52016-02-25 12:29:40 -08001172 has_cache = volume_for_path(CACHE_ROOT) != nullptr;
1173
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001174 get_args(&argc, &argv);
1175
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001176 const char *update_package = NULL;
Tao Baoe39a9bc2015-03-31 12:19:05 -07001177 bool should_wipe_data = false;
Tao Baoc679f932015-03-30 09:43:49 -07001178 bool should_wipe_cache = false;
Tao Bao145d8612015-03-25 15:51:15 -07001179 bool show_text = false;
Tao Baoc679f932015-03-30 09:43:49 -07001180 bool sideload = false;
1181 bool sideload_auto_reboot = false;
Doug Zongkere5d5ac72012-04-12 11:01:22 -07001182 bool just_exit = false;
Doug Zongkerb1d12632014-03-18 10:32:12 -07001183 bool shutdown_after = false;
Tianjie Xu3c62b672016-02-05 18:25:58 -08001184 int retry_count = 0;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001185
1186 int arg;
1187 while ((arg = getopt_long(argc, argv, "", OPTIONS, NULL)) != -1) {
1188 switch (arg) {
Tianjie Xu3c62b672016-02-05 18:25:58 -08001189 case 'n': android::base::ParseInt(optarg, &retry_count, 0); break;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001190 case 'u': update_package = optarg; break;
Tao Baoe39a9bc2015-03-31 12:19:05 -07001191 case 'w': should_wipe_data = true; break;
Tao Baoc679f932015-03-30 09:43:49 -07001192 case 'c': should_wipe_cache = true; break;
Tao Bao145d8612015-03-25 15:51:15 -07001193 case 't': show_text = true; break;
Tao Baoc679f932015-03-30 09:43:49 -07001194 case 's': sideload = true; break;
1195 case 'a': sideload = true; sideload_auto_reboot = true; break;
Doug Zongkere5d5ac72012-04-12 11:01:22 -07001196 case 'x': just_exit = true; break;
Doug Zongker02ec6b82012-08-22 17:26:40 -07001197 case 'l': locale = optarg; break;
Doug Zongkerc87bab12013-11-25 13:53:25 -08001198 case 'g': {
1199 if (stage == NULL || *stage == '\0') {
1200 char buffer[20] = "1/";
1201 strncat(buffer, optarg, sizeof(buffer)-3);
1202 stage = strdup(buffer);
1203 }
1204 break;
1205 }
Doug Zongkerb1d12632014-03-18 10:32:12 -07001206 case 'p': shutdown_after = true; break;
Jeff Sharkeya6e13ae2014-09-24 11:46:17 -07001207 case 'r': reason = optarg; break;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001208 case '?':
1209 LOGE("Invalid command argument\n");
1210 continue;
1211 }
1212 }
1213
Tao Bao26112e52016-02-25 12:29:40 -08001214 if (locale == nullptr && has_cache) {
Doug Zongker02ec6b82012-08-22 17:26:40 -07001215 load_locale_from_cache();
1216 }
1217 printf("locale is [%s]\n", locale);
Doug Zongker0d32f252014-02-13 15:07:56 -08001218 printf("stage is [%s]\n", stage);
Jeff Sharkeya6e13ae2014-09-24 11:46:17 -07001219 printf("reason is [%s]\n", reason);
Doug Zongker02ec6b82012-08-22 17:26:40 -07001220
1221 Device* device = make_device();
1222 ui = device->GetUI();
Doug Zongker7c3ae452013-05-14 11:03:02 -07001223 gCurrentUI = ui;
Doug Zongker02ec6b82012-08-22 17:26:40 -07001224
Doug Zongker5fa8c232012-09-18 12:37:02 -07001225 ui->SetLocale(locale);
Doug Zongker02ec6b82012-08-22 17:26:40 -07001226 ui->Init();
Doug Zongkerc87bab12013-11-25 13:53:25 -08001227
1228 int st_cur, st_max;
1229 if (stage != NULL && sscanf(stage, "%d/%d", &st_cur, &st_max) == 2) {
1230 ui->SetStage(st_cur, st_max);
1231 }
1232
Doug Zongker02ec6b82012-08-22 17:26:40 -07001233 ui->SetBackground(RecoveryUI::NONE);
1234 if (show_text) ui->ShowText(true);
1235
Stephen Smalley779701d2012-02-09 14:13:23 -05001236 struct selinux_opt seopts[] = {
1237 { SELABEL_OPT_PATH, "/file_contexts" }
1238 };
1239
1240 sehandle = selabel_open(SELABEL_CTX_FILE, seopts, 1);
1241
1242 if (!sehandle) {
Doug Zongkerfafc85b2013-07-09 12:29:45 -07001243 ui->Print("Warning: No file_contexts\n");
Stephen Smalley779701d2012-02-09 14:13:23 -05001244 }
Stephen Smalley779701d2012-02-09 14:13:23 -05001245
Doug Zongkerdaefc1d2011-10-31 09:34:15 -07001246 device->StartRecovery();
Doug Zongkerefa1bab2010-02-01 15:59:12 -08001247
Doug Zongker56c51052010-07-01 09:18:44 -07001248 printf("Command:");
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001249 for (arg = 0; arg < argc; arg++) {
Doug Zongker56c51052010-07-01 09:18:44 -07001250 printf(" \"%s\"", argv[arg]);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001251 }
Doug Zongker9b125b02010-09-22 12:01:37 -07001252 printf("\n");
1253
1254 if (update_package) {
1255 // For backwards compatibility on the cache partition only, if
1256 // we're given an old 'root' path "CACHE:foo", change it to
1257 // "/cache/foo".
1258 if (strncmp(update_package, "CACHE:", 6) == 0) {
1259 int len = strlen(update_package) + 10;
Doug Zongker28ce47c2011-10-28 10:33:05 -07001260 char* modified_path = (char*)malloc(len);
Jeremy Compostella1b7d9b72015-07-29 17:17:03 +02001261 if (modified_path) {
1262 strlcpy(modified_path, "/cache/", len);
1263 strlcat(modified_path, update_package+6, len);
1264 printf("(replacing path \"%s\" with \"%s\")\n",
1265 update_package, modified_path);
1266 update_package = modified_path;
1267 }
1268 else
1269 printf("modified_path allocation failed\n");
Doug Zongker9b125b02010-09-22 12:01:37 -07001270 }
1271 }
1272 printf("\n");
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001273
1274 property_list(print_property, NULL);
Doug Zongker56c51052010-07-01 09:18:44 -07001275 printf("\n");
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001276
Elliott Hughesbb78d622015-04-09 20:51:08 -07001277 ui->Print("Supported API: %d\n", RECOVERY_API_VERSION);
1278
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001279 int status = INSTALL_SUCCESS;
1280
Doug Zongker540d57f2011-01-18 13:36:58 -08001281 if (update_package != NULL) {
Yabin Cui53e7a062016-02-17 12:21:52 -08001282 if (!is_battery_ok()) {
1283 ui->Print("battery capacity is not enough for installing package, needed is %d%%\n",
1284 BATTERY_OK_PERCENTAGE);
1285 status = INSTALL_SKIPPED;
1286 } else {
1287 status = install_package(update_package, &should_wipe_cache,
1288 TEMPORARY_INSTALL_FILE, true);
1289 if (status == INSTALL_SUCCESS && should_wipe_cache) {
1290 wipe_cache(false, device);
1291 }
1292 if (status != INSTALL_SUCCESS) {
1293 ui->Print("Installation aborted.\n");
Tianjie Xu3c62b672016-02-05 18:25:58 -08001294 // When I/O error happens, reboot and retry installation EIO_RETRY_COUNT
1295 // times before we abandon this OTA update.
1296 if (status == INSTALL_RETRY && retry_count < EIO_RETRY_COUNT) {
1297 copy_logs();
1298 set_retry_bootloader_message(retry_count, argc, argv);
1299 // Print retry count on screen.
1300 ui->Print("Retry attempt %d\n", retry_count);
Doug Zongker7c3ae452013-05-14 11:03:02 -07001301
Tianjie Xu3c62b672016-02-05 18:25:58 -08001302 // Reboot and retry the update
1303 int ret = property_set(ANDROID_RB_PROPERTY, "reboot,recovery");
1304 if (ret < 0) {
1305 ui->Print("Reboot failed\n");
1306 } else {
1307 while (true) {
1308 pause();
1309 }
1310 }
1311 }
Yabin Cui53e7a062016-02-17 12:21:52 -08001312 // If this is an eng or userdebug build, then automatically
1313 // turn the text display on if the script fails so the error
1314 // message is visible.
1315 if (is_ro_debuggable()) {
1316 ui->ShowText(true);
1317 }
Doug Zongker7c3ae452013-05-14 11:03:02 -07001318 }
1319 }
Tao Baoe39a9bc2015-03-31 12:19:05 -07001320 } else if (should_wipe_data) {
1321 if (!wipe_data(false, device)) {
1322 status = INSTALL_ERROR;
1323 }
Tao Baoc679f932015-03-30 09:43:49 -07001324 } else if (should_wipe_cache) {
Tao Baoe39a9bc2015-03-31 12:19:05 -07001325 if (!wipe_cache(false, device)) {
1326 status = INSTALL_ERROR;
1327 }
Tao Baoc679f932015-03-30 09:43:49 -07001328 } else if (sideload) {
1329 // 'adb reboot sideload' acts the same as user presses key combinations
1330 // to enter the sideload mode. When 'sideload-auto-reboot' is used, text
1331 // display will NOT be turned on by default. And it will reboot after
1332 // sideload finishes even if there are errors. Unless one turns on the
1333 // text display during the installation. This is to enable automated
1334 // testing.
1335 if (!sideload_auto_reboot) {
1336 ui->ShowText(true);
1337 }
1338 status = apply_from_adb(ui, &should_wipe_cache, TEMPORARY_INSTALL_FILE);
1339 if (status == INSTALL_SUCCESS && should_wipe_cache) {
Tao Baoe39a9bc2015-03-31 12:19:05 -07001340 if (!wipe_cache(false, device)) {
1341 status = INSTALL_ERROR;
1342 }
Tao Baoc679f932015-03-30 09:43:49 -07001343 }
1344 ui->Print("\nInstall from ADB complete (status: %d).\n", status);
1345 if (sideload_auto_reboot) {
1346 ui->Print("Rebooting automatically.\n");
1347 }
Doug Zongkere5d5ac72012-04-12 11:01:22 -07001348 } else if (!just_exit) {
Doug Zongker02ec6b82012-08-22 17:26:40 -07001349 status = INSTALL_NONE; // No command specified
1350 ui->SetBackground(RecoveryUI::NO_COMMAND);
Tao Bao785d22c2015-05-04 09:34:29 -07001351
1352 // http://b/17489952
1353 // If this is an eng or userdebug build, automatically turn on the
1354 // text display if no command is specified.
1355 if (is_ro_debuggable()) {
1356 ui->ShowText(true);
1357 }
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001358 }
1359
Tao Baoc679f932015-03-30 09:43:49 -07001360 if (!sideload_auto_reboot && (status == INSTALL_ERROR || status == INSTALL_CORRUPT)) {
Doug Zongkerf24fd7e2013-07-02 11:43:25 -07001361 copy_logs();
Doug Zongker02ec6b82012-08-22 17:26:40 -07001362 ui->SetBackground(RecoveryUI::ERROR);
1363 }
Tao Baoc679f932015-03-30 09:43:49 -07001364
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001365 Device::BuiltinAction after = shutdown_after ? Device::SHUTDOWN : Device::REBOOT;
Yabin Cui53e7a062016-02-17 12:21:52 -08001366 if ((status != INSTALL_SUCCESS && status != INSTALL_SKIPPED && !sideload_auto_reboot) ||
1367 ui->IsTextVisible()) {
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001368 Device::BuiltinAction temp = prompt_and_wait(device, status);
Tao Baoc679f932015-03-30 09:43:49 -07001369 if (temp != Device::NO_ACTION) {
1370 after = temp;
1371 }
Doug Zongker8674a722010-09-15 11:08:23 -07001372 }
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001373
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001374 // Save logs and clean up before rebooting or shutting down.
Tianjie Xuc14d95d2016-03-24 11:50:34 -07001375 finish_recovery();
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001376
1377 switch (after) {
1378 case Device::SHUTDOWN:
1379 ui->Print("Shutting down...\n");
1380 property_set(ANDROID_RB_PROPERTY, "shutdown,");
1381 break;
1382
1383 case Device::REBOOT_BOOTLOADER:
1384 ui->Print("Rebooting to bootloader...\n");
1385 property_set(ANDROID_RB_PROPERTY, "reboot,bootloader");
1386 break;
1387
1388 default:
1389 ui->Print("Rebooting...\n");
1390 property_set(ANDROID_RB_PROPERTY, "reboot,");
1391 break;
Doug Zongkerb1d12632014-03-18 10:32:12 -07001392 }
Tao Bao75238632015-05-27 14:46:17 -07001393 while (true) {
1394 pause();
1395 }
1396 // Should be unreachable.
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001397 return EXIT_SUCCESS;
1398}