blob: 6df9b6fae67513abb1985267b49499496de029dc [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"
Yabin Cui6faf0262016-06-09 14:09:39 -070064#include "minzip/Zip.h"
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080065#include "roots.h"
Doug Zongker28ce47c2011-10-28 10:33:05 -070066#include "ui.h"
Tao Baob0838182016-06-02 11:16:50 -070067#include "unique_fd.h"
Doug Zongker211aebc2011-10-28 15:13:10 -070068#include "screen_ui.h"
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080069
Stephen Smalley779701d2012-02-09 14:13:23 -050070struct selabel_handle *sehandle;
71
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080072static const struct option OPTIONS[] = {
Tao Baoc679f932015-03-30 09:43:49 -070073 { "send_intent", required_argument, NULL, 'i' },
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080074 { "update_package", required_argument, NULL, 'u' },
Tianjie Xufa12b972016-02-05 18:25:58 -080075 { "retry_count", required_argument, NULL, 'n' },
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080076 { "wipe_data", no_argument, NULL, 'w' },
77 { "wipe_cache", no_argument, NULL, 'c' },
Doug Zongker4bc98062010-09-03 11:00:13 -070078 { "show_text", no_argument, NULL, 't' },
Tao Baoc679f932015-03-30 09:43:49 -070079 { "sideload", no_argument, NULL, 's' },
80 { "sideload_auto_reboot", no_argument, NULL, 'a' },
Doug Zongkere5d5ac72012-04-12 11:01:22 -070081 { "just_exit", no_argument, NULL, 'x' },
Doug Zongker02ec6b82012-08-22 17:26:40 -070082 { "locale", required_argument, NULL, 'l' },
Doug Zongkerc87bab12013-11-25 13:53:25 -080083 { "stages", required_argument, NULL, 'g' },
Doug Zongkerb1d12632014-03-18 10:32:12 -070084 { "shutdown_after", no_argument, NULL, 'p' },
Jeff Sharkeya6e13ae2014-09-24 11:46:17 -070085 { "reason", required_argument, NULL, 'r' },
Tianjie Xu35926c42016-04-28 18:06:26 -070086 { "security", no_argument, NULL, 'e'},
Tao Bao108ab212016-06-10 10:13:32 -070087 { "wipe_ab", no_argument, NULL, 0 },
Yabin Cui6faf0262016-06-09 14:09:39 -070088 { "wipe_package_size", required_argument, NULL, 0 },
Doug Zongker988500b2009-10-06 14:41:38 -070089 { NULL, 0, NULL, 0 },
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080090};
91
Doug Zongker6d0d7ac2013-07-09 13:34:55 -070092static const char *CACHE_LOG_DIR = "/cache/recovery";
Doug Zongkerd4208f92010-09-20 12:16:13 -070093static const char *COMMAND_FILE = "/cache/recovery/command";
94static const char *INTENT_FILE = "/cache/recovery/intent";
95static const char *LOG_FILE = "/cache/recovery/log";
Doug Zongkerd0181b82011-10-19 10:51:12 -070096static const char *LAST_INSTALL_FILE = "/cache/recovery/last_install";
Doug Zongker8b240cc2012-08-29 15:19:29 -070097static const char *LOCALE_FILE = "/cache/recovery/last_locale";
Paul Lawrence661f8a62016-02-25 12:42:19 -080098static const char *CONVERT_FBE_DIR = "/tmp/convert_fbe";
99static const char *CONVERT_FBE_FILE = "/tmp/convert_fbe/convert_fbe";
Michael Ward9d2629c2011-06-23 22:14:24 -0700100static const char *CACHE_ROOT = "/cache";
Paul Lawrenced0db3372015-11-05 13:38:40 -0800101static const char *DATA_ROOT = "/data";
Doug Zongkerd4208f92010-09-20 12:16:13 -0700102static const char *SDCARD_ROOT = "/sdcard";
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800103static const char *TEMPORARY_LOG_FILE = "/tmp/recovery.log";
Doug Zongkerd0181b82011-10-19 10:51:12 -0700104static const char *TEMPORARY_INSTALL_FILE = "/tmp/last_install";
Tao Baof0124322015-04-11 02:04:11 +0000105static const char *LAST_KMSG_FILE = "/cache/recovery/last_kmsg";
Tao Baobef39712015-05-04 18:50:27 -0700106static const char *LAST_LOG_FILE = "/cache/recovery/last_log";
107static const int KEEP_LOG_COUNT = 10;
Tianjie Xufa12b972016-02-05 18:25:58 -0800108static const int EIO_RETRY_COUNT = 2;
Yabin Cui99281df2016-02-17 12:21:52 -0800109static const int BATTERY_READ_TIMEOUT_IN_SEC = 10;
110// GmsCore enters recovery mode to install package when having enough battery
111// percentage. Normally, the threshold is 40% without charger and 20% with charger.
112// So we should check battery with a slightly lower limitation.
113static const int BATTERY_OK_PERCENTAGE = 20;
114static const int BATTERY_WITH_CHARGER_OK_PERCENTAGE = 15;
Tao Bao108ab212016-06-10 10:13:32 -0700115constexpr const char* RECOVERY_WIPE = "/etc/recovery.wipe";
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700116
Doug Zongker211aebc2011-10-28 15:13:10 -0700117RecoveryUI* ui = NULL;
Elliott Hughes498cda62016-04-14 16:49:04 -0700118static const char* locale = "en_US";
Doug Zongkerc87bab12013-11-25 13:53:25 -0800119char* stage = NULL;
Jeff Sharkeya6e13ae2014-09-24 11:46:17 -0700120char* reason = NULL;
Tao Bao682c34b2015-04-07 17:16:35 -0700121bool modified_flash = false;
Tao Baoae6408d2016-02-25 12:29:40 -0800122static bool has_cache = false;
Doug Zongker211aebc2011-10-28 15:13:10 -0700123
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800124/*
125 * The recovery tool communicates with the main system through /cache files.
126 * /cache/recovery/command - INPUT - command line for tool, one arg per line
127 * /cache/recovery/log - OUTPUT - combined log file from recovery run(s)
128 * /cache/recovery/intent - OUTPUT - intent that was passed in
129 *
130 * The arguments which may be supplied in the recovery.command file:
131 * --send_intent=anystring - write the text out to recovery.intent
Doug Zongkerd4208f92010-09-20 12:16:13 -0700132 * --update_package=path - verify install an OTA package file
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800133 * --wipe_data - erase user data (and cache), then reboot
134 * --wipe_cache - wipe cache (but not user data), then reboot
Oscar Montemayor05231562009-11-30 08:40:57 -0800135 * --set_encrypted_filesystem=on|off - enables / diasables encrypted fs
Doug Zongkere5d5ac72012-04-12 11:01:22 -0700136 * --just_exit - do nothing; exit and reboot
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800137 *
138 * After completing, we remove /cache/recovery/command and reboot.
139 * Arguments may also be supplied in the bootloader control block (BCB).
140 * These important scenarios must be safely restartable at any point:
141 *
142 * FACTORY RESET
143 * 1. user selects "factory reset"
144 * 2. main system writes "--wipe_data" to /cache/recovery/command
145 * 3. main system reboots into recovery
146 * 4. get_args() writes BCB with "boot-recovery" and "--wipe_data"
147 * -- after this, rebooting will restart the erase --
Doug Zongkerd4208f92010-09-20 12:16:13 -0700148 * 5. erase_volume() reformats /data
149 * 6. erase_volume() reformats /cache
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800150 * 7. finish_recovery() erases BCB
151 * -- after this, rebooting will restart the main system --
152 * 8. main() calls reboot() to boot main system
153 *
154 * OTA INSTALL
155 * 1. main system downloads OTA package to /cache/some-filename.zip
Doug Zongker9b125b02010-09-22 12:01:37 -0700156 * 2. main system writes "--update_package=/cache/some-filename.zip"
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800157 * 3. main system reboots into recovery
158 * 4. get_args() writes BCB with "boot-recovery" and "--update_package=..."
159 * -- after this, rebooting will attempt to reinstall the update --
160 * 5. install_package() attempts to install the update
161 * NOTE: the package install must itself be restartable from any point
162 * 6. finish_recovery() erases BCB
163 * -- after this, rebooting will (try to) restart the main system --
164 * 7. ** if install failed **
165 * 7a. prompt_and_wait() shows an error icon and waits for the user
166 * 7b; the user reboots (pulling the battery, etc) into the main system
167 * 8. main() calls maybe_install_firmware_update()
168 * ** if the update contained radio/hboot firmware **:
169 * 8a. m_i_f_u() writes BCB with "boot-recovery" and "--wipe_cache"
170 * -- after this, rebooting will reformat cache & restart main system --
171 * 8b. m_i_f_u() writes firmware image into raw cache partition
172 * 8c. m_i_f_u() writes BCB with "update-radio/hboot" and "--wipe_cache"
173 * -- after this, rebooting will attempt to reinstall firmware --
174 * 8d. bootloader tries to flash firmware
175 * 8e. bootloader writes BCB with "boot-recovery" (keeping "--wipe_cache")
176 * -- after this, rebooting will reformat cache & restart main system --
Doug Zongkerd4208f92010-09-20 12:16:13 -0700177 * 8f. erase_volume() reformats /cache
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800178 * 8g. finish_recovery() erases BCB
179 * -- after this, rebooting will (try to) restart the main system --
180 * 9. main() calls reboot() to boot main system
181 */
182
183static const int MAX_ARG_LENGTH = 4096;
184static const int MAX_ARGS = 100;
185
Doug Zongkerd4208f92010-09-20 12:16:13 -0700186// open a given path, mounting partitions as necessary
Tao Bao04ca4262015-09-10 15:32:24 -0700187FILE* fopen_path(const char *path, const char *mode) {
Doug Zongkerd4208f92010-09-20 12:16:13 -0700188 if (ensure_path_mounted(path) != 0) {
189 LOGE("Can't mount %s\n", path);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800190 return NULL;
191 }
192
193 // When writing, try to create the containing directory, if necessary.
194 // Use generous permissions, the system (init.rc) will reset them.
Stephen Smalley779701d2012-02-09 14:13:23 -0500195 if (strchr("wa", mode[0])) dirCreateHierarchy(path, 0777, NULL, 1, sehandle);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800196
197 FILE *fp = fopen(path, mode);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800198 return fp;
199}
200
Tao Bao04ca4262015-09-10 15:32:24 -0700201// close a file, log an error if the error indicator is set
202static void check_and_fclose(FILE *fp, const char *name) {
203 fflush(fp);
204 if (ferror(fp)) LOGE("Error in %s\n(%s)\n", name, strerror(errno));
205 fclose(fp);
206}
207
Elliott Hughesf14af802015-02-10 14:46:14 -0800208bool is_ro_debuggable() {
209 char value[PROPERTY_VALUE_MAX+1];
210 return (property_get("ro.debuggable", value, NULL) == 1 && value[0] == '1');
211}
212
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700213static void redirect_stdio(const char* filename) {
Tao Bao04ca4262015-09-10 15:32:24 -0700214 int pipefd[2];
215 if (pipe(pipefd) == -1) {
216 LOGE("pipe failed: %s\n", strerror(errno));
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700217
Tao Bao04ca4262015-09-10 15:32:24 -0700218 // 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 pid_t pid = fork();
227 if (pid == -1) {
228 LOGE("fork failed: %s\n", strerror(errno));
229
230 // Fall back to traditional logging mode without timestamps.
231 // If these fail, there's not really anywhere to complain...
232 freopen(filename, "a", stdout); setbuf(stdout, NULL);
233 freopen(filename, "a", stderr); setbuf(stderr, NULL);
234
235 return;
236 }
237
238 if (pid == 0) {
239 /// Close the unused write end.
240 close(pipefd[1]);
241
242 auto start = std::chrono::steady_clock::now();
243
244 // Child logger to actually write to the log file.
245 FILE* log_fp = fopen(filename, "a");
246 if (log_fp == nullptr) {
247 LOGE("fopen \"%s\" failed: %s\n", filename, strerror(errno));
248 close(pipefd[0]);
249 _exit(1);
250 }
251
252 FILE* pipe_fp = fdopen(pipefd[0], "r");
253 if (pipe_fp == nullptr) {
254 LOGE("fdopen failed: %s\n", strerror(errno));
255 check_and_fclose(log_fp, filename);
256 close(pipefd[0]);
257 _exit(1);
258 }
259
260 char* line = nullptr;
261 size_t len = 0;
262 while (getline(&line, &len, pipe_fp) != -1) {
263 auto now = std::chrono::steady_clock::now();
264 double duration = std::chrono::duration_cast<std::chrono::duration<double>>(
265 now - start).count();
266 if (line[0] == '\n') {
267 fprintf(log_fp, "[%12.6lf]\n", duration);
268 } else {
269 fprintf(log_fp, "[%12.6lf] %s", duration, line);
270 }
271 fflush(log_fp);
272 }
273
274 LOGE("getline failed: %s\n", strerror(errno));
275
276 free(line);
277 check_and_fclose(log_fp, filename);
278 close(pipefd[0]);
279 _exit(1);
280 } else {
281 // Redirect stdout/stderr to the logger process.
282 // Close the unused read end.
283 close(pipefd[0]);
284
285 setbuf(stdout, nullptr);
286 setbuf(stderr, nullptr);
287
288 if (dup2(pipefd[1], STDOUT_FILENO) == -1) {
289 LOGE("dup2 stdout failed: %s\n", strerror(errno));
290 }
291 if (dup2(pipefd[1], STDERR_FILENO) == -1) {
292 LOGE("dup2 stderr failed: %s\n", strerror(errno));
293 }
294
295 close(pipefd[1]);
296 }
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800297}
298
299// command line args come from, in decreasing precedence:
300// - the actual command line
301// - the bootloader control block (one per line, after "recovery")
302// - the contents of COMMAND_FILE (one per line)
303static void
304get_args(int *argc, char ***argv) {
305 struct bootloader_message boot;
306 memset(&boot, 0, sizeof(boot));
307 get_bootloader_message(&boot); // this may fail, leaving a zeroed structure
Doug Zongkerc87bab12013-11-25 13:53:25 -0800308 stage = strndup(boot.stage, sizeof(boot.stage));
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800309
310 if (boot.command[0] != 0 && boot.command[0] != 255) {
Mark Salyzynf3bb31c2014-03-14 09:39:48 -0700311 LOGI("Boot command: %.*s\n", (int)sizeof(boot.command), boot.command);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800312 }
313
314 if (boot.status[0] != 0 && boot.status[0] != 255) {
Mark Salyzynf3bb31c2014-03-14 09:39:48 -0700315 LOGI("Boot status: %.*s\n", (int)sizeof(boot.status), boot.status);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800316 }
317
318 // --- if arguments weren't supplied, look in the bootloader control block
319 if (*argc <= 1) {
320 boot.recovery[sizeof(boot.recovery) - 1] = '\0'; // Ensure termination
321 const char *arg = strtok(boot.recovery, "\n");
322 if (arg != NULL && !strcmp(arg, "recovery")) {
323 *argv = (char **) malloc(sizeof(char *) * MAX_ARGS);
324 (*argv)[0] = strdup(arg);
325 for (*argc = 1; *argc < MAX_ARGS; ++*argc) {
326 if ((arg = strtok(NULL, "\n")) == NULL) break;
327 (*argv)[*argc] = strdup(arg);
328 }
329 LOGI("Got arguments from boot message\n");
330 } else if (boot.recovery[0] != 0 && boot.recovery[0] != 255) {
331 LOGE("Bad boot message\n\"%.20s\"\n", boot.recovery);
332 }
333 }
334
Tao Baoae6408d2016-02-25 12:29:40 -0800335 // --- if that doesn't work, try the command file (if we have /cache).
336 if (*argc <= 1 && has_cache) {
Doug Zongkerd4208f92010-09-20 12:16:13 -0700337 FILE *fp = fopen_path(COMMAND_FILE, "r");
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800338 if (fp != NULL) {
Jin Feng93ffa752013-06-04 17:46:24 +0800339 char *token;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800340 char *argv0 = (*argv)[0];
341 *argv = (char **) malloc(sizeof(char *) * MAX_ARGS);
342 (*argv)[0] = argv0; // use the same program name
343
344 char buf[MAX_ARG_LENGTH];
345 for (*argc = 1; *argc < MAX_ARGS; ++*argc) {
346 if (!fgets(buf, sizeof(buf), fp)) break;
Jin Feng93ffa752013-06-04 17:46:24 +0800347 token = strtok(buf, "\r\n");
348 if (token != NULL) {
349 (*argv)[*argc] = strdup(token); // Strip newline.
350 } else {
351 --*argc;
352 }
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800353 }
354
355 check_and_fclose(fp, COMMAND_FILE);
356 LOGI("Got arguments from %s\n", COMMAND_FILE);
357 }
358 }
359
360 // --> write the arguments we have back into the bootloader control block
361 // always boot into recovery after this (until finish_recovery() is called)
362 strlcpy(boot.command, "boot-recovery", sizeof(boot.command));
363 strlcpy(boot.recovery, "recovery\n", sizeof(boot.recovery));
364 int i;
365 for (i = 1; i < *argc; ++i) {
366 strlcat(boot.recovery, (*argv)[i], sizeof(boot.recovery));
367 strlcat(boot.recovery, "\n", sizeof(boot.recovery));
368 }
369 set_bootloader_message(&boot);
370}
371
Doug Zongker34c98df2009-08-18 12:05:45 -0700372static void
Oscar Montemayor05231562009-11-30 08:40:57 -0800373set_sdcard_update_bootloader_message() {
Doug Zongker34c98df2009-08-18 12:05:45 -0700374 struct bootloader_message boot;
375 memset(&boot, 0, sizeof(boot));
376 strlcpy(boot.command, "boot-recovery", sizeof(boot.command));
377 strlcpy(boot.recovery, "recovery\n", sizeof(boot.recovery));
378 set_bootloader_message(&boot);
379}
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800380
Tao Baobef39712015-05-04 18:50:27 -0700381// Read from kernel log into buffer and write out to file.
382static void save_kernel_log(const char* destination) {
383 int klog_buf_len = klogctl(KLOG_SIZE_BUFFER, 0, 0);
Patrick Tjincd055ee2014-12-09 11:26:40 -0800384 if (klog_buf_len <= 0) {
Tao Baobef39712015-05-04 18:50:27 -0700385 LOGE("Error getting klog size: %s\n", strerror(errno));
Patrick Tjincd055ee2014-12-09 11:26:40 -0800386 return;
387 }
388
Tao Baobef39712015-05-04 18:50:27 -0700389 std::string buffer(klog_buf_len, 0);
390 int n = klogctl(KLOG_READ_ALL, &buffer[0], klog_buf_len);
391 if (n == -1) {
392 LOGE("Error in reading klog: %s\n", strerror(errno));
Patrick Tjincd055ee2014-12-09 11:26:40 -0800393 return;
394 }
Tao Baobef39712015-05-04 18:50:27 -0700395 buffer.resize(n);
396 android::base::WriteStringToFile(buffer, destination);
Patrick Tjincd055ee2014-12-09 11:26:40 -0800397}
398
Mark Salyzyn13aca592016-03-09 14:58:16 -0800399// write content to the current pmsg session.
400static ssize_t __pmsg_write(const char *filename, const char *buf, size_t len) {
401 return __android_log_pmsg_file_write(LOG_ID_SYSTEM, ANDROID_LOG_INFO,
402 filename, buf, len);
403}
404
405static void copy_log_file_to_pmsg(const char* source, const char* destination) {
406 std::string content;
407 android::base::ReadFileToString(source, &content);
408 __pmsg_write(destination, content.c_str(), content.length());
409}
410
Tao Baof0124322015-04-11 02:04:11 +0000411// How much of the temp log we have copied to the copy in cache.
412static long tmplog_offset = 0;
413
Tao Baobef39712015-05-04 18:50:27 -0700414static void copy_log_file(const char* source, const char* destination, bool append) {
415 FILE* dest_fp = fopen_path(destination, append ? "a" : "w");
416 if (dest_fp == nullptr) {
Doug Zongker2c3539e2010-09-29 13:21:30 -0700417 LOGE("Can't open %s\n", destination);
418 } else {
Tao Baobef39712015-05-04 18:50:27 -0700419 FILE* source_fp = fopen(source, "r");
420 if (source_fp != nullptr) {
Tao Baof0124322015-04-11 02:04:11 +0000421 if (append) {
Tao Baobef39712015-05-04 18:50:27 -0700422 fseek(source_fp, tmplog_offset, SEEK_SET); // Since last write
Doug Zongker2c3539e2010-09-29 13:21:30 -0700423 }
424 char buf[4096];
Tao Baobef39712015-05-04 18:50:27 -0700425 size_t bytes;
426 while ((bytes = fread(buf, 1, sizeof(buf), source_fp)) != 0) {
427 fwrite(buf, 1, bytes, dest_fp);
Doug Zongker2c3539e2010-09-29 13:21:30 -0700428 }
Tao Baobef39712015-05-04 18:50:27 -0700429 if (append) {
430 tmplog_offset = ftell(source_fp);
431 }
432 check_and_fclose(source_fp, source);
Doug Zongker2c3539e2010-09-29 13:21:30 -0700433 }
Tao Baobef39712015-05-04 18:50:27 -0700434 check_and_fclose(dest_fp, destination);
Doug Zongker2c3539e2010-09-29 13:21:30 -0700435 }
436}
437
Tao Baobef39712015-05-04 18:50:27 -0700438// Rename last_log -> last_log.1 -> last_log.2 -> ... -> last_log.$max.
439// Similarly rename last_kmsg -> last_kmsg.1 -> ... -> last_kmsg.$max.
440// Overwrite any existing last_log.$max and last_kmsg.$max.
441static void rotate_logs(int max) {
Tao Bao682c34b2015-04-07 17:16:35 -0700442 // Logs should only be rotated once.
443 static bool rotated = false;
444 if (rotated) {
445 return;
446 }
447 rotated = true;
448 ensure_path_mounted(LAST_LOG_FILE);
Tao Baobef39712015-05-04 18:50:27 -0700449 ensure_path_mounted(LAST_KMSG_FILE);
Tao Bao682c34b2015-04-07 17:16:35 -0700450
Tao Bao682c34b2015-04-07 17:16:35 -0700451 for (int i = max-1; i >= 0; --i) {
Tao Bao80e46e02015-06-03 10:49:29 -0700452 std::string old_log = android::base::StringPrintf("%s", LAST_LOG_FILE);
453 if (i > 0) {
454 old_log += "." + std::to_string(i);
455 }
Tao Baobef39712015-05-04 18:50:27 -0700456 std::string new_log = android::base::StringPrintf("%s.%d", LAST_LOG_FILE, i+1);
457 // Ignore errors if old_log doesn't exist.
458 rename(old_log.c_str(), new_log.c_str());
459
Tao Bao80e46e02015-06-03 10:49:29 -0700460 std::string old_kmsg = android::base::StringPrintf("%s", LAST_KMSG_FILE);
461 if (i > 0) {
462 old_kmsg += "." + std::to_string(i);
463 }
Tao Baobef39712015-05-04 18:50:27 -0700464 std::string new_kmsg = android::base::StringPrintf("%s.%d", LAST_KMSG_FILE, i+1);
465 rename(old_kmsg.c_str(), new_kmsg.c_str());
Doug Zongkerda1ebae2013-05-16 11:23:48 -0700466 }
467}
Doug Zongker2c3539e2010-09-29 13:21:30 -0700468
Tao Bao682c34b2015-04-07 17:16:35 -0700469static void copy_logs() {
470 // We only rotate and record the log of the current session if there are
471 // actual attempts to modify the flash, such as wipes, installs from BCB
472 // or menu selections. This is to avoid unnecessary rotation (and
473 // possible deletion) of log files, if it does not do anything loggable.
474 if (!modified_flash) {
475 return;
476 }
477
Mark Salyzyn13aca592016-03-09 14:58:16 -0800478 // Always write to pmsg, this allows the OTA logs to be caught in logcat -L
479 copy_log_file_to_pmsg(TEMPORARY_LOG_FILE, LAST_LOG_FILE);
480 copy_log_file_to_pmsg(TEMPORARY_INSTALL_FILE, LAST_INSTALL_FILE);
481
482 // We can do nothing for now if there's no /cache partition.
483 if (!has_cache) {
484 return;
485 }
486
Tao Baobef39712015-05-04 18:50:27 -0700487 rotate_logs(KEEP_LOG_COUNT);
Tao Bao682c34b2015-04-07 17:16:35 -0700488
Doug Zongkerf24fd7e2013-07-02 11:43:25 -0700489 // Copy logs to cache so the system can find out what happened.
Tao Baof0124322015-04-11 02:04:11 +0000490 copy_log_file(TEMPORARY_LOG_FILE, LOG_FILE, true);
491 copy_log_file(TEMPORARY_LOG_FILE, LAST_LOG_FILE, false);
492 copy_log_file(TEMPORARY_INSTALL_FILE, LAST_INSTALL_FILE, false);
493 save_kernel_log(LAST_KMSG_FILE);
Doug Zongkerf24fd7e2013-07-02 11:43:25 -0700494 chmod(LOG_FILE, 0600);
495 chown(LOG_FILE, 1000, 1000); // system user
Tao Baof0124322015-04-11 02:04:11 +0000496 chmod(LAST_KMSG_FILE, 0600);
497 chown(LAST_KMSG_FILE, 1000, 1000); // system user
Doug Zongkerf24fd7e2013-07-02 11:43:25 -0700498 chmod(LAST_LOG_FILE, 0640);
499 chmod(LAST_INSTALL_FILE, 0644);
500 sync();
501}
502
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800503// clear the recovery command and prepare to boot a (hopefully working) system,
504// copy our log file to cache as well (for the system to read), and
505// record any intent we were asked to communicate back to the system.
506// this function is idempotent: call it as many times as you like.
507static void
Oscar Montemayor05231562009-11-30 08:40:57 -0800508finish_recovery(const char *send_intent) {
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800509 // By this point, we're ready to return to the main system...
Tao Baoae6408d2016-02-25 12:29:40 -0800510 if (send_intent != NULL && has_cache) {
Doug Zongkerd4208f92010-09-20 12:16:13 -0700511 FILE *fp = fopen_path(INTENT_FILE, "w");
Jay Freeman (saurik)619ec2f2008-11-17 01:56:05 +0000512 if (fp == NULL) {
513 LOGE("Can't open %s\n", INTENT_FILE);
514 } else {
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800515 fputs(send_intent, fp);
516 check_and_fclose(fp, INTENT_FILE);
517 }
518 }
519
Doug Zongker4f33e552012-08-23 13:16:12 -0700520 // Save the locale to cache, so if recovery is next started up
521 // without a --locale argument (eg, directly from the bootloader)
522 // it will use the last-known locale.
Mark Salyzyn13aca592016-03-09 14:58:16 -0800523 if (locale != NULL) {
524 size_t len = strlen(locale);
525 __pmsg_write(LOCALE_FILE, locale, len);
526 if (has_cache) {
527 LOGI("Saving locale \"%s\"\n", locale);
528 FILE* fp = fopen_path(LOCALE_FILE, "w");
529 fwrite(locale, 1, len, fp);
530 fflush(fp);
531 fsync(fileno(fp));
532 check_and_fclose(fp, LOCALE_FILE);
533 }
Doug Zongker4f33e552012-08-23 13:16:12 -0700534 }
535
Doug Zongkerf24fd7e2013-07-02 11:43:25 -0700536 copy_logs();
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800537
Doug Zongkere5d5ac72012-04-12 11:01:22 -0700538 // Reset to normal system boot so recovery won't cycle indefinitely.
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800539 struct bootloader_message boot;
540 memset(&boot, 0, sizeof(boot));
541 set_bootloader_message(&boot);
542
543 // Remove the command file, so recovery won't repeat indefinitely.
Tao Baoae6408d2016-02-25 12:29:40 -0800544 if (has_cache) {
545 if (ensure_path_mounted(COMMAND_FILE) != 0 || (unlink(COMMAND_FILE) && errno != ENOENT)) {
546 LOGW("Can't unlink %s\n", COMMAND_FILE);
547 }
548 ensure_path_unmounted(CACHE_ROOT);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800549 }
550
551 sync(); // For good measure.
552}
553
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700554typedef struct _saved_log_file {
555 char* name;
556 struct stat st;
557 unsigned char* data;
558 struct _saved_log_file* next;
559} saved_log_file;
560
Elliott Hughes945548e2015-06-05 17:59:56 -0700561static bool erase_volume(const char* volume) {
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700562 bool is_cache = (strcmp(volume, CACHE_ROOT) == 0);
Paul Lawrenced0db3372015-11-05 13:38:40 -0800563 bool is_data = (strcmp(volume, DATA_ROOT) == 0);
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700564
Doug Zongker02ec6b82012-08-22 17:26:40 -0700565 ui->SetBackground(RecoveryUI::ERASING);
Doug Zongker211aebc2011-10-28 15:13:10 -0700566 ui->SetProgressType(RecoveryUI::INDETERMINATE);
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700567
568 saved_log_file* head = NULL;
569
570 if (is_cache) {
Tao Baobef39712015-05-04 18:50:27 -0700571 // If we're reformatting /cache, we load any past logs
572 // (i.e. "/cache/recovery/last_*") and the current log
573 // ("/cache/recovery/log") into memory, so we can restore them after
574 // the reformat.
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700575
576 ensure_path_mounted(volume);
577
578 DIR* d;
579 struct dirent* de;
580 d = opendir(CACHE_LOG_DIR);
581 if (d) {
582 char path[PATH_MAX];
583 strcpy(path, CACHE_LOG_DIR);
584 strcat(path, "/");
585 int path_len = strlen(path);
586 while ((de = readdir(d)) != NULL) {
Tao Baobef39712015-05-04 18:50:27 -0700587 if (strncmp(de->d_name, "last_", 5) == 0 || strcmp(de->d_name, "log") == 0) {
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700588 saved_log_file* p = (saved_log_file*) malloc(sizeof(saved_log_file));
589 strcpy(path+path_len, de->d_name);
590 p->name = strdup(path);
591 if (stat(path, &(p->st)) == 0) {
592 // truncate files to 512kb
593 if (p->st.st_size > (1 << 19)) {
594 p->st.st_size = 1 << 19;
595 }
596 p->data = (unsigned char*) malloc(p->st.st_size);
597 FILE* f = fopen(path, "rb");
598 fread(p->data, 1, p->st.st_size, f);
599 fclose(f);
600 p->next = head;
601 head = p;
602 } else {
603 free(p);
604 }
605 }
606 }
607 closedir(d);
608 } else {
609 if (errno != ENOENT) {
610 printf("opendir failed: %s\n", strerror(errno));
611 }
612 }
613 }
614
Doug Zongker211aebc2011-10-28 15:13:10 -0700615 ui->Print("Formatting %s...\n", volume);
Doug Zongker2c3539e2010-09-29 13:21:30 -0700616
Doug Zongkerd0181b82011-10-19 10:51:12 -0700617 ensure_path_unmounted(volume);
Paul Lawrenced0db3372015-11-05 13:38:40 -0800618
619 int result;
620
621 if (is_data && reason && strcmp(reason, "convert_fbe") == 0) {
622 // Create convert_fbe breadcrumb file to signal to init
623 // to convert to file based encryption, not full disk encryption
Paul Lawrence661f8a62016-02-25 12:42:19 -0800624 if (mkdir(CONVERT_FBE_DIR, 0700) != 0) {
625 ui->Print("Failed to make convert_fbe dir %s\n", strerror(errno));
626 return true;
627 }
Paul Lawrenced0db3372015-11-05 13:38:40 -0800628 FILE* f = fopen(CONVERT_FBE_FILE, "wb");
629 if (!f) {
Paul Lawrence661f8a62016-02-25 12:42:19 -0800630 ui->Print("Failed to convert to file encryption %s\n", strerror(errno));
Paul Lawrenced0db3372015-11-05 13:38:40 -0800631 return true;
632 }
633 fclose(f);
634 result = format_volume(volume, CONVERT_FBE_DIR);
635 remove(CONVERT_FBE_FILE);
636 rmdir(CONVERT_FBE_DIR);
637 } else {
638 result = format_volume(volume);
639 }
Doug Zongkerd0181b82011-10-19 10:51:12 -0700640
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700641 if (is_cache) {
642 while (head) {
643 FILE* f = fopen_path(head->name, "wb");
644 if (f) {
645 fwrite(head->data, 1, head->st.st_size, f);
646 fclose(f);
647 chmod(head->name, head->st.st_mode);
648 chown(head->name, head->st.st_uid, head->st.st_gid);
649 }
650 free(head->name);
651 free(head->data);
652 saved_log_file* temp = head->next;
653 free(head);
654 head = temp;
655 }
656
Tao Baof0124322015-04-11 02:04:11 +0000657 // Any part of the log we'd copied to cache is now gone.
658 // Reset the pointer so we copy from the beginning of the temp
659 // log.
660 tmplog_offset = 0;
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700661 copy_logs();
Doug Zongker2c3539e2010-09-29 13:21:30 -0700662 }
663
Elliott Hughes945548e2015-06-05 17:59:56 -0700664 return (result == 0);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800665}
666
Doug Zongkerf93d8162009-09-22 15:16:02 -0700667static int
Doug Zongker28ce47c2011-10-28 10:33:05 -0700668get_menu_selection(const char* const * headers, const char* const * items,
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700669 int menu_only, int initial_selection, Device* device) {
Doug Zongkerf93d8162009-09-22 15:16:02 -0700670 // throw away keys pressed previously, so user doesn't
671 // accidentally trigger menu items.
Doug Zongker211aebc2011-10-28 15:13:10 -0700672 ui->FlushKeys();
Doug Zongkerf93d8162009-09-22 15:16:02 -0700673
Doug Zongker211aebc2011-10-28 15:13:10 -0700674 ui->StartMenu(headers, items, initial_selection);
Doug Zongker8674a722010-09-15 11:08:23 -0700675 int selected = initial_selection;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800676 int chosen_item = -1;
677
Doug Zongkerf93d8162009-09-22 15:16:02 -0700678 while (chosen_item < 0) {
Doug Zongker211aebc2011-10-28 15:13:10 -0700679 int key = ui->WaitKey();
680 int visible = ui->IsTextVisible();
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800681
Doug Zongker5cae4452011-01-25 13:15:30 -0800682 if (key == -1) { // ui_wait_key() timed out
Doug Zongker211aebc2011-10-28 15:13:10 -0700683 if (ui->WasTextEverVisible()) {
Doug Zongker5cae4452011-01-25 13:15:30 -0800684 continue;
685 } else {
686 LOGI("timed out waiting for key input; rebooting.\n");
Doug Zongker211aebc2011-10-28 15:13:10 -0700687 ui->EndMenu();
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700688 return 0; // XXX fixme
Doug Zongker5cae4452011-01-25 13:15:30 -0800689 }
690 }
691
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700692 int action = device->HandleMenuKey(key, visible);
Doug Zongkerddd6a282009-06-09 12:22:33 -0700693
694 if (action < 0) {
695 switch (action) {
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700696 case Device::kHighlightUp:
Elliott Hughes642aaa72015-04-10 12:47:46 -0700697 selected = ui->SelectMenu(--selected);
Doug Zongkerddd6a282009-06-09 12:22:33 -0700698 break;
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700699 case Device::kHighlightDown:
Elliott Hughes642aaa72015-04-10 12:47:46 -0700700 selected = ui->SelectMenu(++selected);
Doug Zongkerddd6a282009-06-09 12:22:33 -0700701 break;
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700702 case Device::kInvokeItem:
Doug Zongkerddd6a282009-06-09 12:22:33 -0700703 chosen_item = selected;
704 break;
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700705 case Device::kNoAction:
Doug Zongkerddd6a282009-06-09 12:22:33 -0700706 break;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800707 }
Doug Zongkerf93d8162009-09-22 15:16:02 -0700708 } else if (!menu_only) {
Doug Zongkerddd6a282009-06-09 12:22:33 -0700709 chosen_item = action;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800710 }
Doug Zongkerf93d8162009-09-22 15:16:02 -0700711 }
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800712
Doug Zongker211aebc2011-10-28 15:13:10 -0700713 ui->EndMenu();
Doug Zongkerf93d8162009-09-22 15:16:02 -0700714 return chosen_item;
715}
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800716
Doug Zongker8674a722010-09-15 11:08:23 -0700717static int compare_string(const void* a, const void* b) {
718 return strcmp(*(const char**)a, *(const char**)b);
719}
720
Doug Zongker93950222014-07-08 14:10:23 -0700721// Returns a malloc'd path, or NULL.
Elliott Hughes30694c92015-03-25 15:16:51 -0700722static char* browse_directory(const char* path, Device* device) {
Michael Ward9d2629c2011-06-23 22:14:24 -0700723 ensure_path_mounted(path);
Doug Zongkerc18eeb82010-09-21 16:49:26 -0700724
Elliott Hughes30694c92015-03-25 15:16:51 -0700725 DIR* d = opendir(path);
Doug Zongker8674a722010-09-15 11:08:23 -0700726 if (d == NULL) {
727 LOGE("error opening %s: %s\n", path, strerror(errno));
Doug Zongker93950222014-07-08 14:10:23 -0700728 return NULL;
Doug Zongker8674a722010-09-15 11:08:23 -0700729 }
730
Doug Zongker8674a722010-09-15 11:08:23 -0700731 int d_size = 0;
732 int d_alloc = 10;
Doug Zongker28ce47c2011-10-28 10:33:05 -0700733 char** dirs = (char**)malloc(d_alloc * sizeof(char*));
Doug Zongker8674a722010-09-15 11:08:23 -0700734 int z_size = 1;
735 int z_alloc = 10;
Doug Zongker28ce47c2011-10-28 10:33:05 -0700736 char** zips = (char**)malloc(z_alloc * sizeof(char*));
Doug Zongker8674a722010-09-15 11:08:23 -0700737 zips[0] = strdup("../");
738
Elliott Hughes30694c92015-03-25 15:16:51 -0700739 struct dirent* de;
Doug Zongker8674a722010-09-15 11:08:23 -0700740 while ((de = readdir(d)) != NULL) {
741 int name_len = strlen(de->d_name);
742
743 if (de->d_type == DT_DIR) {
744 // skip "." and ".." entries
745 if (name_len == 1 && de->d_name[0] == '.') continue;
746 if (name_len == 2 && de->d_name[0] == '.' &&
747 de->d_name[1] == '.') continue;
748
749 if (d_size >= d_alloc) {
750 d_alloc *= 2;
Doug Zongker28ce47c2011-10-28 10:33:05 -0700751 dirs = (char**)realloc(dirs, d_alloc * sizeof(char*));
Doug Zongker8674a722010-09-15 11:08:23 -0700752 }
Doug Zongker28ce47c2011-10-28 10:33:05 -0700753 dirs[d_size] = (char*)malloc(name_len + 2);
Doug Zongker8674a722010-09-15 11:08:23 -0700754 strcpy(dirs[d_size], de->d_name);
755 dirs[d_size][name_len] = '/';
756 dirs[d_size][name_len+1] = '\0';
757 ++d_size;
758 } else if (de->d_type == DT_REG &&
759 name_len >= 4 &&
760 strncasecmp(de->d_name + (name_len-4), ".zip", 4) == 0) {
761 if (z_size >= z_alloc) {
762 z_alloc *= 2;
Doug Zongker28ce47c2011-10-28 10:33:05 -0700763 zips = (char**)realloc(zips, z_alloc * sizeof(char*));
Doug Zongker8674a722010-09-15 11:08:23 -0700764 }
765 zips[z_size++] = strdup(de->d_name);
766 }
767 }
768 closedir(d);
769
770 qsort(dirs, d_size, sizeof(char*), compare_string);
771 qsort(zips, z_size, sizeof(char*), compare_string);
772
773 // append dirs to the zips list
774 if (d_size + z_size + 1 > z_alloc) {
775 z_alloc = d_size + z_size + 1;
Doug Zongker28ce47c2011-10-28 10:33:05 -0700776 zips = (char**)realloc(zips, z_alloc * sizeof(char*));
Doug Zongker8674a722010-09-15 11:08:23 -0700777 }
778 memcpy(zips + z_size, dirs, d_size * sizeof(char*));
779 free(dirs);
780 z_size += d_size;
781 zips[z_size] = NULL;
782
Elliott Hughes8fd86d72015-04-13 14:36:02 -0700783 const char* headers[] = { "Choose a package to install:", path, NULL };
Elliott Hughes30694c92015-03-25 15:16:51 -0700784
Doug Zongker93950222014-07-08 14:10:23 -0700785 char* result;
Doug Zongker8674a722010-09-15 11:08:23 -0700786 int chosen_item = 0;
Doug Zongker93950222014-07-08 14:10:23 -0700787 while (true) {
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700788 chosen_item = get_menu_selection(headers, zips, 1, chosen_item, device);
Doug Zongker8674a722010-09-15 11:08:23 -0700789
790 char* item = zips[chosen_item];
791 int item_len = strlen(item);
792 if (chosen_item == 0) { // item 0 is always "../"
Michael Ward9d2629c2011-06-23 22:14:24 -0700793 // go up but continue browsing (if the caller is update_directory)
Doug Zongker93950222014-07-08 14:10:23 -0700794 result = NULL;
Doug Zongker8674a722010-09-15 11:08:23 -0700795 break;
796 }
Doug Zongker93950222014-07-08 14:10:23 -0700797
798 char new_path[PATH_MAX];
799 strlcpy(new_path, path, PATH_MAX);
800 strlcat(new_path, "/", PATH_MAX);
801 strlcat(new_path, item, PATH_MAX);
802
803 if (item[item_len-1] == '/') {
804 // recurse down into a subdirectory
805 new_path[strlen(new_path)-1] = '\0'; // truncate the trailing '/'
806 result = browse_directory(new_path, device);
807 if (result) break;
808 } else {
809 // selected a zip file: return the malloc'd path to the caller.
810 result = strdup(new_path);
811 break;
812 }
813 }
Doug Zongker8674a722010-09-15 11:08:23 -0700814
Elliott Hughes30694c92015-03-25 15:16:51 -0700815 for (int i = 0; i < z_size; ++i) free(zips[i]);
Doug Zongker8674a722010-09-15 11:08:23 -0700816 free(zips);
Doug Zongker8674a722010-09-15 11:08:23 -0700817
818 return result;
819}
820
Elliott Hughes30694c92015-03-25 15:16:51 -0700821static bool yes_no(Device* device, const char* question1, const char* question2) {
Elliott Hughes8fd86d72015-04-13 14:36:02 -0700822 const char* headers[] = { question1, question2, NULL };
Elliott Hughes30694c92015-03-25 15:16:51 -0700823 const char* items[] = { " No", " Yes", NULL };
Doug Zongkerddd6a282009-06-09 12:22:33 -0700824
Elliott Hughes30694c92015-03-25 15:16:51 -0700825 int chosen_item = get_menu_selection(headers, items, 1, 0, device);
826 return (chosen_item == 1);
827}
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800828
Tao Baoe39a9bc2015-03-31 12:19:05 -0700829// Return true on success.
830static bool wipe_data(int should_confirm, Device* device) {
831 if (should_confirm && !yes_no(device, "Wipe all user data?", " THIS CAN NOT BE UNDONE!")) {
832 return false;
Doug Zongkerf93d8162009-09-22 15:16:02 -0700833 }
Doug Zongker1066d2c2009-04-01 13:57:40 -0700834
Tao Bao682c34b2015-04-07 17:16:35 -0700835 modified_flash = true;
836
Doug Zongker211aebc2011-10-28 15:13:10 -0700837 ui->Print("\n-- Wiping data...\n");
Elliott Hughes945548e2015-06-05 17:59:56 -0700838 bool success =
839 device->PreWipeData() &&
840 erase_volume("/data") &&
Tao Baoae6408d2016-02-25 12:29:40 -0800841 (has_cache ? erase_volume("/cache") : true) &&
Elliott Hughes945548e2015-06-05 17:59:56 -0700842 device->PostWipeData();
843 ui->Print("Data wipe %s.\n", success ? "complete" : "failed");
844 return success;
Doug Zongkerf93d8162009-09-22 15:16:02 -0700845}
846
Tao Baoe39a9bc2015-03-31 12:19:05 -0700847// Return true on success.
848static bool wipe_cache(bool should_confirm, Device* device) {
Tao Baoae6408d2016-02-25 12:29:40 -0800849 if (!has_cache) {
850 ui->Print("No /cache partition found.\n");
851 return false;
852 }
853
Elliott Hughes30694c92015-03-25 15:16:51 -0700854 if (should_confirm && !yes_no(device, "Wipe cache?", " THIS CAN NOT BE UNDONE!")) {
Tao Baoe39a9bc2015-03-31 12:19:05 -0700855 return false;
Elliott Hughes30694c92015-03-25 15:16:51 -0700856 }
857
Tao Bao682c34b2015-04-07 17:16:35 -0700858 modified_flash = true;
859
Elliott Hughes30694c92015-03-25 15:16:51 -0700860 ui->Print("\n-- Wiping cache...\n");
Elliott Hughes945548e2015-06-05 17:59:56 -0700861 bool success = erase_volume("/cache");
862 ui->Print("Cache wipe %s.\n", success ? "complete" : "failed");
863 return success;
Elliott Hughes30694c92015-03-25 15:16:51 -0700864}
865
Tao Baob0838182016-06-02 11:16:50 -0700866// Secure-wipe a given partition. It uses BLKSECDISCARD, if supported.
867// Otherwise, it goes with BLKDISCARD (if device supports BLKDISCARDZEROES) or
868// BLKZEROOUT.
869static bool secure_wipe_partition(const std::string& partition) {
870 unique_fd fd(TEMP_FAILURE_RETRY(open(partition.c_str(), O_WRONLY)));
871 if (fd.get() == -1) {
872 LOGE("failed to open \"%s\": %s\n", partition.c_str(), strerror(errno));
873 return false;
874 }
875
876 uint64_t range[2] = {0, 0};
877 if (ioctl(fd.get(), BLKGETSIZE64, &range[1]) == -1 || range[1] == 0) {
878 LOGE("failed to get partition size: %s\n", strerror(errno));
879 return false;
880 }
881 printf("Secure-wiping \"%s\" from %" PRIu64 " to %" PRIu64 ".\n",
882 partition.c_str(), range[0], range[1]);
883
884 printf("Trying BLKSECDISCARD...\t");
885 if (ioctl(fd.get(), BLKSECDISCARD, &range) == -1) {
886 printf("failed: %s\n", strerror(errno));
887
888 // Use BLKDISCARD if it zeroes out blocks, otherwise use BLKZEROOUT.
889 unsigned int zeroes;
890 if (ioctl(fd.get(), BLKDISCARDZEROES, &zeroes) == 0 && zeroes != 0) {
891 printf("Trying BLKDISCARD...\t");
892 if (ioctl(fd.get(), BLKDISCARD, &range) == -1) {
893 printf("failed: %s\n", strerror(errno));
894 return false;
895 }
896 } else {
897 printf("Trying BLKZEROOUT...\t");
898 if (ioctl(fd.get(), BLKZEROOUT, &range) == -1) {
899 printf("failed: %s\n", strerror(errno));
900 return false;
901 }
902 }
903 }
904
905 printf("done\n");
906 return true;
907}
908
Yabin Cui6faf0262016-06-09 14:09:39 -0700909// Check if the wipe package matches expectation:
910// 1. verify the package.
911// 2. check metadata (ota-type, pre-device and serial number if having one).
912static bool check_wipe_package(size_t wipe_package_size) {
913 if (wipe_package_size == 0) {
914 LOGE("wipe_package_size is zero.\n");
915 return false;
916 }
917 std::string wipe_package;
918 if (!read_wipe_package(wipe_package_size, &wipe_package)) {
919 LOGE("Failed to read wipe package.\n");
920 return false;
921 }
922 if (!verify_package(reinterpret_cast<const unsigned char*>(wipe_package.data()),
923 wipe_package.size())) {
924 LOGE("Failed to verify package.\n");
925 return false;
926 }
927
928 // Extract metadata
929 ZipArchive zip;
930 int err = mzOpenZipArchive(reinterpret_cast<unsigned char*>(&wipe_package[0]),
931 wipe_package.size(), &zip);
932 if (err != 0) {
933 LOGE("Can't open wipe package: %s\n", err != -1 ? strerror(err) : "bad");
934 return false;
935 }
936 std::string metadata;
937 if (!read_metadata_from_package(&zip, &metadata)) {
938 mzCloseZipArchive(&zip);
939 return false;
940 }
941 mzCloseZipArchive(&zip);
942
943 // Check metadata
944 std::vector<std::string> lines = android::base::Split(metadata, "\n");
945 bool ota_type_matched = false;
946 bool device_type_matched = false;
947 bool has_serial_number = false;
948 bool serial_number_matched = false;
949 for (const auto& line : lines) {
950 if (line == "ota-type=BRICK") {
951 ota_type_matched = true;
952 } else if (android::base::StartsWith(line, "pre-device=")) {
953 std::string device_type = line.substr(strlen("pre-device="));
954 char real_device_type[PROPERTY_VALUE_MAX];
955 property_get("ro.build.product", real_device_type, "");
956 device_type_matched = (device_type == real_device_type);
957 } else if (android::base::StartsWith(line, "serialno=")) {
958 std::string serial_no = line.substr(strlen("serialno="));
959 char real_serial_no[PROPERTY_VALUE_MAX];
960 property_get("ro.serialno", real_serial_no, "");
961 has_serial_number = true;
962 serial_number_matched = (serial_no == real_serial_no);
963 }
964 }
965 return ota_type_matched && device_type_matched && (!has_serial_number || serial_number_matched);
966}
967
Tao Bao108ab212016-06-10 10:13:32 -0700968// Wipe the current A/B device, with a secure wipe of all the partitions in
969// RECOVERY_WIPE.
Yabin Cui6faf0262016-06-09 14:09:39 -0700970static bool wipe_ab_device(size_t wipe_package_size) {
Tao Baob0838182016-06-02 11:16:50 -0700971 ui->SetBackground(RecoveryUI::ERASING);
972 ui->SetProgressType(RecoveryUI::INDETERMINATE);
973
Yabin Cui6faf0262016-06-09 14:09:39 -0700974 if (!check_wipe_package(wipe_package_size)) {
975 LOGE("Failed to verify wipe package\n");
976 return false;
977 }
Tao Baob0838182016-06-02 11:16:50 -0700978 std::string partition_list;
Tao Bao108ab212016-06-10 10:13:32 -0700979 if (!android::base::ReadFileToString(RECOVERY_WIPE, &partition_list)) {
980 LOGE("failed to read \"%s\".\n", RECOVERY_WIPE);
Tao Baob0838182016-06-02 11:16:50 -0700981 return false;
982 }
983
984 std::vector<std::string> lines = android::base::Split(partition_list, "\n");
985 for (const std::string& line : lines) {
986 std::string partition = android::base::Trim(line);
987 // Ignore '#' comment or empty lines.
988 if (android::base::StartsWith(partition, "#") || partition.empty()) {
989 continue;
990 }
991
992 // Proceed anyway even if it fails to wipe some partition.
993 secure_wipe_partition(partition);
994 }
995 return true;
996}
997
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700998static void choose_recovery_file(Device* device) {
Tao Baoae6408d2016-02-25 12:29:40 -0800999 if (!has_cache) {
1000 ui->Print("No /cache partition found.\n");
1001 return;
1002 }
1003
Elliott Hughesc0491632015-05-06 12:40:05 -07001004 // "Back" + KEEP_LOG_COUNT * 2 + terminating nullptr entry
1005 char* entries[1 + KEEP_LOG_COUNT * 2 + 1];
Nick Kralevicha9ad0322014-10-22 18:38:48 -07001006 memset(entries, 0, sizeof(entries));
1007
Tao Baobef39712015-05-04 18:50:27 -07001008 unsigned int n = 0;
Patrick Tjincd055ee2014-12-09 11:26:40 -08001009
Patrick Tjincd055ee2014-12-09 11:26:40 -08001010 // Add LAST_LOG_FILE + LAST_LOG_FILE.x
Tao Baobef39712015-05-04 18:50:27 -07001011 // Add LAST_KMSG_FILE + LAST_KMSG_FILE.x
1012 for (int i = 0; i < KEEP_LOG_COUNT; i++) {
1013 char* log_file;
Tao Bao80e46e02015-06-03 10:49:29 -07001014 int ret;
1015 ret = (i == 0) ? asprintf(&log_file, "%s", LAST_LOG_FILE) :
1016 asprintf(&log_file, "%s.%d", LAST_LOG_FILE, i);
1017 if (ret == -1) {
Nick Kralevicha9ad0322014-10-22 18:38:48 -07001018 // memory allocation failure - return early. Should never happen.
1019 return;
1020 }
Tao Baobef39712015-05-04 18:50:27 -07001021 if ((ensure_path_mounted(log_file) != 0) || (access(log_file, R_OK) == -1)) {
1022 free(log_file);
1023 } else {
1024 entries[n++] = log_file;
Nick Kralevicha9ad0322014-10-22 18:38:48 -07001025 }
Tao Baobef39712015-05-04 18:50:27 -07001026
1027 char* kmsg_file;
Tao Bao80e46e02015-06-03 10:49:29 -07001028 ret = (i == 0) ? asprintf(&kmsg_file, "%s", LAST_KMSG_FILE) :
1029 asprintf(&kmsg_file, "%s.%d", LAST_KMSG_FILE, i);
1030 if (ret == -1) {
Tao Baobef39712015-05-04 18:50:27 -07001031 // memory allocation failure - return early. Should never happen.
1032 return;
1033 }
1034 if ((ensure_path_mounted(kmsg_file) != 0) || (access(kmsg_file, R_OK) == -1)) {
1035 free(kmsg_file);
1036 } else {
1037 entries[n++] = kmsg_file;
1038 }
Nick Kralevicha9ad0322014-10-22 18:38:48 -07001039 }
1040
Elliott Hughesc0491632015-05-06 12:40:05 -07001041 entries[n++] = strdup("Back");
1042
Tao Baobef39712015-05-04 18:50:27 -07001043 const char* headers[] = { "Select file to view", nullptr };
Nick Kralevicha9ad0322014-10-22 18:38:48 -07001044
Elliott Hughes8de52072015-04-08 20:06:50 -07001045 while (true) {
Elliott Hughes30694c92015-03-25 15:16:51 -07001046 int chosen_item = get_menu_selection(headers, entries, 1, 0, device);
Elliott Hughesc0491632015-05-06 12:40:05 -07001047 if (strcmp(entries[chosen_item], "Back") == 0) break;
Elliott Hughes8de52072015-04-08 20:06:50 -07001048
Elliott Hughes8de52072015-04-08 20:06:50 -07001049 ui->ShowFile(entries[chosen_item]);
Nick Kralevicha9ad0322014-10-22 18:38:48 -07001050 }
1051
Tao Baobef39712015-05-04 18:50:27 -07001052 for (size_t i = 0; i < (sizeof(entries) / sizeof(*entries)); i++) {
Nick Kralevicha9ad0322014-10-22 18:38:48 -07001053 free(entries[i]);
1054 }
1055}
1056
Elliott Hughes498cda62016-04-14 16:49:04 -07001057static void run_graphics_test(Device* device) {
1058 // Switch to graphics screen.
1059 ui->ShowText(false);
1060
1061 ui->SetProgressType(RecoveryUI::INDETERMINATE);
1062 ui->SetBackground(RecoveryUI::INSTALLING_UPDATE);
1063 sleep(1);
1064
1065 ui->SetBackground(RecoveryUI::ERROR);
1066 sleep(1);
1067
1068 ui->SetBackground(RecoveryUI::NO_COMMAND);
1069 sleep(1);
1070
1071 ui->SetBackground(RecoveryUI::ERASING);
1072 sleep(1);
1073
1074 ui->SetBackground(RecoveryUI::INSTALLING_UPDATE);
1075
1076 ui->SetProgressType(RecoveryUI::DETERMINATE);
1077 ui->ShowProgress(1.0, 10.0);
1078 float fraction = 0.0;
1079 for (size_t i = 0; i < 100; ++i) {
1080 fraction += .01;
1081 ui->SetProgress(fraction);
1082 usleep(100000);
1083 }
1084
1085 ui->ShowText(true);
1086}
1087
Tao Baocdcf28f2016-01-13 15:05:20 -08001088// How long (in seconds) we wait for the fuse-provided package file to
1089// appear, before timing out.
1090#define SDCARD_INSTALL_TIMEOUT 10
1091
Tao Bao145d8612015-03-25 15:51:15 -07001092static int apply_from_sdcard(Device* device, bool* wipe_cache) {
Tao Bao682c34b2015-04-07 17:16:35 -07001093 modified_flash = true;
1094
Christian Poetzsch4ec58a42015-02-19 10:42:39 +00001095 if (ensure_path_mounted(SDCARD_ROOT) != 0) {
1096 ui->Print("\n-- Couldn't mount %s.\n", SDCARD_ROOT);
1097 return INSTALL_ERROR;
1098 }
1099
1100 char* path = browse_directory(SDCARD_ROOT, device);
1101 if (path == NULL) {
Elliott Hughes018ed312015-04-08 16:51:36 -07001102 ui->Print("\n-- No package file selected.\n");
caozhiyuanb4effb92015-06-10 16:46:38 +08001103 ensure_path_unmounted(SDCARD_ROOT);
Christian Poetzsch4ec58a42015-02-19 10:42:39 +00001104 return INSTALL_ERROR;
1105 }
1106
1107 ui->Print("\n-- Install %s ...\n", path);
1108 set_sdcard_update_bootloader_message();
Christian Poetzsch4ec58a42015-02-19 10:42:39 +00001109
Tao Baocdcf28f2016-01-13 15:05:20 -08001110 // We used to use fuse in a thread as opposed to a process. Since accessing
1111 // through fuse involves going from kernel to userspace to kernel, it leads
1112 // to deadlock when a page fault occurs. (Bug: 26313124)
1113 pid_t child;
1114 if ((child = fork()) == 0) {
1115 bool status = start_sdcard_fuse(path);
1116
1117 _exit(status ? EXIT_SUCCESS : EXIT_FAILURE);
1118 }
1119
1120 // FUSE_SIDELOAD_HOST_PATHNAME will start to exist once the fuse in child
1121 // process is ready.
1122 int result = INSTALL_ERROR;
1123 int status;
1124 bool waited = false;
1125 for (int i = 0; i < SDCARD_INSTALL_TIMEOUT; ++i) {
1126 if (waitpid(child, &status, WNOHANG) == -1) {
1127 result = INSTALL_ERROR;
1128 waited = true;
1129 break;
1130 }
1131
1132 struct stat sb;
1133 if (stat(FUSE_SIDELOAD_HOST_PATHNAME, &sb) == -1) {
1134 if (errno == ENOENT && i < SDCARD_INSTALL_TIMEOUT-1) {
1135 sleep(1);
1136 continue;
1137 } else {
1138 LOGE("Timed out waiting for the fuse-provided package.\n");
1139 result = INSTALL_ERROR;
1140 kill(child, SIGKILL);
1141 break;
1142 }
1143 }
1144
1145 result = install_package(FUSE_SIDELOAD_HOST_PATHNAME, wipe_cache,
Tianjie Xu16255832016-04-30 11:49:59 -07001146 TEMPORARY_INSTALL_FILE, false, 0/*retry_count*/);
Tao Baocdcf28f2016-01-13 15:05:20 -08001147 break;
1148 }
Christian Poetzsch4ec58a42015-02-19 10:42:39 +00001149
Tao Baocdcf28f2016-01-13 15:05:20 -08001150 if (!waited) {
1151 // Calling stat() on this magic filename signals the fuse
1152 // filesystem to shut down.
1153 struct stat sb;
1154 stat(FUSE_SIDELOAD_HOST_EXIT_PATHNAME, &sb);
1155
1156 waitpid(child, &status, 0);
1157 }
1158
1159 if (!WIFEXITED(status) || WEXITSTATUS(status) != 0) {
1160 LOGE("Error exit from the fuse process: %d\n", WEXITSTATUS(status));
1161 }
1162
Christian Poetzsch4ec58a42015-02-19 10:42:39 +00001163 ensure_path_unmounted(SDCARD_ROOT);
Tao Baocdcf28f2016-01-13 15:05:20 -08001164 return result;
Christian Poetzsch4ec58a42015-02-19 10:42:39 +00001165}
1166
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001167// Return REBOOT, SHUTDOWN, or REBOOT_BOOTLOADER. Returning NO_ACTION
1168// means to take the default, which is to reboot or shutdown depending
1169// on if the --shutdown_after flag was passed to recovery.
1170static Device::BuiltinAction
Doug Zongker6c8553d2012-09-24 10:40:47 -07001171prompt_and_wait(Device* device, int status) {
Doug Zongkerf93d8162009-09-22 15:16:02 -07001172 for (;;) {
1173 finish_recovery(NULL);
Doug Zongker6c8553d2012-09-24 10:40:47 -07001174 switch (status) {
1175 case INSTALL_SUCCESS:
1176 case INSTALL_NONE:
1177 ui->SetBackground(RecoveryUI::NO_COMMAND);
1178 break;
1179
1180 case INSTALL_ERROR:
1181 case INSTALL_CORRUPT:
1182 ui->SetBackground(RecoveryUI::ERROR);
1183 break;
1184 }
Doug Zongker211aebc2011-10-28 15:13:10 -07001185 ui->SetProgressType(RecoveryUI::EMPTY);
Doug Zongkerf93d8162009-09-22 15:16:02 -07001186
Elliott Hughes8fd86d72015-04-13 14:36:02 -07001187 int chosen_item = get_menu_selection(nullptr, device->GetMenuItems(), 0, 0, device);
Doug Zongkerf93d8162009-09-22 15:16:02 -07001188
1189 // device-specific code may take some action here. It may
1190 // return one of the core actions handled in the switch
1191 // statement below.
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001192 Device::BuiltinAction chosen_action = device->InvokeMenuItem(chosen_item);
Doug Zongkerf93d8162009-09-22 15:16:02 -07001193
Elliott Hughes30694c92015-03-25 15:16:51 -07001194 bool should_wipe_cache = false;
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001195 switch (chosen_action) {
1196 case Device::NO_ACTION:
1197 break;
1198
Doug Zongkerdaefc1d2011-10-31 09:34:15 -07001199 case Device::REBOOT:
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001200 case Device::SHUTDOWN:
1201 case Device::REBOOT_BOOTLOADER:
1202 return chosen_action;
Doug Zongkerf93d8162009-09-22 15:16:02 -07001203
Doug Zongkerdaefc1d2011-10-31 09:34:15 -07001204 case Device::WIPE_DATA:
1205 wipe_data(ui->IsTextVisible(), device);
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001206 if (!ui->IsTextVisible()) return Device::NO_ACTION;
Doug Zongkerf93d8162009-09-22 15:16:02 -07001207 break;
1208
Doug Zongkerdaefc1d2011-10-31 09:34:15 -07001209 case Device::WIPE_CACHE:
Elliott Hughes30694c92015-03-25 15:16:51 -07001210 wipe_cache(ui->IsTextVisible(), device);
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001211 if (!ui->IsTextVisible()) return Device::NO_ACTION;
Doug Zongkerf93d8162009-09-22 15:16:02 -07001212 break;
1213
Christian Poetzsch4ec58a42015-02-19 10:42:39 +00001214 case Device::APPLY_ADB_SIDELOAD:
Elliott Hughesec283402015-04-10 10:01:53 -07001215 case Device::APPLY_SDCARD:
Christian Poetzsch4ec58a42015-02-19 10:42:39 +00001216 {
1217 bool adb = (chosen_action == Device::APPLY_ADB_SIDELOAD);
1218 if (adb) {
Elliott Hughes30694c92015-03-25 15:16:51 -07001219 status = apply_from_adb(ui, &should_wipe_cache, TEMPORARY_INSTALL_FILE);
Doug Zongkerd0181b82011-10-19 10:51:12 -07001220 } else {
Elliott Hughes30694c92015-03-25 15:16:51 -07001221 status = apply_from_sdcard(device, &should_wipe_cache);
Doug Zongkerd0181b82011-10-19 10:51:12 -07001222 }
Doug Zongker945fc682014-07-10 10:50:39 -07001223
Elliott Hughes30694c92015-03-25 15:16:51 -07001224 if (status == INSTALL_SUCCESS && should_wipe_cache) {
Tao Baoe39a9bc2015-03-31 12:19:05 -07001225 if (!wipe_cache(false, device)) {
1226 status = INSTALL_ERROR;
1227 }
Christian Poetzsch4ec58a42015-02-19 10:42:39 +00001228 }
1229
Tao Baoc679f932015-03-30 09:43:49 -07001230 if (status != INSTALL_SUCCESS) {
1231 ui->SetBackground(RecoveryUI::ERROR);
1232 ui->Print("Installation aborted.\n");
1233 copy_logs();
1234 } else if (!ui->IsTextVisible()) {
1235 return Device::NO_ACTION; // reboot if logs aren't visible
1236 } else {
1237 ui->Print("\nInstall from %s complete.\n", adb ? "ADB" : "SD card");
Doug Zongker8674a722010-09-15 11:08:23 -07001238 }
Doug Zongkerf93d8162009-09-22 15:16:02 -07001239 }
1240 break;
Doug Zongkerdaefc1d2011-10-31 09:34:15 -07001241
Elliott Hughesec283402015-04-10 10:01:53 -07001242 case Device::VIEW_RECOVERY_LOGS:
1243 choose_recovery_file(device);
Michael Ward9d2629c2011-06-23 22:14:24 -07001244 break;
Doug Zongker9270a202012-01-09 15:16:13 -08001245
Elliott Hughes498cda62016-04-14 16:49:04 -07001246 case Device::RUN_GRAPHICS_TEST:
1247 run_graphics_test(device);
1248 break;
1249
Elliott Hughesec283402015-04-10 10:01:53 -07001250 case Device::MOUNT_SYSTEM:
Tao Baoabb8f772015-07-30 14:43:27 -07001251 char system_root_image[PROPERTY_VALUE_MAX];
1252 property_get("ro.build.system_root_image", system_root_image, "");
1253
1254 // For a system image built with the root directory (i.e.
1255 // system_root_image == "true"), we mount it to /system_root, and symlink /system
1256 // to /system_root/system to make adb shell work (the symlink is created through
1257 // the build system).
1258 // Bug: 22855115
1259 if (strcmp(system_root_image, "true") == 0) {
1260 if (ensure_path_mounted_at("/", "/system_root") != -1) {
1261 ui->Print("Mounted /system.\n");
1262 }
1263 } else {
1264 if (ensure_path_mounted("/system") != -1) {
1265 ui->Print("Mounted /system.\n");
1266 }
Elliott Hughesec283402015-04-10 10:01:53 -07001267 }
Tao Baoabb8f772015-07-30 14:43:27 -07001268
Nick Kralevicha9ad0322014-10-22 18:38:48 -07001269 break;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001270 }
1271 }
1272}
1273
1274static void
Oscar Montemayor05231562009-11-30 08:40:57 -08001275print_property(const char *key, const char *name, void *cookie) {
Doug Zongker56c51052010-07-01 09:18:44 -07001276 printf("%s=%s\n", key, name);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001277}
1278
Doug Zongker02ec6b82012-08-22 17:26:40 -07001279static void
1280load_locale_from_cache() {
1281 FILE* fp = fopen_path(LOCALE_FILE, "r");
1282 char buffer[80];
1283 if (fp != NULL) {
1284 fgets(buffer, sizeof(buffer), fp);
1285 int j = 0;
Doug Zongker5fa8c232012-09-18 12:37:02 -07001286 unsigned int i;
Doug Zongker02ec6b82012-08-22 17:26:40 -07001287 for (i = 0; i < sizeof(buffer) && buffer[i]; ++i) {
1288 if (!isspace(buffer[i])) {
1289 buffer[j++] = buffer[i];
1290 }
1291 }
1292 buffer[j] = 0;
1293 locale = strdup(buffer);
Devin Kim6016d082012-10-08 09:47:37 -07001294 check_and_fclose(fp, LOCALE_FILE);
Doug Zongker02ec6b82012-08-22 17:26:40 -07001295 }
1296}
1297
Doug Zongker7c3ae452013-05-14 11:03:02 -07001298static RecoveryUI* gCurrentUI = NULL;
1299
1300void
1301ui_print(const char* format, ...) {
1302 char buffer[256];
1303
1304 va_list ap;
1305 va_start(ap, format);
1306 vsnprintf(buffer, sizeof(buffer), format, ap);
1307 va_end(ap);
1308
1309 if (gCurrentUI != NULL) {
1310 gCurrentUI->Print("%s", buffer);
1311 } else {
1312 fputs(buffer, stdout);
1313 }
1314}
1315
Yabin Cui99281df2016-02-17 12:21:52 -08001316static bool is_battery_ok() {
1317 struct healthd_config healthd_config = {
1318 .batteryStatusPath = android::String8(android::String8::kEmptyString),
1319 .batteryHealthPath = android::String8(android::String8::kEmptyString),
1320 .batteryPresentPath = android::String8(android::String8::kEmptyString),
1321 .batteryCapacityPath = android::String8(android::String8::kEmptyString),
1322 .batteryVoltagePath = android::String8(android::String8::kEmptyString),
1323 .batteryTemperaturePath = android::String8(android::String8::kEmptyString),
1324 .batteryTechnologyPath = android::String8(android::String8::kEmptyString),
1325 .batteryCurrentNowPath = android::String8(android::String8::kEmptyString),
1326 .batteryCurrentAvgPath = android::String8(android::String8::kEmptyString),
1327 .batteryChargeCounterPath = android::String8(android::String8::kEmptyString),
1328 .batteryFullChargePath = android::String8(android::String8::kEmptyString),
1329 .batteryCycleCountPath = android::String8(android::String8::kEmptyString),
1330 .energyCounter = NULL,
1331 .boot_min_cap = 0,
1332 .screen_on = NULL
1333 };
1334 healthd_board_init(&healthd_config);
1335
1336 android::BatteryMonitor monitor;
1337 monitor.init(&healthd_config);
1338
1339 int wait_second = 0;
1340 while (true) {
1341 int charge_status = monitor.getChargeStatus();
1342 // Treat unknown status as charged.
1343 bool charged = (charge_status != android::BATTERY_STATUS_DISCHARGING &&
1344 charge_status != android::BATTERY_STATUS_NOT_CHARGING);
1345 android::BatteryProperty capacity;
1346 android::status_t status = monitor.getProperty(android::BATTERY_PROP_CAPACITY, &capacity);
1347 ui_print("charge_status %d, charged %d, status %d, capacity %lld\n", charge_status,
1348 charged, status, capacity.valueInt64);
1349 // At startup, the battery drivers in devices like N5X/N6P take some time to load
1350 // the battery profile. Before the load finishes, it reports value 50 as a fake
1351 // capacity. BATTERY_READ_TIMEOUT_IN_SEC is set that the battery drivers are expected
1352 // to finish loading the battery profile earlier than 10 seconds after kernel startup.
1353 if (status == 0 && capacity.valueInt64 == 50) {
1354 if (wait_second < BATTERY_READ_TIMEOUT_IN_SEC) {
1355 sleep(1);
1356 wait_second++;
1357 continue;
1358 }
1359 }
1360 // If we can't read battery percentage, it may be a device without battery. In this
1361 // situation, use 100 as a fake battery percentage.
1362 if (status != 0) {
1363 capacity.valueInt64 = 100;
1364 }
1365 return (charged && capacity.valueInt64 >= BATTERY_WITH_CHARGER_OK_PERCENTAGE) ||
1366 (!charged && capacity.valueInt64 >= BATTERY_OK_PERCENTAGE);
1367 }
1368}
1369
Tianjie Xufa12b972016-02-05 18:25:58 -08001370static void set_retry_bootloader_message(int retry_count, int argc, char** argv) {
1371 struct bootloader_message boot {};
1372 strlcpy(boot.command, "boot-recovery", sizeof(boot.command));
1373 strlcpy(boot.recovery, "recovery\n", sizeof(boot.recovery));
1374
1375 for (int i = 1; i < argc; ++i) {
1376 if (strstr(argv[i], "retry_count") == nullptr) {
1377 strlcat(boot.recovery, argv[i], sizeof(boot.recovery));
1378 strlcat(boot.recovery, "\n", sizeof(boot.recovery));
1379 }
1380 }
1381
1382 // Initialize counter to 1 if it's not in BCB, otherwise increment it by 1.
1383 if (retry_count == 0) {
1384 strlcat(boot.recovery, "--retry_count=1\n", sizeof(boot.recovery));
1385 } else {
1386 char buffer[20];
1387 snprintf(buffer, sizeof(buffer), "--retry_count=%d\n", retry_count+1);
1388 strlcat(boot.recovery, buffer, sizeof(boot.recovery));
1389 }
1390 set_bootloader_message(&boot);
1391}
1392
Mark Salyzyn13aca592016-03-09 14:58:16 -08001393static ssize_t logbasename(
1394 log_id_t /* logId */,
1395 char /* prio */,
1396 const char *filename,
1397 const char * /* buf */, size_t len,
1398 void *arg) {
1399 if (strstr(LAST_KMSG_FILE, filename) ||
1400 strstr(LAST_LOG_FILE, filename)) {
1401 bool *doRotate = reinterpret_cast<bool *>(arg);
1402 *doRotate = true;
1403 }
1404 return len;
1405}
1406
1407static ssize_t logrotate(
1408 log_id_t logId,
1409 char prio,
1410 const char *filename,
1411 const char *buf, size_t len,
1412 void *arg) {
1413 bool *doRotate = reinterpret_cast<bool *>(arg);
1414 if (!*doRotate) {
1415 return __android_log_pmsg_file_write(logId, prio, filename, buf, len);
1416 }
1417
1418 std::string name(filename);
1419 size_t dot = name.find_last_of(".");
1420 std::string sub = name.substr(0, dot);
1421
1422 if (!strstr(LAST_KMSG_FILE, sub.c_str()) &&
1423 !strstr(LAST_LOG_FILE, sub.c_str())) {
1424 return __android_log_pmsg_file_write(logId, prio, filename, buf, len);
1425 }
1426
1427 // filename rotation
1428 if (dot == std::string::npos) {
1429 name += ".1";
1430 } else {
1431 std::string number = name.substr(dot + 1);
1432 if (!isdigit(number.data()[0])) {
1433 name += ".1";
1434 } else {
1435 unsigned long long i = std::stoull(number);
1436 name = sub + "." + std::to_string(i + 1);
1437 }
1438 }
1439
1440 return __android_log_pmsg_file_write(logId, prio, name.c_str(), buf, len);
1441}
1442
Yabin Cui99281df2016-02-17 12:21:52 -08001443int main(int argc, char **argv) {
Mark Salyzyn13aca592016-03-09 14:58:16 -08001444 // Take last pmsg contents and rewrite it to the current pmsg session.
1445 static const char filter[] = "recovery/";
1446 // Do we need to rotate?
1447 bool doRotate = false;
1448 __android_log_pmsg_file_read(
1449 LOG_ID_SYSTEM, ANDROID_LOG_INFO, filter,
1450 logbasename, &doRotate);
1451 // Take action to refresh pmsg contents
1452 __android_log_pmsg_file_read(
1453 LOG_ID_SYSTEM, ANDROID_LOG_INFO, filter,
1454 logrotate, &doRotate);
1455
Doug Zongker9270a202012-01-09 15:16:13 -08001456 // If this binary is started with the single argument "--adbd",
1457 // instead of being the normal recovery binary, it turns into kind
1458 // of a stripped-down version of adbd that only supports the
1459 // 'sideload' command. Note this must be a real argument, not
1460 // anything in the command file or bootloader control block; the
1461 // only way recovery should be run with this argument is when it
1462 // starts a copy of itself from the apply_from_adb() function.
1463 if (argc == 2 && strcmp(argv[1], "--adbd") == 0) {
Elliott Hughes9f4fdb32015-11-20 13:03:24 -08001464 adb_server_main(0, DEFAULT_ADB_PORT, -1);
Doug Zongker9270a202012-01-09 15:16:13 -08001465 return 0;
1466 }
1467
Tao Bao04ca4262015-09-10 15:32:24 -07001468 time_t start = time(NULL);
1469
1470 // redirect_stdio should be called only in non-sideload mode. Otherwise
1471 // we may have two logger instances with different timestamps.
1472 redirect_stdio(TEMPORARY_LOG_FILE);
1473
Doug Zongker19a8e242014-01-21 09:25:41 -08001474 printf("Starting recovery (pid %d) on %s", getpid(), ctime(&start));
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001475
Doug Zongkerd4208f92010-09-20 12:16:13 -07001476 load_volume_table();
Tao Baoae6408d2016-02-25 12:29:40 -08001477 has_cache = volume_for_path(CACHE_ROOT) != nullptr;
1478
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001479 get_args(&argc, &argv);
1480
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001481 const char *send_intent = NULL;
1482 const char *update_package = NULL;
Tao Baoe39a9bc2015-03-31 12:19:05 -07001483 bool should_wipe_data = false;
Tao Baoc679f932015-03-30 09:43:49 -07001484 bool should_wipe_cache = false;
Tao Bao108ab212016-06-10 10:13:32 -07001485 bool should_wipe_ab = false;
Yabin Cui6faf0262016-06-09 14:09:39 -07001486 size_t wipe_package_size = 0;
Tao Bao145d8612015-03-25 15:51:15 -07001487 bool show_text = false;
Tao Baoc679f932015-03-30 09:43:49 -07001488 bool sideload = false;
1489 bool sideload_auto_reboot = false;
Doug Zongkere5d5ac72012-04-12 11:01:22 -07001490 bool just_exit = false;
Doug Zongkerb1d12632014-03-18 10:32:12 -07001491 bool shutdown_after = false;
Tianjie Xufa12b972016-02-05 18:25:58 -08001492 int retry_count = 0;
Tianjie Xu35926c42016-04-28 18:06:26 -07001493 bool security_update = false;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001494
1495 int arg;
Tao Baob0838182016-06-02 11:16:50 -07001496 int option_index;
1497 while ((arg = getopt_long(argc, argv, "", OPTIONS, &option_index)) != -1) {
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001498 switch (arg) {
Tao Baoc679f932015-03-30 09:43:49 -07001499 case 'i': send_intent = optarg; break;
Tianjie Xufa12b972016-02-05 18:25:58 -08001500 case 'n': android::base::ParseInt(optarg, &retry_count, 0); break;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001501 case 'u': update_package = optarg; break;
Tao Baoe39a9bc2015-03-31 12:19:05 -07001502 case 'w': should_wipe_data = true; break;
Tao Baoc679f932015-03-30 09:43:49 -07001503 case 'c': should_wipe_cache = true; break;
Tao Bao145d8612015-03-25 15:51:15 -07001504 case 't': show_text = true; break;
Tao Baoc679f932015-03-30 09:43:49 -07001505 case 's': sideload = true; break;
1506 case 'a': sideload = true; sideload_auto_reboot = true; break;
Doug Zongkere5d5ac72012-04-12 11:01:22 -07001507 case 'x': just_exit = true; break;
Doug Zongker02ec6b82012-08-22 17:26:40 -07001508 case 'l': locale = optarg; break;
Doug Zongkerc87bab12013-11-25 13:53:25 -08001509 case 'g': {
1510 if (stage == NULL || *stage == '\0') {
1511 char buffer[20] = "1/";
1512 strncat(buffer, optarg, sizeof(buffer)-3);
1513 stage = strdup(buffer);
1514 }
1515 break;
1516 }
Doug Zongkerb1d12632014-03-18 10:32:12 -07001517 case 'p': shutdown_after = true; break;
Jeff Sharkeya6e13ae2014-09-24 11:46:17 -07001518 case 'r': reason = optarg; break;
Tianjie Xu35926c42016-04-28 18:06:26 -07001519 case 'e': security_update = true; break;
Tao Baob0838182016-06-02 11:16:50 -07001520 case 0: {
Tao Bao108ab212016-06-10 10:13:32 -07001521 if (strcmp(OPTIONS[option_index].name, "wipe_ab") == 0) {
1522 should_wipe_ab = true;
Tao Baob0838182016-06-02 11:16:50 -07001523 break;
Yabin Cui6faf0262016-06-09 14:09:39 -07001524 } else if (strcmp(OPTIONS[option_index].name, "wipe_package_size") == 0) {
1525 android::base::ParseUint(optarg, &wipe_package_size);
1526 break;
Tao Baob0838182016-06-02 11:16:50 -07001527 }
1528 break;
1529 }
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001530 case '?':
1531 LOGE("Invalid command argument\n");
1532 continue;
1533 }
1534 }
1535
Tao Baoae6408d2016-02-25 12:29:40 -08001536 if (locale == nullptr && has_cache) {
Doug Zongker02ec6b82012-08-22 17:26:40 -07001537 load_locale_from_cache();
1538 }
1539 printf("locale is [%s]\n", locale);
Doug Zongker0d32f252014-02-13 15:07:56 -08001540 printf("stage is [%s]\n", stage);
Jeff Sharkeya6e13ae2014-09-24 11:46:17 -07001541 printf("reason is [%s]\n", reason);
Doug Zongker02ec6b82012-08-22 17:26:40 -07001542
1543 Device* device = make_device();
1544 ui = device->GetUI();
Doug Zongker7c3ae452013-05-14 11:03:02 -07001545 gCurrentUI = ui;
Doug Zongker02ec6b82012-08-22 17:26:40 -07001546
Doug Zongker5fa8c232012-09-18 12:37:02 -07001547 ui->SetLocale(locale);
Doug Zongker02ec6b82012-08-22 17:26:40 -07001548 ui->Init();
Tianjie Xu35926c42016-04-28 18:06:26 -07001549 // Set background string to "installing security update" for security update,
1550 // otherwise set it to "installing system update".
1551 ui->SetSystemUpdateText(security_update);
Doug Zongkerc87bab12013-11-25 13:53:25 -08001552
1553 int st_cur, st_max;
1554 if (stage != NULL && sscanf(stage, "%d/%d", &st_cur, &st_max) == 2) {
1555 ui->SetStage(st_cur, st_max);
1556 }
1557
Doug Zongker02ec6b82012-08-22 17:26:40 -07001558 ui->SetBackground(RecoveryUI::NONE);
1559 if (show_text) ui->ShowText(true);
1560
Stephen Smalley779701d2012-02-09 14:13:23 -05001561 struct selinux_opt seopts[] = {
1562 { SELABEL_OPT_PATH, "/file_contexts" }
1563 };
1564
1565 sehandle = selabel_open(SELABEL_CTX_FILE, seopts, 1);
1566
1567 if (!sehandle) {
Doug Zongkerfafc85b2013-07-09 12:29:45 -07001568 ui->Print("Warning: No file_contexts\n");
Stephen Smalley779701d2012-02-09 14:13:23 -05001569 }
Stephen Smalley779701d2012-02-09 14:13:23 -05001570
Doug Zongkerdaefc1d2011-10-31 09:34:15 -07001571 device->StartRecovery();
Doug Zongkerefa1bab2010-02-01 15:59:12 -08001572
Doug Zongker56c51052010-07-01 09:18:44 -07001573 printf("Command:");
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001574 for (arg = 0; arg < argc; arg++) {
Doug Zongker56c51052010-07-01 09:18:44 -07001575 printf(" \"%s\"", argv[arg]);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001576 }
Doug Zongker9b125b02010-09-22 12:01:37 -07001577 printf("\n");
1578
1579 if (update_package) {
1580 // For backwards compatibility on the cache partition only, if
1581 // we're given an old 'root' path "CACHE:foo", change it to
1582 // "/cache/foo".
1583 if (strncmp(update_package, "CACHE:", 6) == 0) {
1584 int len = strlen(update_package) + 10;
Doug Zongker28ce47c2011-10-28 10:33:05 -07001585 char* modified_path = (char*)malloc(len);
Jeremy Compostella1b7d9b72015-07-29 17:17:03 +02001586 if (modified_path) {
1587 strlcpy(modified_path, "/cache/", len);
1588 strlcat(modified_path, update_package+6, len);
1589 printf("(replacing path \"%s\" with \"%s\")\n",
1590 update_package, modified_path);
1591 update_package = modified_path;
1592 }
1593 else
1594 printf("modified_path allocation failed\n");
Doug Zongker9b125b02010-09-22 12:01:37 -07001595 }
1596 }
1597 printf("\n");
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001598
1599 property_list(print_property, NULL);
Doug Zongker56c51052010-07-01 09:18:44 -07001600 printf("\n");
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001601
Elliott Hughesbb78d622015-04-09 20:51:08 -07001602 ui->Print("Supported API: %d\n", RECOVERY_API_VERSION);
1603
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001604 int status = INSTALL_SUCCESS;
1605
Doug Zongker540d57f2011-01-18 13:36:58 -08001606 if (update_package != NULL) {
Tao Bao56870012016-04-29 15:37:05 -07001607 // It's not entirely true that we will modify the flash. But we want
1608 // to log the update attempt since update_package is non-NULL.
1609 modified_flash = true;
1610
Yabin Cui99281df2016-02-17 12:21:52 -08001611 if (!is_battery_ok()) {
1612 ui->Print("battery capacity is not enough for installing package, needed is %d%%\n",
1613 BATTERY_OK_PERCENTAGE);
Tianjie Xu16255832016-04-30 11:49:59 -07001614 // Log the error code to last_install when installation skips due to
1615 // low battery.
1616 FILE* install_log = fopen_path(LAST_INSTALL_FILE, "w");
1617 if (install_log != nullptr) {
1618 fprintf(install_log, "%s\n", update_package);
1619 fprintf(install_log, "0\n");
1620 fprintf(install_log, "error: %d\n", kLowBattery);
1621 fclose(install_log);
1622 } else {
1623 LOGE("failed to open last_install: %s\n", strerror(errno));
1624 }
Yabin Cui99281df2016-02-17 12:21:52 -08001625 status = INSTALL_SKIPPED;
1626 } else {
1627 status = install_package(update_package, &should_wipe_cache,
Tianjie Xu16255832016-04-30 11:49:59 -07001628 TEMPORARY_INSTALL_FILE, true, retry_count);
Yabin Cui99281df2016-02-17 12:21:52 -08001629 if (status == INSTALL_SUCCESS && should_wipe_cache) {
1630 wipe_cache(false, device);
1631 }
1632 if (status != INSTALL_SUCCESS) {
1633 ui->Print("Installation aborted.\n");
Tianjie Xufa12b972016-02-05 18:25:58 -08001634 // When I/O error happens, reboot and retry installation EIO_RETRY_COUNT
1635 // times before we abandon this OTA update.
1636 if (status == INSTALL_RETRY && retry_count < EIO_RETRY_COUNT) {
1637 copy_logs();
1638 set_retry_bootloader_message(retry_count, argc, argv);
1639 // Print retry count on screen.
1640 ui->Print("Retry attempt %d\n", retry_count);
Doug Zongker7c3ae452013-05-14 11:03:02 -07001641
Tianjie Xufa12b972016-02-05 18:25:58 -08001642 // Reboot and retry the update
1643 int ret = property_set(ANDROID_RB_PROPERTY, "reboot,recovery");
1644 if (ret < 0) {
1645 ui->Print("Reboot failed\n");
1646 } else {
1647 while (true) {
1648 pause();
1649 }
1650 }
1651 }
Yabin Cui99281df2016-02-17 12:21:52 -08001652 // If this is an eng or userdebug build, then automatically
1653 // turn the text display on if the script fails so the error
1654 // message is visible.
1655 if (is_ro_debuggable()) {
1656 ui->ShowText(true);
1657 }
Doug Zongker7c3ae452013-05-14 11:03:02 -07001658 }
1659 }
Tao Baoe39a9bc2015-03-31 12:19:05 -07001660 } else if (should_wipe_data) {
1661 if (!wipe_data(false, device)) {
1662 status = INSTALL_ERROR;
1663 }
Tao Baoc679f932015-03-30 09:43:49 -07001664 } else if (should_wipe_cache) {
Tao Baoe39a9bc2015-03-31 12:19:05 -07001665 if (!wipe_cache(false, device)) {
1666 status = INSTALL_ERROR;
1667 }
Tao Bao108ab212016-06-10 10:13:32 -07001668 } else if (should_wipe_ab) {
Yabin Cui6faf0262016-06-09 14:09:39 -07001669 if (!wipe_ab_device(wipe_package_size)) {
Tao Baob0838182016-06-02 11:16:50 -07001670 status = INSTALL_ERROR;
1671 }
Tao Baoc679f932015-03-30 09:43:49 -07001672 } else if (sideload) {
1673 // 'adb reboot sideload' acts the same as user presses key combinations
1674 // to enter the sideload mode. When 'sideload-auto-reboot' is used, text
1675 // display will NOT be turned on by default. And it will reboot after
1676 // sideload finishes even if there are errors. Unless one turns on the
1677 // text display during the installation. This is to enable automated
1678 // testing.
1679 if (!sideload_auto_reboot) {
1680 ui->ShowText(true);
1681 }
1682 status = apply_from_adb(ui, &should_wipe_cache, TEMPORARY_INSTALL_FILE);
1683 if (status == INSTALL_SUCCESS && should_wipe_cache) {
Tao Baoe39a9bc2015-03-31 12:19:05 -07001684 if (!wipe_cache(false, device)) {
1685 status = INSTALL_ERROR;
1686 }
Tao Baoc679f932015-03-30 09:43:49 -07001687 }
1688 ui->Print("\nInstall from ADB complete (status: %d).\n", status);
1689 if (sideload_auto_reboot) {
1690 ui->Print("Rebooting automatically.\n");
1691 }
Doug Zongkere5d5ac72012-04-12 11:01:22 -07001692 } else if (!just_exit) {
Doug Zongker02ec6b82012-08-22 17:26:40 -07001693 status = INSTALL_NONE; // No command specified
1694 ui->SetBackground(RecoveryUI::NO_COMMAND);
Tao Bao785d22c2015-05-04 09:34:29 -07001695
1696 // http://b/17489952
1697 // If this is an eng or userdebug build, automatically turn on the
1698 // text display if no command is specified.
1699 if (is_ro_debuggable()) {
1700 ui->ShowText(true);
1701 }
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001702 }
1703
Tao Baoc679f932015-03-30 09:43:49 -07001704 if (!sideload_auto_reboot && (status == INSTALL_ERROR || status == INSTALL_CORRUPT)) {
Doug Zongkerf24fd7e2013-07-02 11:43:25 -07001705 copy_logs();
Doug Zongker02ec6b82012-08-22 17:26:40 -07001706 ui->SetBackground(RecoveryUI::ERROR);
1707 }
Tao Baoc679f932015-03-30 09:43:49 -07001708
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001709 Device::BuiltinAction after = shutdown_after ? Device::SHUTDOWN : Device::REBOOT;
Yabin Cui99281df2016-02-17 12:21:52 -08001710 if ((status != INSTALL_SUCCESS && status != INSTALL_SKIPPED && !sideload_auto_reboot) ||
1711 ui->IsTextVisible()) {
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001712 Device::BuiltinAction temp = prompt_and_wait(device, status);
Tao Baoc679f932015-03-30 09:43:49 -07001713 if (temp != Device::NO_ACTION) {
1714 after = temp;
1715 }
Doug Zongker8674a722010-09-15 11:08:23 -07001716 }
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001717
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001718 // Save logs and clean up before rebooting or shutting down.
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001719 finish_recovery(send_intent);
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001720
1721 switch (after) {
1722 case Device::SHUTDOWN:
1723 ui->Print("Shutting down...\n");
1724 property_set(ANDROID_RB_PROPERTY, "shutdown,");
1725 break;
1726
1727 case Device::REBOOT_BOOTLOADER:
1728 ui->Print("Rebooting to bootloader...\n");
1729 property_set(ANDROID_RB_PROPERTY, "reboot,bootloader");
1730 break;
1731
1732 default:
1733 ui->Print("Rebooting...\n");
1734 property_set(ANDROID_RB_PROPERTY, "reboot,");
1735 break;
Doug Zongkerb1d12632014-03-18 10:32:12 -07001736 }
Tao Bao75238632015-05-27 14:46:17 -07001737 while (true) {
1738 pause();
1739 }
1740 // Should be unreachable.
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001741 return EXIT_SUCCESS;
1742}