blob: 17e9eb66f123f266a301f298515a94e565d7b2df [file] [log] [blame]
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001/*
2 * Copyright (C) 2007 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17#include <ctype.h>
Doug Zongker7c3ae452013-05-14 11:03:02 -070018#include <dirent.h>
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080019#include <errno.h>
20#include <fcntl.h>
21#include <getopt.h>
22#include <limits.h>
23#include <linux/input.h>
Doug Zongker7c3ae452013-05-14 11:03:02 -070024#include <stdarg.h>
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080025#include <stdio.h>
26#include <stdlib.h>
27#include <string.h>
Patrick Tjincd055ee2014-12-09 11:26:40 -080028#include <sys/klog.h>
Doug Zongker23ceeea2010-07-08 17:27:55 -070029#include <sys/stat.h>
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080030#include <sys/types.h>
Tao Baocdcf28f2016-01-13 15:05:20 -080031#include <sys/wait.h>
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080032#include <time.h>
33#include <unistd.h>
34
Tao Bao04ca4262015-09-10 15:32:24 -070035#include <chrono>
36
Tao Bao75238632015-05-27 14:46:17 -070037#include <adb.h>
Elliott Hughes4b166f02015-12-04 15:30:20 -080038#include <android-base/file.h>
39#include <android-base/stringprintf.h>
Tao Bao75238632015-05-27 14:46:17 -070040#include <cutils/android_reboot.h>
41#include <cutils/properties.h>
Tao Baobef39712015-05-04 18:50:27 -070042
Tao Bao75238632015-05-27 14:46:17 -070043#include "adb_install.h"
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080044#include "bootloader.h"
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080045#include "common.h"
Tao Bao75238632015-05-27 14:46:17 -070046#include "device.h"
47#include "fuse_sdcard_provider.h"
48#include "fuse_sideload.h"
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080049#include "install.h"
50#include "minui/minui.h"
51#include "minzip/DirUtil.h"
52#include "roots.h"
Doug Zongker28ce47c2011-10-28 10:33:05 -070053#include "ui.h"
Doug Zongker211aebc2011-10-28 15:13:10 -070054#include "screen_ui.h"
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080055
Stephen Smalley779701d2012-02-09 14:13:23 -050056struct selabel_handle *sehandle;
57
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080058static const struct option OPTIONS[] = {
Tao Baoc679f932015-03-30 09:43:49 -070059 { "send_intent", required_argument, NULL, 'i' },
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080060 { "update_package", required_argument, NULL, 'u' },
61 { "wipe_data", no_argument, NULL, 'w' },
62 { "wipe_cache", no_argument, NULL, 'c' },
Doug Zongker4bc98062010-09-03 11:00:13 -070063 { "show_text", no_argument, NULL, 't' },
Tao Baoc679f932015-03-30 09:43:49 -070064 { "sideload", no_argument, NULL, 's' },
65 { "sideload_auto_reboot", no_argument, NULL, 'a' },
Doug Zongkere5d5ac72012-04-12 11:01:22 -070066 { "just_exit", no_argument, NULL, 'x' },
Doug Zongker02ec6b82012-08-22 17:26:40 -070067 { "locale", required_argument, NULL, 'l' },
Doug Zongkerc87bab12013-11-25 13:53:25 -080068 { "stages", required_argument, NULL, 'g' },
Doug Zongkerb1d12632014-03-18 10:32:12 -070069 { "shutdown_after", no_argument, NULL, 'p' },
Jeff Sharkeya6e13ae2014-09-24 11:46:17 -070070 { "reason", required_argument, NULL, 'r' },
Doug Zongker988500b2009-10-06 14:41:38 -070071 { NULL, 0, NULL, 0 },
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080072};
73
Doug Zongker6d0d7ac2013-07-09 13:34:55 -070074static const char *CACHE_LOG_DIR = "/cache/recovery";
Doug Zongkerd4208f92010-09-20 12:16:13 -070075static const char *COMMAND_FILE = "/cache/recovery/command";
76static const char *INTENT_FILE = "/cache/recovery/intent";
77static const char *LOG_FILE = "/cache/recovery/log";
Doug Zongkerd0181b82011-10-19 10:51:12 -070078static const char *LAST_INSTALL_FILE = "/cache/recovery/last_install";
Doug Zongker8b240cc2012-08-29 15:19:29 -070079static const char *LOCALE_FILE = "/cache/recovery/last_locale";
Michael Ward9d2629c2011-06-23 22:14:24 -070080static const char *CACHE_ROOT = "/cache";
Doug Zongkerd4208f92010-09-20 12:16:13 -070081static const char *SDCARD_ROOT = "/sdcard";
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080082static const char *TEMPORARY_LOG_FILE = "/tmp/recovery.log";
Doug Zongkerd0181b82011-10-19 10:51:12 -070083static const char *TEMPORARY_INSTALL_FILE = "/tmp/last_install";
Tao Baof0124322015-04-11 02:04:11 +000084static const char *LAST_KMSG_FILE = "/cache/recovery/last_kmsg";
Tao Baobef39712015-05-04 18:50:27 -070085static const char *LAST_LOG_FILE = "/cache/recovery/last_log";
86static const int KEEP_LOG_COUNT = 10;
Nick Kralevicha9ad0322014-10-22 18:38:48 -070087
Doug Zongker211aebc2011-10-28 15:13:10 -070088RecoveryUI* ui = NULL;
Doug Zongker02ec6b82012-08-22 17:26:40 -070089char* locale = NULL;
Doug Zongkerc87bab12013-11-25 13:53:25 -080090char* stage = NULL;
Jeff Sharkeya6e13ae2014-09-24 11:46:17 -070091char* reason = NULL;
Tao Bao682c34b2015-04-07 17:16:35 -070092bool modified_flash = false;
Doug Zongker211aebc2011-10-28 15:13:10 -070093
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080094/*
95 * The recovery tool communicates with the main system through /cache files.
96 * /cache/recovery/command - INPUT - command line for tool, one arg per line
97 * /cache/recovery/log - OUTPUT - combined log file from recovery run(s)
98 * /cache/recovery/intent - OUTPUT - intent that was passed in
99 *
100 * The arguments which may be supplied in the recovery.command file:
101 * --send_intent=anystring - write the text out to recovery.intent
Doug Zongkerd4208f92010-09-20 12:16:13 -0700102 * --update_package=path - verify install an OTA package file
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800103 * --wipe_data - erase user data (and cache), then reboot
104 * --wipe_cache - wipe cache (but not user data), then reboot
Oscar Montemayor05231562009-11-30 08:40:57 -0800105 * --set_encrypted_filesystem=on|off - enables / diasables encrypted fs
Doug Zongkere5d5ac72012-04-12 11:01:22 -0700106 * --just_exit - do nothing; exit and reboot
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800107 *
108 * After completing, we remove /cache/recovery/command and reboot.
109 * Arguments may also be supplied in the bootloader control block (BCB).
110 * These important scenarios must be safely restartable at any point:
111 *
112 * FACTORY RESET
113 * 1. user selects "factory reset"
114 * 2. main system writes "--wipe_data" to /cache/recovery/command
115 * 3. main system reboots into recovery
116 * 4. get_args() writes BCB with "boot-recovery" and "--wipe_data"
117 * -- after this, rebooting will restart the erase --
Doug Zongkerd4208f92010-09-20 12:16:13 -0700118 * 5. erase_volume() reformats /data
119 * 6. erase_volume() reformats /cache
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800120 * 7. finish_recovery() erases BCB
121 * -- after this, rebooting will restart the main system --
122 * 8. main() calls reboot() to boot main system
123 *
124 * OTA INSTALL
125 * 1. main system downloads OTA package to /cache/some-filename.zip
Doug Zongker9b125b02010-09-22 12:01:37 -0700126 * 2. main system writes "--update_package=/cache/some-filename.zip"
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800127 * 3. main system reboots into recovery
128 * 4. get_args() writes BCB with "boot-recovery" and "--update_package=..."
129 * -- after this, rebooting will attempt to reinstall the update --
130 * 5. install_package() attempts to install the update
131 * NOTE: the package install must itself be restartable from any point
132 * 6. finish_recovery() erases BCB
133 * -- after this, rebooting will (try to) restart the main system --
134 * 7. ** if install failed **
135 * 7a. prompt_and_wait() shows an error icon and waits for the user
136 * 7b; the user reboots (pulling the battery, etc) into the main system
137 * 8. main() calls maybe_install_firmware_update()
138 * ** if the update contained radio/hboot firmware **:
139 * 8a. m_i_f_u() writes BCB with "boot-recovery" and "--wipe_cache"
140 * -- after this, rebooting will reformat cache & restart main system --
141 * 8b. m_i_f_u() writes firmware image into raw cache partition
142 * 8c. m_i_f_u() writes BCB with "update-radio/hboot" and "--wipe_cache"
143 * -- after this, rebooting will attempt to reinstall firmware --
144 * 8d. bootloader tries to flash firmware
145 * 8e. bootloader writes BCB with "boot-recovery" (keeping "--wipe_cache")
146 * -- after this, rebooting will reformat cache & restart main system --
Doug Zongkerd4208f92010-09-20 12:16:13 -0700147 * 8f. erase_volume() reformats /cache
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800148 * 8g. finish_recovery() erases BCB
149 * -- after this, rebooting will (try to) restart the main system --
150 * 9. main() calls reboot() to boot main system
151 */
152
153static const int MAX_ARG_LENGTH = 4096;
154static const int MAX_ARGS = 100;
155
Doug Zongkerd4208f92010-09-20 12:16:13 -0700156// open a given path, mounting partitions as necessary
Tao Bao04ca4262015-09-10 15:32:24 -0700157FILE* fopen_path(const char *path, const char *mode) {
Doug Zongkerd4208f92010-09-20 12:16:13 -0700158 if (ensure_path_mounted(path) != 0) {
159 LOGE("Can't mount %s\n", path);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800160 return NULL;
161 }
162
163 // When writing, try to create the containing directory, if necessary.
164 // Use generous permissions, the system (init.rc) will reset them.
Stephen Smalley779701d2012-02-09 14:13:23 -0500165 if (strchr("wa", mode[0])) dirCreateHierarchy(path, 0777, NULL, 1, sehandle);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800166
167 FILE *fp = fopen(path, mode);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800168 return fp;
169}
170
Tao Bao04ca4262015-09-10 15:32:24 -0700171// close a file, log an error if the error indicator is set
172static void check_and_fclose(FILE *fp, const char *name) {
173 fflush(fp);
174 if (ferror(fp)) LOGE("Error in %s\n(%s)\n", name, strerror(errno));
175 fclose(fp);
176}
177
Elliott Hughesf14af802015-02-10 14:46:14 -0800178bool is_ro_debuggable() {
179 char value[PROPERTY_VALUE_MAX+1];
180 return (property_get("ro.debuggable", value, NULL) == 1 && value[0] == '1');
181}
182
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700183static void redirect_stdio(const char* filename) {
Tao Bao04ca4262015-09-10 15:32:24 -0700184 int pipefd[2];
185 if (pipe(pipefd) == -1) {
186 LOGE("pipe failed: %s\n", strerror(errno));
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700187
Tao Bao04ca4262015-09-10 15:32:24 -0700188 // Fall back to traditional logging mode without timestamps.
189 // If these fail, there's not really anywhere to complain...
190 freopen(filename, "a", stdout); setbuf(stdout, NULL);
191 freopen(filename, "a", stderr); setbuf(stderr, NULL);
192
193 return;
194 }
195
196 pid_t pid = fork();
197 if (pid == -1) {
198 LOGE("fork failed: %s\n", strerror(errno));
199
200 // Fall back to traditional logging mode without timestamps.
201 // If these fail, there's not really anywhere to complain...
202 freopen(filename, "a", stdout); setbuf(stdout, NULL);
203 freopen(filename, "a", stderr); setbuf(stderr, NULL);
204
205 return;
206 }
207
208 if (pid == 0) {
209 /// Close the unused write end.
210 close(pipefd[1]);
211
212 auto start = std::chrono::steady_clock::now();
213
214 // Child logger to actually write to the log file.
215 FILE* log_fp = fopen(filename, "a");
216 if (log_fp == nullptr) {
217 LOGE("fopen \"%s\" failed: %s\n", filename, strerror(errno));
218 close(pipefd[0]);
219 _exit(1);
220 }
221
222 FILE* pipe_fp = fdopen(pipefd[0], "r");
223 if (pipe_fp == nullptr) {
224 LOGE("fdopen failed: %s\n", strerror(errno));
225 check_and_fclose(log_fp, filename);
226 close(pipefd[0]);
227 _exit(1);
228 }
229
230 char* line = nullptr;
231 size_t len = 0;
232 while (getline(&line, &len, pipe_fp) != -1) {
233 auto now = std::chrono::steady_clock::now();
234 double duration = std::chrono::duration_cast<std::chrono::duration<double>>(
235 now - start).count();
236 if (line[0] == '\n') {
237 fprintf(log_fp, "[%12.6lf]\n", duration);
238 } else {
239 fprintf(log_fp, "[%12.6lf] %s", duration, line);
240 }
241 fflush(log_fp);
242 }
243
244 LOGE("getline failed: %s\n", strerror(errno));
245
246 free(line);
247 check_and_fclose(log_fp, filename);
248 close(pipefd[0]);
249 _exit(1);
250 } else {
251 // Redirect stdout/stderr to the logger process.
252 // Close the unused read end.
253 close(pipefd[0]);
254
255 setbuf(stdout, nullptr);
256 setbuf(stderr, nullptr);
257
258 if (dup2(pipefd[1], STDOUT_FILENO) == -1) {
259 LOGE("dup2 stdout failed: %s\n", strerror(errno));
260 }
261 if (dup2(pipefd[1], STDERR_FILENO) == -1) {
262 LOGE("dup2 stderr failed: %s\n", strerror(errno));
263 }
264
265 close(pipefd[1]);
266 }
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800267}
268
269// command line args come from, in decreasing precedence:
270// - the actual command line
271// - the bootloader control block (one per line, after "recovery")
272// - the contents of COMMAND_FILE (one per line)
273static void
274get_args(int *argc, char ***argv) {
275 struct bootloader_message boot;
276 memset(&boot, 0, sizeof(boot));
277 get_bootloader_message(&boot); // this may fail, leaving a zeroed structure
Doug Zongkerc87bab12013-11-25 13:53:25 -0800278 stage = strndup(boot.stage, sizeof(boot.stage));
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800279
280 if (boot.command[0] != 0 && boot.command[0] != 255) {
Mark Salyzynf3bb31c2014-03-14 09:39:48 -0700281 LOGI("Boot command: %.*s\n", (int)sizeof(boot.command), boot.command);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800282 }
283
284 if (boot.status[0] != 0 && boot.status[0] != 255) {
Mark Salyzynf3bb31c2014-03-14 09:39:48 -0700285 LOGI("Boot status: %.*s\n", (int)sizeof(boot.status), boot.status);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800286 }
287
288 // --- if arguments weren't supplied, look in the bootloader control block
289 if (*argc <= 1) {
290 boot.recovery[sizeof(boot.recovery) - 1] = '\0'; // Ensure termination
291 const char *arg = strtok(boot.recovery, "\n");
292 if (arg != NULL && !strcmp(arg, "recovery")) {
293 *argv = (char **) malloc(sizeof(char *) * MAX_ARGS);
294 (*argv)[0] = strdup(arg);
295 for (*argc = 1; *argc < MAX_ARGS; ++*argc) {
296 if ((arg = strtok(NULL, "\n")) == NULL) break;
297 (*argv)[*argc] = strdup(arg);
298 }
299 LOGI("Got arguments from boot message\n");
300 } else if (boot.recovery[0] != 0 && boot.recovery[0] != 255) {
301 LOGE("Bad boot message\n\"%.20s\"\n", boot.recovery);
302 }
303 }
304
305 // --- if that doesn't work, try the command file
306 if (*argc <= 1) {
Doug Zongkerd4208f92010-09-20 12:16:13 -0700307 FILE *fp = fopen_path(COMMAND_FILE, "r");
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800308 if (fp != NULL) {
Jin Feng93ffa752013-06-04 17:46:24 +0800309 char *token;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800310 char *argv0 = (*argv)[0];
311 *argv = (char **) malloc(sizeof(char *) * MAX_ARGS);
312 (*argv)[0] = argv0; // use the same program name
313
314 char buf[MAX_ARG_LENGTH];
315 for (*argc = 1; *argc < MAX_ARGS; ++*argc) {
316 if (!fgets(buf, sizeof(buf), fp)) break;
Jin Feng93ffa752013-06-04 17:46:24 +0800317 token = strtok(buf, "\r\n");
318 if (token != NULL) {
319 (*argv)[*argc] = strdup(token); // Strip newline.
320 } else {
321 --*argc;
322 }
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800323 }
324
325 check_and_fclose(fp, COMMAND_FILE);
326 LOGI("Got arguments from %s\n", COMMAND_FILE);
327 }
328 }
329
330 // --> write the arguments we have back into the bootloader control block
331 // always boot into recovery after this (until finish_recovery() is called)
332 strlcpy(boot.command, "boot-recovery", sizeof(boot.command));
333 strlcpy(boot.recovery, "recovery\n", sizeof(boot.recovery));
334 int i;
335 for (i = 1; i < *argc; ++i) {
336 strlcat(boot.recovery, (*argv)[i], sizeof(boot.recovery));
337 strlcat(boot.recovery, "\n", sizeof(boot.recovery));
338 }
339 set_bootloader_message(&boot);
340}
341
Doug Zongker34c98df2009-08-18 12:05:45 -0700342static void
Oscar Montemayor05231562009-11-30 08:40:57 -0800343set_sdcard_update_bootloader_message() {
Doug Zongker34c98df2009-08-18 12:05:45 -0700344 struct bootloader_message boot;
345 memset(&boot, 0, sizeof(boot));
346 strlcpy(boot.command, "boot-recovery", sizeof(boot.command));
347 strlcpy(boot.recovery, "recovery\n", sizeof(boot.recovery));
348 set_bootloader_message(&boot);
349}
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800350
Tao Baobef39712015-05-04 18:50:27 -0700351// Read from kernel log into buffer and write out to file.
352static void save_kernel_log(const char* destination) {
353 int klog_buf_len = klogctl(KLOG_SIZE_BUFFER, 0, 0);
Patrick Tjincd055ee2014-12-09 11:26:40 -0800354 if (klog_buf_len <= 0) {
Tao Baobef39712015-05-04 18:50:27 -0700355 LOGE("Error getting klog size: %s\n", strerror(errno));
Patrick Tjincd055ee2014-12-09 11:26:40 -0800356 return;
357 }
358
Tao Baobef39712015-05-04 18:50:27 -0700359 std::string buffer(klog_buf_len, 0);
360 int n = klogctl(KLOG_READ_ALL, &buffer[0], klog_buf_len);
361 if (n == -1) {
362 LOGE("Error in reading klog: %s\n", strerror(errno));
Patrick Tjincd055ee2014-12-09 11:26:40 -0800363 return;
364 }
Tao Baobef39712015-05-04 18:50:27 -0700365 buffer.resize(n);
366 android::base::WriteStringToFile(buffer, destination);
Patrick Tjincd055ee2014-12-09 11:26:40 -0800367}
368
Tao Baof0124322015-04-11 02:04:11 +0000369// How much of the temp log we have copied to the copy in cache.
370static long tmplog_offset = 0;
371
Tao Baobef39712015-05-04 18:50:27 -0700372static void copy_log_file(const char* source, const char* destination, bool append) {
373 FILE* dest_fp = fopen_path(destination, append ? "a" : "w");
374 if (dest_fp == nullptr) {
Doug Zongker2c3539e2010-09-29 13:21:30 -0700375 LOGE("Can't open %s\n", destination);
376 } else {
Tao Baobef39712015-05-04 18:50:27 -0700377 FILE* source_fp = fopen(source, "r");
378 if (source_fp != nullptr) {
Tao Baof0124322015-04-11 02:04:11 +0000379 if (append) {
Tao Baobef39712015-05-04 18:50:27 -0700380 fseek(source_fp, tmplog_offset, SEEK_SET); // Since last write
Doug Zongker2c3539e2010-09-29 13:21:30 -0700381 }
382 char buf[4096];
Tao Baobef39712015-05-04 18:50:27 -0700383 size_t bytes;
384 while ((bytes = fread(buf, 1, sizeof(buf), source_fp)) != 0) {
385 fwrite(buf, 1, bytes, dest_fp);
Doug Zongker2c3539e2010-09-29 13:21:30 -0700386 }
Tao Baobef39712015-05-04 18:50:27 -0700387 if (append) {
388 tmplog_offset = ftell(source_fp);
389 }
390 check_and_fclose(source_fp, source);
Doug Zongker2c3539e2010-09-29 13:21:30 -0700391 }
Tao Baobef39712015-05-04 18:50:27 -0700392 check_and_fclose(dest_fp, destination);
Doug Zongker2c3539e2010-09-29 13:21:30 -0700393 }
394}
395
Tao Baobef39712015-05-04 18:50:27 -0700396// Rename last_log -> last_log.1 -> last_log.2 -> ... -> last_log.$max.
397// Similarly rename last_kmsg -> last_kmsg.1 -> ... -> last_kmsg.$max.
398// Overwrite any existing last_log.$max and last_kmsg.$max.
399static void rotate_logs(int max) {
Tao Bao682c34b2015-04-07 17:16:35 -0700400 // Logs should only be rotated once.
401 static bool rotated = false;
402 if (rotated) {
403 return;
404 }
405 rotated = true;
406 ensure_path_mounted(LAST_LOG_FILE);
Tao Baobef39712015-05-04 18:50:27 -0700407 ensure_path_mounted(LAST_KMSG_FILE);
Tao Bao682c34b2015-04-07 17:16:35 -0700408
Tao Bao682c34b2015-04-07 17:16:35 -0700409 for (int i = max-1; i >= 0; --i) {
Tao Bao80e46e02015-06-03 10:49:29 -0700410 std::string old_log = android::base::StringPrintf("%s", LAST_LOG_FILE);
411 if (i > 0) {
412 old_log += "." + std::to_string(i);
413 }
Tao Baobef39712015-05-04 18:50:27 -0700414 std::string new_log = android::base::StringPrintf("%s.%d", LAST_LOG_FILE, i+1);
415 // Ignore errors if old_log doesn't exist.
416 rename(old_log.c_str(), new_log.c_str());
417
Tao Bao80e46e02015-06-03 10:49:29 -0700418 std::string old_kmsg = android::base::StringPrintf("%s", LAST_KMSG_FILE);
419 if (i > 0) {
420 old_kmsg += "." + std::to_string(i);
421 }
Tao Baobef39712015-05-04 18:50:27 -0700422 std::string new_kmsg = android::base::StringPrintf("%s.%d", LAST_KMSG_FILE, i+1);
423 rename(old_kmsg.c_str(), new_kmsg.c_str());
Doug Zongkerda1ebae2013-05-16 11:23:48 -0700424 }
425}
Doug Zongker2c3539e2010-09-29 13:21:30 -0700426
Tao Bao682c34b2015-04-07 17:16:35 -0700427static void copy_logs() {
428 // We only rotate and record the log of the current session if there are
429 // actual attempts to modify the flash, such as wipes, installs from BCB
430 // or menu selections. This is to avoid unnecessary rotation (and
431 // possible deletion) of log files, if it does not do anything loggable.
432 if (!modified_flash) {
433 return;
434 }
435
Tao Baobef39712015-05-04 18:50:27 -0700436 rotate_logs(KEEP_LOG_COUNT);
Tao Bao682c34b2015-04-07 17:16:35 -0700437
Doug Zongkerf24fd7e2013-07-02 11:43:25 -0700438 // Copy logs to cache so the system can find out what happened.
Tao Baof0124322015-04-11 02:04:11 +0000439 copy_log_file(TEMPORARY_LOG_FILE, LOG_FILE, true);
440 copy_log_file(TEMPORARY_LOG_FILE, LAST_LOG_FILE, false);
441 copy_log_file(TEMPORARY_INSTALL_FILE, LAST_INSTALL_FILE, false);
442 save_kernel_log(LAST_KMSG_FILE);
Doug Zongkerf24fd7e2013-07-02 11:43:25 -0700443 chmod(LOG_FILE, 0600);
444 chown(LOG_FILE, 1000, 1000); // system user
Tao Baof0124322015-04-11 02:04:11 +0000445 chmod(LAST_KMSG_FILE, 0600);
446 chown(LAST_KMSG_FILE, 1000, 1000); // system user
Doug Zongkerf24fd7e2013-07-02 11:43:25 -0700447 chmod(LAST_LOG_FILE, 0640);
448 chmod(LAST_INSTALL_FILE, 0644);
449 sync();
450}
451
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800452// clear the recovery command and prepare to boot a (hopefully working) system,
453// copy our log file to cache as well (for the system to read), and
454// record any intent we were asked to communicate back to the system.
455// this function is idempotent: call it as many times as you like.
456static void
Oscar Montemayor05231562009-11-30 08:40:57 -0800457finish_recovery(const char *send_intent) {
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800458 // By this point, we're ready to return to the main system...
459 if (send_intent != NULL) {
Doug Zongkerd4208f92010-09-20 12:16:13 -0700460 FILE *fp = fopen_path(INTENT_FILE, "w");
Jay Freeman (saurik)619ec2f2008-11-17 01:56:05 +0000461 if (fp == NULL) {
462 LOGE("Can't open %s\n", INTENT_FILE);
463 } else {
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800464 fputs(send_intent, fp);
465 check_and_fclose(fp, INTENT_FILE);
466 }
467 }
468
Doug Zongker4f33e552012-08-23 13:16:12 -0700469 // Save the locale to cache, so if recovery is next started up
470 // without a --locale argument (eg, directly from the bootloader)
471 // it will use the last-known locale.
472 if (locale != NULL) {
473 LOGI("Saving locale \"%s\"\n", locale);
474 FILE* fp = fopen_path(LOCALE_FILE, "w");
475 fwrite(locale, 1, strlen(locale), fp);
476 fflush(fp);
477 fsync(fileno(fp));
478 check_and_fclose(fp, LOCALE_FILE);
479 }
480
Doug Zongkerf24fd7e2013-07-02 11:43:25 -0700481 copy_logs();
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800482
Doug Zongkere5d5ac72012-04-12 11:01:22 -0700483 // Reset to normal system boot so recovery won't cycle indefinitely.
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800484 struct bootloader_message boot;
485 memset(&boot, 0, sizeof(boot));
486 set_bootloader_message(&boot);
487
488 // Remove the command file, so recovery won't repeat indefinitely.
Doug Zongkerd4208f92010-09-20 12:16:13 -0700489 if (ensure_path_mounted(COMMAND_FILE) != 0 ||
490 (unlink(COMMAND_FILE) && errno != ENOENT)) {
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800491 LOGW("Can't unlink %s\n", COMMAND_FILE);
492 }
493
Doug Zongkerd0181b82011-10-19 10:51:12 -0700494 ensure_path_unmounted(CACHE_ROOT);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800495 sync(); // For good measure.
496}
497
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700498typedef struct _saved_log_file {
499 char* name;
500 struct stat st;
501 unsigned char* data;
502 struct _saved_log_file* next;
503} saved_log_file;
504
Elliott Hughes945548e2015-06-05 17:59:56 -0700505static bool erase_volume(const char* volume) {
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700506 bool is_cache = (strcmp(volume, CACHE_ROOT) == 0);
507
Doug Zongker02ec6b82012-08-22 17:26:40 -0700508 ui->SetBackground(RecoveryUI::ERASING);
Doug Zongker211aebc2011-10-28 15:13:10 -0700509 ui->SetProgressType(RecoveryUI::INDETERMINATE);
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700510
511 saved_log_file* head = NULL;
512
513 if (is_cache) {
Tao Baobef39712015-05-04 18:50:27 -0700514 // If we're reformatting /cache, we load any past logs
515 // (i.e. "/cache/recovery/last_*") and the current log
516 // ("/cache/recovery/log") into memory, so we can restore them after
517 // the reformat.
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700518
519 ensure_path_mounted(volume);
520
521 DIR* d;
522 struct dirent* de;
523 d = opendir(CACHE_LOG_DIR);
524 if (d) {
525 char path[PATH_MAX];
526 strcpy(path, CACHE_LOG_DIR);
527 strcat(path, "/");
528 int path_len = strlen(path);
529 while ((de = readdir(d)) != NULL) {
Tao Baobef39712015-05-04 18:50:27 -0700530 if (strncmp(de->d_name, "last_", 5) == 0 || strcmp(de->d_name, "log") == 0) {
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700531 saved_log_file* p = (saved_log_file*) malloc(sizeof(saved_log_file));
532 strcpy(path+path_len, de->d_name);
533 p->name = strdup(path);
534 if (stat(path, &(p->st)) == 0) {
535 // truncate files to 512kb
536 if (p->st.st_size > (1 << 19)) {
537 p->st.st_size = 1 << 19;
538 }
539 p->data = (unsigned char*) malloc(p->st.st_size);
540 FILE* f = fopen(path, "rb");
541 fread(p->data, 1, p->st.st_size, f);
542 fclose(f);
543 p->next = head;
544 head = p;
545 } else {
546 free(p);
547 }
548 }
549 }
550 closedir(d);
551 } else {
552 if (errno != ENOENT) {
553 printf("opendir failed: %s\n", strerror(errno));
554 }
555 }
556 }
557
Doug Zongker211aebc2011-10-28 15:13:10 -0700558 ui->Print("Formatting %s...\n", volume);
Doug Zongker2c3539e2010-09-29 13:21:30 -0700559
Doug Zongkerd0181b82011-10-19 10:51:12 -0700560 ensure_path_unmounted(volume);
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700561 int result = format_volume(volume);
Doug Zongkerd0181b82011-10-19 10:51:12 -0700562
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700563 if (is_cache) {
564 while (head) {
565 FILE* f = fopen_path(head->name, "wb");
566 if (f) {
567 fwrite(head->data, 1, head->st.st_size, f);
568 fclose(f);
569 chmod(head->name, head->st.st_mode);
570 chown(head->name, head->st.st_uid, head->st.st_gid);
571 }
572 free(head->name);
573 free(head->data);
574 saved_log_file* temp = head->next;
575 free(head);
576 head = temp;
577 }
578
Tao Baof0124322015-04-11 02:04:11 +0000579 // Any part of the log we'd copied to cache is now gone.
580 // Reset the pointer so we copy from the beginning of the temp
581 // log.
582 tmplog_offset = 0;
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700583 copy_logs();
Doug Zongker2c3539e2010-09-29 13:21:30 -0700584 }
585
Elliott Hughes945548e2015-06-05 17:59:56 -0700586 return (result == 0);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800587}
588
Doug Zongkerf93d8162009-09-22 15:16:02 -0700589static int
Doug Zongker28ce47c2011-10-28 10:33:05 -0700590get_menu_selection(const char* const * headers, const char* const * items,
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700591 int menu_only, int initial_selection, Device* device) {
Doug Zongkerf93d8162009-09-22 15:16:02 -0700592 // throw away keys pressed previously, so user doesn't
593 // accidentally trigger menu items.
Doug Zongker211aebc2011-10-28 15:13:10 -0700594 ui->FlushKeys();
Doug Zongkerf93d8162009-09-22 15:16:02 -0700595
Doug Zongker211aebc2011-10-28 15:13:10 -0700596 ui->StartMenu(headers, items, initial_selection);
Doug Zongker8674a722010-09-15 11:08:23 -0700597 int selected = initial_selection;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800598 int chosen_item = -1;
599
Doug Zongkerf93d8162009-09-22 15:16:02 -0700600 while (chosen_item < 0) {
Doug Zongker211aebc2011-10-28 15:13:10 -0700601 int key = ui->WaitKey();
602 int visible = ui->IsTextVisible();
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800603
Doug Zongker5cae4452011-01-25 13:15:30 -0800604 if (key == -1) { // ui_wait_key() timed out
Doug Zongker211aebc2011-10-28 15:13:10 -0700605 if (ui->WasTextEverVisible()) {
Doug Zongker5cae4452011-01-25 13:15:30 -0800606 continue;
607 } else {
608 LOGI("timed out waiting for key input; rebooting.\n");
Doug Zongker211aebc2011-10-28 15:13:10 -0700609 ui->EndMenu();
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700610 return 0; // XXX fixme
Doug Zongker5cae4452011-01-25 13:15:30 -0800611 }
612 }
613
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700614 int action = device->HandleMenuKey(key, visible);
Doug Zongkerddd6a282009-06-09 12:22:33 -0700615
616 if (action < 0) {
617 switch (action) {
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700618 case Device::kHighlightUp:
Elliott Hughes642aaa72015-04-10 12:47:46 -0700619 selected = ui->SelectMenu(--selected);
Doug Zongkerddd6a282009-06-09 12:22:33 -0700620 break;
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700621 case Device::kHighlightDown:
Elliott Hughes642aaa72015-04-10 12:47:46 -0700622 selected = ui->SelectMenu(++selected);
Doug Zongkerddd6a282009-06-09 12:22:33 -0700623 break;
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700624 case Device::kInvokeItem:
Doug Zongkerddd6a282009-06-09 12:22:33 -0700625 chosen_item = selected;
626 break;
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700627 case Device::kNoAction:
Doug Zongkerddd6a282009-06-09 12:22:33 -0700628 break;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800629 }
Doug Zongkerf93d8162009-09-22 15:16:02 -0700630 } else if (!menu_only) {
Doug Zongkerddd6a282009-06-09 12:22:33 -0700631 chosen_item = action;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800632 }
Doug Zongkerf93d8162009-09-22 15:16:02 -0700633 }
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800634
Doug Zongker211aebc2011-10-28 15:13:10 -0700635 ui->EndMenu();
Doug Zongkerf93d8162009-09-22 15:16:02 -0700636 return chosen_item;
637}
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800638
Doug Zongker8674a722010-09-15 11:08:23 -0700639static int compare_string(const void* a, const void* b) {
640 return strcmp(*(const char**)a, *(const char**)b);
641}
642
Doug Zongker93950222014-07-08 14:10:23 -0700643// Returns a malloc'd path, or NULL.
Elliott Hughes30694c92015-03-25 15:16:51 -0700644static char* browse_directory(const char* path, Device* device) {
Michael Ward9d2629c2011-06-23 22:14:24 -0700645 ensure_path_mounted(path);
Doug Zongkerc18eeb82010-09-21 16:49:26 -0700646
Elliott Hughes30694c92015-03-25 15:16:51 -0700647 DIR* d = opendir(path);
Doug Zongker8674a722010-09-15 11:08:23 -0700648 if (d == NULL) {
649 LOGE("error opening %s: %s\n", path, strerror(errno));
Doug Zongker93950222014-07-08 14:10:23 -0700650 return NULL;
Doug Zongker8674a722010-09-15 11:08:23 -0700651 }
652
Doug Zongker8674a722010-09-15 11:08:23 -0700653 int d_size = 0;
654 int d_alloc = 10;
Doug Zongker28ce47c2011-10-28 10:33:05 -0700655 char** dirs = (char**)malloc(d_alloc * sizeof(char*));
Doug Zongker8674a722010-09-15 11:08:23 -0700656 int z_size = 1;
657 int z_alloc = 10;
Doug Zongker28ce47c2011-10-28 10:33:05 -0700658 char** zips = (char**)malloc(z_alloc * sizeof(char*));
Doug Zongker8674a722010-09-15 11:08:23 -0700659 zips[0] = strdup("../");
660
Elliott Hughes30694c92015-03-25 15:16:51 -0700661 struct dirent* de;
Doug Zongker8674a722010-09-15 11:08:23 -0700662 while ((de = readdir(d)) != NULL) {
663 int name_len = strlen(de->d_name);
664
665 if (de->d_type == DT_DIR) {
666 // skip "." and ".." entries
667 if (name_len == 1 && de->d_name[0] == '.') continue;
668 if (name_len == 2 && de->d_name[0] == '.' &&
669 de->d_name[1] == '.') continue;
670
671 if (d_size >= d_alloc) {
672 d_alloc *= 2;
Doug Zongker28ce47c2011-10-28 10:33:05 -0700673 dirs = (char**)realloc(dirs, d_alloc * sizeof(char*));
Doug Zongker8674a722010-09-15 11:08:23 -0700674 }
Doug Zongker28ce47c2011-10-28 10:33:05 -0700675 dirs[d_size] = (char*)malloc(name_len + 2);
Doug Zongker8674a722010-09-15 11:08:23 -0700676 strcpy(dirs[d_size], de->d_name);
677 dirs[d_size][name_len] = '/';
678 dirs[d_size][name_len+1] = '\0';
679 ++d_size;
680 } else if (de->d_type == DT_REG &&
681 name_len >= 4 &&
682 strncasecmp(de->d_name + (name_len-4), ".zip", 4) == 0) {
683 if (z_size >= z_alloc) {
684 z_alloc *= 2;
Doug Zongker28ce47c2011-10-28 10:33:05 -0700685 zips = (char**)realloc(zips, z_alloc * sizeof(char*));
Doug Zongker8674a722010-09-15 11:08:23 -0700686 }
687 zips[z_size++] = strdup(de->d_name);
688 }
689 }
690 closedir(d);
691
692 qsort(dirs, d_size, sizeof(char*), compare_string);
693 qsort(zips, z_size, sizeof(char*), compare_string);
694
695 // append dirs to the zips list
696 if (d_size + z_size + 1 > z_alloc) {
697 z_alloc = d_size + z_size + 1;
Doug Zongker28ce47c2011-10-28 10:33:05 -0700698 zips = (char**)realloc(zips, z_alloc * sizeof(char*));
Doug Zongker8674a722010-09-15 11:08:23 -0700699 }
700 memcpy(zips + z_size, dirs, d_size * sizeof(char*));
701 free(dirs);
702 z_size += d_size;
703 zips[z_size] = NULL;
704
Elliott Hughes8fd86d72015-04-13 14:36:02 -0700705 const char* headers[] = { "Choose a package to install:", path, NULL };
Elliott Hughes30694c92015-03-25 15:16:51 -0700706
Doug Zongker93950222014-07-08 14:10:23 -0700707 char* result;
Doug Zongker8674a722010-09-15 11:08:23 -0700708 int chosen_item = 0;
Doug Zongker93950222014-07-08 14:10:23 -0700709 while (true) {
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700710 chosen_item = get_menu_selection(headers, zips, 1, chosen_item, device);
Doug Zongker8674a722010-09-15 11:08:23 -0700711
712 char* item = zips[chosen_item];
713 int item_len = strlen(item);
714 if (chosen_item == 0) { // item 0 is always "../"
Michael Ward9d2629c2011-06-23 22:14:24 -0700715 // go up but continue browsing (if the caller is update_directory)
Doug Zongker93950222014-07-08 14:10:23 -0700716 result = NULL;
Doug Zongker8674a722010-09-15 11:08:23 -0700717 break;
718 }
Doug Zongker93950222014-07-08 14:10:23 -0700719
720 char new_path[PATH_MAX];
721 strlcpy(new_path, path, PATH_MAX);
722 strlcat(new_path, "/", PATH_MAX);
723 strlcat(new_path, item, PATH_MAX);
724
725 if (item[item_len-1] == '/') {
726 // recurse down into a subdirectory
727 new_path[strlen(new_path)-1] = '\0'; // truncate the trailing '/'
728 result = browse_directory(new_path, device);
729 if (result) break;
730 } else {
731 // selected a zip file: return the malloc'd path to the caller.
732 result = strdup(new_path);
733 break;
734 }
735 }
Doug Zongker8674a722010-09-15 11:08:23 -0700736
Elliott Hughes30694c92015-03-25 15:16:51 -0700737 for (int i = 0; i < z_size; ++i) free(zips[i]);
Doug Zongker8674a722010-09-15 11:08:23 -0700738 free(zips);
Doug Zongker8674a722010-09-15 11:08:23 -0700739
740 return result;
741}
742
Elliott Hughes30694c92015-03-25 15:16:51 -0700743static bool yes_no(Device* device, const char* question1, const char* question2) {
Elliott Hughes8fd86d72015-04-13 14:36:02 -0700744 const char* headers[] = { question1, question2, NULL };
Elliott Hughes30694c92015-03-25 15:16:51 -0700745 const char* items[] = { " No", " Yes", NULL };
Doug Zongkerddd6a282009-06-09 12:22:33 -0700746
Elliott Hughes30694c92015-03-25 15:16:51 -0700747 int chosen_item = get_menu_selection(headers, items, 1, 0, device);
748 return (chosen_item == 1);
749}
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800750
Tao Baoe39a9bc2015-03-31 12:19:05 -0700751// Return true on success.
752static bool wipe_data(int should_confirm, Device* device) {
753 if (should_confirm && !yes_no(device, "Wipe all user data?", " THIS CAN NOT BE UNDONE!")) {
754 return false;
Doug Zongkerf93d8162009-09-22 15:16:02 -0700755 }
Doug Zongker1066d2c2009-04-01 13:57:40 -0700756
Tao Bao682c34b2015-04-07 17:16:35 -0700757 modified_flash = true;
758
Doug Zongker211aebc2011-10-28 15:13:10 -0700759 ui->Print("\n-- Wiping data...\n");
Elliott Hughes945548e2015-06-05 17:59:56 -0700760 bool success =
761 device->PreWipeData() &&
762 erase_volume("/data") &&
763 erase_volume("/cache") &&
764 device->PostWipeData();
765 ui->Print("Data wipe %s.\n", success ? "complete" : "failed");
766 return success;
Doug Zongkerf93d8162009-09-22 15:16:02 -0700767}
768
Tao Baoe39a9bc2015-03-31 12:19:05 -0700769// Return true on success.
770static bool wipe_cache(bool should_confirm, Device* device) {
Elliott Hughes30694c92015-03-25 15:16:51 -0700771 if (should_confirm && !yes_no(device, "Wipe cache?", " THIS CAN NOT BE UNDONE!")) {
Tao Baoe39a9bc2015-03-31 12:19:05 -0700772 return false;
Elliott Hughes30694c92015-03-25 15:16:51 -0700773 }
774
Tao Bao682c34b2015-04-07 17:16:35 -0700775 modified_flash = true;
776
Elliott Hughes30694c92015-03-25 15:16:51 -0700777 ui->Print("\n-- Wiping cache...\n");
Elliott Hughes945548e2015-06-05 17:59:56 -0700778 bool success = erase_volume("/cache");
779 ui->Print("Cache wipe %s.\n", success ? "complete" : "failed");
780 return success;
Elliott Hughes30694c92015-03-25 15:16:51 -0700781}
782
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700783static void choose_recovery_file(Device* device) {
Elliott Hughesc0491632015-05-06 12:40:05 -0700784 // "Back" + KEEP_LOG_COUNT * 2 + terminating nullptr entry
785 char* entries[1 + KEEP_LOG_COUNT * 2 + 1];
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700786 memset(entries, 0, sizeof(entries));
787
Tao Baobef39712015-05-04 18:50:27 -0700788 unsigned int n = 0;
Patrick Tjincd055ee2014-12-09 11:26:40 -0800789
Patrick Tjincd055ee2014-12-09 11:26:40 -0800790 // Add LAST_LOG_FILE + LAST_LOG_FILE.x
Tao Baobef39712015-05-04 18:50:27 -0700791 // Add LAST_KMSG_FILE + LAST_KMSG_FILE.x
792 for (int i = 0; i < KEEP_LOG_COUNT; i++) {
793 char* log_file;
Tao Bao80e46e02015-06-03 10:49:29 -0700794 int ret;
795 ret = (i == 0) ? asprintf(&log_file, "%s", LAST_LOG_FILE) :
796 asprintf(&log_file, "%s.%d", LAST_LOG_FILE, i);
797 if (ret == -1) {
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700798 // memory allocation failure - return early. Should never happen.
799 return;
800 }
Tao Baobef39712015-05-04 18:50:27 -0700801 if ((ensure_path_mounted(log_file) != 0) || (access(log_file, R_OK) == -1)) {
802 free(log_file);
803 } else {
804 entries[n++] = log_file;
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700805 }
Tao Baobef39712015-05-04 18:50:27 -0700806
807 char* kmsg_file;
Tao Bao80e46e02015-06-03 10:49:29 -0700808 ret = (i == 0) ? asprintf(&kmsg_file, "%s", LAST_KMSG_FILE) :
809 asprintf(&kmsg_file, "%s.%d", LAST_KMSG_FILE, i);
810 if (ret == -1) {
Tao Baobef39712015-05-04 18:50:27 -0700811 // memory allocation failure - return early. Should never happen.
812 return;
813 }
814 if ((ensure_path_mounted(kmsg_file) != 0) || (access(kmsg_file, R_OK) == -1)) {
815 free(kmsg_file);
816 } else {
817 entries[n++] = kmsg_file;
818 }
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700819 }
820
Elliott Hughesc0491632015-05-06 12:40:05 -0700821 entries[n++] = strdup("Back");
822
Tao Baobef39712015-05-04 18:50:27 -0700823 const char* headers[] = { "Select file to view", nullptr };
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700824
Elliott Hughes8de52072015-04-08 20:06:50 -0700825 while (true) {
Elliott Hughes30694c92015-03-25 15:16:51 -0700826 int chosen_item = get_menu_selection(headers, entries, 1, 0, device);
Elliott Hughesc0491632015-05-06 12:40:05 -0700827 if (strcmp(entries[chosen_item], "Back") == 0) break;
Elliott Hughes8de52072015-04-08 20:06:50 -0700828
Elliott Hughes8de52072015-04-08 20:06:50 -0700829 ui->ShowFile(entries[chosen_item]);
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700830 }
831
Tao Baobef39712015-05-04 18:50:27 -0700832 for (size_t i = 0; i < (sizeof(entries) / sizeof(*entries)); i++) {
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700833 free(entries[i]);
834 }
835}
836
Tao Baocdcf28f2016-01-13 15:05:20 -0800837// How long (in seconds) we wait for the fuse-provided package file to
838// appear, before timing out.
839#define SDCARD_INSTALL_TIMEOUT 10
840
Tao Bao145d8612015-03-25 15:51:15 -0700841static int apply_from_sdcard(Device* device, bool* wipe_cache) {
Tao Bao682c34b2015-04-07 17:16:35 -0700842 modified_flash = true;
843
Christian Poetzsch4ec58a42015-02-19 10:42:39 +0000844 if (ensure_path_mounted(SDCARD_ROOT) != 0) {
845 ui->Print("\n-- Couldn't mount %s.\n", SDCARD_ROOT);
846 return INSTALL_ERROR;
847 }
848
849 char* path = browse_directory(SDCARD_ROOT, device);
850 if (path == NULL) {
Elliott Hughes018ed312015-04-08 16:51:36 -0700851 ui->Print("\n-- No package file selected.\n");
caozhiyuanb4effb92015-06-10 16:46:38 +0800852 ensure_path_unmounted(SDCARD_ROOT);
Christian Poetzsch4ec58a42015-02-19 10:42:39 +0000853 return INSTALL_ERROR;
854 }
855
856 ui->Print("\n-- Install %s ...\n", path);
857 set_sdcard_update_bootloader_message();
Christian Poetzsch4ec58a42015-02-19 10:42:39 +0000858
Tao Baocdcf28f2016-01-13 15:05:20 -0800859 // We used to use fuse in a thread as opposed to a process. Since accessing
860 // through fuse involves going from kernel to userspace to kernel, it leads
861 // to deadlock when a page fault occurs. (Bug: 26313124)
862 pid_t child;
863 if ((child = fork()) == 0) {
864 bool status = start_sdcard_fuse(path);
865
866 _exit(status ? EXIT_SUCCESS : EXIT_FAILURE);
867 }
868
869 // FUSE_SIDELOAD_HOST_PATHNAME will start to exist once the fuse in child
870 // process is ready.
871 int result = INSTALL_ERROR;
872 int status;
873 bool waited = false;
874 for (int i = 0; i < SDCARD_INSTALL_TIMEOUT; ++i) {
875 if (waitpid(child, &status, WNOHANG) == -1) {
876 result = INSTALL_ERROR;
877 waited = true;
878 break;
879 }
880
881 struct stat sb;
882 if (stat(FUSE_SIDELOAD_HOST_PATHNAME, &sb) == -1) {
883 if (errno == ENOENT && i < SDCARD_INSTALL_TIMEOUT-1) {
884 sleep(1);
885 continue;
886 } else {
887 LOGE("Timed out waiting for the fuse-provided package.\n");
888 result = INSTALL_ERROR;
889 kill(child, SIGKILL);
890 break;
891 }
892 }
893
894 result = install_package(FUSE_SIDELOAD_HOST_PATHNAME, wipe_cache,
Christian Poetzsch4ec58a42015-02-19 10:42:39 +0000895 TEMPORARY_INSTALL_FILE, false);
Tao Baocdcf28f2016-01-13 15:05:20 -0800896 break;
897 }
Christian Poetzsch4ec58a42015-02-19 10:42:39 +0000898
Tao Baocdcf28f2016-01-13 15:05:20 -0800899 if (!waited) {
900 // Calling stat() on this magic filename signals the fuse
901 // filesystem to shut down.
902 struct stat sb;
903 stat(FUSE_SIDELOAD_HOST_EXIT_PATHNAME, &sb);
904
905 waitpid(child, &status, 0);
906 }
907
908 if (!WIFEXITED(status) || WEXITSTATUS(status) != 0) {
909 LOGE("Error exit from the fuse process: %d\n", WEXITSTATUS(status));
910 }
911
Christian Poetzsch4ec58a42015-02-19 10:42:39 +0000912 ensure_path_unmounted(SDCARD_ROOT);
Tao Baocdcf28f2016-01-13 15:05:20 -0800913 return result;
Christian Poetzsch4ec58a42015-02-19 10:42:39 +0000914}
915
Doug Zongker8d9d3d52014-04-01 13:20:23 -0700916// Return REBOOT, SHUTDOWN, or REBOOT_BOOTLOADER. Returning NO_ACTION
917// means to take the default, which is to reboot or shutdown depending
918// on if the --shutdown_after flag was passed to recovery.
919static Device::BuiltinAction
Doug Zongker6c8553d2012-09-24 10:40:47 -0700920prompt_and_wait(Device* device, int status) {
Doug Zongkerf93d8162009-09-22 15:16:02 -0700921 for (;;) {
922 finish_recovery(NULL);
Doug Zongker6c8553d2012-09-24 10:40:47 -0700923 switch (status) {
924 case INSTALL_SUCCESS:
925 case INSTALL_NONE:
926 ui->SetBackground(RecoveryUI::NO_COMMAND);
927 break;
928
929 case INSTALL_ERROR:
930 case INSTALL_CORRUPT:
931 ui->SetBackground(RecoveryUI::ERROR);
932 break;
933 }
Doug Zongker211aebc2011-10-28 15:13:10 -0700934 ui->SetProgressType(RecoveryUI::EMPTY);
Doug Zongkerf93d8162009-09-22 15:16:02 -0700935
Elliott Hughes8fd86d72015-04-13 14:36:02 -0700936 int chosen_item = get_menu_selection(nullptr, device->GetMenuItems(), 0, 0, device);
Doug Zongkerf93d8162009-09-22 15:16:02 -0700937
938 // device-specific code may take some action here. It may
939 // return one of the core actions handled in the switch
940 // statement below.
Doug Zongker8d9d3d52014-04-01 13:20:23 -0700941 Device::BuiltinAction chosen_action = device->InvokeMenuItem(chosen_item);
Doug Zongkerf93d8162009-09-22 15:16:02 -0700942
Elliott Hughes30694c92015-03-25 15:16:51 -0700943 bool should_wipe_cache = false;
Doug Zongker8d9d3d52014-04-01 13:20:23 -0700944 switch (chosen_action) {
945 case Device::NO_ACTION:
946 break;
947
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700948 case Device::REBOOT:
Doug Zongker8d9d3d52014-04-01 13:20:23 -0700949 case Device::SHUTDOWN:
950 case Device::REBOOT_BOOTLOADER:
951 return chosen_action;
Doug Zongkerf93d8162009-09-22 15:16:02 -0700952
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700953 case Device::WIPE_DATA:
954 wipe_data(ui->IsTextVisible(), device);
Doug Zongker8d9d3d52014-04-01 13:20:23 -0700955 if (!ui->IsTextVisible()) return Device::NO_ACTION;
Doug Zongkerf93d8162009-09-22 15:16:02 -0700956 break;
957
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700958 case Device::WIPE_CACHE:
Elliott Hughes30694c92015-03-25 15:16:51 -0700959 wipe_cache(ui->IsTextVisible(), device);
Doug Zongker8d9d3d52014-04-01 13:20:23 -0700960 if (!ui->IsTextVisible()) return Device::NO_ACTION;
Doug Zongkerf93d8162009-09-22 15:16:02 -0700961 break;
962
Christian Poetzsch4ec58a42015-02-19 10:42:39 +0000963 case Device::APPLY_ADB_SIDELOAD:
Elliott Hughesec283402015-04-10 10:01:53 -0700964 case Device::APPLY_SDCARD:
Christian Poetzsch4ec58a42015-02-19 10:42:39 +0000965 {
966 bool adb = (chosen_action == Device::APPLY_ADB_SIDELOAD);
967 if (adb) {
Elliott Hughes30694c92015-03-25 15:16:51 -0700968 status = apply_from_adb(ui, &should_wipe_cache, TEMPORARY_INSTALL_FILE);
Doug Zongkerd0181b82011-10-19 10:51:12 -0700969 } else {
Elliott Hughes30694c92015-03-25 15:16:51 -0700970 status = apply_from_sdcard(device, &should_wipe_cache);
Doug Zongkerd0181b82011-10-19 10:51:12 -0700971 }
Doug Zongker945fc682014-07-10 10:50:39 -0700972
Elliott Hughes30694c92015-03-25 15:16:51 -0700973 if (status == INSTALL_SUCCESS && should_wipe_cache) {
Tao Baoe39a9bc2015-03-31 12:19:05 -0700974 if (!wipe_cache(false, device)) {
975 status = INSTALL_ERROR;
976 }
Christian Poetzsch4ec58a42015-02-19 10:42:39 +0000977 }
978
Tao Baoc679f932015-03-30 09:43:49 -0700979 if (status != INSTALL_SUCCESS) {
980 ui->SetBackground(RecoveryUI::ERROR);
981 ui->Print("Installation aborted.\n");
982 copy_logs();
983 } else if (!ui->IsTextVisible()) {
984 return Device::NO_ACTION; // reboot if logs aren't visible
985 } else {
986 ui->Print("\nInstall from %s complete.\n", adb ? "ADB" : "SD card");
Doug Zongker8674a722010-09-15 11:08:23 -0700987 }
Doug Zongkerf93d8162009-09-22 15:16:02 -0700988 }
989 break;
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700990
Elliott Hughesec283402015-04-10 10:01:53 -0700991 case Device::VIEW_RECOVERY_LOGS:
992 choose_recovery_file(device);
Michael Ward9d2629c2011-06-23 22:14:24 -0700993 break;
Doug Zongker9270a202012-01-09 15:16:13 -0800994
Elliott Hughesec283402015-04-10 10:01:53 -0700995 case Device::MOUNT_SYSTEM:
Tao Baoabb8f772015-07-30 14:43:27 -0700996 char system_root_image[PROPERTY_VALUE_MAX];
997 property_get("ro.build.system_root_image", system_root_image, "");
998
999 // For a system image built with the root directory (i.e.
1000 // system_root_image == "true"), we mount it to /system_root, and symlink /system
1001 // to /system_root/system to make adb shell work (the symlink is created through
1002 // the build system).
1003 // Bug: 22855115
1004 if (strcmp(system_root_image, "true") == 0) {
1005 if (ensure_path_mounted_at("/", "/system_root") != -1) {
1006 ui->Print("Mounted /system.\n");
1007 }
1008 } else {
1009 if (ensure_path_mounted("/system") != -1) {
1010 ui->Print("Mounted /system.\n");
1011 }
Elliott Hughesec283402015-04-10 10:01:53 -07001012 }
Tao Baoabb8f772015-07-30 14:43:27 -07001013
Nick Kralevicha9ad0322014-10-22 18:38:48 -07001014 break;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001015 }
1016 }
1017}
1018
1019static void
Oscar Montemayor05231562009-11-30 08:40:57 -08001020print_property(const char *key, const char *name, void *cookie) {
Doug Zongker56c51052010-07-01 09:18:44 -07001021 printf("%s=%s\n", key, name);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001022}
1023
Doug Zongker02ec6b82012-08-22 17:26:40 -07001024static void
1025load_locale_from_cache() {
1026 FILE* fp = fopen_path(LOCALE_FILE, "r");
1027 char buffer[80];
1028 if (fp != NULL) {
1029 fgets(buffer, sizeof(buffer), fp);
1030 int j = 0;
Doug Zongker5fa8c232012-09-18 12:37:02 -07001031 unsigned int i;
Doug Zongker02ec6b82012-08-22 17:26:40 -07001032 for (i = 0; i < sizeof(buffer) && buffer[i]; ++i) {
1033 if (!isspace(buffer[i])) {
1034 buffer[j++] = buffer[i];
1035 }
1036 }
1037 buffer[j] = 0;
1038 locale = strdup(buffer);
Devin Kim6016d082012-10-08 09:47:37 -07001039 check_and_fclose(fp, LOCALE_FILE);
Doug Zongker02ec6b82012-08-22 17:26:40 -07001040 }
1041}
1042
Doug Zongker7c3ae452013-05-14 11:03:02 -07001043static RecoveryUI* gCurrentUI = NULL;
1044
1045void
1046ui_print(const char* format, ...) {
1047 char buffer[256];
1048
1049 va_list ap;
1050 va_start(ap, format);
1051 vsnprintf(buffer, sizeof(buffer), format, ap);
1052 va_end(ap);
1053
1054 if (gCurrentUI != NULL) {
1055 gCurrentUI->Print("%s", buffer);
1056 } else {
1057 fputs(buffer, stdout);
1058 }
1059}
1060
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001061int
Oscar Montemayor05231562009-11-30 08:40:57 -08001062main(int argc, char **argv) {
Doug Zongker9270a202012-01-09 15:16:13 -08001063 // If this binary is started with the single argument "--adbd",
1064 // instead of being the normal recovery binary, it turns into kind
1065 // of a stripped-down version of adbd that only supports the
1066 // 'sideload' command. Note this must be a real argument, not
1067 // anything in the command file or bootloader control block; the
1068 // only way recovery should be run with this argument is when it
1069 // starts a copy of itself from the apply_from_adb() function.
1070 if (argc == 2 && strcmp(argv[1], "--adbd") == 0) {
Elliott Hughes9f4fdb32015-11-20 13:03:24 -08001071 adb_server_main(0, DEFAULT_ADB_PORT, -1);
Doug Zongker9270a202012-01-09 15:16:13 -08001072 return 0;
1073 }
1074
Tao Bao04ca4262015-09-10 15:32:24 -07001075 time_t start = time(NULL);
1076
1077 // redirect_stdio should be called only in non-sideload mode. Otherwise
1078 // we may have two logger instances with different timestamps.
1079 redirect_stdio(TEMPORARY_LOG_FILE);
1080
Doug Zongker19a8e242014-01-21 09:25:41 -08001081 printf("Starting recovery (pid %d) on %s", getpid(), ctime(&start));
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001082
Doug Zongkerd4208f92010-09-20 12:16:13 -07001083 load_volume_table();
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001084 get_args(&argc, &argv);
1085
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001086 const char *send_intent = NULL;
1087 const char *update_package = NULL;
Tao Baoe39a9bc2015-03-31 12:19:05 -07001088 bool should_wipe_data = false;
Tao Baoc679f932015-03-30 09:43:49 -07001089 bool should_wipe_cache = false;
Tao Bao145d8612015-03-25 15:51:15 -07001090 bool show_text = false;
Tao Baoc679f932015-03-30 09:43:49 -07001091 bool sideload = false;
1092 bool sideload_auto_reboot = false;
Doug Zongkere5d5ac72012-04-12 11:01:22 -07001093 bool just_exit = false;
Doug Zongkerb1d12632014-03-18 10:32:12 -07001094 bool shutdown_after = false;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001095
1096 int arg;
1097 while ((arg = getopt_long(argc, argv, "", OPTIONS, NULL)) != -1) {
1098 switch (arg) {
Tao Baoc679f932015-03-30 09:43:49 -07001099 case 'i': send_intent = optarg; break;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001100 case 'u': update_package = optarg; break;
Tao Baoe39a9bc2015-03-31 12:19:05 -07001101 case 'w': should_wipe_data = true; break;
Tao Baoc679f932015-03-30 09:43:49 -07001102 case 'c': should_wipe_cache = true; break;
Tao Bao145d8612015-03-25 15:51:15 -07001103 case 't': show_text = true; break;
Tao Baoc679f932015-03-30 09:43:49 -07001104 case 's': sideload = true; break;
1105 case 'a': sideload = true; sideload_auto_reboot = true; break;
Doug Zongkere5d5ac72012-04-12 11:01:22 -07001106 case 'x': just_exit = true; break;
Doug Zongker02ec6b82012-08-22 17:26:40 -07001107 case 'l': locale = optarg; break;
Doug Zongkerc87bab12013-11-25 13:53:25 -08001108 case 'g': {
1109 if (stage == NULL || *stage == '\0') {
1110 char buffer[20] = "1/";
1111 strncat(buffer, optarg, sizeof(buffer)-3);
1112 stage = strdup(buffer);
1113 }
1114 break;
1115 }
Doug Zongkerb1d12632014-03-18 10:32:12 -07001116 case 'p': shutdown_after = true; break;
Jeff Sharkeya6e13ae2014-09-24 11:46:17 -07001117 case 'r': reason = optarg; break;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001118 case '?':
1119 LOGE("Invalid command argument\n");
1120 continue;
1121 }
1122 }
1123
Doug Zongker02ec6b82012-08-22 17:26:40 -07001124 if (locale == NULL) {
1125 load_locale_from_cache();
1126 }
1127 printf("locale is [%s]\n", locale);
Doug Zongker0d32f252014-02-13 15:07:56 -08001128 printf("stage is [%s]\n", stage);
Jeff Sharkeya6e13ae2014-09-24 11:46:17 -07001129 printf("reason is [%s]\n", reason);
Doug Zongker02ec6b82012-08-22 17:26:40 -07001130
1131 Device* device = make_device();
1132 ui = device->GetUI();
Doug Zongker7c3ae452013-05-14 11:03:02 -07001133 gCurrentUI = ui;
Doug Zongker02ec6b82012-08-22 17:26:40 -07001134
Doug Zongker5fa8c232012-09-18 12:37:02 -07001135 ui->SetLocale(locale);
Doug Zongker02ec6b82012-08-22 17:26:40 -07001136 ui->Init();
Doug Zongkerc87bab12013-11-25 13:53:25 -08001137
1138 int st_cur, st_max;
1139 if (stage != NULL && sscanf(stage, "%d/%d", &st_cur, &st_max) == 2) {
1140 ui->SetStage(st_cur, st_max);
1141 }
1142
Doug Zongker02ec6b82012-08-22 17:26:40 -07001143 ui->SetBackground(RecoveryUI::NONE);
1144 if (show_text) ui->ShowText(true);
1145
Stephen Smalley779701d2012-02-09 14:13:23 -05001146 struct selinux_opt seopts[] = {
1147 { SELABEL_OPT_PATH, "/file_contexts" }
1148 };
1149
1150 sehandle = selabel_open(SELABEL_CTX_FILE, seopts, 1);
1151
1152 if (!sehandle) {
Doug Zongkerfafc85b2013-07-09 12:29:45 -07001153 ui->Print("Warning: No file_contexts\n");
Stephen Smalley779701d2012-02-09 14:13:23 -05001154 }
Stephen Smalley779701d2012-02-09 14:13:23 -05001155
Doug Zongkerdaefc1d2011-10-31 09:34:15 -07001156 device->StartRecovery();
Doug Zongkerefa1bab2010-02-01 15:59:12 -08001157
Doug Zongker56c51052010-07-01 09:18:44 -07001158 printf("Command:");
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001159 for (arg = 0; arg < argc; arg++) {
Doug Zongker56c51052010-07-01 09:18:44 -07001160 printf(" \"%s\"", argv[arg]);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001161 }
Doug Zongker9b125b02010-09-22 12:01:37 -07001162 printf("\n");
1163
1164 if (update_package) {
1165 // For backwards compatibility on the cache partition only, if
1166 // we're given an old 'root' path "CACHE:foo", change it to
1167 // "/cache/foo".
1168 if (strncmp(update_package, "CACHE:", 6) == 0) {
1169 int len = strlen(update_package) + 10;
Doug Zongker28ce47c2011-10-28 10:33:05 -07001170 char* modified_path = (char*)malloc(len);
Jeremy Compostella1b7d9b72015-07-29 17:17:03 +02001171 if (modified_path) {
1172 strlcpy(modified_path, "/cache/", len);
1173 strlcat(modified_path, update_package+6, len);
1174 printf("(replacing path \"%s\" with \"%s\")\n",
1175 update_package, modified_path);
1176 update_package = modified_path;
1177 }
1178 else
1179 printf("modified_path allocation failed\n");
Doug Zongker9b125b02010-09-22 12:01:37 -07001180 }
1181 }
1182 printf("\n");
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001183
1184 property_list(print_property, NULL);
Doug Zongker56c51052010-07-01 09:18:44 -07001185 printf("\n");
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001186
Elliott Hughesbb78d622015-04-09 20:51:08 -07001187 ui->Print("Supported API: %d\n", RECOVERY_API_VERSION);
1188
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001189 int status = INSTALL_SUCCESS;
1190
Doug Zongker540d57f2011-01-18 13:36:58 -08001191 if (update_package != NULL) {
Tao Baoc679f932015-03-30 09:43:49 -07001192 status = install_package(update_package, &should_wipe_cache, TEMPORARY_INSTALL_FILE, true);
1193 if (status == INSTALL_SUCCESS && should_wipe_cache) {
1194 wipe_cache(false, device);
Doug Zongkerd0181b82011-10-19 10:51:12 -07001195 }
Doug Zongker7c3ae452013-05-14 11:03:02 -07001196 if (status != INSTALL_SUCCESS) {
1197 ui->Print("Installation aborted.\n");
1198
1199 // If this is an eng or userdebug build, then automatically
1200 // turn the text display on if the script fails so the error
1201 // message is visible.
Elliott Hughesf14af802015-02-10 14:46:14 -08001202 if (is_ro_debuggable()) {
Doug Zongker7c3ae452013-05-14 11:03:02 -07001203 ui->ShowText(true);
1204 }
1205 }
Tao Baoe39a9bc2015-03-31 12:19:05 -07001206 } else if (should_wipe_data) {
1207 if (!wipe_data(false, device)) {
1208 status = INSTALL_ERROR;
1209 }
Tao Baoc679f932015-03-30 09:43:49 -07001210 } else if (should_wipe_cache) {
Tao Baoe39a9bc2015-03-31 12:19:05 -07001211 if (!wipe_cache(false, device)) {
1212 status = INSTALL_ERROR;
1213 }
Tao Baoc679f932015-03-30 09:43:49 -07001214 } else if (sideload) {
1215 // 'adb reboot sideload' acts the same as user presses key combinations
1216 // to enter the sideload mode. When 'sideload-auto-reboot' is used, text
1217 // display will NOT be turned on by default. And it will reboot after
1218 // sideload finishes even if there are errors. Unless one turns on the
1219 // text display during the installation. This is to enable automated
1220 // testing.
1221 if (!sideload_auto_reboot) {
1222 ui->ShowText(true);
1223 }
1224 status = apply_from_adb(ui, &should_wipe_cache, TEMPORARY_INSTALL_FILE);
1225 if (status == INSTALL_SUCCESS && should_wipe_cache) {
Tao Baoe39a9bc2015-03-31 12:19:05 -07001226 if (!wipe_cache(false, device)) {
1227 status = INSTALL_ERROR;
1228 }
Tao Baoc679f932015-03-30 09:43:49 -07001229 }
1230 ui->Print("\nInstall from ADB complete (status: %d).\n", status);
1231 if (sideload_auto_reboot) {
1232 ui->Print("Rebooting automatically.\n");
1233 }
Doug Zongkere5d5ac72012-04-12 11:01:22 -07001234 } else if (!just_exit) {
Doug Zongker02ec6b82012-08-22 17:26:40 -07001235 status = INSTALL_NONE; // No command specified
1236 ui->SetBackground(RecoveryUI::NO_COMMAND);
Tao Bao785d22c2015-05-04 09:34:29 -07001237
1238 // http://b/17489952
1239 // If this is an eng or userdebug build, automatically turn on the
1240 // text display if no command is specified.
1241 if (is_ro_debuggable()) {
1242 ui->ShowText(true);
1243 }
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001244 }
1245
Tao Baoc679f932015-03-30 09:43:49 -07001246 if (!sideload_auto_reboot && (status == INSTALL_ERROR || status == INSTALL_CORRUPT)) {
Doug Zongkerf24fd7e2013-07-02 11:43:25 -07001247 copy_logs();
Doug Zongker02ec6b82012-08-22 17:26:40 -07001248 ui->SetBackground(RecoveryUI::ERROR);
1249 }
Tao Baoc679f932015-03-30 09:43:49 -07001250
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001251 Device::BuiltinAction after = shutdown_after ? Device::SHUTDOWN : Device::REBOOT;
Tao Baoc679f932015-03-30 09:43:49 -07001252 if ((status != INSTALL_SUCCESS && !sideload_auto_reboot) || ui->IsTextVisible()) {
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001253 Device::BuiltinAction temp = prompt_and_wait(device, status);
Tao Baoc679f932015-03-30 09:43:49 -07001254 if (temp != Device::NO_ACTION) {
1255 after = temp;
1256 }
Doug Zongker8674a722010-09-15 11:08:23 -07001257 }
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001258
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001259 // Save logs and clean up before rebooting or shutting down.
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001260 finish_recovery(send_intent);
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001261
1262 switch (after) {
1263 case Device::SHUTDOWN:
1264 ui->Print("Shutting down...\n");
1265 property_set(ANDROID_RB_PROPERTY, "shutdown,");
1266 break;
1267
1268 case Device::REBOOT_BOOTLOADER:
1269 ui->Print("Rebooting to bootloader...\n");
1270 property_set(ANDROID_RB_PROPERTY, "reboot,bootloader");
1271 break;
1272
1273 default:
1274 ui->Print("Rebooting...\n");
1275 property_set(ANDROID_RB_PROPERTY, "reboot,");
1276 break;
Doug Zongkerb1d12632014-03-18 10:32:12 -07001277 }
Tao Bao75238632015-05-27 14:46:17 -07001278 while (true) {
1279 pause();
1280 }
1281 // Should be unreachable.
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001282 return EXIT_SUCCESS;
1283}