/* * Copyright (C) 2021 The Android Open Source Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include #include #include #include #include #include "common/libs/fs/shared_fd.h" #include "common/libs/utils/result.h" #include "host/libs/command_util/runner/defs.h" #include "host/libs/command_util/util.h" #include "host/libs/config/cuttlefish_config.h" DEFINE_int32(instance_num, cuttlefish::GetInstance(), "Which instance to restart."); DEFINE_int32( wait_for_launcher, 30, "How many seconds to wait for the launcher to respond to the status " "command. A value of zero means wait indefinitely."); DEFINE_int32(boot_timeout, 1000, "How many seconds to wait for the device to " "reboot."); namespace cuttlefish { namespace { Result RestartCvdMain() { const CuttlefishConfig* config = CF_EXPECT(CuttlefishConfig::Get(), "Failed to obtain config object"); SharedFD monitor_socket = CF_EXPECT( GetLauncherMonitor(*config, FLAGS_instance_num, FLAGS_wait_for_launcher)); LOG(INFO) << "Requesting restart"; CF_EXPECT(RunLauncherAction(monitor_socket, LauncherAction::kRestart, FLAGS_wait_for_launcher)); LOG(INFO) << "Waiting for device to boot up again"; CF_EXPECT(WaitForRead(monitor_socket, FLAGS_boot_timeout)); RunnerExitCodes boot_exit_code = CF_EXPECT(ReadExitCode(monitor_socket)); CF_EXPECT(boot_exit_code != RunnerExitCodes::kVirtualDeviceBootFailed, "Boot failed"); CF_EXPECT(boot_exit_code == RunnerExitCodes::kSuccess, "Unknown response" << static_cast(boot_exit_code)); LOG(INFO) << "Restart successful"; return {}; } } // namespace } // namespace cuttlefish int main(int argc, char** argv) { ::android::base::InitLogging(argv, android::base::StderrLogger); google::ParseCommandLineFlags(&argc, &argv, true); cuttlefish::Result result = cuttlefish::RestartCvdMain(); if (!result.ok()) { LOG(ERROR) << result.error().FormatForEnv(); return EXIT_FAILURE; } return EXIT_SUCCESS; }