Alex Deymo | 763e7db | 2015-08-27 21:08:08 -0700 | [diff] [blame] | 1 | // |
| 2 | // Copyright (C) 2015 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 | |
Alex Deymo | 39910dc | 2015-11-09 17:04:30 -0800 | [diff] [blame] | 17 | #ifndef UPDATE_ENGINE_COMMON_FAKE_BOOT_CONTROL_H_ |
| 18 | #define UPDATE_ENGINE_COMMON_FAKE_BOOT_CONTROL_H_ |
Alex Deymo | 763e7db | 2015-08-27 21:08:08 -0700 | [diff] [blame] | 19 | |
| 20 | #include <map> |
Yifan Hong | daac732 | 2019-11-07 10:48:26 -0800 | [diff] [blame] | 21 | #include <memory> |
Alex Deymo | 763e7db | 2015-08-27 21:08:08 -0700 | [diff] [blame] | 22 | #include <string> |
| 23 | #include <vector> |
| 24 | |
| 25 | #include <base/time/time.h> |
| 26 | |
Alex Deymo | 39910dc | 2015-11-09 17:04:30 -0800 | [diff] [blame] | 27 | #include "update_engine/common/boot_control_interface.h" |
Yifan Hong | daac732 | 2019-11-07 10:48:26 -0800 | [diff] [blame] | 28 | #include "update_engine/common/dynamic_partition_control_stub.h" |
Alex Deymo | 763e7db | 2015-08-27 21:08:08 -0700 | [diff] [blame] | 29 | |
| 30 | namespace chromeos_update_engine { |
| 31 | |
| 32 | // Implements a fake bootloader control interface used for testing. |
| 33 | class FakeBootControl : public BootControlInterface { |
| 34 | public: |
| 35 | FakeBootControl() { |
| 36 | SetNumSlots(num_slots_); |
| 37 | // The current slot should be bootable. |
| 38 | is_bootable_[current_slot_] = true; |
Yifan Hong | daac732 | 2019-11-07 10:48:26 -0800 | [diff] [blame] | 39 | |
| 40 | dynamic_partition_control_.reset(new DynamicPartitionControlStub()); |
Alex Deymo | 763e7db | 2015-08-27 21:08:08 -0700 | [diff] [blame] | 41 | } |
| 42 | |
| 43 | // BootControlInterface overrides. |
| 44 | unsigned int GetNumSlots() const override { return num_slots_; } |
| 45 | BootControlInterface::Slot GetCurrentSlot() const override { |
| 46 | return current_slot_; |
| 47 | } |
| 48 | |
| 49 | bool GetPartitionDevice(const std::string& partition_name, |
| 50 | BootControlInterface::Slot slot, |
| 51 | std::string* device) const override { |
| 52 | if (slot >= num_slots_) |
| 53 | return false; |
| 54 | auto part_it = devices_[slot].find(partition_name); |
| 55 | if (part_it == devices_[slot].end()) |
| 56 | return false; |
| 57 | *device = part_it->second; |
| 58 | return true; |
| 59 | } |
| 60 | |
| 61 | bool IsSlotBootable(BootControlInterface::Slot slot) const override { |
| 62 | return slot < num_slots_ && is_bootable_[slot]; |
| 63 | } |
| 64 | |
| 65 | bool MarkSlotUnbootable(BootControlInterface::Slot slot) override { |
| 66 | if (slot >= num_slots_) |
| 67 | return false; |
| 68 | is_bootable_[slot] = false; |
| 69 | return true; |
| 70 | } |
| 71 | |
Alex Deymo | 31d95ac | 2015-09-17 11:56:18 -0700 | [diff] [blame] | 72 | bool SetActiveBootSlot(Slot slot) override { return true; } |
| 73 | |
Alex Deymo | aa26f62 | 2015-09-16 18:21:27 -0700 | [diff] [blame] | 74 | bool MarkBootSuccessfulAsync(base::Callback<void(bool)> callback) override { |
| 75 | // We run the callback directly from here to avoid having to setup a message |
| 76 | // loop in the test environment. |
| 77 | callback.Run(true); |
| 78 | return true; |
| 79 | } |
| 80 | |
Alex Deymo | 763e7db | 2015-08-27 21:08:08 -0700 | [diff] [blame] | 81 | // Setters |
| 82 | void SetNumSlots(unsigned int num_slots) { |
| 83 | num_slots_ = num_slots; |
| 84 | is_bootable_.resize(num_slots_, false); |
| 85 | devices_.resize(num_slots_); |
| 86 | } |
| 87 | |
Amin Hassani | b268959 | 2019-01-13 17:04:28 -0800 | [diff] [blame] | 88 | void SetCurrentSlot(BootControlInterface::Slot slot) { current_slot_ = slot; } |
Alex Deymo | 763e7db | 2015-08-27 21:08:08 -0700 | [diff] [blame] | 89 | |
Chih-Hung Hsieh | 5c6bb1d | 2016-07-27 13:33:15 -0700 | [diff] [blame] | 90 | void SetPartitionDevice(const std::string& partition_name, |
Alex Deymo | 763e7db | 2015-08-27 21:08:08 -0700 | [diff] [blame] | 91 | BootControlInterface::Slot slot, |
Chih-Hung Hsieh | 5c6bb1d | 2016-07-27 13:33:15 -0700 | [diff] [blame] | 92 | const std::string& device) { |
Alex Deymo | 763e7db | 2015-08-27 21:08:08 -0700 | [diff] [blame] | 93 | DCHECK(slot < num_slots_); |
| 94 | devices_[slot][partition_name] = device; |
| 95 | } |
| 96 | |
| 97 | void SetSlotBootable(BootControlInterface::Slot slot, bool bootable) { |
| 98 | DCHECK(slot < num_slots_); |
| 99 | is_bootable_[slot] = bootable; |
| 100 | } |
| 101 | |
Yifan Hong | daac732 | 2019-11-07 10:48:26 -0800 | [diff] [blame] | 102 | DynamicPartitionControlInterface* GetDynamicPartitionControl() { |
| 103 | return dynamic_partition_control_.get(); |
| 104 | } |
| 105 | |
Alex Deymo | 763e7db | 2015-08-27 21:08:08 -0700 | [diff] [blame] | 106 | private: |
| 107 | BootControlInterface::Slot num_slots_{2}; |
| 108 | BootControlInterface::Slot current_slot_{0}; |
| 109 | |
| 110 | std::vector<bool> is_bootable_; |
| 111 | std::vector<std::map<std::string, std::string>> devices_; |
| 112 | |
Yifan Hong | daac732 | 2019-11-07 10:48:26 -0800 | [diff] [blame] | 113 | std::unique_ptr<DynamicPartitionControlInterface> dynamic_partition_control_; |
| 114 | |
Alex Deymo | 763e7db | 2015-08-27 21:08:08 -0700 | [diff] [blame] | 115 | DISALLOW_COPY_AND_ASSIGN(FakeBootControl); |
| 116 | }; |
| 117 | |
| 118 | } // namespace chromeos_update_engine |
| 119 | |
Alex Deymo | 39910dc | 2015-11-09 17:04:30 -0800 | [diff] [blame] | 120 | #endif // UPDATE_ENGINE_COMMON_FAKE_BOOT_CONTROL_H_ |