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
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
use crate::{common::Author, quorum_cert::QuorumCert};
use anyhow::{ensure, Context};
use diem_crypto::ed25519::Ed25519Signature;
use diem_crypto_derive::{BCSCryptoHash, CryptoHasher};
use diem_types::{
block_info::Round, validator_signer::ValidatorSigner, validator_verifier::ValidatorVerifier,
};
use serde::{Deserialize, Serialize};
use std::{
collections::BTreeMap,
fmt::{Display, Formatter},
};
#[derive(Clone, Debug, Deserialize, Eq, PartialEq, Serialize)]
pub struct TwoChainTimeout {
epoch: u64,
round: Round,
quorum_cert: QuorumCert,
}
impl TwoChainTimeout {
pub fn new(epoch: u64, round: Round, quorum_cert: QuorumCert) -> Self {
Self {
epoch,
round,
quorum_cert,
}
}
pub fn epoch(&self) -> u64 {
self.epoch
}
pub fn round(&self) -> Round {
self.round
}
pub fn hqc_round(&self) -> Round {
self.quorum_cert.certified_block().round()
}
pub fn quorum_cert(&self) -> &QuorumCert {
&self.quorum_cert
}
pub fn sign(&self, signer: &ValidatorSigner) -> Ed25519Signature {
signer.sign(&self.signing_format())
}
pub fn signing_format(&self) -> TimeoutSigningRepr {
TimeoutSigningRepr {
epoch: self.epoch(),
round: self.round(),
hqc_round: self.hqc_round(),
}
}
}
impl Display for TwoChainTimeout {
fn fmt(&self, f: &mut Formatter) -> std::fmt::Result {
write!(
f,
"Timeout: [epoch: {}, round: {}, hqc_round: {}]",
self.epoch,
self.round,
self.hqc_round(),
)
}
}
#[derive(Serialize, Deserialize, CryptoHasher, BCSCryptoHash)]
pub struct TimeoutSigningRepr {
pub epoch: u64,
pub round: Round,
pub hqc_round: Round,
}
#[derive(Debug, Clone, Serialize, Deserialize, Eq, PartialEq)]
pub struct TwoChainTimeoutCertificate {
timeout: TwoChainTimeout,
signatures: BTreeMap<Author, (Round, Ed25519Signature)>,
}
impl Display for TwoChainTimeoutCertificate {
fn fmt(&self, f: &mut Formatter) -> std::fmt::Result {
write!(
f,
"TimeoutCertificate[epoch: {}, round: {}, hqc_round: {}]",
self.timeout.epoch(),
self.timeout.round(),
self.timeout.hqc_round(),
)
}
}
impl TwoChainTimeoutCertificate {
pub fn new(timeout: TwoChainTimeout) -> Self {
Self {
timeout,
signatures: BTreeMap::new(),
}
}
pub fn verify(&self, validators: &ValidatorVerifier) -> anyhow::Result<()> {
let hqc_round = self.timeout.hqc_round();
ensure!(
hqc_round < self.timeout.round(),
"Timeout round should be larger than the QC round"
);
self.timeout.quorum_cert().verify(validators)?;
let mut signed_round = 0;
validators.check_voting_power(self.signatures.keys())?;
for (author, (qc_round, signature)) in &self.signatures {
let t = TimeoutSigningRepr {
epoch: self.timeout.epoch(),
round: self.timeout.round(),
hqc_round: *qc_round,
};
validators
.verify(*author, &t, signature)
.with_context(|| format!("Failed to verify {}'s TimeoutSigningRepr", *author))?;
signed_round = std::cmp::max(signed_round, *qc_round);
}
ensure!(
hqc_round == signed_round,
"Inconsistent hqc round, qc has round {}, highest signed round {}",
hqc_round,
signed_round
);
Ok(())
}
pub fn epoch(&self) -> u64 {
self.timeout.epoch()
}
pub fn round(&self) -> Round {
self.timeout.round()
}
pub fn highest_hqc_round(&self) -> Round {
self.timeout.hqc_round()
}
pub fn signers(&self) -> impl Iterator<Item = &Author> {
self.signatures.iter().map(|(k, _)| k)
}
pub fn add(&mut self, author: Author, timeout: TwoChainTimeout, signature: Ed25519Signature) {
debug_assert_eq!(
self.timeout.epoch(),
timeout.epoch(),
"Timeout should have the same epoch as TimeoutCert"
);
debug_assert_eq!(
self.timeout.round(),
timeout.round(),
"Timeout should have the same round as TimeoutCert"
);
let hqc_round = timeout.hqc_round();
if timeout.hqc_round() > self.timeout.hqc_round() {
self.timeout = timeout;
}
self.signatures.insert(author, (hqc_round, signature));
}
}
#[test]
fn test_2chain_timeout_certificate() {
use crate::vote_data::VoteData;
use diem_crypto::hash::CryptoHash;
use diem_types::{
block_info::BlockInfo,
ledger_info::{LedgerInfo, LedgerInfoWithSignatures},
validator_verifier::random_validator_verifier,
};
let num_nodes = 4;
let (signers, validators) = random_validator_verifier(num_nodes, None, false);
let quorum_size = validators.quorum_voting_power() as usize;
let generate_quorum = |round, num_of_signature| {
let vote_data = VoteData::new(BlockInfo::random(round), BlockInfo::random(0));
let mut ledger_info = LedgerInfoWithSignatures::new(
LedgerInfo::new(BlockInfo::empty(), vote_data.hash()),
BTreeMap::new(),
);
for signer in &signers[0..num_of_signature] {
let signature = signer.sign(ledger_info.ledger_info());
ledger_info.add_signature(signer.author(), signature);
}
QuorumCert::new(vote_data, ledger_info)
};
let generate_timeout =
|round, qc_round| TwoChainTimeout::new(1, round, generate_quorum(qc_round, quorum_size));
let timeouts: Vec<_> = (1..=3)
.map(|qc_round| generate_timeout(4, qc_round))
.collect();
let mut valid_timeout_cert = TwoChainTimeoutCertificate::new(timeouts[0].clone());
for (timeout, signer) in timeouts.iter().zip(&signers) {
valid_timeout_cert.add(signer.author(), timeout.clone(), timeout.sign(signer));
}
valid_timeout_cert.verify(&validators).unwrap();
let mut invalid_timeout_cert = valid_timeout_cert.clone();
invalid_timeout_cert.timeout.round = 1;
invalid_timeout_cert.verify(&validators).unwrap_err();
let mut invalid_timeout_cert = valid_timeout_cert.clone();
invalid_timeout_cert
.signatures
.get_mut(&signers[0].author())
.unwrap()
.1 = Ed25519Signature::dummy_signature();
invalid_timeout_cert.verify(&validators).unwrap_err();
let mut invalid_timeout_cert = valid_timeout_cert.clone();
invalid_timeout_cert
.signatures
.remove(&signers[0].author())
.unwrap();
invalid_timeout_cert.verify(&validators).unwrap_err();
let mut invalid_timeout_cert = valid_timeout_cert.clone();
invalid_timeout_cert.timeout.quorum_cert = generate_quorum(2, quorum_size);
invalid_timeout_cert.verify(&validators).unwrap_err();
let mut invalid_timeout_cert = valid_timeout_cert;
invalid_timeout_cert.timeout.quorum_cert = generate_quorum(3, quorum_size - 1);
invalid_timeout_cert.verify(&validators).unwrap_err();
}