Kelvin Zhang | 50bac65 | 2020-09-28 15:51:41 -0400 | [diff] [blame] | 1 | // |
| 2 | // Copyright (C) 2020 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 | #ifndef UPDATE_ENGINE_PARTITION_WRITER_H_ |
| 18 | #define UPDATE_ENGINE_PARTITION_WRITER_H_ |
| 19 | |
| 20 | #include <cstdint> |
Kelvin Zhang | 94f51cc | 2020-09-25 11:34:49 -0400 | [diff] [blame] | 21 | #include <memory> |
Kelvin Zhang | 50bac65 | 2020-09-28 15:51:41 -0400 | [diff] [blame] | 22 | #include <string> |
| 23 | |
| 24 | #include <brillo/secure_blob.h> |
| 25 | #include <gtest/gtest_prod.h> |
| 26 | |
| 27 | #include "update_engine/common/dynamic_partition_control_interface.h" |
Kelvin Zhang | 94f51cc | 2020-09-25 11:34:49 -0400 | [diff] [blame] | 28 | #include "update_engine/payload_consumer/extent_writer.h" |
Kelvin Zhang | 50bac65 | 2020-09-28 15:51:41 -0400 | [diff] [blame] | 29 | #include "update_engine/payload_consumer/file_descriptor.h" |
| 30 | #include "update_engine/payload_consumer/install_plan.h" |
| 31 | #include "update_engine/update_metadata.pb.h" |
| 32 | namespace chromeos_update_engine { |
| 33 | class PartitionWriter { |
| 34 | public: |
| 35 | PartitionWriter(const PartitionUpdate& partition_update, |
| 36 | const InstallPlan::Partition& install_part, |
| 37 | DynamicPartitionControlInterface* dynamic_control, |
| 38 | size_t block_size, |
| 39 | bool is_interactive); |
Kelvin Zhang | 94f51cc | 2020-09-25 11:34:49 -0400 | [diff] [blame] | 40 | virtual ~PartitionWriter(); |
Kelvin Zhang | 50bac65 | 2020-09-28 15:51:41 -0400 | [diff] [blame] | 41 | static bool ValidateSourceHash(const brillo::Blob& calculated_hash, |
| 42 | const InstallOperation& operation, |
| 43 | const FileDescriptorPtr source_fd, |
| 44 | ErrorCode* error); |
| 45 | |
| 46 | // Perform necessary initialization work before InstallOperation can be |
| 47 | // applied to this partition |
Kelvin Zhang | 94f51cc | 2020-09-25 11:34:49 -0400 | [diff] [blame] | 48 | [[nodiscard]] virtual bool Init(const InstallPlan* install_plan, |
| 49 | bool source_may_exist); |
Kelvin Zhang | 50bac65 | 2020-09-28 15:51:41 -0400 | [diff] [blame] | 50 | |
Kelvin Zhang | ec205cf | 2020-09-28 13:23:40 -0400 | [diff] [blame] | 51 | // Close partition writer, when calling this function there's no guarantee |
| 52 | // that all |InstallOperations| are sent to |PartitionWriter|. This function |
| 53 | // will be called even if we are pausing/aborting the update. |
Kelvin Zhang | 50bac65 | 2020-09-28 15:51:41 -0400 | [diff] [blame] | 54 | int Close(); |
| 55 | |
| 56 | // These perform a specific type of operation and return true on success. |
| 57 | // |error| will be set if source hash mismatch, otherwise |error| might not be |
| 58 | // set even if it fails. |
Kelvin Zhang | 94f51cc | 2020-09-25 11:34:49 -0400 | [diff] [blame] | 59 | [[nodiscard]] virtual bool PerformReplaceOperation( |
| 60 | const InstallOperation& operation, const void* data, size_t count); |
| 61 | [[nodiscard]] virtual bool PerformZeroOrDiscardOperation( |
Kelvin Zhang | 50bac65 | 2020-09-28 15:51:41 -0400 | [diff] [blame] | 62 | const InstallOperation& operation); |
| 63 | |
Kelvin Zhang | 94f51cc | 2020-09-25 11:34:49 -0400 | [diff] [blame] | 64 | [[nodiscard]] virtual bool PerformSourceCopyOperation( |
Kelvin Zhang | 50bac65 | 2020-09-28 15:51:41 -0400 | [diff] [blame] | 65 | const InstallOperation& operation, ErrorCode* error); |
Kelvin Zhang | 94f51cc | 2020-09-25 11:34:49 -0400 | [diff] [blame] | 66 | [[nodiscard]] virtual bool PerformSourceBsdiffOperation( |
Kelvin Zhang | 50bac65 | 2020-09-28 15:51:41 -0400 | [diff] [blame] | 67 | const InstallOperation& operation, |
| 68 | ErrorCode* error, |
| 69 | const void* data, |
| 70 | size_t count); |
Kelvin Zhang | 94f51cc | 2020-09-25 11:34:49 -0400 | [diff] [blame] | 71 | [[nodiscard]] virtual bool PerformPuffDiffOperation( |
| 72 | const InstallOperation& operation, |
| 73 | ErrorCode* error, |
| 74 | const void* data, |
| 75 | size_t count); |
| 76 | [[nodiscard]] virtual bool Flush(); |
Kelvin Zhang | 50bac65 | 2020-09-28 15:51:41 -0400 | [diff] [blame] | 77 | |
Kelvin Zhang | ec205cf | 2020-09-28 13:23:40 -0400 | [diff] [blame] | 78 | // |DeltaPerformer| calls this when all Install Ops are sent to partition |
| 79 | // writer. No |Perform*Operation| methods will be called in the future, and |
| 80 | // the partition writer is expected to be closed soon. |
| 81 | [[nodiscard]] virtual bool FinishedInstallOps() { return true; } |
| 82 | |
Kelvin Zhang | 94f51cc | 2020-09-25 11:34:49 -0400 | [diff] [blame] | 83 | protected: |
Kelvin Zhang | 50bac65 | 2020-09-28 15:51:41 -0400 | [diff] [blame] | 84 | friend class PartitionWriterTest; |
| 85 | FRIEND_TEST(PartitionWriterTest, ChooseSourceFDTest); |
| 86 | |
Kelvin Zhang | 3f60d53 | 2020-11-09 13:33:17 -0500 | [diff] [blame^] | 87 | bool OpenSourcePartition(uint32_t source_slot, bool source_may_exist); |
| 88 | |
Kelvin Zhang | 50bac65 | 2020-09-28 15:51:41 -0400 | [diff] [blame] | 89 | bool OpenCurrentECCPartition(); |
| 90 | // For a given operation, choose the source fd to be used (raw device or error |
| 91 | // correction device) based on the source operation hash. |
| 92 | // Returns nullptr if the source hash mismatch cannot be corrected, and set |
| 93 | // the |error| accordingly. |
| 94 | FileDescriptorPtr ChooseSourceFD(const InstallOperation& operation, |
| 95 | ErrorCode* error); |
Kelvin Zhang | 94f51cc | 2020-09-25 11:34:49 -0400 | [diff] [blame] | 96 | [[nodiscard]] virtual std::unique_ptr<ExtentWriter> CreateBaseExtentWriter(); |
Kelvin Zhang | 50bac65 | 2020-09-28 15:51:41 -0400 | [diff] [blame] | 97 | |
| 98 | const PartitionUpdate& partition_update_; |
| 99 | const InstallPlan::Partition& install_part_; |
| 100 | DynamicPartitionControlInterface* dynamic_control_; |
| 101 | // Path to source partition |
| 102 | std::string source_path_; |
| 103 | // Path to target partition |
| 104 | std::string target_path_; |
| 105 | FileDescriptorPtr source_fd_; |
| 106 | FileDescriptorPtr target_fd_; |
| 107 | const bool interactive_; |
| 108 | const size_t block_size_; |
| 109 | // File descriptor of the error corrected source partition. Only set while |
| 110 | // updating partition using a delta payload for a partition where error |
| 111 | // correction is available. The size of the error corrected device is smaller |
| 112 | // than the underlying raw device, since it doesn't include the error |
| 113 | // correction blocks. |
| 114 | FileDescriptorPtr source_ecc_fd_{nullptr}; |
| 115 | |
| 116 | // The total number of operations that failed source hash verification but |
| 117 | // passed after falling back to the error-corrected |source_ecc_fd_| device. |
| 118 | uint64_t source_ecc_recovered_failures_{0}; |
| 119 | |
| 120 | // Whether opening the current partition as an error-corrected device failed. |
| 121 | // Used to avoid re-opening the same source partition if it is not actually |
| 122 | // error corrected. |
| 123 | bool source_ecc_open_failure_{false}; |
| 124 | }; |
Kelvin Zhang | 94f51cc | 2020-09-25 11:34:49 -0400 | [diff] [blame] | 125 | |
| 126 | namespace partition_writer { |
| 127 | // Return a PartitionWriter instance for perform InstallOps on this partition. |
| 128 | // Uses VABCPartitionWriter for Virtual AB Compression |
| 129 | std::unique_ptr<PartitionWriter> CreatePartitionWriter( |
| 130 | const PartitionUpdate& partition_update, |
| 131 | const InstallPlan::Partition& install_part, |
| 132 | DynamicPartitionControlInterface* dynamic_control, |
| 133 | size_t block_size, |
| 134 | bool is_interactive, |
| 135 | bool is_dynamic_partition); |
| 136 | } // namespace partition_writer |
Kelvin Zhang | 50bac65 | 2020-09-28 15:51:41 -0400 | [diff] [blame] | 137 | } // namespace chromeos_update_engine |
| 138 | |
| 139 | #endif |