blob: b41368d7b57e008e9e519355d78069474e221fba [file] [log] [blame]
Tao Bao6d99d4b2018-04-25 16:47:04 -07001/*
2 * Copyright (C) 2018 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
Tao Bao42c45e22018-07-31 09:37:12 -070017#include <dlfcn.h>
Jerry Zhangf5e319a2018-05-04 11:24:10 -070018#include <errno.h>
19#include <fcntl.h>
20#include <getopt.h>
21#include <inttypes.h>
22#include <limits.h>
23#include <linux/fs.h>
24#include <stdarg.h>
Tao Bao6d99d4b2018-04-25 16:47:04 -070025#include <stdio.h>
26#include <stdlib.h>
Jerry Zhangf5e319a2018-05-04 11:24:10 -070027#include <string.h>
28#include <sys/stat.h>
29#include <sys/types.h>
30#include <time.h>
Tao Bao6d99d4b2018-04-25 16:47:04 -070031#include <unistd.h>
32
Hridya Valsaraju20c81b32018-07-27 22:09:12 -070033#include <atomic>
Jerry Zhangf5e319a2018-05-04 11:24:10 -070034#include <string>
Hridya Valsaraju20c81b32018-07-27 22:09:12 -070035#include <thread>
Jerry Zhangf5e319a2018-05-04 11:24:10 -070036#include <vector>
Tao Bao6d99d4b2018-04-25 16:47:04 -070037
Jerry Zhangf5e319a2018-05-04 11:24:10 -070038#include <android-base/file.h>
Tao Bao6d99d4b2018-04-25 16:47:04 -070039#include <android-base/logging.h>
Jerry Zhangf5e319a2018-05-04 11:24:10 -070040#include <android-base/properties.h>
41#include <android-base/strings.h>
Hridya Valsaraju20c81b32018-07-27 22:09:12 -070042#include <android-base/unique_fd.h>
Jerry Zhangf5e319a2018-05-04 11:24:10 -070043#include <bootloader_message/bootloader_message.h>
44#include <cutils/android_reboot.h>
Hridya Valsaraju20c81b32018-07-27 22:09:12 -070045#include <cutils/sockets.h>
Tao Bao6d99d4b2018-04-25 16:47:04 -070046#include <private/android_logger.h> /* private pmsg functions */
Jerry Zhangf5e319a2018-05-04 11:24:10 -070047#include <selinux/android.h>
48#include <selinux/label.h>
49#include <selinux/selinux.h>
Tao Bao6d99d4b2018-04-25 16:47:04 -070050
51#include "common.h"
Hridya Valsaraju20c81b32018-07-27 22:09:12 -070052#include "fastboot/fastboot.h"
Jerry Zhang152933a2018-05-02 16:56:00 -070053#include "logging.h"
Tao Bao6d99d4b2018-04-25 16:47:04 -070054#include "minadbd/minadbd.h"
55#include "otautil/paths.h"
xunchang24788852019-03-22 16:08:52 -070056#include "otautil/roots.h"
Jerry Zhangf5e319a2018-05-04 11:24:10 -070057#include "otautil/sysutil.h"
58#include "recovery.h"
Tianjie Xu8f397302018-08-20 13:40:47 -070059#include "recovery_ui/device.h"
60#include "recovery_ui/stub_ui.h"
61#include "recovery_ui/ui.h"
Tao Bao6d99d4b2018-04-25 16:47:04 -070062
Jerry Zhangf5e319a2018-05-04 11:24:10 -070063static constexpr const char* COMMAND_FILE = "/cache/recovery/command";
64static constexpr const char* LOCALE_FILE = "/cache/recovery/last_locale";
65
66static constexpr const char* CACHE_ROOT = "/cache";
67
68bool has_cache = false;
69
70RecoveryUI* ui = nullptr;
71struct selabel_handle* sehandle;
72
Tao Bao6d99d4b2018-04-25 16:47:04 -070073static void UiLogger(android::base::LogId /* id */, android::base::LogSeverity severity,
74 const char* /* tag */, const char* /* file */, unsigned int /* line */,
75 const char* message) {
76 static constexpr char log_characters[] = "VDIWEF";
77 if (severity >= android::base::ERROR && ui != nullptr) {
78 ui->Print("E:%s\n", message);
79 } else {
80 fprintf(stdout, "%c:%s\n", log_characters[severity], message);
81 }
82}
83
Jerry Zhangf5e319a2018-05-04 11:24:10 -070084// command line args come from, in decreasing precedence:
85// - the actual command line
86// - the bootloader control block (one per line, after "recovery")
87// - the contents of COMMAND_FILE (one per line)
88static std::vector<std::string> get_args(const int argc, char** const argv) {
89 CHECK_GT(argc, 0);
90
91 bootloader_message boot = {};
92 std::string err;
93 if (!read_bootloader_message(&boot, &err)) {
94 LOG(ERROR) << err;
95 // If fails, leave a zeroed bootloader_message.
96 boot = {};
97 }
98 stage = std::string(boot.stage);
99
David Andersoneee4e262018-08-21 13:10:45 -0700100 std::string boot_command;
Jerry Zhangf5e319a2018-05-04 11:24:10 -0700101 if (boot.command[0] != 0) {
David Andersoneee4e262018-08-21 13:10:45 -0700102 if (memchr(boot.command, '\0', sizeof(boot.command))) {
103 boot_command = std::string(boot.command);
104 } else {
105 boot_command = std::string(boot.command, sizeof(boot.command));
106 }
Jerry Zhangf5e319a2018-05-04 11:24:10 -0700107 LOG(INFO) << "Boot command: " << boot_command;
108 }
109
110 if (boot.status[0] != 0) {
111 std::string boot_status = std::string(boot.status, sizeof(boot.status));
112 LOG(INFO) << "Boot status: " << boot_status;
113 }
114
115 std::vector<std::string> args(argv, argv + argc);
116
117 // --- if arguments weren't supplied, look in the bootloader control block
118 if (args.size() == 1) {
119 boot.recovery[sizeof(boot.recovery) - 1] = '\0'; // Ensure termination
120 std::string boot_recovery(boot.recovery);
121 std::vector<std::string> tokens = android::base::Split(boot_recovery, "\n");
122 if (!tokens.empty() && tokens[0] == "recovery") {
123 for (auto it = tokens.begin() + 1; it != tokens.end(); it++) {
124 // Skip empty and '\0'-filled tokens.
125 if (!it->empty() && (*it)[0] != '\0') args.push_back(std::move(*it));
126 }
127 LOG(INFO) << "Got " << args.size() << " arguments from boot message";
128 } else if (boot.recovery[0] != 0) {
129 LOG(ERROR) << "Bad boot message: \"" << boot_recovery << "\"";
130 }
131 }
132
133 // --- if that doesn't work, try the command file (if we have /cache).
134 if (args.size() == 1 && has_cache) {
135 std::string content;
136 if (ensure_path_mounted(COMMAND_FILE) == 0 &&
137 android::base::ReadFileToString(COMMAND_FILE, &content)) {
138 std::vector<std::string> tokens = android::base::Split(content, "\n");
139 // All the arguments in COMMAND_FILE are needed (unlike the BCB message,
140 // COMMAND_FILE doesn't use filename as the first argument).
141 for (auto it = tokens.begin(); it != tokens.end(); it++) {
142 // Skip empty and '\0'-filled tokens.
143 if (!it->empty() && (*it)[0] != '\0') args.push_back(std::move(*it));
144 }
145 LOG(INFO) << "Got " << args.size() << " arguments from " << COMMAND_FILE;
146 }
147 }
148
149 // Write the arguments (excluding the filename in args[0]) back into the
150 // bootloader control block. So the device will always boot into recovery to
151 // finish the pending work, until finish_recovery() is called.
152 std::vector<std::string> options(args.cbegin() + 1, args.cend());
153 if (!update_bootloader_message(options, &err)) {
154 LOG(ERROR) << "Failed to set BCB message: " << err;
155 }
156
David Andersoneee4e262018-08-21 13:10:45 -0700157 // Finally, if no arguments were specified, check whether we should boot
158 // into fastboot.
159 if (args.size() == 1 && boot_command == "boot-fastboot") {
160 args.emplace_back("--fastboot");
161 }
162
Jerry Zhangf5e319a2018-05-04 11:24:10 -0700163 return args;
164}
165
166static std::string load_locale_from_cache() {
167 if (ensure_path_mounted(LOCALE_FILE) != 0) {
168 LOG(ERROR) << "Can't mount " << LOCALE_FILE;
169 return "";
170 }
171
172 std::string content;
173 if (!android::base::ReadFileToString(LOCALE_FILE, &content)) {
174 PLOG(ERROR) << "Can't read " << LOCALE_FILE;
175 return "";
176 }
177
178 return android::base::Trim(content);
179}
180
Tao Baoe0cfab32019-03-29 15:53:23 -0700181// Sets the usb config to 'state'.
182static bool SetUsbConfig(const std::string& state) {
183 android::base::SetProperty("sys.usb.config", state);
184 return android::base::WaitForProperty("sys.usb.state", state);
185}
186
Hridya Valsaraju20c81b32018-07-27 22:09:12 -0700187static void ListenRecoverySocket(RecoveryUI* ui, std::atomic<Device::BuiltinAction>& action) {
188 android::base::unique_fd sock_fd(android_get_control_socket("recovery"));
189 if (sock_fd < 0) {
190 PLOG(ERROR) << "Failed to open recovery socket";
191 return;
192 }
193 listen(sock_fd, 4);
194
195 while (true) {
196 android::base::unique_fd connection_fd;
197 connection_fd.reset(accept(sock_fd, nullptr, nullptr));
198 if (connection_fd < 0) {
199 PLOG(ERROR) << "Failed to accept socket connection";
200 continue;
201 }
202 char msg;
203 constexpr char kSwitchToFastboot = 'f';
204 constexpr char kSwitchToRecovery = 'r';
205 ssize_t ret = TEMP_FAILURE_RETRY(read(connection_fd, &msg, sizeof(msg)));
206 if (ret != sizeof(msg)) {
207 PLOG(ERROR) << "Couldn't read from socket";
208 continue;
209 }
210 switch (msg) {
211 case kSwitchToRecovery:
212 action = Device::BuiltinAction::ENTER_RECOVERY;
213 break;
214 case kSwitchToFastboot:
215 action = Device::BuiltinAction::ENTER_FASTBOOT;
216 break;
217 default:
218 LOG(ERROR) << "Unrecognized char from socket " << msg;
219 continue;
220 }
221 ui->InterruptKey();
222 }
223}
224
Tao Bao6d99d4b2018-04-25 16:47:04 -0700225static void redirect_stdio(const char* filename) {
Tao Bao6fcd2082019-01-16 09:29:17 -0800226 android::base::unique_fd pipe_read, pipe_write;
227 // Create a pipe that allows parent process sending logs over.
228 if (!android::base::Pipe(&pipe_read, &pipe_write)) {
229 PLOG(ERROR) << "Failed to create pipe for redirecting stdio";
Tao Bao6d99d4b2018-04-25 16:47:04 -0700230
231 // Fall back to traditional logging mode without timestamps. If these fail, there's not really
232 // anywhere to complain...
233 freopen(filename, "a", stdout);
234 setbuf(stdout, nullptr);
235 freopen(filename, "a", stderr);
236 setbuf(stderr, nullptr);
237
238 return;
239 }
240
241 pid_t pid = fork();
242 if (pid == -1) {
Tao Bao6fcd2082019-01-16 09:29:17 -0800243 PLOG(ERROR) << "Failed to fork for redirecting stdio";
Tao Bao6d99d4b2018-04-25 16:47:04 -0700244
245 // Fall back to traditional logging mode without timestamps. If these fail, there's not really
246 // anywhere to complain...
247 freopen(filename, "a", stdout);
248 setbuf(stdout, nullptr);
249 freopen(filename, "a", stderr);
250 setbuf(stderr, nullptr);
251
252 return;
253 }
254
255 if (pid == 0) {
Tao Bao6fcd2082019-01-16 09:29:17 -0800256 // Child process reads the incoming logs and doesn't write to the pipe.
257 pipe_write.reset();
Tao Bao6d99d4b2018-04-25 16:47:04 -0700258
259 auto start = std::chrono::steady_clock::now();
260
261 // Child logger to actually write to the log file.
262 FILE* log_fp = fopen(filename, "ae");
263 if (log_fp == nullptr) {
264 PLOG(ERROR) << "fopen \"" << filename << "\" failed";
Tao Bao6d99d4b2018-04-25 16:47:04 -0700265 _exit(EXIT_FAILURE);
266 }
267
Tao Bao6fcd2082019-01-16 09:29:17 -0800268 FILE* pipe_fp = android::base::Fdopen(std::move(pipe_read), "r");
Tao Bao6d99d4b2018-04-25 16:47:04 -0700269 if (pipe_fp == nullptr) {
270 PLOG(ERROR) << "fdopen failed";
271 check_and_fclose(log_fp, filename);
Tao Bao6d99d4b2018-04-25 16:47:04 -0700272 _exit(EXIT_FAILURE);
273 }
274
275 char* line = nullptr;
276 size_t len = 0;
277 while (getline(&line, &len, pipe_fp) != -1) {
278 auto now = std::chrono::steady_clock::now();
279 double duration =
280 std::chrono::duration_cast<std::chrono::duration<double>>(now - start).count();
281 if (line[0] == '\n') {
282 fprintf(log_fp, "[%12.6lf]\n", duration);
283 } else {
284 fprintf(log_fp, "[%12.6lf] %s", duration, line);
285 }
286 fflush(log_fp);
287 }
288
289 PLOG(ERROR) << "getline failed";
290
Tao Bao6fcd2082019-01-16 09:29:17 -0800291 fclose(pipe_fp);
Tao Bao6d99d4b2018-04-25 16:47:04 -0700292 free(line);
293 check_and_fclose(log_fp, filename);
Tao Bao6d99d4b2018-04-25 16:47:04 -0700294 _exit(EXIT_FAILURE);
295 } else {
296 // Redirect stdout/stderr to the logger process. Close the unused read end.
Tao Bao6fcd2082019-01-16 09:29:17 -0800297 pipe_read.reset();
Tao Bao6d99d4b2018-04-25 16:47:04 -0700298
299 setbuf(stdout, nullptr);
300 setbuf(stderr, nullptr);
301
Tao Bao6fcd2082019-01-16 09:29:17 -0800302 if (dup2(pipe_write.get(), STDOUT_FILENO) == -1) {
Tao Bao6d99d4b2018-04-25 16:47:04 -0700303 PLOG(ERROR) << "dup2 stdout failed";
304 }
Tao Bao6fcd2082019-01-16 09:29:17 -0800305 if (dup2(pipe_write.get(), STDERR_FILENO) == -1) {
Tao Bao6d99d4b2018-04-25 16:47:04 -0700306 PLOG(ERROR) << "dup2 stderr failed";
307 }
Tao Bao6d99d4b2018-04-25 16:47:04 -0700308 }
309}
310
311int main(int argc, char** argv) {
312 // We don't have logcat yet under recovery; so we'll print error on screen and log to stdout
313 // (which is redirected to recovery.log) as we used to do.
314 android::base::InitLogging(argv, &UiLogger);
315
316 // Take last pmsg contents and rewrite it to the current pmsg session.
317 static constexpr const char filter[] = "recovery/";
318 // Do we need to rotate?
319 bool do_rotate = false;
320
321 __android_log_pmsg_file_read(LOG_ID_SYSTEM, ANDROID_LOG_INFO, filter, logbasename, &do_rotate);
322 // Take action to refresh pmsg contents
323 __android_log_pmsg_file_read(LOG_ID_SYSTEM, ANDROID_LOG_INFO, filter, logrotate, &do_rotate);
324
325 // If this binary is started with the single argument "--adbd", instead of being the normal
326 // recovery binary, it turns into kind of a stripped-down version of adbd that only supports the
327 // 'sideload' command. Note this must be a real argument, not anything in the command file or
328 // bootloader control block; the only way recovery should be run with this argument is when it
329 // starts a copy of itself from the apply_from_adb() function.
330 if (argc == 2 && strcmp(argv[1], "--adbd") == 0) {
331 minadbd_main();
332 return 0;
333 }
334
Jerry Zhangf5e319a2018-05-04 11:24:10 -0700335 time_t start = time(nullptr);
336
Tao Bao6d99d4b2018-04-25 16:47:04 -0700337 // redirect_stdio should be called only in non-sideload mode. Otherwise we may have two logger
338 // instances with different timestamps.
339 redirect_stdio(Paths::Get().temporary_log_file().c_str());
340
Jerry Zhangf5e319a2018-05-04 11:24:10 -0700341 load_volume_table();
342 has_cache = volume_for_mount_point(CACHE_ROOT) != nullptr;
343
344 std::vector<std::string> args = get_args(argc, argv);
Tao Bao1700cc42018-07-16 22:09:59 -0700345 auto args_to_parse = StringVectorToNullTerminatedArray(args);
Jerry Zhangf5e319a2018-05-04 11:24:10 -0700346
347 static constexpr struct option OPTIONS[] = {
Hridya Valsaraju20c81b32018-07-27 22:09:12 -0700348 { "fastboot", no_argument, nullptr, 0 },
Jerry Zhangf5e319a2018-05-04 11:24:10 -0700349 { "locale", required_argument, nullptr, 0 },
350 { "show_text", no_argument, nullptr, 't' },
351 { nullptr, 0, nullptr, 0 },
352 };
353
354 bool show_text = false;
Hridya Valsaraju20c81b32018-07-27 22:09:12 -0700355 bool fastboot = false;
Jerry Zhangf5e319a2018-05-04 11:24:10 -0700356 std::string locale;
357
358 int arg;
359 int option_index;
Tao Bao1700cc42018-07-16 22:09:59 -0700360 while ((arg = getopt_long(args_to_parse.size() - 1, args_to_parse.data(), "", OPTIONS,
Jerry Zhangf5e319a2018-05-04 11:24:10 -0700361 &option_index)) != -1) {
362 switch (arg) {
363 case 't':
364 show_text = true;
365 break;
366 case 0: {
367 std::string option = OPTIONS[option_index].name;
368 if (option == "locale") {
369 locale = optarg;
Hridya Valsaraju7f41a2c2018-09-19 16:29:01 -0700370 } else if (option == "fastboot" &&
Yifan Hongd17174c2018-11-16 12:49:33 -0800371 android::base::GetBoolProperty("ro.boot.dynamic_partitions", false)) {
Hridya Valsaraju20c81b32018-07-27 22:09:12 -0700372 fastboot = true;
Jerry Zhangf5e319a2018-05-04 11:24:10 -0700373 }
374 break;
375 }
376 }
377 }
Jerry Zhang49fd5d22018-05-17 12:54:41 -0700378 optind = 1;
Jerry Zhangf5e319a2018-05-04 11:24:10 -0700379
380 if (locale.empty()) {
381 if (has_cache) {
382 locale = load_locale_from_cache();
383 }
384
385 if (locale.empty()) {
386 static constexpr const char* DEFAULT_LOCALE = "en-US";
387 locale = DEFAULT_LOCALE;
388 }
389 }
390
Tao Bao42c45e22018-07-31 09:37:12 -0700391 static constexpr const char* kDefaultLibRecoveryUIExt = "librecovery_ui_ext.so";
392 // Intentionally not calling dlclose(3) to avoid potential gotchas (e.g. `make_device` may have
393 // handed out pointers to code or static [or thread-local] data and doesn't collect them all back
394 // in on dlclose).
395 void* librecovery_ui_ext = dlopen(kDefaultLibRecoveryUIExt, RTLD_NOW);
396
397 using MakeDeviceType = decltype(&make_device);
398 MakeDeviceType make_device_func = nullptr;
399 if (librecovery_ui_ext == nullptr) {
400 printf("Failed to dlopen %s: %s\n", kDefaultLibRecoveryUIExt, dlerror());
401 } else {
402 reinterpret_cast<void*&>(make_device_func) = dlsym(librecovery_ui_ext, "make_device");
403 if (make_device_func == nullptr) {
404 printf("Failed to dlsym make_device: %s\n", dlerror());
405 }
406 }
407
408 Device* device;
409 if (make_device_func == nullptr) {
410 printf("Falling back to the default make_device() instead\n");
411 device = make_device();
412 } else {
413 printf("Loading make_device from %s\n", kDefaultLibRecoveryUIExt);
414 device = (*make_device_func)();
415 }
416
Jerry Zhangf5e319a2018-05-04 11:24:10 -0700417 if (android::base::GetBoolProperty("ro.boot.quiescent", false)) {
418 printf("Quiescent recovery mode.\n");
419 device->ResetUI(new StubRecoveryUI());
420 } else {
421 if (!device->GetUI()->Init(locale)) {
422 printf("Failed to initialize UI; using stub UI instead.\n");
423 device->ResetUI(new StubRecoveryUI());
424 }
425 }
426 ui = device->GetUI();
427
428 if (!has_cache) {
429 device->RemoveMenuItemForAction(Device::WIPE_CACHE);
430 }
431
Yifan Hongd17174c2018-11-16 12:49:33 -0800432 if (!android::base::GetBoolProperty("ro.boot.dynamic_partitions", false)) {
Hridya Valsarajudaa301e2018-09-18 14:48:01 -0700433 device->RemoveMenuItemForAction(Device::ENTER_FASTBOOT);
434 }
435
Jerry Zhangf5e319a2018-05-04 11:24:10 -0700436 ui->SetBackground(RecoveryUI::NONE);
437 if (show_text) ui->ShowText(true);
438
Hridya Valsaraju20c81b32018-07-27 22:09:12 -0700439 LOG(INFO) << "Starting recovery (pid " << getpid() << ") on " << ctime(&start);
440 LOG(INFO) << "locale is [" << locale << "]";
441
Jerry Zhangf5e319a2018-05-04 11:24:10 -0700442 sehandle = selinux_android_file_context_handle();
443 selinux_android_set_sehandle(sehandle);
444 if (!sehandle) {
445 ui->Print("Warning: No file_contexts\n");
446 }
447
Hridya Valsaraju20c81b32018-07-27 22:09:12 -0700448 std::atomic<Device::BuiltinAction> action;
449 std::thread listener_thread(ListenRecoverySocket, ui, std::ref(action));
450 listener_thread.detach();
Jerry Zhangf5e319a2018-05-04 11:24:10 -0700451
Jerry Zhangf5e319a2018-05-04 11:24:10 -0700452 while (true) {
Hridya Valsaraju20c81b32018-07-27 22:09:12 -0700453 std::string usb_config = fastboot ? "fastboot" : is_ro_debuggable() ? "adb" : "none";
454 std::string usb_state = android::base::GetProperty("sys.usb.state", "none");
455 if (usb_config != usb_state) {
456 if (!SetUsbConfig("none")) {
457 LOG(ERROR) << "Failed to clear USB config";
458 }
459 if (!SetUsbConfig(usb_config)) {
460 LOG(ERROR) << "Failed to set USB config to " << usb_config;
461 }
462 }
463
David Anderson983e2d52019-01-02 11:35:38 -0800464 ui->SetEnableFastbootdLogo(fastboot);
465
Hridya Valsaraju20c81b32018-07-27 22:09:12 -0700466 auto ret = fastboot ? StartFastboot(device, args) : start_recovery(device, args);
467
468 if (ret == Device::KEY_INTERRUPTED) {
469 ret = action.exchange(ret);
470 if (ret == Device::NO_ACTION) {
471 continue;
472 }
473 }
474 switch (ret) {
475 case Device::SHUTDOWN:
476 ui->Print("Shutting down...\n");
477 android::base::SetProperty(ANDROID_RB_PROPERTY, "shutdown,");
478 break;
479
480 case Device::REBOOT_BOOTLOADER:
481 ui->Print("Rebooting to bootloader...\n");
482 android::base::SetProperty(ANDROID_RB_PROPERTY, "reboot,bootloader");
483 break;
484
485 case Device::ENTER_FASTBOOT:
David Anderson2b2f4232018-10-29 18:48:56 -0700486 if (logical_partitions_mapped()) {
487 ui->Print("Partitions may be mounted - rebooting to enter fastboot.");
488 android::base::SetProperty(ANDROID_RB_PROPERTY, "reboot,fastboot");
489 } else {
490 LOG(INFO) << "Entering fastboot";
491 fastboot = true;
492 }
Hridya Valsaraju20c81b32018-07-27 22:09:12 -0700493 break;
494
495 case Device::ENTER_RECOVERY:
496 LOG(INFO) << "Entering recovery";
497 fastboot = false;
498 break;
499
500 default:
501 ui->Print("Rebooting...\n");
502 reboot("reboot,");
503 break;
504 }
Jerry Zhangf5e319a2018-05-04 11:24:10 -0700505 }
Hridya Valsaraju20c81b32018-07-27 22:09:12 -0700506
Jerry Zhangf5e319a2018-05-04 11:24:10 -0700507 // Should be unreachable.
508 return EXIT_SUCCESS;
Tao Bao6d99d4b2018-04-25 16:47:04 -0700509}