| // Copyright 2018 The ChromiumOS Authors |
| // Use of this source code is governed by a BSD-style license that can be |
| // found in the LICENSE file. |
| |
| #include "update_engine/update_boot_flags_action.h" |
| |
| #include <base/functional/bind.h> |
| #include <base/logging.h> |
| |
| #include "update_engine/common/boot_control.h" |
| |
| namespace chromeos_update_engine { |
| |
| bool UpdateBootFlagsAction::updated_boot_flags_ = false; |
| bool UpdateBootFlagsAction::is_running_ = false; |
| |
| void UpdateBootFlagsAction::PerformAction() { |
| if (hardware_->IsRunningFromMiniOs()) { |
| LOG(INFO) << "No need to update boot flags when in MiniOS. Skipping."; |
| processor_->ActionComplete(this, ErrorCode::kSuccess); |
| return; |
| } |
| if (is_running_) { |
| LOG(INFO) << "Update boot flags running, nothing to do."; |
| processor_->ActionComplete(this, ErrorCode::kSuccess); |
| return; |
| } |
| if (updated_boot_flags_) { |
| LOG(INFO) << "Already updated boot flags. Skipping."; |
| processor_->ActionComplete(this, ErrorCode::kSuccess); |
| return; |
| } |
| |
| // This is purely best effort. Failures should be logged by Subprocess. Run |
| // the script asynchronously to avoid blocking the event loop regardless of |
| // the script runtime. |
| is_running_ = true; |
| LOG(INFO) << "Marking booted slot as good."; |
| if (!boot_control_->MarkBootSuccessfulAsync( |
| base::BindOnce(&UpdateBootFlagsAction::CompleteUpdateBootFlags, |
| base::Unretained(this)))) { |
| CompleteUpdateBootFlags(false); |
| } |
| } |
| |
| void UpdateBootFlagsAction::TerminateProcessing() { |
| is_running_ = false; |
| } |
| |
| void UpdateBootFlagsAction::CompleteUpdateBootFlags(bool successful) { |
| if (!successful) { |
| // We ignore the failure for now because if the updating boot flags is flaky |
| // or has a bug in a specific release, then blocking the update can cause |
| // devices to stay behind even though we could have updated the system and |
| // fixed the issue regardless of this failure. |
| // |
| // TODO(ahassani): Add new error code metric for kUpdateBootFlagsFailed. |
| LOG(ERROR) << "Updating boot flags failed, but ignoring its failure."; |
| } |
| |
| // As the callback to MarkBootSuccessfulAsync, this function can still be |
| // called even after the current UpdateBootFlagsAction object get destroyed by |
| // the action processor. In this case, check the value of the static variable |
| // |is_running_| and skip executing the callback function. |
| if (!is_running_) { |
| LOG(INFO) << "UpdateBootFlagsAction is no longer running."; |
| return; |
| } |
| |
| is_running_ = false; |
| |
| updated_boot_flags_ = true; |
| processor_->ActionComplete(this, ErrorCode::kSuccess); |
| } |
| |
| } // namespace chromeos_update_engine |