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
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
use crate::{
block_storage::{
block_tree::BlockTree,
tracing::{observe_block, BlockStage},
BlockReader,
},
counters,
logging::{LogEvent, LogSchema},
persistent_liveness_storage::{
PersistentLivenessStorage, RecoveryData, RootInfo, RootMetadata,
},
state_replication::StateComputer,
util::time_service::TimeService,
};
use anyhow::{bail, ensure, format_err, Context};
use consensus_types::{
block::Block, executed_block::ExecutedBlock, quorum_cert::QuorumCert, sync_info::SyncInfo,
timeout_2chain::TwoChainTimeoutCertificate, timeout_certificate::TimeoutCertificate,
};
use diem_crypto::{hash::ACCUMULATOR_PLACEHOLDER_HASH, HashValue};
use diem_infallible::RwLock;
use diem_logger::prelude::*;
use diem_types::{ledger_info::LedgerInfoWithSignatures, transaction::TransactionStatus};
use executor_types::{Error, StateComputeResult};
use futures::executor::block_on;
use short_hex_str::AsShortHexStr;
#[cfg(test)]
use std::collections::VecDeque;
use std::{sync::Arc, time::Duration};
#[cfg(test)]
#[path = "block_store_test.rs"]
mod block_store_test;
#[cfg(test)]
#[path = "block_store_and_lec_recovery_test.rs"]
mod block_store_and_lec_recovery_test;
#[path = "sync_manager.rs"]
pub mod sync_manager;
fn update_counters_for_ordered_blocks(ordered_blocks: &[Arc<ExecutedBlock>]) {
for block in ordered_blocks {
observe_block(block.block().timestamp_usecs(), BlockStage::ORDERED);
}
}
fn update_counters_for_committed_blocks(blocks_to_commit: &[Arc<ExecutedBlock>]) {
for block in blocks_to_commit {
observe_block(block.block().timestamp_usecs(), BlockStage::COMMITTED);
let txn_status = block.compute_result().compute_status();
counters::NUM_TXNS_PER_BLOCK.observe(txn_status.len() as f64);
counters::COMMITTED_BLOCKS_COUNT.inc();
counters::LAST_COMMITTED_ROUND.set(block.round() as i64);
counters::LAST_COMMITTED_VERSION.set(block.compute_result().num_leaves() as i64);
for status in txn_status.iter() {
match status {
TransactionStatus::Keep(_) => {
counters::COMMITTED_TXNS_COUNT
.with_label_values(&["success"])
.inc();
}
TransactionStatus::Discard(_) => {
counters::COMMITTED_TXNS_COUNT
.with_label_values(&["failed"])
.inc();
}
TransactionStatus::Retry => {
counters::COMMITTED_TXNS_COUNT
.with_label_values(&["retry"])
.inc();
}
}
}
}
}
pub struct BlockStore {
inner: Arc<RwLock<BlockTree>>,
state_computer: Arc<dyn StateComputer>,
storage: Arc<dyn PersistentLivenessStorage>,
time_service: Arc<dyn TimeService>,
}
pub fn update_counters_and_prune_blocks(
block_tree: Arc<RwLock<BlockTree>>,
storage: Arc<dyn PersistentLivenessStorage>,
commit_root: Arc<ExecutedBlock>,
blocks_to_commit: &[Arc<ExecutedBlock>],
) {
let block_to_commit = blocks_to_commit.last().unwrap().clone();
update_counters_for_committed_blocks(blocks_to_commit);
let current_round = commit_root.round();
let committed_round = block_to_commit.round();
debug!(
LogSchema::new(LogEvent::CommitViaBlock).round(current_round),
committed_round = committed_round,
block_id = block_to_commit.id(),
);
event!("committed",
"block_id": block_to_commit.id().short_str(),
"epoch": block_to_commit.epoch(),
"round": committed_round,
"parent_id": block_to_commit.parent_id().short_str(),
);
let id_to_remove = block_tree.read().find_blocks_to_prune(block_to_commit.id());
if let Err(e) = storage.prune_tree(id_to_remove.clone().into_iter().collect()) {
error!(error = ?e, "fail to delete block");
}
block_tree
.write()
.update_commit_id_and_process_pruned_blocks(block_to_commit.id(), id_to_remove);
}
impl BlockStore {
pub fn new(
storage: Arc<dyn PersistentLivenessStorage>,
initial_data: RecoveryData,
state_computer: Arc<dyn StateComputer>,
max_pruned_blocks_in_mem: usize,
time_service: Arc<dyn TimeService>,
) -> Self {
let highest_tc = initial_data.highest_timeout_certificate();
let highest_2chain_tc = initial_data.highest_2chain_timeout_certificate();
let (root, root_metadata, blocks, quorum_certs) = initial_data.take();
let block_store = Self::build(
root,
root_metadata,
blocks,
quorum_certs,
highest_tc,
highest_2chain_tc,
state_computer,
storage,
max_pruned_blocks_in_mem,
time_service,
);
block_on(block_store.try_commit());
block_store
}
async fn try_commit(&self) {
let mut certs = self.inner.read().get_all_quorum_certs_with_commit_info();
certs.sort_unstable_by_key(|qc| qc.commit_info().round());
for qc in certs {
if qc.commit_info().round() > self.commit_root().round() {
info!(
"trying to commit to round {} with ledger info {}",
qc.commit_info().round(),
qc.ledger_info()
);
if let Err(e) = self.commit(qc.ledger_info().clone()).await {
error!("Error in try-committing blocks. {}", e.to_string());
}
}
}
}
fn build(
root: RootInfo,
root_metadata: RootMetadata,
blocks: Vec<Block>,
quorum_certs: Vec<QuorumCert>,
highest_timeout_cert: Option<TimeoutCertificate>,
highest_2chain_timeout_cert: Option<TwoChainTimeoutCertificate>,
state_computer: Arc<dyn StateComputer>,
storage: Arc<dyn PersistentLivenessStorage>,
max_pruned_blocks_in_mem: usize,
time_service: Arc<dyn TimeService>,
) -> Self {
let RootInfo(root_block, root_qc, root_ordered_cert, root_commit_li) = root;
assert!(
root_qc.certified_block().version() == 0
|| root_qc.certified_block().version() == root_metadata.version(),
"root qc version {} doesn't match committed trees {}",
root_qc.certified_block().version(),
root_metadata.version(),
);
assert!(
root_qc.certified_block().executed_state_id() == *ACCUMULATOR_PLACEHOLDER_HASH
|| root_qc.certified_block().executed_state_id() == root_metadata.accu_hash,
"root qc state id {} doesn't match committed trees {}",
root_qc.certified_block().executed_state_id(),
root_metadata.accu_hash,
);
let result = StateComputeResult::new(
root_metadata.accu_hash,
root_metadata.frozen_root_hashes,
root_metadata.num_leaves, vec![], 0, None, vec![], vec![], vec![], );
let executed_root_block = ExecutedBlock::new(
root_block,
result,
);
let tree = BlockTree::new(
executed_root_block,
root_qc,
root_ordered_cert,
root_commit_li,
max_pruned_blocks_in_mem,
highest_timeout_cert.map(Arc::new),
highest_2chain_timeout_cert.map(Arc::new),
);
let block_store = Self {
inner: Arc::new(RwLock::new(tree)),
state_computer,
storage,
time_service,
};
for block in blocks {
block_store
.execute_and_insert_block(block)
.unwrap_or_else(|e| {
panic!("[BlockStore] failed to insert block during build {:?}", e)
});
}
for qc in quorum_certs {
block_store
.insert_single_quorum_cert(qc)
.unwrap_or_else(|e| {
panic!("[BlockStore] failed to insert quorum during build{:?}", e)
});
}
counters::LAST_COMMITTED_ROUND.set(block_store.ordered_root().round() as i64);
block_store
}
#[allow(clippy::unwrap_or_else_default)]
#[allow(clippy::needless_borrow)]
pub async fn commit(&self, finality_proof: LedgerInfoWithSignatures) -> anyhow::Result<()> {
let block_id_to_commit = finality_proof.ledger_info().consensus_block_id();
let block_to_commit = self
.get_block(block_id_to_commit)
.ok_or_else(|| format_err!("Committed block id not found"))?;
ensure!(
block_to_commit.round() > self.ordered_root().round(),
"Committed block round lower than root"
);
let blocks_to_commit = self
.path_from_ordered_root(block_id_to_commit)
.unwrap_or_else(Vec::new);
assert!(!blocks_to_commit.is_empty());
let block_tree = self.inner.clone();
let storage = self.storage.clone();
let commit_root = self.commit_root();
self.inner
.write()
.update_ordered_root_id(block_to_commit.id());
update_counters_for_ordered_blocks(&blocks_to_commit);
self.state_computer
.commit(
&blocks_to_commit,
finality_proof,
Box::new(
move |executed_blocks: &[Arc<ExecutedBlock>],
commit_decision: LedgerInfoWithSignatures| {
block_tree
.write()
.update_highest_ledger_info(commit_decision);
update_counters_and_prune_blocks(
block_tree,
storage,
commit_root,
executed_blocks,
);
},
),
)
.await
.expect("Failed to persist commit");
Ok(())
}
pub async fn rebuild(
&self,
root: RootInfo,
root_metadata: RootMetadata,
blocks: Vec<Block>,
quorum_certs: Vec<QuorumCert>,
) {
let max_pruned_blocks_in_mem = self.inner.read().max_pruned_blocks_in_mem();
let prev_htc = self.highest_timeout_cert().map(|tc| tc.as_ref().clone());
let prev_2chain_htc = self
.highest_2chain_timeout_cert()
.map(|tc| tc.as_ref().clone());
let BlockStore { inner, .. } = Self::build(
root,
root_metadata,
blocks,
quorum_certs,
prev_htc,
prev_2chain_htc,
Arc::clone(&self.state_computer),
Arc::clone(&self.storage),
max_pruned_blocks_in_mem,
Arc::clone(&self.time_service),
);
let to_remove = self.inner.read().get_all_block_id();
if let Err(e) = self.storage.prune_tree(to_remove) {
error!(error = ?e, "Fail to delete block from consensus db");
}
*self.inner.write() = Arc::try_unwrap(inner)
.unwrap_or_else(|_| panic!("New block tree is not shared"))
.into_inner();
self.try_commit().await;
}
#[allow(clippy::unwrap_or_else_default)]
pub fn execute_and_insert_block(&self, block: Block) -> anyhow::Result<Arc<ExecutedBlock>> {
if let Some(existing_block) = self.get_block(block.id()) {
return Ok(existing_block);
}
ensure!(
self.inner.read().ordered_root().round() < block.round(),
"Block with old round"
);
let executed_block = match self.execute_block(block.clone()) {
Ok(res) => Ok(res),
Err(Error::BlockNotFound(parent_block_id)) => {
let blocks_to_reexecute = self
.path_from_ordered_root(parent_block_id)
.unwrap_or_else(Vec::new);
for block in blocks_to_reexecute {
self.execute_block(block.block().clone())?;
}
self.execute_block(block)
}
err => err,
}?;
let block_time = Duration::from_micros(executed_block.timestamp_usecs());
self.time_service.wait_until(block_time);
self.storage
.save_tree(vec![executed_block.block().clone()], vec![])
.context("Insert block failed when saving block")?;
self.inner.write().insert_block(executed_block)
}
fn execute_block(&self, block: Block) -> anyhow::Result<ExecutedBlock, Error> {
let state_compute_result = self.state_computer.compute(&block, block.parent_id())?;
observe_block(block.timestamp_usecs(), BlockStage::EXECUTED);
Ok(ExecutedBlock::new(block, state_compute_result))
}
pub fn insert_single_quorum_cert(&self, qc: QuorumCert) -> anyhow::Result<()> {
match self.get_block(qc.certified_block().id()) {
Some(executed_block) => {
ensure!(
executed_block
.block_info()
.match_ordered_only(qc.certified_block()),
"QC for block {} has different {:?} than local {:?}",
qc.certified_block().id(),
qc.certified_block(),
executed_block.block_info()
);
observe_block(
executed_block.block().timestamp_usecs(),
BlockStage::QC_ADDED,
);
}
None => bail!("Insert {} without having the block in store first", qc),
};
self.storage
.save_tree(vec![], vec![qc.clone()])
.context("Insert block failed when saving quorum")?;
self.inner.write().insert_quorum_cert(qc)
}
pub fn insert_timeout_certificate(&self, tc: Arc<TimeoutCertificate>) -> anyhow::Result<()> {
let cur_tc_round = self
.highest_2chain_timeout_cert()
.map_or(0, |tc| tc.round());
if tc.round() <= cur_tc_round {
return Ok(());
}
self.storage
.save_highest_timeout_cert(tc.as_ref().clone())
.context("Timeout certificate insert failed when persisting to DB")?;
self.inner.write().replace_timeout_cert(tc);
Ok(())
}
pub fn insert_2chain_timeout_certificate(
&self,
tc: Arc<TwoChainTimeoutCertificate>,
) -> anyhow::Result<()> {
let cur_tc_round = self
.highest_2chain_timeout_cert()
.map_or(0, |tc| tc.round());
if tc.round() <= cur_tc_round {
return Ok(());
}
self.storage
.save_highest_2chain_timeout_cert(tc.as_ref())
.context("Timeout certificate insert failed when persisting to DB")?;
self.inner.write().replace_2chain_timeout_cert(tc);
Ok(())
}
#[cfg(test)]
fn prune_tree(&self, next_root_id: HashValue) -> VecDeque<HashValue> {
let id_to_remove = self.inner.read().find_blocks_to_prune(next_root_id);
if let Err(e) = self
.storage
.prune_tree(id_to_remove.clone().into_iter().collect())
{
error!(error = ?e, "fail to delete block");
}
self.inner
.write()
.update_ordered_root_id(next_root_id)
.update_commit_id_and_process_pruned_blocks(next_root_id, id_to_remove.clone());
id_to_remove
}
}
impl BlockReader for BlockStore {
fn block_exists(&self, block_id: HashValue) -> bool {
self.inner.read().block_exists(&block_id)
}
fn get_block(&self, block_id: HashValue) -> Option<Arc<ExecutedBlock>> {
self.inner.read().get_block(&block_id)
}
fn ordered_root(&self) -> Arc<ExecutedBlock> {
self.inner.read().ordered_root()
}
fn commit_root(&self) -> Arc<ExecutedBlock> {
self.inner.read().commit_root()
}
fn get_quorum_cert_for_block(&self, block_id: HashValue) -> Option<Arc<QuorumCert>> {
self.inner.read().get_quorum_cert_for_block(&block_id)
}
fn path_from_ordered_root(&self, block_id: HashValue) -> Option<Vec<Arc<ExecutedBlock>>> {
self.inner.read().path_from_ordered_root(block_id)
}
fn path_from_commit_root(&self, block_id: HashValue) -> Option<Vec<Arc<ExecutedBlock>>> {
self.inner.read().path_from_commit_root(block_id)
}
fn highest_certified_block(&self) -> Arc<ExecutedBlock> {
self.inner.read().highest_certified_block()
}
fn highest_quorum_cert(&self) -> Arc<QuorumCert> {
self.inner.read().highest_quorum_cert()
}
fn highest_ordered_cert(&self) -> Arc<QuorumCert> {
self.inner.read().highest_ordered_cert()
}
fn highest_ledger_info(&self) -> LedgerInfoWithSignatures {
self.inner.read().highest_ledger_info()
}
fn highest_timeout_cert(&self) -> Option<Arc<TimeoutCertificate>> {
self.inner.read().highest_timeout_cert()
}
fn highest_2chain_timeout_cert(&self) -> Option<Arc<TwoChainTimeoutCertificate>> {
self.inner.read().highest_2chain_timeout_cert()
}
fn sync_info(&self) -> SyncInfo {
SyncInfo::new_decoupled(
self.highest_quorum_cert().as_ref().clone(),
self.highest_ordered_cert().as_ref().clone(),
Some(self.highest_ledger_info()),
self.highest_timeout_cert().map(|tc| tc.as_ref().clone()),
self.highest_2chain_timeout_cert()
.map(|tc| tc.as_ref().clone()),
)
}
}
#[cfg(any(test, feature = "fuzzing"))]
impl BlockStore {
pub(crate) fn len(&self) -> usize {
self.inner.read().len()
}
pub(crate) fn child_links(&self) -> usize {
self.inner.read().child_links()
}
pub(super) fn pruned_blocks_in_mem(&self) -> usize {
self.inner.read().pruned_blocks_in_mem()
}
pub fn insert_block_with_qc(&self, block: Block) -> anyhow::Result<Arc<ExecutedBlock>> {
self.insert_single_quorum_cert(block.quorum_cert().clone())?;
self.execute_and_insert_block(block)
}
}