blob: 6a8823a5e4bba9434bbbfba7c74a96a504b80582 [file] [log] [blame]
Alex Deymoaea4c1c2015-08-19 20:24:43 -07001//
2// Copyright (C) 2012 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//
Allie Woodeb9e6d82015-04-17 13:55:30 -070016
Alex Deymo39910dc2015-11-09 17:04:30 -080017#ifndef UPDATE_ENGINE_PAYLOAD_CONSUMER_FILESYSTEM_VERIFIER_ACTION_H_
18#define UPDATE_ENGINE_PAYLOAD_CONSUMER_FILESYSTEM_VERIFIER_ACTION_H_
Allie Woodeb9e6d82015-04-17 13:55:30 -070019
20#include <sys/stat.h>
21#include <sys/types.h>
22
Amin Hassaniabe4a772018-07-26 11:19:10 -070023#include <memory>
Allie Woodeb9e6d82015-04-17 13:55:30 -070024#include <string>
25#include <vector>
26
Alex Vakulenko3f39d5c2015-10-13 09:27:13 -070027#include <brillo/streams/stream.h>
Allie Woodeb9e6d82015-04-17 13:55:30 -070028
Alex Deymo39910dc2015-11-09 17:04:30 -080029#include "update_engine/common/action.h"
30#include "update_engine/common/hash_calculator.h"
31#include "update_engine/payload_consumer/install_plan.h"
Sen Jiang57f91802017-11-14 17:42:13 -080032#include "update_engine/payload_consumer/verity_writer_interface.h"
Allie Woodeb9e6d82015-04-17 13:55:30 -070033
Sen Jiangfef85fd2016-03-25 15:32:49 -070034// This action will hash all the partitions of the target slot involved in the
35// update. The hashes are then verified against the ones in the InstallPlan.
36// If the target hash does not match, the action will fail. In case of failure,
37// the error code will depend on whether the source slot hashes are provided and
38// match.
Allie Woodeb9e6d82015-04-17 13:55:30 -070039
40namespace chromeos_update_engine {
41
Sen Jiangfef85fd2016-03-25 15:32:49 -070042// The step FilesystemVerifier is on. On kVerifyTargetHash it computes the hash
43// on the target partitions based on the already populated size and verifies it
44// matches the one in the target_hash in the InstallPlan.
45// If the hash matches, then we skip the kVerifySourceHash step, otherwise we
46// need to check if the source is the root cause of the mismatch.
47enum class VerifierStep {
Alex Deymoe5e5fe92015-10-05 09:28:19 -070048 kVerifyTargetHash,
Sen Jiang1ad42ad2015-11-17 15:04:02 -080049 kVerifySourceHash,
Allie Woodeb9e6d82015-04-17 13:55:30 -070050};
51
Kelvin Zhang70eef232020-06-12 20:32:40 +000052class FilesystemVerifyDelegate {
53 public:
54 virtual ~FilesystemVerifyDelegate() = default;
55 virtual void OnVerifyProgressUpdate(double progress) = 0;
56};
57
Allie Woodeb9e6d82015-04-17 13:55:30 -070058class FilesystemVerifierAction : public InstallPlanAction {
59 public:
Tianjie24f96092020-06-30 12:26:25 -070060 explicit FilesystemVerifierAction(
61 DynamicPartitionControlInterface* dynamic_control)
62 : verity_writer_(verity_writer::CreateVerityWriter()),
63 dynamic_control_(dynamic_control) {
64 CHECK(dynamic_control_);
65 }
66
Sen Jiang57f91802017-11-14 17:42:13 -080067 ~FilesystemVerifierAction() override = default;
Allie Woodeb9e6d82015-04-17 13:55:30 -070068
69 void PerformAction() override;
70 void TerminateProcessing() override;
71
Kelvin Zhang70eef232020-06-12 20:32:40 +000072 // Used for listening to progress updates
73 void set_delegate(FilesystemVerifyDelegate* delegate) {
74 this->delegate_ = delegate;
75 }
76 [[nodiscard]] FilesystemVerifyDelegate* get_delegate() const {
77 return this->delegate_;
78 }
79
Allie Woodeb9e6d82015-04-17 13:55:30 -070080 // Debugging/logging
81 static std::string StaticType() { return "FilesystemVerifierAction"; }
82 std::string Type() const override { return StaticType(); }
83
84 private:
Amin Hassaniabe4a772018-07-26 11:19:10 -070085 friend class FilesystemVerifierActionTestDelegate;
Alex Deymoe5e5fe92015-10-05 09:28:19 -070086 // Starts the hashing of the current partition. If there aren't any partitions
Sen Jiangfef85fd2016-03-25 15:32:49 -070087 // remaining to be hashed, it finishes the action.
Alex Deymoe5e5fe92015-10-05 09:28:19 -070088 void StartPartitionHashing();
89
Alex Deymob9e8e262015-08-03 20:23:03 -070090 // Schedules the asynchronous read of the filesystem.
91 void ScheduleRead();
Allie Woodeb9e6d82015-04-17 13:55:30 -070092
Alex Deymob9e8e262015-08-03 20:23:03 -070093 // Called from the main loop when a single read from |src_stream_| succeeds or
94 // fails, calling OnReadDoneCallback() and OnReadErrorCallback() respectively.
95 void OnReadDoneCallback(size_t bytes_read);
Alex Vakulenko3f39d5c2015-10-13 09:27:13 -070096 void OnReadErrorCallback(const brillo::Error* error);
Alex Deymob9e8e262015-08-03 20:23:03 -070097
Alex Deymoe5e5fe92015-10-05 09:28:19 -070098 // When the read is done, finalize the hash checking of the current partition
99 // and continue checking the next one.
100 void FinishPartitionHashing();
Allie Woodeb9e6d82015-04-17 13:55:30 -0700101
102 // Cleans up all the variables we use for async operations and tells the
103 // ActionProcessor we're done w/ |code| as passed in. |cancelled_| should be
104 // true if TerminateProcessing() was called.
105 void Cleanup(ErrorCode code);
106
Kelvin Zhang70eef232020-06-12 20:32:40 +0000107 // Invoke delegate callback to report progress, if delegate is not null
108 void UpdateProgress(double progress);
109
Allie Woodeb9e6d82015-04-17 13:55:30 -0700110 // The type of the partition that we are verifying.
Sen Jiangfef85fd2016-03-25 15:32:49 -0700111 VerifierStep verifier_step_ = VerifierStep::kVerifyTargetHash;
Alex Deymoe5e5fe92015-10-05 09:28:19 -0700112
Alex Deymoe5e5fe92015-10-05 09:28:19 -0700113 // The index in the install_plan_.partitions vector of the partition currently
114 // being hashed.
115 size_t partition_index_{0};
Allie Woodeb9e6d82015-04-17 13:55:30 -0700116
Alex Deymob9e8e262015-08-03 20:23:03 -0700117 // If not null, the FileStream used to read from the device.
Alex Vakulenko3f39d5c2015-10-13 09:27:13 -0700118 brillo::StreamPtr src_stream_;
Allie Woodeb9e6d82015-04-17 13:55:30 -0700119
120 // Buffer for storing data we read.
Alex Vakulenko3f39d5c2015-10-13 09:27:13 -0700121 brillo::Blob buffer_;
Allie Woodeb9e6d82015-04-17 13:55:30 -0700122
Alex Deymo20c99202015-07-09 16:14:16 -0700123 bool cancelled_{false}; // true if the action has been cancelled.
Allie Woodeb9e6d82015-04-17 13:55:30 -0700124
Allie Woodeb9e6d82015-04-17 13:55:30 -0700125 // Calculates the hash of the data.
Alex Deymo39910dc2015-11-09 17:04:30 -0800126 std::unique_ptr<HashCalculator> hasher_;
Allie Woodeb9e6d82015-04-17 13:55:30 -0700127
Sen Jiang57f91802017-11-14 17:42:13 -0800128 // Write verity data of the current partition.
129 std::unique_ptr<VerityWriterInterface> verity_writer_;
130
Tianjie24f96092020-06-30 12:26:25 -0700131 // Verifies the untouched dynamic partitions for partial updates.
132 DynamicPartitionControlInterface* dynamic_control_{nullptr};
133
Sen Jiang57f91802017-11-14 17:42:13 -0800134 // Reads and hashes this many bytes from the head of the input stream. When
135 // the partition starts to be hashed, this field is initialized from the
136 // corresponding InstallPlan::Partition size which is the total size
137 // update_engine is expected to write, and may be smaller than the size of the
138 // partition in gpt.
139 uint64_t partition_size_{0};
140
141 // The byte offset that we are reading in the current partition.
142 uint64_t offset_{0};
Allie Woodeb9e6d82015-04-17 13:55:30 -0700143
Kelvin Zhang70eef232020-06-12 20:32:40 +0000144 // An observer that observes progress updates of this action.
145 FilesystemVerifyDelegate* delegate_{};
146
Allie Woodeb9e6d82015-04-17 13:55:30 -0700147 DISALLOW_COPY_AND_ASSIGN(FilesystemVerifierAction);
148};
149
150} // namespace chromeos_update_engine
151
Alex Deymo39910dc2015-11-09 17:04:30 -0800152#endif // UPDATE_ENGINE_PAYLOAD_CONSUMER_FILESYSTEM_VERIFIER_ACTION_H_