-
Notifications
You must be signed in to change notification settings - Fork 236
/
Copy pathchain.rs
839 lines (745 loc) · 30.8 KB
/
chain.rs
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
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
//! CKB chain service.
use crate::switch::Switch;
use ckb_channel::{self as channel, select, Sender};
use ckb_error::{Error, InternalErrorKind};
use ckb_logger::{self, debug, error, info, log_enabled, trace, warn};
use ckb_metrics::{metrics, Timer};
use ckb_proposal_table::ProposalTable;
#[cfg(debug_assertions)]
use ckb_rust_unstable_port::IsSorted;
use ckb_shared::shared::Shared;
use ckb_stop_handler::{SignalSender, StopHandler};
use ckb_store::{attach_block_cell, detach_block_cell, ChainStore, StoreTransaction};
use ckb_types::{
core::{
cell::{resolve_transaction, BlockCellProvider, OverlayCellProvider, ResolvedTransaction},
service::{Request, DEFAULT_CHANNEL_SIZE, SIGNAL_CHANNEL_SIZE},
BlockExt, BlockNumber, BlockView, HeaderView,
},
packed::{Byte32, ProposalShortId},
U256,
};
use ckb_verification::{
BlockVerifier, ContextualBlockVerifier, NonContextualBlockTxsVerifier, Verifier, VerifyContext,
};
use ckb_verification::{InvalidParentError, Switch as _};
use faketime::unix_time_as_millis;
use std::collections::{HashSet, VecDeque};
use std::sync::Arc;
use std::{cmp, thread};
type ProcessBlockRequest = Request<(Arc<BlockView>, Switch), Result<bool, Error>>;
type TruncateRequest = Request<Byte32, Result<(), Error>>;
/// Controller to the chain service.
///
/// The controller is internally reference-counted and can be freely cloned.
///
/// A controller can invoke [`ChainService`] methods.
#[derive(Clone)]
pub struct ChainController {
process_block_sender: Sender<ProcessBlockRequest>,
truncate_sender: Sender<TruncateRequest>, // Used for testing only
stop: StopHandler<()>,
}
impl Drop for ChainController {
fn drop(&mut self) {
self.stop.try_send();
}
}
impl ChainController {
/// Inserts the block into database.
///
/// Expects the block's header to be valid and already verified.
///
/// If the block already exists, does nothing and false is returned.
///
/// [BlockVerifier] [NonContextualBlockTxsVerifier] [ContextualBlockVerifier] will performed
pub fn process_block(&self, block: Arc<BlockView>) -> Result<bool, Error> {
self.internal_process_block(block, Switch::NONE)
}
/// Internal method insert block for test
///
/// switch bit flags for particular verify, make easier to generating test data
pub fn internal_process_block(
&self,
block: Arc<BlockView>,
switch: Switch,
) -> Result<bool, Error> {
Request::call(&self.process_block_sender, (block, switch)).unwrap_or_else(|| {
Err(InternalErrorKind::System
.other("Chain service has gone")
.into())
})
}
/// Truncate chain to specified target
///
/// Should use for testing only
pub fn truncate(&self, target_tip_hash: Byte32) -> Result<(), Error> {
Request::call(&self.truncate_sender, target_tip_hash).unwrap_or_else(|| {
Err(InternalErrorKind::System
.other("Chain service has gone")
.into())
})
}
}
/// The struct represent fork
#[derive(Debug, Default)]
pub struct ForkChanges {
/// Blocks attached to index after forks
pub(crate) attached_blocks: VecDeque<BlockView>,
/// Blocks detached from index after forks
pub(crate) detached_blocks: VecDeque<BlockView>,
/// HashSet with proposal_id detached to index after forks
pub(crate) detached_proposal_id: HashSet<ProposalShortId>,
/// to be updated exts
pub(crate) dirty_exts: VecDeque<BlockExt>,
}
impl ForkChanges {
/// blocks attached to index after forks
pub fn attached_blocks(&self) -> &VecDeque<BlockView> {
&self.attached_blocks
}
/// blocks detached from index after forks
pub fn detached_blocks(&self) -> &VecDeque<BlockView> {
&self.detached_blocks
}
/// proposal_id detached to index after forks
pub fn detached_proposal_id(&self) -> &HashSet<ProposalShortId> {
&self.detached_proposal_id
}
/// are there any block should be detached
pub fn has_detached(&self) -> bool {
!self.detached_blocks.is_empty()
}
/// cached verified attached block num
pub fn verified_len(&self) -> usize {
self.attached_blocks.len() - self.dirty_exts.len()
}
/// assertion for make sure attached_blocks and detached_blocks are sorted
#[cfg(debug_assertions)]
pub fn is_sorted(&self) -> bool {
IsSorted::is_sorted_by_key(&mut self.attached_blocks().iter(), |blk| {
blk.header().number()
}) && IsSorted::is_sorted_by_key(&mut self.detached_blocks().iter(), |blk| {
blk.header().number()
})
}
}
pub(crate) struct GlobalIndex {
pub(crate) number: BlockNumber,
pub(crate) hash: Byte32,
pub(crate) unseen: bool,
}
impl GlobalIndex {
pub(crate) fn new(number: BlockNumber, hash: Byte32, unseen: bool) -> GlobalIndex {
GlobalIndex {
number,
hash,
unseen,
}
}
pub(crate) fn forward(&mut self, hash: Byte32) {
self.number -= 1;
self.hash = hash;
}
}
/// Chain background service
///
/// The ChainService provides a single-threaded background executor.
pub struct ChainService {
shared: Shared,
proposal_table: ProposalTable,
}
impl ChainService {
/// Create a new ChainService instance with shared and initial proposal_table.
pub fn new(shared: Shared, proposal_table: ProposalTable) -> ChainService {
ChainService {
shared,
proposal_table,
}
}
// remove `allow` tag when https://github.com/crossbeam-rs/crossbeam/issues/404 is solved
/// start background single-threaded service with specified thread_name.
#[allow(clippy::zero_ptr, clippy::drop_copy)]
pub fn start<S: ToString>(mut self, thread_name: Option<S>) -> ChainController {
let (signal_sender, signal_receiver) = channel::bounded::<()>(SIGNAL_CHANNEL_SIZE);
let (process_block_sender, process_block_receiver) = channel::bounded(DEFAULT_CHANNEL_SIZE);
let (truncate_sender, truncate_receiver) = channel::bounded(1);
// Mainly for test: give an empty thread_name
let mut thread_builder = thread::Builder::new();
if let Some(name) = thread_name {
thread_builder = thread_builder.name(name.to_string());
}
let thread = thread_builder
.spawn(move || loop {
select! {
recv(signal_receiver) -> _ => {
break;
},
recv(process_block_receiver) -> msg => match msg {
Ok(Request { responder, arguments: (block, verify) }) => {
let _ = responder.send(self.process_block(block, verify));
},
_ => {
error!("process_block_receiver closed");
break;
},
},
recv(truncate_receiver) -> msg => match msg {
Ok(Request { responder, arguments: target_tip_hash }) => {
let _ = responder.send(self.truncate(&target_tip_hash));
},
_ => {
error!("truncate_receiver closed");
break;
},
}
}
})
.expect("Start ChainService failed");
let stop = StopHandler::new(SignalSender::Crossbeam(signal_sender), Some(thread));
ChainController {
process_block_sender,
truncate_sender,
stop,
}
}
fn make_fork_for_truncate(&self, target: &HeaderView, current_tip: &HeaderView) -> ForkChanges {
let mut fork = ForkChanges::default();
let store = self.shared.store();
for bn in (target.number() + 1)..=current_tip.number() {
let hash = store.get_block_hash(bn).expect("index checked");
let old_block = store.get_block(&hash).expect("index checked");
fork.detached_blocks.push_back(old_block);
}
is_sorted_assert(&fork);
fork
}
// Truncate the main chain
// Use for testing only
pub(crate) fn truncate(&mut self, target_tip_hash: &Byte32) -> Result<(), Error> {
let snapshot = Arc::clone(&self.shared.snapshot());
assert!(snapshot.is_main_chain(target_tip_hash));
let target_tip_header = snapshot.get_block_header(target_tip_hash).expect("checked");
let target_block_ext = snapshot.get_block_ext(target_tip_hash).expect("checked");
let target_epoch_ext = snapshot
.get_block_epoch_index(target_tip_hash)
.and_then(|index| snapshot.get_epoch_ext(&index))
.expect("checked");
let origin_proposals = snapshot.proposals();
let mut fork = self.make_fork_for_truncate(&target_tip_header, snapshot.tip_header());
let db_txn = self.shared.store().begin_transaction();
self.rollback(&fork, &db_txn)?;
db_txn.insert_tip_header(&target_tip_header)?;
db_txn.insert_current_epoch_ext(&target_epoch_ext)?;
for blk in fork.attached_blocks() {
db_txn.delete_block(&blk)?;
}
db_txn.commit()?;
self.update_proposal_table(&fork);
let (detached_proposal_id, new_proposals) = self
.proposal_table
.finalize(origin_proposals, target_tip_header.number());
fork.detached_proposal_id = detached_proposal_id;
let new_snapshot = self.shared.new_snapshot(
target_tip_header,
target_block_ext.total_difficulty,
target_epoch_ext,
new_proposals,
);
self.shared.store_snapshot(Arc::clone(&new_snapshot));
// NOTE: Dont update tx-pool when truncate
Ok(())
}
// visible pub just for test
#[doc(hidden)]
pub fn process_block(&mut self, block: Arc<BlockView>, switch: Switch) -> Result<bool, Error> {
debug!("begin processing block: {}", block.header().hash());
if block.header().number() < 1 {
warn!(
"receive 0 number block: {}-{}",
block.header().number(),
block.header().hash()
);
}
self.insert_block(block, switch).map(|ret| {
debug!("finish processing block");
ret
})
}
fn non_contextual_verify(&self, block: &BlockView) -> Result<(), Error> {
let consensus = self.shared.consensus();
BlockVerifier::new(consensus).verify(&block).map_err(|e| {
debug!("[process_block] BlockVerifier error {:?}", e);
e
})?;
NonContextualBlockTxsVerifier::new(consensus)
.verify(&block)
.map_err(|e| {
debug!(
"[process_block] NonContextualBlockTxsVerifier error {:?}",
e
);
e
})
.map(|_| ())
}
fn insert_block(&mut self, block: Arc<BlockView>, switch: Switch) -> Result<bool, Error> {
let db_txn = self.shared.store().begin_transaction();
let txn_snapshot = db_txn.get_snapshot();
let _snapshot_tip_hash = db_txn.get_update_for_tip_hash(&txn_snapshot);
// insert_block are assumed be executed in single thread
if txn_snapshot.block_exists(&block.header().hash()) {
return Ok(false);
}
// non-contextual verify
if !switch.disable_non_contextual() {
self.non_contextual_verify(&block)?;
}
let mut total_difficulty = U256::zero();
let mut fork = ForkChanges::default();
let timer = Timer::start();
let parent_ext = txn_snapshot
.get_block_ext(&block.data().header().raw().parent_hash())
.expect("parent already store");
let parent_header = txn_snapshot
.get_block_header(&block.data().header().raw().parent_hash())
.expect("parent already store");
let cannon_total_difficulty =
parent_ext.total_difficulty.to_owned() + block.header().difficulty();
if parent_ext.verified == Some(false) {
return Err(InvalidParentError {
parent_hash: parent_header.hash(),
}
.into());
}
db_txn.insert_block(&block)?;
let parent_header_epoch = txn_snapshot
.get_block_epoch(&parent_header.hash())
.expect("parent epoch already store");
let next_epoch_ext = txn_snapshot.next_epoch_ext(
self.shared.consensus(),
&parent_header_epoch,
&parent_header,
);
let new_epoch = next_epoch_ext.is_some();
let epoch = next_epoch_ext.unwrap_or_else(|| parent_header_epoch.to_owned());
let ext = BlockExt {
received_at: unix_time_as_millis(),
total_difficulty: cannon_total_difficulty.clone(),
total_uncles_count: parent_ext.total_uncles_count + block.data().uncles().len() as u64,
verified: None,
txs_fees: vec![],
};
db_txn.insert_block_epoch_index(
&block.header().hash(),
&epoch.last_block_hash_in_previous_epoch(),
)?;
db_txn.insert_epoch_ext(&epoch.last_block_hash_in_previous_epoch(), &epoch)?;
let shared_snapshot = Arc::clone(&self.shared.snapshot());
let origin_proposals = shared_snapshot.proposals();
let current_tip_header = shared_snapshot.tip_header();
let current_total_difficulty = shared_snapshot.total_difficulty().to_owned();
debug!(
"difficulty current = {:#x}, cannon = {:#x}",
current_total_difficulty, cannon_total_difficulty,
);
// is_better_than
let new_best_block = cannon_total_difficulty > current_total_difficulty;
if new_best_block {
debug!(
"new best block found: {} => {:#x}, difficulty diff = {:#x}",
block.header().number(),
block.header().hash(),
&cannon_total_difficulty - ¤t_total_difficulty
);
self.find_fork(&mut fork, current_tip_header.number(), &block, ext);
if !fork.detached_blocks.is_empty() {
metrics!(gauge, "ckb-chain.reorg", fork.attached_blocks.len() as i64, "type" => "attached");
metrics!(gauge, "ckb-chain.reorg", fork.detached_blocks.len() as i64, "type" => "detached");
}
self.rollback(&fork, &db_txn)?;
// update and verify chain root
// MUST update index before reconcile_main_chain
self.reconcile_main_chain(&db_txn, &mut fork, switch)?;
db_txn.insert_tip_header(&block.header())?;
if new_epoch || fork.has_detached() {
db_txn.insert_current_epoch_ext(&epoch)?;
}
total_difficulty = cannon_total_difficulty.clone();
} else {
db_txn.insert_block_ext(&block.header().hash(), &ext)?;
}
db_txn.commit()?;
if new_best_block {
let tip_header = block.header();
info!(
"block: {}, hash: {:#x}, epoch: {:#}, total_diff: {:#x}, txs: {}",
tip_header.number(),
tip_header.hash(),
tip_header.epoch(),
total_difficulty,
block.transactions().len()
);
self.update_proposal_table(&fork);
let (detached_proposal_id, new_proposals) = self
.proposal_table
.finalize(origin_proposals, tip_header.number());
fork.detached_proposal_id = detached_proposal_id;
let new_snapshot =
self.shared
.new_snapshot(tip_header, total_difficulty, epoch, new_proposals);
self.shared.store_snapshot(Arc::clone(&new_snapshot));
if let Err(e) = self.shared.tx_pool_controller().update_tx_pool_for_reorg(
fork.detached_blocks().clone(),
fork.attached_blocks().clone(),
fork.detached_proposal_id().clone(),
new_snapshot,
) {
error!("notify update_tx_pool_for_reorg error {}", e);
}
for detached_block in fork.detached_blocks() {
if let Err(e) = self
.shared
.tx_pool_controller()
.notify_new_uncle(detached_block.as_uncle())
{
error!("notify new_uncle error {}", e);
}
}
let block_ref: &BlockView = █
self.shared
.notify_controller()
.notify_new_block(block_ref.clone());
if log_enabled!(ckb_logger::Level::Debug) {
self.print_chain(10);
}
metrics!(gauge, "ckb-chain.tip_number", block.header().number() as i64, "type" => "main_chain");
metrics!(timing, "ckb-chain.insert_block", timer.stop(), "type" => "elapsed", "is_uncle" => "false");
} else {
self.shared.refresh_snapshot();
info!(
"uncle: {}, hash: {:#x}, epoch: {:#}, total_diff: {:#x}, txs: {}",
block.header().number(),
block.header().hash(),
block.header().epoch(),
cannon_total_difficulty,
block.transactions().len()
);
let block_ref: &BlockView = █
if let Err(e) = self
.shared
.tx_pool_controller()
.notify_new_uncle(block_ref.as_uncle())
{
error!("notify new_uncle error {}", e);
}
metrics!(timing, "ckb-chain.insert_block", timer.stop(), "type" => "elapsed", "is_uncle" => "true");
}
Ok(true)
}
pub(crate) fn update_proposal_table(&mut self, fork: &ForkChanges) {
for blk in fork.detached_blocks() {
self.proposal_table.remove(blk.header().number());
}
for blk in fork.attached_blocks() {
self.proposal_table
.insert(blk.header().number(), blk.union_proposal_ids());
}
self.reload_proposal_table(&fork);
}
// if rollback happen, go back check whether need reload proposal_table from block
pub(crate) fn reload_proposal_table(&mut self, fork: &ForkChanges) {
if fork.has_detached() {
let proposal_window = self.shared.consensus().tx_proposal_window();
let detached_front = fork
.detached_blocks()
.front()
.map(|blk| blk.header().number())
.expect("detached_blocks is not empty");
if detached_front < 2 {
return;
}
let common = detached_front - 1;
let new_tip = fork
.attached_blocks()
.back()
.map(|blk| blk.header().number())
.unwrap_or(common);
let proposal_start =
cmp::max(1, (new_tip + 1).saturating_sub(proposal_window.farthest()));
debug!("reload_proposal_table [{}, {}]", proposal_start, common);
for bn in proposal_start..=common {
let blk = self
.shared
.store()
.get_block_hash(bn)
.and_then(|hash| self.shared.store().get_block(&hash))
.expect("block stored");
self.proposal_table.insert(bn, blk.union_proposal_ids());
}
}
}
pub(crate) fn rollback(&self, fork: &ForkChanges, txn: &StoreTransaction) -> Result<(), Error> {
for block in fork.detached_blocks().iter().rev() {
txn.detach_block(block)?;
detach_block_cell(txn, block)?;
}
Ok(())
}
fn alignment_fork(
&self,
fork: &mut ForkChanges,
index: &mut GlobalIndex,
new_tip_number: BlockNumber,
current_tip_number: BlockNumber,
) {
if new_tip_number <= current_tip_number {
for bn in new_tip_number..=current_tip_number {
let hash = self
.shared
.store()
.get_block_hash(bn)
.expect("block hash stored before alignment_fork");
let old_block = self
.shared
.store()
.get_block(&hash)
.expect("block data stored before alignment_fork");
fork.detached_blocks.push_back(old_block);
}
} else {
while index.number > current_tip_number {
if index.unseen {
let ext = self
.shared
.store()
.get_block_ext(&index.hash)
.expect("block ext stored before alignment_fork");
if ext.verified.is_none() {
fork.dirty_exts.push_front(ext)
} else {
index.unseen = false;
}
}
let new_block = self
.shared
.store()
.get_block(&index.hash)
.expect("block data stored before alignment_fork");
index.forward(new_block.data().header().raw().parent_hash());
fork.attached_blocks.push_front(new_block);
}
}
}
fn find_fork_until_latest_common(&self, fork: &mut ForkChanges, index: &mut GlobalIndex) {
loop {
if index.number == 0 {
break;
}
let detached_hash = self
.shared
.store()
.get_block_hash(index.number)
.expect("detached hash stored before find_fork_until_latest_common");
if detached_hash == index.hash {
break;
}
let detached_blocks = self
.shared
.store()
.get_block(&detached_hash)
.expect("detached block stored before find_fork_until_latest_common");
fork.detached_blocks.push_front(detached_blocks);
if index.unseen {
let ext = self
.shared
.store()
.get_block_ext(&index.hash)
.expect("block ext stored before find_fork_until_latest_common");
if ext.verified.is_none() {
fork.dirty_exts.push_front(ext)
} else {
index.unseen = false;
}
}
let attached_block = self
.shared
.store()
.get_block(&index.hash)
.expect("attached block stored before find_fork_until_latest_common");
index.forward(attached_block.data().header().raw().parent_hash());
fork.attached_blocks.push_front(attached_block);
}
}
pub(crate) fn find_fork(
&self,
fork: &mut ForkChanges,
current_tip_number: BlockNumber,
new_tip_block: &BlockView,
new_tip_ext: BlockExt,
) {
let new_tip_number = new_tip_block.header().number();
fork.dirty_exts.push_front(new_tip_ext);
// attached_blocks = forks[latest_common + 1 .. new_tip]
// detached_blocks = chain[latest_common + 1 .. old_tip]
fork.attached_blocks.push_front(new_tip_block.clone());
let mut index = GlobalIndex::new(
new_tip_number - 1,
new_tip_block.data().header().raw().parent_hash(),
true,
);
// if new_tip_number <= current_tip_number
// then detached_blocks.extend(chain[new_tip_number .. =current_tip_number])
// if new_tip_number > current_tip_number
// then attached_blocks.extend(forks[current_tip_number + 1 .. =new_tip_number])
self.alignment_fork(fork, &mut index, new_tip_number, current_tip_number);
// find latest common ancestor
self.find_fork_until_latest_common(fork, &mut index);
is_sorted_assert(fork);
}
// we found new best_block
pub(crate) fn reconcile_main_chain(
&self,
txn: &StoreTransaction,
fork: &mut ForkChanges,
switch: Switch,
) -> Result<(), Error> {
let txs_verify_cache = self.shared.txs_verify_cache();
let verified_len = fork.verified_len();
for b in fork.attached_blocks().iter().take(verified_len) {
txn.attach_block(b)?;
attach_block_cell(txn, b)?;
}
let verify_context = VerifyContext::new(txn, self.shared.consensus());
let async_handle = self.shared.tx_pool_controller().handle();
let mut found_error = None;
for (ext, b) in fork
.dirty_exts
.iter()
.zip(fork.attached_blocks.iter().skip(verified_len))
{
if !switch.disable_all() {
if found_error.is_none() {
let contextual_block_verifier = ContextualBlockVerifier::new(&verify_context);
let mut seen_inputs = HashSet::new();
let block_cp = match BlockCellProvider::new(b) {
Ok(block_cp) => block_cp,
Err(err) => {
found_error = Some(err);
continue;
}
};
let transactions = b.transactions();
let resolved = {
let txn_cell_provider = txn.cell_provider();
let cell_provider = OverlayCellProvider::new(&block_cp, &txn_cell_provider);
transactions
.iter()
.cloned()
.map(|x| {
resolve_transaction(
x,
&mut seen_inputs,
&cell_provider,
&verify_context,
)
})
.collect::<Result<Vec<ResolvedTransaction>, _>>()
};
match resolved {
Ok(resolved) => {
match contextual_block_verifier.verify(
&resolved,
b,
Arc::clone(&txs_verify_cache),
&async_handle,
switch,
) {
Ok((cycles, cache_entries)) => {
let txs_fees = cache_entries
.into_iter()
.skip(1)
.map(|entry| entry.fee)
.collect();
txn.attach_block(b)?;
attach_block_cell(txn, b)?;
let mut mut_ext = ext.clone();
mut_ext.verified = Some(true);
mut_ext.txs_fees = txs_fees;
txn.insert_block_ext(&b.header().hash(), &mut_ext)?;
if !switch.disable_script() && b.transactions().len() > 1 {
info!(
"[block_verifier] block number: {}, hash: {}, size:{}/{}, cycles: {}/{}",
b.number(),
b.hash(),
b.data().serialized_size_without_uncle_proposals(),
self.shared.consensus().max_block_bytes(),
cycles,
self.shared.consensus().max_block_cycles()
);
}
}
Err(err) => {
error!("block verify error, block number: {}, hash: {}, error: {:?}", b.header().number(),
b.header().hash(), err);
if log_enabled!(ckb_logger::Level::Trace) {
trace!("block {}", b.data());
}
found_error = Some(err);
let mut mut_ext = ext.clone();
mut_ext.verified = Some(false);
txn.insert_block_ext(&b.header().hash(), &mut_ext)?;
}
}
}
Err(err) => {
found_error = Some(err.into());
let mut mut_ext = ext.clone();
mut_ext.verified = Some(false);
txn.insert_block_ext(&b.header().hash(), &mut_ext)?;
}
}
} else {
let mut mut_ext = ext.clone();
mut_ext.verified = Some(false);
txn.insert_block_ext(&b.header().hash(), &mut_ext)?;
}
} else {
txn.attach_block(b)?;
attach_block_cell(txn, b)?;
let mut mut_ext = ext.clone();
mut_ext.verified = Some(true);
txn.insert_block_ext(&b.header().hash(), &mut_ext)?;
}
}
if let Some(err) = found_error {
Err(err)
} else {
Ok(())
}
}
// TODO: beatify
fn print_chain(&self, len: u64) {
debug!("Chain {{");
let snapshot = self.shared.snapshot();
let tip_header = snapshot.tip_header();
let tip_number = tip_header.number();
let bottom = tip_number - cmp::min(tip_number, len);
for number in (bottom..=tip_number).rev() {
let hash = snapshot.get_block_hash(number).unwrap_or_else(|| {
panic!(format!(
"invaild block number({}), tip={}",
number, tip_number
))
});
debug!(" {} => {}", number, hash);
}
debug!("}}");
}
}
#[cfg(debug_assertions)]
fn is_sorted_assert(fork: &ForkChanges) {
assert!(fork.is_sorted())
}
#[cfg(not(debug_assertions))]
fn is_sorted_assert(_fork: &ForkChanges) {}