blob: 2cb482d02bc640b4ad16ff2f626f356051ded7e3 [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>
18#include <errno.h>
19#include <fcntl.h>
20#include <getopt.h>
21#include <limits.h>
22#include <linux/input.h>
23#include <stdio.h>
24#include <stdlib.h>
25#include <string.h>
Doug Zongker23ceeea2010-07-08 17:27:55 -070026#include <sys/stat.h>
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080027#include <sys/types.h>
28#include <time.h>
29#include <unistd.h>
Doug Zongker8674a722010-09-15 11:08:23 -070030#include <dirent.h>
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080031
32#include "bootloader.h"
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080033#include "common.h"
34#include "cutils/properties.h"
Ken Sumrall6e4472a2011-03-07 23:37:27 -080035#include "cutils/android_reboot.h"
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080036#include "install.h"
37#include "minui/minui.h"
38#include "minzip/DirUtil.h"
39#include "roots.h"
Doug Zongkerddd6a282009-06-09 12:22:33 -070040#include "recovery_ui.h"
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080041
Stephen Smalley779701d2012-02-09 14:13:23 -050042struct selabel_handle *sehandle;
43
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080044static const struct option OPTIONS[] = {
45 { "send_intent", required_argument, NULL, 's' },
46 { "update_package", required_argument, NULL, 'u' },
47 { "wipe_data", no_argument, NULL, 'w' },
48 { "wipe_cache", no_argument, NULL, 'c' },
Doug Zongker4bc98062010-09-03 11:00:13 -070049 { "show_text", no_argument, NULL, 't' },
Doug Zongker988500b2009-10-06 14:41:38 -070050 { NULL, 0, NULL, 0 },
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080051};
52
Doug Zongkerd4208f92010-09-20 12:16:13 -070053static const char *COMMAND_FILE = "/cache/recovery/command";
54static const char *INTENT_FILE = "/cache/recovery/intent";
55static const char *LOG_FILE = "/cache/recovery/log";
Doug Zongker2c3539e2010-09-29 13:21:30 -070056static const char *LAST_LOG_FILE = "/cache/recovery/last_log";
Doug Zongkerd0181b82011-10-19 10:51:12 -070057static const char *LAST_INSTALL_FILE = "/cache/recovery/last_install";
Michael Ward9d2629c2011-06-23 22:14:24 -070058static const char *CACHE_ROOT = "/cache";
Doug Zongkerd4208f92010-09-20 12:16:13 -070059static const char *SDCARD_ROOT = "/sdcard";
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080060static const char *TEMPORARY_LOG_FILE = "/tmp/recovery.log";
Doug Zongkerd0181b82011-10-19 10:51:12 -070061static const char *TEMPORARY_INSTALL_FILE = "/tmp/last_install";
Doug Zongkerd4208f92010-09-20 12:16:13 -070062static const char *SIDELOAD_TEMP_DIR = "/tmp/sideload";
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080063
Doug Zongker6809c512011-03-01 14:04:34 -080064extern UIParameters ui_parameters; // from ui.c
65
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080066/*
67 * The recovery tool communicates with the main system through /cache files.
68 * /cache/recovery/command - INPUT - command line for tool, one arg per line
69 * /cache/recovery/log - OUTPUT - combined log file from recovery run(s)
70 * /cache/recovery/intent - OUTPUT - intent that was passed in
71 *
72 * The arguments which may be supplied in the recovery.command file:
73 * --send_intent=anystring - write the text out to recovery.intent
Doug Zongkerd4208f92010-09-20 12:16:13 -070074 * --update_package=path - verify install an OTA package file
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080075 * --wipe_data - erase user data (and cache), then reboot
76 * --wipe_cache - wipe cache (but not user data), then reboot
Oscar Montemayor05231562009-11-30 08:40:57 -080077 * --set_encrypted_filesystem=on|off - enables / diasables encrypted fs
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080078 *
79 * After completing, we remove /cache/recovery/command and reboot.
80 * Arguments may also be supplied in the bootloader control block (BCB).
81 * These important scenarios must be safely restartable at any point:
82 *
83 * FACTORY RESET
84 * 1. user selects "factory reset"
85 * 2. main system writes "--wipe_data" to /cache/recovery/command
86 * 3. main system reboots into recovery
87 * 4. get_args() writes BCB with "boot-recovery" and "--wipe_data"
88 * -- after this, rebooting will restart the erase --
Doug Zongkerd4208f92010-09-20 12:16:13 -070089 * 5. erase_volume() reformats /data
90 * 6. erase_volume() reformats /cache
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080091 * 7. finish_recovery() erases BCB
92 * -- after this, rebooting will restart the main system --
93 * 8. main() calls reboot() to boot main system
94 *
95 * OTA INSTALL
96 * 1. main system downloads OTA package to /cache/some-filename.zip
Doug Zongker9b125b02010-09-22 12:01:37 -070097 * 2. main system writes "--update_package=/cache/some-filename.zip"
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080098 * 3. main system reboots into recovery
99 * 4. get_args() writes BCB with "boot-recovery" and "--update_package=..."
100 * -- after this, rebooting will attempt to reinstall the update --
101 * 5. install_package() attempts to install the update
102 * NOTE: the package install must itself be restartable from any point
103 * 6. finish_recovery() erases BCB
104 * -- after this, rebooting will (try to) restart the main system --
105 * 7. ** if install failed **
106 * 7a. prompt_and_wait() shows an error icon and waits for the user
107 * 7b; the user reboots (pulling the battery, etc) into the main system
108 * 8. main() calls maybe_install_firmware_update()
109 * ** if the update contained radio/hboot firmware **:
110 * 8a. m_i_f_u() writes BCB with "boot-recovery" and "--wipe_cache"
111 * -- after this, rebooting will reformat cache & restart main system --
112 * 8b. m_i_f_u() writes firmware image into raw cache partition
113 * 8c. m_i_f_u() writes BCB with "update-radio/hboot" and "--wipe_cache"
114 * -- after this, rebooting will attempt to reinstall firmware --
115 * 8d. bootloader tries to flash firmware
116 * 8e. bootloader writes BCB with "boot-recovery" (keeping "--wipe_cache")
117 * -- after this, rebooting will reformat cache & restart main system --
Doug Zongkerd4208f92010-09-20 12:16:13 -0700118 * 8f. erase_volume() reformats /cache
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800119 * 8g. finish_recovery() erases BCB
120 * -- after this, rebooting will (try to) restart the main system --
121 * 9. main() calls reboot() to boot main system
122 */
123
124static const int MAX_ARG_LENGTH = 4096;
125static const int MAX_ARGS = 100;
126
Doug Zongkerd4208f92010-09-20 12:16:13 -0700127// open a given path, mounting partitions as necessary
Doug Zongker469243e2011-04-12 09:28:10 -0700128FILE*
Doug Zongkerd4208f92010-09-20 12:16:13 -0700129fopen_path(const char *path, const char *mode) {
130 if (ensure_path_mounted(path) != 0) {
131 LOGE("Can't mount %s\n", path);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800132 return NULL;
133 }
134
135 // When writing, try to create the containing directory, if necessary.
136 // Use generous permissions, the system (init.rc) will reset them.
Stephen Smalley779701d2012-02-09 14:13:23 -0500137 if (strchr("wa", mode[0])) dirCreateHierarchy(path, 0777, NULL, 1, sehandle);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800138
139 FILE *fp = fopen(path, mode);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800140 return fp;
141}
142
143// close a file, log an error if the error indicator is set
144static void
145check_and_fclose(FILE *fp, const char *name) {
146 fflush(fp);
147 if (ferror(fp)) LOGE("Error in %s\n(%s)\n", name, strerror(errno));
148 fclose(fp);
149}
150
151// command line args come from, in decreasing precedence:
152// - the actual command line
153// - the bootloader control block (one per line, after "recovery")
154// - the contents of COMMAND_FILE (one per line)
155static void
156get_args(int *argc, char ***argv) {
157 struct bootloader_message boot;
158 memset(&boot, 0, sizeof(boot));
159 get_bootloader_message(&boot); // this may fail, leaving a zeroed structure
160
161 if (boot.command[0] != 0 && boot.command[0] != 255) {
162 LOGI("Boot command: %.*s\n", sizeof(boot.command), boot.command);
163 }
164
165 if (boot.status[0] != 0 && boot.status[0] != 255) {
166 LOGI("Boot status: %.*s\n", sizeof(boot.status), boot.status);
167 }
168
169 // --- if arguments weren't supplied, look in the bootloader control block
170 if (*argc <= 1) {
171 boot.recovery[sizeof(boot.recovery) - 1] = '\0'; // Ensure termination
172 const char *arg = strtok(boot.recovery, "\n");
173 if (arg != NULL && !strcmp(arg, "recovery")) {
174 *argv = (char **) malloc(sizeof(char *) * MAX_ARGS);
175 (*argv)[0] = strdup(arg);
176 for (*argc = 1; *argc < MAX_ARGS; ++*argc) {
177 if ((arg = strtok(NULL, "\n")) == NULL) break;
178 (*argv)[*argc] = strdup(arg);
179 }
180 LOGI("Got arguments from boot message\n");
181 } else if (boot.recovery[0] != 0 && boot.recovery[0] != 255) {
182 LOGE("Bad boot message\n\"%.20s\"\n", boot.recovery);
183 }
184 }
185
186 // --- if that doesn't work, try the command file
187 if (*argc <= 1) {
Doug Zongkerd4208f92010-09-20 12:16:13 -0700188 FILE *fp = fopen_path(COMMAND_FILE, "r");
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800189 if (fp != NULL) {
190 char *argv0 = (*argv)[0];
191 *argv = (char **) malloc(sizeof(char *) * MAX_ARGS);
192 (*argv)[0] = argv0; // use the same program name
193
194 char buf[MAX_ARG_LENGTH];
195 for (*argc = 1; *argc < MAX_ARGS; ++*argc) {
196 if (!fgets(buf, sizeof(buf), fp)) break;
197 (*argv)[*argc] = strdup(strtok(buf, "\r\n")); // Strip newline.
198 }
199
200 check_and_fclose(fp, COMMAND_FILE);
201 LOGI("Got arguments from %s\n", COMMAND_FILE);
202 }
203 }
204
205 // --> write the arguments we have back into the bootloader control block
206 // always boot into recovery after this (until finish_recovery() is called)
207 strlcpy(boot.command, "boot-recovery", sizeof(boot.command));
208 strlcpy(boot.recovery, "recovery\n", sizeof(boot.recovery));
209 int i;
210 for (i = 1; i < *argc; ++i) {
211 strlcat(boot.recovery, (*argv)[i], sizeof(boot.recovery));
212 strlcat(boot.recovery, "\n", sizeof(boot.recovery));
213 }
214 set_bootloader_message(&boot);
215}
216
Doug Zongker34c98df2009-08-18 12:05:45 -0700217static void
Oscar Montemayor05231562009-11-30 08:40:57 -0800218set_sdcard_update_bootloader_message() {
Doug Zongker34c98df2009-08-18 12:05:45 -0700219 struct bootloader_message boot;
220 memset(&boot, 0, sizeof(boot));
221 strlcpy(boot.command, "boot-recovery", sizeof(boot.command));
222 strlcpy(boot.recovery, "recovery\n", sizeof(boot.recovery));
223 set_bootloader_message(&boot);
224}
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800225
Doug Zongker2c3539e2010-09-29 13:21:30 -0700226// How much of the temp log we have copied to the copy in cache.
227static long tmplog_offset = 0;
228
229static void
Doug Zongkerd0181b82011-10-19 10:51:12 -0700230copy_log_file(const char* source, const char* destination, int append) {
Doug Zongker2c3539e2010-09-29 13:21:30 -0700231 FILE *log = fopen_path(destination, append ? "a" : "w");
232 if (log == NULL) {
233 LOGE("Can't open %s\n", destination);
234 } else {
Doug Zongkerd0181b82011-10-19 10:51:12 -0700235 FILE *tmplog = fopen(source, "r");
236 if (tmplog != NULL) {
Doug Zongker2c3539e2010-09-29 13:21:30 -0700237 if (append) {
238 fseek(tmplog, tmplog_offset, SEEK_SET); // Since last write
239 }
240 char buf[4096];
241 while (fgets(buf, sizeof(buf), tmplog)) fputs(buf, log);
242 if (append) {
243 tmplog_offset = ftell(tmplog);
244 }
Doug Zongkerd0181b82011-10-19 10:51:12 -0700245 check_and_fclose(tmplog, source);
Doug Zongker2c3539e2010-09-29 13:21:30 -0700246 }
247 check_and_fclose(log, destination);
248 }
249}
250
251
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800252// clear the recovery command and prepare to boot a (hopefully working) system,
253// copy our log file to cache as well (for the system to read), and
254// record any intent we were asked to communicate back to the system.
255// this function is idempotent: call it as many times as you like.
256static void
Oscar Montemayor05231562009-11-30 08:40:57 -0800257finish_recovery(const char *send_intent) {
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800258 // By this point, we're ready to return to the main system...
259 if (send_intent != NULL) {
Doug Zongkerd4208f92010-09-20 12:16:13 -0700260 FILE *fp = fopen_path(INTENT_FILE, "w");
Jay Freeman (saurik)619ec2f2008-11-17 01:56:05 +0000261 if (fp == NULL) {
262 LOGE("Can't open %s\n", INTENT_FILE);
263 } else {
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800264 fputs(send_intent, fp);
265 check_and_fclose(fp, INTENT_FILE);
266 }
267 }
268
269 // Copy logs to cache so the system can find out what happened.
Doug Zongkerd0181b82011-10-19 10:51:12 -0700270 copy_log_file(TEMPORARY_LOG_FILE, LOG_FILE, true);
271 copy_log_file(TEMPORARY_LOG_FILE, LAST_LOG_FILE, false);
272 copy_log_file(TEMPORARY_INSTALL_FILE, LAST_INSTALL_FILE, false);
273 chmod(LOG_FILE, 0600);
274 chown(LOG_FILE, 1000, 1000); // system user
Doug Zongker2c3539e2010-09-29 13:21:30 -0700275 chmod(LAST_LOG_FILE, 0640);
Doug Zongkerd0181b82011-10-19 10:51:12 -0700276 chmod(LAST_INSTALL_FILE, 0644);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800277
Oscar Montemayor05231562009-11-30 08:40:57 -0800278 // Reset to mormal system boot so recovery won't cycle indefinitely.
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800279 struct bootloader_message boot;
280 memset(&boot, 0, sizeof(boot));
281 set_bootloader_message(&boot);
282
283 // Remove the command file, so recovery won't repeat indefinitely.
Doug Zongkerd4208f92010-09-20 12:16:13 -0700284 if (ensure_path_mounted(COMMAND_FILE) != 0 ||
285 (unlink(COMMAND_FILE) && errno != ENOENT)) {
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800286 LOGW("Can't unlink %s\n", COMMAND_FILE);
287 }
288
Doug Zongkerd0181b82011-10-19 10:51:12 -0700289 ensure_path_unmounted(CACHE_ROOT);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800290 sync(); // For good measure.
291}
292
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800293static int
Doug Zongkerd4208f92010-09-20 12:16:13 -0700294erase_volume(const char *volume) {
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800295 ui_set_background(BACKGROUND_ICON_INSTALLING);
296 ui_show_indeterminate_progress();
Doug Zongkerd4208f92010-09-20 12:16:13 -0700297 ui_print("Formatting %s...\n", volume);
Doug Zongker2c3539e2010-09-29 13:21:30 -0700298
Doug Zongkerd0181b82011-10-19 10:51:12 -0700299 ensure_path_unmounted(volume);
300
Doug Zongker2c3539e2010-09-29 13:21:30 -0700301 if (strcmp(volume, "/cache") == 0) {
302 // Any part of the log we'd copied to cache is now gone.
303 // Reset the pointer so we copy from the beginning of the temp
304 // log.
305 tmplog_offset = 0;
306 }
307
Doug Zongkerd4208f92010-09-20 12:16:13 -0700308 return format_volume(volume);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800309}
310
Doug Zongker23ceeea2010-07-08 17:27:55 -0700311static char*
Doug Zongkerd4208f92010-09-20 12:16:13 -0700312copy_sideloaded_package(const char* original_path) {
313 if (ensure_path_mounted(original_path) != 0) {
314 LOGE("Can't mount %s\n", original_path);
Doug Zongker23ceeea2010-07-08 17:27:55 -0700315 return NULL;
316 }
317
Doug Zongkerd4208f92010-09-20 12:16:13 -0700318 if (ensure_path_mounted(SIDELOAD_TEMP_DIR) != 0) {
Doug Zongker23ceeea2010-07-08 17:27:55 -0700319 LOGE("Can't mount %s\n", SIDELOAD_TEMP_DIR);
320 return NULL;
321 }
322
Doug Zongkerd4208f92010-09-20 12:16:13 -0700323 if (mkdir(SIDELOAD_TEMP_DIR, 0700) != 0) {
Doug Zongker23ceeea2010-07-08 17:27:55 -0700324 if (errno != EEXIST) {
325 LOGE("Can't mkdir %s (%s)\n", SIDELOAD_TEMP_DIR, strerror(errno));
326 return NULL;
327 }
328 }
329
Doug Zongkerd4208f92010-09-20 12:16:13 -0700330 // verify that SIDELOAD_TEMP_DIR is exactly what we expect: a
331 // directory, owned by root, readable and writable only by root.
Doug Zongker23ceeea2010-07-08 17:27:55 -0700332 struct stat st;
Doug Zongkerd4208f92010-09-20 12:16:13 -0700333 if (stat(SIDELOAD_TEMP_DIR, &st) != 0) {
334 LOGE("failed to stat %s (%s)\n", SIDELOAD_TEMP_DIR, strerror(errno));
Doug Zongker23ceeea2010-07-08 17:27:55 -0700335 return NULL;
336 }
337 if (!S_ISDIR(st.st_mode)) {
Doug Zongkerd4208f92010-09-20 12:16:13 -0700338 LOGE("%s isn't a directory\n", SIDELOAD_TEMP_DIR);
Doug Zongker23ceeea2010-07-08 17:27:55 -0700339 return NULL;
340 }
341 if ((st.st_mode & 0777) != 0700) {
Doug Zongkerd4208f92010-09-20 12:16:13 -0700342 LOGE("%s has perms %o\n", SIDELOAD_TEMP_DIR, st.st_mode);
Doug Zongker23ceeea2010-07-08 17:27:55 -0700343 return NULL;
344 }
345 if (st.st_uid != 0) {
Doug Zongkerd4208f92010-09-20 12:16:13 -0700346 LOGE("%s owned by %lu; not root\n", SIDELOAD_TEMP_DIR, st.st_uid);
Doug Zongker23ceeea2010-07-08 17:27:55 -0700347 return NULL;
348 }
349
Doug Zongkerd4208f92010-09-20 12:16:13 -0700350 char copy_path[PATH_MAX];
351 strcpy(copy_path, SIDELOAD_TEMP_DIR);
Doug Zongker23ceeea2010-07-08 17:27:55 -0700352 strcat(copy_path, "/package.zip");
353
354 char* buffer = malloc(BUFSIZ);
355 if (buffer == NULL) {
356 LOGE("Failed to allocate buffer\n");
357 return NULL;
358 }
359
360 size_t read;
361 FILE* fin = fopen(original_path, "rb");
362 if (fin == NULL) {
363 LOGE("Failed to open %s (%s)\n", original_path, strerror(errno));
364 return NULL;
365 }
366 FILE* fout = fopen(copy_path, "wb");
367 if (fout == NULL) {
368 LOGE("Failed to open %s (%s)\n", copy_path, strerror(errno));
369 return NULL;
370 }
371
372 while ((read = fread(buffer, 1, BUFSIZ, fin)) > 0) {
373 if (fwrite(buffer, 1, read, fout) != read) {
374 LOGE("Short write of %s (%s)\n", copy_path, strerror(errno));
375 return NULL;
376 }
377 }
378
379 free(buffer);
380
381 if (fclose(fout) != 0) {
382 LOGE("Failed to close %s (%s)\n", copy_path, strerror(errno));
383 return NULL;
384 }
385
386 if (fclose(fin) != 0) {
387 LOGE("Failed to close %s (%s)\n", original_path, strerror(errno));
388 return NULL;
389 }
390
391 // "adb push" is happy to overwrite read-only files when it's
392 // running as root, but we'll try anyway.
393 if (chmod(copy_path, 0400) != 0) {
394 LOGE("Failed to chmod %s (%s)\n", copy_path, strerror(errno));
395 return NULL;
396 }
397
Doug Zongkerd4208f92010-09-20 12:16:13 -0700398 return strdup(copy_path);
Doug Zongker23ceeea2010-07-08 17:27:55 -0700399}
400
Doug Zongkerf93d8162009-09-22 15:16:02 -0700401static char**
Doug Zongker8674a722010-09-15 11:08:23 -0700402prepend_title(const char** headers) {
Doug Zongkerd6837852009-06-17 22:07:13 -0700403 char* title[] = { "Android system recovery <"
Doug Zongker64893cc2009-07-14 16:31:56 -0700404 EXPAND(RECOVERY_API_VERSION) "e>",
Doug Zongkerd6837852009-06-17 22:07:13 -0700405 "",
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800406 NULL };
407
Doug Zongkerd6837852009-06-17 22:07:13 -0700408 // count the number of lines in our title, plus the
Doug Zongkerf93d8162009-09-22 15:16:02 -0700409 // caller-provided headers.
Doug Zongkerd6837852009-06-17 22:07:13 -0700410 int count = 0;
411 char** p;
412 for (p = title; *p; ++p, ++count);
Doug Zongkerf93d8162009-09-22 15:16:02 -0700413 for (p = headers; *p; ++p, ++count);
Doug Zongkerd6837852009-06-17 22:07:13 -0700414
Doug Zongkerf93d8162009-09-22 15:16:02 -0700415 char** new_headers = malloc((count+1) * sizeof(char*));
416 char** h = new_headers;
Doug Zongkerd6837852009-06-17 22:07:13 -0700417 for (p = title; *p; ++p, ++h) *h = *p;
Doug Zongkerf93d8162009-09-22 15:16:02 -0700418 for (p = headers; *p; ++p, ++h) *h = *p;
Doug Zongkerd6837852009-06-17 22:07:13 -0700419 *h = NULL;
420
Doug Zongkerf93d8162009-09-22 15:16:02 -0700421 return new_headers;
422}
423
424static int
Doug Zongker8674a722010-09-15 11:08:23 -0700425get_menu_selection(char** headers, char** items, int menu_only,
426 int initial_selection) {
Doug Zongkerf93d8162009-09-22 15:16:02 -0700427 // throw away keys pressed previously, so user doesn't
428 // accidentally trigger menu items.
429 ui_clear_key_queue();
430
Doug Zongker8674a722010-09-15 11:08:23 -0700431 ui_start_menu(headers, items, initial_selection);
432 int selected = initial_selection;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800433 int chosen_item = -1;
434
Doug Zongkerf93d8162009-09-22 15:16:02 -0700435 while (chosen_item < 0) {
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800436 int key = ui_wait_key();
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800437 int visible = ui_text_visible();
438
Doug Zongker5cae4452011-01-25 13:15:30 -0800439 if (key == -1) { // ui_wait_key() timed out
440 if (ui_text_ever_visible()) {
441 continue;
442 } else {
443 LOGI("timed out waiting for key input; rebooting.\n");
444 ui_end_menu();
445 return ITEM_REBOOT;
446 }
447 }
448
Doug Zongkerddd6a282009-06-09 12:22:33 -0700449 int action = device_handle_key(key, visible);
450
451 if (action < 0) {
452 switch (action) {
453 case HIGHLIGHT_UP:
454 --selected;
455 selected = ui_menu_select(selected);
456 break;
457 case HIGHLIGHT_DOWN:
458 ++selected;
459 selected = ui_menu_select(selected);
460 break;
461 case SELECT_ITEM:
462 chosen_item = selected;
463 break;
464 case NO_ACTION:
465 break;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800466 }
Doug Zongkerf93d8162009-09-22 15:16:02 -0700467 } else if (!menu_only) {
Doug Zongkerddd6a282009-06-09 12:22:33 -0700468 chosen_item = action;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800469 }
Doug Zongkerf93d8162009-09-22 15:16:02 -0700470 }
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800471
Doug Zongkerf93d8162009-09-22 15:16:02 -0700472 ui_end_menu();
473 return chosen_item;
474}
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800475
Doug Zongker8674a722010-09-15 11:08:23 -0700476static int compare_string(const void* a, const void* b) {
477 return strcmp(*(const char**)a, *(const char**)b);
478}
479
480static int
Doug Zongkerd0181b82011-10-19 10:51:12 -0700481update_directory(const char* path, const char* unmount_when_done,
482 int* wipe_cache) {
Michael Ward9d2629c2011-06-23 22:14:24 -0700483 ensure_path_mounted(path);
Doug Zongkerc18eeb82010-09-21 16:49:26 -0700484
Doug Zongker8674a722010-09-15 11:08:23 -0700485 const char* MENU_HEADERS[] = { "Choose a package to install:",
Doug Zongkerd4208f92010-09-20 12:16:13 -0700486 path,
Doug Zongker8674a722010-09-15 11:08:23 -0700487 "",
488 NULL };
489 DIR* d;
490 struct dirent* de;
Doug Zongkerd4208f92010-09-20 12:16:13 -0700491 d = opendir(path);
Doug Zongker8674a722010-09-15 11:08:23 -0700492 if (d == NULL) {
493 LOGE("error opening %s: %s\n", path, strerror(errno));
Michael Ward9d2629c2011-06-23 22:14:24 -0700494 if (unmount_when_done != NULL) {
495 ensure_path_unmounted(unmount_when_done);
496 }
Doug Zongker8674a722010-09-15 11:08:23 -0700497 return 0;
498 }
499
500 char** headers = prepend_title(MENU_HEADERS);
501
502 int d_size = 0;
503 int d_alloc = 10;
504 char** dirs = malloc(d_alloc * sizeof(char*));
505 int z_size = 1;
506 int z_alloc = 10;
507 char** zips = malloc(z_alloc * sizeof(char*));
508 zips[0] = strdup("../");
509
510 while ((de = readdir(d)) != NULL) {
511 int name_len = strlen(de->d_name);
512
513 if (de->d_type == DT_DIR) {
514 // skip "." and ".." entries
515 if (name_len == 1 && de->d_name[0] == '.') continue;
516 if (name_len == 2 && de->d_name[0] == '.' &&
517 de->d_name[1] == '.') continue;
518
519 if (d_size >= d_alloc) {
520 d_alloc *= 2;
521 dirs = realloc(dirs, d_alloc * sizeof(char*));
522 }
523 dirs[d_size] = malloc(name_len + 2);
524 strcpy(dirs[d_size], de->d_name);
525 dirs[d_size][name_len] = '/';
526 dirs[d_size][name_len+1] = '\0';
527 ++d_size;
528 } else if (de->d_type == DT_REG &&
529 name_len >= 4 &&
530 strncasecmp(de->d_name + (name_len-4), ".zip", 4) == 0) {
531 if (z_size >= z_alloc) {
532 z_alloc *= 2;
533 zips = realloc(zips, z_alloc * sizeof(char*));
534 }
535 zips[z_size++] = strdup(de->d_name);
536 }
537 }
538 closedir(d);
539
540 qsort(dirs, d_size, sizeof(char*), compare_string);
541 qsort(zips, z_size, sizeof(char*), compare_string);
542
543 // append dirs to the zips list
544 if (d_size + z_size + 1 > z_alloc) {
545 z_alloc = d_size + z_size + 1;
546 zips = realloc(zips, z_alloc * sizeof(char*));
547 }
548 memcpy(zips + z_size, dirs, d_size * sizeof(char*));
549 free(dirs);
550 z_size += d_size;
551 zips[z_size] = NULL;
552
553 int result;
554 int chosen_item = 0;
555 do {
556 chosen_item = get_menu_selection(headers, zips, 1, chosen_item);
557
558 char* item = zips[chosen_item];
559 int item_len = strlen(item);
560 if (chosen_item == 0) { // item 0 is always "../"
Michael Ward9d2629c2011-06-23 22:14:24 -0700561 // go up but continue browsing (if the caller is update_directory)
Doug Zongker8674a722010-09-15 11:08:23 -0700562 result = -1;
563 break;
564 } else if (item[item_len-1] == '/') {
565 // recurse down into a subdirectory
566 char new_path[PATH_MAX];
Doug Zongkerd4208f92010-09-20 12:16:13 -0700567 strlcpy(new_path, path, PATH_MAX);
568 strlcat(new_path, "/", PATH_MAX);
Doug Zongker8674a722010-09-15 11:08:23 -0700569 strlcat(new_path, item, PATH_MAX);
Doug Zongkerd4208f92010-09-20 12:16:13 -0700570 new_path[strlen(new_path)-1] = '\0'; // truncate the trailing '/'
Doug Zongkerd0181b82011-10-19 10:51:12 -0700571 result = update_directory(new_path, unmount_when_done, wipe_cache);
Doug Zongker8674a722010-09-15 11:08:23 -0700572 if (result >= 0) break;
573 } else {
574 // selected a zip file: attempt to install it, and return
575 // the status to the caller.
576 char new_path[PATH_MAX];
Doug Zongkerd4208f92010-09-20 12:16:13 -0700577 strlcpy(new_path, path, PATH_MAX);
Doug Zongkerc18eeb82010-09-21 16:49:26 -0700578 strlcat(new_path, "/", PATH_MAX);
Doug Zongker8674a722010-09-15 11:08:23 -0700579 strlcat(new_path, item, PATH_MAX);
580
Doug Zongkerd4208f92010-09-20 12:16:13 -0700581 ui_print("\n-- Install %s ...\n", path);
Doug Zongker8674a722010-09-15 11:08:23 -0700582 set_sdcard_update_bootloader_message();
Doug Zongkerd4208f92010-09-20 12:16:13 -0700583 char* copy = copy_sideloaded_package(new_path);
Michael Ward9d2629c2011-06-23 22:14:24 -0700584 if (unmount_when_done != NULL) {
585 ensure_path_unmounted(unmount_when_done);
586 }
Doug Zongkerd4208f92010-09-20 12:16:13 -0700587 if (copy) {
Doug Zongkerd0181b82011-10-19 10:51:12 -0700588 result = install_package(copy, wipe_cache, TEMPORARY_INSTALL_FILE);
Doug Zongkerd4208f92010-09-20 12:16:13 -0700589 free(copy);
590 } else {
591 result = INSTALL_ERROR;
592 }
Doug Zongker8674a722010-09-15 11:08:23 -0700593 break;
594 }
595 } while (true);
596
597 int i;
598 for (i = 0; i < z_size; ++i) free(zips[i]);
599 free(zips);
600 free(headers);
601
Michael Ward9d2629c2011-06-23 22:14:24 -0700602 if (unmount_when_done != NULL) {
603 ensure_path_unmounted(unmount_when_done);
604 }
Doug Zongker8674a722010-09-15 11:08:23 -0700605 return result;
606}
607
Doug Zongkerf93d8162009-09-22 15:16:02 -0700608static void
609wipe_data(int confirm) {
610 if (confirm) {
611 static char** title_headers = NULL;
Doug Zongkerddd6a282009-06-09 12:22:33 -0700612
Doug Zongkerf93d8162009-09-22 15:16:02 -0700613 if (title_headers == NULL) {
614 char* headers[] = { "Confirm wipe of all user data?",
615 " THIS CAN NOT BE UNDONE.",
616 "",
617 NULL };
Doug Zongker8674a722010-09-15 11:08:23 -0700618 title_headers = prepend_title((const char**)headers);
Doug Zongkerf93d8162009-09-22 15:16:02 -0700619 }
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800620
Doug Zongkerf93d8162009-09-22 15:16:02 -0700621 char* items[] = { " No",
622 " No",
623 " No",
624 " No",
625 " No",
626 " No",
627 " No",
628 " Yes -- delete all user data", // [7]
629 " No",
630 " No",
631 " No",
632 NULL };
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800633
Doug Zongker8674a722010-09-15 11:08:23 -0700634 int chosen_item = get_menu_selection(title_headers, items, 1, 0);
Doug Zongkerf93d8162009-09-22 15:16:02 -0700635 if (chosen_item != 7) {
636 return;
637 }
638 }
Doug Zongker1066d2c2009-04-01 13:57:40 -0700639
Doug Zongkerf93d8162009-09-22 15:16:02 -0700640 ui_print("\n-- Wiping data...\n");
641 device_wipe_data();
Doug Zongkerd4208f92010-09-20 12:16:13 -0700642 erase_volume("/data");
643 erase_volume("/cache");
Doug Zongkerf93d8162009-09-22 15:16:02 -0700644 ui_print("Data wipe complete.\n");
645}
646
647static void
Oscar Montemayor05231562009-11-30 08:40:57 -0800648prompt_and_wait() {
Doug Zongker8674a722010-09-15 11:08:23 -0700649 char** headers = prepend_title((const char**)MENU_HEADERS);
Doug Zongkerf93d8162009-09-22 15:16:02 -0700650
651 for (;;) {
652 finish_recovery(NULL);
653 ui_reset_progress();
654
Doug Zongker8674a722010-09-15 11:08:23 -0700655 int chosen_item = get_menu_selection(headers, MENU_ITEMS, 0, 0);
Doug Zongkerf93d8162009-09-22 15:16:02 -0700656
657 // device-specific code may take some action here. It may
658 // return one of the core actions handled in the switch
659 // statement below.
660 chosen_item = device_perform_action(chosen_item);
661
Michael Ward9d2629c2011-06-23 22:14:24 -0700662 int status;
Doug Zongkerd0181b82011-10-19 10:51:12 -0700663 int wipe_cache;
Doug Zongkerf93d8162009-09-22 15:16:02 -0700664 switch (chosen_item) {
665 case ITEM_REBOOT:
666 return;
667
668 case ITEM_WIPE_DATA:
669 wipe_data(ui_text_visible());
670 if (!ui_text_visible()) return;
671 break;
672
673 case ITEM_WIPE_CACHE:
674 ui_print("\n-- Wiping cache...\n");
Doug Zongkerd4208f92010-09-20 12:16:13 -0700675 erase_volume("/cache");
Doug Zongkerf93d8162009-09-22 15:16:02 -0700676 ui_print("Cache wipe complete.\n");
677 if (!ui_text_visible()) return;
678 break;
679
680 case ITEM_APPLY_SDCARD:
Doug Zongkerd0181b82011-10-19 10:51:12 -0700681 status = update_directory(SDCARD_ROOT, SDCARD_ROOT, &wipe_cache);
682 if (status == INSTALL_SUCCESS && wipe_cache) {
683 ui_print("\n-- Wiping cache (at package request)...\n");
684 if (erase_volume("/cache")) {
685 ui_print("Cache wipe failed.\n");
686 } else {
687 ui_print("Cache wipe complete.\n");
688 }
689 }
Doug Zongker8674a722010-09-15 11:08:23 -0700690 if (status >= 0) {
691 if (status != INSTALL_SUCCESS) {
692 ui_set_background(BACKGROUND_ICON_ERROR);
693 ui_print("Installation aborted.\n");
694 } else if (!ui_text_visible()) {
695 return; // reboot if logs aren't visible
696 } else {
697 ui_print("\nInstall from sdcard complete.\n");
698 }
Doug Zongkerf93d8162009-09-22 15:16:02 -0700699 }
700 break;
Michael Ward9d2629c2011-06-23 22:14:24 -0700701 case ITEM_APPLY_CACHE:
702 // Don't unmount cache at the end of this.
Doug Zongkerd0181b82011-10-19 10:51:12 -0700703 status = update_directory(CACHE_ROOT, NULL, &wipe_cache);
704 if (status == INSTALL_SUCCESS && wipe_cache) {
705 ui_print("\n-- Wiping cache (at package request)...\n");
706 if (erase_volume("/cache")) {
707 ui_print("Cache wipe failed.\n");
708 } else {
709 ui_print("Cache wipe complete.\n");
710 }
711 }
Michael Ward9d2629c2011-06-23 22:14:24 -0700712 if (status >= 0) {
713 if (status != INSTALL_SUCCESS) {
714 ui_set_background(BACKGROUND_ICON_ERROR);
715 ui_print("Installation aborted.\n");
716 } else if (!ui_text_visible()) {
717 return; // reboot if logs aren't visible
718 } else {
719 ui_print("\nInstall from cache complete.\n");
720 }
721 }
722 break;
723
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800724 }
725 }
726}
727
728static void
Oscar Montemayor05231562009-11-30 08:40:57 -0800729print_property(const char *key, const char *name, void *cookie) {
Doug Zongker56c51052010-07-01 09:18:44 -0700730 printf("%s=%s\n", key, name);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800731}
732
733int
Oscar Montemayor05231562009-11-30 08:40:57 -0800734main(int argc, char **argv) {
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800735 time_t start = time(NULL);
736
737 // If these fail, there's not really anywhere to complain...
738 freopen(TEMPORARY_LOG_FILE, "a", stdout); setbuf(stdout, NULL);
739 freopen(TEMPORARY_LOG_FILE, "a", stderr); setbuf(stderr, NULL);
Doug Zongker56c51052010-07-01 09:18:44 -0700740 printf("Starting recovery on %s", ctime(&start));
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800741
Doug Zongker6809c512011-03-01 14:04:34 -0800742 device_ui_init(&ui_parameters);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800743 ui_init();
Doug Zongker51266d12010-11-01 10:19:12 -0700744 ui_set_background(BACKGROUND_ICON_INSTALLING);
Doug Zongkerd4208f92010-09-20 12:16:13 -0700745 load_volume_table();
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800746 get_args(&argc, &argv);
747
748 int previous_runs = 0;
749 const char *send_intent = NULL;
750 const char *update_package = NULL;
751 int wipe_data = 0, wipe_cache = 0;
752
753 int arg;
754 while ((arg = getopt_long(argc, argv, "", OPTIONS, NULL)) != -1) {
755 switch (arg) {
756 case 'p': previous_runs = atoi(optarg); break;
757 case 's': send_intent = optarg; break;
758 case 'u': update_package = optarg; break;
759 case 'w': wipe_data = wipe_cache = 1; break;
760 case 'c': wipe_cache = 1; break;
Doug Zongker4bc98062010-09-03 11:00:13 -0700761 case 't': ui_show_text(1); break;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800762 case '?':
763 LOGE("Invalid command argument\n");
764 continue;
765 }
766 }
767
Stephen Smalley779701d2012-02-09 14:13:23 -0500768#ifdef HAVE_SELINUX
769 struct selinux_opt seopts[] = {
770 { SELABEL_OPT_PATH, "/file_contexts" }
771 };
772
773 sehandle = selabel_open(SELABEL_CTX_FILE, seopts, 1);
774
775 if (!sehandle) {
776 fprintf(stderr, "Warning: No file_contexts\n");
777 ui_print("Warning: No file_contexts\n");
778 }
779#endif
780
Doug Zongkerefa1bab2010-02-01 15:59:12 -0800781 device_recovery_start();
782
Doug Zongker56c51052010-07-01 09:18:44 -0700783 printf("Command:");
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800784 for (arg = 0; arg < argc; arg++) {
Doug Zongker56c51052010-07-01 09:18:44 -0700785 printf(" \"%s\"", argv[arg]);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800786 }
Doug Zongker9b125b02010-09-22 12:01:37 -0700787 printf("\n");
788
789 if (update_package) {
790 // For backwards compatibility on the cache partition only, if
791 // we're given an old 'root' path "CACHE:foo", change it to
792 // "/cache/foo".
793 if (strncmp(update_package, "CACHE:", 6) == 0) {
794 int len = strlen(update_package) + 10;
795 char* modified_path = malloc(len);
796 strlcpy(modified_path, "/cache/", len);
797 strlcat(modified_path, update_package+6, len);
798 printf("(replacing path \"%s\" with \"%s\")\n",
799 update_package, modified_path);
800 update_package = modified_path;
801 }
802 }
803 printf("\n");
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800804
805 property_list(print_property, NULL);
Doug Zongker56c51052010-07-01 09:18:44 -0700806 printf("\n");
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800807
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800808 int status = INSTALL_SUCCESS;
809
Doug Zongker540d57f2011-01-18 13:36:58 -0800810 if (update_package != NULL) {
Doug Zongkerd0181b82011-10-19 10:51:12 -0700811 status = install_package(update_package, &wipe_cache, TEMPORARY_INSTALL_FILE);
812 if (status == INSTALL_SUCCESS && wipe_cache) {
813 if (erase_volume("/cache")) {
814 LOGE("Cache wipe (requested by package) failed.");
815 }
816 }
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800817 if (status != INSTALL_SUCCESS) ui_print("Installation aborted.\n");
Doug Zongkerb128f542009-06-18 15:07:14 -0700818 } else if (wipe_data) {
819 if (device_wipe_data()) status = INSTALL_ERROR;
Doug Zongkerd4208f92010-09-20 12:16:13 -0700820 if (erase_volume("/data")) status = INSTALL_ERROR;
821 if (wipe_cache && erase_volume("/cache")) status = INSTALL_ERROR;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800822 if (status != INSTALL_SUCCESS) ui_print("Data wipe failed.\n");
Doug Zongkerb128f542009-06-18 15:07:14 -0700823 } else if (wipe_cache) {
Doug Zongkerd4208f92010-09-20 12:16:13 -0700824 if (wipe_cache && erase_volume("/cache")) status = INSTALL_ERROR;
Doug Zongkerb128f542009-06-18 15:07:14 -0700825 if (status != INSTALL_SUCCESS) ui_print("Cache wipe failed.\n");
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800826 } else {
827 status = INSTALL_ERROR; // No command specified
828 }
829
830 if (status != INSTALL_SUCCESS) ui_set_background(BACKGROUND_ICON_ERROR);
Doug Zongker8674a722010-09-15 11:08:23 -0700831 if (status != INSTALL_SUCCESS || ui_text_visible()) {
Doug Zongker8674a722010-09-15 11:08:23 -0700832 prompt_and_wait();
833 }
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800834
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800835 // Otherwise, get ready to boot the main system...
836 finish_recovery(send_intent);
837 ui_print("Rebooting...\n");
Ken Sumrall6e4472a2011-03-07 23:37:27 -0800838 android_reboot(ANDROID_RB_RESTART, 0, 0);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800839 return EXIT_SUCCESS;
840}