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
use crate::{
counters::{COMMITTED_PROPOSALS_IN_WINDOW, COMMITTED_VOTES_IN_WINDOW},
liveness::proposer_election::{next, ProposerElection},
};
use consensus_types::{
block::Block,
common::{Author, Round},
};
use diem_crypto::HashValue;
use diem_infallible::Mutex;
use diem_logger::prelude::*;
use diem_types::block_metadata::{new_block_event_key, NewBlockEvent};
use std::{
cmp::Ordering,
collections::{HashMap, HashSet},
sync::Arc,
};
use storage_interface::{DbReader, Order};
pub trait MetadataBackend: Send + Sync {
fn get_block_metadata(&self, target_round: Round) -> Vec<NewBlockEvent>;
}
pub struct DiemDBBackend {
window_size: usize,
diem_db: Arc<dyn DbReader>,
window: Mutex<Vec<(u64, NewBlockEvent)>>,
}
impl DiemDBBackend {
pub fn new(window_size: usize, diem_db: Arc<dyn DbReader>) -> Self {
Self {
window_size,
diem_db,
window: Mutex::new(vec![]),
}
}
fn refresh_window(&self, target_round: Round) -> anyhow::Result<()> {
let buffer = 10;
let events = self.diem_db.get_events(
&new_block_event_key(),
u64::max_value(),
Order::Descending,
self.window_size as u64 + buffer,
)?;
let mut result = vec![];
for (v, e) in events {
let e = bcs::from_bytes::<NewBlockEvent>(e.event_data())?;
if e.round() <= target_round && result.len() < self.window_size {
result.push((v, e));
}
}
*self.window.lock() = result;
Ok(())
}
}
impl MetadataBackend for DiemDBBackend {
fn get_block_metadata(&self, target_round: Round) -> Vec<NewBlockEvent> {
let (known_version, known_round) = self
.window
.lock()
.first()
.map(|(v, e)| (*v, e.round()))
.unwrap_or((0, 0));
if !(known_round == target_round
|| known_version == self.diem_db.get_latest_version().unwrap_or(0))
{
if let Err(e) = self.refresh_window(target_round) {
error!(
error = ?e, "[leader reputation] Fail to refresh window",
);
return vec![];
}
}
self.window
.lock()
.clone()
.into_iter()
.map(|(_, e)| e)
.collect()
}
}
pub trait ReputationHeuristic: Send + Sync {
fn get_weights(&self, candidates: &[Author], history: &[NewBlockEvent]) -> Vec<u64>;
}
pub struct ActiveInactiveHeuristic {
author: Author,
active_weight: u64,
inactive_weight: u64,
}
impl ActiveInactiveHeuristic {
pub fn new(author: Author, active_weight: u64, inactive_weight: u64) -> Self {
Self {
author,
active_weight,
inactive_weight,
}
}
}
impl ReputationHeuristic for ActiveInactiveHeuristic {
fn get_weights(&self, candidates: &[Author], history: &[NewBlockEvent]) -> Vec<u64> {
let mut committed_proposals: usize = 0;
let mut committed_votes: usize = 0;
let set = history.iter().fold(HashSet::new(), |mut set, meta| {
set.insert(meta.proposer());
for vote in meta.votes() {
set.insert(vote);
if vote == self.author {
committed_votes = committed_votes
.checked_add(1)
.expect("Should not overflow the number of committed votes in a window");
}
}
if meta.proposer() == self.author {
committed_proposals = committed_proposals
.checked_add(1)
.expect("Should not overflow the number of committed proposals in a window");
}
set
});
COMMITTED_PROPOSALS_IN_WINDOW.set(committed_proposals as i64);
COMMITTED_VOTES_IN_WINDOW.set(committed_votes as i64);
candidates
.iter()
.map(|author| {
if set.contains(author) {
self.active_weight
} else {
self.inactive_weight
}
})
.collect()
}
}
pub struct LeaderReputation {
proposers: Vec<Author>,
backend: Box<dyn MetadataBackend>,
heuristic: Box<dyn ReputationHeuristic>,
already_proposed: Mutex<(Round, HashMap<Author, HashValue>)>,
}
impl LeaderReputation {
pub fn new(
proposers: Vec<Author>,
backend: Box<dyn MetadataBackend>,
heuristic: Box<dyn ReputationHeuristic>,
) -> Self {
Self {
proposers,
backend,
heuristic,
already_proposed: Mutex::new((0, HashMap::new())),
}
}
}
impl ProposerElection for LeaderReputation {
fn get_valid_proposer(&self, round: Round) -> Author {
let target_round = if round >= 4 { round - 4 } else { 0 };
let sliding_window = self.backend.get_block_metadata(target_round);
let mut weights = self.heuristic.get_weights(&self.proposers, &sliding_window);
assert_eq!(weights.len(), self.proposers.len());
let mut total_weight = 0;
for w in &mut weights {
total_weight += *w;
*w = total_weight;
}
let mut state = round.to_le_bytes().to_vec();
let chosen_weight = next(&mut state) % total_weight;
let chosen_index = weights
.binary_search_by(|w| {
if *w <= chosen_weight {
Ordering::Less
} else {
Ordering::Greater
}
})
.unwrap_err();
self.proposers[chosen_index]
}
fn is_valid_proposal(&self, block: &Block) -> bool {
block.author().map_or(false, |author| {
let valid = self.is_valid_proposer(author, block.round());
let mut already_proposed = self.already_proposed.lock();
if !valid {
return false;
}
match block.round().cmp(&already_proposed.0) {
Ordering::Greater => {
already_proposed.0 = block.round();
already_proposed.1.clear();
already_proposed.1.insert(author, block.id());
true
}
Ordering::Equal => {
if already_proposed
.1
.get(&author)
.map_or(false, |id| *id != block.id())
{
error!(
SecurityEvent::InvalidConsensusProposal,
"Multiple proposals from {} for round {}",
author,
block.round()
);
false
} else {
already_proposed.1.insert(author, block.id());
true
}
}
Ordering::Less => false,
}
})
}
}