blob: ea085d15ddf1ec3a04c5ec2d891832fe50fc1009 [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" {
Dees_Troy7d15c252012-09-05 20:47:21 -040053#include "data.h"
54#include "gui/gui.h"
55}
56#include "partitions.hpp"
Dees_Troy51127312012-09-08 13:08:49 -040057#include "variables.h"
Dees_Troy812660f2012-09-20 09:55:17 -040058#include "openrecoveryscript.hpp"
Dees_Troya58bead2012-09-27 09:49:29 -040059#include "twrp-functions.hpp"
Dees_Troy7d15c252012-09-05 20:47:21 -040060
Dees_Troy5bf43922012-09-07 16:07:55 -040061TWPartitionManager PartitionManager;
Dees_Troy7d15c252012-09-05 20:47:21 -040062
Stephen Smalley779701d2012-02-09 14:13:23 -050063struct selabel_handle *sehandle;
64
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080065static const struct option OPTIONS[] = {
66 { "send_intent", required_argument, NULL, 's' },
67 { "update_package", required_argument, NULL, 'u' },
68 { "wipe_data", no_argument, NULL, 'w' },
69 { "wipe_cache", no_argument, NULL, 'c' },
Doug Zongker4bc98062010-09-03 11:00:13 -070070 { "show_text", no_argument, NULL, 't' },
Doug Zongkere5d5ac72012-04-12 11:01:22 -070071 { "just_exit", no_argument, NULL, 'x' },
Dees_Troy83a3b122012-10-01 14:16:43 -040072 { "nandroid", no_argument, NULL, 'n' },
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 Zongkerd4208f92010-09-20 12:16:13 -070076static const char *COMMAND_FILE = "/cache/recovery/command";
77static const char *INTENT_FILE = "/cache/recovery/intent";
78static const char *LOG_FILE = "/cache/recovery/log";
Doug Zongker2c3539e2010-09-29 13:21:30 -070079static const char *LAST_LOG_FILE = "/cache/recovery/last_log";
Doug Zongkerd0181b82011-10-19 10:51:12 -070080static const char *LAST_INSTALL_FILE = "/cache/recovery/last_install";
Michael Ward9d2629c2011-06-23 22:14:24 -070081static const char *CACHE_ROOT = "/cache";
Doug Zongkerd4208f92010-09-20 12:16:13 -070082static const char *SDCARD_ROOT = "/sdcard";
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080083static const char *TEMPORARY_LOG_FILE = "/tmp/recovery.log";
Doug Zongkerd0181b82011-10-19 10:51:12 -070084static const char *TEMPORARY_INSTALL_FILE = "/tmp/last_install";
Doug Zongkerd4208f92010-09-20 12:16:13 -070085static const char *SIDELOAD_TEMP_DIR = "/tmp/sideload";
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080086
Doug Zongker211aebc2011-10-28 15:13:10 -070087RecoveryUI* ui = NULL;
88
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080089/*
90 * The recovery tool communicates with the main system through /cache files.
91 * /cache/recovery/command - INPUT - command line for tool, one arg per line
92 * /cache/recovery/log - OUTPUT - combined log file from recovery run(s)
93 * /cache/recovery/intent - OUTPUT - intent that was passed in
94 *
95 * The arguments which may be supplied in the recovery.command file:
96 * --send_intent=anystring - write the text out to recovery.intent
Doug Zongkerd4208f92010-09-20 12:16:13 -070097 * --update_package=path - verify install an OTA package file
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -080098 * --wipe_data - erase user data (and cache), then reboot
99 * --wipe_cache - wipe cache (but not user data), then reboot
Oscar Montemayor05231562009-11-30 08:40:57 -0800100 * --set_encrypted_filesystem=on|off - enables / diasables encrypted fs
Doug Zongkere5d5ac72012-04-12 11:01:22 -0700101 * --just_exit - do nothing; exit and reboot
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800102 *
103 * After completing, we remove /cache/recovery/command and reboot.
104 * Arguments may also be supplied in the bootloader control block (BCB).
105 * These important scenarios must be safely restartable at any point:
106 *
107 * FACTORY RESET
108 * 1. user selects "factory reset"
109 * 2. main system writes "--wipe_data" to /cache/recovery/command
110 * 3. main system reboots into recovery
111 * 4. get_args() writes BCB with "boot-recovery" and "--wipe_data"
112 * -- after this, rebooting will restart the erase --
Doug Zongkerd4208f92010-09-20 12:16:13 -0700113 * 5. erase_volume() reformats /data
114 * 6. erase_volume() reformats /cache
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800115 * 7. finish_recovery() erases BCB
116 * -- after this, rebooting will restart the main system --
117 * 8. main() calls reboot() to boot main system
118 *
119 * OTA INSTALL
120 * 1. main system downloads OTA package to /cache/some-filename.zip
Doug Zongker9b125b02010-09-22 12:01:37 -0700121 * 2. main system writes "--update_package=/cache/some-filename.zip"
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800122 * 3. main system reboots into recovery
123 * 4. get_args() writes BCB with "boot-recovery" and "--update_package=..."
124 * -- after this, rebooting will attempt to reinstall the update --
125 * 5. install_package() attempts to install the update
126 * NOTE: the package install must itself be restartable from any point
127 * 6. finish_recovery() erases BCB
128 * -- after this, rebooting will (try to) restart the main system --
129 * 7. ** if install failed **
130 * 7a. prompt_and_wait() shows an error icon and waits for the user
131 * 7b; the user reboots (pulling the battery, etc) into the main system
132 * 8. main() calls maybe_install_firmware_update()
133 * ** if the update contained radio/hboot firmware **:
134 * 8a. m_i_f_u() writes BCB with "boot-recovery" and "--wipe_cache"
135 * -- after this, rebooting will reformat cache & restart main system --
136 * 8b. m_i_f_u() writes firmware image into raw cache partition
137 * 8c. m_i_f_u() writes BCB with "update-radio/hboot" and "--wipe_cache"
138 * -- after this, rebooting will attempt to reinstall firmware --
139 * 8d. bootloader tries to flash firmware
140 * 8e. bootloader writes BCB with "boot-recovery" (keeping "--wipe_cache")
141 * -- after this, rebooting will reformat cache & restart main system --
Doug Zongkerd4208f92010-09-20 12:16:13 -0700142 * 8f. erase_volume() reformats /cache
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800143 * 8g. finish_recovery() erases BCB
144 * -- after this, rebooting will (try to) restart the main system --
145 * 9. main() calls reboot() to boot main system
146 */
147
148static const int MAX_ARG_LENGTH = 4096;
149static const int MAX_ARGS = 100;
150
Doug Zongkerd4208f92010-09-20 12:16:13 -0700151// open a given path, mounting partitions as necessary
Doug Zongker469243e2011-04-12 09:28:10 -0700152FILE*
Doug Zongkerd4208f92010-09-20 12:16:13 -0700153fopen_path(const char *path, const char *mode) {
154 if (ensure_path_mounted(path) != 0) {
155 LOGE("Can't mount %s\n", path);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800156 return NULL;
157 }
158
159 // When writing, try to create the containing directory, if necessary.
160 // Use generous permissions, the system (init.rc) will reset them.
Stephen Smalley779701d2012-02-09 14:13:23 -0500161 if (strchr("wa", mode[0])) dirCreateHierarchy(path, 0777, NULL, 1, sehandle);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800162
163 FILE *fp = fopen(path, mode);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800164 return fp;
165}
166
167// close a file, log an error if the error indicator is set
168static void
169check_and_fclose(FILE *fp, const char *name) {
170 fflush(fp);
171 if (ferror(fp)) LOGE("Error in %s\n(%s)\n", name, strerror(errno));
172 fclose(fp);
173}
174
175// command line args come from, in decreasing precedence:
176// - the actual command line
177// - the bootloader control block (one per line, after "recovery")
178// - the contents of COMMAND_FILE (one per line)
179static void
180get_args(int *argc, char ***argv) {
181 struct bootloader_message boot;
182 memset(&boot, 0, sizeof(boot));
183 get_bootloader_message(&boot); // this may fail, leaving a zeroed structure
184
185 if (boot.command[0] != 0 && boot.command[0] != 255) {
186 LOGI("Boot command: %.*s\n", sizeof(boot.command), boot.command);
187 }
188
189 if (boot.status[0] != 0 && boot.status[0] != 255) {
190 LOGI("Boot status: %.*s\n", sizeof(boot.status), boot.status);
191 }
192
193 // --- if arguments weren't supplied, look in the bootloader control block
194 if (*argc <= 1) {
195 boot.recovery[sizeof(boot.recovery) - 1] = '\0'; // Ensure termination
196 const char *arg = strtok(boot.recovery, "\n");
197 if (arg != NULL && !strcmp(arg, "recovery")) {
198 *argv = (char **) malloc(sizeof(char *) * MAX_ARGS);
199 (*argv)[0] = strdup(arg);
200 for (*argc = 1; *argc < MAX_ARGS; ++*argc) {
201 if ((arg = strtok(NULL, "\n")) == NULL) break;
202 (*argv)[*argc] = strdup(arg);
203 }
204 LOGI("Got arguments from boot message\n");
205 } else if (boot.recovery[0] != 0 && boot.recovery[0] != 255) {
206 LOGE("Bad boot message\n\"%.20s\"\n", boot.recovery);
207 }
208 }
209
210 // --- if that doesn't work, try the command file
211 if (*argc <= 1) {
Doug Zongkerd4208f92010-09-20 12:16:13 -0700212 FILE *fp = fopen_path(COMMAND_FILE, "r");
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800213 if (fp != NULL) {
214 char *argv0 = (*argv)[0];
215 *argv = (char **) malloc(sizeof(char *) * MAX_ARGS);
216 (*argv)[0] = argv0; // use the same program name
217
218 char buf[MAX_ARG_LENGTH];
219 for (*argc = 1; *argc < MAX_ARGS; ++*argc) {
220 if (!fgets(buf, sizeof(buf), fp)) break;
221 (*argv)[*argc] = strdup(strtok(buf, "\r\n")); // Strip newline.
222 }
223
224 check_and_fclose(fp, COMMAND_FILE);
225 LOGI("Got arguments from %s\n", COMMAND_FILE);
226 }
227 }
228
229 // --> write the arguments we have back into the bootloader control block
230 // always boot into recovery after this (until finish_recovery() is called)
231 strlcpy(boot.command, "boot-recovery", sizeof(boot.command));
232 strlcpy(boot.recovery, "recovery\n", sizeof(boot.recovery));
233 int i;
234 for (i = 1; i < *argc; ++i) {
235 strlcat(boot.recovery, (*argv)[i], sizeof(boot.recovery));
236 strlcat(boot.recovery, "\n", sizeof(boot.recovery));
237 }
238 set_bootloader_message(&boot);
239}
240
Doug Zongker34c98df2009-08-18 12:05:45 -0700241static void
Oscar Montemayor05231562009-11-30 08:40:57 -0800242set_sdcard_update_bootloader_message() {
Doug Zongker34c98df2009-08-18 12:05:45 -0700243 struct bootloader_message boot;
244 memset(&boot, 0, sizeof(boot));
245 strlcpy(boot.command, "boot-recovery", sizeof(boot.command));
246 strlcpy(boot.recovery, "recovery\n", sizeof(boot.recovery));
247 set_bootloader_message(&boot);
248}
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800249
Doug Zongker2c3539e2010-09-29 13:21:30 -0700250// How much of the temp log we have copied to the copy in cache.
Dees_Troy7d15c252012-09-05 20:47:21 -0400251//static long tmplog_offset = 0;
Doug Zongker2c3539e2010-09-29 13:21:30 -0700252
253static void
Doug Zongkerd0181b82011-10-19 10:51:12 -0700254copy_log_file(const char* source, const char* destination, int append) {
Doug Zongker2c3539e2010-09-29 13:21:30 -0700255 FILE *log = fopen_path(destination, append ? "a" : "w");
256 if (log == NULL) {
257 LOGE("Can't open %s\n", destination);
258 } else {
Doug Zongkerd0181b82011-10-19 10:51:12 -0700259 FILE *tmplog = fopen(source, "r");
260 if (tmplog != NULL) {
Doug Zongker2c3539e2010-09-29 13:21:30 -0700261 if (append) {
262 fseek(tmplog, tmplog_offset, SEEK_SET); // Since last write
263 }
264 char buf[4096];
265 while (fgets(buf, sizeof(buf), tmplog)) fputs(buf, log);
266 if (append) {
267 tmplog_offset = ftell(tmplog);
268 }
Doug Zongkerd0181b82011-10-19 10:51:12 -0700269 check_and_fclose(tmplog, source);
Doug Zongker2c3539e2010-09-29 13:21:30 -0700270 }
271 check_and_fclose(log, destination);
272 }
273}
274
275
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800276// clear the recovery command and prepare to boot a (hopefully working) system,
277// copy our log file to cache as well (for the system to read), and
278// record any intent we were asked to communicate back to the system.
279// this function is idempotent: call it as many times as you like.
280static void
Oscar Montemayor05231562009-11-30 08:40:57 -0800281finish_recovery(const char *send_intent) {
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800282 // By this point, we're ready to return to the main system...
283 if (send_intent != NULL) {
Doug Zongkerd4208f92010-09-20 12:16:13 -0700284 FILE *fp = fopen_path(INTENT_FILE, "w");
Jay Freeman (saurik)619ec2f2008-11-17 01:56:05 +0000285 if (fp == NULL) {
286 LOGE("Can't open %s\n", INTENT_FILE);
287 } else {
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800288 fputs(send_intent, fp);
289 check_and_fclose(fp, INTENT_FILE);
290 }
291 }
292
293 // Copy logs to cache so the system can find out what happened.
Doug Zongkerd0181b82011-10-19 10:51:12 -0700294 copy_log_file(TEMPORARY_LOG_FILE, LOG_FILE, true);
295 copy_log_file(TEMPORARY_LOG_FILE, LAST_LOG_FILE, false);
296 copy_log_file(TEMPORARY_INSTALL_FILE, LAST_INSTALL_FILE, false);
297 chmod(LOG_FILE, 0600);
298 chown(LOG_FILE, 1000, 1000); // system user
Doug Zongker2c3539e2010-09-29 13:21:30 -0700299 chmod(LAST_LOG_FILE, 0640);
Doug Zongkerd0181b82011-10-19 10:51:12 -0700300 chmod(LAST_INSTALL_FILE, 0644);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800301
Doug Zongkere5d5ac72012-04-12 11:01:22 -0700302 // Reset to normal system boot so recovery won't cycle indefinitely.
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800303 struct bootloader_message boot;
304 memset(&boot, 0, sizeof(boot));
305 set_bootloader_message(&boot);
306
307 // Remove the command file, so recovery won't repeat indefinitely.
Doug Zongkerd4208f92010-09-20 12:16:13 -0700308 if (ensure_path_mounted(COMMAND_FILE) != 0 ||
309 (unlink(COMMAND_FILE) && errno != ENOENT)) {
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800310 LOGW("Can't unlink %s\n", COMMAND_FILE);
311 }
312
Doug Zongkerd0181b82011-10-19 10:51:12 -0700313 ensure_path_unmounted(CACHE_ROOT);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800314 sync(); // For good measure.
315}
316
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800317static int
Doug Zongkerd4208f92010-09-20 12:16:13 -0700318erase_volume(const char *volume) {
Doug Zongker211aebc2011-10-28 15:13:10 -0700319 ui->SetBackground(RecoveryUI::INSTALLING);
320 ui->SetProgressType(RecoveryUI::INDETERMINATE);
321 ui->Print("Formatting %s...\n", volume);
Doug Zongker2c3539e2010-09-29 13:21:30 -0700322
Doug Zongkerd0181b82011-10-19 10:51:12 -0700323 ensure_path_unmounted(volume);
324
Doug Zongker2c3539e2010-09-29 13:21:30 -0700325 if (strcmp(volume, "/cache") == 0) {
326 // Any part of the log we'd copied to cache is now gone.
327 // Reset the pointer so we copy from the beginning of the temp
328 // log.
329 tmplog_offset = 0;
330 }
331
Doug Zongkerd4208f92010-09-20 12:16:13 -0700332 return format_volume(volume);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800333}
334
Doug Zongker23ceeea2010-07-08 17:27:55 -0700335static char*
Doug Zongkerd4208f92010-09-20 12:16:13 -0700336copy_sideloaded_package(const char* original_path) {
337 if (ensure_path_mounted(original_path) != 0) {
338 LOGE("Can't mount %s\n", original_path);
Doug Zongker23ceeea2010-07-08 17:27:55 -0700339 return NULL;
340 }
341
Doug Zongkerd4208f92010-09-20 12:16:13 -0700342 if (ensure_path_mounted(SIDELOAD_TEMP_DIR) != 0) {
Doug Zongker23ceeea2010-07-08 17:27:55 -0700343 LOGE("Can't mount %s\n", SIDELOAD_TEMP_DIR);
344 return NULL;
345 }
346
Doug Zongkerd4208f92010-09-20 12:16:13 -0700347 if (mkdir(SIDELOAD_TEMP_DIR, 0700) != 0) {
Doug Zongker23ceeea2010-07-08 17:27:55 -0700348 if (errno != EEXIST) {
349 LOGE("Can't mkdir %s (%s)\n", SIDELOAD_TEMP_DIR, strerror(errno));
350 return NULL;
351 }
352 }
353
Doug Zongkerd4208f92010-09-20 12:16:13 -0700354 // verify that SIDELOAD_TEMP_DIR is exactly what we expect: a
355 // directory, owned by root, readable and writable only by root.
Doug Zongker23ceeea2010-07-08 17:27:55 -0700356 struct stat st;
Doug Zongkerd4208f92010-09-20 12:16:13 -0700357 if (stat(SIDELOAD_TEMP_DIR, &st) != 0) {
358 LOGE("failed to stat %s (%s)\n", SIDELOAD_TEMP_DIR, strerror(errno));
Doug Zongker23ceeea2010-07-08 17:27:55 -0700359 return NULL;
360 }
361 if (!S_ISDIR(st.st_mode)) {
Doug Zongkerd4208f92010-09-20 12:16:13 -0700362 LOGE("%s isn't a directory\n", SIDELOAD_TEMP_DIR);
Doug Zongker23ceeea2010-07-08 17:27:55 -0700363 return NULL;
364 }
365 if ((st.st_mode & 0777) != 0700) {
Doug Zongkerd4208f92010-09-20 12:16:13 -0700366 LOGE("%s has perms %o\n", SIDELOAD_TEMP_DIR, st.st_mode);
Doug Zongker23ceeea2010-07-08 17:27:55 -0700367 return NULL;
368 }
369 if (st.st_uid != 0) {
Doug Zongkerd4208f92010-09-20 12:16:13 -0700370 LOGE("%s owned by %lu; not root\n", SIDELOAD_TEMP_DIR, st.st_uid);
Doug Zongker23ceeea2010-07-08 17:27:55 -0700371 return NULL;
372 }
373
Doug Zongkerd4208f92010-09-20 12:16:13 -0700374 char copy_path[PATH_MAX];
375 strcpy(copy_path, SIDELOAD_TEMP_DIR);
Doug Zongker23ceeea2010-07-08 17:27:55 -0700376 strcat(copy_path, "/package.zip");
377
Doug Zongker28ce47c2011-10-28 10:33:05 -0700378 char* buffer = (char*)malloc(BUFSIZ);
Doug Zongker23ceeea2010-07-08 17:27:55 -0700379 if (buffer == NULL) {
380 LOGE("Failed to allocate buffer\n");
381 return NULL;
382 }
383
384 size_t read;
385 FILE* fin = fopen(original_path, "rb");
386 if (fin == NULL) {
387 LOGE("Failed to open %s (%s)\n", original_path, strerror(errno));
388 return NULL;
389 }
390 FILE* fout = fopen(copy_path, "wb");
391 if (fout == NULL) {
392 LOGE("Failed to open %s (%s)\n", copy_path, strerror(errno));
393 return NULL;
394 }
395
396 while ((read = fread(buffer, 1, BUFSIZ, fin)) > 0) {
397 if (fwrite(buffer, 1, read, fout) != read) {
398 LOGE("Short write of %s (%s)\n", copy_path, strerror(errno));
399 return NULL;
400 }
401 }
402
403 free(buffer);
404
405 if (fclose(fout) != 0) {
406 LOGE("Failed to close %s (%s)\n", copy_path, strerror(errno));
407 return NULL;
408 }
409
410 if (fclose(fin) != 0) {
411 LOGE("Failed to close %s (%s)\n", original_path, strerror(errno));
412 return NULL;
413 }
414
415 // "adb push" is happy to overwrite read-only files when it's
416 // running as root, but we'll try anyway.
417 if (chmod(copy_path, 0400) != 0) {
418 LOGE("Failed to chmod %s (%s)\n", copy_path, strerror(errno));
419 return NULL;
420 }
421
Doug Zongkerd4208f92010-09-20 12:16:13 -0700422 return strdup(copy_path);
Doug Zongker23ceeea2010-07-08 17:27:55 -0700423}
424
Doug Zongker28ce47c2011-10-28 10:33:05 -0700425static const char**
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700426prepend_title(const char* const* headers) {
Doug Zongker28ce47c2011-10-28 10:33:05 -0700427 const char* title[] = { "Android system recovery <"
428 EXPAND(RECOVERY_API_VERSION) "e>",
429 "",
430 NULL };
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800431
Doug Zongkerd6837852009-06-17 22:07:13 -0700432 // count the number of lines in our title, plus the
Doug Zongkerf93d8162009-09-22 15:16:02 -0700433 // caller-provided headers.
Doug Zongkerd6837852009-06-17 22:07:13 -0700434 int count = 0;
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700435 const char* const* p;
Doug Zongkerd6837852009-06-17 22:07:13 -0700436 for (p = title; *p; ++p, ++count);
Doug Zongkerf93d8162009-09-22 15:16:02 -0700437 for (p = headers; *p; ++p, ++count);
Doug Zongkerd6837852009-06-17 22:07:13 -0700438
Doug Zongker28ce47c2011-10-28 10:33:05 -0700439 const char** new_headers = (const char**)malloc((count+1) * sizeof(char*));
440 const char** h = new_headers;
Doug Zongkerd6837852009-06-17 22:07:13 -0700441 for (p = title; *p; ++p, ++h) *h = *p;
Doug Zongkerf93d8162009-09-22 15:16:02 -0700442 for (p = headers; *p; ++p, ++h) *h = *p;
Doug Zongkerd6837852009-06-17 22:07:13 -0700443 *h = NULL;
444
Doug Zongkerf93d8162009-09-22 15:16:02 -0700445 return new_headers;
446}
447
448static int
Doug Zongker28ce47c2011-10-28 10:33:05 -0700449get_menu_selection(const char* const * headers, const char* const * items,
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700450 int menu_only, int initial_selection, Device* device) {
Doug Zongkerf93d8162009-09-22 15:16:02 -0700451 // throw away keys pressed previously, so user doesn't
452 // accidentally trigger menu items.
Doug Zongker211aebc2011-10-28 15:13:10 -0700453 ui->FlushKeys();
Doug Zongkerf93d8162009-09-22 15:16:02 -0700454
Doug Zongker211aebc2011-10-28 15:13:10 -0700455 ui->StartMenu(headers, items, initial_selection);
Doug Zongker8674a722010-09-15 11:08:23 -0700456 int selected = initial_selection;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800457 int chosen_item = -1;
458
Doug Zongkerf93d8162009-09-22 15:16:02 -0700459 while (chosen_item < 0) {
Doug Zongker211aebc2011-10-28 15:13:10 -0700460 int key = ui->WaitKey();
461 int visible = ui->IsTextVisible();
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800462
Doug Zongker5cae4452011-01-25 13:15:30 -0800463 if (key == -1) { // ui_wait_key() timed out
Doug Zongker211aebc2011-10-28 15:13:10 -0700464 if (ui->WasTextEverVisible()) {
Doug Zongker5cae4452011-01-25 13:15:30 -0800465 continue;
466 } else {
467 LOGI("timed out waiting for key input; rebooting.\n");
Doug Zongker211aebc2011-10-28 15:13:10 -0700468 ui->EndMenu();
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700469 return 0; // XXX fixme
Doug Zongker5cae4452011-01-25 13:15:30 -0800470 }
471 }
472
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700473 int action = device->HandleMenuKey(key, visible);
Doug Zongkerddd6a282009-06-09 12:22:33 -0700474
475 if (action < 0) {
476 switch (action) {
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700477 case Device::kHighlightUp:
Doug Zongkerddd6a282009-06-09 12:22:33 -0700478 --selected;
Doug Zongker211aebc2011-10-28 15:13:10 -0700479 selected = ui->SelectMenu(selected);
Doug Zongkerddd6a282009-06-09 12:22:33 -0700480 break;
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700481 case Device::kHighlightDown:
Doug Zongkerddd6a282009-06-09 12:22:33 -0700482 ++selected;
Doug Zongker211aebc2011-10-28 15:13:10 -0700483 selected = ui->SelectMenu(selected);
Doug Zongkerddd6a282009-06-09 12:22:33 -0700484 break;
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700485 case Device::kInvokeItem:
Doug Zongkerddd6a282009-06-09 12:22:33 -0700486 chosen_item = selected;
487 break;
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700488 case Device::kNoAction:
Doug Zongkerddd6a282009-06-09 12:22:33 -0700489 break;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800490 }
Doug Zongkerf93d8162009-09-22 15:16:02 -0700491 } else if (!menu_only) {
Doug Zongkerddd6a282009-06-09 12:22:33 -0700492 chosen_item = action;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800493 }
Doug Zongkerf93d8162009-09-22 15:16:02 -0700494 }
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800495
Doug Zongker211aebc2011-10-28 15:13:10 -0700496 ui->EndMenu();
Doug Zongkerf93d8162009-09-22 15:16:02 -0700497 return chosen_item;
498}
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800499
Doug Zongker8674a722010-09-15 11:08:23 -0700500static int compare_string(const void* a, const void* b) {
501 return strcmp(*(const char**)a, *(const char**)b);
502}
503
504static int
Doug Zongkerd0181b82011-10-19 10:51:12 -0700505update_directory(const char* path, const char* unmount_when_done,
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700506 int* wipe_cache, Device* device) {
Michael Ward9d2629c2011-06-23 22:14:24 -0700507 ensure_path_mounted(path);
Doug Zongkerc18eeb82010-09-21 16:49:26 -0700508
Doug Zongker8674a722010-09-15 11:08:23 -0700509 const char* MENU_HEADERS[] = { "Choose a package to install:",
Doug Zongkerd4208f92010-09-20 12:16:13 -0700510 path,
Doug Zongker8674a722010-09-15 11:08:23 -0700511 "",
512 NULL };
513 DIR* d;
514 struct dirent* de;
Doug Zongkerd4208f92010-09-20 12:16:13 -0700515 d = opendir(path);
Doug Zongker8674a722010-09-15 11:08:23 -0700516 if (d == NULL) {
517 LOGE("error opening %s: %s\n", path, strerror(errno));
Michael Ward9d2629c2011-06-23 22:14:24 -0700518 if (unmount_when_done != NULL) {
519 ensure_path_unmounted(unmount_when_done);
520 }
Doug Zongker8674a722010-09-15 11:08:23 -0700521 return 0;
522 }
523
Doug Zongker28ce47c2011-10-28 10:33:05 -0700524 const char** headers = prepend_title(MENU_HEADERS);
Doug Zongker8674a722010-09-15 11:08:23 -0700525
526 int d_size = 0;
527 int d_alloc = 10;
Doug Zongker28ce47c2011-10-28 10:33:05 -0700528 char** dirs = (char**)malloc(d_alloc * sizeof(char*));
Doug Zongker8674a722010-09-15 11:08:23 -0700529 int z_size = 1;
530 int z_alloc = 10;
Doug Zongker28ce47c2011-10-28 10:33:05 -0700531 char** zips = (char**)malloc(z_alloc * sizeof(char*));
Doug Zongker8674a722010-09-15 11:08:23 -0700532 zips[0] = strdup("../");
533
534 while ((de = readdir(d)) != NULL) {
535 int name_len = strlen(de->d_name);
536
537 if (de->d_type == DT_DIR) {
538 // skip "." and ".." entries
539 if (name_len == 1 && de->d_name[0] == '.') continue;
540 if (name_len == 2 && de->d_name[0] == '.' &&
541 de->d_name[1] == '.') continue;
542
543 if (d_size >= d_alloc) {
544 d_alloc *= 2;
Doug Zongker28ce47c2011-10-28 10:33:05 -0700545 dirs = (char**)realloc(dirs, d_alloc * sizeof(char*));
Doug Zongker8674a722010-09-15 11:08:23 -0700546 }
Doug Zongker28ce47c2011-10-28 10:33:05 -0700547 dirs[d_size] = (char*)malloc(name_len + 2);
Doug Zongker8674a722010-09-15 11:08:23 -0700548 strcpy(dirs[d_size], de->d_name);
549 dirs[d_size][name_len] = '/';
550 dirs[d_size][name_len+1] = '\0';
551 ++d_size;
552 } else if (de->d_type == DT_REG &&
553 name_len >= 4 &&
554 strncasecmp(de->d_name + (name_len-4), ".zip", 4) == 0) {
555 if (z_size >= z_alloc) {
556 z_alloc *= 2;
Doug Zongker28ce47c2011-10-28 10:33:05 -0700557 zips = (char**)realloc(zips, z_alloc * sizeof(char*));
Doug Zongker8674a722010-09-15 11:08:23 -0700558 }
559 zips[z_size++] = strdup(de->d_name);
560 }
561 }
562 closedir(d);
563
564 qsort(dirs, d_size, sizeof(char*), compare_string);
565 qsort(zips, z_size, sizeof(char*), compare_string);
566
567 // append dirs to the zips list
568 if (d_size + z_size + 1 > z_alloc) {
569 z_alloc = d_size + z_size + 1;
Doug Zongker28ce47c2011-10-28 10:33:05 -0700570 zips = (char**)realloc(zips, z_alloc * sizeof(char*));
Doug Zongker8674a722010-09-15 11:08:23 -0700571 }
572 memcpy(zips + z_size, dirs, d_size * sizeof(char*));
573 free(dirs);
574 z_size += d_size;
575 zips[z_size] = NULL;
576
577 int result;
578 int chosen_item = 0;
579 do {
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700580 chosen_item = get_menu_selection(headers, zips, 1, chosen_item, device);
Doug Zongker8674a722010-09-15 11:08:23 -0700581
582 char* item = zips[chosen_item];
583 int item_len = strlen(item);
584 if (chosen_item == 0) { // item 0 is always "../"
Michael Ward9d2629c2011-06-23 22:14:24 -0700585 // go up but continue browsing (if the caller is update_directory)
Doug Zongker8674a722010-09-15 11:08:23 -0700586 result = -1;
587 break;
588 } else if (item[item_len-1] == '/') {
589 // recurse down into a subdirectory
590 char new_path[PATH_MAX];
Doug Zongkerd4208f92010-09-20 12:16:13 -0700591 strlcpy(new_path, path, PATH_MAX);
592 strlcat(new_path, "/", PATH_MAX);
Doug Zongker8674a722010-09-15 11:08:23 -0700593 strlcat(new_path, item, PATH_MAX);
Doug Zongkerd4208f92010-09-20 12:16:13 -0700594 new_path[strlen(new_path)-1] = '\0'; // truncate the trailing '/'
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700595 result = update_directory(new_path, unmount_when_done, wipe_cache, device);
Doug Zongker8674a722010-09-15 11:08:23 -0700596 if (result >= 0) break;
597 } else {
598 // selected a zip file: attempt to install it, and return
599 // the status to the caller.
600 char new_path[PATH_MAX];
Doug Zongkerd4208f92010-09-20 12:16:13 -0700601 strlcpy(new_path, path, PATH_MAX);
Doug Zongkerc18eeb82010-09-21 16:49:26 -0700602 strlcat(new_path, "/", PATH_MAX);
Doug Zongker8674a722010-09-15 11:08:23 -0700603 strlcat(new_path, item, PATH_MAX);
604
Doug Zongker211aebc2011-10-28 15:13:10 -0700605 ui->Print("\n-- Install %s ...\n", path);
Doug Zongker8674a722010-09-15 11:08:23 -0700606 set_sdcard_update_bootloader_message();
Doug Zongkerd4208f92010-09-20 12:16:13 -0700607 char* copy = copy_sideloaded_package(new_path);
Michael Ward9d2629c2011-06-23 22:14:24 -0700608 if (unmount_when_done != NULL) {
609 ensure_path_unmounted(unmount_when_done);
610 }
Doug Zongkerd4208f92010-09-20 12:16:13 -0700611 if (copy) {
Doug Zongkerd0181b82011-10-19 10:51:12 -0700612 result = install_package(copy, wipe_cache, TEMPORARY_INSTALL_FILE);
Doug Zongkerd4208f92010-09-20 12:16:13 -0700613 free(copy);
614 } else {
615 result = INSTALL_ERROR;
616 }
Doug Zongker8674a722010-09-15 11:08:23 -0700617 break;
618 }
619 } while (true);
620
621 int i;
622 for (i = 0; i < z_size; ++i) free(zips[i]);
623 free(zips);
624 free(headers);
625
Michael Ward9d2629c2011-06-23 22:14:24 -0700626 if (unmount_when_done != NULL) {
627 ensure_path_unmounted(unmount_when_done);
628 }
Doug Zongker8674a722010-09-15 11:08:23 -0700629 return result;
630}
631
Doug Zongkerf93d8162009-09-22 15:16:02 -0700632static void
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700633wipe_data(int confirm, Device* device) {
Doug Zongkerf93d8162009-09-22 15:16:02 -0700634 if (confirm) {
Doug Zongker28ce47c2011-10-28 10:33:05 -0700635 static const char** title_headers = NULL;
Doug Zongkerddd6a282009-06-09 12:22:33 -0700636
Doug Zongkerf93d8162009-09-22 15:16:02 -0700637 if (title_headers == NULL) {
Doug Zongker28ce47c2011-10-28 10:33:05 -0700638 const char* headers[] = { "Confirm wipe of all user data?",
639 " THIS CAN NOT BE UNDONE.",
640 "",
641 NULL };
Doug Zongker8674a722010-09-15 11:08:23 -0700642 title_headers = prepend_title((const char**)headers);
Doug Zongkerf93d8162009-09-22 15:16:02 -0700643 }
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800644
Doug Zongker28ce47c2011-10-28 10:33:05 -0700645 const char* items[] = { " No",
646 " No",
647 " No",
648 " No",
649 " No",
650 " No",
651 " No",
652 " Yes -- delete all user data", // [7]
653 " No",
654 " No",
655 " No",
656 NULL };
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800657
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700658 int chosen_item = get_menu_selection(title_headers, items, 1, 0, device);
Doug Zongkerf93d8162009-09-22 15:16:02 -0700659 if (chosen_item != 7) {
660 return;
661 }
662 }
Doug Zongker1066d2c2009-04-01 13:57:40 -0700663
Doug Zongker211aebc2011-10-28 15:13:10 -0700664 ui->Print("\n-- Wiping data...\n");
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700665 device->WipeData();
Doug Zongkerd4208f92010-09-20 12:16:13 -0700666 erase_volume("/data");
667 erase_volume("/cache");
Doug Zongker211aebc2011-10-28 15:13:10 -0700668 ui->Print("Data wipe complete.\n");
Doug Zongkerf93d8162009-09-22 15:16:02 -0700669}
670
671static void
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700672prompt_and_wait(Device* device) {
673 const char* const* headers = prepend_title(device->GetMenuHeaders());
Doug Zongkerf93d8162009-09-22 15:16:02 -0700674
675 for (;;) {
676 finish_recovery(NULL);
Doug Zongker211aebc2011-10-28 15:13:10 -0700677 ui->SetProgressType(RecoveryUI::EMPTY);
Doug Zongkerf93d8162009-09-22 15:16:02 -0700678
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700679 int chosen_item = get_menu_selection(headers, device->GetMenuItems(), 0, 0, device);
Doug Zongkerf93d8162009-09-22 15:16:02 -0700680
681 // device-specific code may take some action here. It may
682 // return one of the core actions handled in the switch
683 // statement below.
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700684 chosen_item = device->InvokeMenuItem(chosen_item);
Doug Zongkerf93d8162009-09-22 15:16:02 -0700685
Michael Ward9d2629c2011-06-23 22:14:24 -0700686 int status;
Doug Zongkerd0181b82011-10-19 10:51:12 -0700687 int wipe_cache;
Doug Zongkerf93d8162009-09-22 15:16:02 -0700688 switch (chosen_item) {
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700689 case Device::REBOOT:
Doug Zongkerf93d8162009-09-22 15:16:02 -0700690 return;
691
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700692 case Device::WIPE_DATA:
693 wipe_data(ui->IsTextVisible(), device);
Doug Zongker211aebc2011-10-28 15:13:10 -0700694 if (!ui->IsTextVisible()) return;
Doug Zongkerf93d8162009-09-22 15:16:02 -0700695 break;
696
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700697 case Device::WIPE_CACHE:
Doug Zongker211aebc2011-10-28 15:13:10 -0700698 ui->Print("\n-- Wiping cache...\n");
Doug Zongkerd4208f92010-09-20 12:16:13 -0700699 erase_volume("/cache");
Doug Zongker211aebc2011-10-28 15:13:10 -0700700 ui->Print("Cache wipe complete.\n");
701 if (!ui->IsTextVisible()) return;
Doug Zongkerf93d8162009-09-22 15:16:02 -0700702 break;
703
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700704 case Device::APPLY_EXT:
Doug Zongkerd9428e32011-12-13 16:03:28 -0800705 // Some packages expect /cache to be mounted (eg,
706 // standard incremental packages expect to use /cache
707 // as scratch space).
708 ensure_path_mounted(CACHE_ROOT);
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700709 status = update_directory(SDCARD_ROOT, SDCARD_ROOT, &wipe_cache, device);
Doug Zongkerd0181b82011-10-19 10:51:12 -0700710 if (status == INSTALL_SUCCESS && wipe_cache) {
Doug Zongker211aebc2011-10-28 15:13:10 -0700711 ui->Print("\n-- Wiping cache (at package request)...\n");
Doug Zongkerd0181b82011-10-19 10:51:12 -0700712 if (erase_volume("/cache")) {
Doug Zongker211aebc2011-10-28 15:13:10 -0700713 ui->Print("Cache wipe failed.\n");
Doug Zongkerd0181b82011-10-19 10:51:12 -0700714 } else {
Doug Zongker211aebc2011-10-28 15:13:10 -0700715 ui->Print("Cache wipe complete.\n");
Doug Zongkerd0181b82011-10-19 10:51:12 -0700716 }
717 }
Doug Zongker8674a722010-09-15 11:08:23 -0700718 if (status >= 0) {
719 if (status != INSTALL_SUCCESS) {
Doug Zongker211aebc2011-10-28 15:13:10 -0700720 ui->SetBackground(RecoveryUI::ERROR);
721 ui->Print("Installation aborted.\n");
722 } else if (!ui->IsTextVisible()) {
Doug Zongker8674a722010-09-15 11:08:23 -0700723 return; // reboot if logs aren't visible
724 } else {
Doug Zongker211aebc2011-10-28 15:13:10 -0700725 ui->Print("\nInstall from sdcard complete.\n");
Doug Zongker8674a722010-09-15 11:08:23 -0700726 }
Doug Zongkerf93d8162009-09-22 15:16:02 -0700727 }
728 break;
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700729
730 case Device::APPLY_CACHE:
Michael Ward9d2629c2011-06-23 22:14:24 -0700731 // Don't unmount cache at the end of this.
Doug Zongkerdaefc1d2011-10-31 09:34:15 -0700732 status = update_directory(CACHE_ROOT, NULL, &wipe_cache, device);
Doug Zongkerd0181b82011-10-19 10:51:12 -0700733 if (status == INSTALL_SUCCESS && wipe_cache) {
Doug Zongker211aebc2011-10-28 15:13:10 -0700734 ui->Print("\n-- Wiping cache (at package request)...\n");
Doug Zongkerd0181b82011-10-19 10:51:12 -0700735 if (erase_volume("/cache")) {
Doug Zongker211aebc2011-10-28 15:13:10 -0700736 ui->Print("Cache wipe failed.\n");
Doug Zongkerd0181b82011-10-19 10:51:12 -0700737 } else {
Doug Zongker211aebc2011-10-28 15:13:10 -0700738 ui->Print("Cache wipe complete.\n");
Doug Zongkerd0181b82011-10-19 10:51:12 -0700739 }
740 }
Michael Ward9d2629c2011-06-23 22:14:24 -0700741 if (status >= 0) {
742 if (status != INSTALL_SUCCESS) {
Doug Zongker211aebc2011-10-28 15:13:10 -0700743 ui->SetBackground(RecoveryUI::ERROR);
744 ui->Print("Installation aborted.\n");
745 } else if (!ui->IsTextVisible()) {
Michael Ward9d2629c2011-06-23 22:14:24 -0700746 return; // reboot if logs aren't visible
747 } else {
Doug Zongker211aebc2011-10-28 15:13:10 -0700748 ui->Print("\nInstall from cache complete.\n");
Michael Ward9d2629c2011-06-23 22:14:24 -0700749 }
750 }
751 break;
Doug Zongker9270a202012-01-09 15:16:13 -0800752
753 case Device::APPLY_ADB_SIDELOAD:
754 ensure_path_mounted(CACHE_ROOT);
755 status = apply_from_adb(ui, &wipe_cache, TEMPORARY_INSTALL_FILE);
756 if (status >= 0) {
757 if (status != INSTALL_SUCCESS) {
758 ui->SetBackground(RecoveryUI::ERROR);
759 ui->Print("Installation aborted.\n");
760 } else if (!ui->IsTextVisible()) {
761 return; // reboot if logs aren't visible
762 } else {
763 ui->Print("\nInstall from ADB complete.\n");
764 }
765 }
766 break;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800767 }
768 }
769}
770
771static void
Oscar Montemayor05231562009-11-30 08:40:57 -0800772print_property(const char *key, const char *name, void *cookie) {
Doug Zongker56c51052010-07-01 09:18:44 -0700773 printf("%s=%s\n", key, name);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800774}
775
776int
Oscar Montemayor05231562009-11-30 08:40:57 -0800777main(int argc, char **argv) {
Dees_Troycfb63ae2012-09-19 14:30:17 -0400778 // Recovery needs to install world-readable files, so clear umask
779 // set by init
780 umask(0);
781
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800782 time_t start = time(NULL);
783
784 // If these fail, there's not really anywhere to complain...
785 freopen(TEMPORARY_LOG_FILE, "a", stdout); setbuf(stdout, NULL);
786 freopen(TEMPORARY_LOG_FILE, "a", stderr); setbuf(stderr, NULL);
Doug Zongker9270a202012-01-09 15:16:13 -0800787
788 // If this binary is started with the single argument "--adbd",
789 // instead of being the normal recovery binary, it turns into kind
790 // of a stripped-down version of adbd that only supports the
791 // 'sideload' command. Note this must be a real argument, not
792 // anything in the command file or bootloader control block; the
793 // only way recovery should be run with this argument is when it
794 // starts a copy of itself from the apply_from_adb() function.
Dees_Troy9a4b5692012-09-19 15:09:45 -0400795 if (argc == 3 && strcmp(argv[1], "--adbd") == 0) {
796 adb_main(argv[2]);
Doug Zongker9270a202012-01-09 15:16:13 -0800797 return 0;
798 }
799
Dees_Troy51127312012-09-08 13:08:49 -0400800 printf("Starting TWRP %s on %s", TW_VERSION_STR, ctime(&start));
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800801
Dees_Troy32c8eb82012-09-11 15:28:06 -0400802 Device* device = make_device();
803 ui = device->GetUI();
Doug Zongker211aebc2011-10-28 15:13:10 -0700804
Dees_Troy7d15c252012-09-05 20:47:21 -0400805 //ui->Init();
806 //ui->SetBackground(RecoveryUI::NONE);
Dees_Troy7c2dec82012-09-26 09:49:14 -0400807 //load_volume_table();
Dees_Troy7d15c252012-09-05 20:47:21 -0400808
809 // Load default values to set DataManager constants and handle ifdefs
810 DataManager_LoadDefaults();
811 printf("Starting the UI...");
Dees_Troy51127312012-09-08 13:08:49 -0400812 gui_init();
Dees_Troyce2fe772012-09-28 12:34:33 -0400813 printf("=> Installing busybox into /sbin\n");
814 system("/sbin/bbinstall.sh"); // Let's install busybox
Dees_Troy7d15c252012-09-05 20:47:21 -0400815 printf("=> Linking mtab\n");
Dees_Troy8170a922012-09-18 15:40:25 -0400816 system("ln -s /proc/mounts /etc/mtab"); // And link mtab for mke2fs
Dees_Troy7d15c252012-09-05 20:47:21 -0400817 printf("=> Processing recovery.fstab\n");
Dees_Troy5bf43922012-09-07 16:07:55 -0400818 if (!PartitionManager.Process_Fstab("/etc/recovery.fstab", 1)) {
Dees_Troy7d15c252012-09-05 20:47:21 -0400819 LOGE("Failing out of recovery due to problem with recovery.fstab.\n");
820 //return -1;
821 }
Dees_Troy8170a922012-09-18 15:40:25 -0400822 PartitionManager.Output_Partition_Logging();
Dees_Troy7d15c252012-09-05 20:47:21 -0400823 // Load up all the resources
824 gui_loadResources();
825
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800826 get_args(&argc, &argv);
827
828 int previous_runs = 0;
829 const char *send_intent = NULL;
830 const char *update_package = NULL;
831 int wipe_data = 0, wipe_cache = 0;
Doug Zongkere5d5ac72012-04-12 11:01:22 -0700832 bool just_exit = false;
Dees_Troy83a3b122012-10-01 14:16:43 -0400833 bool perform_backup = false;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800834
835 int arg;
836 while ((arg = getopt_long(argc, argv, "", OPTIONS, NULL)) != -1) {
837 switch (arg) {
838 case 'p': previous_runs = atoi(optarg); break;
839 case 's': send_intent = optarg; break;
840 case 'u': update_package = optarg; break;
841 case 'w': wipe_data = wipe_cache = 1; break;
842 case 'c': wipe_cache = 1; break;
Doug Zongker211aebc2011-10-28 15:13:10 -0700843 case 't': ui->ShowText(true); break;
Doug Zongkere5d5ac72012-04-12 11:01:22 -0700844 case 'x': just_exit = true; break;
Dees_Troy83a3b122012-10-01 14:16:43 -0400845 case 'n': perform_backup = true; LOGI("nandroid\n"); break;
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800846 case '?':
847 LOGE("Invalid command argument\n");
848 continue;
849 }
850 }
851
Stephen Smalley779701d2012-02-09 14:13:23 -0500852#ifdef HAVE_SELINUX
853 struct selinux_opt seopts[] = {
854 { SELABEL_OPT_PATH, "/file_contexts" }
855 };
856
857 sehandle = selabel_open(SELABEL_CTX_FILE, seopts, 1);
858
859 if (!sehandle) {
860 fprintf(stderr, "Warning: No file_contexts\n");
Kenny Root038818c2012-04-08 11:03:01 -0700861 ui->Print("Warning: No file_contexts\n");
Stephen Smalley779701d2012-02-09 14:13:23 -0500862 }
863#endif
864
Dees_Troy7d15c252012-09-05 20:47:21 -0400865 //device->StartRecovery();
Doug Zongkerefa1bab2010-02-01 15:59:12 -0800866
Doug Zongker56c51052010-07-01 09:18:44 -0700867 printf("Command:");
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800868 for (arg = 0; arg < argc; arg++) {
Doug Zongker56c51052010-07-01 09:18:44 -0700869 printf(" \"%s\"", argv[arg]);
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800870 }
Doug Zongker9b125b02010-09-22 12:01:37 -0700871 printf("\n");
872
873 if (update_package) {
874 // For backwards compatibility on the cache partition only, if
875 // we're given an old 'root' path "CACHE:foo", change it to
876 // "/cache/foo".
877 if (strncmp(update_package, "CACHE:", 6) == 0) {
878 int len = strlen(update_package) + 10;
Doug Zongker28ce47c2011-10-28 10:33:05 -0700879 char* modified_path = (char*)malloc(len);
Doug Zongker9b125b02010-09-22 12:01:37 -0700880 strlcpy(modified_path, "/cache/", len);
881 strlcat(modified_path, update_package+6, len);
882 printf("(replacing path \"%s\" with \"%s\")\n",
883 update_package, modified_path);
884 update_package = modified_path;
885 }
886 }
887 printf("\n");
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800888
889 property_list(print_property, NULL);
Doug Zongker56c51052010-07-01 09:18:44 -0700890 printf("\n");
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800891
Dees_Troy7d15c252012-09-05 20:47:21 -0400892 // Check for and run startup script if script exists
Dees_Troya58bead2012-09-27 09:49:29 -0400893 TWFunc::check_and_run_script("/sbin/runatboot.sh", "boot");
894 TWFunc::check_and_run_script("/sbin/postrecoveryboot.sh", "boot");
Dees_Troy7d15c252012-09-05 20:47:21 -0400895
896#ifdef TW_INCLUDE_INJECTTWRP
897 // Back up TWRP Ramdisk if needed:
898 LOGI("Backing up TWRP ramdisk...\n");
Dees_Troy8170a922012-09-18 15:40:25 -0400899 system("injecttwrp --backup /tmp/backup_recovery_ramdisk.img");
Dees_Troy7d15c252012-09-05 20:47:21 -0400900 LOGI("Backup of TWRP ramdisk done.\n");
901#endif
902
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800903 int status = INSTALL_SUCCESS;
904
Dees_Troy83a3b122012-10-01 14:16:43 -0400905 if (perform_backup) {
906 char empt[50];
907 gui_console_only();
908 strcpy(empt, "(Current Date)");
909 DataManager_SetStrValue(TW_BACKUP_NAME, empt);
910 if (OpenRecoveryScript::Backup_Command("BSDCAE") != 0)
911 status = INSTALL_ERROR;
912 }
913 if (status == INSTALL_SUCCESS) { // Prevent other actions if backup failed
Doug Zongker540d57f2011-01-18 13:36:58 -0800914 if (update_package != NULL) {
Dees_Troy7d15c252012-09-05 20:47:21 -0400915 gui_console_only();
Dees_Troy83a3b122012-10-01 14:16:43 -0400916 if (OpenRecoveryScript::Install_Command(update_package) == 0)
917 status = INSTALL_SUCCESS;
918 else
919 status = INSTALL_ERROR;
920 /*
Doug Zongkerd0181b82011-10-19 10:51:12 -0700921 status = install_package(update_package, &wipe_cache, TEMPORARY_INSTALL_FILE);
922 if (status == INSTALL_SUCCESS && wipe_cache) {
923 if (erase_volume("/cache")) {
924 LOGE("Cache wipe (requested by package) failed.");
925 }
926 }
Doug Zongker211aebc2011-10-28 15:13:10 -0700927 if (status != INSTALL_SUCCESS) ui->Print("Installation aborted.\n");
Dees_Troy83a3b122012-10-01 14:16:43 -0400928 */
Doug Zongkerb128f542009-06-18 15:07:14 -0700929 } else if (wipe_data) {
Dees_Troy7d15c252012-09-05 20:47:21 -0400930 gui_console_only();
Dees_Troy83a3b122012-10-01 14:16:43 -0400931 if (!PartitionManager.Factory_Reset()) status = INSTALL_ERROR;
932 /*
933 if (device->WipeData()) status = INSTALL_ERROR;
934 if (erase_volume("/data")) status = INSTALL_ERROR;
935 if (wipe_cache && erase_volume("/cache")) status = INSTALL_ERROR;
936 */
Doug Zongker211aebc2011-10-28 15:13:10 -0700937 if (status != INSTALL_SUCCESS) ui->Print("Data wipe failed.\n");
Doug Zongkerb128f542009-06-18 15:07:14 -0700938 } else if (wipe_cache) {
Dees_Troy7d15c252012-09-05 20:47:21 -0400939 gui_console_only();
Doug Zongkerd4208f92010-09-20 12:16:13 -0700940 if (wipe_cache && erase_volume("/cache")) status = INSTALL_ERROR;
Doug Zongker211aebc2011-10-28 15:13:10 -0700941 if (status != INSTALL_SUCCESS) ui->Print("Cache wipe failed.\n");
Doug Zongkere5d5ac72012-04-12 11:01:22 -0700942 } else if (!just_exit) {
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800943 status = INSTALL_ERROR; // No command specified
944 }
Dees_Troy83a3b122012-10-01 14:16:43 -0400945 }
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800946
Dees_Troy7d15c252012-09-05 20:47:21 -0400947 //if (status != INSTALL_SUCCESS) ui->SetBackground(RecoveryUI::ERROR);
948 if (status != INSTALL_SUCCESS /*|| ui->IsTextVisible()*/) {
Dees_Troy812660f2012-09-20 09:55:17 -0400949 finish_recovery(NULL);
Dees_Troy7d15c252012-09-05 20:47:21 -0400950 DataManager_ReadSettingsFile();
Dees_Troy812660f2012-09-20 09:55:17 -0400951 if (DataManager_GetIntValue(TW_IS_ENCRYPTED) == 0 && OpenRecoveryScript::check_for_script_file()) {
952 gui_console_only();
953 OpenRecoveryScript::run_script_file();
Dees_Troy83a3b122012-10-01 14:16:43 -0400954 if (OpenRecoveryScript::run_script_file() != 0) {
Dees_Troy812660f2012-09-20 09:55:17 -0400955 // There was an error, boot the recovery
956 gui_start();
957 } else {
958 usleep(2000000); // Sleep for 2 seconds before rebooting
959 }
960 } else
961 gui_start();
Dees_Troy7d15c252012-09-05 20:47:21 -0400962 //prompt_and_wait(device);
Doug Zongker8674a722010-09-15 11:08:23 -0700963 }
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800964
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800965 // Otherwise, get ready to boot the main system...
966 finish_recovery(send_intent);
Doug Zongker211aebc2011-10-28 15:13:10 -0700967 ui->Print("Rebooting...\n");
Dees_Troy38bd7602012-09-14 13:33:53 -0400968#ifdef ANDROID_RB_RESTART
Ken Sumrall6e4472a2011-03-07 23:37:27 -0800969 android_reboot(ANDROID_RB_RESTART, 0, 0);
Dees_Troy38bd7602012-09-14 13:33:53 -0400970#else
971 reboot(RB_AUTOBOOT);
972#endif
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800973 return EXIT_SUCCESS;
974}