blob: 9d6f51178dfe042152a20765b8896237c7f9c565 [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
Yabin Cui53e7a062016-02-17 12:21:52 -080043#include <healthd/BatteryMonitor.h>
44
Tao Bao75238632015-05-27 14:46:17 -070045#include "adb_install.h"
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080046#include "bootloader.h"
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080047#include "common.h"
Tao Bao75238632015-05-27 14:46:17 -070048#include "device.h"
49#include "fuse_sdcard_provider.h"
50#include "fuse_sideload.h"
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080051#include "install.h"
52#include "minui/minui.h"
53#include "minzip/DirUtil.h"
54#include "roots.h"
Doug Zongker28ce47c2011-10-28 10:33:05 -070055#include "ui.h"
Doug Zongker211aebc2011-10-28 15:13:10 -070056#include "screen_ui.h"
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080057
Stephen Smalley779701d2012-02-09 14:13:23 -050058struct selabel_handle *sehandle;
59
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080060static const struct option OPTIONS[] = {
Tao Baoc679f932015-03-30 09:43:49 -070061 { "send_intent", required_argument, NULL, 'i' },
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080062 { "update_package", required_argument, NULL, 'u' },
63 { "wipe_data", no_argument, NULL, 'w' },
64 { "wipe_cache", no_argument, NULL, 'c' },
Doug Zongker4bc98062010-09-03 11:00:13 -070065 { "show_text", no_argument, NULL, 't' },
Tao Baoc679f932015-03-30 09:43:49 -070066 { "sideload", no_argument, NULL, 's' },
67 { "sideload_auto_reboot", no_argument, NULL, 'a' },
Doug Zongkere5d5ac72012-04-12 11:01:22 -070068 { "just_exit", no_argument, NULL, 'x' },
Doug Zongker02ec6b82012-08-22 17:26:40 -070069 { "locale", required_argument, NULL, 'l' },
Doug Zongkerc87bab12013-11-25 13:53:25 -080070 { "stages", required_argument, NULL, 'g' },
Doug Zongkerb1d12632014-03-18 10:32:12 -070071 { "shutdown_after", no_argument, NULL, 'p' },
Jeff Sharkeya6e13ae2014-09-24 11:46:17 -070072 { "reason", required_argument, NULL, 'r' },
Doug Zongker988500b2009-10-06 14:41:38 -070073 { NULL, 0, NULL, 0 },
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080074};
75
Doug Zongker6d0d7ac2013-07-09 13:34:55 -070076static const char *CACHE_LOG_DIR = "/cache/recovery";
Doug Zongkerd4208f92010-09-20 12:16:13 -070077static const char *COMMAND_FILE = "/cache/recovery/command";
78static const char *INTENT_FILE = "/cache/recovery/intent";
79static const char *LOG_FILE = "/cache/recovery/log";
Doug Zongkerd0181b82011-10-19 10:51:12 -070080static const char *LAST_INSTALL_FILE = "/cache/recovery/last_install";
Doug Zongker8b240cc2012-08-29 15:19:29 -070081static const char *LOCALE_FILE = "/cache/recovery/last_locale";
Michael Ward9d2629c2011-06-23 22:14:24 -070082static const char *CACHE_ROOT = "/cache";
Doug Zongkerd4208f92010-09-20 12:16:13 -070083static const char *SDCARD_ROOT = "/sdcard";
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080084static const char *TEMPORARY_LOG_FILE = "/tmp/recovery.log";
Doug Zongkerd0181b82011-10-19 10:51:12 -070085static const char *TEMPORARY_INSTALL_FILE = "/tmp/last_install";
Tao Baof0124322015-04-11 02:04:11 +000086static const char *LAST_KMSG_FILE = "/cache/recovery/last_kmsg";
Tao Baobef39712015-05-04 18:50:27 -070087static const char *LAST_LOG_FILE = "/cache/recovery/last_log";
88static const int KEEP_LOG_COUNT = 10;
Yabin Cui53e7a062016-02-17 12:21:52 -080089static const int BATTERY_READ_TIMEOUT_IN_SEC = 10;
90// GmsCore enters recovery mode to install package when having enough battery
91// percentage. Normally, the threshold is 40% without charger and 20% with charger.
92// So we should check battery with a slightly lower limitation.
93static const int BATTERY_OK_PERCENTAGE = 20;
94static const int BATTERY_WITH_CHARGER_OK_PERCENTAGE = 15;
Nick Kralevicha9ad0322014-10-22 18:38:48 -070095
Doug Zongker211aebc2011-10-28 15:13:10 -070096RecoveryUI* ui = NULL;
Doug Zongker02ec6b82012-08-22 17:26:40 -070097char* locale = NULL;
Doug Zongkerc87bab12013-11-25 13:53:25 -080098char* stage = NULL;
Jeff Sharkeya6e13ae2014-09-24 11:46:17 -070099char* reason = NULL;
Tao Bao682c34b2015-04-07 17:16:35 -0700100bool modified_flash = false;
Tao Bao26112e52016-02-25 12:29:40 -0800101static bool has_cache = false;
Doug Zongker211aebc2011-10-28 15:13:10 -0700102
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800103/*
104 * The recovery tool communicates with the main system through /cache files.
105 * /cache/recovery/command - INPUT - command line for tool, one arg per line
106 * /cache/recovery/log - OUTPUT - combined log file from recovery run(s)
107 * /cache/recovery/intent - OUTPUT - intent that was passed in
108 *
109 * The arguments which may be supplied in the recovery.command file:
110 * --send_intent=anystring - write the text out to recovery.intent
Doug Zongkerd4208f92010-09-20 12:16:13 -0700111 * --update_package=path - verify install an OTA package file
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800112 * --wipe_data - erase user data (and cache), then reboot
113 * --wipe_cache - wipe cache (but not user data), then reboot
Oscar Montemayor05231562009-11-30 08:40:57 -0800114 * --set_encrypted_filesystem=on|off - enables / diasables encrypted fs
Doug Zongkere5d5ac72012-04-12 11:01:22 -0700115 * --just_exit - do nothing; exit and reboot
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800116 *
117 * After completing, we remove /cache/recovery/command and reboot.
118 * Arguments may also be supplied in the bootloader control block (BCB).
119 * These important scenarios must be safely restartable at any point:
120 *
121 * FACTORY RESET
122 * 1. user selects "factory reset"
123 * 2. main system writes "--wipe_data" to /cache/recovery/command
124 * 3. main system reboots into recovery
125 * 4. get_args() writes BCB with "boot-recovery" and "--wipe_data"
126 * -- after this, rebooting will restart the erase --
Doug Zongkerd4208f92010-09-20 12:16:13 -0700127 * 5. erase_volume() reformats /data
128 * 6. erase_volume() reformats /cache
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800129 * 7. finish_recovery() erases BCB
130 * -- after this, rebooting will restart the main system --
131 * 8. main() calls reboot() to boot main system
132 *
133 * OTA INSTALL
134 * 1. main system downloads OTA package to /cache/some-filename.zip
Doug Zongker9b125b02010-09-22 12:01:37 -0700135 * 2. main system writes "--update_package=/cache/some-filename.zip"
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800136 * 3. main system reboots into recovery
137 * 4. get_args() writes BCB with "boot-recovery" and "--update_package=..."
138 * -- after this, rebooting will attempt to reinstall the update --
139 * 5. install_package() attempts to install the update
140 * NOTE: the package install must itself be restartable from any point
141 * 6. finish_recovery() erases BCB
142 * -- after this, rebooting will (try to) restart the main system --
143 * 7. ** if install failed **
144 * 7a. prompt_and_wait() shows an error icon and waits for the user
145 * 7b; the user reboots (pulling the battery, etc) into the main system
146 * 8. main() calls maybe_install_firmware_update()
147 * ** if the update contained radio/hboot firmware **:
148 * 8a. m_i_f_u() writes BCB with "boot-recovery" and "--wipe_cache"
149 * -- after this, rebooting will reformat cache & restart main system --
150 * 8b. m_i_f_u() writes firmware image into raw cache partition
151 * 8c. m_i_f_u() writes BCB with "update-radio/hboot" and "--wipe_cache"
152 * -- after this, rebooting will attempt to reinstall firmware --
153 * 8d. bootloader tries to flash firmware
154 * 8e. bootloader writes BCB with "boot-recovery" (keeping "--wipe_cache")
155 * -- after this, rebooting will reformat cache & restart main system --
Doug Zongkerd4208f92010-09-20 12:16:13 -0700156 * 8f. erase_volume() reformats /cache
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800157 * 8g. finish_recovery() erases BCB
158 * -- after this, rebooting will (try to) restart the main system --
159 * 9. main() calls reboot() to boot main system
160 */
161
162static const int MAX_ARG_LENGTH = 4096;
163static const int MAX_ARGS = 100;
164
Doug Zongkerd4208f92010-09-20 12:16:13 -0700165// open a given path, mounting partitions as necessary
Tao Bao04ca4262015-09-10 15:32:24 -0700166FILE* fopen_path(const char *path, const char *mode) {
Doug Zongkerd4208f92010-09-20 12:16:13 -0700167 if (ensure_path_mounted(path) != 0) {
168 LOGE("Can't mount %s\n", path);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800169 return NULL;
170 }
171
172 // When writing, try to create the containing directory, if necessary.
173 // Use generous permissions, the system (init.rc) will reset them.
Stephen Smalley779701d2012-02-09 14:13:23 -0500174 if (strchr("wa", mode[0])) dirCreateHierarchy(path, 0777, NULL, 1, sehandle);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800175
176 FILE *fp = fopen(path, mode);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800177 return fp;
178}
179
Tao Bao04ca4262015-09-10 15:32:24 -0700180// close a file, log an error if the error indicator is set
181static void check_and_fclose(FILE *fp, const char *name) {
182 fflush(fp);
183 if (ferror(fp)) LOGE("Error in %s\n(%s)\n", name, strerror(errno));
184 fclose(fp);
185}
186
Elliott Hughesf14af802015-02-10 14:46:14 -0800187bool is_ro_debuggable() {
188 char value[PROPERTY_VALUE_MAX+1];
189 return (property_get("ro.debuggable", value, NULL) == 1 && value[0] == '1');
190}
191
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700192static void redirect_stdio(const char* filename) {
Tao Bao04ca4262015-09-10 15:32:24 -0700193 int pipefd[2];
194 if (pipe(pipefd) == -1) {
195 LOGE("pipe failed: %s\n", strerror(errno));
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700196
Tao Bao04ca4262015-09-10 15:32:24 -0700197 // Fall back to traditional logging mode without timestamps.
198 // If these fail, there's not really anywhere to complain...
199 freopen(filename, "a", stdout); setbuf(stdout, NULL);
200 freopen(filename, "a", stderr); setbuf(stderr, NULL);
201
202 return;
203 }
204
205 pid_t pid = fork();
206 if (pid == -1) {
207 LOGE("fork failed: %s\n", strerror(errno));
208
209 // Fall back to traditional logging mode without timestamps.
210 // If these fail, there's not really anywhere to complain...
211 freopen(filename, "a", stdout); setbuf(stdout, NULL);
212 freopen(filename, "a", stderr); setbuf(stderr, NULL);
213
214 return;
215 }
216
217 if (pid == 0) {
218 /// Close the unused write end.
219 close(pipefd[1]);
220
221 auto start = std::chrono::steady_clock::now();
222
223 // Child logger to actually write to the log file.
224 FILE* log_fp = fopen(filename, "a");
225 if (log_fp == nullptr) {
226 LOGE("fopen \"%s\" failed: %s\n", filename, strerror(errno));
227 close(pipefd[0]);
228 _exit(1);
229 }
230
231 FILE* pipe_fp = fdopen(pipefd[0], "r");
232 if (pipe_fp == nullptr) {
233 LOGE("fdopen failed: %s\n", strerror(errno));
234 check_and_fclose(log_fp, filename);
235 close(pipefd[0]);
236 _exit(1);
237 }
238
239 char* line = nullptr;
240 size_t len = 0;
241 while (getline(&line, &len, pipe_fp) != -1) {
242 auto now = std::chrono::steady_clock::now();
243 double duration = std::chrono::duration_cast<std::chrono::duration<double>>(
244 now - start).count();
245 if (line[0] == '\n') {
246 fprintf(log_fp, "[%12.6lf]\n", duration);
247 } else {
248 fprintf(log_fp, "[%12.6lf] %s", duration, line);
249 }
250 fflush(log_fp);
251 }
252
253 LOGE("getline failed: %s\n", strerror(errno));
254
255 free(line);
256 check_and_fclose(log_fp, filename);
257 close(pipefd[0]);
258 _exit(1);
259 } else {
260 // Redirect stdout/stderr to the logger process.
261 // Close the unused read end.
262 close(pipefd[0]);
263
264 setbuf(stdout, nullptr);
265 setbuf(stderr, nullptr);
266
267 if (dup2(pipefd[1], STDOUT_FILENO) == -1) {
268 LOGE("dup2 stdout failed: %s\n", strerror(errno));
269 }
270 if (dup2(pipefd[1], STDERR_FILENO) == -1) {
271 LOGE("dup2 stderr failed: %s\n", strerror(errno));
272 }
273
274 close(pipefd[1]);
275 }
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800276}
277
278// command line args come from, in decreasing precedence:
279// - the actual command line
280// - the bootloader control block (one per line, after "recovery")
281// - the contents of COMMAND_FILE (one per line)
282static void
283get_args(int *argc, char ***argv) {
284 struct bootloader_message boot;
285 memset(&boot, 0, sizeof(boot));
286 get_bootloader_message(&boot); // this may fail, leaving a zeroed structure
Doug Zongkerc87bab12013-11-25 13:53:25 -0800287 stage = strndup(boot.stage, sizeof(boot.stage));
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800288
289 if (boot.command[0] != 0 && boot.command[0] != 255) {
Mark Salyzynf3bb31c2014-03-14 09:39:48 -0700290 LOGI("Boot command: %.*s\n", (int)sizeof(boot.command), boot.command);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800291 }
292
293 if (boot.status[0] != 0 && boot.status[0] != 255) {
Mark Salyzynf3bb31c2014-03-14 09:39:48 -0700294 LOGI("Boot status: %.*s\n", (int)sizeof(boot.status), boot.status);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800295 }
296
297 // --- if arguments weren't supplied, look in the bootloader control block
298 if (*argc <= 1) {
299 boot.recovery[sizeof(boot.recovery) - 1] = '\0'; // Ensure termination
300 const char *arg = strtok(boot.recovery, "\n");
301 if (arg != NULL && !strcmp(arg, "recovery")) {
302 *argv = (char **) malloc(sizeof(char *) * MAX_ARGS);
303 (*argv)[0] = strdup(arg);
304 for (*argc = 1; *argc < MAX_ARGS; ++*argc) {
305 if ((arg = strtok(NULL, "\n")) == NULL) break;
306 (*argv)[*argc] = strdup(arg);
307 }
308 LOGI("Got arguments from boot message\n");
309 } else if (boot.recovery[0] != 0 && boot.recovery[0] != 255) {
310 LOGE("Bad boot message\n\"%.20s\"\n", boot.recovery);
311 }
312 }
313
Tao Bao26112e52016-02-25 12:29:40 -0800314 // --- if that doesn't work, try the command file (if we have /cache).
315 if (*argc <= 1 && has_cache) {
Doug Zongkerd4208f92010-09-20 12:16:13 -0700316 FILE *fp = fopen_path(COMMAND_FILE, "r");
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800317 if (fp != NULL) {
Jin Feng93ffa752013-06-04 17:46:24 +0800318 char *token;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800319 char *argv0 = (*argv)[0];
320 *argv = (char **) malloc(sizeof(char *) * MAX_ARGS);
321 (*argv)[0] = argv0; // use the same program name
322
323 char buf[MAX_ARG_LENGTH];
324 for (*argc = 1; *argc < MAX_ARGS; ++*argc) {
325 if (!fgets(buf, sizeof(buf), fp)) break;
Jin Feng93ffa752013-06-04 17:46:24 +0800326 token = strtok(buf, "\r\n");
327 if (token != NULL) {
328 (*argv)[*argc] = strdup(token); // Strip newline.
329 } else {
330 --*argc;
331 }
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800332 }
333
334 check_and_fclose(fp, COMMAND_FILE);
335 LOGI("Got arguments from %s\n", COMMAND_FILE);
336 }
337 }
338
339 // --> write the arguments we have back into the bootloader control block
340 // always boot into recovery after this (until finish_recovery() is called)
341 strlcpy(boot.command, "boot-recovery", sizeof(boot.command));
342 strlcpy(boot.recovery, "recovery\n", sizeof(boot.recovery));
343 int i;
344 for (i = 1; i < *argc; ++i) {
345 strlcat(boot.recovery, (*argv)[i], sizeof(boot.recovery));
346 strlcat(boot.recovery, "\n", sizeof(boot.recovery));
347 }
348 set_bootloader_message(&boot);
349}
350
Doug Zongker34c98df2009-08-18 12:05:45 -0700351static void
Oscar Montemayor05231562009-11-30 08:40:57 -0800352set_sdcard_update_bootloader_message() {
Doug Zongker34c98df2009-08-18 12:05:45 -0700353 struct bootloader_message boot;
354 memset(&boot, 0, sizeof(boot));
355 strlcpy(boot.command, "boot-recovery", sizeof(boot.command));
356 strlcpy(boot.recovery, "recovery\n", sizeof(boot.recovery));
357 set_bootloader_message(&boot);
358}
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800359
Tao Baobef39712015-05-04 18:50:27 -0700360// Read from kernel log into buffer and write out to file.
361static void save_kernel_log(const char* destination) {
362 int klog_buf_len = klogctl(KLOG_SIZE_BUFFER, 0, 0);
Patrick Tjincd055ee2014-12-09 11:26:40 -0800363 if (klog_buf_len <= 0) {
Tao Baobef39712015-05-04 18:50:27 -0700364 LOGE("Error getting klog size: %s\n", strerror(errno));
Patrick Tjincd055ee2014-12-09 11:26:40 -0800365 return;
366 }
367
Tao Baobef39712015-05-04 18:50:27 -0700368 std::string buffer(klog_buf_len, 0);
369 int n = klogctl(KLOG_READ_ALL, &buffer[0], klog_buf_len);
370 if (n == -1) {
371 LOGE("Error in reading klog: %s\n", strerror(errno));
Patrick Tjincd055ee2014-12-09 11:26:40 -0800372 return;
373 }
Tao Baobef39712015-05-04 18:50:27 -0700374 buffer.resize(n);
375 android::base::WriteStringToFile(buffer, destination);
Patrick Tjincd055ee2014-12-09 11:26:40 -0800376}
377
Tao Baof0124322015-04-11 02:04:11 +0000378// How much of the temp log we have copied to the copy in cache.
379static long tmplog_offset = 0;
380
Tao Baobef39712015-05-04 18:50:27 -0700381static void copy_log_file(const char* source, const char* destination, bool append) {
382 FILE* dest_fp = fopen_path(destination, append ? "a" : "w");
383 if (dest_fp == nullptr) {
Doug Zongker2c3539e2010-09-29 13:21:30 -0700384 LOGE("Can't open %s\n", destination);
385 } else {
Tao Baobef39712015-05-04 18:50:27 -0700386 FILE* source_fp = fopen(source, "r");
387 if (source_fp != nullptr) {
Tao Baof0124322015-04-11 02:04:11 +0000388 if (append) {
Tao Baobef39712015-05-04 18:50:27 -0700389 fseek(source_fp, tmplog_offset, SEEK_SET); // Since last write
Doug Zongker2c3539e2010-09-29 13:21:30 -0700390 }
391 char buf[4096];
Tao Baobef39712015-05-04 18:50:27 -0700392 size_t bytes;
393 while ((bytes = fread(buf, 1, sizeof(buf), source_fp)) != 0) {
394 fwrite(buf, 1, bytes, dest_fp);
Doug Zongker2c3539e2010-09-29 13:21:30 -0700395 }
Tao Baobef39712015-05-04 18:50:27 -0700396 if (append) {
397 tmplog_offset = ftell(source_fp);
398 }
399 check_and_fclose(source_fp, source);
Doug Zongker2c3539e2010-09-29 13:21:30 -0700400 }
Tao Baobef39712015-05-04 18:50:27 -0700401 check_and_fclose(dest_fp, destination);
Doug Zongker2c3539e2010-09-29 13:21:30 -0700402 }
403}
404
Tao Baobef39712015-05-04 18:50:27 -0700405// Rename last_log -> last_log.1 -> last_log.2 -> ... -> last_log.$max.
406// Similarly rename last_kmsg -> last_kmsg.1 -> ... -> last_kmsg.$max.
407// Overwrite any existing last_log.$max and last_kmsg.$max.
408static void rotate_logs(int max) {
Tao Bao682c34b2015-04-07 17:16:35 -0700409 // Logs should only be rotated once.
410 static bool rotated = false;
411 if (rotated) {
412 return;
413 }
414 rotated = true;
415 ensure_path_mounted(LAST_LOG_FILE);
Tao Baobef39712015-05-04 18:50:27 -0700416 ensure_path_mounted(LAST_KMSG_FILE);
Tao Bao682c34b2015-04-07 17:16:35 -0700417
Tao Bao682c34b2015-04-07 17:16:35 -0700418 for (int i = max-1; i >= 0; --i) {
Tao Bao80e46e02015-06-03 10:49:29 -0700419 std::string old_log = android::base::StringPrintf("%s", LAST_LOG_FILE);
420 if (i > 0) {
421 old_log += "." + std::to_string(i);
422 }
Tao Baobef39712015-05-04 18:50:27 -0700423 std::string new_log = android::base::StringPrintf("%s.%d", LAST_LOG_FILE, i+1);
424 // Ignore errors if old_log doesn't exist.
425 rename(old_log.c_str(), new_log.c_str());
426
Tao Bao80e46e02015-06-03 10:49:29 -0700427 std::string old_kmsg = android::base::StringPrintf("%s", LAST_KMSG_FILE);
428 if (i > 0) {
429 old_kmsg += "." + std::to_string(i);
430 }
Tao Baobef39712015-05-04 18:50:27 -0700431 std::string new_kmsg = android::base::StringPrintf("%s.%d", LAST_KMSG_FILE, i+1);
432 rename(old_kmsg.c_str(), new_kmsg.c_str());
Doug Zongkerda1ebae2013-05-16 11:23:48 -0700433 }
434}
Doug Zongker2c3539e2010-09-29 13:21:30 -0700435
Tao Bao682c34b2015-04-07 17:16:35 -0700436static void copy_logs() {
Tao Bao26112e52016-02-25 12:29:40 -0800437 // We can do nothing for now if there's no /cache partition.
438 if (!has_cache) {
439 return;
440 }
441
Tao Bao682c34b2015-04-07 17:16:35 -0700442 // We only rotate and record the log of the current session if there are
443 // actual attempts to modify the flash, such as wipes, installs from BCB
444 // or menu selections. This is to avoid unnecessary rotation (and
445 // possible deletion) of log files, if it does not do anything loggable.
446 if (!modified_flash) {
447 return;
448 }
449
Tao Baobef39712015-05-04 18:50:27 -0700450 rotate_logs(KEEP_LOG_COUNT);
Tao Bao682c34b2015-04-07 17:16:35 -0700451
Doug Zongkerf24fd7e2013-07-02 11:43:25 -0700452 // Copy logs to cache so the system can find out what happened.
Tao Baof0124322015-04-11 02:04:11 +0000453 copy_log_file(TEMPORARY_LOG_FILE, LOG_FILE, true);
454 copy_log_file(TEMPORARY_LOG_FILE, LAST_LOG_FILE, false);
455 copy_log_file(TEMPORARY_INSTALL_FILE, LAST_INSTALL_FILE, false);
456 save_kernel_log(LAST_KMSG_FILE);
Doug Zongkerf24fd7e2013-07-02 11:43:25 -0700457 chmod(LOG_FILE, 0600);
458 chown(LOG_FILE, 1000, 1000); // system user
Tao Baof0124322015-04-11 02:04:11 +0000459 chmod(LAST_KMSG_FILE, 0600);
460 chown(LAST_KMSG_FILE, 1000, 1000); // system user
Doug Zongkerf24fd7e2013-07-02 11:43:25 -0700461 chmod(LAST_LOG_FILE, 0640);
462 chmod(LAST_INSTALL_FILE, 0644);
463 sync();
464}
465
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800466// clear the recovery command and prepare to boot a (hopefully working) system,
467// copy our log file to cache as well (for the system to read), and
468// record any intent we were asked to communicate back to the system.
469// this function is idempotent: call it as many times as you like.
470static void
Oscar Montemayor05231562009-11-30 08:40:57 -0800471finish_recovery(const char *send_intent) {
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800472 // By this point, we're ready to return to the main system...
Tao Bao26112e52016-02-25 12:29:40 -0800473 if (send_intent != NULL && has_cache) {
Doug Zongkerd4208f92010-09-20 12:16:13 -0700474 FILE *fp = fopen_path(INTENT_FILE, "w");
Jay Freeman (saurik)619ec2f2008-11-17 01:56:05 +0000475 if (fp == NULL) {
476 LOGE("Can't open %s\n", INTENT_FILE);
477 } else {
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800478 fputs(send_intent, fp);
479 check_and_fclose(fp, INTENT_FILE);
480 }
481 }
482
Doug Zongker4f33e552012-08-23 13:16:12 -0700483 // Save the locale to cache, so if recovery is next started up
484 // without a --locale argument (eg, directly from the bootloader)
485 // it will use the last-known locale.
Tao Bao26112e52016-02-25 12:29:40 -0800486 if (locale != NULL && has_cache) {
Doug Zongker4f33e552012-08-23 13:16:12 -0700487 LOGI("Saving locale \"%s\"\n", locale);
488 FILE* fp = fopen_path(LOCALE_FILE, "w");
489 fwrite(locale, 1, strlen(locale), fp);
490 fflush(fp);
491 fsync(fileno(fp));
492 check_and_fclose(fp, LOCALE_FILE);
493 }
494
Doug Zongkerf24fd7e2013-07-02 11:43:25 -0700495 copy_logs();
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800496
Doug Zongkere5d5ac72012-04-12 11:01:22 -0700497 // Reset to normal system boot so recovery won't cycle indefinitely.
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800498 struct bootloader_message boot;
499 memset(&boot, 0, sizeof(boot));
500 set_bootloader_message(&boot);
501
502 // Remove the command file, so recovery won't repeat indefinitely.
Tao Bao26112e52016-02-25 12:29:40 -0800503 if (has_cache) {
504 if (ensure_path_mounted(COMMAND_FILE) != 0 || (unlink(COMMAND_FILE) && errno != ENOENT)) {
505 LOGW("Can't unlink %s\n", COMMAND_FILE);
506 }
507 ensure_path_unmounted(CACHE_ROOT);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800508 }
509
510 sync(); // For good measure.
511}
512
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700513typedef struct _saved_log_file {
514 char* name;
515 struct stat st;
516 unsigned char* data;
517 struct _saved_log_file* next;
518} saved_log_file;
519
Elliott Hughes945548e2015-06-05 17:59:56 -0700520static bool erase_volume(const char* volume) {
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700521 bool is_cache = (strcmp(volume, CACHE_ROOT) == 0);
522
Doug Zongker02ec6b82012-08-22 17:26:40 -0700523 ui->SetBackground(RecoveryUI::ERASING);
Doug Zongker211aebc2011-10-28 15:13:10 -0700524 ui->SetProgressType(RecoveryUI::INDETERMINATE);
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700525
526 saved_log_file* head = NULL;
527
528 if (is_cache) {
Tao Baobef39712015-05-04 18:50:27 -0700529 // If we're reformatting /cache, we load any past logs
530 // (i.e. "/cache/recovery/last_*") and the current log
531 // ("/cache/recovery/log") into memory, so we can restore them after
532 // the reformat.
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700533
534 ensure_path_mounted(volume);
535
536 DIR* d;
537 struct dirent* de;
538 d = opendir(CACHE_LOG_DIR);
539 if (d) {
540 char path[PATH_MAX];
541 strcpy(path, CACHE_LOG_DIR);
542 strcat(path, "/");
543 int path_len = strlen(path);
544 while ((de = readdir(d)) != NULL) {
Tao Baobef39712015-05-04 18:50:27 -0700545 if (strncmp(de->d_name, "last_", 5) == 0 || strcmp(de->d_name, "log") == 0) {
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700546 saved_log_file* p = (saved_log_file*) malloc(sizeof(saved_log_file));
547 strcpy(path+path_len, de->d_name);
548 p->name = strdup(path);
549 if (stat(path, &(p->st)) == 0) {
550 // truncate files to 512kb
551 if (p->st.st_size > (1 << 19)) {
552 p->st.st_size = 1 << 19;
553 }
554 p->data = (unsigned char*) malloc(p->st.st_size);
555 FILE* f = fopen(path, "rb");
556 fread(p->data, 1, p->st.st_size, f);
557 fclose(f);
558 p->next = head;
559 head = p;
560 } else {
561 free(p);
562 }
563 }
564 }
565 closedir(d);
566 } else {
567 if (errno != ENOENT) {
568 printf("opendir failed: %s\n", strerror(errno));
569 }
570 }
571 }
572
Doug Zongker211aebc2011-10-28 15:13:10 -0700573 ui->Print("Formatting %s...\n", volume);
Doug Zongker2c3539e2010-09-29 13:21:30 -0700574
Doug Zongkerd0181b82011-10-19 10:51:12 -0700575 ensure_path_unmounted(volume);
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700576 int result = format_volume(volume);
Doug Zongkerd0181b82011-10-19 10:51:12 -0700577
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700578 if (is_cache) {
579 while (head) {
580 FILE* f = fopen_path(head->name, "wb");
581 if (f) {
582 fwrite(head->data, 1, head->st.st_size, f);
583 fclose(f);
584 chmod(head->name, head->st.st_mode);
585 chown(head->name, head->st.st_uid, head->st.st_gid);
586 }
587 free(head->name);
588 free(head->data);
589 saved_log_file* temp = head->next;
590 free(head);
591 head = temp;
592 }
593
Tao Baof0124322015-04-11 02:04:11 +0000594 // Any part of the log we'd copied to cache is now gone.
595 // Reset the pointer so we copy from the beginning of the temp
596 // log.
597 tmplog_offset = 0;
Doug Zongker6d0d7ac2013-07-09 13:34:55 -0700598 copy_logs();
Doug Zongker2c3539e2010-09-29 13:21:30 -0700599 }
600
Elliott Hughes945548e2015-06-05 17:59:56 -0700601 return (result == 0);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800602}
603
Doug Zongkerf93d8162009-09-22 15:16:02 -0700604static int
Doug Zongker28ce47c2011-10-28 10:33:05 -0700605get_menu_selection(const char* const * headers, const char* const * items,
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700606 int menu_only, int initial_selection, Device* device) {
Doug Zongkerf93d8162009-09-22 15:16:02 -0700607 // throw away keys pressed previously, so user doesn't
608 // accidentally trigger menu items.
Doug Zongker211aebc2011-10-28 15:13:10 -0700609 ui->FlushKeys();
Doug Zongkerf93d8162009-09-22 15:16:02 -0700610
Doug Zongker211aebc2011-10-28 15:13:10 -0700611 ui->StartMenu(headers, items, initial_selection);
Doug Zongker8674a722010-09-15 11:08:23 -0700612 int selected = initial_selection;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800613 int chosen_item = -1;
614
Doug Zongkerf93d8162009-09-22 15:16:02 -0700615 while (chosen_item < 0) {
Doug Zongker211aebc2011-10-28 15:13:10 -0700616 int key = ui->WaitKey();
617 int visible = ui->IsTextVisible();
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800618
Doug Zongker5cae4452011-01-25 13:15:30 -0800619 if (key == -1) { // ui_wait_key() timed out
Doug Zongker211aebc2011-10-28 15:13:10 -0700620 if (ui->WasTextEverVisible()) {
Doug Zongker5cae4452011-01-25 13:15:30 -0800621 continue;
622 } else {
623 LOGI("timed out waiting for key input; rebooting.\n");
Doug Zongker211aebc2011-10-28 15:13:10 -0700624 ui->EndMenu();
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700625 return 0; // XXX fixme
Doug Zongker5cae4452011-01-25 13:15:30 -0800626 }
627 }
628
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700629 int action = device->HandleMenuKey(key, visible);
Doug Zongkerddd6a282009-06-09 12:22:33 -0700630
631 if (action < 0) {
632 switch (action) {
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700633 case Device::kHighlightUp:
Elliott Hughes642aaa72015-04-10 12:47:46 -0700634 selected = ui->SelectMenu(--selected);
Doug Zongkerddd6a282009-06-09 12:22:33 -0700635 break;
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700636 case Device::kHighlightDown:
Elliott Hughes642aaa72015-04-10 12:47:46 -0700637 selected = ui->SelectMenu(++selected);
Doug Zongkerddd6a282009-06-09 12:22:33 -0700638 break;
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700639 case Device::kInvokeItem:
Doug Zongkerddd6a282009-06-09 12:22:33 -0700640 chosen_item = selected;
641 break;
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700642 case Device::kNoAction:
Doug Zongkerddd6a282009-06-09 12:22:33 -0700643 break;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800644 }
Doug Zongkerf93d8162009-09-22 15:16:02 -0700645 } else if (!menu_only) {
Doug Zongkerddd6a282009-06-09 12:22:33 -0700646 chosen_item = action;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800647 }
Doug Zongkerf93d8162009-09-22 15:16:02 -0700648 }
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800649
Doug Zongker211aebc2011-10-28 15:13:10 -0700650 ui->EndMenu();
Doug Zongkerf93d8162009-09-22 15:16:02 -0700651 return chosen_item;
652}
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800653
Doug Zongker8674a722010-09-15 11:08:23 -0700654static int compare_string(const void* a, const void* b) {
655 return strcmp(*(const char**)a, *(const char**)b);
656}
657
Doug Zongker93950222014-07-08 14:10:23 -0700658// Returns a malloc'd path, or NULL.
Elliott Hughes30694c92015-03-25 15:16:51 -0700659static char* browse_directory(const char* path, Device* device) {
Michael Ward9d2629c2011-06-23 22:14:24 -0700660 ensure_path_mounted(path);
Doug Zongkerc18eeb82010-09-21 16:49:26 -0700661
Elliott Hughes30694c92015-03-25 15:16:51 -0700662 DIR* d = opendir(path);
Doug Zongker8674a722010-09-15 11:08:23 -0700663 if (d == NULL) {
664 LOGE("error opening %s: %s\n", path, strerror(errno));
Doug Zongker93950222014-07-08 14:10:23 -0700665 return NULL;
Doug Zongker8674a722010-09-15 11:08:23 -0700666 }
667
Doug Zongker8674a722010-09-15 11:08:23 -0700668 int d_size = 0;
669 int d_alloc = 10;
Doug Zongker28ce47c2011-10-28 10:33:05 -0700670 char** dirs = (char**)malloc(d_alloc * sizeof(char*));
Doug Zongker8674a722010-09-15 11:08:23 -0700671 int z_size = 1;
672 int z_alloc = 10;
Doug Zongker28ce47c2011-10-28 10:33:05 -0700673 char** zips = (char**)malloc(z_alloc * sizeof(char*));
Doug Zongker8674a722010-09-15 11:08:23 -0700674 zips[0] = strdup("../");
675
Elliott Hughes30694c92015-03-25 15:16:51 -0700676 struct dirent* de;
Doug Zongker8674a722010-09-15 11:08:23 -0700677 while ((de = readdir(d)) != NULL) {
678 int name_len = strlen(de->d_name);
679
680 if (de->d_type == DT_DIR) {
681 // skip "." and ".." entries
682 if (name_len == 1 && de->d_name[0] == '.') continue;
683 if (name_len == 2 && de->d_name[0] == '.' &&
684 de->d_name[1] == '.') continue;
685
686 if (d_size >= d_alloc) {
687 d_alloc *= 2;
Doug Zongker28ce47c2011-10-28 10:33:05 -0700688 dirs = (char**)realloc(dirs, d_alloc * sizeof(char*));
Doug Zongker8674a722010-09-15 11:08:23 -0700689 }
Doug Zongker28ce47c2011-10-28 10:33:05 -0700690 dirs[d_size] = (char*)malloc(name_len + 2);
Doug Zongker8674a722010-09-15 11:08:23 -0700691 strcpy(dirs[d_size], de->d_name);
692 dirs[d_size][name_len] = '/';
693 dirs[d_size][name_len+1] = '\0';
694 ++d_size;
695 } else if (de->d_type == DT_REG &&
696 name_len >= 4 &&
697 strncasecmp(de->d_name + (name_len-4), ".zip", 4) == 0) {
698 if (z_size >= z_alloc) {
699 z_alloc *= 2;
Doug Zongker28ce47c2011-10-28 10:33:05 -0700700 zips = (char**)realloc(zips, z_alloc * sizeof(char*));
Doug Zongker8674a722010-09-15 11:08:23 -0700701 }
702 zips[z_size++] = strdup(de->d_name);
703 }
704 }
705 closedir(d);
706
707 qsort(dirs, d_size, sizeof(char*), compare_string);
708 qsort(zips, z_size, sizeof(char*), compare_string);
709
710 // append dirs to the zips list
711 if (d_size + z_size + 1 > z_alloc) {
712 z_alloc = d_size + z_size + 1;
Doug Zongker28ce47c2011-10-28 10:33:05 -0700713 zips = (char**)realloc(zips, z_alloc * sizeof(char*));
Doug Zongker8674a722010-09-15 11:08:23 -0700714 }
715 memcpy(zips + z_size, dirs, d_size * sizeof(char*));
716 free(dirs);
717 z_size += d_size;
718 zips[z_size] = NULL;
719
Elliott Hughes8fd86d72015-04-13 14:36:02 -0700720 const char* headers[] = { "Choose a package to install:", path, NULL };
Elliott Hughes30694c92015-03-25 15:16:51 -0700721
Doug Zongker93950222014-07-08 14:10:23 -0700722 char* result;
Doug Zongker8674a722010-09-15 11:08:23 -0700723 int chosen_item = 0;
Doug Zongker93950222014-07-08 14:10:23 -0700724 while (true) {
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700725 chosen_item = get_menu_selection(headers, zips, 1, chosen_item, device);
Doug Zongker8674a722010-09-15 11:08:23 -0700726
727 char* item = zips[chosen_item];
728 int item_len = strlen(item);
729 if (chosen_item == 0) { // item 0 is always "../"
Michael Ward9d2629c2011-06-23 22:14:24 -0700730 // go up but continue browsing (if the caller is update_directory)
Doug Zongker93950222014-07-08 14:10:23 -0700731 result = NULL;
Doug Zongker8674a722010-09-15 11:08:23 -0700732 break;
733 }
Doug Zongker93950222014-07-08 14:10:23 -0700734
735 char new_path[PATH_MAX];
736 strlcpy(new_path, path, PATH_MAX);
737 strlcat(new_path, "/", PATH_MAX);
738 strlcat(new_path, item, PATH_MAX);
739
740 if (item[item_len-1] == '/') {
741 // recurse down into a subdirectory
742 new_path[strlen(new_path)-1] = '\0'; // truncate the trailing '/'
743 result = browse_directory(new_path, device);
744 if (result) break;
745 } else {
746 // selected a zip file: return the malloc'd path to the caller.
747 result = strdup(new_path);
748 break;
749 }
750 }
Doug Zongker8674a722010-09-15 11:08:23 -0700751
Elliott Hughes30694c92015-03-25 15:16:51 -0700752 for (int i = 0; i < z_size; ++i) free(zips[i]);
Doug Zongker8674a722010-09-15 11:08:23 -0700753 free(zips);
Doug Zongker8674a722010-09-15 11:08:23 -0700754
755 return result;
756}
757
Elliott Hughes30694c92015-03-25 15:16:51 -0700758static bool yes_no(Device* device, const char* question1, const char* question2) {
Elliott Hughes8fd86d72015-04-13 14:36:02 -0700759 const char* headers[] = { question1, question2, NULL };
Elliott Hughes30694c92015-03-25 15:16:51 -0700760 const char* items[] = { " No", " Yes", NULL };
Doug Zongkerddd6a282009-06-09 12:22:33 -0700761
Elliott Hughes30694c92015-03-25 15:16:51 -0700762 int chosen_item = get_menu_selection(headers, items, 1, 0, device);
763 return (chosen_item == 1);
764}
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800765
Tao Baoe39a9bc2015-03-31 12:19:05 -0700766// Return true on success.
767static bool wipe_data(int should_confirm, Device* device) {
768 if (should_confirm && !yes_no(device, "Wipe all user data?", " THIS CAN NOT BE UNDONE!")) {
769 return false;
Doug Zongkerf93d8162009-09-22 15:16:02 -0700770 }
Doug Zongker1066d2c2009-04-01 13:57:40 -0700771
Tao Bao682c34b2015-04-07 17:16:35 -0700772 modified_flash = true;
773
Doug Zongker211aebc2011-10-28 15:13:10 -0700774 ui->Print("\n-- Wiping data...\n");
Elliott Hughes945548e2015-06-05 17:59:56 -0700775 bool success =
776 device->PreWipeData() &&
777 erase_volume("/data") &&
Tao Bao26112e52016-02-25 12:29:40 -0800778 (has_cache ? erase_volume("/cache") : true) &&
Elliott Hughes945548e2015-06-05 17:59:56 -0700779 device->PostWipeData();
780 ui->Print("Data wipe %s.\n", success ? "complete" : "failed");
781 return success;
Doug Zongkerf93d8162009-09-22 15:16:02 -0700782}
783
Tao Baoe39a9bc2015-03-31 12:19:05 -0700784// Return true on success.
785static bool wipe_cache(bool should_confirm, Device* device) {
Tao Bao26112e52016-02-25 12:29:40 -0800786 if (!has_cache) {
787 ui->Print("No /cache partition found.\n");
788 return false;
789 }
790
Elliott Hughes30694c92015-03-25 15:16:51 -0700791 if (should_confirm && !yes_no(device, "Wipe cache?", " THIS CAN NOT BE UNDONE!")) {
Tao Baoe39a9bc2015-03-31 12:19:05 -0700792 return false;
Elliott Hughes30694c92015-03-25 15:16:51 -0700793 }
794
Tao Bao682c34b2015-04-07 17:16:35 -0700795 modified_flash = true;
796
Elliott Hughes30694c92015-03-25 15:16:51 -0700797 ui->Print("\n-- Wiping cache...\n");
Elliott Hughes945548e2015-06-05 17:59:56 -0700798 bool success = erase_volume("/cache");
799 ui->Print("Cache wipe %s.\n", success ? "complete" : "failed");
800 return success;
Elliott Hughes30694c92015-03-25 15:16:51 -0700801}
802
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700803static void choose_recovery_file(Device* device) {
Tao Bao26112e52016-02-25 12:29:40 -0800804 if (!has_cache) {
805 ui->Print("No /cache partition found.\n");
806 return;
807 }
808
Elliott Hughesc0491632015-05-06 12:40:05 -0700809 // "Back" + KEEP_LOG_COUNT * 2 + terminating nullptr entry
810 char* entries[1 + KEEP_LOG_COUNT * 2 + 1];
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700811 memset(entries, 0, sizeof(entries));
812
Tao Baobef39712015-05-04 18:50:27 -0700813 unsigned int n = 0;
Patrick Tjincd055ee2014-12-09 11:26:40 -0800814
Patrick Tjincd055ee2014-12-09 11:26:40 -0800815 // Add LAST_LOG_FILE + LAST_LOG_FILE.x
Tao Baobef39712015-05-04 18:50:27 -0700816 // Add LAST_KMSG_FILE + LAST_KMSG_FILE.x
817 for (int i = 0; i < KEEP_LOG_COUNT; i++) {
818 char* log_file;
Tao Bao80e46e02015-06-03 10:49:29 -0700819 int ret;
820 ret = (i == 0) ? asprintf(&log_file, "%s", LAST_LOG_FILE) :
821 asprintf(&log_file, "%s.%d", LAST_LOG_FILE, i);
822 if (ret == -1) {
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700823 // memory allocation failure - return early. Should never happen.
824 return;
825 }
Tao Baobef39712015-05-04 18:50:27 -0700826 if ((ensure_path_mounted(log_file) != 0) || (access(log_file, R_OK) == -1)) {
827 free(log_file);
828 } else {
829 entries[n++] = log_file;
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700830 }
Tao Baobef39712015-05-04 18:50:27 -0700831
832 char* kmsg_file;
Tao Bao80e46e02015-06-03 10:49:29 -0700833 ret = (i == 0) ? asprintf(&kmsg_file, "%s", LAST_KMSG_FILE) :
834 asprintf(&kmsg_file, "%s.%d", LAST_KMSG_FILE, i);
835 if (ret == -1) {
Tao Baobef39712015-05-04 18:50:27 -0700836 // memory allocation failure - return early. Should never happen.
837 return;
838 }
839 if ((ensure_path_mounted(kmsg_file) != 0) || (access(kmsg_file, R_OK) == -1)) {
840 free(kmsg_file);
841 } else {
842 entries[n++] = kmsg_file;
843 }
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700844 }
845
Elliott Hughesc0491632015-05-06 12:40:05 -0700846 entries[n++] = strdup("Back");
847
Tao Baobef39712015-05-04 18:50:27 -0700848 const char* headers[] = { "Select file to view", nullptr };
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700849
Elliott Hughes8de52072015-04-08 20:06:50 -0700850 while (true) {
Elliott Hughes30694c92015-03-25 15:16:51 -0700851 int chosen_item = get_menu_selection(headers, entries, 1, 0, device);
Elliott Hughesc0491632015-05-06 12:40:05 -0700852 if (strcmp(entries[chosen_item], "Back") == 0) break;
Elliott Hughes8de52072015-04-08 20:06:50 -0700853
Elliott Hughes8de52072015-04-08 20:06:50 -0700854 ui->ShowFile(entries[chosen_item]);
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700855 }
856
Tao Baobef39712015-05-04 18:50:27 -0700857 for (size_t i = 0; i < (sizeof(entries) / sizeof(*entries)); i++) {
Nick Kralevicha9ad0322014-10-22 18:38:48 -0700858 free(entries[i]);
859 }
860}
861
Tao Baocdcf28f2016-01-13 15:05:20 -0800862// How long (in seconds) we wait for the fuse-provided package file to
863// appear, before timing out.
864#define SDCARD_INSTALL_TIMEOUT 10
865
Tao Bao145d8612015-03-25 15:51:15 -0700866static int apply_from_sdcard(Device* device, bool* wipe_cache) {
Tao Bao682c34b2015-04-07 17:16:35 -0700867 modified_flash = true;
868
Christian Poetzsch4ec58a42015-02-19 10:42:39 +0000869 if (ensure_path_mounted(SDCARD_ROOT) != 0) {
870 ui->Print("\n-- Couldn't mount %s.\n", SDCARD_ROOT);
871 return INSTALL_ERROR;
872 }
873
874 char* path = browse_directory(SDCARD_ROOT, device);
875 if (path == NULL) {
Elliott Hughes018ed312015-04-08 16:51:36 -0700876 ui->Print("\n-- No package file selected.\n");
caozhiyuanb4effb92015-06-10 16:46:38 +0800877 ensure_path_unmounted(SDCARD_ROOT);
Christian Poetzsch4ec58a42015-02-19 10:42:39 +0000878 return INSTALL_ERROR;
879 }
880
881 ui->Print("\n-- Install %s ...\n", path);
882 set_sdcard_update_bootloader_message();
Christian Poetzsch4ec58a42015-02-19 10:42:39 +0000883
Tao Baocdcf28f2016-01-13 15:05:20 -0800884 // We used to use fuse in a thread as opposed to a process. Since accessing
885 // through fuse involves going from kernel to userspace to kernel, it leads
886 // to deadlock when a page fault occurs. (Bug: 26313124)
887 pid_t child;
888 if ((child = fork()) == 0) {
889 bool status = start_sdcard_fuse(path);
890
891 _exit(status ? EXIT_SUCCESS : EXIT_FAILURE);
892 }
893
894 // FUSE_SIDELOAD_HOST_PATHNAME will start to exist once the fuse in child
895 // process is ready.
896 int result = INSTALL_ERROR;
897 int status;
898 bool waited = false;
899 for (int i = 0; i < SDCARD_INSTALL_TIMEOUT; ++i) {
900 if (waitpid(child, &status, WNOHANG) == -1) {
901 result = INSTALL_ERROR;
902 waited = true;
903 break;
904 }
905
906 struct stat sb;
907 if (stat(FUSE_SIDELOAD_HOST_PATHNAME, &sb) == -1) {
908 if (errno == ENOENT && i < SDCARD_INSTALL_TIMEOUT-1) {
909 sleep(1);
910 continue;
911 } else {
912 LOGE("Timed out waiting for the fuse-provided package.\n");
913 result = INSTALL_ERROR;
914 kill(child, SIGKILL);
915 break;
916 }
917 }
918
919 result = install_package(FUSE_SIDELOAD_HOST_PATHNAME, wipe_cache,
Christian Poetzsch4ec58a42015-02-19 10:42:39 +0000920 TEMPORARY_INSTALL_FILE, false);
Tao Baocdcf28f2016-01-13 15:05:20 -0800921 break;
922 }
Christian Poetzsch4ec58a42015-02-19 10:42:39 +0000923
Tao Baocdcf28f2016-01-13 15:05:20 -0800924 if (!waited) {
925 // Calling stat() on this magic filename signals the fuse
926 // filesystem to shut down.
927 struct stat sb;
928 stat(FUSE_SIDELOAD_HOST_EXIT_PATHNAME, &sb);
929
930 waitpid(child, &status, 0);
931 }
932
933 if (!WIFEXITED(status) || WEXITSTATUS(status) != 0) {
934 LOGE("Error exit from the fuse process: %d\n", WEXITSTATUS(status));
935 }
936
Christian Poetzsch4ec58a42015-02-19 10:42:39 +0000937 ensure_path_unmounted(SDCARD_ROOT);
Tao Baocdcf28f2016-01-13 15:05:20 -0800938 return result;
Christian Poetzsch4ec58a42015-02-19 10:42:39 +0000939}
940
Doug Zongker8d9d3d52014-04-01 13:20:23 -0700941// Return REBOOT, SHUTDOWN, or REBOOT_BOOTLOADER. Returning NO_ACTION
942// means to take the default, which is to reboot or shutdown depending
943// on if the --shutdown_after flag was passed to recovery.
944static Device::BuiltinAction
Doug Zongker6c8553d2012-09-24 10:40:47 -0700945prompt_and_wait(Device* device, int status) {
Doug Zongkerf93d8162009-09-22 15:16:02 -0700946 for (;;) {
947 finish_recovery(NULL);
Doug Zongker6c8553d2012-09-24 10:40:47 -0700948 switch (status) {
949 case INSTALL_SUCCESS:
950 case INSTALL_NONE:
951 ui->SetBackground(RecoveryUI::NO_COMMAND);
952 break;
953
954 case INSTALL_ERROR:
955 case INSTALL_CORRUPT:
956 ui->SetBackground(RecoveryUI::ERROR);
957 break;
958 }
Doug Zongker211aebc2011-10-28 15:13:10 -0700959 ui->SetProgressType(RecoveryUI::EMPTY);
Doug Zongkerf93d8162009-09-22 15:16:02 -0700960
Elliott Hughes8fd86d72015-04-13 14:36:02 -0700961 int chosen_item = get_menu_selection(nullptr, device->GetMenuItems(), 0, 0, device);
Doug Zongkerf93d8162009-09-22 15:16:02 -0700962
963 // device-specific code may take some action here. It may
964 // return one of the core actions handled in the switch
965 // statement below.
Doug Zongker8d9d3d52014-04-01 13:20:23 -0700966 Device::BuiltinAction chosen_action = device->InvokeMenuItem(chosen_item);
Doug Zongkerf93d8162009-09-22 15:16:02 -0700967
Elliott Hughes30694c92015-03-25 15:16:51 -0700968 bool should_wipe_cache = false;
Doug Zongker8d9d3d52014-04-01 13:20:23 -0700969 switch (chosen_action) {
970 case Device::NO_ACTION:
971 break;
972
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700973 case Device::REBOOT:
Doug Zongker8d9d3d52014-04-01 13:20:23 -0700974 case Device::SHUTDOWN:
975 case Device::REBOOT_BOOTLOADER:
976 return chosen_action;
Doug Zongkerf93d8162009-09-22 15:16:02 -0700977
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700978 case Device::WIPE_DATA:
979 wipe_data(ui->IsTextVisible(), device);
Doug Zongker8d9d3d52014-04-01 13:20:23 -0700980 if (!ui->IsTextVisible()) return Device::NO_ACTION;
Doug Zongkerf93d8162009-09-22 15:16:02 -0700981 break;
982
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700983 case Device::WIPE_CACHE:
Elliott Hughes30694c92015-03-25 15:16:51 -0700984 wipe_cache(ui->IsTextVisible(), device);
Doug Zongker8d9d3d52014-04-01 13:20:23 -0700985 if (!ui->IsTextVisible()) return Device::NO_ACTION;
Doug Zongkerf93d8162009-09-22 15:16:02 -0700986 break;
987
Christian Poetzsch4ec58a42015-02-19 10:42:39 +0000988 case Device::APPLY_ADB_SIDELOAD:
Elliott Hughesec283402015-04-10 10:01:53 -0700989 case Device::APPLY_SDCARD:
Christian Poetzsch4ec58a42015-02-19 10:42:39 +0000990 {
991 bool adb = (chosen_action == Device::APPLY_ADB_SIDELOAD);
992 if (adb) {
Elliott Hughes30694c92015-03-25 15:16:51 -0700993 status = apply_from_adb(ui, &should_wipe_cache, TEMPORARY_INSTALL_FILE);
Doug Zongkerd0181b82011-10-19 10:51:12 -0700994 } else {
Elliott Hughes30694c92015-03-25 15:16:51 -0700995 status = apply_from_sdcard(device, &should_wipe_cache);
Doug Zongkerd0181b82011-10-19 10:51:12 -0700996 }
Doug Zongker945fc682014-07-10 10:50:39 -0700997
Elliott Hughes30694c92015-03-25 15:16:51 -0700998 if (status == INSTALL_SUCCESS && should_wipe_cache) {
Tao Baoe39a9bc2015-03-31 12:19:05 -0700999 if (!wipe_cache(false, device)) {
1000 status = INSTALL_ERROR;
1001 }
Christian Poetzsch4ec58a42015-02-19 10:42:39 +00001002 }
1003
Tao Baoc679f932015-03-30 09:43:49 -07001004 if (status != INSTALL_SUCCESS) {
1005 ui->SetBackground(RecoveryUI::ERROR);
1006 ui->Print("Installation aborted.\n");
1007 copy_logs();
1008 } else if (!ui->IsTextVisible()) {
1009 return Device::NO_ACTION; // reboot if logs aren't visible
1010 } else {
1011 ui->Print("\nInstall from %s complete.\n", adb ? "ADB" : "SD card");
Doug Zongker8674a722010-09-15 11:08:23 -07001012 }
Doug Zongkerf93d8162009-09-22 15:16:02 -07001013 }
1014 break;
Doug Zongkerdaefc1d2011-10-31 09:34:15 -07001015
Elliott Hughesec283402015-04-10 10:01:53 -07001016 case Device::VIEW_RECOVERY_LOGS:
1017 choose_recovery_file(device);
Michael Ward9d2629c2011-06-23 22:14:24 -07001018 break;
Doug Zongker9270a202012-01-09 15:16:13 -08001019
Elliott Hughesec283402015-04-10 10:01:53 -07001020 case Device::MOUNT_SYSTEM:
Tao Baoabb8f772015-07-30 14:43:27 -07001021 char system_root_image[PROPERTY_VALUE_MAX];
1022 property_get("ro.build.system_root_image", system_root_image, "");
1023
1024 // For a system image built with the root directory (i.e.
1025 // system_root_image == "true"), we mount it to /system_root, and symlink /system
1026 // to /system_root/system to make adb shell work (the symlink is created through
1027 // the build system).
1028 // Bug: 22855115
1029 if (strcmp(system_root_image, "true") == 0) {
1030 if (ensure_path_mounted_at("/", "/system_root") != -1) {
1031 ui->Print("Mounted /system.\n");
1032 }
1033 } else {
1034 if (ensure_path_mounted("/system") != -1) {
1035 ui->Print("Mounted /system.\n");
1036 }
Elliott Hughesec283402015-04-10 10:01:53 -07001037 }
Tao Baoabb8f772015-07-30 14:43:27 -07001038
Nick Kralevicha9ad0322014-10-22 18:38:48 -07001039 break;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001040 }
1041 }
1042}
1043
1044static void
Oscar Montemayor05231562009-11-30 08:40:57 -08001045print_property(const char *key, const char *name, void *cookie) {
Doug Zongker56c51052010-07-01 09:18:44 -07001046 printf("%s=%s\n", key, name);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001047}
1048
Doug Zongker02ec6b82012-08-22 17:26:40 -07001049static void
1050load_locale_from_cache() {
1051 FILE* fp = fopen_path(LOCALE_FILE, "r");
1052 char buffer[80];
1053 if (fp != NULL) {
1054 fgets(buffer, sizeof(buffer), fp);
1055 int j = 0;
Doug Zongker5fa8c232012-09-18 12:37:02 -07001056 unsigned int i;
Doug Zongker02ec6b82012-08-22 17:26:40 -07001057 for (i = 0; i < sizeof(buffer) && buffer[i]; ++i) {
1058 if (!isspace(buffer[i])) {
1059 buffer[j++] = buffer[i];
1060 }
1061 }
1062 buffer[j] = 0;
1063 locale = strdup(buffer);
Devin Kim6016d082012-10-08 09:47:37 -07001064 check_and_fclose(fp, LOCALE_FILE);
Doug Zongker02ec6b82012-08-22 17:26:40 -07001065 }
1066}
1067
Doug Zongker7c3ae452013-05-14 11:03:02 -07001068static RecoveryUI* gCurrentUI = NULL;
1069
1070void
1071ui_print(const char* format, ...) {
1072 char buffer[256];
1073
1074 va_list ap;
1075 va_start(ap, format);
1076 vsnprintf(buffer, sizeof(buffer), format, ap);
1077 va_end(ap);
1078
1079 if (gCurrentUI != NULL) {
1080 gCurrentUI->Print("%s", buffer);
1081 } else {
1082 fputs(buffer, stdout);
1083 }
1084}
1085
Yabin Cui53e7a062016-02-17 12:21:52 -08001086static bool is_battery_ok() {
1087 struct healthd_config healthd_config = {
1088 .batteryStatusPath = android::String8(android::String8::kEmptyString),
1089 .batteryHealthPath = android::String8(android::String8::kEmptyString),
1090 .batteryPresentPath = android::String8(android::String8::kEmptyString),
1091 .batteryCapacityPath = android::String8(android::String8::kEmptyString),
1092 .batteryVoltagePath = android::String8(android::String8::kEmptyString),
1093 .batteryTemperaturePath = android::String8(android::String8::kEmptyString),
1094 .batteryTechnologyPath = android::String8(android::String8::kEmptyString),
1095 .batteryCurrentNowPath = android::String8(android::String8::kEmptyString),
1096 .batteryCurrentAvgPath = android::String8(android::String8::kEmptyString),
1097 .batteryChargeCounterPath = android::String8(android::String8::kEmptyString),
1098 .batteryFullChargePath = android::String8(android::String8::kEmptyString),
1099 .batteryCycleCountPath = android::String8(android::String8::kEmptyString),
1100 .energyCounter = NULL,
1101 .boot_min_cap = 0,
1102 .screen_on = NULL
1103 };
1104 healthd_board_init(&healthd_config);
1105
1106 android::BatteryMonitor monitor;
1107 monitor.init(&healthd_config);
1108
1109 int wait_second = 0;
1110 while (true) {
1111 int charge_status = monitor.getChargeStatus();
1112 // Treat unknown status as charged.
1113 bool charged = (charge_status != android::BATTERY_STATUS_DISCHARGING &&
1114 charge_status != android::BATTERY_STATUS_NOT_CHARGING);
1115 android::BatteryProperty capacity;
1116 android::status_t status = monitor.getProperty(android::BATTERY_PROP_CAPACITY, &capacity);
1117 ui_print("charge_status %d, charged %d, status %d, capacity %lld\n", charge_status,
1118 charged, status, capacity.valueInt64);
1119 // At startup, the battery drivers in devices like N5X/N6P take some time to load
1120 // the battery profile. Before the load finishes, it reports value 50 as a fake
1121 // capacity. BATTERY_READ_TIMEOUT_IN_SEC is set that the battery drivers are expected
1122 // to finish loading the battery profile earlier than 10 seconds after kernel startup.
1123 if (status == 0 && capacity.valueInt64 == 50) {
1124 if (wait_second < BATTERY_READ_TIMEOUT_IN_SEC) {
1125 sleep(1);
1126 wait_second++;
1127 continue;
1128 }
1129 }
1130 // If we can't read battery percentage, it may be a device without battery. In this
1131 // situation, use 100 as a fake battery percentage.
1132 if (status != 0) {
1133 capacity.valueInt64 = 100;
1134 }
1135 return (charged && capacity.valueInt64 >= BATTERY_WITH_CHARGER_OK_PERCENTAGE) ||
1136 (!charged && capacity.valueInt64 >= BATTERY_OK_PERCENTAGE);
1137 }
1138}
1139
1140int main(int argc, char **argv) {
Doug Zongker9270a202012-01-09 15:16:13 -08001141 // If this binary is started with the single argument "--adbd",
1142 // instead of being the normal recovery binary, it turns into kind
1143 // of a stripped-down version of adbd that only supports the
1144 // 'sideload' command. Note this must be a real argument, not
1145 // anything in the command file or bootloader control block; the
1146 // only way recovery should be run with this argument is when it
1147 // starts a copy of itself from the apply_from_adb() function.
1148 if (argc == 2 && strcmp(argv[1], "--adbd") == 0) {
Elliott Hughes9f4fdb32015-11-20 13:03:24 -08001149 adb_server_main(0, DEFAULT_ADB_PORT, -1);
Doug Zongker9270a202012-01-09 15:16:13 -08001150 return 0;
1151 }
1152
Tao Bao04ca4262015-09-10 15:32:24 -07001153 time_t start = time(NULL);
1154
1155 // redirect_stdio should be called only in non-sideload mode. Otherwise
1156 // we may have two logger instances with different timestamps.
1157 redirect_stdio(TEMPORARY_LOG_FILE);
1158
Doug Zongker19a8e242014-01-21 09:25:41 -08001159 printf("Starting recovery (pid %d) on %s", getpid(), ctime(&start));
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001160
Doug Zongkerd4208f92010-09-20 12:16:13 -07001161 load_volume_table();
Tao Bao26112e52016-02-25 12:29:40 -08001162 has_cache = volume_for_path(CACHE_ROOT) != nullptr;
1163
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001164 get_args(&argc, &argv);
1165
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001166 const char *send_intent = NULL;
1167 const char *update_package = NULL;
Tao Baoe39a9bc2015-03-31 12:19:05 -07001168 bool should_wipe_data = false;
Tao Baoc679f932015-03-30 09:43:49 -07001169 bool should_wipe_cache = false;
Tao Bao145d8612015-03-25 15:51:15 -07001170 bool show_text = false;
Tao Baoc679f932015-03-30 09:43:49 -07001171 bool sideload = false;
1172 bool sideload_auto_reboot = false;
Doug Zongkere5d5ac72012-04-12 11:01:22 -07001173 bool just_exit = false;
Doug Zongkerb1d12632014-03-18 10:32:12 -07001174 bool shutdown_after = false;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001175
1176 int arg;
1177 while ((arg = getopt_long(argc, argv, "", OPTIONS, NULL)) != -1) {
1178 switch (arg) {
Tao Baoc679f932015-03-30 09:43:49 -07001179 case 'i': send_intent = optarg; break;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001180 case 'u': update_package = optarg; break;
Tao Baoe39a9bc2015-03-31 12:19:05 -07001181 case 'w': should_wipe_data = true; break;
Tao Baoc679f932015-03-30 09:43:49 -07001182 case 'c': should_wipe_cache = true; break;
Tao Bao145d8612015-03-25 15:51:15 -07001183 case 't': show_text = true; break;
Tao Baoc679f932015-03-30 09:43:49 -07001184 case 's': sideload = true; break;
1185 case 'a': sideload = true; sideload_auto_reboot = true; break;
Doug Zongkere5d5ac72012-04-12 11:01:22 -07001186 case 'x': just_exit = true; break;
Doug Zongker02ec6b82012-08-22 17:26:40 -07001187 case 'l': locale = optarg; break;
Doug Zongkerc87bab12013-11-25 13:53:25 -08001188 case 'g': {
1189 if (stage == NULL || *stage == '\0') {
1190 char buffer[20] = "1/";
1191 strncat(buffer, optarg, sizeof(buffer)-3);
1192 stage = strdup(buffer);
1193 }
1194 break;
1195 }
Doug Zongkerb1d12632014-03-18 10:32:12 -07001196 case 'p': shutdown_after = true; break;
Jeff Sharkeya6e13ae2014-09-24 11:46:17 -07001197 case 'r': reason = optarg; break;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001198 case '?':
1199 LOGE("Invalid command argument\n");
1200 continue;
1201 }
1202 }
1203
Tao Bao26112e52016-02-25 12:29:40 -08001204 if (locale == nullptr && has_cache) {
Doug Zongker02ec6b82012-08-22 17:26:40 -07001205 load_locale_from_cache();
1206 }
1207 printf("locale is [%s]\n", locale);
Doug Zongker0d32f252014-02-13 15:07:56 -08001208 printf("stage is [%s]\n", stage);
Jeff Sharkeya6e13ae2014-09-24 11:46:17 -07001209 printf("reason is [%s]\n", reason);
Doug Zongker02ec6b82012-08-22 17:26:40 -07001210
1211 Device* device = make_device();
1212 ui = device->GetUI();
Doug Zongker7c3ae452013-05-14 11:03:02 -07001213 gCurrentUI = ui;
Doug Zongker02ec6b82012-08-22 17:26:40 -07001214
Doug Zongker5fa8c232012-09-18 12:37:02 -07001215 ui->SetLocale(locale);
Doug Zongker02ec6b82012-08-22 17:26:40 -07001216 ui->Init();
Doug Zongkerc87bab12013-11-25 13:53:25 -08001217
1218 int st_cur, st_max;
1219 if (stage != NULL && sscanf(stage, "%d/%d", &st_cur, &st_max) == 2) {
1220 ui->SetStage(st_cur, st_max);
1221 }
1222
Doug Zongker02ec6b82012-08-22 17:26:40 -07001223 ui->SetBackground(RecoveryUI::NONE);
1224 if (show_text) ui->ShowText(true);
1225
Stephen Smalley779701d2012-02-09 14:13:23 -05001226 struct selinux_opt seopts[] = {
1227 { SELABEL_OPT_PATH, "/file_contexts" }
1228 };
1229
1230 sehandle = selabel_open(SELABEL_CTX_FILE, seopts, 1);
1231
1232 if (!sehandle) {
Doug Zongkerfafc85b2013-07-09 12:29:45 -07001233 ui->Print("Warning: No file_contexts\n");
Stephen Smalley779701d2012-02-09 14:13:23 -05001234 }
Stephen Smalley779701d2012-02-09 14:13:23 -05001235
Doug Zongkerdaefc1d2011-10-31 09:34:15 -07001236 device->StartRecovery();
Doug Zongkerefa1bab2010-02-01 15:59:12 -08001237
Doug Zongker56c51052010-07-01 09:18:44 -07001238 printf("Command:");
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001239 for (arg = 0; arg < argc; arg++) {
Doug Zongker56c51052010-07-01 09:18:44 -07001240 printf(" \"%s\"", argv[arg]);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001241 }
Doug Zongker9b125b02010-09-22 12:01:37 -07001242 printf("\n");
1243
1244 if (update_package) {
1245 // For backwards compatibility on the cache partition only, if
1246 // we're given an old 'root' path "CACHE:foo", change it to
1247 // "/cache/foo".
1248 if (strncmp(update_package, "CACHE:", 6) == 0) {
1249 int len = strlen(update_package) + 10;
Doug Zongker28ce47c2011-10-28 10:33:05 -07001250 char* modified_path = (char*)malloc(len);
Jeremy Compostella1b7d9b72015-07-29 17:17:03 +02001251 if (modified_path) {
1252 strlcpy(modified_path, "/cache/", len);
1253 strlcat(modified_path, update_package+6, len);
1254 printf("(replacing path \"%s\" with \"%s\")\n",
1255 update_package, modified_path);
1256 update_package = modified_path;
1257 }
1258 else
1259 printf("modified_path allocation failed\n");
Doug Zongker9b125b02010-09-22 12:01:37 -07001260 }
1261 }
1262 printf("\n");
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001263
1264 property_list(print_property, NULL);
Doug Zongker56c51052010-07-01 09:18:44 -07001265 printf("\n");
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001266
Elliott Hughesbb78d622015-04-09 20:51:08 -07001267 ui->Print("Supported API: %d\n", RECOVERY_API_VERSION);
1268
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001269 int status = INSTALL_SUCCESS;
1270
Doug Zongker540d57f2011-01-18 13:36:58 -08001271 if (update_package != NULL) {
Yabin Cui53e7a062016-02-17 12:21:52 -08001272 if (!is_battery_ok()) {
1273 ui->Print("battery capacity is not enough for installing package, needed is %d%%\n",
1274 BATTERY_OK_PERCENTAGE);
1275 status = INSTALL_SKIPPED;
1276 } else {
1277 status = install_package(update_package, &should_wipe_cache,
1278 TEMPORARY_INSTALL_FILE, true);
1279 if (status == INSTALL_SUCCESS && should_wipe_cache) {
1280 wipe_cache(false, device);
1281 }
1282 if (status != INSTALL_SUCCESS) {
1283 ui->Print("Installation aborted.\n");
Doug Zongker7c3ae452013-05-14 11:03:02 -07001284
Yabin Cui53e7a062016-02-17 12:21:52 -08001285 // If this is an eng or userdebug build, then automatically
1286 // turn the text display on if the script fails so the error
1287 // message is visible.
1288 if (is_ro_debuggable()) {
1289 ui->ShowText(true);
1290 }
Doug Zongker7c3ae452013-05-14 11:03:02 -07001291 }
1292 }
Tao Baoe39a9bc2015-03-31 12:19:05 -07001293 } else if (should_wipe_data) {
1294 if (!wipe_data(false, device)) {
1295 status = INSTALL_ERROR;
1296 }
Tao Baoc679f932015-03-30 09:43:49 -07001297 } else if (should_wipe_cache) {
Tao Baoe39a9bc2015-03-31 12:19:05 -07001298 if (!wipe_cache(false, device)) {
1299 status = INSTALL_ERROR;
1300 }
Tao Baoc679f932015-03-30 09:43:49 -07001301 } else if (sideload) {
1302 // 'adb reboot sideload' acts the same as user presses key combinations
1303 // to enter the sideload mode. When 'sideload-auto-reboot' is used, text
1304 // display will NOT be turned on by default. And it will reboot after
1305 // sideload finishes even if there are errors. Unless one turns on the
1306 // text display during the installation. This is to enable automated
1307 // testing.
1308 if (!sideload_auto_reboot) {
1309 ui->ShowText(true);
1310 }
1311 status = apply_from_adb(ui, &should_wipe_cache, TEMPORARY_INSTALL_FILE);
1312 if (status == INSTALL_SUCCESS && should_wipe_cache) {
Tao Baoe39a9bc2015-03-31 12:19:05 -07001313 if (!wipe_cache(false, device)) {
1314 status = INSTALL_ERROR;
1315 }
Tao Baoc679f932015-03-30 09:43:49 -07001316 }
1317 ui->Print("\nInstall from ADB complete (status: %d).\n", status);
1318 if (sideload_auto_reboot) {
1319 ui->Print("Rebooting automatically.\n");
1320 }
Doug Zongkere5d5ac72012-04-12 11:01:22 -07001321 } else if (!just_exit) {
Doug Zongker02ec6b82012-08-22 17:26:40 -07001322 status = INSTALL_NONE; // No command specified
1323 ui->SetBackground(RecoveryUI::NO_COMMAND);
Tao Bao785d22c2015-05-04 09:34:29 -07001324
1325 // http://b/17489952
1326 // If this is an eng or userdebug build, automatically turn on the
1327 // text display if no command is specified.
1328 if (is_ro_debuggable()) {
1329 ui->ShowText(true);
1330 }
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001331 }
1332
Tao Baoc679f932015-03-30 09:43:49 -07001333 if (!sideload_auto_reboot && (status == INSTALL_ERROR || status == INSTALL_CORRUPT)) {
Doug Zongkerf24fd7e2013-07-02 11:43:25 -07001334 copy_logs();
Doug Zongker02ec6b82012-08-22 17:26:40 -07001335 ui->SetBackground(RecoveryUI::ERROR);
1336 }
Tao Baoc679f932015-03-30 09:43:49 -07001337
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001338 Device::BuiltinAction after = shutdown_after ? Device::SHUTDOWN : Device::REBOOT;
Yabin Cui53e7a062016-02-17 12:21:52 -08001339 if ((status != INSTALL_SUCCESS && status != INSTALL_SKIPPED && !sideload_auto_reboot) ||
1340 ui->IsTextVisible()) {
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001341 Device::BuiltinAction temp = prompt_and_wait(device, status);
Tao Baoc679f932015-03-30 09:43:49 -07001342 if (temp != Device::NO_ACTION) {
1343 after = temp;
1344 }
Doug Zongker8674a722010-09-15 11:08:23 -07001345 }
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001346
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001347 // Save logs and clean up before rebooting or shutting down.
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001348 finish_recovery(send_intent);
Doug Zongker8d9d3d52014-04-01 13:20:23 -07001349
1350 switch (after) {
1351 case Device::SHUTDOWN:
1352 ui->Print("Shutting down...\n");
1353 property_set(ANDROID_RB_PROPERTY, "shutdown,");
1354 break;
1355
1356 case Device::REBOOT_BOOTLOADER:
1357 ui->Print("Rebooting to bootloader...\n");
1358 property_set(ANDROID_RB_PROPERTY, "reboot,bootloader");
1359 break;
1360
1361 default:
1362 ui->Print("Rebooting...\n");
1363 property_set(ANDROID_RB_PROPERTY, "reboot,");
1364 break;
Doug Zongkerb1d12632014-03-18 10:32:12 -07001365 }
Tao Bao75238632015-05-27 14:46:17 -07001366 while (true) {
1367 pause();
1368 }
1369 // Should be unreachable.
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -08001370 return EXIT_SUCCESS;
1371}