blob: dbdc1fbd69e482ca28708ea485a7e3becc36c4ac [file] [log] [blame]
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001/*
2 * Copyright (C) 2007 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17#include <ctype.h>
Doug Zongker7c3ae452013-05-14 11:03:02 -070018#include <dirent.h>
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080019#include <errno.h>
20#include <fcntl.h>
21#include <getopt.h>
22#include <limits.h>
23#include <linux/input.h>
Doug Zongker7c3ae452013-05-14 11:03:02 -070024#include <stdarg.h>
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080025#include <stdio.h>
26#include <stdlib.h>
27#include <string.h>
Patrick Tjincd055ee2014-12-09 11:26:40 -080028#include <sys/klog.h>
Doug Zongker23ceeea2010-07-08 17:27:55 -070029#include <sys/stat.h>
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080030#include <sys/types.h>
Tao Baocdcf28f2016-01-13 15:05:20 -080031#include <sys/wait.h>
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080032#include <time.h>
33#include <unistd.h>
34
Tao Bao04ca4262015-09-10 15:32:24 -070035#include <chrono>
36
Tao Bao75238632015-05-27 14:46:17 -070037#include <adb.h>
Mark Salyzyn13aca592016-03-09 14:58:16 -080038#include <android/log.h> /* Android Log Priority Tags */
Elliott Hughes4b166f02015-12-04 15:30:20 -080039#include <android-base/file.h>
Tianjie Xufa12b972016-02-05 18:25:58 -080040#include <android-base/parseint.h>
Elliott Hughes4b166f02015-12-04 15:30:20 -080041#include <android-base/stringprintf.h>
Tao Bao75238632015-05-27 14:46:17 -070042#include <cutils/android_reboot.h>
43#include <cutils/properties.h>
Mark Salyzyn13aca592016-03-09 14:58:16 -080044#include <log/logger.h> /* Android Log packet format */
45#include <private/android_logger.h> /* private pmsg functions */
Tao Baobef39712015-05-04 18:50:27 -070046
Yabin Cui99281df2016-02-17 12:21:52 -080047#include <healthd/BatteryMonitor.h>
48
Tao Bao75238632015-05-27 14:46:17 -070049#include "adb_install.h"
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080050#include "bootloader.h"
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080051#include "common.h"
Tao Bao75238632015-05-27 14:46:17 -070052#include "device.h"
53#include "fuse_sdcard_provider.h"
54#include "fuse_sideload.h"
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080055#include "install.h"
56#include "minui/minui.h"
57#include "minzip/DirUtil.h"
58#include "roots.h"
Doug Zongker28ce47c2011-10-28 10:33:05 -070059#include "ui.h"
Doug Zongker211aebc2011-10-28 15:13:10 -070060#include "screen_ui.h"
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080061
Stephen Smalley779701d2012-02-09 14:13:23 -050062struct selabel_handle *sehandle;
63
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080064static const struct option OPTIONS[] = {
Tao Baoc679f932015-03-30 09:43:49 -070065 { "send_intent", required_argument, NULL, 'i' },
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080066 { "update_package", required_argument, NULL, 'u' },
Tianjie Xufa12b972016-02-05 18:25:58 -080067 { "retry_count", required_argument, NULL, 'n' },
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080068 { "wipe_data", no_argument, NULL, 'w' },
69 { "wipe_cache", no_argument, NULL, 'c' },
Doug Zongker4bc98062010-09-03 11:00:13 -070070 { "show_text", no_argument, NULL, 't' },
Tao Baoc679f932015-03-30 09:43:49 -070071 { "sideload", no_argument, NULL, 's' },
72 { "sideload_auto_reboot", no_argument, NULL, 'a' },
Doug Zongkere5d5ac72012-04-12 11:01:22 -070073 { "just_exit", no_argument, NULL, 'x' },
Doug Zongker02ec6b82012-08-22 17:26:40 -070074 { "locale", required_argument, NULL, 'l' },
Doug Zongkerc87bab12013-11-25 13:53:25 -080075 { "stages", required_argument, NULL, 'g' },
Doug Zongkerb1d12632014-03-18 10:32:12 -070076 { "shutdown_after", no_argument, NULL, 'p' },
Jeff Sharkeya6e13ae2014-09-24 11:46:17 -070077 { "reason", required_argument, NULL, 'r' },
Doug Zongker988500b2009-10-06 14:41:38 -070078 { NULL, 0, NULL, 0 },
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080079};
80
Doug Zongker6d0d7ac2013-07-09 13:34:55 -070081static const char *CACHE_LOG_DIR = "/cache/recovery";
Doug Zongkerd4208f92010-09-20 12:16:13 -070082static const char *COMMAND_FILE = "/cache/recovery/command";
83static const char *INTENT_FILE = "/cache/recovery/intent";
84static const char *LOG_FILE = "/cache/recovery/log";
Doug Zongkerd0181b82011-10-19 10:51:12 -070085static const char *LAST_INSTALL_FILE = "/cache/recovery/last_install";
Doug Zongker8b240cc2012-08-29 15:19:29 -070086static const char *LOCALE_FILE = "/cache/recovery/last_locale";
Paul Lawrence661f8a62016-02-25 12:42:19 -080087static const char *CONVERT_FBE_DIR = "/tmp/convert_fbe";
88static const char *CONVERT_FBE_FILE = "/tmp/convert_fbe/convert_fbe";
Michael Ward9d2629c2011-06-23 22:14:24 -070089static const char *CACHE_ROOT = "/cache";
Paul Lawrenced0db3372015-11-05 13:38:40 -080090static const char *DATA_ROOT = "/data";
Doug Zongkerd4208f92010-09-20 12:16:13 -070091static const char *SDCARD_ROOT = "/sdcard";
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080092static const char *TEMPORARY_LOG_FILE = "/tmp/recovery.log";
Doug Zongkerd0181b82011-10-19 10:51:12 -070093static const char *TEMPORARY_INSTALL_FILE = "/tmp/last_install";
Tao Baof0124322015-04-11 02:04:11 +000094static const char *LAST_KMSG_FILE = "/cache/recovery/last_kmsg";
Tao Baobef39712015-05-04 18:50:27 -070095static const char *LAST_LOG_FILE = "/cache/recovery/last_log";
96static const int KEEP_LOG_COUNT = 10;
Tianjie Xufa12b972016-02-05 18:25:58 -080097static const int EIO_RETRY_COUNT = 2;
Yabin Cui99281df2016-02-17 12:21:52 -080098static const int BATTERY_READ_TIMEOUT_IN_SEC = 10;
99// GmsCore enters recovery mode to install package when having enough battery
100// percentage. Normally, the threshold is 40% without charger and 20% with charger.
101// So we should check battery with a slightly lower limitation.
102static const int BATTERY_OK_PERCENTAGE = 20;
103static const int BATTERY_WITH_CHARGER_OK_PERCENTAGE = 15;
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700104
Doug Zongker211aebc2011-10-28 15:13:10 -0700105RecoveryUI* ui = NULL;
Elliott Hughes498cda62016-04-14 16:49:04 -0700106static const char* locale = "en_US";
Doug Zongkerc87bab12013-11-25 13:53:25 -0800107char* stage = NULL;
Jeff Sharkeya6e13ae2014-09-24 11:46:17 -0700108char* reason = NULL;
Tao Bao682c34b2015-04-07 17:16:35 -0700109bool modified_flash = false;
Tao Baoae6408d2016-02-25 12:29:40 -0800110static bool has_cache = false;
Doug Zongker211aebc2011-10-28 15:13:10 -0700111
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800112/*
113 * The recovery tool communicates with the main system through /cache files.
114 * /cache/recovery/command - INPUT - command line for tool, one arg per line
115 * /cache/recovery/log - OUTPUT - combined log file from recovery run(s)
116 * /cache/recovery/intent - OUTPUT - intent that was passed in
117 *
118 * The arguments which may be supplied in the recovery.command file:
119 * --send_intent=anystring - write the text out to recovery.intent
Doug Zongkerd4208f92010-09-20 12:16:13 -0700120 * --update_package=path - verify install an OTA package file
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800121 * --wipe_data - erase user data (and cache), then reboot
122 * --wipe_cache - wipe cache (but not user data), then reboot
Oscar Montemayor05231562009-11-30 08:40:57 -0800123 * --set_encrypted_filesystem=on|off - enables / diasables encrypted fs
Doug Zongkere5d5ac72012-04-12 11:01:22 -0700124 * --just_exit - do nothing; exit and reboot
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800125 *
126 * After completing, we remove /cache/recovery/command and reboot.
127 * Arguments may also be supplied in the bootloader control block (BCB).
128 * These important scenarios must be safely restartable at any point:
129 *
130 * FACTORY RESET
131 * 1. user selects "factory reset"
132 * 2. main system writes "--wipe_data" to /cache/recovery/command
133 * 3. main system reboots into recovery
134 * 4. get_args() writes BCB with "boot-recovery" and "--wipe_data"
135 * -- after this, rebooting will restart the erase --
Doug Zongkerd4208f92010-09-20 12:16:13 -0700136 * 5. erase_volume() reformats /data
137 * 6. erase_volume() reformats /cache
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800138 * 7. finish_recovery() erases BCB
139 * -- after this, rebooting will restart the main system --
140 * 8. main() calls reboot() to boot main system
141 *
142 * OTA INSTALL
143 * 1. main system downloads OTA package to /cache/some-filename.zip
Doug Zongker9b125b02010-09-22 12:01:37 -0700144 * 2. main system writes "--update_package=/cache/some-filename.zip"
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800145 * 3. main system reboots into recovery
146 * 4. get_args() writes BCB with "boot-recovery" and "--update_package=..."
147 * -- after this, rebooting will attempt to reinstall the update --
148 * 5. install_package() attempts to install the update
149 * NOTE: the package install must itself be restartable from any point
150 * 6. finish_recovery() erases BCB
151 * -- after this, rebooting will (try to) restart the main system --
152 * 7. ** if install failed **
153 * 7a. prompt_and_wait() shows an error icon and waits for the user
154 * 7b; the user reboots (pulling the battery, etc) into the main system
155 * 8. main() calls maybe_install_firmware_update()
156 * ** if the update contained radio/hboot firmware **:
157 * 8a. m_i_f_u() writes BCB with "boot-recovery" and "--wipe_cache"
158 * -- after this, rebooting will reformat cache & restart main system --
159 * 8b. m_i_f_u() writes firmware image into raw cache partition
160 * 8c. m_i_f_u() writes BCB with "update-radio/hboot" and "--wipe_cache"
161 * -- after this, rebooting will attempt to reinstall firmware --
162 * 8d. bootloader tries to flash firmware
163 * 8e. bootloader writes BCB with "boot-recovery" (keeping "--wipe_cache")
164 * -- after this, rebooting will reformat cache & restart main system --
Doug Zongkerd4208f92010-09-20 12:16:13 -0700165 * 8f. erase_volume() reformats /cache
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800166 * 8g. finish_recovery() erases BCB
167 * -- after this, rebooting will (try to) restart the main system --
168 * 9. main() calls reboot() to boot main system
169 */
170
171static const int MAX_ARG_LENGTH = 4096;
172static const int MAX_ARGS = 100;
173
Doug Zongkerd4208f92010-09-20 12:16:13 -0700174// open a given path, mounting partitions as necessary
Tao Bao04ca4262015-09-10 15:32:24 -0700175FILE* fopen_path(const char *path, const char *mode) {
Doug Zongkerd4208f92010-09-20 12:16:13 -0700176 if (ensure_path_mounted(path) != 0) {
177 LOGE("Can't mount %s\n", path);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800178 return NULL;
179 }
180
181 // When writing, try to create the containing directory, if necessary.
182 // Use generous permissions, the system (init.rc) will reset them.
Stephen Smalley779701d2012-02-09 14:13:23 -0500183 if (strchr("wa", mode[0])) dirCreateHierarchy(path, 0777, NULL, 1, sehandle);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800184
185 FILE *fp = fopen(path, mode);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800186 return fp;
187}
188
Tao Bao04ca4262015-09-10 15:32:24 -0700189// close a file, log an error if the error indicator is set
190static void check_and_fclose(FILE *fp, const char *name) {
191 fflush(fp);
192 if (ferror(fp)) LOGE("Error in %s\n(%s)\n", name, strerror(errno));
193 fclose(fp);
194}
195
Elliott Hughesf14af802015-02-10 14:46:14 -0800196bool is_ro_debuggable() {
197 char value[PROPERTY_VALUE_MAX+1];
198 return (property_get("ro.debuggable", value, NULL) == 1 && value[0] == '1');
199}
200
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700201static void redirect_stdio(const char* filename) {
Tao Bao04ca4262015-09-10 15:32:24 -0700202 int pipefd[2];
203 if (pipe(pipefd) == -1) {
204 LOGE("pipe failed: %s\n", strerror(errno));
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700205
Tao Bao04ca4262015-09-10 15:32:24 -0700206 // Fall back to traditional logging mode without timestamps.
207 // If these fail, there's not really anywhere to complain...
208 freopen(filename, "a", stdout); setbuf(stdout, NULL);
209 freopen(filename, "a", stderr); setbuf(stderr, NULL);
210
211 return;
212 }
213
214 pid_t pid = fork();
215 if (pid == -1) {
216 LOGE("fork failed: %s\n", strerror(errno));
217
218 // Fall back to traditional logging mode without timestamps.
219 // If these fail, there's not really anywhere to complain...
220 freopen(filename, "a", stdout); setbuf(stdout, NULL);
221 freopen(filename, "a", stderr); setbuf(stderr, NULL);
222
223 return;
224 }
225
226 if (pid == 0) {
227 /// Close the unused write end.
228 close(pipefd[1]);
229
230 auto start = std::chrono::steady_clock::now();
231
232 // Child logger to actually write to the log file.
233 FILE* log_fp = fopen(filename, "a");
234 if (log_fp == nullptr) {
235 LOGE("fopen \"%s\" failed: %s\n", filename, strerror(errno));
236 close(pipefd[0]);
237 _exit(1);
238 }
239
240 FILE* pipe_fp = fdopen(pipefd[0], "r");
241 if (pipe_fp == nullptr) {
242 LOGE("fdopen failed: %s\n", strerror(errno));
243 check_and_fclose(log_fp, filename);
244 close(pipefd[0]);
245 _exit(1);
246 }
247
248 char* line = nullptr;
249 size_t len = 0;
250 while (getline(&line, &len, pipe_fp) != -1) {
251 auto now = std::chrono::steady_clock::now();
252 double duration = std::chrono::duration_cast<std::chrono::duration<double>>(
253 now - start).count();
254 if (line[0] == '\n') {
255 fprintf(log_fp, "[%12.6lf]\n", duration);
256 } else {
257 fprintf(log_fp, "[%12.6lf] %s", duration, line);
258 }
259 fflush(log_fp);
260 }
261
262 LOGE("getline failed: %s\n", strerror(errno));
263
264 free(line);
265 check_and_fclose(log_fp, filename);
266 close(pipefd[0]);
267 _exit(1);
268 } else {
269 // Redirect stdout/stderr to the logger process.
270 // Close the unused read end.
271 close(pipefd[0]);
272
273 setbuf(stdout, nullptr);
274 setbuf(stderr, nullptr);
275
276 if (dup2(pipefd[1], STDOUT_FILENO) == -1) {
277 LOGE("dup2 stdout failed: %s\n", strerror(errno));
278 }
279 if (dup2(pipefd[1], STDERR_FILENO) == -1) {
280 LOGE("dup2 stderr failed: %s\n", strerror(errno));
281 }
282
283 close(pipefd[1]);
284 }
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800285}
286
287// command line args come from, in decreasing precedence:
288// - the actual command line
289// - the bootloader control block (one per line, after "recovery")
290// - the contents of COMMAND_FILE (one per line)
291static void
292get_args(int *argc, char ***argv) {
293 struct bootloader_message boot;
294 memset(&boot, 0, sizeof(boot));
295 get_bootloader_message(&boot); // this may fail, leaving a zeroed structure
Doug Zongkerc87bab12013-11-25 13:53:25 -0800296 stage = strndup(boot.stage, sizeof(boot.stage));
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800297
298 if (boot.command[0] != 0 && boot.command[0] != 255) {
Mark Salyzynf3bb31c2014-03-14 09:39:48 -0700299 LOGI("Boot command: %.*s\n", (int)sizeof(boot.command), boot.command);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800300 }
301
302 if (boot.status[0] != 0 && boot.status[0] != 255) {
Mark Salyzynf3bb31c2014-03-14 09:39:48 -0700303 LOGI("Boot status: %.*s\n", (int)sizeof(boot.status), boot.status);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800304 }
305
306 // --- if arguments weren't supplied, look in the bootloader control block
307 if (*argc <= 1) {
308 boot.recovery[sizeof(boot.recovery) - 1] = '\0'; // Ensure termination
309 const char *arg = strtok(boot.recovery, "\n");
310 if (arg != NULL && !strcmp(arg, "recovery")) {
311 *argv = (char **) malloc(sizeof(char *) * MAX_ARGS);
312 (*argv)[0] = strdup(arg);
313 for (*argc = 1; *argc < MAX_ARGS; ++*argc) {
314 if ((arg = strtok(NULL, "\n")) == NULL) break;
315 (*argv)[*argc] = strdup(arg);
316 }
317 LOGI("Got arguments from boot message\n");
318 } else if (boot.recovery[0] != 0 && boot.recovery[0] != 255) {
319 LOGE("Bad boot message\n\"%.20s\"\n", boot.recovery);
320 }
321 }
322
Tao Baoae6408d2016-02-25 12:29:40 -0800323 // --- if that doesn't work, try the command file (if we have /cache).
324 if (*argc <= 1 && has_cache) {
Doug Zongkerd4208f92010-09-20 12:16:13 -0700325 FILE *fp = fopen_path(COMMAND_FILE, "r");
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800326 if (fp != NULL) {
Jin Feng93ffa752013-06-04 17:46:24 +0800327 char *token;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800328 char *argv0 = (*argv)[0];
329 *argv = (char **) malloc(sizeof(char *) * MAX_ARGS);
330 (*argv)[0] = argv0; // use the same program name
331
332 char buf[MAX_ARG_LENGTH];
333 for (*argc = 1; *argc < MAX_ARGS; ++*argc) {
334 if (!fgets(buf, sizeof(buf), fp)) break;
Jin Feng93ffa752013-06-04 17:46:24 +0800335 token = strtok(buf, "\r\n");
336 if (token != NULL) {
337 (*argv)[*argc] = strdup(token); // Strip newline.
338 } else {
339 --*argc;
340 }
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800341 }
342
343 check_and_fclose(fp, COMMAND_FILE);
344 LOGI("Got arguments from %s\n", COMMAND_FILE);
345 }
346 }
347
348 // --> write the arguments we have back into the bootloader control block
349 // always boot into recovery after this (until finish_recovery() is called)
350 strlcpy(boot.command, "boot-recovery", sizeof(boot.command));
351 strlcpy(boot.recovery, "recovery\n", sizeof(boot.recovery));
352 int i;
353 for (i = 1; i < *argc; ++i) {
354 strlcat(boot.recovery, (*argv)[i], sizeof(boot.recovery));
355 strlcat(boot.recovery, "\n", sizeof(boot.recovery));
356 }
357 set_bootloader_message(&boot);
358}
359
Doug Zongker34c98df2009-08-18 12:05:45 -0700360static void
Oscar Montemayor05231562009-11-30 08:40:57 -0800361set_sdcard_update_bootloader_message() {
Doug Zongker34c98df2009-08-18 12:05:45 -0700362 struct bootloader_message boot;
363 memset(&boot, 0, sizeof(boot));
364 strlcpy(boot.command, "boot-recovery", sizeof(boot.command));
365 strlcpy(boot.recovery, "recovery\n", sizeof(boot.recovery));
366 set_bootloader_message(&boot);
367}
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800368
Tao Baobef39712015-05-04 18:50:27 -0700369// Read from kernel log into buffer and write out to file.
370static void save_kernel_log(const char* destination) {
371 int klog_buf_len = klogctl(KLOG_SIZE_BUFFER, 0, 0);
Patrick Tjincd055ee2014-12-09 11:26:40 -0800372 if (klog_buf_len <= 0) {
Tao Baobef39712015-05-04 18:50:27 -0700373 LOGE("Error getting klog size: %s\n", strerror(errno));
Patrick Tjincd055ee2014-12-09 11:26:40 -0800374 return;
375 }
376
Tao Baobef39712015-05-04 18:50:27 -0700377 std::string buffer(klog_buf_len, 0);
378 int n = klogctl(KLOG_READ_ALL, &buffer[0], klog_buf_len);
379 if (n == -1) {
380 LOGE("Error in reading klog: %s\n", strerror(errno));
Patrick Tjincd055ee2014-12-09 11:26:40 -0800381 return;
382 }
Tao Baobef39712015-05-04 18:50:27 -0700383 buffer.resize(n);
384 android::base::WriteStringToFile(buffer, destination);
Patrick Tjincd055ee2014-12-09 11:26:40 -0800385}
386
Mark Salyzyn13aca592016-03-09 14:58:16 -0800387// write content to the current pmsg session.
388static ssize_t __pmsg_write(const char *filename, const char *buf, size_t len) {
389 return __android_log_pmsg_file_write(LOG_ID_SYSTEM, ANDROID_LOG_INFO,
390 filename, buf, len);
391}
392
393static void copy_log_file_to_pmsg(const char* source, const char* destination) {
394 std::string content;
395 android::base::ReadFileToString(source, &content);
396 __pmsg_write(destination, content.c_str(), content.length());
397}
398
Tao Baof0124322015-04-11 02:04:11 +0000399// How much of the temp log we have copied to the copy in cache.
400static long tmplog_offset = 0;
401
Tao Baobef39712015-05-04 18:50:27 -0700402static void copy_log_file(const char* source, const char* destination, bool append) {
403 FILE* dest_fp = fopen_path(destination, append ? "a" : "w");
404 if (dest_fp == nullptr) {
Doug Zongker2c3539e2010-09-29 13:21:30 -0700405 LOGE("Can't open %s\n", destination);
406 } else {
Tao Baobef39712015-05-04 18:50:27 -0700407 FILE* source_fp = fopen(source, "r");
408 if (source_fp != nullptr) {
Tao Baof0124322015-04-11 02:04:11 +0000409 if (append) {
Tao Baobef39712015-05-04 18:50:27 -0700410 fseek(source_fp, tmplog_offset, SEEK_SET); // Since last write
Doug Zongker2c3539e2010-09-29 13:21:30 -0700411 }
412 char buf[4096];
Tao Baobef39712015-05-04 18:50:27 -0700413 size_t bytes;
414 while ((bytes = fread(buf, 1, sizeof(buf), source_fp)) != 0) {
415 fwrite(buf, 1, bytes, dest_fp);
Doug Zongker2c3539e2010-09-29 13:21:30 -0700416 }
Tao Baobef39712015-05-04 18:50:27 -0700417 if (append) {
418 tmplog_offset = ftell(source_fp);
419 }
420 check_and_fclose(source_fp, source);
Doug Zongker2c3539e2010-09-29 13:21:30 -0700421 }
Tao Baobef39712015-05-04 18:50:27 -0700422 check_and_fclose(dest_fp, destination);
Doug Zongker2c3539e2010-09-29 13:21:30 -0700423 }
424}
425
Tao Baobef39712015-05-04 18:50:27 -0700426// Rename last_log -> last_log.1 -> last_log.2 -> ... -> last_log.$max.
427// Similarly rename last_kmsg -> last_kmsg.1 -> ... -> last_kmsg.$max.
428// Overwrite any existing last_log.$max and last_kmsg.$max.
429static void rotate_logs(int max) {
Tao Bao682c34b2015-04-07 17:16:35 -0700430 // Logs should only be rotated once.
431 static bool rotated = false;
432 if (rotated) {
433 return;
434 }
435 rotated = true;
436 ensure_path_mounted(LAST_LOG_FILE);
Tao Baobef39712015-05-04 18:50:27 -0700437 ensure_path_mounted(LAST_KMSG_FILE);
Tao Bao682c34b2015-04-07 17:16:35 -0700438
Tao Bao682c34b2015-04-07 17:16:35 -0700439 for (int i = max-1; i >= 0; --i) {
Tao Bao80e46e02015-06-03 10:49:29 -0700440 std::string old_log = android::base::StringPrintf("%s", LAST_LOG_FILE);
441 if (i > 0) {
442 old_log += "." + std::to_string(i);
443 }
Tao Baobef39712015-05-04 18:50:27 -0700444 std::string new_log = android::base::StringPrintf("%s.%d", LAST_LOG_FILE, i+1);
445 // Ignore errors if old_log doesn't exist.
446 rename(old_log.c_str(), new_log.c_str());
447
Tao Bao80e46e02015-06-03 10:49:29 -0700448 std::string old_kmsg = android::base::StringPrintf("%s", LAST_KMSG_FILE);
449 if (i > 0) {
450 old_kmsg += "." + std::to_string(i);
451 }
Tao Baobef39712015-05-04 18:50:27 -0700452 std::string new_kmsg = android::base::StringPrintf("%s.%d", LAST_KMSG_FILE, i+1);
453 rename(old_kmsg.c_str(), new_kmsg.c_str());
Doug Zongkerda1ebae2013-05-16 11:23:48 -0700454 }
455}
Doug Zongker2c3539e2010-09-29 13:21:30 -0700456
Tao Bao682c34b2015-04-07 17:16:35 -0700457static void copy_logs() {
458 // We only rotate and record the log of the current session if there are
459 // actual attempts to modify the flash, such as wipes, installs from BCB
460 // or menu selections. This is to avoid unnecessary rotation (and
461 // possible deletion) of log files, if it does not do anything loggable.
462 if (!modified_flash) {
463 return;
464 }
465
Mark Salyzyn13aca592016-03-09 14:58:16 -0800466 // Always write to pmsg, this allows the OTA logs to be caught in logcat -L
467 copy_log_file_to_pmsg(TEMPORARY_LOG_FILE, LAST_LOG_FILE);
468 copy_log_file_to_pmsg(TEMPORARY_INSTALL_FILE, LAST_INSTALL_FILE);
469
470 // We can do nothing for now if there's no /cache partition.
471 if (!has_cache) {
472 return;
473 }
474
Tao Baobef39712015-05-04 18:50:27 -0700475 rotate_logs(KEEP_LOG_COUNT);
Tao Bao682c34b2015-04-07 17:16:35 -0700476
Doug Zongkerf24fd7e2013-07-02 11:43:25 -0700477 // Copy logs to cache so the system can find out what happened.
Tao Baof0124322015-04-11 02:04:11 +0000478 copy_log_file(TEMPORARY_LOG_FILE, LOG_FILE, true);
479 copy_log_file(TEMPORARY_LOG_FILE, LAST_LOG_FILE, false);
480 copy_log_file(TEMPORARY_INSTALL_FILE, LAST_INSTALL_FILE, false);
481 save_kernel_log(LAST_KMSG_FILE);
Doug Zongkerf24fd7e2013-07-02 11:43:25 -0700482 chmod(LOG_FILE, 0600);
483 chown(LOG_FILE, 1000, 1000); // system user
Tao Baof0124322015-04-11 02:04:11 +0000484 chmod(LAST_KMSG_FILE, 0600);
485 chown(LAST_KMSG_FILE, 1000, 1000); // system user
Doug Zongkerf24fd7e2013-07-02 11:43:25 -0700486 chmod(LAST_LOG_FILE, 0640);
487 chmod(LAST_INSTALL_FILE, 0644);
488 sync();
489}
490
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800491// clear the recovery command and prepare to boot a (hopefully working) system,
492// copy our log file to cache as well (for the system to read), and
493// record any intent we were asked to communicate back to the system.
494// this function is idempotent: call it as many times as you like.
495static void
Oscar Montemayor05231562009-11-30 08:40:57 -0800496finish_recovery(const char *send_intent) {
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800497 // By this point, we're ready to return to the main system...
Tao Baoae6408d2016-02-25 12:29:40 -0800498 if (send_intent != NULL && has_cache) {
Doug Zongkerd4208f92010-09-20 12:16:13 -0700499 FILE *fp = fopen_path(INTENT_FILE, "w");
Jay Freeman (saurik)619ec2f2008-11-17 01:56:05 +0000500 if (fp == NULL) {
501 LOGE("Can't open %s\n", INTENT_FILE);
502 } else {
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800503 fputs(send_intent, fp);
504 check_and_fclose(fp, INTENT_FILE);
505 }
506 }
507
Doug Zongker4f33e552012-08-23 13:16:12 -0700508 // Save the locale to cache, so if recovery is next started up
509 // without a --locale argument (eg, directly from the bootloader)
510 // it will use the last-known locale.
Mark Salyzyn13aca592016-03-09 14:58:16 -0800511 if (locale != NULL) {
512 size_t len = strlen(locale);
513 __pmsg_write(LOCALE_FILE, locale, len);
514 if (has_cache) {
515 LOGI("Saving locale \"%s\"\n", locale);
516 FILE* fp = fopen_path(LOCALE_FILE, "w");
517 fwrite(locale, 1, len, fp);
518 fflush(fp);
519 fsync(fileno(fp));
520 check_and_fclose(fp, LOCALE_FILE);
521 }
Doug Zongker4f33e552012-08-23 13:16:12 -0700522 }
523
Doug Zongkerf24fd7e2013-07-02 11:43:25 -0700524 copy_logs();
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800525
Doug Zongkere5d5ac72012-04-12 11:01:22 -0700526 // Reset to normal system boot so recovery won't cycle indefinitely.
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800527 struct bootloader_message boot;
528 memset(&boot, 0, sizeof(boot));
529 set_bootloader_message(&boot);
530
531 // Remove the command file, so recovery won't repeat indefinitely.
Tao Baoae6408d2016-02-25 12:29:40 -0800532 if (has_cache) {
533 if (ensure_path_mounted(COMMAND_FILE) != 0 || (unlink(COMMAND_FILE) && errno != ENOENT)) {
534 LOGW("Can't unlink %s\n", COMMAND_FILE);
535 }
536 ensure_path_unmounted(CACHE_ROOT);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800537 }
538
539 sync(); // For good measure.
540}
541
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700542typedef struct _saved_log_file {
543 char* name;
544 struct stat st;
545 unsigned char* data;
546 struct _saved_log_file* next;
547} saved_log_file;
548
Elliott Hughes945548e2015-06-05 17:59:56 -0700549static bool erase_volume(const char* volume) {
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700550 bool is_cache = (strcmp(volume, CACHE_ROOT) == 0);
Paul Lawrenced0db3372015-11-05 13:38:40 -0800551 bool is_data = (strcmp(volume, DATA_ROOT) == 0);
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700552
Doug Zongker02ec6b82012-08-22 17:26:40 -0700553 ui->SetBackground(RecoveryUI::ERASING);
Doug Zongker211aebc2011-10-28 15:13:10 -0700554 ui->SetProgressType(RecoveryUI::INDETERMINATE);
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700555
556 saved_log_file* head = NULL;
557
558 if (is_cache) {
Tao Baobef39712015-05-04 18:50:27 -0700559 // If we're reformatting /cache, we load any past logs
560 // (i.e. "/cache/recovery/last_*") and the current log
561 // ("/cache/recovery/log") into memory, so we can restore them after
562 // the reformat.
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700563
564 ensure_path_mounted(volume);
565
566 DIR* d;
567 struct dirent* de;
568 d = opendir(CACHE_LOG_DIR);
569 if (d) {
570 char path[PATH_MAX];
571 strcpy(path, CACHE_LOG_DIR);
572 strcat(path, "/");
573 int path_len = strlen(path);
574 while ((de = readdir(d)) != NULL) {
Tao Baobef39712015-05-04 18:50:27 -0700575 if (strncmp(de->d_name, "last_", 5) == 0 || strcmp(de->d_name, "log") == 0) {
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700576 saved_log_file* p = (saved_log_file*) malloc(sizeof(saved_log_file));
577 strcpy(path+path_len, de->d_name);
578 p->name = strdup(path);
579 if (stat(path, &(p->st)) == 0) {
580 // truncate files to 512kb
581 if (p->st.st_size > (1 << 19)) {
582 p->st.st_size = 1 << 19;
583 }
584 p->data = (unsigned char*) malloc(p->st.st_size);
585 FILE* f = fopen(path, "rb");
586 fread(p->data, 1, p->st.st_size, f);
587 fclose(f);
588 p->next = head;
589 head = p;
590 } else {
591 free(p);
592 }
593 }
594 }
595 closedir(d);
596 } else {
597 if (errno != ENOENT) {
598 printf("opendir failed: %s\n", strerror(errno));
599 }
600 }
601 }
602
Doug Zongker211aebc2011-10-28 15:13:10 -0700603 ui->Print("Formatting %s...\n", volume);
Doug Zongker2c3539e2010-09-29 13:21:30 -0700604
Doug Zongkerd0181b82011-10-19 10:51:12 -0700605 ensure_path_unmounted(volume);
Paul Lawrenced0db3372015-11-05 13:38:40 -0800606
607 int result;
608
609 if (is_data && reason && strcmp(reason, "convert_fbe") == 0) {
610 // Create convert_fbe breadcrumb file to signal to init
611 // to convert to file based encryption, not full disk encryption
Paul Lawrence661f8a62016-02-25 12:42:19 -0800612 if (mkdir(CONVERT_FBE_DIR, 0700) != 0) {
613 ui->Print("Failed to make convert_fbe dir %s\n", strerror(errno));
614 return true;
615 }
Paul Lawrenced0db3372015-11-05 13:38:40 -0800616 FILE* f = fopen(CONVERT_FBE_FILE, "wb");
617 if (!f) {
Paul Lawrence661f8a62016-02-25 12:42:19 -0800618 ui->Print("Failed to convert to file encryption %s\n", strerror(errno));
Paul Lawrenced0db3372015-11-05 13:38:40 -0800619 return true;
620 }
621 fclose(f);
622 result = format_volume(volume, CONVERT_FBE_DIR);
623 remove(CONVERT_FBE_FILE);
624 rmdir(CONVERT_FBE_DIR);
625 } else {
626 result = format_volume(volume);
627 }
Doug Zongkerd0181b82011-10-19 10:51:12 -0700628
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700629 if (is_cache) {
630 while (head) {
631 FILE* f = fopen_path(head->name, "wb");
632 if (f) {
633 fwrite(head->data, 1, head->st.st_size, f);
634 fclose(f);
635 chmod(head->name, head->st.st_mode);
636 chown(head->name, head->st.st_uid, head->st.st_gid);
637 }
638 free(head->name);
639 free(head->data);
640 saved_log_file* temp = head->next;
641 free(head);
642 head = temp;
643 }
644
Tao Baof0124322015-04-11 02:04:11 +0000645 // Any part of the log we'd copied to cache is now gone.
646 // Reset the pointer so we copy from the beginning of the temp
647 // log.
648 tmplog_offset = 0;
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700649 copy_logs();
Doug Zongker2c3539e2010-09-29 13:21:30 -0700650 }
651
Elliott Hughes945548e2015-06-05 17:59:56 -0700652 return (result == 0);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800653}
654
Doug Zongkerf93d8162009-09-22 15:16:02 -0700655static int
Doug Zongker28ce47c2011-10-28 10:33:05 -0700656get_menu_selection(const char* const * headers, const char* const * items,
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700657 int menu_only, int initial_selection, Device* device) {
Doug Zongkerf93d8162009-09-22 15:16:02 -0700658 // throw away keys pressed previously, so user doesn't
659 // accidentally trigger menu items.
Doug Zongker211aebc2011-10-28 15:13:10 -0700660 ui->FlushKeys();
Doug Zongkerf93d8162009-09-22 15:16:02 -0700661
Doug Zongker211aebc2011-10-28 15:13:10 -0700662 ui->StartMenu(headers, items, initial_selection);
Doug Zongker8674a722010-09-15 11:08:23 -0700663 int selected = initial_selection;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800664 int chosen_item = -1;
665
Doug Zongkerf93d8162009-09-22 15:16:02 -0700666 while (chosen_item < 0) {
Doug Zongker211aebc2011-10-28 15:13:10 -0700667 int key = ui->WaitKey();
668 int visible = ui->IsTextVisible();
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800669
Doug Zongker5cae4452011-01-25 13:15:30 -0800670 if (key == -1) { // ui_wait_key() timed out
Doug Zongker211aebc2011-10-28 15:13:10 -0700671 if (ui->WasTextEverVisible()) {
Doug Zongker5cae4452011-01-25 13:15:30 -0800672 continue;
673 } else {
674 LOGI("timed out waiting for key input; rebooting.\n");
Doug Zongker211aebc2011-10-28 15:13:10 -0700675 ui->EndMenu();
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700676 return 0; // XXX fixme
Doug Zongker5cae4452011-01-25 13:15:30 -0800677 }
678 }
679
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700680 int action = device->HandleMenuKey(key, visible);
Doug Zongkerddd6a282009-06-09 12:22:33 -0700681
682 if (action < 0) {
683 switch (action) {
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700684 case Device::kHighlightUp:
Elliott Hughes642aaa72015-04-10 12:47:46 -0700685 selected = ui->SelectMenu(--selected);
Doug Zongkerddd6a282009-06-09 12:22:33 -0700686 break;
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700687 case Device::kHighlightDown:
Elliott Hughes642aaa72015-04-10 12:47:46 -0700688 selected = ui->SelectMenu(++selected);
Doug Zongkerddd6a282009-06-09 12:22:33 -0700689 break;
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700690 case Device::kInvokeItem:
Doug Zongkerddd6a282009-06-09 12:22:33 -0700691 chosen_item = selected;
692 break;
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700693 case Device::kNoAction:
Doug Zongkerddd6a282009-06-09 12:22:33 -0700694 break;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800695 }
Doug Zongkerf93d8162009-09-22 15:16:02 -0700696 } else if (!menu_only) {
Doug Zongkerddd6a282009-06-09 12:22:33 -0700697 chosen_item = action;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800698 }
Doug Zongkerf93d8162009-09-22 15:16:02 -0700699 }
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800700
Doug Zongker211aebc2011-10-28 15:13:10 -0700701 ui->EndMenu();
Doug Zongkerf93d8162009-09-22 15:16:02 -0700702 return chosen_item;
703}
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800704
Doug Zongker8674a722010-09-15 11:08:23 -0700705static int compare_string(const void* a, const void* b) {
706 return strcmp(*(const char**)a, *(const char**)b);
707}
708
Doug Zongker93950222014-07-08 14:10:23 -0700709// Returns a malloc'd path, or NULL.
Elliott Hughes30694c92015-03-25 15:16:51 -0700710static char* browse_directory(const char* path, Device* device) {
Michael Ward9d2629c2011-06-23 22:14:24 -0700711 ensure_path_mounted(path);
Doug Zongkerc18eeb82010-09-21 16:49:26 -0700712
Elliott Hughes30694c92015-03-25 15:16:51 -0700713 DIR* d = opendir(path);
Doug Zongker8674a722010-09-15 11:08:23 -0700714 if (d == NULL) {
715 LOGE("error opening %s: %s\n", path, strerror(errno));
Doug Zongker93950222014-07-08 14:10:23 -0700716 return NULL;
Doug Zongker8674a722010-09-15 11:08:23 -0700717 }
718
Doug Zongker8674a722010-09-15 11:08:23 -0700719 int d_size = 0;
720 int d_alloc = 10;
Doug Zongker28ce47c2011-10-28 10:33:05 -0700721 char** dirs = (char**)malloc(d_alloc * sizeof(char*));
Doug Zongker8674a722010-09-15 11:08:23 -0700722 int z_size = 1;
723 int z_alloc = 10;
Doug Zongker28ce47c2011-10-28 10:33:05 -0700724 char** zips = (char**)malloc(z_alloc * sizeof(char*));
Doug Zongker8674a722010-09-15 11:08:23 -0700725 zips[0] = strdup("../");
726
Elliott Hughes30694c92015-03-25 15:16:51 -0700727 struct dirent* de;
Doug Zongker8674a722010-09-15 11:08:23 -0700728 while ((de = readdir(d)) != NULL) {
729 int name_len = strlen(de->d_name);
730
731 if (de->d_type == DT_DIR) {
732 // skip "." and ".." entries
733 if (name_len == 1 && de->d_name[0] == '.') continue;
734 if (name_len == 2 && de->d_name[0] == '.' &&
735 de->d_name[1] == '.') continue;
736
737 if (d_size >= d_alloc) {
738 d_alloc *= 2;
Doug Zongker28ce47c2011-10-28 10:33:05 -0700739 dirs = (char**)realloc(dirs, d_alloc * sizeof(char*));
Doug Zongker8674a722010-09-15 11:08:23 -0700740 }
Doug Zongker28ce47c2011-10-28 10:33:05 -0700741 dirs[d_size] = (char*)malloc(name_len + 2);
Doug Zongker8674a722010-09-15 11:08:23 -0700742 strcpy(dirs[d_size], de->d_name);
743 dirs[d_size][name_len] = '/';
744 dirs[d_size][name_len+1] = '\0';
745 ++d_size;
746 } else if (de->d_type == DT_REG &&
747 name_len >= 4 &&
748 strncasecmp(de->d_name + (name_len-4), ".zip", 4) == 0) {
749 if (z_size >= z_alloc) {
750 z_alloc *= 2;
Doug Zongker28ce47c2011-10-28 10:33:05 -0700751 zips = (char**)realloc(zips, z_alloc * sizeof(char*));
Doug Zongker8674a722010-09-15 11:08:23 -0700752 }
753 zips[z_size++] = strdup(de->d_name);
754 }
755 }
756 closedir(d);
757
758 qsort(dirs, d_size, sizeof(char*), compare_string);
759 qsort(zips, z_size, sizeof(char*), compare_string);
760
761 // append dirs to the zips list
762 if (d_size + z_size + 1 > z_alloc) {
763 z_alloc = d_size + z_size + 1;
Doug Zongker28ce47c2011-10-28 10:33:05 -0700764 zips = (char**)realloc(zips, z_alloc * sizeof(char*));
Doug Zongker8674a722010-09-15 11:08:23 -0700765 }
766 memcpy(zips + z_size, dirs, d_size * sizeof(char*));
767 free(dirs);
768 z_size += d_size;
769 zips[z_size] = NULL;
770
Elliott Hughes8fd86d72015-04-13 14:36:02 -0700771 const char* headers[] = { "Choose a package to install:", path, NULL };
Elliott Hughes30694c92015-03-25 15:16:51 -0700772
Doug Zongker93950222014-07-08 14:10:23 -0700773 char* result;
Doug Zongker8674a722010-09-15 11:08:23 -0700774 int chosen_item = 0;
Doug Zongker93950222014-07-08 14:10:23 -0700775 while (true) {
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700776 chosen_item = get_menu_selection(headers, zips, 1, chosen_item, device);
Doug Zongker8674a722010-09-15 11:08:23 -0700777
778 char* item = zips[chosen_item];
779 int item_len = strlen(item);
780 if (chosen_item == 0) { // item 0 is always "../"
Michael Ward9d2629c2011-06-23 22:14:24 -0700781 // go up but continue browsing (if the caller is update_directory)
Doug Zongker93950222014-07-08 14:10:23 -0700782 result = NULL;
Doug Zongker8674a722010-09-15 11:08:23 -0700783 break;
784 }
Doug Zongker93950222014-07-08 14:10:23 -0700785
786 char new_path[PATH_MAX];
787 strlcpy(new_path, path, PATH_MAX);
788 strlcat(new_path, "/", PATH_MAX);
789 strlcat(new_path, item, PATH_MAX);
790
791 if (item[item_len-1] == '/') {
792 // recurse down into a subdirectory
793 new_path[strlen(new_path)-1] = '\0'; // truncate the trailing '/'
794 result = browse_directory(new_path, device);
795 if (result) break;
796 } else {
797 // selected a zip file: return the malloc'd path to the caller.
798 result = strdup(new_path);
799 break;
800 }
801 }
Doug Zongker8674a722010-09-15 11:08:23 -0700802
Elliott Hughes30694c92015-03-25 15:16:51 -0700803 for (int i = 0; i < z_size; ++i) free(zips[i]);
Doug Zongker8674a722010-09-15 11:08:23 -0700804 free(zips);
Doug Zongker8674a722010-09-15 11:08:23 -0700805
806 return result;
807}
808
Elliott Hughes30694c92015-03-25 15:16:51 -0700809static bool yes_no(Device* device, const char* question1, const char* question2) {
Elliott Hughes8fd86d72015-04-13 14:36:02 -0700810 const char* headers[] = { question1, question2, NULL };
Elliott Hughes30694c92015-03-25 15:16:51 -0700811 const char* items[] = { " No", " Yes", NULL };
Doug Zongkerddd6a282009-06-09 12:22:33 -0700812
Elliott Hughes30694c92015-03-25 15:16:51 -0700813 int chosen_item = get_menu_selection(headers, items, 1, 0, device);
814 return (chosen_item == 1);
815}
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800816
Tao Baoe39a9bc2015-03-31 12:19:05 -0700817// Return true on success.
818static bool wipe_data(int should_confirm, Device* device) {
819 if (should_confirm && !yes_no(device, "Wipe all user data?", " THIS CAN NOT BE UNDONE!")) {
820 return false;
Doug Zongkerf93d8162009-09-22 15:16:02 -0700821 }
Doug Zongker1066d2c2009-04-01 13:57:40 -0700822
Tao Bao682c34b2015-04-07 17:16:35 -0700823 modified_flash = true;
824
Doug Zongker211aebc2011-10-28 15:13:10 -0700825 ui->Print("\n-- Wiping data...\n");
Elliott Hughes945548e2015-06-05 17:59:56 -0700826 bool success =
827 device->PreWipeData() &&
828 erase_volume("/data") &&
Tao Baoae6408d2016-02-25 12:29:40 -0800829 (has_cache ? erase_volume("/cache") : true) &&
Elliott Hughes945548e2015-06-05 17:59:56 -0700830 device->PostWipeData();
831 ui->Print("Data wipe %s.\n", success ? "complete" : "failed");
832 return success;
Doug Zongkerf93d8162009-09-22 15:16:02 -0700833}
834
Tao Baoe39a9bc2015-03-31 12:19:05 -0700835// Return true on success.
836static bool wipe_cache(bool should_confirm, Device* device) {
Tao Baoae6408d2016-02-25 12:29:40 -0800837 if (!has_cache) {
838 ui->Print("No /cache partition found.\n");
839 return false;
840 }
841
Elliott Hughes30694c92015-03-25 15:16:51 -0700842 if (should_confirm && !yes_no(device, "Wipe cache?", " THIS CAN NOT BE UNDONE!")) {
Tao Baoe39a9bc2015-03-31 12:19:05 -0700843 return false;
Elliott Hughes30694c92015-03-25 15:16:51 -0700844 }
845
Tao Bao682c34b2015-04-07 17:16:35 -0700846 modified_flash = true;
847
Elliott Hughes30694c92015-03-25 15:16:51 -0700848 ui->Print("\n-- Wiping cache...\n");
Elliott Hughes945548e2015-06-05 17:59:56 -0700849 bool success = erase_volume("/cache");
850 ui->Print("Cache wipe %s.\n", success ? "complete" : "failed");
851 return success;
Elliott Hughes30694c92015-03-25 15:16:51 -0700852}
853
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700854static void choose_recovery_file(Device* device) {
Tao Baoae6408d2016-02-25 12:29:40 -0800855 if (!has_cache) {
856 ui->Print("No /cache partition found.\n");
857 return;
858 }
859
Elliott Hughesc0491632015-05-06 12:40:05 -0700860 // "Back" + KEEP_LOG_COUNT * 2 + terminating nullptr entry
861 char* entries[1 + KEEP_LOG_COUNT * 2 + 1];
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700862 memset(entries, 0, sizeof(entries));
863
Tao Baobef39712015-05-04 18:50:27 -0700864 unsigned int n = 0;
Patrick Tjincd055ee2014-12-09 11:26:40 -0800865
Patrick Tjincd055ee2014-12-09 11:26:40 -0800866 // Add LAST_LOG_FILE + LAST_LOG_FILE.x
Tao Baobef39712015-05-04 18:50:27 -0700867 // Add LAST_KMSG_FILE + LAST_KMSG_FILE.x
868 for (int i = 0; i < KEEP_LOG_COUNT; i++) {
869 char* log_file;
Tao Bao80e46e02015-06-03 10:49:29 -0700870 int ret;
871 ret = (i == 0) ? asprintf(&log_file, "%s", LAST_LOG_FILE) :
872 asprintf(&log_file, "%s.%d", LAST_LOG_FILE, i);
873 if (ret == -1) {
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700874 // memory allocation failure - return early. Should never happen.
875 return;
876 }
Tao Baobef39712015-05-04 18:50:27 -0700877 if ((ensure_path_mounted(log_file) != 0) || (access(log_file, R_OK) == -1)) {
878 free(log_file);
879 } else {
880 entries[n++] = log_file;
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700881 }
Tao Baobef39712015-05-04 18:50:27 -0700882
883 char* kmsg_file;
Tao Bao80e46e02015-06-03 10:49:29 -0700884 ret = (i == 0) ? asprintf(&kmsg_file, "%s", LAST_KMSG_FILE) :
885 asprintf(&kmsg_file, "%s.%d", LAST_KMSG_FILE, i);
886 if (ret == -1) {
Tao Baobef39712015-05-04 18:50:27 -0700887 // memory allocation failure - return early. Should never happen.
888 return;
889 }
890 if ((ensure_path_mounted(kmsg_file) != 0) || (access(kmsg_file, R_OK) == -1)) {
891 free(kmsg_file);
892 } else {
893 entries[n++] = kmsg_file;
894 }
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700895 }
896
Elliott Hughesc0491632015-05-06 12:40:05 -0700897 entries[n++] = strdup("Back");
898
Tao Baobef39712015-05-04 18:50:27 -0700899 const char* headers[] = { "Select file to view", nullptr };
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700900
Elliott Hughes8de52072015-04-08 20:06:50 -0700901 while (true) {
Elliott Hughes30694c92015-03-25 15:16:51 -0700902 int chosen_item = get_menu_selection(headers, entries, 1, 0, device);
Elliott Hughesc0491632015-05-06 12:40:05 -0700903 if (strcmp(entries[chosen_item], "Back") == 0) break;
Elliott Hughes8de52072015-04-08 20:06:50 -0700904
Elliott Hughes8de52072015-04-08 20:06:50 -0700905 ui->ShowFile(entries[chosen_item]);
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700906 }
907
Tao Baobef39712015-05-04 18:50:27 -0700908 for (size_t i = 0; i < (sizeof(entries) / sizeof(*entries)); i++) {
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700909 free(entries[i]);
910 }
911}
912
Elliott Hughes498cda62016-04-14 16:49:04 -0700913static void run_graphics_test(Device* device) {
914 // Switch to graphics screen.
915 ui->ShowText(false);
916
917 ui->SetProgressType(RecoveryUI::INDETERMINATE);
918 ui->SetBackground(RecoveryUI::INSTALLING_UPDATE);
919 sleep(1);
920
921 ui->SetBackground(RecoveryUI::ERROR);
922 sleep(1);
923
924 ui->SetBackground(RecoveryUI::NO_COMMAND);
925 sleep(1);
926
927 ui->SetBackground(RecoveryUI::ERASING);
928 sleep(1);
929
930 ui->SetBackground(RecoveryUI::INSTALLING_UPDATE);
931
932 ui->SetProgressType(RecoveryUI::DETERMINATE);
933 ui->ShowProgress(1.0, 10.0);
934 float fraction = 0.0;
935 for (size_t i = 0; i < 100; ++i) {
936 fraction += .01;
937 ui->SetProgress(fraction);
938 usleep(100000);
939 }
940
941 ui->ShowText(true);
942}
943
Tao Baocdcf28f2016-01-13 15:05:20 -0800944// How long (in seconds) we wait for the fuse-provided package file to
945// appear, before timing out.
946#define SDCARD_INSTALL_TIMEOUT 10
947
Tao Bao145d8612015-03-25 15:51:15 -0700948static int apply_from_sdcard(Device* device, bool* wipe_cache) {
Tao Bao682c34b2015-04-07 17:16:35 -0700949 modified_flash = true;
950
Christian Poetzsch4ec58a42015-02-19 10:42:39 +0000951 if (ensure_path_mounted(SDCARD_ROOT) != 0) {
952 ui->Print("\n-- Couldn't mount %s.\n", SDCARD_ROOT);
953 return INSTALL_ERROR;
954 }
955
956 char* path = browse_directory(SDCARD_ROOT, device);
957 if (path == NULL) {
Elliott Hughes018ed312015-04-08 16:51:36 -0700958 ui->Print("\n-- No package file selected.\n");
caozhiyuanb4effb92015-06-10 16:46:38 +0800959 ensure_path_unmounted(SDCARD_ROOT);
Christian Poetzsch4ec58a42015-02-19 10:42:39 +0000960 return INSTALL_ERROR;
961 }
962
963 ui->Print("\n-- Install %s ...\n", path);
964 set_sdcard_update_bootloader_message();
Christian Poetzsch4ec58a42015-02-19 10:42:39 +0000965
Tao Baocdcf28f2016-01-13 15:05:20 -0800966 // We used to use fuse in a thread as opposed to a process. Since accessing
967 // through fuse involves going from kernel to userspace to kernel, it leads
968 // to deadlock when a page fault occurs. (Bug: 26313124)
969 pid_t child;
970 if ((child = fork()) == 0) {
971 bool status = start_sdcard_fuse(path);
972
973 _exit(status ? EXIT_SUCCESS : EXIT_FAILURE);
974 }
975
976 // FUSE_SIDELOAD_HOST_PATHNAME will start to exist once the fuse in child
977 // process is ready.
978 int result = INSTALL_ERROR;
979 int status;
980 bool waited = false;
981 for (int i = 0; i < SDCARD_INSTALL_TIMEOUT; ++i) {
982 if (waitpid(child, &status, WNOHANG) == -1) {
983 result = INSTALL_ERROR;
984 waited = true;
985 break;
986 }
987
988 struct stat sb;
989 if (stat(FUSE_SIDELOAD_HOST_PATHNAME, &sb) == -1) {
990 if (errno == ENOENT && i < SDCARD_INSTALL_TIMEOUT-1) {
991 sleep(1);
992 continue;
993 } else {
994 LOGE("Timed out waiting for the fuse-provided package.\n");
995 result = INSTALL_ERROR;
996 kill(child, SIGKILL);
997 break;
998 }
999 }
1000
1001 result = install_package(FUSE_SIDELOAD_HOST_PATHNAME, wipe_cache,
Christian Poetzsch4ec58a42015-02-19 10:42:39 +00001002 TEMPORARY_INSTALL_FILE, false);
Tao Baocdcf28f2016-01-13 15:05:20 -08001003 break;
1004 }
Christian Poetzsch4ec58a42015-02-19 10:42:39 +00001005
Tao Baocdcf28f2016-01-13 15:05:20 -08001006 if (!waited) {
1007 // Calling stat() on this magic filename signals the fuse
1008 // filesystem to shut down.
1009 struct stat sb;
1010 stat(FUSE_SIDELOAD_HOST_EXIT_PATHNAME, &sb);
1011
1012 waitpid(child, &status, 0);
1013 }
1014
1015 if (!WIFEXITED(status) || WEXITSTATUS(status) != 0) {
1016 LOGE("Error exit from the fuse process: %d\n", WEXITSTATUS(status));
1017 }
1018
Christian Poetzsch4ec58a42015-02-19 10:42:39 +00001019 ensure_path_unmounted(SDCARD_ROOT);
Tao Baocdcf28f2016-01-13 15:05:20 -08001020 return result;
Christian Poetzsch4ec58a42015-02-19 10:42:39 +00001021}
1022
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001023// Return REBOOT, SHUTDOWN, or REBOOT_BOOTLOADER. Returning NO_ACTION
1024// means to take the default, which is to reboot or shutdown depending
1025// on if the --shutdown_after flag was passed to recovery.
1026static Device::BuiltinAction
Doug Zongker6c8553d2012-09-24 10:40:47 -07001027prompt_and_wait(Device* device, int status) {
Doug Zongkerf93d8162009-09-22 15:16:02 -07001028 for (;;) {
1029 finish_recovery(NULL);
Doug Zongker6c8553d2012-09-24 10:40:47 -07001030 switch (status) {
1031 case INSTALL_SUCCESS:
1032 case INSTALL_NONE:
1033 ui->SetBackground(RecoveryUI::NO_COMMAND);
1034 break;
1035
1036 case INSTALL_ERROR:
1037 case INSTALL_CORRUPT:
1038 ui->SetBackground(RecoveryUI::ERROR);
1039 break;
1040 }
Doug Zongker211aebc2011-10-28 15:13:10 -07001041 ui->SetProgressType(RecoveryUI::EMPTY);
Doug Zongkerf93d8162009-09-22 15:16:02 -07001042
Elliott Hughes8fd86d72015-04-13 14:36:02 -07001043 int chosen_item = get_menu_selection(nullptr, device->GetMenuItems(), 0, 0, device);
Doug Zongkerf93d8162009-09-22 15:16:02 -07001044
1045 // device-specific code may take some action here. It may
1046 // return one of the core actions handled in the switch
1047 // statement below.
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001048 Device::BuiltinAction chosen_action = device->InvokeMenuItem(chosen_item);
Doug Zongkerf93d8162009-09-22 15:16:02 -07001049
Elliott Hughes30694c92015-03-25 15:16:51 -07001050 bool should_wipe_cache = false;
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001051 switch (chosen_action) {
1052 case Device::NO_ACTION:
1053 break;
1054
Doug Zongkerdaefc1d2011-10-31 09:34:15 -07001055 case Device::REBOOT:
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001056 case Device::SHUTDOWN:
1057 case Device::REBOOT_BOOTLOADER:
1058 return chosen_action;
Doug Zongkerf93d8162009-09-22 15:16:02 -07001059
Doug Zongkerdaefc1d2011-10-31 09:34:15 -07001060 case Device::WIPE_DATA:
1061 wipe_data(ui->IsTextVisible(), device);
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001062 if (!ui->IsTextVisible()) return Device::NO_ACTION;
Doug Zongkerf93d8162009-09-22 15:16:02 -07001063 break;
1064
Doug Zongkerdaefc1d2011-10-31 09:34:15 -07001065 case Device::WIPE_CACHE:
Elliott Hughes30694c92015-03-25 15:16:51 -07001066 wipe_cache(ui->IsTextVisible(), device);
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001067 if (!ui->IsTextVisible()) return Device::NO_ACTION;
Doug Zongkerf93d8162009-09-22 15:16:02 -07001068 break;
1069
Christian Poetzsch4ec58a42015-02-19 10:42:39 +00001070 case Device::APPLY_ADB_SIDELOAD:
Elliott Hughesec283402015-04-10 10:01:53 -07001071 case Device::APPLY_SDCARD:
Christian Poetzsch4ec58a42015-02-19 10:42:39 +00001072 {
1073 bool adb = (chosen_action == Device::APPLY_ADB_SIDELOAD);
1074 if (adb) {
Elliott Hughes30694c92015-03-25 15:16:51 -07001075 status = apply_from_adb(ui, &should_wipe_cache, TEMPORARY_INSTALL_FILE);
Doug Zongkerd0181b82011-10-19 10:51:12 -07001076 } else {
Elliott Hughes30694c92015-03-25 15:16:51 -07001077 status = apply_from_sdcard(device, &should_wipe_cache);
Doug Zongkerd0181b82011-10-19 10:51:12 -07001078 }
Doug Zongker945fc682014-07-10 10:50:39 -07001079
Elliott Hughes30694c92015-03-25 15:16:51 -07001080 if (status == INSTALL_SUCCESS && should_wipe_cache) {
Tao Baoe39a9bc2015-03-31 12:19:05 -07001081 if (!wipe_cache(false, device)) {
1082 status = INSTALL_ERROR;
1083 }
Christian Poetzsch4ec58a42015-02-19 10:42:39 +00001084 }
1085
Tao Baoc679f932015-03-30 09:43:49 -07001086 if (status != INSTALL_SUCCESS) {
1087 ui->SetBackground(RecoveryUI::ERROR);
1088 ui->Print("Installation aborted.\n");
1089 copy_logs();
1090 } else if (!ui->IsTextVisible()) {
1091 return Device::NO_ACTION; // reboot if logs aren't visible
1092 } else {
1093 ui->Print("\nInstall from %s complete.\n", adb ? "ADB" : "SD card");
Doug Zongker8674a722010-09-15 11:08:23 -07001094 }
Doug Zongkerf93d8162009-09-22 15:16:02 -07001095 }
1096 break;
Doug Zongkerdaefc1d2011-10-31 09:34:15 -07001097
Elliott Hughesec283402015-04-10 10:01:53 -07001098 case Device::VIEW_RECOVERY_LOGS:
1099 choose_recovery_file(device);
Michael Ward9d2629c2011-06-23 22:14:24 -07001100 break;
Doug Zongker9270a202012-01-09 15:16:13 -08001101
Elliott Hughes498cda62016-04-14 16:49:04 -07001102 case Device::RUN_GRAPHICS_TEST:
1103 run_graphics_test(device);
1104 break;
1105
Elliott Hughesec283402015-04-10 10:01:53 -07001106 case Device::MOUNT_SYSTEM:
Tao Baoabb8f772015-07-30 14:43:27 -07001107 char system_root_image[PROPERTY_VALUE_MAX];
1108 property_get("ro.build.system_root_image", system_root_image, "");
1109
1110 // For a system image built with the root directory (i.e.
1111 // system_root_image == "true"), we mount it to /system_root, and symlink /system
1112 // to /system_root/system to make adb shell work (the symlink is created through
1113 // the build system).
1114 // Bug: 22855115
1115 if (strcmp(system_root_image, "true") == 0) {
1116 if (ensure_path_mounted_at("/", "/system_root") != -1) {
1117 ui->Print("Mounted /system.\n");
1118 }
1119 } else {
1120 if (ensure_path_mounted("/system") != -1) {
1121 ui->Print("Mounted /system.\n");
1122 }
Elliott Hughesec283402015-04-10 10:01:53 -07001123 }
Tao Baoabb8f772015-07-30 14:43:27 -07001124
Nick Kralevicha9ad0322014-10-22 18:38:48 -07001125 break;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001126 }
1127 }
1128}
1129
1130static void
Oscar Montemayor05231562009-11-30 08:40:57 -08001131print_property(const char *key, const char *name, void *cookie) {
Doug Zongker56c51052010-07-01 09:18:44 -07001132 printf("%s=%s\n", key, name);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001133}
1134
Doug Zongker02ec6b82012-08-22 17:26:40 -07001135static void
1136load_locale_from_cache() {
1137 FILE* fp = fopen_path(LOCALE_FILE, "r");
1138 char buffer[80];
1139 if (fp != NULL) {
1140 fgets(buffer, sizeof(buffer), fp);
1141 int j = 0;
Doug Zongker5fa8c232012-09-18 12:37:02 -07001142 unsigned int i;
Doug Zongker02ec6b82012-08-22 17:26:40 -07001143 for (i = 0; i < sizeof(buffer) && buffer[i]; ++i) {
1144 if (!isspace(buffer[i])) {
1145 buffer[j++] = buffer[i];
1146 }
1147 }
1148 buffer[j] = 0;
1149 locale = strdup(buffer);
Devin Kim6016d082012-10-08 09:47:37 -07001150 check_and_fclose(fp, LOCALE_FILE);
Doug Zongker02ec6b82012-08-22 17:26:40 -07001151 }
1152}
1153
Doug Zongker7c3ae452013-05-14 11:03:02 -07001154static RecoveryUI* gCurrentUI = NULL;
1155
1156void
1157ui_print(const char* format, ...) {
1158 char buffer[256];
1159
1160 va_list ap;
1161 va_start(ap, format);
1162 vsnprintf(buffer, sizeof(buffer), format, ap);
1163 va_end(ap);
1164
1165 if (gCurrentUI != NULL) {
1166 gCurrentUI->Print("%s", buffer);
1167 } else {
1168 fputs(buffer, stdout);
1169 }
1170}
1171
Yabin Cui99281df2016-02-17 12:21:52 -08001172static bool is_battery_ok() {
1173 struct healthd_config healthd_config = {
1174 .batteryStatusPath = android::String8(android::String8::kEmptyString),
1175 .batteryHealthPath = android::String8(android::String8::kEmptyString),
1176 .batteryPresentPath = android::String8(android::String8::kEmptyString),
1177 .batteryCapacityPath = android::String8(android::String8::kEmptyString),
1178 .batteryVoltagePath = android::String8(android::String8::kEmptyString),
1179 .batteryTemperaturePath = android::String8(android::String8::kEmptyString),
1180 .batteryTechnologyPath = android::String8(android::String8::kEmptyString),
1181 .batteryCurrentNowPath = android::String8(android::String8::kEmptyString),
1182 .batteryCurrentAvgPath = android::String8(android::String8::kEmptyString),
1183 .batteryChargeCounterPath = android::String8(android::String8::kEmptyString),
1184 .batteryFullChargePath = android::String8(android::String8::kEmptyString),
1185 .batteryCycleCountPath = android::String8(android::String8::kEmptyString),
1186 .energyCounter = NULL,
1187 .boot_min_cap = 0,
1188 .screen_on = NULL
1189 };
1190 healthd_board_init(&healthd_config);
1191
1192 android::BatteryMonitor monitor;
1193 monitor.init(&healthd_config);
1194
1195 int wait_second = 0;
1196 while (true) {
1197 int charge_status = monitor.getChargeStatus();
1198 // Treat unknown status as charged.
1199 bool charged = (charge_status != android::BATTERY_STATUS_DISCHARGING &&
1200 charge_status != android::BATTERY_STATUS_NOT_CHARGING);
1201 android::BatteryProperty capacity;
1202 android::status_t status = monitor.getProperty(android::BATTERY_PROP_CAPACITY, &capacity);
1203 ui_print("charge_status %d, charged %d, status %d, capacity %lld\n", charge_status,
1204 charged, status, capacity.valueInt64);
1205 // At startup, the battery drivers in devices like N5X/N6P take some time to load
1206 // the battery profile. Before the load finishes, it reports value 50 as a fake
1207 // capacity. BATTERY_READ_TIMEOUT_IN_SEC is set that the battery drivers are expected
1208 // to finish loading the battery profile earlier than 10 seconds after kernel startup.
1209 if (status == 0 && capacity.valueInt64 == 50) {
1210 if (wait_second < BATTERY_READ_TIMEOUT_IN_SEC) {
1211 sleep(1);
1212 wait_second++;
1213 continue;
1214 }
1215 }
1216 // If we can't read battery percentage, it may be a device without battery. In this
1217 // situation, use 100 as a fake battery percentage.
1218 if (status != 0) {
1219 capacity.valueInt64 = 100;
1220 }
1221 return (charged && capacity.valueInt64 >= BATTERY_WITH_CHARGER_OK_PERCENTAGE) ||
1222 (!charged && capacity.valueInt64 >= BATTERY_OK_PERCENTAGE);
1223 }
1224}
1225
Tianjie Xufa12b972016-02-05 18:25:58 -08001226static void set_retry_bootloader_message(int retry_count, int argc, char** argv) {
1227 struct bootloader_message boot {};
1228 strlcpy(boot.command, "boot-recovery", sizeof(boot.command));
1229 strlcpy(boot.recovery, "recovery\n", sizeof(boot.recovery));
1230
1231 for (int i = 1; i < argc; ++i) {
1232 if (strstr(argv[i], "retry_count") == nullptr) {
1233 strlcat(boot.recovery, argv[i], sizeof(boot.recovery));
1234 strlcat(boot.recovery, "\n", sizeof(boot.recovery));
1235 }
1236 }
1237
1238 // Initialize counter to 1 if it's not in BCB, otherwise increment it by 1.
1239 if (retry_count == 0) {
1240 strlcat(boot.recovery, "--retry_count=1\n", sizeof(boot.recovery));
1241 } else {
1242 char buffer[20];
1243 snprintf(buffer, sizeof(buffer), "--retry_count=%d\n", retry_count+1);
1244 strlcat(boot.recovery, buffer, sizeof(boot.recovery));
1245 }
1246 set_bootloader_message(&boot);
1247}
1248
Mark Salyzyn13aca592016-03-09 14:58:16 -08001249static ssize_t logbasename(
1250 log_id_t /* logId */,
1251 char /* prio */,
1252 const char *filename,
1253 const char * /* buf */, size_t len,
1254 void *arg) {
1255 if (strstr(LAST_KMSG_FILE, filename) ||
1256 strstr(LAST_LOG_FILE, filename)) {
1257 bool *doRotate = reinterpret_cast<bool *>(arg);
1258 *doRotate = true;
1259 }
1260 return len;
1261}
1262
1263static ssize_t logrotate(
1264 log_id_t logId,
1265 char prio,
1266 const char *filename,
1267 const char *buf, size_t len,
1268 void *arg) {
1269 bool *doRotate = reinterpret_cast<bool *>(arg);
1270 if (!*doRotate) {
1271 return __android_log_pmsg_file_write(logId, prio, filename, buf, len);
1272 }
1273
1274 std::string name(filename);
1275 size_t dot = name.find_last_of(".");
1276 std::string sub = name.substr(0, dot);
1277
1278 if (!strstr(LAST_KMSG_FILE, sub.c_str()) &&
1279 !strstr(LAST_LOG_FILE, sub.c_str())) {
1280 return __android_log_pmsg_file_write(logId, prio, filename, buf, len);
1281 }
1282
1283 // filename rotation
1284 if (dot == std::string::npos) {
1285 name += ".1";
1286 } else {
1287 std::string number = name.substr(dot + 1);
1288 if (!isdigit(number.data()[0])) {
1289 name += ".1";
1290 } else {
1291 unsigned long long i = std::stoull(number);
1292 name = sub + "." + std::to_string(i + 1);
1293 }
1294 }
1295
1296 return __android_log_pmsg_file_write(logId, prio, name.c_str(), buf, len);
1297}
1298
Yabin Cui99281df2016-02-17 12:21:52 -08001299int main(int argc, char **argv) {
Mark Salyzyn13aca592016-03-09 14:58:16 -08001300 // Take last pmsg contents and rewrite it to the current pmsg session.
1301 static const char filter[] = "recovery/";
1302 // Do we need to rotate?
1303 bool doRotate = false;
1304 __android_log_pmsg_file_read(
1305 LOG_ID_SYSTEM, ANDROID_LOG_INFO, filter,
1306 logbasename, &doRotate);
1307 // Take action to refresh pmsg contents
1308 __android_log_pmsg_file_read(
1309 LOG_ID_SYSTEM, ANDROID_LOG_INFO, filter,
1310 logrotate, &doRotate);
1311
Doug Zongker9270a202012-01-09 15:16:13 -08001312 // If this binary is started with the single argument "--adbd",
1313 // instead of being the normal recovery binary, it turns into kind
1314 // of a stripped-down version of adbd that only supports the
1315 // 'sideload' command. Note this must be a real argument, not
1316 // anything in the command file or bootloader control block; the
1317 // only way recovery should be run with this argument is when it
1318 // starts a copy of itself from the apply_from_adb() function.
1319 if (argc == 2 && strcmp(argv[1], "--adbd") == 0) {
Elliott Hughes9f4fdb32015-11-20 13:03:24 -08001320 adb_server_main(0, DEFAULT_ADB_PORT, -1);
Doug Zongker9270a202012-01-09 15:16:13 -08001321 return 0;
1322 }
1323
Tao Bao04ca4262015-09-10 15:32:24 -07001324 time_t start = time(NULL);
1325
1326 // redirect_stdio should be called only in non-sideload mode. Otherwise
1327 // we may have two logger instances with different timestamps.
1328 redirect_stdio(TEMPORARY_LOG_FILE);
1329
Doug Zongker19a8e242014-01-21 09:25:41 -08001330 printf("Starting recovery (pid %d) on %s", getpid(), ctime(&start));
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001331
Doug Zongkerd4208f92010-09-20 12:16:13 -07001332 load_volume_table();
Tao Baoae6408d2016-02-25 12:29:40 -08001333 has_cache = volume_for_path(CACHE_ROOT) != nullptr;
1334
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001335 get_args(&argc, &argv);
1336
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001337 const char *send_intent = NULL;
1338 const char *update_package = NULL;
Tao Baoe39a9bc2015-03-31 12:19:05 -07001339 bool should_wipe_data = false;
Tao Baoc679f932015-03-30 09:43:49 -07001340 bool should_wipe_cache = false;
Tao Bao145d8612015-03-25 15:51:15 -07001341 bool show_text = false;
Tao Baoc679f932015-03-30 09:43:49 -07001342 bool sideload = false;
1343 bool sideload_auto_reboot = false;
Doug Zongkere5d5ac72012-04-12 11:01:22 -07001344 bool just_exit = false;
Doug Zongkerb1d12632014-03-18 10:32:12 -07001345 bool shutdown_after = false;
Tianjie Xufa12b972016-02-05 18:25:58 -08001346 int retry_count = 0;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001347
1348 int arg;
1349 while ((arg = getopt_long(argc, argv, "", OPTIONS, NULL)) != -1) {
1350 switch (arg) {
Tao Baoc679f932015-03-30 09:43:49 -07001351 case 'i': send_intent = optarg; break;
Tianjie Xufa12b972016-02-05 18:25:58 -08001352 case 'n': android::base::ParseInt(optarg, &retry_count, 0); break;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001353 case 'u': update_package = optarg; break;
Tao Baoe39a9bc2015-03-31 12:19:05 -07001354 case 'w': should_wipe_data = true; break;
Tao Baoc679f932015-03-30 09:43:49 -07001355 case 'c': should_wipe_cache = true; break;
Tao Bao145d8612015-03-25 15:51:15 -07001356 case 't': show_text = true; break;
Tao Baoc679f932015-03-30 09:43:49 -07001357 case 's': sideload = true; break;
1358 case 'a': sideload = true; sideload_auto_reboot = true; break;
Doug Zongkere5d5ac72012-04-12 11:01:22 -07001359 case 'x': just_exit = true; break;
Doug Zongker02ec6b82012-08-22 17:26:40 -07001360 case 'l': locale = optarg; break;
Doug Zongkerc87bab12013-11-25 13:53:25 -08001361 case 'g': {
1362 if (stage == NULL || *stage == '\0') {
1363 char buffer[20] = "1/";
1364 strncat(buffer, optarg, sizeof(buffer)-3);
1365 stage = strdup(buffer);
1366 }
1367 break;
1368 }
Doug Zongkerb1d12632014-03-18 10:32:12 -07001369 case 'p': shutdown_after = true; break;
Jeff Sharkeya6e13ae2014-09-24 11:46:17 -07001370 case 'r': reason = optarg; break;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001371 case '?':
1372 LOGE("Invalid command argument\n");
1373 continue;
1374 }
1375 }
1376
Tao Baoae6408d2016-02-25 12:29:40 -08001377 if (locale == nullptr && has_cache) {
Doug Zongker02ec6b82012-08-22 17:26:40 -07001378 load_locale_from_cache();
1379 }
1380 printf("locale is [%s]\n", locale);
Doug Zongker0d32f252014-02-13 15:07:56 -08001381 printf("stage is [%s]\n", stage);
Jeff Sharkeya6e13ae2014-09-24 11:46:17 -07001382 printf("reason is [%s]\n", reason);
Doug Zongker02ec6b82012-08-22 17:26:40 -07001383
1384 Device* device = make_device();
1385 ui = device->GetUI();
Doug Zongker7c3ae452013-05-14 11:03:02 -07001386 gCurrentUI = ui;
Doug Zongker02ec6b82012-08-22 17:26:40 -07001387
Doug Zongker5fa8c232012-09-18 12:37:02 -07001388 ui->SetLocale(locale);
Doug Zongker02ec6b82012-08-22 17:26:40 -07001389 ui->Init();
Doug Zongkerc87bab12013-11-25 13:53:25 -08001390
1391 int st_cur, st_max;
1392 if (stage != NULL && sscanf(stage, "%d/%d", &st_cur, &st_max) == 2) {
1393 ui->SetStage(st_cur, st_max);
1394 }
1395
Doug Zongker02ec6b82012-08-22 17:26:40 -07001396 ui->SetBackground(RecoveryUI::NONE);
1397 if (show_text) ui->ShowText(true);
1398
Stephen Smalley779701d2012-02-09 14:13:23 -05001399 struct selinux_opt seopts[] = {
1400 { SELABEL_OPT_PATH, "/file_contexts" }
1401 };
1402
1403 sehandle = selabel_open(SELABEL_CTX_FILE, seopts, 1);
1404
1405 if (!sehandle) {
Doug Zongkerfafc85b2013-07-09 12:29:45 -07001406 ui->Print("Warning: No file_contexts\n");
Stephen Smalley779701d2012-02-09 14:13:23 -05001407 }
Stephen Smalley779701d2012-02-09 14:13:23 -05001408
Doug Zongkerdaefc1d2011-10-31 09:34:15 -07001409 device->StartRecovery();
Doug Zongkerefa1bab2010-02-01 15:59:12 -08001410
Doug Zongker56c51052010-07-01 09:18:44 -07001411 printf("Command:");
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001412 for (arg = 0; arg < argc; arg++) {
Doug Zongker56c51052010-07-01 09:18:44 -07001413 printf(" \"%s\"", argv[arg]);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001414 }
Doug Zongker9b125b02010-09-22 12:01:37 -07001415 printf("\n");
1416
1417 if (update_package) {
1418 // For backwards compatibility on the cache partition only, if
1419 // we're given an old 'root' path "CACHE:foo", change it to
1420 // "/cache/foo".
1421 if (strncmp(update_package, "CACHE:", 6) == 0) {
1422 int len = strlen(update_package) + 10;
Doug Zongker28ce47c2011-10-28 10:33:05 -07001423 char* modified_path = (char*)malloc(len);
Jeremy Compostella1b7d9b72015-07-29 17:17:03 +02001424 if (modified_path) {
1425 strlcpy(modified_path, "/cache/", len);
1426 strlcat(modified_path, update_package+6, len);
1427 printf("(replacing path \"%s\" with \"%s\")\n",
1428 update_package, modified_path);
1429 update_package = modified_path;
1430 }
1431 else
1432 printf("modified_path allocation failed\n");
Doug Zongker9b125b02010-09-22 12:01:37 -07001433 }
1434 }
1435 printf("\n");
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001436
1437 property_list(print_property, NULL);
Doug Zongker56c51052010-07-01 09:18:44 -07001438 printf("\n");
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001439
Elliott Hughesbb78d622015-04-09 20:51:08 -07001440 ui->Print("Supported API: %d\n", RECOVERY_API_VERSION);
1441
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001442 int status = INSTALL_SUCCESS;
1443
Doug Zongker540d57f2011-01-18 13:36:58 -08001444 if (update_package != NULL) {
Yabin Cui99281df2016-02-17 12:21:52 -08001445 if (!is_battery_ok()) {
1446 ui->Print("battery capacity is not enough for installing package, needed is %d%%\n",
1447 BATTERY_OK_PERCENTAGE);
1448 status = INSTALL_SKIPPED;
1449 } else {
1450 status = install_package(update_package, &should_wipe_cache,
1451 TEMPORARY_INSTALL_FILE, true);
1452 if (status == INSTALL_SUCCESS && should_wipe_cache) {
1453 wipe_cache(false, device);
1454 }
1455 if (status != INSTALL_SUCCESS) {
1456 ui->Print("Installation aborted.\n");
Tianjie Xufa12b972016-02-05 18:25:58 -08001457 // When I/O error happens, reboot and retry installation EIO_RETRY_COUNT
1458 // times before we abandon this OTA update.
1459 if (status == INSTALL_RETRY && retry_count < EIO_RETRY_COUNT) {
1460 copy_logs();
1461 set_retry_bootloader_message(retry_count, argc, argv);
1462 // Print retry count on screen.
1463 ui->Print("Retry attempt %d\n", retry_count);
Doug Zongker7c3ae452013-05-14 11:03:02 -07001464
Tianjie Xufa12b972016-02-05 18:25:58 -08001465 // Reboot and retry the update
1466 int ret = property_set(ANDROID_RB_PROPERTY, "reboot,recovery");
1467 if (ret < 0) {
1468 ui->Print("Reboot failed\n");
1469 } else {
1470 while (true) {
1471 pause();
1472 }
1473 }
1474 }
Yabin Cui99281df2016-02-17 12:21:52 -08001475 // If this is an eng or userdebug build, then automatically
1476 // turn the text display on if the script fails so the error
1477 // message is visible.
1478 if (is_ro_debuggable()) {
1479 ui->ShowText(true);
1480 }
Doug Zongker7c3ae452013-05-14 11:03:02 -07001481 }
1482 }
Tao Baoe39a9bc2015-03-31 12:19:05 -07001483 } else if (should_wipe_data) {
1484 if (!wipe_data(false, device)) {
1485 status = INSTALL_ERROR;
1486 }
Tao Baoc679f932015-03-30 09:43:49 -07001487 } else if (should_wipe_cache) {
Tao Baoe39a9bc2015-03-31 12:19:05 -07001488 if (!wipe_cache(false, device)) {
1489 status = INSTALL_ERROR;
1490 }
Tao Baoc679f932015-03-30 09:43:49 -07001491 } else if (sideload) {
1492 // 'adb reboot sideload' acts the same as user presses key combinations
1493 // to enter the sideload mode. When 'sideload-auto-reboot' is used, text
1494 // display will NOT be turned on by default. And it will reboot after
1495 // sideload finishes even if there are errors. Unless one turns on the
1496 // text display during the installation. This is to enable automated
1497 // testing.
1498 if (!sideload_auto_reboot) {
1499 ui->ShowText(true);
1500 }
1501 status = apply_from_adb(ui, &should_wipe_cache, TEMPORARY_INSTALL_FILE);
1502 if (status == INSTALL_SUCCESS && should_wipe_cache) {
Tao Baoe39a9bc2015-03-31 12:19:05 -07001503 if (!wipe_cache(false, device)) {
1504 status = INSTALL_ERROR;
1505 }
Tao Baoc679f932015-03-30 09:43:49 -07001506 }
1507 ui->Print("\nInstall from ADB complete (status: %d).\n", status);
1508 if (sideload_auto_reboot) {
1509 ui->Print("Rebooting automatically.\n");
1510 }
Doug Zongkere5d5ac72012-04-12 11:01:22 -07001511 } else if (!just_exit) {
Doug Zongker02ec6b82012-08-22 17:26:40 -07001512 status = INSTALL_NONE; // No command specified
1513 ui->SetBackground(RecoveryUI::NO_COMMAND);
Tao Bao785d22c2015-05-04 09:34:29 -07001514
1515 // http://b/17489952
1516 // If this is an eng or userdebug build, automatically turn on the
1517 // text display if no command is specified.
1518 if (is_ro_debuggable()) {
1519 ui->ShowText(true);
1520 }
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001521 }
1522
Tao Baoc679f932015-03-30 09:43:49 -07001523 if (!sideload_auto_reboot && (status == INSTALL_ERROR || status == INSTALL_CORRUPT)) {
Doug Zongkerf24fd7e2013-07-02 11:43:25 -07001524 copy_logs();
Doug Zongker02ec6b82012-08-22 17:26:40 -07001525 ui->SetBackground(RecoveryUI::ERROR);
1526 }
Tao Baoc679f932015-03-30 09:43:49 -07001527
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001528 Device::BuiltinAction after = shutdown_after ? Device::SHUTDOWN : Device::REBOOT;
Yabin Cui99281df2016-02-17 12:21:52 -08001529 if ((status != INSTALL_SUCCESS && status != INSTALL_SKIPPED && !sideload_auto_reboot) ||
1530 ui->IsTextVisible()) {
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001531 Device::BuiltinAction temp = prompt_and_wait(device, status);
Tao Baoc679f932015-03-30 09:43:49 -07001532 if (temp != Device::NO_ACTION) {
1533 after = temp;
1534 }
Doug Zongker8674a722010-09-15 11:08:23 -07001535 }
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001536
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001537 // Save logs and clean up before rebooting or shutting down.
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001538 finish_recovery(send_intent);
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001539
1540 switch (after) {
1541 case Device::SHUTDOWN:
1542 ui->Print("Shutting down...\n");
1543 property_set(ANDROID_RB_PROPERTY, "shutdown,");
1544 break;
1545
1546 case Device::REBOOT_BOOTLOADER:
1547 ui->Print("Rebooting to bootloader...\n");
1548 property_set(ANDROID_RB_PROPERTY, "reboot,bootloader");
1549 break;
1550
1551 default:
1552 ui->Print("Rebooting...\n");
1553 property_set(ANDROID_RB_PROPERTY, "reboot,");
1554 break;
Doug Zongkerb1d12632014-03-18 10:32:12 -07001555 }
Tao Bao75238632015-05-27 14:46:17 -07001556 while (true) {
1557 pause();
1558 }
1559 // Should be unreachable.
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001560 return EXIT_SUCCESS;
1561}