blob: 743920c85dfce6555624487762ee860631822eba [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"
Dees_Troy38bd7602012-09-14 13:33:53 -040035#ifdef ANDROID_RB_RESTART
Ken Sumrall6e4472a2011-03-07 23:37:27 -080036#include "cutils/android_reboot.h"
Dees_Troy38bd7602012-09-14 13:33:53 -040037#else
38#include <sys/reboot.h>
39#endif
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080040#include "install.h"
41#include "minui/minui.h"
42#include "minzip/DirUtil.h"
43#include "roots.h"
Doug Zongker28ce47c2011-10-28 10:33:05 -070044#include "ui.h"
Doug Zongker211aebc2011-10-28 15:13:10 -070045#include "screen_ui.h"
Doug Zongkerdaefc1d2011-10-31 09:34:15 -070046#include "device.h"
Doug Zongker9270a202012-01-09 15:16:13 -080047#include "adb_install.h"
48extern "C" {
49#include "minadbd/adb.h"
50}
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080051
Dees_Troy7d15c252012-09-05 20:47:21 -040052extern "C" {
53#include "extra-functions.h"
54#include "data.h"
55#include "gui/gui.h"
56}
57#include "partitions.hpp"
Dees_Troy51127312012-09-08 13:08:49 -040058#include "variables.h"
Dees_Troy7d15c252012-09-05 20:47:21 -040059
Dees_Troy5bf43922012-09-07 16:07:55 -040060TWPartitionManager PartitionManager;
Dees_Troy7d15c252012-09-05 20:47:21 -040061
Stephen Smalley779701d2012-02-09 14:13:23 -050062struct selabel_handle *sehandle;
63
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080064static const struct option OPTIONS[] = {
65 { "send_intent", required_argument, NULL, 's' },
66 { "update_package", required_argument, NULL, 'u' },
67 { "wipe_data", no_argument, NULL, 'w' },
68 { "wipe_cache", no_argument, NULL, 'c' },
Doug Zongker4bc98062010-09-03 11:00:13 -070069 { "show_text", no_argument, NULL, 't' },
Doug Zongkere5d5ac72012-04-12 11:01:22 -070070 { "just_exit", no_argument, NULL, 'x' },
Doug Zongker988500b2009-10-06 14:41:38 -070071 { NULL, 0, NULL, 0 },
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080072};
73
Doug Zongkerd4208f92010-09-20 12:16:13 -070074static const char *COMMAND_FILE = "/cache/recovery/command";
75static const char *INTENT_FILE = "/cache/recovery/intent";
76static const char *LOG_FILE = "/cache/recovery/log";
Doug Zongker2c3539e2010-09-29 13:21:30 -070077static const char *LAST_LOG_FILE = "/cache/recovery/last_log";
Doug Zongkerd0181b82011-10-19 10:51:12 -070078static const char *LAST_INSTALL_FILE = "/cache/recovery/last_install";
Michael Ward9d2629c2011-06-23 22:14:24 -070079static const char *CACHE_ROOT = "/cache";
Doug Zongkerd4208f92010-09-20 12:16:13 -070080static const char *SDCARD_ROOT = "/sdcard";
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080081static const char *TEMPORARY_LOG_FILE = "/tmp/recovery.log";
Doug Zongkerd0181b82011-10-19 10:51:12 -070082static const char *TEMPORARY_INSTALL_FILE = "/tmp/last_install";
Doug Zongkerd4208f92010-09-20 12:16:13 -070083static const char *SIDELOAD_TEMP_DIR = "/tmp/sideload";
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080084
Doug Zongker211aebc2011-10-28 15:13:10 -070085RecoveryUI* ui = NULL;
86
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080087/*
88 * The recovery tool communicates with the main system through /cache files.
89 * /cache/recovery/command - INPUT - command line for tool, one arg per line
90 * /cache/recovery/log - OUTPUT - combined log file from recovery run(s)
91 * /cache/recovery/intent - OUTPUT - intent that was passed in
92 *
93 * The arguments which may be supplied in the recovery.command file:
94 * --send_intent=anystring - write the text out to recovery.intent
Doug Zongkerd4208f92010-09-20 12:16:13 -070095 * --update_package=path - verify install an OTA package file
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080096 * --wipe_data - erase user data (and cache), then reboot
97 * --wipe_cache - wipe cache (but not user data), then reboot
Oscar Montemayor05231562009-11-30 08:40:57 -080098 * --set_encrypted_filesystem=on|off - enables / diasables encrypted fs
Doug Zongkere5d5ac72012-04-12 11:01:22 -070099 * --just_exit - do nothing; exit and reboot
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800100 *
101 * After completing, we remove /cache/recovery/command and reboot.
102 * Arguments may also be supplied in the bootloader control block (BCB).
103 * These important scenarios must be safely restartable at any point:
104 *
105 * FACTORY RESET
106 * 1. user selects "factory reset"
107 * 2. main system writes "--wipe_data" to /cache/recovery/command
108 * 3. main system reboots into recovery
109 * 4. get_args() writes BCB with "boot-recovery" and "--wipe_data"
110 * -- after this, rebooting will restart the erase --
Doug Zongkerd4208f92010-09-20 12:16:13 -0700111 * 5. erase_volume() reformats /data
112 * 6. erase_volume() reformats /cache
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800113 * 7. finish_recovery() erases BCB
114 * -- after this, rebooting will restart the main system --
115 * 8. main() calls reboot() to boot main system
116 *
117 * OTA INSTALL
118 * 1. main system downloads OTA package to /cache/some-filename.zip
Doug Zongker9b125b02010-09-22 12:01:37 -0700119 * 2. main system writes "--update_package=/cache/some-filename.zip"
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800120 * 3. main system reboots into recovery
121 * 4. get_args() writes BCB with "boot-recovery" and "--update_package=..."
122 * -- after this, rebooting will attempt to reinstall the update --
123 * 5. install_package() attempts to install the update
124 * NOTE: the package install must itself be restartable from any point
125 * 6. finish_recovery() erases BCB
126 * -- after this, rebooting will (try to) restart the main system --
127 * 7. ** if install failed **
128 * 7a. prompt_and_wait() shows an error icon and waits for the user
129 * 7b; the user reboots (pulling the battery, etc) into the main system
130 * 8. main() calls maybe_install_firmware_update()
131 * ** if the update contained radio/hboot firmware **:
132 * 8a. m_i_f_u() writes BCB with "boot-recovery" and "--wipe_cache"
133 * -- after this, rebooting will reformat cache & restart main system --
134 * 8b. m_i_f_u() writes firmware image into raw cache partition
135 * 8c. m_i_f_u() writes BCB with "update-radio/hboot" and "--wipe_cache"
136 * -- after this, rebooting will attempt to reinstall firmware --
137 * 8d. bootloader tries to flash firmware
138 * 8e. bootloader writes BCB with "boot-recovery" (keeping "--wipe_cache")
139 * -- after this, rebooting will reformat cache & restart main system --
Doug Zongkerd4208f92010-09-20 12:16:13 -0700140 * 8f. erase_volume() reformats /cache
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800141 * 8g. finish_recovery() erases BCB
142 * -- after this, rebooting will (try to) restart the main system --
143 * 9. main() calls reboot() to boot main system
144 */
145
146static const int MAX_ARG_LENGTH = 4096;
147static const int MAX_ARGS = 100;
148
Doug Zongkerd4208f92010-09-20 12:16:13 -0700149// open a given path, mounting partitions as necessary
Doug Zongker469243e2011-04-12 09:28:10 -0700150FILE*
Doug Zongkerd4208f92010-09-20 12:16:13 -0700151fopen_path(const char *path, const char *mode) {
152 if (ensure_path_mounted(path) != 0) {
153 LOGE("Can't mount %s\n", path);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800154 return NULL;
155 }
156
157 // When writing, try to create the containing directory, if necessary.
158 // Use generous permissions, the system (init.rc) will reset them.
Stephen Smalley779701d2012-02-09 14:13:23 -0500159 if (strchr("wa", mode[0])) dirCreateHierarchy(path, 0777, NULL, 1, sehandle);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800160
161 FILE *fp = fopen(path, mode);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800162 return fp;
163}
164
165// close a file, log an error if the error indicator is set
166static void
167check_and_fclose(FILE *fp, const char *name) {
168 fflush(fp);
169 if (ferror(fp)) LOGE("Error in %s\n(%s)\n", name, strerror(errno));
170 fclose(fp);
171}
172
173// command line args come from, in decreasing precedence:
174// - the actual command line
175// - the bootloader control block (one per line, after "recovery")
176// - the contents of COMMAND_FILE (one per line)
177static void
178get_args(int *argc, char ***argv) {
179 struct bootloader_message boot;
180 memset(&boot, 0, sizeof(boot));
181 get_bootloader_message(&boot); // this may fail, leaving a zeroed structure
182
183 if (boot.command[0] != 0 && boot.command[0] != 255) {
184 LOGI("Boot command: %.*s\n", sizeof(boot.command), boot.command);
185 }
186
187 if (boot.status[0] != 0 && boot.status[0] != 255) {
188 LOGI("Boot status: %.*s\n", sizeof(boot.status), boot.status);
189 }
190
191 // --- if arguments weren't supplied, look in the bootloader control block
192 if (*argc <= 1) {
193 boot.recovery[sizeof(boot.recovery) - 1] = '\0'; // Ensure termination
194 const char *arg = strtok(boot.recovery, "\n");
195 if (arg != NULL && !strcmp(arg, "recovery")) {
196 *argv = (char **) malloc(sizeof(char *) * MAX_ARGS);
197 (*argv)[0] = strdup(arg);
198 for (*argc = 1; *argc < MAX_ARGS; ++*argc) {
199 if ((arg = strtok(NULL, "\n")) == NULL) break;
200 (*argv)[*argc] = strdup(arg);
201 }
202 LOGI("Got arguments from boot message\n");
203 } else if (boot.recovery[0] != 0 && boot.recovery[0] != 255) {
204 LOGE("Bad boot message\n\"%.20s\"\n", boot.recovery);
205 }
206 }
207
208 // --- if that doesn't work, try the command file
209 if (*argc <= 1) {
Doug Zongkerd4208f92010-09-20 12:16:13 -0700210 FILE *fp = fopen_path(COMMAND_FILE, "r");
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800211 if (fp != NULL) {
212 char *argv0 = (*argv)[0];
213 *argv = (char **) malloc(sizeof(char *) * MAX_ARGS);
214 (*argv)[0] = argv0; // use the same program name
215
216 char buf[MAX_ARG_LENGTH];
217 for (*argc = 1; *argc < MAX_ARGS; ++*argc) {
218 if (!fgets(buf, sizeof(buf), fp)) break;
219 (*argv)[*argc] = strdup(strtok(buf, "\r\n")); // Strip newline.
220 }
221
222 check_and_fclose(fp, COMMAND_FILE);
223 LOGI("Got arguments from %s\n", COMMAND_FILE);
224 }
225 }
226
227 // --> write the arguments we have back into the bootloader control block
228 // always boot into recovery after this (until finish_recovery() is called)
229 strlcpy(boot.command, "boot-recovery", sizeof(boot.command));
230 strlcpy(boot.recovery, "recovery\n", sizeof(boot.recovery));
231 int i;
232 for (i = 1; i < *argc; ++i) {
233 strlcat(boot.recovery, (*argv)[i], sizeof(boot.recovery));
234 strlcat(boot.recovery, "\n", sizeof(boot.recovery));
235 }
236 set_bootloader_message(&boot);
237}
238
Doug Zongker34c98df2009-08-18 12:05:45 -0700239static void
Oscar Montemayor05231562009-11-30 08:40:57 -0800240set_sdcard_update_bootloader_message() {
Doug Zongker34c98df2009-08-18 12:05:45 -0700241 struct bootloader_message boot;
242 memset(&boot, 0, sizeof(boot));
243 strlcpy(boot.command, "boot-recovery", sizeof(boot.command));
244 strlcpy(boot.recovery, "recovery\n", sizeof(boot.recovery));
245 set_bootloader_message(&boot);
246}
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800247
Doug Zongker2c3539e2010-09-29 13:21:30 -0700248// How much of the temp log we have copied to the copy in cache.
Dees_Troy7d15c252012-09-05 20:47:21 -0400249//static long tmplog_offset = 0;
Doug Zongker2c3539e2010-09-29 13:21:30 -0700250
251static void
Doug Zongkerd0181b82011-10-19 10:51:12 -0700252copy_log_file(const char* source, const char* destination, int append) {
Doug Zongker2c3539e2010-09-29 13:21:30 -0700253 FILE *log = fopen_path(destination, append ? "a" : "w");
254 if (log == NULL) {
255 LOGE("Can't open %s\n", destination);
256 } else {
Doug Zongkerd0181b82011-10-19 10:51:12 -0700257 FILE *tmplog = fopen(source, "r");
258 if (tmplog != NULL) {
Doug Zongker2c3539e2010-09-29 13:21:30 -0700259 if (append) {
260 fseek(tmplog, tmplog_offset, SEEK_SET); // Since last write
261 }
262 char buf[4096];
263 while (fgets(buf, sizeof(buf), tmplog)) fputs(buf, log);
264 if (append) {
265 tmplog_offset = ftell(tmplog);
266 }
Doug Zongkerd0181b82011-10-19 10:51:12 -0700267 check_and_fclose(tmplog, source);
Doug Zongker2c3539e2010-09-29 13:21:30 -0700268 }
269 check_and_fclose(log, destination);
270 }
271}
272
273
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800274// clear the recovery command and prepare to boot a (hopefully working) system,
275// copy our log file to cache as well (for the system to read), and
276// record any intent we were asked to communicate back to the system.
277// this function is idempotent: call it as many times as you like.
278static void
Oscar Montemayor05231562009-11-30 08:40:57 -0800279finish_recovery(const char *send_intent) {
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800280 // By this point, we're ready to return to the main system...
281 if (send_intent != NULL) {
Doug Zongkerd4208f92010-09-20 12:16:13 -0700282 FILE *fp = fopen_path(INTENT_FILE, "w");
Jay Freeman (saurik)619ec2f2008-11-17 01:56:05 +0000283 if (fp == NULL) {
284 LOGE("Can't open %s\n", INTENT_FILE);
285 } else {
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800286 fputs(send_intent, fp);
287 check_and_fclose(fp, INTENT_FILE);
288 }
289 }
290
291 // Copy logs to cache so the system can find out what happened.
Doug Zongkerd0181b82011-10-19 10:51:12 -0700292 copy_log_file(TEMPORARY_LOG_FILE, LOG_FILE, true);
293 copy_log_file(TEMPORARY_LOG_FILE, LAST_LOG_FILE, false);
294 copy_log_file(TEMPORARY_INSTALL_FILE, LAST_INSTALL_FILE, false);
295 chmod(LOG_FILE, 0600);
296 chown(LOG_FILE, 1000, 1000); // system user
Doug Zongker2c3539e2010-09-29 13:21:30 -0700297 chmod(LAST_LOG_FILE, 0640);
Doug Zongkerd0181b82011-10-19 10:51:12 -0700298 chmod(LAST_INSTALL_FILE, 0644);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800299
Doug Zongkere5d5ac72012-04-12 11:01:22 -0700300 // Reset to normal system boot so recovery won't cycle indefinitely.
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800301 struct bootloader_message boot;
302 memset(&boot, 0, sizeof(boot));
303 set_bootloader_message(&boot);
304
305 // Remove the command file, so recovery won't repeat indefinitely.
Doug Zongkerd4208f92010-09-20 12:16:13 -0700306 if (ensure_path_mounted(COMMAND_FILE) != 0 ||
307 (unlink(COMMAND_FILE) && errno != ENOENT)) {
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800308 LOGW("Can't unlink %s\n", COMMAND_FILE);
309 }
310
Doug Zongkerd0181b82011-10-19 10:51:12 -0700311 ensure_path_unmounted(CACHE_ROOT);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800312 sync(); // For good measure.
313}
314
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800315static int
Doug Zongkerd4208f92010-09-20 12:16:13 -0700316erase_volume(const char *volume) {
Doug Zongker211aebc2011-10-28 15:13:10 -0700317 ui->SetBackground(RecoveryUI::INSTALLING);
318 ui->SetProgressType(RecoveryUI::INDETERMINATE);
319 ui->Print("Formatting %s...\n", volume);
Doug Zongker2c3539e2010-09-29 13:21:30 -0700320
Doug Zongkerd0181b82011-10-19 10:51:12 -0700321 ensure_path_unmounted(volume);
322
Doug Zongker2c3539e2010-09-29 13:21:30 -0700323 if (strcmp(volume, "/cache") == 0) {
324 // Any part of the log we'd copied to cache is now gone.
325 // Reset the pointer so we copy from the beginning of the temp
326 // log.
327 tmplog_offset = 0;
328 }
329
Doug Zongkerd4208f92010-09-20 12:16:13 -0700330 return format_volume(volume);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800331}
332
Doug Zongker23ceeea2010-07-08 17:27:55 -0700333static char*
Doug Zongkerd4208f92010-09-20 12:16:13 -0700334copy_sideloaded_package(const char* original_path) {
335 if (ensure_path_mounted(original_path) != 0) {
336 LOGE("Can't mount %s\n", original_path);
Doug Zongker23ceeea2010-07-08 17:27:55 -0700337 return NULL;
338 }
339
Doug Zongkerd4208f92010-09-20 12:16:13 -0700340 if (ensure_path_mounted(SIDELOAD_TEMP_DIR) != 0) {
Doug Zongker23ceeea2010-07-08 17:27:55 -0700341 LOGE("Can't mount %s\n", SIDELOAD_TEMP_DIR);
342 return NULL;
343 }
344
Doug Zongkerd4208f92010-09-20 12:16:13 -0700345 if (mkdir(SIDELOAD_TEMP_DIR, 0700) != 0) {
Doug Zongker23ceeea2010-07-08 17:27:55 -0700346 if (errno != EEXIST) {
347 LOGE("Can't mkdir %s (%s)\n", SIDELOAD_TEMP_DIR, strerror(errno));
348 return NULL;
349 }
350 }
351
Doug Zongkerd4208f92010-09-20 12:16:13 -0700352 // verify that SIDELOAD_TEMP_DIR is exactly what we expect: a
353 // directory, owned by root, readable and writable only by root.
Doug Zongker23ceeea2010-07-08 17:27:55 -0700354 struct stat st;
Doug Zongkerd4208f92010-09-20 12:16:13 -0700355 if (stat(SIDELOAD_TEMP_DIR, &st) != 0) {
356 LOGE("failed to stat %s (%s)\n", SIDELOAD_TEMP_DIR, strerror(errno));
Doug Zongker23ceeea2010-07-08 17:27:55 -0700357 return NULL;
358 }
359 if (!S_ISDIR(st.st_mode)) {
Doug Zongkerd4208f92010-09-20 12:16:13 -0700360 LOGE("%s isn't a directory\n", SIDELOAD_TEMP_DIR);
Doug Zongker23ceeea2010-07-08 17:27:55 -0700361 return NULL;
362 }
363 if ((st.st_mode & 0777) != 0700) {
Doug Zongkerd4208f92010-09-20 12:16:13 -0700364 LOGE("%s has perms %o\n", SIDELOAD_TEMP_DIR, st.st_mode);
Doug Zongker23ceeea2010-07-08 17:27:55 -0700365 return NULL;
366 }
367 if (st.st_uid != 0) {
Doug Zongkerd4208f92010-09-20 12:16:13 -0700368 LOGE("%s owned by %lu; not root\n", SIDELOAD_TEMP_DIR, st.st_uid);
Doug Zongker23ceeea2010-07-08 17:27:55 -0700369 return NULL;
370 }
371
Doug Zongkerd4208f92010-09-20 12:16:13 -0700372 char copy_path[PATH_MAX];
373 strcpy(copy_path, SIDELOAD_TEMP_DIR);
Doug Zongker23ceeea2010-07-08 17:27:55 -0700374 strcat(copy_path, "/package.zip");
375
Doug Zongker28ce47c2011-10-28 10:33:05 -0700376 char* buffer = (char*)malloc(BUFSIZ);
Doug Zongker23ceeea2010-07-08 17:27:55 -0700377 if (buffer == NULL) {
378 LOGE("Failed to allocate buffer\n");
379 return NULL;
380 }
381
382 size_t read;
383 FILE* fin = fopen(original_path, "rb");
384 if (fin == NULL) {
385 LOGE("Failed to open %s (%s)\n", original_path, strerror(errno));
386 return NULL;
387 }
388 FILE* fout = fopen(copy_path, "wb");
389 if (fout == NULL) {
390 LOGE("Failed to open %s (%s)\n", copy_path, strerror(errno));
391 return NULL;
392 }
393
394 while ((read = fread(buffer, 1, BUFSIZ, fin)) > 0) {
395 if (fwrite(buffer, 1, read, fout) != read) {
396 LOGE("Short write of %s (%s)\n", copy_path, strerror(errno));
397 return NULL;
398 }
399 }
400
401 free(buffer);
402
403 if (fclose(fout) != 0) {
404 LOGE("Failed to close %s (%s)\n", copy_path, strerror(errno));
405 return NULL;
406 }
407
408 if (fclose(fin) != 0) {
409 LOGE("Failed to close %s (%s)\n", original_path, strerror(errno));
410 return NULL;
411 }
412
413 // "adb push" is happy to overwrite read-only files when it's
414 // running as root, but we'll try anyway.
415 if (chmod(copy_path, 0400) != 0) {
416 LOGE("Failed to chmod %s (%s)\n", copy_path, strerror(errno));
417 return NULL;
418 }
419
Doug Zongkerd4208f92010-09-20 12:16:13 -0700420 return strdup(copy_path);
Doug Zongker23ceeea2010-07-08 17:27:55 -0700421}
422
Doug Zongker28ce47c2011-10-28 10:33:05 -0700423static const char**
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700424prepend_title(const char* const* headers) {
Doug Zongker28ce47c2011-10-28 10:33:05 -0700425 const char* title[] = { "Android system recovery <"
426 EXPAND(RECOVERY_API_VERSION) "e>",
427 "",
428 NULL };
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800429
Doug Zongkerd6837852009-06-17 22:07:13 -0700430 // count the number of lines in our title, plus the
Doug Zongkerf93d8162009-09-22 15:16:02 -0700431 // caller-provided headers.
Doug Zongkerd6837852009-06-17 22:07:13 -0700432 int count = 0;
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700433 const char* const* p;
Doug Zongkerd6837852009-06-17 22:07:13 -0700434 for (p = title; *p; ++p, ++count);
Doug Zongkerf93d8162009-09-22 15:16:02 -0700435 for (p = headers; *p; ++p, ++count);
Doug Zongkerd6837852009-06-17 22:07:13 -0700436
Doug Zongker28ce47c2011-10-28 10:33:05 -0700437 const char** new_headers = (const char**)malloc((count+1) * sizeof(char*));
438 const char** h = new_headers;
Doug Zongkerd6837852009-06-17 22:07:13 -0700439 for (p = title; *p; ++p, ++h) *h = *p;
Doug Zongkerf93d8162009-09-22 15:16:02 -0700440 for (p = headers; *p; ++p, ++h) *h = *p;
Doug Zongkerd6837852009-06-17 22:07:13 -0700441 *h = NULL;
442
Doug Zongkerf93d8162009-09-22 15:16:02 -0700443 return new_headers;
444}
445
446static int
Doug Zongker28ce47c2011-10-28 10:33:05 -0700447get_menu_selection(const char* const * headers, const char* const * items,
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700448 int menu_only, int initial_selection, Device* device) {
Doug Zongkerf93d8162009-09-22 15:16:02 -0700449 // throw away keys pressed previously, so user doesn't
450 // accidentally trigger menu items.
Doug Zongker211aebc2011-10-28 15:13:10 -0700451 ui->FlushKeys();
Doug Zongkerf93d8162009-09-22 15:16:02 -0700452
Doug Zongker211aebc2011-10-28 15:13:10 -0700453 ui->StartMenu(headers, items, initial_selection);
Doug Zongker8674a722010-09-15 11:08:23 -0700454 int selected = initial_selection;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800455 int chosen_item = -1;
456
Doug Zongkerf93d8162009-09-22 15:16:02 -0700457 while (chosen_item < 0) {
Doug Zongker211aebc2011-10-28 15:13:10 -0700458 int key = ui->WaitKey();
459 int visible = ui->IsTextVisible();
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800460
Doug Zongker5cae4452011-01-25 13:15:30 -0800461 if (key == -1) { // ui_wait_key() timed out
Doug Zongker211aebc2011-10-28 15:13:10 -0700462 if (ui->WasTextEverVisible()) {
Doug Zongker5cae4452011-01-25 13:15:30 -0800463 continue;
464 } else {
465 LOGI("timed out waiting for key input; rebooting.\n");
Doug Zongker211aebc2011-10-28 15:13:10 -0700466 ui->EndMenu();
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700467 return 0; // XXX fixme
Doug Zongker5cae4452011-01-25 13:15:30 -0800468 }
469 }
470
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700471 int action = device->HandleMenuKey(key, visible);
Doug Zongkerddd6a282009-06-09 12:22:33 -0700472
473 if (action < 0) {
474 switch (action) {
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700475 case Device::kHighlightUp:
Doug Zongkerddd6a282009-06-09 12:22:33 -0700476 --selected;
Doug Zongker211aebc2011-10-28 15:13:10 -0700477 selected = ui->SelectMenu(selected);
Doug Zongkerddd6a282009-06-09 12:22:33 -0700478 break;
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700479 case Device::kHighlightDown:
Doug Zongkerddd6a282009-06-09 12:22:33 -0700480 ++selected;
Doug Zongker211aebc2011-10-28 15:13:10 -0700481 selected = ui->SelectMenu(selected);
Doug Zongkerddd6a282009-06-09 12:22:33 -0700482 break;
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700483 case Device::kInvokeItem:
Doug Zongkerddd6a282009-06-09 12:22:33 -0700484 chosen_item = selected;
485 break;
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700486 case Device::kNoAction:
Doug Zongkerddd6a282009-06-09 12:22:33 -0700487 break;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800488 }
Doug Zongkerf93d8162009-09-22 15:16:02 -0700489 } else if (!menu_only) {
Doug Zongkerddd6a282009-06-09 12:22:33 -0700490 chosen_item = action;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800491 }
Doug Zongkerf93d8162009-09-22 15:16:02 -0700492 }
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800493
Doug Zongker211aebc2011-10-28 15:13:10 -0700494 ui->EndMenu();
Doug Zongkerf93d8162009-09-22 15:16:02 -0700495 return chosen_item;
496}
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800497
Doug Zongker8674a722010-09-15 11:08:23 -0700498static int compare_string(const void* a, const void* b) {
499 return strcmp(*(const char**)a, *(const char**)b);
500}
501
502static int
Doug Zongkerd0181b82011-10-19 10:51:12 -0700503update_directory(const char* path, const char* unmount_when_done,
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700504 int* wipe_cache, Device* device) {
Michael Ward9d2629c2011-06-23 22:14:24 -0700505 ensure_path_mounted(path);
Doug Zongkerc18eeb82010-09-21 16:49:26 -0700506
Doug Zongker8674a722010-09-15 11:08:23 -0700507 const char* MENU_HEADERS[] = { "Choose a package to install:",
Doug Zongkerd4208f92010-09-20 12:16:13 -0700508 path,
Doug Zongker8674a722010-09-15 11:08:23 -0700509 "",
510 NULL };
511 DIR* d;
512 struct dirent* de;
Doug Zongkerd4208f92010-09-20 12:16:13 -0700513 d = opendir(path);
Doug Zongker8674a722010-09-15 11:08:23 -0700514 if (d == NULL) {
515 LOGE("error opening %s: %s\n", path, strerror(errno));
Michael Ward9d2629c2011-06-23 22:14:24 -0700516 if (unmount_when_done != NULL) {
517 ensure_path_unmounted(unmount_when_done);
518 }
Doug Zongker8674a722010-09-15 11:08:23 -0700519 return 0;
520 }
521
Doug Zongker28ce47c2011-10-28 10:33:05 -0700522 const char** headers = prepend_title(MENU_HEADERS);
Doug Zongker8674a722010-09-15 11:08:23 -0700523
524 int d_size = 0;
525 int d_alloc = 10;
Doug Zongker28ce47c2011-10-28 10:33:05 -0700526 char** dirs = (char**)malloc(d_alloc * sizeof(char*));
Doug Zongker8674a722010-09-15 11:08:23 -0700527 int z_size = 1;
528 int z_alloc = 10;
Doug Zongker28ce47c2011-10-28 10:33:05 -0700529 char** zips = (char**)malloc(z_alloc * sizeof(char*));
Doug Zongker8674a722010-09-15 11:08:23 -0700530 zips[0] = strdup("../");
531
532 while ((de = readdir(d)) != NULL) {
533 int name_len = strlen(de->d_name);
534
535 if (de->d_type == DT_DIR) {
536 // skip "." and ".." entries
537 if (name_len == 1 && de->d_name[0] == '.') continue;
538 if (name_len == 2 && de->d_name[0] == '.' &&
539 de->d_name[1] == '.') continue;
540
541 if (d_size >= d_alloc) {
542 d_alloc *= 2;
Doug Zongker28ce47c2011-10-28 10:33:05 -0700543 dirs = (char**)realloc(dirs, d_alloc * sizeof(char*));
Doug Zongker8674a722010-09-15 11:08:23 -0700544 }
Doug Zongker28ce47c2011-10-28 10:33:05 -0700545 dirs[d_size] = (char*)malloc(name_len + 2);
Doug Zongker8674a722010-09-15 11:08:23 -0700546 strcpy(dirs[d_size], de->d_name);
547 dirs[d_size][name_len] = '/';
548 dirs[d_size][name_len+1] = '\0';
549 ++d_size;
550 } else if (de->d_type == DT_REG &&
551 name_len >= 4 &&
552 strncasecmp(de->d_name + (name_len-4), ".zip", 4) == 0) {
553 if (z_size >= z_alloc) {
554 z_alloc *= 2;
Doug Zongker28ce47c2011-10-28 10:33:05 -0700555 zips = (char**)realloc(zips, z_alloc * sizeof(char*));
Doug Zongker8674a722010-09-15 11:08:23 -0700556 }
557 zips[z_size++] = strdup(de->d_name);
558 }
559 }
560 closedir(d);
561
562 qsort(dirs, d_size, sizeof(char*), compare_string);
563 qsort(zips, z_size, sizeof(char*), compare_string);
564
565 // append dirs to the zips list
566 if (d_size + z_size + 1 > z_alloc) {
567 z_alloc = d_size + z_size + 1;
Doug Zongker28ce47c2011-10-28 10:33:05 -0700568 zips = (char**)realloc(zips, z_alloc * sizeof(char*));
Doug Zongker8674a722010-09-15 11:08:23 -0700569 }
570 memcpy(zips + z_size, dirs, d_size * sizeof(char*));
571 free(dirs);
572 z_size += d_size;
573 zips[z_size] = NULL;
574
575 int result;
576 int chosen_item = 0;
577 do {
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700578 chosen_item = get_menu_selection(headers, zips, 1, chosen_item, device);
Doug Zongker8674a722010-09-15 11:08:23 -0700579
580 char* item = zips[chosen_item];
581 int item_len = strlen(item);
582 if (chosen_item == 0) { // item 0 is always "../"
Michael Ward9d2629c2011-06-23 22:14:24 -0700583 // go up but continue browsing (if the caller is update_directory)
Doug Zongker8674a722010-09-15 11:08:23 -0700584 result = -1;
585 break;
586 } else if (item[item_len-1] == '/') {
587 // recurse down into a subdirectory
588 char new_path[PATH_MAX];
Doug Zongkerd4208f92010-09-20 12:16:13 -0700589 strlcpy(new_path, path, PATH_MAX);
590 strlcat(new_path, "/", PATH_MAX);
Doug Zongker8674a722010-09-15 11:08:23 -0700591 strlcat(new_path, item, PATH_MAX);
Doug Zongkerd4208f92010-09-20 12:16:13 -0700592 new_path[strlen(new_path)-1] = '\0'; // truncate the trailing '/'
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700593 result = update_directory(new_path, unmount_when_done, wipe_cache, device);
Doug Zongker8674a722010-09-15 11:08:23 -0700594 if (result >= 0) break;
595 } else {
596 // selected a zip file: attempt to install it, and return
597 // the status to the caller.
598 char new_path[PATH_MAX];
Doug Zongkerd4208f92010-09-20 12:16:13 -0700599 strlcpy(new_path, path, PATH_MAX);
Doug Zongkerc18eeb82010-09-21 16:49:26 -0700600 strlcat(new_path, "/", PATH_MAX);
Doug Zongker8674a722010-09-15 11:08:23 -0700601 strlcat(new_path, item, PATH_MAX);
602
Doug Zongker211aebc2011-10-28 15:13:10 -0700603 ui->Print("\n-- Install %s ...\n", path);
Doug Zongker8674a722010-09-15 11:08:23 -0700604 set_sdcard_update_bootloader_message();
Doug Zongkerd4208f92010-09-20 12:16:13 -0700605 char* copy = copy_sideloaded_package(new_path);
Michael Ward9d2629c2011-06-23 22:14:24 -0700606 if (unmount_when_done != NULL) {
607 ensure_path_unmounted(unmount_when_done);
608 }
Doug Zongkerd4208f92010-09-20 12:16:13 -0700609 if (copy) {
Doug Zongkerd0181b82011-10-19 10:51:12 -0700610 result = install_package(copy, wipe_cache, TEMPORARY_INSTALL_FILE);
Doug Zongkerd4208f92010-09-20 12:16:13 -0700611 free(copy);
612 } else {
613 result = INSTALL_ERROR;
614 }
Doug Zongker8674a722010-09-15 11:08:23 -0700615 break;
616 }
617 } while (true);
618
619 int i;
620 for (i = 0; i < z_size; ++i) free(zips[i]);
621 free(zips);
622 free(headers);
623
Michael Ward9d2629c2011-06-23 22:14:24 -0700624 if (unmount_when_done != NULL) {
625 ensure_path_unmounted(unmount_when_done);
626 }
Doug Zongker8674a722010-09-15 11:08:23 -0700627 return result;
628}
629
Doug Zongkerf93d8162009-09-22 15:16:02 -0700630static void
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700631wipe_data(int confirm, Device* device) {
Doug Zongkerf93d8162009-09-22 15:16:02 -0700632 if (confirm) {
Doug Zongker28ce47c2011-10-28 10:33:05 -0700633 static const char** title_headers = NULL;
Doug Zongkerddd6a282009-06-09 12:22:33 -0700634
Doug Zongkerf93d8162009-09-22 15:16:02 -0700635 if (title_headers == NULL) {
Doug Zongker28ce47c2011-10-28 10:33:05 -0700636 const char* headers[] = { "Confirm wipe of all user data?",
637 " THIS CAN NOT BE UNDONE.",
638 "",
639 NULL };
Doug Zongker8674a722010-09-15 11:08:23 -0700640 title_headers = prepend_title((const char**)headers);
Doug Zongkerf93d8162009-09-22 15:16:02 -0700641 }
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800642
Doug Zongker28ce47c2011-10-28 10:33:05 -0700643 const char* items[] = { " No",
644 " No",
645 " No",
646 " No",
647 " No",
648 " No",
649 " No",
650 " Yes -- delete all user data", // [7]
651 " No",
652 " No",
653 " No",
654 NULL };
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800655
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700656 int chosen_item = get_menu_selection(title_headers, items, 1, 0, device);
Doug Zongkerf93d8162009-09-22 15:16:02 -0700657 if (chosen_item != 7) {
658 return;
659 }
660 }
Doug Zongker1066d2c2009-04-01 13:57:40 -0700661
Doug Zongker211aebc2011-10-28 15:13:10 -0700662 ui->Print("\n-- Wiping data...\n");
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700663 device->WipeData();
Doug Zongkerd4208f92010-09-20 12:16:13 -0700664 erase_volume("/data");
665 erase_volume("/cache");
Doug Zongker211aebc2011-10-28 15:13:10 -0700666 ui->Print("Data wipe complete.\n");
Doug Zongkerf93d8162009-09-22 15:16:02 -0700667}
668
669static void
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700670prompt_and_wait(Device* device) {
671 const char* const* headers = prepend_title(device->GetMenuHeaders());
Doug Zongkerf93d8162009-09-22 15:16:02 -0700672
673 for (;;) {
674 finish_recovery(NULL);
Doug Zongker211aebc2011-10-28 15:13:10 -0700675 ui->SetProgressType(RecoveryUI::EMPTY);
Doug Zongkerf93d8162009-09-22 15:16:02 -0700676
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700677 int chosen_item = get_menu_selection(headers, device->GetMenuItems(), 0, 0, device);
Doug Zongkerf93d8162009-09-22 15:16:02 -0700678
679 // device-specific code may take some action here. It may
680 // return one of the core actions handled in the switch
681 // statement below.
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700682 chosen_item = device->InvokeMenuItem(chosen_item);
Doug Zongkerf93d8162009-09-22 15:16:02 -0700683
Michael Ward9d2629c2011-06-23 22:14:24 -0700684 int status;
Doug Zongkerd0181b82011-10-19 10:51:12 -0700685 int wipe_cache;
Doug Zongkerf93d8162009-09-22 15:16:02 -0700686 switch (chosen_item) {
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700687 case Device::REBOOT:
Doug Zongkerf93d8162009-09-22 15:16:02 -0700688 return;
689
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700690 case Device::WIPE_DATA:
691 wipe_data(ui->IsTextVisible(), device);
Doug Zongker211aebc2011-10-28 15:13:10 -0700692 if (!ui->IsTextVisible()) return;
Doug Zongkerf93d8162009-09-22 15:16:02 -0700693 break;
694
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700695 case Device::WIPE_CACHE:
Doug Zongker211aebc2011-10-28 15:13:10 -0700696 ui->Print("\n-- Wiping cache...\n");
Doug Zongkerd4208f92010-09-20 12:16:13 -0700697 erase_volume("/cache");
Doug Zongker211aebc2011-10-28 15:13:10 -0700698 ui->Print("Cache wipe complete.\n");
699 if (!ui->IsTextVisible()) return;
Doug Zongkerf93d8162009-09-22 15:16:02 -0700700 break;
701
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700702 case Device::APPLY_EXT:
Doug Zongkerd9428e32011-12-13 16:03:28 -0800703 // Some packages expect /cache to be mounted (eg,
704 // standard incremental packages expect to use /cache
705 // as scratch space).
706 ensure_path_mounted(CACHE_ROOT);
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700707 status = update_directory(SDCARD_ROOT, SDCARD_ROOT, &wipe_cache, device);
Doug Zongkerd0181b82011-10-19 10:51:12 -0700708 if (status == INSTALL_SUCCESS && wipe_cache) {
Doug Zongker211aebc2011-10-28 15:13:10 -0700709 ui->Print("\n-- Wiping cache (at package request)...\n");
Doug Zongkerd0181b82011-10-19 10:51:12 -0700710 if (erase_volume("/cache")) {
Doug Zongker211aebc2011-10-28 15:13:10 -0700711 ui->Print("Cache wipe failed.\n");
Doug Zongkerd0181b82011-10-19 10:51:12 -0700712 } else {
Doug Zongker211aebc2011-10-28 15:13:10 -0700713 ui->Print("Cache wipe complete.\n");
Doug Zongkerd0181b82011-10-19 10:51:12 -0700714 }
715 }
Doug Zongker8674a722010-09-15 11:08:23 -0700716 if (status >= 0) {
717 if (status != INSTALL_SUCCESS) {
Doug Zongker211aebc2011-10-28 15:13:10 -0700718 ui->SetBackground(RecoveryUI::ERROR);
719 ui->Print("Installation aborted.\n");
720 } else if (!ui->IsTextVisible()) {
Doug Zongker8674a722010-09-15 11:08:23 -0700721 return; // reboot if logs aren't visible
722 } else {
Doug Zongker211aebc2011-10-28 15:13:10 -0700723 ui->Print("\nInstall from sdcard complete.\n");
Doug Zongker8674a722010-09-15 11:08:23 -0700724 }
Doug Zongkerf93d8162009-09-22 15:16:02 -0700725 }
726 break;
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700727
728 case Device::APPLY_CACHE:
Michael Ward9d2629c2011-06-23 22:14:24 -0700729 // Don't unmount cache at the end of this.
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700730 status = update_directory(CACHE_ROOT, NULL, &wipe_cache, device);
Doug Zongkerd0181b82011-10-19 10:51:12 -0700731 if (status == INSTALL_SUCCESS && wipe_cache) {
Doug Zongker211aebc2011-10-28 15:13:10 -0700732 ui->Print("\n-- Wiping cache (at package request)...\n");
Doug Zongkerd0181b82011-10-19 10:51:12 -0700733 if (erase_volume("/cache")) {
Doug Zongker211aebc2011-10-28 15:13:10 -0700734 ui->Print("Cache wipe failed.\n");
Doug Zongkerd0181b82011-10-19 10:51:12 -0700735 } else {
Doug Zongker211aebc2011-10-28 15:13:10 -0700736 ui->Print("Cache wipe complete.\n");
Doug Zongkerd0181b82011-10-19 10:51:12 -0700737 }
738 }
Michael Ward9d2629c2011-06-23 22:14:24 -0700739 if (status >= 0) {
740 if (status != INSTALL_SUCCESS) {
Doug Zongker211aebc2011-10-28 15:13:10 -0700741 ui->SetBackground(RecoveryUI::ERROR);
742 ui->Print("Installation aborted.\n");
743 } else if (!ui->IsTextVisible()) {
Michael Ward9d2629c2011-06-23 22:14:24 -0700744 return; // reboot if logs aren't visible
745 } else {
Doug Zongker211aebc2011-10-28 15:13:10 -0700746 ui->Print("\nInstall from cache complete.\n");
Michael Ward9d2629c2011-06-23 22:14:24 -0700747 }
748 }
749 break;
Doug Zongker9270a202012-01-09 15:16:13 -0800750
751 case Device::APPLY_ADB_SIDELOAD:
752 ensure_path_mounted(CACHE_ROOT);
753 status = apply_from_adb(ui, &wipe_cache, TEMPORARY_INSTALL_FILE);
754 if (status >= 0) {
755 if (status != INSTALL_SUCCESS) {
756 ui->SetBackground(RecoveryUI::ERROR);
757 ui->Print("Installation aborted.\n");
758 } else if (!ui->IsTextVisible()) {
759 return; // reboot if logs aren't visible
760 } else {
761 ui->Print("\nInstall from ADB complete.\n");
762 }
763 }
764 break;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800765 }
766 }
767}
768
769static void
Oscar Montemayor05231562009-11-30 08:40:57 -0800770print_property(const char *key, const char *name, void *cookie) {
Doug Zongker56c51052010-07-01 09:18:44 -0700771 printf("%s=%s\n", key, name);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800772}
773
774int
Oscar Montemayor05231562009-11-30 08:40:57 -0800775main(int argc, char **argv) {
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800776 time_t start = time(NULL);
777
778 // If these fail, there's not really anywhere to complain...
779 freopen(TEMPORARY_LOG_FILE, "a", stdout); setbuf(stdout, NULL);
780 freopen(TEMPORARY_LOG_FILE, "a", stderr); setbuf(stderr, NULL);
Doug Zongker9270a202012-01-09 15:16:13 -0800781
782 // If this binary is started with the single argument "--adbd",
783 // instead of being the normal recovery binary, it turns into kind
784 // of a stripped-down version of adbd that only supports the
785 // 'sideload' command. Note this must be a real argument, not
786 // anything in the command file or bootloader control block; the
787 // only way recovery should be run with this argument is when it
788 // starts a copy of itself from the apply_from_adb() function.
789 if (argc == 2 && strcmp(argv[1], "--adbd") == 0) {
790 adb_main();
791 return 0;
792 }
793
Dees_Troy51127312012-09-08 13:08:49 -0400794 printf("Starting TWRP %s on %s", TW_VERSION_STR, ctime(&start));
Dees_Troy7d15c252012-09-05 20:47:21 -0400795 // Recovery needs to install world-readable files, so clear umask
796 // set by init
797 umask(0);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800798
Dees_Troy32c8eb82012-09-11 15:28:06 -0400799 Device* device = make_device();
800 ui = device->GetUI();
Doug Zongker211aebc2011-10-28 15:13:10 -0700801
Dees_Troy7d15c252012-09-05 20:47:21 -0400802 //ui->Init();
803 //ui->SetBackground(RecoveryUI::NONE);
Doug Zongkerd4208f92010-09-20 12:16:13 -0700804 load_volume_table();
Dees_Troy7d15c252012-09-05 20:47:21 -0400805
806 // Load default values to set DataManager constants and handle ifdefs
807 DataManager_LoadDefaults();
808 printf("Starting the UI...");
Dees_Troy51127312012-09-08 13:08:49 -0400809 gui_init();
Dees_Troy7d15c252012-09-05 20:47:21 -0400810 printf("=> Installing busybox into /sbin\n");
811 __system("/sbin/bbinstall.sh"); // Let's install busybox
812 printf("=> Linking mtab\n");
813 __system("ln -s /proc/mounts /etc/mtab"); // And link mtab for mke2fs
814 printf("=> Processing recovery.fstab\n");
Dees_Troy5bf43922012-09-07 16:07:55 -0400815 if (!PartitionManager.Process_Fstab("/etc/recovery.fstab", 1)) {
Dees_Troy7d15c252012-09-05 20:47:21 -0400816 LOGE("Failing out of recovery due to problem with recovery.fstab.\n");
817 //return -1;
818 }
819 // Load up all the resources
820 gui_loadResources();
821
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800822 get_args(&argc, &argv);
823
824 int previous_runs = 0;
825 const char *send_intent = NULL;
826 const char *update_package = NULL;
827 int wipe_data = 0, wipe_cache = 0;
Doug Zongkere5d5ac72012-04-12 11:01:22 -0700828 bool just_exit = false;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800829
830 int arg;
831 while ((arg = getopt_long(argc, argv, "", OPTIONS, NULL)) != -1) {
832 switch (arg) {
833 case 'p': previous_runs = atoi(optarg); break;
834 case 's': send_intent = optarg; break;
835 case 'u': update_package = optarg; break;
836 case 'w': wipe_data = wipe_cache = 1; break;
837 case 'c': wipe_cache = 1; break;
Doug Zongker211aebc2011-10-28 15:13:10 -0700838 case 't': ui->ShowText(true); break;
Doug Zongkere5d5ac72012-04-12 11:01:22 -0700839 case 'x': just_exit = true; break;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800840 case '?':
841 LOGE("Invalid command argument\n");
842 continue;
843 }
844 }
845
Stephen Smalley779701d2012-02-09 14:13:23 -0500846#ifdef HAVE_SELINUX
847 struct selinux_opt seopts[] = {
848 { SELABEL_OPT_PATH, "/file_contexts" }
849 };
850
851 sehandle = selabel_open(SELABEL_CTX_FILE, seopts, 1);
852
853 if (!sehandle) {
854 fprintf(stderr, "Warning: No file_contexts\n");
Kenny Root038818c2012-04-08 11:03:01 -0700855 ui->Print("Warning: No file_contexts\n");
Stephen Smalley779701d2012-02-09 14:13:23 -0500856 }
857#endif
858
Dees_Troy7d15c252012-09-05 20:47:21 -0400859 //device->StartRecovery();
Doug Zongkerefa1bab2010-02-01 15:59:12 -0800860
Doug Zongker56c51052010-07-01 09:18:44 -0700861 printf("Command:");
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800862 for (arg = 0; arg < argc; arg++) {
Doug Zongker56c51052010-07-01 09:18:44 -0700863 printf(" \"%s\"", argv[arg]);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800864 }
Doug Zongker9b125b02010-09-22 12:01:37 -0700865 printf("\n");
866
867 if (update_package) {
868 // For backwards compatibility on the cache partition only, if
869 // we're given an old 'root' path "CACHE:foo", change it to
870 // "/cache/foo".
871 if (strncmp(update_package, "CACHE:", 6) == 0) {
872 int len = strlen(update_package) + 10;
Doug Zongker28ce47c2011-10-28 10:33:05 -0700873 char* modified_path = (char*)malloc(len);
Doug Zongker9b125b02010-09-22 12:01:37 -0700874 strlcpy(modified_path, "/cache/", len);
875 strlcat(modified_path, update_package+6, len);
876 printf("(replacing path \"%s\" with \"%s\")\n",
877 update_package, modified_path);
878 update_package = modified_path;
879 }
880 }
881 printf("\n");
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800882
883 property_list(print_property, NULL);
Doug Zongker56c51052010-07-01 09:18:44 -0700884 printf("\n");
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800885
Dees_Troy7d15c252012-09-05 20:47:21 -0400886 // Check for and run startup script if script exists
887 check_and_run_script("/sbin/runatboot.sh", "boot");
888 check_and_run_script("/sbin/postrecoveryboot.sh", "boot");
889
890#ifdef TW_INCLUDE_INJECTTWRP
891 // Back up TWRP Ramdisk if needed:
892 LOGI("Backing up TWRP ramdisk...\n");
893 __system("injecttwrp --backup /tmp/backup_recovery_ramdisk.img");
894 LOGI("Backup of TWRP ramdisk done.\n");
895#endif
896
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800897 int status = INSTALL_SUCCESS;
898
Doug Zongker540d57f2011-01-18 13:36:58 -0800899 if (update_package != NULL) {
Dees_Troy7d15c252012-09-05 20:47:21 -0400900 gui_console_only();
Doug Zongkerd0181b82011-10-19 10:51:12 -0700901 status = install_package(update_package, &wipe_cache, TEMPORARY_INSTALL_FILE);
902 if (status == INSTALL_SUCCESS && wipe_cache) {
903 if (erase_volume("/cache")) {
904 LOGE("Cache wipe (requested by package) failed.");
905 }
906 }
Doug Zongker211aebc2011-10-28 15:13:10 -0700907 if (status != INSTALL_SUCCESS) ui->Print("Installation aborted.\n");
Doug Zongkerb128f542009-06-18 15:07:14 -0700908 } else if (wipe_data) {
Dees_Troy7d15c252012-09-05 20:47:21 -0400909 gui_console_only();
Dees_Troy5bf43922012-09-07 16:07:55 -0400910 if (PartitionManager.Factory_Reset()) status = INSTALL_ERROR;
Dees_Troy7d15c252012-09-05 20:47:21 -0400911 //if (device->WipeData()) status = INSTALL_ERROR;
912 //if (erase_volume("/data")) status = INSTALL_ERROR;
913 //if (wipe_cache && erase_volume("/cache")) status = INSTALL_ERROR;
Doug Zongker211aebc2011-10-28 15:13:10 -0700914 if (status != INSTALL_SUCCESS) ui->Print("Data wipe failed.\n");
Doug Zongkerb128f542009-06-18 15:07:14 -0700915 } else if (wipe_cache) {
Dees_Troy7d15c252012-09-05 20:47:21 -0400916 gui_console_only();
Doug Zongkerd4208f92010-09-20 12:16:13 -0700917 if (wipe_cache && erase_volume("/cache")) status = INSTALL_ERROR;
Doug Zongker211aebc2011-10-28 15:13:10 -0700918 if (status != INSTALL_SUCCESS) ui->Print("Cache wipe failed.\n");
Doug Zongkere5d5ac72012-04-12 11:01:22 -0700919 } else if (!just_exit) {
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800920 status = INSTALL_ERROR; // No command specified
921 }
922
Dees_Troy7d15c252012-09-05 20:47:21 -0400923 //if (status != INSTALL_SUCCESS) ui->SetBackground(RecoveryUI::ERROR);
924 if (status != INSTALL_SUCCESS /*|| ui->IsTextVisible()*/) {
925 DataManager_ReadSettingsFile();
926
927 // Update some of the main data
928 update_tz_environment_variables();
929 gui_start();
930 //prompt_and_wait(device);
Doug Zongker8674a722010-09-15 11:08:23 -0700931 }
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800932
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800933 // Otherwise, get ready to boot the main system...
934 finish_recovery(send_intent);
Doug Zongker211aebc2011-10-28 15:13:10 -0700935 ui->Print("Rebooting...\n");
Dees_Troy38bd7602012-09-14 13:33:53 -0400936#ifdef ANDROID_RB_RESTART
Ken Sumrall6e4472a2011-03-07 23:37:27 -0800937 android_reboot(ANDROID_RB_RESTART, 0, 0);
Dees_Troy38bd7602012-09-14 13:33:53 -0400938#else
939 reboot(RB_AUTOBOOT);
940#endif
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800941 return EXIT_SUCCESS;
942}