blob: 4688ca67a85f8480d27b550f5ddf9b876990168f [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>
Tao Baob0838182016-06-02 11:16:50 -070022#include <inttypes.h>
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080023#include <limits.h>
Tao Baob0838182016-06-02 11:16:50 -070024#include <linux/fs.h>
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080025#include <linux/input.h>
Doug Zongker7c3ae452013-05-14 11:03:02 -070026#include <stdarg.h>
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080027#include <stdio.h>
28#include <stdlib.h>
29#include <string.h>
Patrick Tjincd055ee2014-12-09 11:26:40 -080030#include <sys/klog.h>
Doug Zongker23ceeea2010-07-08 17:27:55 -070031#include <sys/stat.h>
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080032#include <sys/types.h>
Tao Baocdcf28f2016-01-13 15:05:20 -080033#include <sys/wait.h>
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080034#include <time.h>
35#include <unistd.h>
36
Tao Bao04ca4262015-09-10 15:32:24 -070037#include <chrono>
Tao Baob0838182016-06-02 11:16:50 -070038#include <string>
39#include <vector>
Tao Bao04ca4262015-09-10 15:32:24 -070040
Tao Bao75238632015-05-27 14:46:17 -070041#include <adb.h>
Mark Salyzyn13aca592016-03-09 14:58:16 -080042#include <android/log.h> /* Android Log Priority Tags */
Elliott Hughes4b166f02015-12-04 15:30:20 -080043#include <android-base/file.h>
Tianjie Xufa12b972016-02-05 18:25:58 -080044#include <android-base/parseint.h>
Elliott Hughes4b166f02015-12-04 15:30:20 -080045#include <android-base/stringprintf.h>
Tao Baob0838182016-06-02 11:16:50 -070046#include <android-base/strings.h>
Tao Bao75238632015-05-27 14:46:17 -070047#include <cutils/android_reboot.h>
48#include <cutils/properties.h>
Mark Salyzyn13aca592016-03-09 14:58:16 -080049#include <log/logger.h> /* Android Log packet format */
50#include <private/android_logger.h> /* private pmsg functions */
Tao Baobef39712015-05-04 18:50:27 -070051
Yabin Cui99281df2016-02-17 12:21:52 -080052#include <healthd/BatteryMonitor.h>
53
Tao Bao75238632015-05-27 14:46:17 -070054#include "adb_install.h"
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080055#include "bootloader.h"
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080056#include "common.h"
Tao Bao75238632015-05-27 14:46:17 -070057#include "device.h"
Tianjie Xu16255832016-04-30 11:49:59 -070058#include "error_code.h"
Tao Bao75238632015-05-27 14:46:17 -070059#include "fuse_sdcard_provider.h"
60#include "fuse_sideload.h"
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080061#include "install.h"
62#include "minui/minui.h"
63#include "minzip/DirUtil.h"
64#include "roots.h"
Doug Zongker28ce47c2011-10-28 10:33:05 -070065#include "ui.h"
Tao Baob0838182016-06-02 11:16:50 -070066#include "unique_fd.h"
Doug Zongker211aebc2011-10-28 15:13:10 -070067#include "screen_ui.h"
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080068
Stephen Smalley779701d2012-02-09 14:13:23 -050069struct selabel_handle *sehandle;
70
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080071static const struct option OPTIONS[] = {
Tao Baoc679f932015-03-30 09:43:49 -070072 { "send_intent", required_argument, NULL, 'i' },
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080073 { "update_package", required_argument, NULL, 'u' },
Tianjie Xufa12b972016-02-05 18:25:58 -080074 { "retry_count", required_argument, NULL, 'n' },
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080075 { "wipe_data", no_argument, NULL, 'w' },
76 { "wipe_cache", no_argument, NULL, 'c' },
Doug Zongker4bc98062010-09-03 11:00:13 -070077 { "show_text", no_argument, NULL, 't' },
Tao Baoc679f932015-03-30 09:43:49 -070078 { "sideload", no_argument, NULL, 's' },
79 { "sideload_auto_reboot", no_argument, NULL, 'a' },
Doug Zongkere5d5ac72012-04-12 11:01:22 -070080 { "just_exit", no_argument, NULL, 'x' },
Doug Zongker02ec6b82012-08-22 17:26:40 -070081 { "locale", required_argument, NULL, 'l' },
Doug Zongkerc87bab12013-11-25 13:53:25 -080082 { "stages", required_argument, NULL, 'g' },
Doug Zongkerb1d12632014-03-18 10:32:12 -070083 { "shutdown_after", no_argument, NULL, 'p' },
Jeff Sharkeya6e13ae2014-09-24 11:46:17 -070084 { "reason", required_argument, NULL, 'r' },
Tianjie Xu35926c42016-04-28 18:06:26 -070085 { "security", no_argument, NULL, 'e'},
Tao Baob0838182016-06-02 11:16:50 -070086 { "brick", no_argument, NULL, 0 },
Doug Zongker988500b2009-10-06 14:41:38 -070087 { NULL, 0, NULL, 0 },
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080088};
89
Doug Zongker6d0d7ac2013-07-09 13:34:55 -070090static const char *CACHE_LOG_DIR = "/cache/recovery";
Doug Zongkerd4208f92010-09-20 12:16:13 -070091static const char *COMMAND_FILE = "/cache/recovery/command";
92static const char *INTENT_FILE = "/cache/recovery/intent";
93static const char *LOG_FILE = "/cache/recovery/log";
Doug Zongkerd0181b82011-10-19 10:51:12 -070094static const char *LAST_INSTALL_FILE = "/cache/recovery/last_install";
Doug Zongker8b240cc2012-08-29 15:19:29 -070095static const char *LOCALE_FILE = "/cache/recovery/last_locale";
Paul Lawrence661f8a62016-02-25 12:42:19 -080096static const char *CONVERT_FBE_DIR = "/tmp/convert_fbe";
97static const char *CONVERT_FBE_FILE = "/tmp/convert_fbe/convert_fbe";
Michael Ward9d2629c2011-06-23 22:14:24 -070098static const char *CACHE_ROOT = "/cache";
Paul Lawrenced0db3372015-11-05 13:38:40 -080099static const char *DATA_ROOT = "/data";
Doug Zongkerd4208f92010-09-20 12:16:13 -0700100static const char *SDCARD_ROOT = "/sdcard";
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800101static const char *TEMPORARY_LOG_FILE = "/tmp/recovery.log";
Doug Zongkerd0181b82011-10-19 10:51:12 -0700102static const char *TEMPORARY_INSTALL_FILE = "/tmp/last_install";
Tao Baof0124322015-04-11 02:04:11 +0000103static const char *LAST_KMSG_FILE = "/cache/recovery/last_kmsg";
Tao Baobef39712015-05-04 18:50:27 -0700104static const char *LAST_LOG_FILE = "/cache/recovery/last_log";
105static const int KEEP_LOG_COUNT = 10;
Tianjie Xufa12b972016-02-05 18:25:58 -0800106static const int EIO_RETRY_COUNT = 2;
Yabin Cui99281df2016-02-17 12:21:52 -0800107static const int BATTERY_READ_TIMEOUT_IN_SEC = 10;
108// GmsCore enters recovery mode to install package when having enough battery
109// percentage. Normally, the threshold is 40% without charger and 20% with charger.
110// So we should check battery with a slightly lower limitation.
111static const int BATTERY_OK_PERCENTAGE = 20;
112static const int BATTERY_WITH_CHARGER_OK_PERCENTAGE = 15;
Tao Baob0838182016-06-02 11:16:50 -0700113constexpr const char* RECOVERY_BRICK = "/etc/recovery.brick";
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700114
Doug Zongker211aebc2011-10-28 15:13:10 -0700115RecoveryUI* ui = NULL;
Elliott Hughes498cda62016-04-14 16:49:04 -0700116static const char* locale = "en_US";
Doug Zongkerc87bab12013-11-25 13:53:25 -0800117char* stage = NULL;
Jeff Sharkeya6e13ae2014-09-24 11:46:17 -0700118char* reason = NULL;
Tao Bao682c34b2015-04-07 17:16:35 -0700119bool modified_flash = false;
Tao Baoae6408d2016-02-25 12:29:40 -0800120static bool has_cache = false;
Doug Zongker211aebc2011-10-28 15:13:10 -0700121
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800122/*
123 * The recovery tool communicates with the main system through /cache files.
124 * /cache/recovery/command - INPUT - command line for tool, one arg per line
125 * /cache/recovery/log - OUTPUT - combined log file from recovery run(s)
126 * /cache/recovery/intent - OUTPUT - intent that was passed in
127 *
128 * The arguments which may be supplied in the recovery.command file:
129 * --send_intent=anystring - write the text out to recovery.intent
Doug Zongkerd4208f92010-09-20 12:16:13 -0700130 * --update_package=path - verify install an OTA package file
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800131 * --wipe_data - erase user data (and cache), then reboot
132 * --wipe_cache - wipe cache (but not user data), then reboot
Oscar Montemayor05231562009-11-30 08:40:57 -0800133 * --set_encrypted_filesystem=on|off - enables / diasables encrypted fs
Doug Zongkere5d5ac72012-04-12 11:01:22 -0700134 * --just_exit - do nothing; exit and reboot
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800135 *
136 * After completing, we remove /cache/recovery/command and reboot.
137 * Arguments may also be supplied in the bootloader control block (BCB).
138 * These important scenarios must be safely restartable at any point:
139 *
140 * FACTORY RESET
141 * 1. user selects "factory reset"
142 * 2. main system writes "--wipe_data" to /cache/recovery/command
143 * 3. main system reboots into recovery
144 * 4. get_args() writes BCB with "boot-recovery" and "--wipe_data"
145 * -- after this, rebooting will restart the erase --
Doug Zongkerd4208f92010-09-20 12:16:13 -0700146 * 5. erase_volume() reformats /data
147 * 6. erase_volume() reformats /cache
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800148 * 7. finish_recovery() erases BCB
149 * -- after this, rebooting will restart the main system --
150 * 8. main() calls reboot() to boot main system
151 *
152 * OTA INSTALL
153 * 1. main system downloads OTA package to /cache/some-filename.zip
Doug Zongker9b125b02010-09-22 12:01:37 -0700154 * 2. main system writes "--update_package=/cache/some-filename.zip"
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800155 * 3. main system reboots into recovery
156 * 4. get_args() writes BCB with "boot-recovery" and "--update_package=..."
157 * -- after this, rebooting will attempt to reinstall the update --
158 * 5. install_package() attempts to install the update
159 * NOTE: the package install must itself be restartable from any point
160 * 6. finish_recovery() erases BCB
161 * -- after this, rebooting will (try to) restart the main system --
162 * 7. ** if install failed **
163 * 7a. prompt_and_wait() shows an error icon and waits for the user
164 * 7b; the user reboots (pulling the battery, etc) into the main system
165 * 8. main() calls maybe_install_firmware_update()
166 * ** if the update contained radio/hboot firmware **:
167 * 8a. m_i_f_u() writes BCB with "boot-recovery" and "--wipe_cache"
168 * -- after this, rebooting will reformat cache & restart main system --
169 * 8b. m_i_f_u() writes firmware image into raw cache partition
170 * 8c. m_i_f_u() writes BCB with "update-radio/hboot" and "--wipe_cache"
171 * -- after this, rebooting will attempt to reinstall firmware --
172 * 8d. bootloader tries to flash firmware
173 * 8e. bootloader writes BCB with "boot-recovery" (keeping "--wipe_cache")
174 * -- after this, rebooting will reformat cache & restart main system --
Doug Zongkerd4208f92010-09-20 12:16:13 -0700175 * 8f. erase_volume() reformats /cache
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800176 * 8g. finish_recovery() erases BCB
177 * -- after this, rebooting will (try to) restart the main system --
178 * 9. main() calls reboot() to boot main system
179 */
180
181static const int MAX_ARG_LENGTH = 4096;
182static const int MAX_ARGS = 100;
183
Doug Zongkerd4208f92010-09-20 12:16:13 -0700184// open a given path, mounting partitions as necessary
Tao Bao04ca4262015-09-10 15:32:24 -0700185FILE* fopen_path(const char *path, const char *mode) {
Doug Zongkerd4208f92010-09-20 12:16:13 -0700186 if (ensure_path_mounted(path) != 0) {
187 LOGE("Can't mount %s\n", path);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800188 return NULL;
189 }
190
191 // When writing, try to create the containing directory, if necessary.
192 // Use generous permissions, the system (init.rc) will reset them.
Stephen Smalley779701d2012-02-09 14:13:23 -0500193 if (strchr("wa", mode[0])) dirCreateHierarchy(path, 0777, NULL, 1, sehandle);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800194
195 FILE *fp = fopen(path, mode);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800196 return fp;
197}
198
Tao Bao04ca4262015-09-10 15:32:24 -0700199// close a file, log an error if the error indicator is set
200static void check_and_fclose(FILE *fp, const char *name) {
201 fflush(fp);
202 if (ferror(fp)) LOGE("Error in %s\n(%s)\n", name, strerror(errno));
203 fclose(fp);
204}
205
Elliott Hughesf14af802015-02-10 14:46:14 -0800206bool is_ro_debuggable() {
207 char value[PROPERTY_VALUE_MAX+1];
208 return (property_get("ro.debuggable", value, NULL) == 1 && value[0] == '1');
209}
210
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700211static void redirect_stdio(const char* filename) {
Tao Bao04ca4262015-09-10 15:32:24 -0700212 int pipefd[2];
213 if (pipe(pipefd) == -1) {
214 LOGE("pipe failed: %s\n", strerror(errno));
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700215
Tao Bao04ca4262015-09-10 15:32:24 -0700216 // Fall back to traditional logging mode without timestamps.
217 // If these fail, there's not really anywhere to complain...
218 freopen(filename, "a", stdout); setbuf(stdout, NULL);
219 freopen(filename, "a", stderr); setbuf(stderr, NULL);
220
221 return;
222 }
223
224 pid_t pid = fork();
225 if (pid == -1) {
226 LOGE("fork failed: %s\n", strerror(errno));
227
228 // Fall back to traditional logging mode without timestamps.
229 // If these fail, there's not really anywhere to complain...
230 freopen(filename, "a", stdout); setbuf(stdout, NULL);
231 freopen(filename, "a", stderr); setbuf(stderr, NULL);
232
233 return;
234 }
235
236 if (pid == 0) {
237 /// Close the unused write end.
238 close(pipefd[1]);
239
240 auto start = std::chrono::steady_clock::now();
241
242 // Child logger to actually write to the log file.
243 FILE* log_fp = fopen(filename, "a");
244 if (log_fp == nullptr) {
245 LOGE("fopen \"%s\" failed: %s\n", filename, strerror(errno));
246 close(pipefd[0]);
247 _exit(1);
248 }
249
250 FILE* pipe_fp = fdopen(pipefd[0], "r");
251 if (pipe_fp == nullptr) {
252 LOGE("fdopen failed: %s\n", strerror(errno));
253 check_and_fclose(log_fp, filename);
254 close(pipefd[0]);
255 _exit(1);
256 }
257
258 char* line = nullptr;
259 size_t len = 0;
260 while (getline(&line, &len, pipe_fp) != -1) {
261 auto now = std::chrono::steady_clock::now();
262 double duration = std::chrono::duration_cast<std::chrono::duration<double>>(
263 now - start).count();
264 if (line[0] == '\n') {
265 fprintf(log_fp, "[%12.6lf]\n", duration);
266 } else {
267 fprintf(log_fp, "[%12.6lf] %s", duration, line);
268 }
269 fflush(log_fp);
270 }
271
272 LOGE("getline failed: %s\n", strerror(errno));
273
274 free(line);
275 check_and_fclose(log_fp, filename);
276 close(pipefd[0]);
277 _exit(1);
278 } else {
279 // Redirect stdout/stderr to the logger process.
280 // Close the unused read end.
281 close(pipefd[0]);
282
283 setbuf(stdout, nullptr);
284 setbuf(stderr, nullptr);
285
286 if (dup2(pipefd[1], STDOUT_FILENO) == -1) {
287 LOGE("dup2 stdout failed: %s\n", strerror(errno));
288 }
289 if (dup2(pipefd[1], STDERR_FILENO) == -1) {
290 LOGE("dup2 stderr failed: %s\n", strerror(errno));
291 }
292
293 close(pipefd[1]);
294 }
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800295}
296
297// command line args come from, in decreasing precedence:
298// - the actual command line
299// - the bootloader control block (one per line, after "recovery")
300// - the contents of COMMAND_FILE (one per line)
301static void
302get_args(int *argc, char ***argv) {
303 struct bootloader_message boot;
304 memset(&boot, 0, sizeof(boot));
305 get_bootloader_message(&boot); // this may fail, leaving a zeroed structure
Doug Zongkerc87bab12013-11-25 13:53:25 -0800306 stage = strndup(boot.stage, sizeof(boot.stage));
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800307
308 if (boot.command[0] != 0 && boot.command[0] != 255) {
Mark Salyzynf3bb31c2014-03-14 09:39:48 -0700309 LOGI("Boot command: %.*s\n", (int)sizeof(boot.command), boot.command);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800310 }
311
312 if (boot.status[0] != 0 && boot.status[0] != 255) {
Mark Salyzynf3bb31c2014-03-14 09:39:48 -0700313 LOGI("Boot status: %.*s\n", (int)sizeof(boot.status), boot.status);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800314 }
315
316 // --- if arguments weren't supplied, look in the bootloader control block
317 if (*argc <= 1) {
318 boot.recovery[sizeof(boot.recovery) - 1] = '\0'; // Ensure termination
319 const char *arg = strtok(boot.recovery, "\n");
320 if (arg != NULL && !strcmp(arg, "recovery")) {
321 *argv = (char **) malloc(sizeof(char *) * MAX_ARGS);
322 (*argv)[0] = strdup(arg);
323 for (*argc = 1; *argc < MAX_ARGS; ++*argc) {
324 if ((arg = strtok(NULL, "\n")) == NULL) break;
325 (*argv)[*argc] = strdup(arg);
326 }
327 LOGI("Got arguments from boot message\n");
328 } else if (boot.recovery[0] != 0 && boot.recovery[0] != 255) {
329 LOGE("Bad boot message\n\"%.20s\"\n", boot.recovery);
330 }
331 }
332
Tao Baoae6408d2016-02-25 12:29:40 -0800333 // --- if that doesn't work, try the command file (if we have /cache).
334 if (*argc <= 1 && has_cache) {
Doug Zongkerd4208f92010-09-20 12:16:13 -0700335 FILE *fp = fopen_path(COMMAND_FILE, "r");
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800336 if (fp != NULL) {
Jin Feng93ffa752013-06-04 17:46:24 +0800337 char *token;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800338 char *argv0 = (*argv)[0];
339 *argv = (char **) malloc(sizeof(char *) * MAX_ARGS);
340 (*argv)[0] = argv0; // use the same program name
341
342 char buf[MAX_ARG_LENGTH];
343 for (*argc = 1; *argc < MAX_ARGS; ++*argc) {
344 if (!fgets(buf, sizeof(buf), fp)) break;
Jin Feng93ffa752013-06-04 17:46:24 +0800345 token = strtok(buf, "\r\n");
346 if (token != NULL) {
347 (*argv)[*argc] = strdup(token); // Strip newline.
348 } else {
349 --*argc;
350 }
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800351 }
352
353 check_and_fclose(fp, COMMAND_FILE);
354 LOGI("Got arguments from %s\n", COMMAND_FILE);
355 }
356 }
357
358 // --> write the arguments we have back into the bootloader control block
359 // always boot into recovery after this (until finish_recovery() is called)
360 strlcpy(boot.command, "boot-recovery", sizeof(boot.command));
361 strlcpy(boot.recovery, "recovery\n", sizeof(boot.recovery));
362 int i;
363 for (i = 1; i < *argc; ++i) {
364 strlcat(boot.recovery, (*argv)[i], sizeof(boot.recovery));
365 strlcat(boot.recovery, "\n", sizeof(boot.recovery));
366 }
367 set_bootloader_message(&boot);
368}
369
Doug Zongker34c98df2009-08-18 12:05:45 -0700370static void
Oscar Montemayor05231562009-11-30 08:40:57 -0800371set_sdcard_update_bootloader_message() {
Doug Zongker34c98df2009-08-18 12:05:45 -0700372 struct bootloader_message boot;
373 memset(&boot, 0, sizeof(boot));
374 strlcpy(boot.command, "boot-recovery", sizeof(boot.command));
375 strlcpy(boot.recovery, "recovery\n", sizeof(boot.recovery));
376 set_bootloader_message(&boot);
377}
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800378
Tao Baobef39712015-05-04 18:50:27 -0700379// Read from kernel log into buffer and write out to file.
380static void save_kernel_log(const char* destination) {
381 int klog_buf_len = klogctl(KLOG_SIZE_BUFFER, 0, 0);
Patrick Tjincd055ee2014-12-09 11:26:40 -0800382 if (klog_buf_len <= 0) {
Tao Baobef39712015-05-04 18:50:27 -0700383 LOGE("Error getting klog size: %s\n", strerror(errno));
Patrick Tjincd055ee2014-12-09 11:26:40 -0800384 return;
385 }
386
Tao Baobef39712015-05-04 18:50:27 -0700387 std::string buffer(klog_buf_len, 0);
388 int n = klogctl(KLOG_READ_ALL, &buffer[0], klog_buf_len);
389 if (n == -1) {
390 LOGE("Error in reading klog: %s\n", strerror(errno));
Patrick Tjincd055ee2014-12-09 11:26:40 -0800391 return;
392 }
Tao Baobef39712015-05-04 18:50:27 -0700393 buffer.resize(n);
394 android::base::WriteStringToFile(buffer, destination);
Patrick Tjincd055ee2014-12-09 11:26:40 -0800395}
396
Mark Salyzyn13aca592016-03-09 14:58:16 -0800397// write content to the current pmsg session.
398static ssize_t __pmsg_write(const char *filename, const char *buf, size_t len) {
399 return __android_log_pmsg_file_write(LOG_ID_SYSTEM, ANDROID_LOG_INFO,
400 filename, buf, len);
401}
402
403static void copy_log_file_to_pmsg(const char* source, const char* destination) {
404 std::string content;
405 android::base::ReadFileToString(source, &content);
406 __pmsg_write(destination, content.c_str(), content.length());
407}
408
Tao Baof0124322015-04-11 02:04:11 +0000409// How much of the temp log we have copied to the copy in cache.
410static long tmplog_offset = 0;
411
Tao Baobef39712015-05-04 18:50:27 -0700412static void copy_log_file(const char* source, const char* destination, bool append) {
413 FILE* dest_fp = fopen_path(destination, append ? "a" : "w");
414 if (dest_fp == nullptr) {
Doug Zongker2c3539e2010-09-29 13:21:30 -0700415 LOGE("Can't open %s\n", destination);
416 } else {
Tao Baobef39712015-05-04 18:50:27 -0700417 FILE* source_fp = fopen(source, "r");
418 if (source_fp != nullptr) {
Tao Baof0124322015-04-11 02:04:11 +0000419 if (append) {
Tao Baobef39712015-05-04 18:50:27 -0700420 fseek(source_fp, tmplog_offset, SEEK_SET); // Since last write
Doug Zongker2c3539e2010-09-29 13:21:30 -0700421 }
422 char buf[4096];
Tao Baobef39712015-05-04 18:50:27 -0700423 size_t bytes;
424 while ((bytes = fread(buf, 1, sizeof(buf), source_fp)) != 0) {
425 fwrite(buf, 1, bytes, dest_fp);
Doug Zongker2c3539e2010-09-29 13:21:30 -0700426 }
Tao Baobef39712015-05-04 18:50:27 -0700427 if (append) {
428 tmplog_offset = ftell(source_fp);
429 }
430 check_and_fclose(source_fp, source);
Doug Zongker2c3539e2010-09-29 13:21:30 -0700431 }
Tao Baobef39712015-05-04 18:50:27 -0700432 check_and_fclose(dest_fp, destination);
Doug Zongker2c3539e2010-09-29 13:21:30 -0700433 }
434}
435
Tao Baobef39712015-05-04 18:50:27 -0700436// Rename last_log -> last_log.1 -> last_log.2 -> ... -> last_log.$max.
437// Similarly rename last_kmsg -> last_kmsg.1 -> ... -> last_kmsg.$max.
438// Overwrite any existing last_log.$max and last_kmsg.$max.
439static void rotate_logs(int max) {
Tao Bao682c34b2015-04-07 17:16:35 -0700440 // Logs should only be rotated once.
441 static bool rotated = false;
442 if (rotated) {
443 return;
444 }
445 rotated = true;
446 ensure_path_mounted(LAST_LOG_FILE);
Tao Baobef39712015-05-04 18:50:27 -0700447 ensure_path_mounted(LAST_KMSG_FILE);
Tao Bao682c34b2015-04-07 17:16:35 -0700448
Tao Bao682c34b2015-04-07 17:16:35 -0700449 for (int i = max-1; i >= 0; --i) {
Tao Bao80e46e02015-06-03 10:49:29 -0700450 std::string old_log = android::base::StringPrintf("%s", LAST_LOG_FILE);
451 if (i > 0) {
452 old_log += "." + std::to_string(i);
453 }
Tao Baobef39712015-05-04 18:50:27 -0700454 std::string new_log = android::base::StringPrintf("%s.%d", LAST_LOG_FILE, i+1);
455 // Ignore errors if old_log doesn't exist.
456 rename(old_log.c_str(), new_log.c_str());
457
Tao Bao80e46e02015-06-03 10:49:29 -0700458 std::string old_kmsg = android::base::StringPrintf("%s", LAST_KMSG_FILE);
459 if (i > 0) {
460 old_kmsg += "." + std::to_string(i);
461 }
Tao Baobef39712015-05-04 18:50:27 -0700462 std::string new_kmsg = android::base::StringPrintf("%s.%d", LAST_KMSG_FILE, i+1);
463 rename(old_kmsg.c_str(), new_kmsg.c_str());
Doug Zongkerda1ebae2013-05-16 11:23:48 -0700464 }
465}
Doug Zongker2c3539e2010-09-29 13:21:30 -0700466
Tao Bao682c34b2015-04-07 17:16:35 -0700467static void copy_logs() {
468 // We only rotate and record the log of the current session if there are
469 // actual attempts to modify the flash, such as wipes, installs from BCB
470 // or menu selections. This is to avoid unnecessary rotation (and
471 // possible deletion) of log files, if it does not do anything loggable.
472 if (!modified_flash) {
473 return;
474 }
475
Mark Salyzyn13aca592016-03-09 14:58:16 -0800476 // Always write to pmsg, this allows the OTA logs to be caught in logcat -L
477 copy_log_file_to_pmsg(TEMPORARY_LOG_FILE, LAST_LOG_FILE);
478 copy_log_file_to_pmsg(TEMPORARY_INSTALL_FILE, LAST_INSTALL_FILE);
479
480 // We can do nothing for now if there's no /cache partition.
481 if (!has_cache) {
482 return;
483 }
484
Tao Baobef39712015-05-04 18:50:27 -0700485 rotate_logs(KEEP_LOG_COUNT);
Tao Bao682c34b2015-04-07 17:16:35 -0700486
Doug Zongkerf24fd7e2013-07-02 11:43:25 -0700487 // Copy logs to cache so the system can find out what happened.
Tao Baof0124322015-04-11 02:04:11 +0000488 copy_log_file(TEMPORARY_LOG_FILE, LOG_FILE, true);
489 copy_log_file(TEMPORARY_LOG_FILE, LAST_LOG_FILE, false);
490 copy_log_file(TEMPORARY_INSTALL_FILE, LAST_INSTALL_FILE, false);
491 save_kernel_log(LAST_KMSG_FILE);
Doug Zongkerf24fd7e2013-07-02 11:43:25 -0700492 chmod(LOG_FILE, 0600);
493 chown(LOG_FILE, 1000, 1000); // system user
Tao Baof0124322015-04-11 02:04:11 +0000494 chmod(LAST_KMSG_FILE, 0600);
495 chown(LAST_KMSG_FILE, 1000, 1000); // system user
Doug Zongkerf24fd7e2013-07-02 11:43:25 -0700496 chmod(LAST_LOG_FILE, 0640);
497 chmod(LAST_INSTALL_FILE, 0644);
498 sync();
499}
500
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800501// clear the recovery command and prepare to boot a (hopefully working) system,
502// copy our log file to cache as well (for the system to read), and
503// record any intent we were asked to communicate back to the system.
504// this function is idempotent: call it as many times as you like.
505static void
Oscar Montemayor05231562009-11-30 08:40:57 -0800506finish_recovery(const char *send_intent) {
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800507 // By this point, we're ready to return to the main system...
Tao Baoae6408d2016-02-25 12:29:40 -0800508 if (send_intent != NULL && has_cache) {
Doug Zongkerd4208f92010-09-20 12:16:13 -0700509 FILE *fp = fopen_path(INTENT_FILE, "w");
Jay Freeman (saurik)619ec2f2008-11-17 01:56:05 +0000510 if (fp == NULL) {
511 LOGE("Can't open %s\n", INTENT_FILE);
512 } else {
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800513 fputs(send_intent, fp);
514 check_and_fclose(fp, INTENT_FILE);
515 }
516 }
517
Doug Zongker4f33e552012-08-23 13:16:12 -0700518 // Save the locale to cache, so if recovery is next started up
519 // without a --locale argument (eg, directly from the bootloader)
520 // it will use the last-known locale.
Mark Salyzyn13aca592016-03-09 14:58:16 -0800521 if (locale != NULL) {
522 size_t len = strlen(locale);
523 __pmsg_write(LOCALE_FILE, locale, len);
524 if (has_cache) {
525 LOGI("Saving locale \"%s\"\n", locale);
526 FILE* fp = fopen_path(LOCALE_FILE, "w");
527 fwrite(locale, 1, len, fp);
528 fflush(fp);
529 fsync(fileno(fp));
530 check_and_fclose(fp, LOCALE_FILE);
531 }
Doug Zongker4f33e552012-08-23 13:16:12 -0700532 }
533
Doug Zongkerf24fd7e2013-07-02 11:43:25 -0700534 copy_logs();
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800535
Doug Zongkere5d5ac72012-04-12 11:01:22 -0700536 // Reset to normal system boot so recovery won't cycle indefinitely.
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800537 struct bootloader_message boot;
538 memset(&boot, 0, sizeof(boot));
539 set_bootloader_message(&boot);
540
541 // Remove the command file, so recovery won't repeat indefinitely.
Tao Baoae6408d2016-02-25 12:29:40 -0800542 if (has_cache) {
543 if (ensure_path_mounted(COMMAND_FILE) != 0 || (unlink(COMMAND_FILE) && errno != ENOENT)) {
544 LOGW("Can't unlink %s\n", COMMAND_FILE);
545 }
546 ensure_path_unmounted(CACHE_ROOT);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800547 }
548
549 sync(); // For good measure.
550}
551
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700552typedef struct _saved_log_file {
553 char* name;
554 struct stat st;
555 unsigned char* data;
556 struct _saved_log_file* next;
557} saved_log_file;
558
Elliott Hughes945548e2015-06-05 17:59:56 -0700559static bool erase_volume(const char* volume) {
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700560 bool is_cache = (strcmp(volume, CACHE_ROOT) == 0);
Paul Lawrenced0db3372015-11-05 13:38:40 -0800561 bool is_data = (strcmp(volume, DATA_ROOT) == 0);
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700562
Doug Zongker02ec6b82012-08-22 17:26:40 -0700563 ui->SetBackground(RecoveryUI::ERASING);
Doug Zongker211aebc2011-10-28 15:13:10 -0700564 ui->SetProgressType(RecoveryUI::INDETERMINATE);
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700565
566 saved_log_file* head = NULL;
567
568 if (is_cache) {
Tao Baobef39712015-05-04 18:50:27 -0700569 // If we're reformatting /cache, we load any past logs
570 // (i.e. "/cache/recovery/last_*") and the current log
571 // ("/cache/recovery/log") into memory, so we can restore them after
572 // the reformat.
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700573
574 ensure_path_mounted(volume);
575
576 DIR* d;
577 struct dirent* de;
578 d = opendir(CACHE_LOG_DIR);
579 if (d) {
580 char path[PATH_MAX];
581 strcpy(path, CACHE_LOG_DIR);
582 strcat(path, "/");
583 int path_len = strlen(path);
584 while ((de = readdir(d)) != NULL) {
Tao Baobef39712015-05-04 18:50:27 -0700585 if (strncmp(de->d_name, "last_", 5) == 0 || strcmp(de->d_name, "log") == 0) {
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700586 saved_log_file* p = (saved_log_file*) malloc(sizeof(saved_log_file));
587 strcpy(path+path_len, de->d_name);
588 p->name = strdup(path);
589 if (stat(path, &(p->st)) == 0) {
590 // truncate files to 512kb
591 if (p->st.st_size > (1 << 19)) {
592 p->st.st_size = 1 << 19;
593 }
594 p->data = (unsigned char*) malloc(p->st.st_size);
595 FILE* f = fopen(path, "rb");
596 fread(p->data, 1, p->st.st_size, f);
597 fclose(f);
598 p->next = head;
599 head = p;
600 } else {
601 free(p);
602 }
603 }
604 }
605 closedir(d);
606 } else {
607 if (errno != ENOENT) {
608 printf("opendir failed: %s\n", strerror(errno));
609 }
610 }
611 }
612
Doug Zongker211aebc2011-10-28 15:13:10 -0700613 ui->Print("Formatting %s...\n", volume);
Doug Zongker2c3539e2010-09-29 13:21:30 -0700614
Doug Zongkerd0181b82011-10-19 10:51:12 -0700615 ensure_path_unmounted(volume);
Paul Lawrenced0db3372015-11-05 13:38:40 -0800616
617 int result;
618
619 if (is_data && reason && strcmp(reason, "convert_fbe") == 0) {
620 // Create convert_fbe breadcrumb file to signal to init
621 // to convert to file based encryption, not full disk encryption
Paul Lawrence661f8a62016-02-25 12:42:19 -0800622 if (mkdir(CONVERT_FBE_DIR, 0700) != 0) {
623 ui->Print("Failed to make convert_fbe dir %s\n", strerror(errno));
624 return true;
625 }
Paul Lawrenced0db3372015-11-05 13:38:40 -0800626 FILE* f = fopen(CONVERT_FBE_FILE, "wb");
627 if (!f) {
Paul Lawrence661f8a62016-02-25 12:42:19 -0800628 ui->Print("Failed to convert to file encryption %s\n", strerror(errno));
Paul Lawrenced0db3372015-11-05 13:38:40 -0800629 return true;
630 }
631 fclose(f);
632 result = format_volume(volume, CONVERT_FBE_DIR);
633 remove(CONVERT_FBE_FILE);
634 rmdir(CONVERT_FBE_DIR);
635 } else {
636 result = format_volume(volume);
637 }
Doug Zongkerd0181b82011-10-19 10:51:12 -0700638
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700639 if (is_cache) {
640 while (head) {
641 FILE* f = fopen_path(head->name, "wb");
642 if (f) {
643 fwrite(head->data, 1, head->st.st_size, f);
644 fclose(f);
645 chmod(head->name, head->st.st_mode);
646 chown(head->name, head->st.st_uid, head->st.st_gid);
647 }
648 free(head->name);
649 free(head->data);
650 saved_log_file* temp = head->next;
651 free(head);
652 head = temp;
653 }
654
Tao Baof0124322015-04-11 02:04:11 +0000655 // Any part of the log we'd copied to cache is now gone.
656 // Reset the pointer so we copy from the beginning of the temp
657 // log.
658 tmplog_offset = 0;
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700659 copy_logs();
Doug Zongker2c3539e2010-09-29 13:21:30 -0700660 }
661
Elliott Hughes945548e2015-06-05 17:59:56 -0700662 return (result == 0);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800663}
664
Doug Zongkerf93d8162009-09-22 15:16:02 -0700665static int
Doug Zongker28ce47c2011-10-28 10:33:05 -0700666get_menu_selection(const char* const * headers, const char* const * items,
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700667 int menu_only, int initial_selection, Device* device) {
Doug Zongkerf93d8162009-09-22 15:16:02 -0700668 // throw away keys pressed previously, so user doesn't
669 // accidentally trigger menu items.
Doug Zongker211aebc2011-10-28 15:13:10 -0700670 ui->FlushKeys();
Doug Zongkerf93d8162009-09-22 15:16:02 -0700671
Doug Zongker211aebc2011-10-28 15:13:10 -0700672 ui->StartMenu(headers, items, initial_selection);
Doug Zongker8674a722010-09-15 11:08:23 -0700673 int selected = initial_selection;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800674 int chosen_item = -1;
675
Doug Zongkerf93d8162009-09-22 15:16:02 -0700676 while (chosen_item < 0) {
Doug Zongker211aebc2011-10-28 15:13:10 -0700677 int key = ui->WaitKey();
678 int visible = ui->IsTextVisible();
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800679
Doug Zongker5cae4452011-01-25 13:15:30 -0800680 if (key == -1) { // ui_wait_key() timed out
Doug Zongker211aebc2011-10-28 15:13:10 -0700681 if (ui->WasTextEverVisible()) {
Doug Zongker5cae4452011-01-25 13:15:30 -0800682 continue;
683 } else {
684 LOGI("timed out waiting for key input; rebooting.\n");
Doug Zongker211aebc2011-10-28 15:13:10 -0700685 ui->EndMenu();
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700686 return 0; // XXX fixme
Doug Zongker5cae4452011-01-25 13:15:30 -0800687 }
688 }
689
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700690 int action = device->HandleMenuKey(key, visible);
Doug Zongkerddd6a282009-06-09 12:22:33 -0700691
692 if (action < 0) {
693 switch (action) {
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700694 case Device::kHighlightUp:
Elliott Hughes642aaa72015-04-10 12:47:46 -0700695 selected = ui->SelectMenu(--selected);
Doug Zongkerddd6a282009-06-09 12:22:33 -0700696 break;
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700697 case Device::kHighlightDown:
Elliott Hughes642aaa72015-04-10 12:47:46 -0700698 selected = ui->SelectMenu(++selected);
Doug Zongkerddd6a282009-06-09 12:22:33 -0700699 break;
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700700 case Device::kInvokeItem:
Doug Zongkerddd6a282009-06-09 12:22:33 -0700701 chosen_item = selected;
702 break;
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700703 case Device::kNoAction:
Doug Zongkerddd6a282009-06-09 12:22:33 -0700704 break;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800705 }
Doug Zongkerf93d8162009-09-22 15:16:02 -0700706 } else if (!menu_only) {
Doug Zongkerddd6a282009-06-09 12:22:33 -0700707 chosen_item = action;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800708 }
Doug Zongkerf93d8162009-09-22 15:16:02 -0700709 }
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800710
Doug Zongker211aebc2011-10-28 15:13:10 -0700711 ui->EndMenu();
Doug Zongkerf93d8162009-09-22 15:16:02 -0700712 return chosen_item;
713}
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800714
Doug Zongker8674a722010-09-15 11:08:23 -0700715static int compare_string(const void* a, const void* b) {
716 return strcmp(*(const char**)a, *(const char**)b);
717}
718
Doug Zongker93950222014-07-08 14:10:23 -0700719// Returns a malloc'd path, or NULL.
Elliott Hughes30694c92015-03-25 15:16:51 -0700720static char* browse_directory(const char* path, Device* device) {
Michael Ward9d2629c2011-06-23 22:14:24 -0700721 ensure_path_mounted(path);
Doug Zongkerc18eeb82010-09-21 16:49:26 -0700722
Elliott Hughes30694c92015-03-25 15:16:51 -0700723 DIR* d = opendir(path);
Doug Zongker8674a722010-09-15 11:08:23 -0700724 if (d == NULL) {
725 LOGE("error opening %s: %s\n", path, strerror(errno));
Doug Zongker93950222014-07-08 14:10:23 -0700726 return NULL;
Doug Zongker8674a722010-09-15 11:08:23 -0700727 }
728
Doug Zongker8674a722010-09-15 11:08:23 -0700729 int d_size = 0;
730 int d_alloc = 10;
Doug Zongker28ce47c2011-10-28 10:33:05 -0700731 char** dirs = (char**)malloc(d_alloc * sizeof(char*));
Doug Zongker8674a722010-09-15 11:08:23 -0700732 int z_size = 1;
733 int z_alloc = 10;
Doug Zongker28ce47c2011-10-28 10:33:05 -0700734 char** zips = (char**)malloc(z_alloc * sizeof(char*));
Doug Zongker8674a722010-09-15 11:08:23 -0700735 zips[0] = strdup("../");
736
Elliott Hughes30694c92015-03-25 15:16:51 -0700737 struct dirent* de;
Doug Zongker8674a722010-09-15 11:08:23 -0700738 while ((de = readdir(d)) != NULL) {
739 int name_len = strlen(de->d_name);
740
741 if (de->d_type == DT_DIR) {
742 // skip "." and ".." entries
743 if (name_len == 1 && de->d_name[0] == '.') continue;
744 if (name_len == 2 && de->d_name[0] == '.' &&
745 de->d_name[1] == '.') continue;
746
747 if (d_size >= d_alloc) {
748 d_alloc *= 2;
Doug Zongker28ce47c2011-10-28 10:33:05 -0700749 dirs = (char**)realloc(dirs, d_alloc * sizeof(char*));
Doug Zongker8674a722010-09-15 11:08:23 -0700750 }
Doug Zongker28ce47c2011-10-28 10:33:05 -0700751 dirs[d_size] = (char*)malloc(name_len + 2);
Doug Zongker8674a722010-09-15 11:08:23 -0700752 strcpy(dirs[d_size], de->d_name);
753 dirs[d_size][name_len] = '/';
754 dirs[d_size][name_len+1] = '\0';
755 ++d_size;
756 } else if (de->d_type == DT_REG &&
757 name_len >= 4 &&
758 strncasecmp(de->d_name + (name_len-4), ".zip", 4) == 0) {
759 if (z_size >= z_alloc) {
760 z_alloc *= 2;
Doug Zongker28ce47c2011-10-28 10:33:05 -0700761 zips = (char**)realloc(zips, z_alloc * sizeof(char*));
Doug Zongker8674a722010-09-15 11:08:23 -0700762 }
763 zips[z_size++] = strdup(de->d_name);
764 }
765 }
766 closedir(d);
767
768 qsort(dirs, d_size, sizeof(char*), compare_string);
769 qsort(zips, z_size, sizeof(char*), compare_string);
770
771 // append dirs to the zips list
772 if (d_size + z_size + 1 > z_alloc) {
773 z_alloc = d_size + z_size + 1;
Doug Zongker28ce47c2011-10-28 10:33:05 -0700774 zips = (char**)realloc(zips, z_alloc * sizeof(char*));
Doug Zongker8674a722010-09-15 11:08:23 -0700775 }
776 memcpy(zips + z_size, dirs, d_size * sizeof(char*));
777 free(dirs);
778 z_size += d_size;
779 zips[z_size] = NULL;
780
Elliott Hughes8fd86d72015-04-13 14:36:02 -0700781 const char* headers[] = { "Choose a package to install:", path, NULL };
Elliott Hughes30694c92015-03-25 15:16:51 -0700782
Doug Zongker93950222014-07-08 14:10:23 -0700783 char* result;
Doug Zongker8674a722010-09-15 11:08:23 -0700784 int chosen_item = 0;
Doug Zongker93950222014-07-08 14:10:23 -0700785 while (true) {
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700786 chosen_item = get_menu_selection(headers, zips, 1, chosen_item, device);
Doug Zongker8674a722010-09-15 11:08:23 -0700787
788 char* item = zips[chosen_item];
789 int item_len = strlen(item);
790 if (chosen_item == 0) { // item 0 is always "../"
Michael Ward9d2629c2011-06-23 22:14:24 -0700791 // go up but continue browsing (if the caller is update_directory)
Doug Zongker93950222014-07-08 14:10:23 -0700792 result = NULL;
Doug Zongker8674a722010-09-15 11:08:23 -0700793 break;
794 }
Doug Zongker93950222014-07-08 14:10:23 -0700795
796 char new_path[PATH_MAX];
797 strlcpy(new_path, path, PATH_MAX);
798 strlcat(new_path, "/", PATH_MAX);
799 strlcat(new_path, item, PATH_MAX);
800
801 if (item[item_len-1] == '/') {
802 // recurse down into a subdirectory
803 new_path[strlen(new_path)-1] = '\0'; // truncate the trailing '/'
804 result = browse_directory(new_path, device);
805 if (result) break;
806 } else {
807 // selected a zip file: return the malloc'd path to the caller.
808 result = strdup(new_path);
809 break;
810 }
811 }
Doug Zongker8674a722010-09-15 11:08:23 -0700812
Elliott Hughes30694c92015-03-25 15:16:51 -0700813 for (int i = 0; i < z_size; ++i) free(zips[i]);
Doug Zongker8674a722010-09-15 11:08:23 -0700814 free(zips);
Doug Zongker8674a722010-09-15 11:08:23 -0700815
816 return result;
817}
818
Elliott Hughes30694c92015-03-25 15:16:51 -0700819static bool yes_no(Device* device, const char* question1, const char* question2) {
Elliott Hughes8fd86d72015-04-13 14:36:02 -0700820 const char* headers[] = { question1, question2, NULL };
Elliott Hughes30694c92015-03-25 15:16:51 -0700821 const char* items[] = { " No", " Yes", NULL };
Doug Zongkerddd6a282009-06-09 12:22:33 -0700822
Elliott Hughes30694c92015-03-25 15:16:51 -0700823 int chosen_item = get_menu_selection(headers, items, 1, 0, device);
824 return (chosen_item == 1);
825}
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800826
Tao Baoe39a9bc2015-03-31 12:19:05 -0700827// Return true on success.
828static bool wipe_data(int should_confirm, Device* device) {
829 if (should_confirm && !yes_no(device, "Wipe all user data?", " THIS CAN NOT BE UNDONE!")) {
830 return false;
Doug Zongkerf93d8162009-09-22 15:16:02 -0700831 }
Doug Zongker1066d2c2009-04-01 13:57:40 -0700832
Tao Bao682c34b2015-04-07 17:16:35 -0700833 modified_flash = true;
834
Doug Zongker211aebc2011-10-28 15:13:10 -0700835 ui->Print("\n-- Wiping data...\n");
Elliott Hughes945548e2015-06-05 17:59:56 -0700836 bool success =
837 device->PreWipeData() &&
838 erase_volume("/data") &&
Tao Baoae6408d2016-02-25 12:29:40 -0800839 (has_cache ? erase_volume("/cache") : true) &&
Elliott Hughes945548e2015-06-05 17:59:56 -0700840 device->PostWipeData();
841 ui->Print("Data wipe %s.\n", success ? "complete" : "failed");
842 return success;
Doug Zongkerf93d8162009-09-22 15:16:02 -0700843}
844
Tao Baoe39a9bc2015-03-31 12:19:05 -0700845// Return true on success.
846static bool wipe_cache(bool should_confirm, Device* device) {
Tao Baoae6408d2016-02-25 12:29:40 -0800847 if (!has_cache) {
848 ui->Print("No /cache partition found.\n");
849 return false;
850 }
851
Elliott Hughes30694c92015-03-25 15:16:51 -0700852 if (should_confirm && !yes_no(device, "Wipe cache?", " THIS CAN NOT BE UNDONE!")) {
Tao Baoe39a9bc2015-03-31 12:19:05 -0700853 return false;
Elliott Hughes30694c92015-03-25 15:16:51 -0700854 }
855
Tao Bao682c34b2015-04-07 17:16:35 -0700856 modified_flash = true;
857
Elliott Hughes30694c92015-03-25 15:16:51 -0700858 ui->Print("\n-- Wiping cache...\n");
Elliott Hughes945548e2015-06-05 17:59:56 -0700859 bool success = erase_volume("/cache");
860 ui->Print("Cache wipe %s.\n", success ? "complete" : "failed");
861 return success;
Elliott Hughes30694c92015-03-25 15:16:51 -0700862}
863
Tao Baob0838182016-06-02 11:16:50 -0700864// Secure-wipe a given partition. It uses BLKSECDISCARD, if supported.
865// Otherwise, it goes with BLKDISCARD (if device supports BLKDISCARDZEROES) or
866// BLKZEROOUT.
867static bool secure_wipe_partition(const std::string& partition) {
868 unique_fd fd(TEMP_FAILURE_RETRY(open(partition.c_str(), O_WRONLY)));
869 if (fd.get() == -1) {
870 LOGE("failed to open \"%s\": %s\n", partition.c_str(), strerror(errno));
871 return false;
872 }
873
874 uint64_t range[2] = {0, 0};
875 if (ioctl(fd.get(), BLKGETSIZE64, &range[1]) == -1 || range[1] == 0) {
876 LOGE("failed to get partition size: %s\n", strerror(errno));
877 return false;
878 }
879 printf("Secure-wiping \"%s\" from %" PRIu64 " to %" PRIu64 ".\n",
880 partition.c_str(), range[0], range[1]);
881
882 printf("Trying BLKSECDISCARD...\t");
883 if (ioctl(fd.get(), BLKSECDISCARD, &range) == -1) {
884 printf("failed: %s\n", strerror(errno));
885
886 // Use BLKDISCARD if it zeroes out blocks, otherwise use BLKZEROOUT.
887 unsigned int zeroes;
888 if (ioctl(fd.get(), BLKDISCARDZEROES, &zeroes) == 0 && zeroes != 0) {
889 printf("Trying BLKDISCARD...\t");
890 if (ioctl(fd.get(), BLKDISCARD, &range) == -1) {
891 printf("failed: %s\n", strerror(errno));
892 return false;
893 }
894 } else {
895 printf("Trying BLKZEROOUT...\t");
896 if (ioctl(fd.get(), BLKZEROOUT, &range) == -1) {
897 printf("failed: %s\n", strerror(errno));
898 return false;
899 }
900 }
901 }
902
903 printf("done\n");
904 return true;
905}
906
907// Brick the current device, with a secure wipe of all the partitions in
908// RECOVERY_BRICK.
909static bool brick_device() {
910 ui->SetBackground(RecoveryUI::ERASING);
911 ui->SetProgressType(RecoveryUI::INDETERMINATE);
912
913 std::string partition_list;
914 if (!android::base::ReadFileToString(RECOVERY_BRICK, &partition_list)) {
915 LOGE("failed to read \"%s\".\n", RECOVERY_BRICK);
916 return false;
917 }
918
919 std::vector<std::string> lines = android::base::Split(partition_list, "\n");
920 for (const std::string& line : lines) {
921 std::string partition = android::base::Trim(line);
922 // Ignore '#' comment or empty lines.
923 if (android::base::StartsWith(partition, "#") || partition.empty()) {
924 continue;
925 }
926
927 // Proceed anyway even if it fails to wipe some partition.
928 secure_wipe_partition(partition);
929 }
930 return true;
931}
932
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700933static void choose_recovery_file(Device* device) {
Tao Baoae6408d2016-02-25 12:29:40 -0800934 if (!has_cache) {
935 ui->Print("No /cache partition found.\n");
936 return;
937 }
938
Elliott Hughesc0491632015-05-06 12:40:05 -0700939 // "Back" + KEEP_LOG_COUNT * 2 + terminating nullptr entry
940 char* entries[1 + KEEP_LOG_COUNT * 2 + 1];
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700941 memset(entries, 0, sizeof(entries));
942
Tao Baobef39712015-05-04 18:50:27 -0700943 unsigned int n = 0;
Patrick Tjincd055ee2014-12-09 11:26:40 -0800944
Patrick Tjincd055ee2014-12-09 11:26:40 -0800945 // Add LAST_LOG_FILE + LAST_LOG_FILE.x
Tao Baobef39712015-05-04 18:50:27 -0700946 // Add LAST_KMSG_FILE + LAST_KMSG_FILE.x
947 for (int i = 0; i < KEEP_LOG_COUNT; i++) {
948 char* log_file;
Tao Bao80e46e02015-06-03 10:49:29 -0700949 int ret;
950 ret = (i == 0) ? asprintf(&log_file, "%s", LAST_LOG_FILE) :
951 asprintf(&log_file, "%s.%d", LAST_LOG_FILE, i);
952 if (ret == -1) {
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700953 // memory allocation failure - return early. Should never happen.
954 return;
955 }
Tao Baobef39712015-05-04 18:50:27 -0700956 if ((ensure_path_mounted(log_file) != 0) || (access(log_file, R_OK) == -1)) {
957 free(log_file);
958 } else {
959 entries[n++] = log_file;
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700960 }
Tao Baobef39712015-05-04 18:50:27 -0700961
962 char* kmsg_file;
Tao Bao80e46e02015-06-03 10:49:29 -0700963 ret = (i == 0) ? asprintf(&kmsg_file, "%s", LAST_KMSG_FILE) :
964 asprintf(&kmsg_file, "%s.%d", LAST_KMSG_FILE, i);
965 if (ret == -1) {
Tao Baobef39712015-05-04 18:50:27 -0700966 // memory allocation failure - return early. Should never happen.
967 return;
968 }
969 if ((ensure_path_mounted(kmsg_file) != 0) || (access(kmsg_file, R_OK) == -1)) {
970 free(kmsg_file);
971 } else {
972 entries[n++] = kmsg_file;
973 }
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700974 }
975
Elliott Hughesc0491632015-05-06 12:40:05 -0700976 entries[n++] = strdup("Back");
977
Tao Baobef39712015-05-04 18:50:27 -0700978 const char* headers[] = { "Select file to view", nullptr };
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700979
Elliott Hughes8de52072015-04-08 20:06:50 -0700980 while (true) {
Elliott Hughes30694c92015-03-25 15:16:51 -0700981 int chosen_item = get_menu_selection(headers, entries, 1, 0, device);
Elliott Hughesc0491632015-05-06 12:40:05 -0700982 if (strcmp(entries[chosen_item], "Back") == 0) break;
Elliott Hughes8de52072015-04-08 20:06:50 -0700983
Elliott Hughes8de52072015-04-08 20:06:50 -0700984 ui->ShowFile(entries[chosen_item]);
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700985 }
986
Tao Baobef39712015-05-04 18:50:27 -0700987 for (size_t i = 0; i < (sizeof(entries) / sizeof(*entries)); i++) {
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700988 free(entries[i]);
989 }
990}
991
Elliott Hughes498cda62016-04-14 16:49:04 -0700992static void run_graphics_test(Device* device) {
993 // Switch to graphics screen.
994 ui->ShowText(false);
995
996 ui->SetProgressType(RecoveryUI::INDETERMINATE);
997 ui->SetBackground(RecoveryUI::INSTALLING_UPDATE);
998 sleep(1);
999
1000 ui->SetBackground(RecoveryUI::ERROR);
1001 sleep(1);
1002
1003 ui->SetBackground(RecoveryUI::NO_COMMAND);
1004 sleep(1);
1005
1006 ui->SetBackground(RecoveryUI::ERASING);
1007 sleep(1);
1008
1009 ui->SetBackground(RecoveryUI::INSTALLING_UPDATE);
1010
1011 ui->SetProgressType(RecoveryUI::DETERMINATE);
1012 ui->ShowProgress(1.0, 10.0);
1013 float fraction = 0.0;
1014 for (size_t i = 0; i < 100; ++i) {
1015 fraction += .01;
1016 ui->SetProgress(fraction);
1017 usleep(100000);
1018 }
1019
1020 ui->ShowText(true);
1021}
1022
Tao Baocdcf28f2016-01-13 15:05:20 -08001023// How long (in seconds) we wait for the fuse-provided package file to
1024// appear, before timing out.
1025#define SDCARD_INSTALL_TIMEOUT 10
1026
Tao Bao145d8612015-03-25 15:51:15 -07001027static int apply_from_sdcard(Device* device, bool* wipe_cache) {
Tao Bao682c34b2015-04-07 17:16:35 -07001028 modified_flash = true;
1029
Christian Poetzsch4ec58a42015-02-19 10:42:39 +00001030 if (ensure_path_mounted(SDCARD_ROOT) != 0) {
1031 ui->Print("\n-- Couldn't mount %s.\n", SDCARD_ROOT);
1032 return INSTALL_ERROR;
1033 }
1034
1035 char* path = browse_directory(SDCARD_ROOT, device);
1036 if (path == NULL) {
Elliott Hughes018ed312015-04-08 16:51:36 -07001037 ui->Print("\n-- No package file selected.\n");
caozhiyuanb4effb92015-06-10 16:46:38 +08001038 ensure_path_unmounted(SDCARD_ROOT);
Christian Poetzsch4ec58a42015-02-19 10:42:39 +00001039 return INSTALL_ERROR;
1040 }
1041
1042 ui->Print("\n-- Install %s ...\n", path);
1043 set_sdcard_update_bootloader_message();
Christian Poetzsch4ec58a42015-02-19 10:42:39 +00001044
Tao Baocdcf28f2016-01-13 15:05:20 -08001045 // We used to use fuse in a thread as opposed to a process. Since accessing
1046 // through fuse involves going from kernel to userspace to kernel, it leads
1047 // to deadlock when a page fault occurs. (Bug: 26313124)
1048 pid_t child;
1049 if ((child = fork()) == 0) {
1050 bool status = start_sdcard_fuse(path);
1051
1052 _exit(status ? EXIT_SUCCESS : EXIT_FAILURE);
1053 }
1054
1055 // FUSE_SIDELOAD_HOST_PATHNAME will start to exist once the fuse in child
1056 // process is ready.
1057 int result = INSTALL_ERROR;
1058 int status;
1059 bool waited = false;
1060 for (int i = 0; i < SDCARD_INSTALL_TIMEOUT; ++i) {
1061 if (waitpid(child, &status, WNOHANG) == -1) {
1062 result = INSTALL_ERROR;
1063 waited = true;
1064 break;
1065 }
1066
1067 struct stat sb;
1068 if (stat(FUSE_SIDELOAD_HOST_PATHNAME, &sb) == -1) {
1069 if (errno == ENOENT && i < SDCARD_INSTALL_TIMEOUT-1) {
1070 sleep(1);
1071 continue;
1072 } else {
1073 LOGE("Timed out waiting for the fuse-provided package.\n");
1074 result = INSTALL_ERROR;
1075 kill(child, SIGKILL);
1076 break;
1077 }
1078 }
1079
1080 result = install_package(FUSE_SIDELOAD_HOST_PATHNAME, wipe_cache,
Tianjie Xu16255832016-04-30 11:49:59 -07001081 TEMPORARY_INSTALL_FILE, false, 0/*retry_count*/);
Tao Baocdcf28f2016-01-13 15:05:20 -08001082 break;
1083 }
Christian Poetzsch4ec58a42015-02-19 10:42:39 +00001084
Tao Baocdcf28f2016-01-13 15:05:20 -08001085 if (!waited) {
1086 // Calling stat() on this magic filename signals the fuse
1087 // filesystem to shut down.
1088 struct stat sb;
1089 stat(FUSE_SIDELOAD_HOST_EXIT_PATHNAME, &sb);
1090
1091 waitpid(child, &status, 0);
1092 }
1093
1094 if (!WIFEXITED(status) || WEXITSTATUS(status) != 0) {
1095 LOGE("Error exit from the fuse process: %d\n", WEXITSTATUS(status));
1096 }
1097
Christian Poetzsch4ec58a42015-02-19 10:42:39 +00001098 ensure_path_unmounted(SDCARD_ROOT);
Tao Baocdcf28f2016-01-13 15:05:20 -08001099 return result;
Christian Poetzsch4ec58a42015-02-19 10:42:39 +00001100}
1101
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001102// Return REBOOT, SHUTDOWN, or REBOOT_BOOTLOADER. Returning NO_ACTION
1103// means to take the default, which is to reboot or shutdown depending
1104// on if the --shutdown_after flag was passed to recovery.
1105static Device::BuiltinAction
Doug Zongker6c8553d2012-09-24 10:40:47 -07001106prompt_and_wait(Device* device, int status) {
Doug Zongkerf93d8162009-09-22 15:16:02 -07001107 for (;;) {
1108 finish_recovery(NULL);
Doug Zongker6c8553d2012-09-24 10:40:47 -07001109 switch (status) {
1110 case INSTALL_SUCCESS:
1111 case INSTALL_NONE:
1112 ui->SetBackground(RecoveryUI::NO_COMMAND);
1113 break;
1114
1115 case INSTALL_ERROR:
1116 case INSTALL_CORRUPT:
1117 ui->SetBackground(RecoveryUI::ERROR);
1118 break;
1119 }
Doug Zongker211aebc2011-10-28 15:13:10 -07001120 ui->SetProgressType(RecoveryUI::EMPTY);
Doug Zongkerf93d8162009-09-22 15:16:02 -07001121
Elliott Hughes8fd86d72015-04-13 14:36:02 -07001122 int chosen_item = get_menu_selection(nullptr, device->GetMenuItems(), 0, 0, device);
Doug Zongkerf93d8162009-09-22 15:16:02 -07001123
1124 // device-specific code may take some action here. It may
1125 // return one of the core actions handled in the switch
1126 // statement below.
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001127 Device::BuiltinAction chosen_action = device->InvokeMenuItem(chosen_item);
Doug Zongkerf93d8162009-09-22 15:16:02 -07001128
Elliott Hughes30694c92015-03-25 15:16:51 -07001129 bool should_wipe_cache = false;
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001130 switch (chosen_action) {
1131 case Device::NO_ACTION:
1132 break;
1133
Doug Zongkerdaefc1d2011-10-31 09:34:15 -07001134 case Device::REBOOT:
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001135 case Device::SHUTDOWN:
1136 case Device::REBOOT_BOOTLOADER:
1137 return chosen_action;
Doug Zongkerf93d8162009-09-22 15:16:02 -07001138
Doug Zongkerdaefc1d2011-10-31 09:34:15 -07001139 case Device::WIPE_DATA:
1140 wipe_data(ui->IsTextVisible(), device);
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001141 if (!ui->IsTextVisible()) return Device::NO_ACTION;
Doug Zongkerf93d8162009-09-22 15:16:02 -07001142 break;
1143
Doug Zongkerdaefc1d2011-10-31 09:34:15 -07001144 case Device::WIPE_CACHE:
Elliott Hughes30694c92015-03-25 15:16:51 -07001145 wipe_cache(ui->IsTextVisible(), device);
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001146 if (!ui->IsTextVisible()) return Device::NO_ACTION;
Doug Zongkerf93d8162009-09-22 15:16:02 -07001147 break;
1148
Christian Poetzsch4ec58a42015-02-19 10:42:39 +00001149 case Device::APPLY_ADB_SIDELOAD:
Elliott Hughesec283402015-04-10 10:01:53 -07001150 case Device::APPLY_SDCARD:
Christian Poetzsch4ec58a42015-02-19 10:42:39 +00001151 {
1152 bool adb = (chosen_action == Device::APPLY_ADB_SIDELOAD);
1153 if (adb) {
Elliott Hughes30694c92015-03-25 15:16:51 -07001154 status = apply_from_adb(ui, &should_wipe_cache, TEMPORARY_INSTALL_FILE);
Doug Zongkerd0181b82011-10-19 10:51:12 -07001155 } else {
Elliott Hughes30694c92015-03-25 15:16:51 -07001156 status = apply_from_sdcard(device, &should_wipe_cache);
Doug Zongkerd0181b82011-10-19 10:51:12 -07001157 }
Doug Zongker945fc682014-07-10 10:50:39 -07001158
Elliott Hughes30694c92015-03-25 15:16:51 -07001159 if (status == INSTALL_SUCCESS && should_wipe_cache) {
Tao Baoe39a9bc2015-03-31 12:19:05 -07001160 if (!wipe_cache(false, device)) {
1161 status = INSTALL_ERROR;
1162 }
Christian Poetzsch4ec58a42015-02-19 10:42:39 +00001163 }
1164
Tao Baoc679f932015-03-30 09:43:49 -07001165 if (status != INSTALL_SUCCESS) {
1166 ui->SetBackground(RecoveryUI::ERROR);
1167 ui->Print("Installation aborted.\n");
1168 copy_logs();
1169 } else if (!ui->IsTextVisible()) {
1170 return Device::NO_ACTION; // reboot if logs aren't visible
1171 } else {
1172 ui->Print("\nInstall from %s complete.\n", adb ? "ADB" : "SD card");
Doug Zongker8674a722010-09-15 11:08:23 -07001173 }
Doug Zongkerf93d8162009-09-22 15:16:02 -07001174 }
1175 break;
Doug Zongkerdaefc1d2011-10-31 09:34:15 -07001176
Elliott Hughesec283402015-04-10 10:01:53 -07001177 case Device::VIEW_RECOVERY_LOGS:
1178 choose_recovery_file(device);
Michael Ward9d2629c2011-06-23 22:14:24 -07001179 break;
Doug Zongker9270a202012-01-09 15:16:13 -08001180
Elliott Hughes498cda62016-04-14 16:49:04 -07001181 case Device::RUN_GRAPHICS_TEST:
1182 run_graphics_test(device);
1183 break;
1184
Elliott Hughesec283402015-04-10 10:01:53 -07001185 case Device::MOUNT_SYSTEM:
Tao Baoabb8f772015-07-30 14:43:27 -07001186 char system_root_image[PROPERTY_VALUE_MAX];
1187 property_get("ro.build.system_root_image", system_root_image, "");
1188
1189 // For a system image built with the root directory (i.e.
1190 // system_root_image == "true"), we mount it to /system_root, and symlink /system
1191 // to /system_root/system to make adb shell work (the symlink is created through
1192 // the build system).
1193 // Bug: 22855115
1194 if (strcmp(system_root_image, "true") == 0) {
1195 if (ensure_path_mounted_at("/", "/system_root") != -1) {
1196 ui->Print("Mounted /system.\n");
1197 }
1198 } else {
1199 if (ensure_path_mounted("/system") != -1) {
1200 ui->Print("Mounted /system.\n");
1201 }
Elliott Hughesec283402015-04-10 10:01:53 -07001202 }
Tao Baoabb8f772015-07-30 14:43:27 -07001203
Nick Kralevicha9ad0322014-10-22 18:38:48 -07001204 break;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001205 }
1206 }
1207}
1208
1209static void
Oscar Montemayor05231562009-11-30 08:40:57 -08001210print_property(const char *key, const char *name, void *cookie) {
Doug Zongker56c51052010-07-01 09:18:44 -07001211 printf("%s=%s\n", key, name);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001212}
1213
Doug Zongker02ec6b82012-08-22 17:26:40 -07001214static void
1215load_locale_from_cache() {
1216 FILE* fp = fopen_path(LOCALE_FILE, "r");
1217 char buffer[80];
1218 if (fp != NULL) {
1219 fgets(buffer, sizeof(buffer), fp);
1220 int j = 0;
Doug Zongker5fa8c232012-09-18 12:37:02 -07001221 unsigned int i;
Doug Zongker02ec6b82012-08-22 17:26:40 -07001222 for (i = 0; i < sizeof(buffer) && buffer[i]; ++i) {
1223 if (!isspace(buffer[i])) {
1224 buffer[j++] = buffer[i];
1225 }
1226 }
1227 buffer[j] = 0;
1228 locale = strdup(buffer);
Devin Kim6016d082012-10-08 09:47:37 -07001229 check_and_fclose(fp, LOCALE_FILE);
Doug Zongker02ec6b82012-08-22 17:26:40 -07001230 }
1231}
1232
Doug Zongker7c3ae452013-05-14 11:03:02 -07001233static RecoveryUI* gCurrentUI = NULL;
1234
1235void
1236ui_print(const char* format, ...) {
1237 char buffer[256];
1238
1239 va_list ap;
1240 va_start(ap, format);
1241 vsnprintf(buffer, sizeof(buffer), format, ap);
1242 va_end(ap);
1243
1244 if (gCurrentUI != NULL) {
1245 gCurrentUI->Print("%s", buffer);
1246 } else {
1247 fputs(buffer, stdout);
1248 }
1249}
1250
Yabin Cui99281df2016-02-17 12:21:52 -08001251static bool is_battery_ok() {
1252 struct healthd_config healthd_config = {
1253 .batteryStatusPath = android::String8(android::String8::kEmptyString),
1254 .batteryHealthPath = android::String8(android::String8::kEmptyString),
1255 .batteryPresentPath = android::String8(android::String8::kEmptyString),
1256 .batteryCapacityPath = android::String8(android::String8::kEmptyString),
1257 .batteryVoltagePath = android::String8(android::String8::kEmptyString),
1258 .batteryTemperaturePath = android::String8(android::String8::kEmptyString),
1259 .batteryTechnologyPath = android::String8(android::String8::kEmptyString),
1260 .batteryCurrentNowPath = android::String8(android::String8::kEmptyString),
1261 .batteryCurrentAvgPath = android::String8(android::String8::kEmptyString),
1262 .batteryChargeCounterPath = android::String8(android::String8::kEmptyString),
1263 .batteryFullChargePath = android::String8(android::String8::kEmptyString),
1264 .batteryCycleCountPath = android::String8(android::String8::kEmptyString),
1265 .energyCounter = NULL,
1266 .boot_min_cap = 0,
1267 .screen_on = NULL
1268 };
1269 healthd_board_init(&healthd_config);
1270
1271 android::BatteryMonitor monitor;
1272 monitor.init(&healthd_config);
1273
1274 int wait_second = 0;
1275 while (true) {
1276 int charge_status = monitor.getChargeStatus();
1277 // Treat unknown status as charged.
1278 bool charged = (charge_status != android::BATTERY_STATUS_DISCHARGING &&
1279 charge_status != android::BATTERY_STATUS_NOT_CHARGING);
1280 android::BatteryProperty capacity;
1281 android::status_t status = monitor.getProperty(android::BATTERY_PROP_CAPACITY, &capacity);
1282 ui_print("charge_status %d, charged %d, status %d, capacity %lld\n", charge_status,
1283 charged, status, capacity.valueInt64);
1284 // At startup, the battery drivers in devices like N5X/N6P take some time to load
1285 // the battery profile. Before the load finishes, it reports value 50 as a fake
1286 // capacity. BATTERY_READ_TIMEOUT_IN_SEC is set that the battery drivers are expected
1287 // to finish loading the battery profile earlier than 10 seconds after kernel startup.
1288 if (status == 0 && capacity.valueInt64 == 50) {
1289 if (wait_second < BATTERY_READ_TIMEOUT_IN_SEC) {
1290 sleep(1);
1291 wait_second++;
1292 continue;
1293 }
1294 }
1295 // If we can't read battery percentage, it may be a device without battery. In this
1296 // situation, use 100 as a fake battery percentage.
1297 if (status != 0) {
1298 capacity.valueInt64 = 100;
1299 }
1300 return (charged && capacity.valueInt64 >= BATTERY_WITH_CHARGER_OK_PERCENTAGE) ||
1301 (!charged && capacity.valueInt64 >= BATTERY_OK_PERCENTAGE);
1302 }
1303}
1304
Tianjie Xufa12b972016-02-05 18:25:58 -08001305static void set_retry_bootloader_message(int retry_count, int argc, char** argv) {
1306 struct bootloader_message boot {};
1307 strlcpy(boot.command, "boot-recovery", sizeof(boot.command));
1308 strlcpy(boot.recovery, "recovery\n", sizeof(boot.recovery));
1309
1310 for (int i = 1; i < argc; ++i) {
1311 if (strstr(argv[i], "retry_count") == nullptr) {
1312 strlcat(boot.recovery, argv[i], sizeof(boot.recovery));
1313 strlcat(boot.recovery, "\n", sizeof(boot.recovery));
1314 }
1315 }
1316
1317 // Initialize counter to 1 if it's not in BCB, otherwise increment it by 1.
1318 if (retry_count == 0) {
1319 strlcat(boot.recovery, "--retry_count=1\n", sizeof(boot.recovery));
1320 } else {
1321 char buffer[20];
1322 snprintf(buffer, sizeof(buffer), "--retry_count=%d\n", retry_count+1);
1323 strlcat(boot.recovery, buffer, sizeof(boot.recovery));
1324 }
1325 set_bootloader_message(&boot);
1326}
1327
Mark Salyzyn13aca592016-03-09 14:58:16 -08001328static ssize_t logbasename(
1329 log_id_t /* logId */,
1330 char /* prio */,
1331 const char *filename,
1332 const char * /* buf */, size_t len,
1333 void *arg) {
1334 if (strstr(LAST_KMSG_FILE, filename) ||
1335 strstr(LAST_LOG_FILE, filename)) {
1336 bool *doRotate = reinterpret_cast<bool *>(arg);
1337 *doRotate = true;
1338 }
1339 return len;
1340}
1341
1342static ssize_t logrotate(
1343 log_id_t logId,
1344 char prio,
1345 const char *filename,
1346 const char *buf, size_t len,
1347 void *arg) {
1348 bool *doRotate = reinterpret_cast<bool *>(arg);
1349 if (!*doRotate) {
1350 return __android_log_pmsg_file_write(logId, prio, filename, buf, len);
1351 }
1352
1353 std::string name(filename);
1354 size_t dot = name.find_last_of(".");
1355 std::string sub = name.substr(0, dot);
1356
1357 if (!strstr(LAST_KMSG_FILE, sub.c_str()) &&
1358 !strstr(LAST_LOG_FILE, sub.c_str())) {
1359 return __android_log_pmsg_file_write(logId, prio, filename, buf, len);
1360 }
1361
1362 // filename rotation
1363 if (dot == std::string::npos) {
1364 name += ".1";
1365 } else {
1366 std::string number = name.substr(dot + 1);
1367 if (!isdigit(number.data()[0])) {
1368 name += ".1";
1369 } else {
1370 unsigned long long i = std::stoull(number);
1371 name = sub + "." + std::to_string(i + 1);
1372 }
1373 }
1374
1375 return __android_log_pmsg_file_write(logId, prio, name.c_str(), buf, len);
1376}
1377
Yabin Cui99281df2016-02-17 12:21:52 -08001378int main(int argc, char **argv) {
Mark Salyzyn13aca592016-03-09 14:58:16 -08001379 // Take last pmsg contents and rewrite it to the current pmsg session.
1380 static const char filter[] = "recovery/";
1381 // Do we need to rotate?
1382 bool doRotate = false;
1383 __android_log_pmsg_file_read(
1384 LOG_ID_SYSTEM, ANDROID_LOG_INFO, filter,
1385 logbasename, &doRotate);
1386 // Take action to refresh pmsg contents
1387 __android_log_pmsg_file_read(
1388 LOG_ID_SYSTEM, ANDROID_LOG_INFO, filter,
1389 logrotate, &doRotate);
1390
Doug Zongker9270a202012-01-09 15:16:13 -08001391 // If this binary is started with the single argument "--adbd",
1392 // instead of being the normal recovery binary, it turns into kind
1393 // of a stripped-down version of adbd that only supports the
1394 // 'sideload' command. Note this must be a real argument, not
1395 // anything in the command file or bootloader control block; the
1396 // only way recovery should be run with this argument is when it
1397 // starts a copy of itself from the apply_from_adb() function.
1398 if (argc == 2 && strcmp(argv[1], "--adbd") == 0) {
Elliott Hughes9f4fdb32015-11-20 13:03:24 -08001399 adb_server_main(0, DEFAULT_ADB_PORT, -1);
Doug Zongker9270a202012-01-09 15:16:13 -08001400 return 0;
1401 }
1402
Tao Bao04ca4262015-09-10 15:32:24 -07001403 time_t start = time(NULL);
1404
1405 // redirect_stdio should be called only in non-sideload mode. Otherwise
1406 // we may have two logger instances with different timestamps.
1407 redirect_stdio(TEMPORARY_LOG_FILE);
1408
Doug Zongker19a8e242014-01-21 09:25:41 -08001409 printf("Starting recovery (pid %d) on %s", getpid(), ctime(&start));
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001410
Doug Zongkerd4208f92010-09-20 12:16:13 -07001411 load_volume_table();
Tao Baoae6408d2016-02-25 12:29:40 -08001412 has_cache = volume_for_path(CACHE_ROOT) != nullptr;
1413
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001414 get_args(&argc, &argv);
1415
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001416 const char *send_intent = NULL;
1417 const char *update_package = NULL;
Tao Baoe39a9bc2015-03-31 12:19:05 -07001418 bool should_wipe_data = false;
Tao Baoc679f932015-03-30 09:43:49 -07001419 bool should_wipe_cache = false;
Tao Baob0838182016-06-02 11:16:50 -07001420 bool should_brick = false;
Tao Bao145d8612015-03-25 15:51:15 -07001421 bool show_text = false;
Tao Baoc679f932015-03-30 09:43:49 -07001422 bool sideload = false;
1423 bool sideload_auto_reboot = false;
Doug Zongkere5d5ac72012-04-12 11:01:22 -07001424 bool just_exit = false;
Doug Zongkerb1d12632014-03-18 10:32:12 -07001425 bool shutdown_after = false;
Tianjie Xufa12b972016-02-05 18:25:58 -08001426 int retry_count = 0;
Tianjie Xu35926c42016-04-28 18:06:26 -07001427 bool security_update = false;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001428
1429 int arg;
Tao Baob0838182016-06-02 11:16:50 -07001430 int option_index;
1431 while ((arg = getopt_long(argc, argv, "", OPTIONS, &option_index)) != -1) {
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001432 switch (arg) {
Tao Baoc679f932015-03-30 09:43:49 -07001433 case 'i': send_intent = optarg; break;
Tianjie Xufa12b972016-02-05 18:25:58 -08001434 case 'n': android::base::ParseInt(optarg, &retry_count, 0); break;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001435 case 'u': update_package = optarg; break;
Tao Baoe39a9bc2015-03-31 12:19:05 -07001436 case 'w': should_wipe_data = true; break;
Tao Baoc679f932015-03-30 09:43:49 -07001437 case 'c': should_wipe_cache = true; break;
Tao Bao145d8612015-03-25 15:51:15 -07001438 case 't': show_text = true; break;
Tao Baoc679f932015-03-30 09:43:49 -07001439 case 's': sideload = true; break;
1440 case 'a': sideload = true; sideload_auto_reboot = true; break;
Doug Zongkere5d5ac72012-04-12 11:01:22 -07001441 case 'x': just_exit = true; break;
Doug Zongker02ec6b82012-08-22 17:26:40 -07001442 case 'l': locale = optarg; break;
Doug Zongkerc87bab12013-11-25 13:53:25 -08001443 case 'g': {
1444 if (stage == NULL || *stage == '\0') {
1445 char buffer[20] = "1/";
1446 strncat(buffer, optarg, sizeof(buffer)-3);
1447 stage = strdup(buffer);
1448 }
1449 break;
1450 }
Doug Zongkerb1d12632014-03-18 10:32:12 -07001451 case 'p': shutdown_after = true; break;
Jeff Sharkeya6e13ae2014-09-24 11:46:17 -07001452 case 'r': reason = optarg; break;
Tianjie Xu35926c42016-04-28 18:06:26 -07001453 case 'e': security_update = true; break;
Tao Baob0838182016-06-02 11:16:50 -07001454 case 0: {
1455 if (strcmp(OPTIONS[option_index].name, "brick") == 0) {
1456 should_brick = true;
1457 break;
1458 }
1459 break;
1460 }
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001461 case '?':
1462 LOGE("Invalid command argument\n");
1463 continue;
1464 }
1465 }
1466
Tao Baoae6408d2016-02-25 12:29:40 -08001467 if (locale == nullptr && has_cache) {
Doug Zongker02ec6b82012-08-22 17:26:40 -07001468 load_locale_from_cache();
1469 }
1470 printf("locale is [%s]\n", locale);
Doug Zongker0d32f252014-02-13 15:07:56 -08001471 printf("stage is [%s]\n", stage);
Jeff Sharkeya6e13ae2014-09-24 11:46:17 -07001472 printf("reason is [%s]\n", reason);
Doug Zongker02ec6b82012-08-22 17:26:40 -07001473
1474 Device* device = make_device();
1475 ui = device->GetUI();
Doug Zongker7c3ae452013-05-14 11:03:02 -07001476 gCurrentUI = ui;
Doug Zongker02ec6b82012-08-22 17:26:40 -07001477
Doug Zongker5fa8c232012-09-18 12:37:02 -07001478 ui->SetLocale(locale);
Doug Zongker02ec6b82012-08-22 17:26:40 -07001479 ui->Init();
Tianjie Xu35926c42016-04-28 18:06:26 -07001480 // Set background string to "installing security update" for security update,
1481 // otherwise set it to "installing system update".
1482 ui->SetSystemUpdateText(security_update);
Doug Zongkerc87bab12013-11-25 13:53:25 -08001483
1484 int st_cur, st_max;
1485 if (stage != NULL && sscanf(stage, "%d/%d", &st_cur, &st_max) == 2) {
1486 ui->SetStage(st_cur, st_max);
1487 }
1488
Doug Zongker02ec6b82012-08-22 17:26:40 -07001489 ui->SetBackground(RecoveryUI::NONE);
1490 if (show_text) ui->ShowText(true);
1491
Stephen Smalley779701d2012-02-09 14:13:23 -05001492 struct selinux_opt seopts[] = {
1493 { SELABEL_OPT_PATH, "/file_contexts" }
1494 };
1495
1496 sehandle = selabel_open(SELABEL_CTX_FILE, seopts, 1);
1497
1498 if (!sehandle) {
Doug Zongkerfafc85b2013-07-09 12:29:45 -07001499 ui->Print("Warning: No file_contexts\n");
Stephen Smalley779701d2012-02-09 14:13:23 -05001500 }
Stephen Smalley779701d2012-02-09 14:13:23 -05001501
Doug Zongkerdaefc1d2011-10-31 09:34:15 -07001502 device->StartRecovery();
Doug Zongkerefa1bab2010-02-01 15:59:12 -08001503
Doug Zongker56c51052010-07-01 09:18:44 -07001504 printf("Command:");
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001505 for (arg = 0; arg < argc; arg++) {
Doug Zongker56c51052010-07-01 09:18:44 -07001506 printf(" \"%s\"", argv[arg]);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001507 }
Doug Zongker9b125b02010-09-22 12:01:37 -07001508 printf("\n");
1509
1510 if (update_package) {
1511 // For backwards compatibility on the cache partition only, if
1512 // we're given an old 'root' path "CACHE:foo", change it to
1513 // "/cache/foo".
1514 if (strncmp(update_package, "CACHE:", 6) == 0) {
1515 int len = strlen(update_package) + 10;
Doug Zongker28ce47c2011-10-28 10:33:05 -07001516 char* modified_path = (char*)malloc(len);
Jeremy Compostella1b7d9b72015-07-29 17:17:03 +02001517 if (modified_path) {
1518 strlcpy(modified_path, "/cache/", len);
1519 strlcat(modified_path, update_package+6, len);
1520 printf("(replacing path \"%s\" with \"%s\")\n",
1521 update_package, modified_path);
1522 update_package = modified_path;
1523 }
1524 else
1525 printf("modified_path allocation failed\n");
Doug Zongker9b125b02010-09-22 12:01:37 -07001526 }
1527 }
1528 printf("\n");
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001529
1530 property_list(print_property, NULL);
Doug Zongker56c51052010-07-01 09:18:44 -07001531 printf("\n");
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001532
Elliott Hughesbb78d622015-04-09 20:51:08 -07001533 ui->Print("Supported API: %d\n", RECOVERY_API_VERSION);
1534
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001535 int status = INSTALL_SUCCESS;
1536
Doug Zongker540d57f2011-01-18 13:36:58 -08001537 if (update_package != NULL) {
Tao Bao56870012016-04-29 15:37:05 -07001538 // It's not entirely true that we will modify the flash. But we want
1539 // to log the update attempt since update_package is non-NULL.
1540 modified_flash = true;
1541
Yabin Cui99281df2016-02-17 12:21:52 -08001542 if (!is_battery_ok()) {
1543 ui->Print("battery capacity is not enough for installing package, needed is %d%%\n",
1544 BATTERY_OK_PERCENTAGE);
Tianjie Xu16255832016-04-30 11:49:59 -07001545 // Log the error code to last_install when installation skips due to
1546 // low battery.
1547 FILE* install_log = fopen_path(LAST_INSTALL_FILE, "w");
1548 if (install_log != nullptr) {
1549 fprintf(install_log, "%s\n", update_package);
1550 fprintf(install_log, "0\n");
1551 fprintf(install_log, "error: %d\n", kLowBattery);
1552 fclose(install_log);
1553 } else {
1554 LOGE("failed to open last_install: %s\n", strerror(errno));
1555 }
Yabin Cui99281df2016-02-17 12:21:52 -08001556 status = INSTALL_SKIPPED;
1557 } else {
1558 status = install_package(update_package, &should_wipe_cache,
Tianjie Xu16255832016-04-30 11:49:59 -07001559 TEMPORARY_INSTALL_FILE, true, retry_count);
Yabin Cui99281df2016-02-17 12:21:52 -08001560 if (status == INSTALL_SUCCESS && should_wipe_cache) {
1561 wipe_cache(false, device);
1562 }
1563 if (status != INSTALL_SUCCESS) {
1564 ui->Print("Installation aborted.\n");
Tianjie Xufa12b972016-02-05 18:25:58 -08001565 // When I/O error happens, reboot and retry installation EIO_RETRY_COUNT
1566 // times before we abandon this OTA update.
1567 if (status == INSTALL_RETRY && retry_count < EIO_RETRY_COUNT) {
1568 copy_logs();
1569 set_retry_bootloader_message(retry_count, argc, argv);
1570 // Print retry count on screen.
1571 ui->Print("Retry attempt %d\n", retry_count);
Doug Zongker7c3ae452013-05-14 11:03:02 -07001572
Tianjie Xufa12b972016-02-05 18:25:58 -08001573 // Reboot and retry the update
1574 int ret = property_set(ANDROID_RB_PROPERTY, "reboot,recovery");
1575 if (ret < 0) {
1576 ui->Print("Reboot failed\n");
1577 } else {
1578 while (true) {
1579 pause();
1580 }
1581 }
1582 }
Yabin Cui99281df2016-02-17 12:21:52 -08001583 // If this is an eng or userdebug build, then automatically
1584 // turn the text display on if the script fails so the error
1585 // message is visible.
1586 if (is_ro_debuggable()) {
1587 ui->ShowText(true);
1588 }
Doug Zongker7c3ae452013-05-14 11:03:02 -07001589 }
1590 }
Tao Baoe39a9bc2015-03-31 12:19:05 -07001591 } else if (should_wipe_data) {
1592 if (!wipe_data(false, device)) {
1593 status = INSTALL_ERROR;
1594 }
Tao Baoc679f932015-03-30 09:43:49 -07001595 } else if (should_wipe_cache) {
Tao Baoe39a9bc2015-03-31 12:19:05 -07001596 if (!wipe_cache(false, device)) {
1597 status = INSTALL_ERROR;
1598 }
Tao Baob0838182016-06-02 11:16:50 -07001599 } else if (should_brick) {
1600 if (!brick_device()) {
1601 status = INSTALL_ERROR;
1602 }
Tao Baoc679f932015-03-30 09:43:49 -07001603 } else if (sideload) {
1604 // 'adb reboot sideload' acts the same as user presses key combinations
1605 // to enter the sideload mode. When 'sideload-auto-reboot' is used, text
1606 // display will NOT be turned on by default. And it will reboot after
1607 // sideload finishes even if there are errors. Unless one turns on the
1608 // text display during the installation. This is to enable automated
1609 // testing.
1610 if (!sideload_auto_reboot) {
1611 ui->ShowText(true);
1612 }
1613 status = apply_from_adb(ui, &should_wipe_cache, TEMPORARY_INSTALL_FILE);
1614 if (status == INSTALL_SUCCESS && should_wipe_cache) {
Tao Baoe39a9bc2015-03-31 12:19:05 -07001615 if (!wipe_cache(false, device)) {
1616 status = INSTALL_ERROR;
1617 }
Tao Baoc679f932015-03-30 09:43:49 -07001618 }
1619 ui->Print("\nInstall from ADB complete (status: %d).\n", status);
1620 if (sideload_auto_reboot) {
1621 ui->Print("Rebooting automatically.\n");
1622 }
Doug Zongkere5d5ac72012-04-12 11:01:22 -07001623 } else if (!just_exit) {
Doug Zongker02ec6b82012-08-22 17:26:40 -07001624 status = INSTALL_NONE; // No command specified
1625 ui->SetBackground(RecoveryUI::NO_COMMAND);
Tao Bao785d22c2015-05-04 09:34:29 -07001626
1627 // http://b/17489952
1628 // If this is an eng or userdebug build, automatically turn on the
1629 // text display if no command is specified.
1630 if (is_ro_debuggable()) {
1631 ui->ShowText(true);
1632 }
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001633 }
1634
Tao Baoc679f932015-03-30 09:43:49 -07001635 if (!sideload_auto_reboot && (status == INSTALL_ERROR || status == INSTALL_CORRUPT)) {
Doug Zongkerf24fd7e2013-07-02 11:43:25 -07001636 copy_logs();
Doug Zongker02ec6b82012-08-22 17:26:40 -07001637 ui->SetBackground(RecoveryUI::ERROR);
1638 }
Tao Baoc679f932015-03-30 09:43:49 -07001639
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001640 Device::BuiltinAction after = shutdown_after ? Device::SHUTDOWN : Device::REBOOT;
Yabin Cui99281df2016-02-17 12:21:52 -08001641 if ((status != INSTALL_SUCCESS && status != INSTALL_SKIPPED && !sideload_auto_reboot) ||
1642 ui->IsTextVisible()) {
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001643 Device::BuiltinAction temp = prompt_and_wait(device, status);
Tao Baoc679f932015-03-30 09:43:49 -07001644 if (temp != Device::NO_ACTION) {
1645 after = temp;
1646 }
Doug Zongker8674a722010-09-15 11:08:23 -07001647 }
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001648
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001649 // Save logs and clean up before rebooting or shutting down.
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001650 finish_recovery(send_intent);
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001651
1652 switch (after) {
1653 case Device::SHUTDOWN:
1654 ui->Print("Shutting down...\n");
1655 property_set(ANDROID_RB_PROPERTY, "shutdown,");
1656 break;
1657
1658 case Device::REBOOT_BOOTLOADER:
1659 ui->Print("Rebooting to bootloader...\n");
1660 property_set(ANDROID_RB_PROPERTY, "reboot,bootloader");
1661 break;
1662
1663 default:
1664 ui->Print("Rebooting...\n");
1665 property_set(ANDROID_RB_PROPERTY, "reboot,");
1666 break;
Doug Zongkerb1d12632014-03-18 10:32:12 -07001667 }
Tao Bao75238632015-05-27 14:46:17 -07001668 while (true) {
1669 pause();
1670 }
1671 // Should be unreachable.
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001672 return EXIT_SUCCESS;
1673}