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
use crate::vote_data::VoteData;
use anyhow::{ensure, Context};
use diem_crypto::{hash::CryptoHash, HashValue};
use diem_types::{
block_info::BlockInfo,
ledger_info::{LedgerInfo, LedgerInfoWithSignatures},
validator_verifier::ValidatorVerifier,
};
use serde::{Deserialize, Serialize};
use std::{
collections::BTreeMap,
fmt::{Display, Formatter},
};
#[derive(Deserialize, Serialize, Clone, Debug, Eq, PartialEq)]
pub struct QuorumCert {
vote_data: VoteData,
signed_ledger_info: LedgerInfoWithSignatures,
}
impl Display for QuorumCert {
fn fmt(&self, f: &mut Formatter) -> std::fmt::Result {
write!(
f,
"QuorumCert: [{}, {}]",
self.vote_data, self.signed_ledger_info
)
}
}
impl QuorumCert {
pub fn new(vote_data: VoteData, signed_ledger_info: LedgerInfoWithSignatures) -> Self {
QuorumCert {
vote_data,
signed_ledger_info,
}
}
pub fn vote_data(&self) -> &VoteData {
&self.vote_data
}
pub fn certified_block(&self) -> &BlockInfo {
self.vote_data().proposed()
}
pub fn parent_block(&self) -> &BlockInfo {
self.vote_data().parent()
}
pub fn ledger_info(&self) -> &LedgerInfoWithSignatures {
&self.signed_ledger_info
}
pub fn commit_info(&self) -> &BlockInfo {
self.ledger_info().ledger_info().commit_info()
}
pub fn ends_epoch(&self) -> bool {
self.signed_ledger_info.ledger_info().ends_epoch()
}
pub fn certificate_for_genesis_from_ledger_info(
ledger_info: &LedgerInfo,
genesis_id: HashValue,
) -> QuorumCert {
let ancestor = BlockInfo::new(
ledger_info
.epoch()
.checked_add(1)
.expect("Integer overflow when creating cert for genesis from ledger info"),
0,
genesis_id,
ledger_info.transaction_accumulator_hash(),
ledger_info.version(),
ledger_info.timestamp_usecs(),
None,
);
let vote_data = VoteData::new(ancestor.clone(), ancestor.clone());
let li = LedgerInfo::new(ancestor, vote_data.hash());
QuorumCert::new(
vote_data,
LedgerInfoWithSignatures::new(li, BTreeMap::new()),
)
}
pub fn verify(&self, validator: &ValidatorVerifier) -> anyhow::Result<()> {
let vote_hash = self.vote_data.hash();
ensure!(
self.ledger_info().ledger_info().consensus_data_hash() == vote_hash,
"Quorum Cert's hash mismatch LedgerInfo"
);
if self.certified_block().round() == 0 {
ensure!(
self.parent_block() == self.certified_block(),
"Genesis QC has inconsistent parent block with certified block"
);
ensure!(
self.certified_block() == self.ledger_info().ledger_info().commit_info(),
"Genesis QC has inconsistent commit block with certified block"
);
ensure!(
self.ledger_info().signatures().is_empty(),
"Genesis QC should not carry signatures"
);
return Ok(());
}
self.ledger_info()
.verify_signatures(validator)
.context("Fail to verify QuorumCert")?;
self.vote_data.verify()?;
Ok(())
}
}