-
Notifications
You must be signed in to change notification settings - Fork 224
/
verifier.rs
239 lines (218 loc) · 7.73 KB
/
verifier.rs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
//! Provides an interface and default implementation of the `Verifier` component
use crate::operations::voting_power::VotingPowerTally;
use crate::predicates as preds;
use crate::types::{TrustedBlockState, UntrustedBlockState};
use crate::{
errors::ErrorExt,
light_client::Options,
operations::{
CommitValidator, Hasher, ProdCommitValidator, ProdHasher, ProdVotingPowerCalculator,
VotingPowerCalculator,
},
types::Time,
};
use preds::{
errors::{VerificationError, VerificationErrorDetail},
ProdPredicates, VerificationPredicates,
};
use serde::{Deserialize, Serialize};
/// Represents the result of the verification performed by the
/// verifier component.
#[derive(Debug, Serialize, Deserialize, PartialEq, Eq)]
pub enum Verdict {
/// Verification succeeded, the block is valid.
Success,
/// The minimum voting power threshold is not reached,
/// the block cannot be trusted yet.
NotEnoughTrust(VotingPowerTally),
/// Verification failed, the block is invalid.
Invalid(VerificationErrorDetail),
}
impl From<Result<(), VerificationError>> for Verdict {
fn from(result: Result<(), VerificationError>) -> Self {
match result {
Ok(()) => Self::Success,
Err(VerificationError(e, _)) => match e.not_enough_trust() {
Some(tally) => Self::NotEnoughTrust(tally),
_ => Self::Invalid(e),
},
}
}
}
/// The verifier checks:
///
/// a) whether a given untrusted light block is valid, and
/// b) whether a given untrusted light block should be trusted
/// based on a previously verified block.
///
/// ## Implements
/// - [TMBC-VAL-CONTAINS-CORR.1]
/// - [TMBC-VAL-COMMIT.1]
pub trait Verifier: Send + Sync {
/// Perform the verification.
fn verify(
&self,
untrusted: UntrustedBlockState<'_>,
trusted: TrustedBlockState<'_>,
options: &Options,
now: Time,
) -> Verdict;
}
macro_rules! verdict {
($e:expr) => {
let result = $e;
if result.is_err() {
return result.into();
}
};
}
/// Predicate verifier encapsulating components necessary to facilitate
/// verification.
#[derive(Debug, Clone, PartialEq, Eq)]
pub struct PredicateVerifier<P, C, V, H> {
predicates: P,
voting_power_calculator: C,
commit_validator: V,
hasher: H,
}
impl<P, C, V, H> Default for PredicateVerifier<P, C, V, H>
where
P: Default,
C: Default,
V: Default,
H: Default,
{
fn default() -> Self {
Self {
predicates: P::default(),
voting_power_calculator: C::default(),
commit_validator: V::default(),
hasher: H::default(),
}
}
}
impl<P, C, V, H> PredicateVerifier<P, C, V, H>
where
P: VerificationPredicates,
C: VotingPowerCalculator,
V: CommitValidator,
H: Hasher,
{
/// Constructor.
pub fn new(predicates: P, voting_power_calculator: C, commit_validator: V, hasher: H) -> Self {
Self {
predicates,
voting_power_calculator,
commit_validator,
hasher,
}
}
}
impl<P, C, V, H> Verifier for PredicateVerifier<P, C, V, H>
where
P: VerificationPredicates,
C: VotingPowerCalculator,
V: CommitValidator,
H: Hasher,
{
/// Validate the given light block state.
///
/// - Ensure the latest trusted header hasn't expired
/// - Ensure the header validator hashes match the given validators
/// - Ensure the header next validator hashes match the given next
/// validators
/// - Additional implementation specific validation via `commit_validator`
/// - Check that the untrusted block is more recent than the trusted state
/// - If the untrusted block is the very next block after the trusted block,
/// check that their (next) validator sets hashes match.
/// - Otherwise, ensure that the untrusted block has a greater height than
/// the trusted block.
///
/// **NOTE**: If the untrusted state's `next_validators` field is `None`,
/// this will not (and will not be able to) check whether the untrusted
/// state's `next_validators_hash` field is valid.
fn verify(
&self,
untrusted: UntrustedBlockState<'_>,
trusted: TrustedBlockState<'_>,
options: &Options,
now: Time,
) -> Verdict {
// Ensure the latest trusted header hasn't expired
verdict!(self.predicates.is_within_trust_period(
trusted.header_time,
options.trusting_period,
now,
));
// Ensure the header isn't from a future time
verdict!(self.predicates.is_header_from_past(
untrusted.signed_header.header.time,
options.clock_drift,
now,
));
// Ensure the header validator hashes match the given validators
verdict!(self.predicates.validator_sets_match(
untrusted.validators,
untrusted.signed_header.header.validators_hash,
&self.hasher,
));
// TODO(thane): Is this check necessary for IBC?
if let Some(untrusted_next_validators) = untrusted.next_validators {
// Ensure the header next validator hashes match the given next validators
verdict!(self.predicates.next_validators_match(
untrusted_next_validators,
untrusted.signed_header.header.next_validators_hash,
&self.hasher,
));
}
// Ensure the header matches the commit
verdict!(self.predicates.header_matches_commit(
&untrusted.signed_header.header,
untrusted.signed_header.commit.block_id.hash,
&self.hasher,
));
// Additional implementation specific validation
verdict!(self.predicates.valid_commit(
untrusted.signed_header,
untrusted.validators,
&self.commit_validator,
));
// Check that the untrusted block is more recent than the trusted state
verdict!(self
.predicates
.is_monotonic_bft_time(untrusted.signed_header.header.time, trusted.header_time,));
let trusted_next_height = trusted.height.increment();
if untrusted.height() == trusted_next_height {
// If the untrusted block is the very next block after the trusted block,
// check that their (next) validator sets hashes match.
verdict!(self.predicates.valid_next_validator_set(
untrusted.signed_header.header.validators_hash,
trusted.next_validators_hash,
));
} else {
// Otherwise, ensure that the untrusted block has a greater height than
// the trusted block.
verdict!(self
.predicates
.is_monotonic_height(untrusted.signed_header.header.height, trusted.height));
// Check there is enough overlap between the validator sets of
// the trusted and untrusted blocks.
verdict!(self.predicates.has_sufficient_validators_overlap(
untrusted.signed_header,
trusted.next_validators,
&options.trust_threshold,
&self.voting_power_calculator,
));
}
// Verify that more than 2/3 of the validators correctly committed the block.
verdict!(self.predicates.has_sufficient_signers_overlap(
untrusted.signed_header,
untrusted.validators,
&self.voting_power_calculator,
));
Verdict::Success
}
}
/// The default production implementation of the [`PredicateVerifier`].
pub type ProdVerifier =
PredicateVerifier<ProdPredicates, ProdVotingPowerCalculator, ProdCommitValidator, ProdHasher>;