blob: a0bae97ca3a5b61366756353e6d6d38f2caace2e [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>
26#include <sys/reboot.h>
27#include <sys/types.h>
28#include <time.h>
29#include <unistd.h>
30
31#include "bootloader.h"
32#include "commands.h"
33#include "common.h"
34#include "cutils/properties.h"
35#include "firmware.h"
36#include "install.h"
37#include "minui/minui.h"
38#include "minzip/DirUtil.h"
39#include "roots.h"
40
41static const struct option OPTIONS[] = {
42 { "send_intent", required_argument, NULL, 's' },
43 { "update_package", required_argument, NULL, 'u' },
44 { "wipe_data", no_argument, NULL, 'w' },
45 { "wipe_cache", no_argument, NULL, 'c' },
46};
47
48static const char *COMMAND_FILE = "CACHE:recovery/command";
49static const char *INTENT_FILE = "CACHE:recovery/intent";
50static const char *LOG_FILE = "CACHE:recovery/log";
51static const char *SDCARD_PACKAGE_FILE = "SDCARD:update.zip";
52static const char *TEMPORARY_LOG_FILE = "/tmp/recovery.log";
53
54/*
55 * The recovery tool communicates with the main system through /cache files.
56 * /cache/recovery/command - INPUT - command line for tool, one arg per line
57 * /cache/recovery/log - OUTPUT - combined log file from recovery run(s)
58 * /cache/recovery/intent - OUTPUT - intent that was passed in
59 *
60 * The arguments which may be supplied in the recovery.command file:
61 * --send_intent=anystring - write the text out to recovery.intent
62 * --update_package=root:path - verify install an OTA package file
63 * --wipe_data - erase user data (and cache), then reboot
64 * --wipe_cache - wipe cache (but not user data), then reboot
65 *
66 * After completing, we remove /cache/recovery/command and reboot.
67 * Arguments may also be supplied in the bootloader control block (BCB).
68 * These important scenarios must be safely restartable at any point:
69 *
70 * FACTORY RESET
71 * 1. user selects "factory reset"
72 * 2. main system writes "--wipe_data" to /cache/recovery/command
73 * 3. main system reboots into recovery
74 * 4. get_args() writes BCB with "boot-recovery" and "--wipe_data"
75 * -- after this, rebooting will restart the erase --
76 * 5. erase_root() reformats /data
77 * 6. erase_root() reformats /cache
78 * 7. finish_recovery() erases BCB
79 * -- after this, rebooting will restart the main system --
80 * 8. main() calls reboot() to boot main system
81 *
82 * OTA INSTALL
83 * 1. main system downloads OTA package to /cache/some-filename.zip
84 * 2. main system writes "--update_package=CACHE:some-filename.zip"
85 * 3. main system reboots into recovery
86 * 4. get_args() writes BCB with "boot-recovery" and "--update_package=..."
87 * -- after this, rebooting will attempt to reinstall the update --
88 * 5. install_package() attempts to install the update
89 * NOTE: the package install must itself be restartable from any point
90 * 6. finish_recovery() erases BCB
91 * -- after this, rebooting will (try to) restart the main system --
92 * 7. ** if install failed **
93 * 7a. prompt_and_wait() shows an error icon and waits for the user
94 * 7b; the user reboots (pulling the battery, etc) into the main system
95 * 8. main() calls maybe_install_firmware_update()
96 * ** if the update contained radio/hboot firmware **:
97 * 8a. m_i_f_u() writes BCB with "boot-recovery" and "--wipe_cache"
98 * -- after this, rebooting will reformat cache & restart main system --
99 * 8b. m_i_f_u() writes firmware image into raw cache partition
100 * 8c. m_i_f_u() writes BCB with "update-radio/hboot" and "--wipe_cache"
101 * -- after this, rebooting will attempt to reinstall firmware --
102 * 8d. bootloader tries to flash firmware
103 * 8e. bootloader writes BCB with "boot-recovery" (keeping "--wipe_cache")
104 * -- after this, rebooting will reformat cache & restart main system --
105 * 8f. erase_root() reformats /cache
106 * 8g. finish_recovery() erases BCB
107 * -- after this, rebooting will (try to) restart the main system --
108 * 9. main() calls reboot() to boot main system
109 */
110
111static const int MAX_ARG_LENGTH = 4096;
112static const int MAX_ARGS = 100;
113
114// open a file given in root:path format, mounting partitions as necessary
115static FILE*
116fopen_root_path(const char *root_path, const char *mode) {
117 if (ensure_root_path_mounted(root_path) != 0) {
118 LOGE("Can't mount %s\n", root_path);
119 return NULL;
120 }
121
122 char path[PATH_MAX] = "";
123 if (translate_root_path(root_path, path, sizeof(path)) == NULL) {
124 LOGE("Bad path %s\n", root_path);
125 return NULL;
126 }
127
128 // When writing, try to create the containing directory, if necessary.
129 // Use generous permissions, the system (init.rc) will reset them.
130 if (strchr("wa", mode[0])) dirCreateHierarchy(path, 0777, NULL, 1);
131
132 FILE *fp = fopen(path, mode);
133 if (fp == NULL) LOGE("Can't open %s\n", path);
134 return fp;
135}
136
137// close a file, log an error if the error indicator is set
138static void
139check_and_fclose(FILE *fp, const char *name) {
140 fflush(fp);
141 if (ferror(fp)) LOGE("Error in %s\n(%s)\n", name, strerror(errno));
142 fclose(fp);
143}
144
145// command line args come from, in decreasing precedence:
146// - the actual command line
147// - the bootloader control block (one per line, after "recovery")
148// - the contents of COMMAND_FILE (one per line)
149static void
150get_args(int *argc, char ***argv) {
151 struct bootloader_message boot;
152 memset(&boot, 0, sizeof(boot));
153 get_bootloader_message(&boot); // this may fail, leaving a zeroed structure
154
155 if (boot.command[0] != 0 && boot.command[0] != 255) {
156 LOGI("Boot command: %.*s\n", sizeof(boot.command), boot.command);
157 }
158
159 if (boot.status[0] != 0 && boot.status[0] != 255) {
160 LOGI("Boot status: %.*s\n", sizeof(boot.status), boot.status);
161 }
162
163 // --- if arguments weren't supplied, look in the bootloader control block
164 if (*argc <= 1) {
165 boot.recovery[sizeof(boot.recovery) - 1] = '\0'; // Ensure termination
166 const char *arg = strtok(boot.recovery, "\n");
167 if (arg != NULL && !strcmp(arg, "recovery")) {
168 *argv = (char **) malloc(sizeof(char *) * MAX_ARGS);
169 (*argv)[0] = strdup(arg);
170 for (*argc = 1; *argc < MAX_ARGS; ++*argc) {
171 if ((arg = strtok(NULL, "\n")) == NULL) break;
172 (*argv)[*argc] = strdup(arg);
173 }
174 LOGI("Got arguments from boot message\n");
175 } else if (boot.recovery[0] != 0 && boot.recovery[0] != 255) {
176 LOGE("Bad boot message\n\"%.20s\"\n", boot.recovery);
177 }
178 }
179
180 // --- if that doesn't work, try the command file
181 if (*argc <= 1) {
182 FILE *fp = fopen_root_path(COMMAND_FILE, "r");
183 if (fp != NULL) {
184 char *argv0 = (*argv)[0];
185 *argv = (char **) malloc(sizeof(char *) * MAX_ARGS);
186 (*argv)[0] = argv0; // use the same program name
187
188 char buf[MAX_ARG_LENGTH];
189 for (*argc = 1; *argc < MAX_ARGS; ++*argc) {
190 if (!fgets(buf, sizeof(buf), fp)) break;
191 (*argv)[*argc] = strdup(strtok(buf, "\r\n")); // Strip newline.
192 }
193
194 check_and_fclose(fp, COMMAND_FILE);
195 LOGI("Got arguments from %s\n", COMMAND_FILE);
196 }
197 }
198
199 // --> write the arguments we have back into the bootloader control block
200 // always boot into recovery after this (until finish_recovery() is called)
201 strlcpy(boot.command, "boot-recovery", sizeof(boot.command));
202 strlcpy(boot.recovery, "recovery\n", sizeof(boot.recovery));
203 int i;
204 for (i = 1; i < *argc; ++i) {
205 strlcat(boot.recovery, (*argv)[i], sizeof(boot.recovery));
206 strlcat(boot.recovery, "\n", sizeof(boot.recovery));
207 }
208 set_bootloader_message(&boot);
209}
210
211
212// clear the recovery command and prepare to boot a (hopefully working) system,
213// copy our log file to cache as well (for the system to read), and
214// record any intent we were asked to communicate back to the system.
215// this function is idempotent: call it as many times as you like.
216static void
217finish_recovery(const char *send_intent)
218{
219 // By this point, we're ready to return to the main system...
220 if (send_intent != NULL) {
221 FILE *fp = fopen_root_path(INTENT_FILE, "w");
222 if (fp != NULL) {
223 fputs(send_intent, fp);
224 check_and_fclose(fp, INTENT_FILE);
225 }
226 }
227
228 // Copy logs to cache so the system can find out what happened.
229 FILE *log = fopen_root_path(LOG_FILE, "a");
230 if (log != NULL) {
231 FILE *tmplog = fopen(TEMPORARY_LOG_FILE, "r");
232 if (tmplog == NULL) {
233 LOGE("Can't open %s\n", TEMPORARY_LOG_FILE);
234 } else {
235 static long tmplog_offset = 0;
236 fseek(tmplog, tmplog_offset, SEEK_SET); // Since last write
237 char buf[4096];
238 while (fgets(buf, sizeof(buf), tmplog)) fputs(buf, log);
239 tmplog_offset = ftell(tmplog);
240 check_and_fclose(tmplog, TEMPORARY_LOG_FILE);
241 }
242 check_and_fclose(log, LOG_FILE);
243 }
244
245 // Reset the bootloader message to revert to a normal main system boot.
246 struct bootloader_message boot;
247 memset(&boot, 0, sizeof(boot));
248 set_bootloader_message(&boot);
249
250 // Remove the command file, so recovery won't repeat indefinitely.
251 char path[PATH_MAX] = "";
252 if (ensure_root_path_mounted(COMMAND_FILE) != 0 ||
253 translate_root_path(COMMAND_FILE, path, sizeof(path)) == NULL ||
254 (unlink(path) && errno != ENOENT)) {
255 LOGW("Can't unlink %s\n", COMMAND_FILE);
256 }
257
258 sync(); // For good measure.
259}
260
261#define TEST_AMEND 0
262#if TEST_AMEND
263static void
264test_amend()
265{
266 extern int test_symtab(void);
267 extern int test_cmd_fn(void);
268 extern int test_permissions(void);
269 int ret;
270 LOGD("Testing symtab...\n");
271 ret = test_symtab();
272 LOGD(" returned %d\n", ret);
273 LOGD("Testing cmd_fn...\n");
274 ret = test_cmd_fn();
275 LOGD(" returned %d\n", ret);
276 LOGD("Testing permissions...\n");
277 ret = test_permissions();
278 LOGD(" returned %d\n", ret);
279}
280#endif // TEST_AMEND
281
282static int
283erase_root(const char *root)
284{
285 ui_set_background(BACKGROUND_ICON_INSTALLING);
286 ui_show_indeterminate_progress();
287 ui_print("Formatting %s...\n", root);
288 return format_root_device(root);
289}
290
291static void
292prompt_and_wait()
293{
294 char* headers[] = { "Android system recovery utility",
295 "",
296 "Use trackball to highlight;",
297 "click to select.",
298 "",
299 NULL };
300
301 // these constants correspond to elements of the items[] list.
302#define ITEM_REBOOT 0
303#define ITEM_APPLY_SDCARD 1
304#define ITEM_WIPE_DATA 2
Doug Zongker1066d2c2009-04-01 13:57:40 -0700305#define ITEM_WIPE_CACHE 3
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800306 char* items[] = { "reboot system now [Home+Back]",
307 "apply sdcard:update.zip [Alt+S]",
308 "wipe data/factory reset [Alt+W]",
Doug Zongker1066d2c2009-04-01 13:57:40 -0700309 "wipe cache partition",
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800310 NULL };
311
312 ui_start_menu(headers, items);
313 int selected = 0;
314 int chosen_item = -1;
315
316 finish_recovery(NULL);
317 ui_reset_progress();
318 for (;;) {
319 int key = ui_wait_key();
320 int alt = ui_key_pressed(KEY_LEFTALT) || ui_key_pressed(KEY_RIGHTALT);
321 int visible = ui_text_visible();
322
323 if (key == KEY_DREAM_BACK && ui_key_pressed(KEY_DREAM_HOME)) {
324 // Wait for the keys to be released, to avoid triggering
325 // special boot modes (like coming back into recovery!).
326 while (ui_key_pressed(KEY_DREAM_BACK) ||
327 ui_key_pressed(KEY_DREAM_HOME)) {
328 usleep(1000);
329 }
330 chosen_item = ITEM_REBOOT;
331 } else if (alt && key == KEY_W) {
332 chosen_item = ITEM_WIPE_DATA;
333 } else if (alt && key == KEY_S) {
334 chosen_item = ITEM_APPLY_SDCARD;
335 } else if ((key == KEY_DOWN || key == KEY_VOLUMEDOWN) && visible) {
336 ++selected;
337 selected = ui_menu_select(selected);
338 } else if ((key == KEY_UP || key == KEY_VOLUMEUP) && visible) {
339 --selected;
340 selected = ui_menu_select(selected);
341 } else if (key == BTN_MOUSE && visible) {
342 chosen_item = selected;
343 }
344
345 if (chosen_item >= 0) {
346 // turn off the menu, letting ui_print() to scroll output
347 // on the screen.
348 ui_end_menu();
349
350 switch (chosen_item) {
351 case ITEM_REBOOT:
352 return;
353
354 case ITEM_WIPE_DATA:
355 ui_print("\n-- Wiping data...\n");
356 erase_root("DATA:");
357 erase_root("CACHE:");
358 ui_print("Data wipe complete.\n");
359 if (!ui_text_visible()) return;
360 break;
361
Doug Zongker1066d2c2009-04-01 13:57:40 -0700362 case ITEM_WIPE_CACHE:
363 ui_print("\n-- Wiping cache...\n");
364 erase_root("CACHE:");
365 ui_print("Cache wipe complete.\n");
366 if (!ui_text_visible()) return;
367 break;
368
The Android Open Source Projectc24a8e62009-03-03 19:28:42 -0800369 case ITEM_APPLY_SDCARD:
370 ui_print("\n-- Install from sdcard...\n");
371 int status = install_package(SDCARD_PACKAGE_FILE);
372 if (status != INSTALL_SUCCESS) {
373 ui_set_background(BACKGROUND_ICON_ERROR);
374 ui_print("Installation aborted.\n");
375 } else if (!ui_text_visible()) {
376 return; // reboot if logs aren't visible
377 } else {
378 ui_print("Install from sdcard complete.\n");
379 }
380 break;
381 }
382
383 // if we didn't return from this function to reboot, show
384 // the menu again.
385 ui_start_menu(headers, items);
386 selected = 0;
387 chosen_item = -1;
388
389 finish_recovery(NULL);
390 ui_reset_progress();
391
392 // throw away keys pressed while the command was running,
393 // so user doesn't accidentally trigger menu items.
394 ui_clear_key_queue();
395 }
396 }
397}
398
399static void
400print_property(const char *key, const char *name, void *cookie)
401{
402 fprintf(stderr, "%s=%s\n", key, name);
403}
404
405int
406main(int argc, char **argv)
407{
408 time_t start = time(NULL);
409
410 // If these fail, there's not really anywhere to complain...
411 freopen(TEMPORARY_LOG_FILE, "a", stdout); setbuf(stdout, NULL);
412 freopen(TEMPORARY_LOG_FILE, "a", stderr); setbuf(stderr, NULL);
413 fprintf(stderr, "Starting recovery on %s", ctime(&start));
414
415 ui_init();
416 get_args(&argc, &argv);
417
418 int previous_runs = 0;
419 const char *send_intent = NULL;
420 const char *update_package = NULL;
421 int wipe_data = 0, wipe_cache = 0;
422
423 int arg;
424 while ((arg = getopt_long(argc, argv, "", OPTIONS, NULL)) != -1) {
425 switch (arg) {
426 case 'p': previous_runs = atoi(optarg); break;
427 case 's': send_intent = optarg; break;
428 case 'u': update_package = optarg; break;
429 case 'w': wipe_data = wipe_cache = 1; break;
430 case 'c': wipe_cache = 1; break;
431 case '?':
432 LOGE("Invalid command argument\n");
433 continue;
434 }
435 }
436
437 fprintf(stderr, "Command:");
438 for (arg = 0; arg < argc; arg++) {
439 fprintf(stderr, " \"%s\"", argv[arg]);
440 }
441 fprintf(stderr, "\n\n");
442
443 property_list(print_property, NULL);
444 fprintf(stderr, "\n");
445
446#if TEST_AMEND
447 test_amend();
448#endif
449
450 RecoveryCommandContext ctx = { NULL };
451 if (register_update_commands(&ctx)) {
452 LOGE("Can't install update commands\n");
453 }
454
455 int status = INSTALL_SUCCESS;
456
457 if (update_package != NULL) {
458 status = install_package(update_package);
459 if (status != INSTALL_SUCCESS) ui_print("Installation aborted.\n");
460 } else if (wipe_data || wipe_cache) {
461 if (wipe_data && erase_root("DATA:")) status = INSTALL_ERROR;
462 if (wipe_cache && erase_root("CACHE:")) status = INSTALL_ERROR;
463 if (status != INSTALL_SUCCESS) ui_print("Data wipe failed.\n");
464 } else {
465 status = INSTALL_ERROR; // No command specified
466 }
467
468 if (status != INSTALL_SUCCESS) ui_set_background(BACKGROUND_ICON_ERROR);
469 if (status != INSTALL_SUCCESS || ui_text_visible()) prompt_and_wait();
470
471 // If there is a radio image pending, reboot now to install it.
472 maybe_install_firmware_update(send_intent);
473
474 // Otherwise, get ready to boot the main system...
475 finish_recovery(send_intent);
476 ui_print("Rebooting...\n");
477 sync();
478 reboot(RB_AUTOBOOT);
479 return EXIT_SUCCESS;
480}