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
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
#[cfg(test)]
mod test;
use crate::{
logging::{LogEntry, LogSchema},
types::ProcessedVMOutput,
};
use anyhow::{format_err, Result};
use consensus_types::block::Block;
use diem_crypto::{hash::PRE_GENESIS_BLOCK_ID, HashValue};
use diem_infallible::Mutex;
use diem_logger::prelude::*;
use diem_types::{ledger_info::LedgerInfo, transaction::Transaction};
use executor_types::{Error, ExecutedTrees};
use std::{
collections::HashMap,
sync::{Arc, Weak},
};
use storage_interface::{StartupInfo, TreeState};
pub(crate) struct SpeculationBlock {
id: HashValue,
transactions: Vec<Transaction>,
children: Vec<Arc<Mutex<SpeculationBlock>>>,
output: ProcessedVMOutput,
block_map: Arc<Mutex<HashMap<HashValue, Weak<Mutex<SpeculationBlock>>>>>,
}
impl SpeculationBlock {
pub fn new(
id: HashValue,
transactions: Vec<Transaction>,
output: ProcessedVMOutput,
block_map: Arc<Mutex<HashMap<HashValue, Weak<Mutex<SpeculationBlock>>>>>,
) -> Self {
Self {
id,
transactions,
children: vec![],
output,
block_map,
}
}
pub fn id(&self) -> HashValue {
self.id
}
pub fn transactions(&self) -> &Vec<Transaction> {
&self.transactions
}
pub fn add_child(&mut self, child: Arc<Mutex<SpeculationBlock>>) {
self.children.push(child)
}
pub fn output(&self) -> &ProcessedVMOutput {
&self.output
}
pub fn replace(&mut self, transactions: Vec<Transaction>, output: ProcessedVMOutput) {
self.transactions = transactions;
self.output = output;
self.children = vec![];
}
}
impl Drop for SpeculationBlock {
fn drop(&mut self) {
self.block_map
.lock()
.remove(&self.id())
.expect("Speculation block must exist in block_map before being dropped.");
debug!(
LogSchema::new(LogEntry::SpeculationCache).block_id(self.id()),
"Block dropped"
);
}
}
pub(crate) struct SpeculationCache {
synced_trees: ExecutedTrees,
committed_trees: ExecutedTrees,
committed_block_id: HashValue,
heads: Vec<Arc<Mutex<SpeculationBlock>>>,
block_map: Arc<Mutex<HashMap<HashValue, Weak<Mutex<SpeculationBlock>>>>>,
}
impl SpeculationCache {
pub fn new() -> Self {
Self {
synced_trees: ExecutedTrees::new_empty(),
committed_trees: ExecutedTrees::new_empty(),
heads: vec![],
block_map: Arc::new(Mutex::new(HashMap::new())),
committed_block_id: *PRE_GENESIS_BLOCK_ID,
}
}
pub fn new_with_startup_info(startup_info: StartupInfo) -> Self {
let mut cache = Self::new();
let ledger_info = startup_info.latest_ledger_info.ledger_info();
let committed_trees = ExecutedTrees::from(startup_info.committed_tree_state);
cache.update_block_tree_root(committed_trees, ledger_info);
if let Some(synced_tree_state) = startup_info.synced_tree_state {
cache.update_synced_trees(ExecutedTrees::from(synced_tree_state));
}
cache
}
pub fn new_for_db_bootstrapping(tree_state: TreeState) -> Self {
let executor_trees = ExecutedTrees::from(tree_state);
Self {
synced_trees: executor_trees.clone(),
committed_trees: executor_trees,
heads: vec![],
block_map: Arc::new(Mutex::new(HashMap::new())),
committed_block_id: *PRE_GENESIS_BLOCK_ID,
}
}
pub fn committed_block_id(&self) -> HashValue {
self.committed_block_id
}
pub fn committed_trees(&self) -> &ExecutedTrees {
&self.committed_trees
}
pub fn synced_trees(&self) -> &ExecutedTrees {
&self.synced_trees
}
pub fn update_block_tree_root(
&mut self,
committed_trees: ExecutedTrees,
committed_ledger_info: &LedgerInfo,
) {
let new_root_block_id = if committed_ledger_info.ends_epoch() {
let id = Block::make_genesis_block_from_ledger_info(committed_ledger_info).id();
info!(
LogSchema::new(LogEntry::SpeculationCache)
.root_block_id(id)
.original_reconfiguration_block_id(committed_ledger_info.consensus_block_id()),
"Updated with a new root block as a virtual block of reconfiguration block"
);
id
} else {
let id = committed_ledger_info.consensus_block_id();
info!(
LogSchema::new(LogEntry::SpeculationCache).root_block_id(id),
"Updated with a new root block",
);
id
};
self.committed_block_id = new_root_block_id;
self.committed_trees = committed_trees.clone();
self.synced_trees = committed_trees;
}
pub fn update_synced_trees(&mut self, new_trees: ExecutedTrees) {
self.synced_trees = new_trees;
}
pub fn reset(&mut self) {
self.heads = vec![];
*self.block_map.lock() = HashMap::new();
}
pub fn add_block(
&mut self,
parent_block_id: HashValue,
block: (
HashValue, Vec<Transaction>, ProcessedVMOutput, ),
) -> Result<(), Error> {
let (block_id, txns, output) = block;
let old_block = self
.block_map
.lock()
.get(&block_id)
.map(|b| {
b.upgrade().ok_or_else(|| {
format_err!(
"block {:x} has been deallocated. Something went wrong.",
block_id
)
})
})
.transpose()?;
if let Some(old_block) = old_block {
old_block.lock().replace(txns, output);
return Ok(());
}
let new_block = Arc::new(Mutex::new(SpeculationBlock::new(
block_id,
txns,
output,
Arc::clone(&self.block_map),
)));
self.block_map
.lock()
.insert(block_id, Arc::downgrade(&new_block));
if parent_block_id == self.committed_block_id() {
self.heads.push(new_block);
} else {
self.get_block(&parent_block_id)?
.lock()
.add_child(new_block);
}
Ok(())
}
pub fn prune(&mut self, committed_ledger_info: &LedgerInfo) -> Result<(), Error> {
let arc_latest_committed_block =
self.get_block(&committed_ledger_info.consensus_block_id())?;
let latest_committed_block = arc_latest_committed_block.lock();
self.heads = latest_committed_block.children.clone();
self.update_block_tree_root(
latest_committed_block.output().executed_trees().clone(),
committed_ledger_info,
);
Ok(())
}
#[allow(clippy::unnecessary_lazy_evaluations)]
pub fn get_block(&self, block_id: &HashValue) -> Result<Arc<Mutex<SpeculationBlock>>, Error> {
Ok(self
.block_map
.lock()
.get(block_id)
.ok_or_else(|| Error::BlockNotFound(*block_id))?
.upgrade()
.ok_or_else(|| {
format_err!(
"block {:x} has been deallocated. Something went wrong.",
block_id
)
})?)
}
}