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 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874
// Copyright 2019 Conflux Foundation. All rights reserved.
// Conflux is free software and distributed under GNU General Public License.
// See http://www.gnu.org/licenses/
pub type DeltaDbManager = DeltaDbManagerRocksdb;
pub type SnapshotDbManager = SnapshotDbManagerSqlite;
pub type SnapshotDb = <SnapshotDbManager as SnapshotDbManagerTrait>::SnapshotDb;
pub struct StateTrees {
pub snapshot_db: SnapshotDb,
pub snapshot_epoch_id: EpochId,
pub snapshot_merkle_root: MerkleHash,
/// None means that the intermediate_trie is empty, or in a special
/// situation that we use the snapshot at intermediate epoch directly,
/// so we don't need to look up intermediate trie.
pub maybe_intermediate_trie: Option<Arc<DeltaMpt>>,
pub intermediate_trie_root: Option<NodeRefDeltaMpt>,
pub intermediate_trie_root_merkle: MerkleHash,
/// A None value indicate the special case when snapshot_db is actually the
/// snapshot_db from the intermediate_epoch_id.
pub maybe_intermediate_trie_key_padding: Option<DeltaMptKeyPadding>,
/// Delta trie can't be none since we may commit into it.
pub delta_trie: Arc<DeltaMpt>,
pub delta_trie_root: Option<NodeRefDeltaMpt>,
pub delta_trie_key_padding: DeltaMptKeyPadding,
/// Information for making new snapshot when necessary.
pub maybe_delta_trie_height: Option<u32>,
pub maybe_height: Option<u64>,
pub intermediate_epoch_id: EpochId,
// TODO: this field is added only for the hack to get pivot chain from a
// TODO: snapshot to its parent snapshot.
pub parent_epoch_id: EpochId,
}
#[derive(MallocSizeOfDerive)]
pub struct StateManager {
storage_manager: Arc<StorageManager>,
single_mpt_storage_manager: Option<Arc<SingleMptStorageManager>>,
pub number_committed_nodes: AtomicUsize,
}
impl Drop for StateManager {
fn drop(&mut self) { self.storage_manager.graceful_shutdown(); }
}
impl StateManager {
pub fn new(conf: StorageConfiguration) -> Result<Self> {
debug!("Storage conf {:?}", conf);
// Make sure sqlite temp directory is using the data disk instead of the
// system disk.
std::env::set_var("SQLITE_TMPDIR", conf.path_snapshot_dir.clone());
let single_mpt_storage_manager = if conf.enable_single_mpt_storage {
Some(SingleMptStorageManager::new_arc(
conf.path_storage_dir.join("single_mpt"),
conf.single_mpt_space,
conf.full_state_start_height().expect("enabled"),
conf.single_mpt_cache_start_size,
conf.single_mpt_cache_size,
conf.single_mpt_slab_idle_size,
))
} else {
None
};
let storage_manager = StorageManager::new_arc(conf)?;
Ok(Self {
storage_manager,
single_mpt_storage_manager,
number_committed_nodes: Default::default(),
})
}
pub fn log_usage(&self) {
self.storage_manager.log_usage();
debug!(
"number of nodes committed to db {}",
self.number_committed_nodes.load(Ordering::Relaxed),
);
}
pub fn get_storage_manager(&self) -> &StorageManager {
&*self.storage_manager
}
pub fn get_storage_manager_arc(&self) -> &Arc<StorageManager> {
&self.storage_manager
}
/// delta_mpt_key_padding is required. When None is passed,
/// it's calculated for the state_trees.
#[inline]
pub fn get_state_trees_internal(
snapshot_db: SnapshotDb, snapshot_epoch_id: &EpochId,
snapshot_merkle_root: MerkleHash,
maybe_intermediate_trie: Option<Arc<DeltaMpt>>,
maybe_intermediate_trie_key_padding: Option<&DeltaMptKeyPadding>,
intermediate_epoch_id: &EpochId,
intermediate_trie_root_merkle: MerkleHash, delta_mpt: Arc<DeltaMpt>,
maybe_delta_mpt_key_padding: Option<&DeltaMptKeyPadding>,
epoch_id: &EpochId, delta_root: Option<NodeRefDeltaMpt>,
maybe_height: Option<u64>, maybe_delta_trie_height: Option<u32>,
) -> Result<Option<StateTrees>> {
let intermediate_trie_root = match &maybe_intermediate_trie {
None => None,
Some(mpt) => {
match mpt.get_root_node_ref_by_epoch(intermediate_epoch_id)? {
None => {
warn!(
"get_state_trees_internal, intermediate_mpt root not found \
for epoch {:?}.",
intermediate_epoch_id,
);
return Ok(None);
}
Some(root) => root,
}
}
};
let delta_trie_key_padding = match maybe_delta_mpt_key_padding {
Some(x) => x.clone(),
None => {
// TODO: maybe we can move the calculation to a central place
// and cache the result?
StorageKeyWithSpace::delta_mpt_padding(
&snapshot_merkle_root,
&intermediate_trie_root_merkle,
)
}
};
Ok(Some(StateTrees {
snapshot_db,
snapshot_merkle_root,
snapshot_epoch_id: *snapshot_epoch_id,
maybe_intermediate_trie,
intermediate_trie_root,
intermediate_trie_root_merkle,
maybe_intermediate_trie_key_padding:
maybe_intermediate_trie_key_padding.cloned(),
delta_trie: delta_mpt,
delta_trie_root: delta_root,
delta_trie_key_padding,
maybe_delta_trie_height,
maybe_height,
intermediate_epoch_id: intermediate_epoch_id.clone(),
parent_epoch_id: epoch_id.clone(),
}))
}
pub fn get_state_trees(
&self, state_index: &StateIndex, try_open: bool,
open_mpt_snapshot: bool,
) -> Result<Option<StateTrees>> {
let maybe_intermediate_mpt;
let maybe_intermediate_mpt_key_padding;
let delta_mpt;
let snapshot;
match self.storage_manager.wait_for_snapshot(
&state_index.snapshot_epoch_id,
try_open,
open_mpt_snapshot,
)? {
None => {
// This is the special scenario when the snapshot isn't
// available but the snapshot at the intermediate epoch exists.
if let Some(guarded_snapshot) =
self.storage_manager.wait_for_snapshot(
&state_index.intermediate_epoch_id,
try_open,
open_mpt_snapshot,
)?
{
snapshot = guarded_snapshot;
maybe_intermediate_mpt = None;
maybe_intermediate_mpt_key_padding = None;
delta_mpt = match self
.storage_manager
.get_intermediate_mpt(
&state_index.intermediate_epoch_id,
)? {
None => {
warn!(
"get_state_trees, special case, \
intermediate_mpt not found for epoch {:?}. StateIndex: {:?}.",
state_index.intermediate_epoch_id,
state_index,
);
return Ok(None);
}
Some(delta_mpt) => delta_mpt,
};
} else {
warn!(
"get_state_trees, special case, \
snapshot not found for epoch {:?}. StateIndex: {:?}.",
state_index.intermediate_epoch_id, state_index,
);
return Ok(None);
}
}
Some(guarded_snapshot) => {
snapshot = guarded_snapshot;
maybe_intermediate_mpt_key_padding =
state_index.maybe_intermediate_mpt_key_padding.as_ref();
maybe_intermediate_mpt = if maybe_intermediate_mpt_key_padding
.is_some()
{
self.storage_manager
.get_intermediate_mpt(&state_index.snapshot_epoch_id)?
} else {
None
};
delta_mpt = self
.storage_manager
.get_delta_mpt(&state_index.snapshot_epoch_id)?;
}
}
let delta_root = match delta_mpt
.get_root_node_ref_by_epoch(&state_index.epoch_id)?
{
None => {
debug!(
"get_state_trees, \
delta_root not found for epoch {:?}. mpt_id {}, StateIndex: {:?}.",
state_index.epoch_id, delta_mpt.get_mpt_id(), state_index,
);
return Ok(None);
}
Some(root) => root,
};
Self::get_state_trees_internal(
snapshot.into().1,
&state_index.snapshot_epoch_id,
state_index.snapshot_merkle_root,
maybe_intermediate_mpt,
maybe_intermediate_mpt_key_padding,
&state_index.intermediate_epoch_id,
state_index.intermediate_trie_root_merkle,
delta_mpt,
Some(&state_index.delta_mpt_key_padding),
&state_index.epoch_id,
delta_root,
state_index.maybe_height,
state_index.maybe_delta_trie_height,
)
}
pub fn get_state_trees_for_next_epoch(
&self, parent_state_index: &StateIndex, try_open: bool,
open_mpt_snapshot: bool,
) -> Result<Option<StateTrees>> {
let maybe_height = parent_state_index.maybe_height.map(|x| x + 1);
let snapshot;
let snapshot_epoch_id;
let snapshot_merkle_root;
let maybe_delta_trie_height;
let maybe_intermediate_mpt;
let maybe_intermediate_mpt_key_padding;
let intermediate_trie_root_merkle;
let delta_mpt;
let maybe_delta_mpt_key_padding;
let intermediate_epoch_id;
let new_delta_root;
if parent_state_index
.maybe_delta_trie_height
.unwrap_or_default()
== self.storage_manager.get_snapshot_epoch_count()
{
// Should shift to a new snapshot
// When the delta_height is set to None (e.g. in tests), we
// assume that the snapshot shift check is
// disabled.
snapshot_epoch_id = &parent_state_index.intermediate_epoch_id;
intermediate_epoch_id = &parent_state_index.epoch_id;
match self.storage_manager.wait_for_snapshot(
snapshot_epoch_id,
try_open,
open_mpt_snapshot,
)? {
None => {
// This is the special scenario when the snapshot isn't
// available but the snapshot at the intermediate epoch
// exists.
//
// At the synced snapshot, the intermediate_epoch_id is
// its parent snapshot. We need to shift again.
// There is no snapshot_info for the parent snapshot,
// how can we find out the snapshot_merkle_root?
// See validate_blame_states().
match self.storage_manager.wait_for_snapshot(
&intermediate_epoch_id,
try_open,
open_mpt_snapshot,
)? {
None => {
warn!(
"get_state_trees_for_next_epoch, shift snapshot, special case, \
snapshot not found for snapshot {:?}. StateIndex: {:?}.",
parent_state_index.epoch_id,
parent_state_index,
);
return Ok(None);
}
Some(guarded_snapshot) => {
let (guard, _snapshot) = guarded_snapshot.into();
snapshot_merkle_root =
match StorageManager::find_merkle_root(
&guard,
snapshot_epoch_id,
) {
None => {
warn!(
"get_state_trees_for_next_epoch, shift snapshot, special case, \
snapshot merkel root not found for snapshot {:?}. StateIndex: {:?}.",
snapshot_epoch_id,
parent_state_index,
);
return Ok(None);
}
Some(merkle_root) => merkle_root,
};
snapshot = GuardedValue::new(guard, _snapshot);
}
}
maybe_intermediate_mpt = None;
maybe_intermediate_mpt_key_padding = None;
match self
.storage_manager
.intermediate_trie_root_merkle
.write()
.take()
{
Some(v) => {
intermediate_trie_root_merkle = v;
}
_ => {
warn!(
"get_state_trees_for_next_epoch, shift snapshot, special case, \
intermediate_trie_root_merkle not found for snapshot {:?}. StateIndex: {:?}.",
snapshot_epoch_id,
parent_state_index,
);
return Ok(None);
}
}
debug!("get_state_trees_for_next_epoch, snapshot_merkle_root {:?}, intermediate_trie_root_merkle {:?}", snapshot_merkle_root, intermediate_trie_root_merkle);
match self
.storage_manager
.get_intermediate_mpt(&parent_state_index.epoch_id)?
{
None => {
warn!(
"get_state_trees_for_next_epoch, shift snapshot, special case, \
intermediate_mpt not found for snapshot {:?}. StateIndex: {:?}.",
parent_state_index.epoch_id,
parent_state_index,
);
return Ok(None);
}
Some(mpt) => delta_mpt = mpt,
}
}
Some(guarded_snapshot) => {
let (guard, _snapshot) = guarded_snapshot.into();
snapshot_merkle_root =
match StorageManager::find_merkle_root(
&guard,
snapshot_epoch_id,
) {
None => {
warn!(
"get_state_trees_for_next_epoch, shift snapshot, normal case, \
snapshot info not found for snapshot {:?}. StateIndex: {:?}.",
snapshot_epoch_id,
parent_state_index,
);
return Ok(None);
}
Some(merkle_root) => merkle_root,
};
let guarded_snapshot = GuardedValue::new(guard, _snapshot);
let temp_maybe_intermediate_mpt = self
.storage_manager
.get_intermediate_mpt(snapshot_epoch_id)?;
match temp_maybe_intermediate_mpt {
None => {
snapshot = guarded_snapshot;
maybe_intermediate_mpt_key_padding =
Some(&parent_state_index.delta_mpt_key_padding);
delta_mpt = self
.storage_manager
.get_delta_mpt(&snapshot_epoch_id)?;
intermediate_trie_root_merkle = MERKLE_NULL_NODE;
maybe_intermediate_mpt = None;
}
Some(mpt) => match mpt.get_merkle_root_by_epoch_id(
&parent_state_index.epoch_id,
)? {
Some(merkle_root) => {
snapshot = guarded_snapshot;
maybe_intermediate_mpt_key_padding = Some(
&parent_state_index.delta_mpt_key_padding,
);
delta_mpt = self
.storage_manager
.get_delta_mpt(&snapshot_epoch_id)?;
intermediate_trie_root_merkle = merkle_root;
maybe_intermediate_mpt = Some(mpt);
}
None => {
warn!(
"get_state_trees_for_next_epoch, shift snapshot, normal case, \
intermediate_trie_root not found for epoch {:?}. StateIndex: {:?}.",
parent_state_index.epoch_id,
parent_state_index,
);
// Check if we should progress with a synced
// state.
// This is a quick fix for
// https://github.com/Conflux-Chain/conflux-rust/issues/1543.
// FIXME: We should remove all the hacks about
// state sync.
match self.storage_manager.wait_for_snapshot(
&parent_state_index.epoch_id,
try_open,
open_mpt_snapshot,
)? {
None => {
warn!(
"get_state_trees_for_next_epoch, shift snapshot, special case, \
snapshot not found for snapshot {:?}. StateIndex: {:?}.",
parent_state_index.epoch_id,
parent_state_index,
);
return Ok(None);
}
Some(guarded_synced_snapshot) => {
snapshot = guarded_synced_snapshot;
}
}
maybe_intermediate_mpt = None;
maybe_intermediate_mpt_key_padding = None;
match self
.storage_manager
.intermediate_trie_root_merkle
.write()
.take()
{
Some(v) => {
intermediate_trie_root_merkle = v;
}
_ => {
warn!("get_state_trees_for_next_epoch, shift snapshot, special case, \
intermediate_trie_root_merkle not found for snapshot {:?}. StateIndex: {:?}.", snapshot_epoch_id, parent_state_index,);
return Ok(None);
}
}
match self
.storage_manager
.get_intermediate_mpt(
&parent_state_index.epoch_id,
)? {
None => {
warn!(
"get_state_trees_for_next_epoch, shift snapshot, special case, \
intermediate_mpt not found for snapshot {:?}. StateIndex: {:?}.",
parent_state_index.epoch_id,
parent_state_index,
);
return Ok(None);
}
Some(mpt) => delta_mpt = mpt,
}
}
},
};
}
};
maybe_delta_mpt_key_padding = None;
maybe_delta_trie_height = Some(1);
new_delta_root = true;
} else {
snapshot_epoch_id = &parent_state_index.snapshot_epoch_id;
snapshot_merkle_root = parent_state_index.snapshot_merkle_root;
intermediate_epoch_id = &parent_state_index.intermediate_epoch_id;
intermediate_trie_root_merkle =
parent_state_index.intermediate_trie_root_merkle;
match self.storage_manager.wait_for_snapshot(
snapshot_epoch_id,
try_open,
open_mpt_snapshot,
)? {
None => {
// This is the special scenario when the snapshot isn't
// available but the snapshot at the intermediate epoch
// exists.
if let Some(guarded_snapshot) =
self.storage_manager.wait_for_snapshot(
&intermediate_epoch_id,
try_open,
open_mpt_snapshot,
)?
{
snapshot = guarded_snapshot;
maybe_intermediate_mpt = None;
maybe_intermediate_mpt_key_padding = None;
delta_mpt = match self
.storage_manager
.get_intermediate_mpt(intermediate_epoch_id)?
{
None => {
return {
warn!(
"get_state_trees_for_next_epoch, special case, \
intermediate_mpt not found for epoch {:?}. StateIndex: {:?}.",
intermediate_epoch_id,
parent_state_index,
);
Ok(None)
}
}
Some(delta_mpt) => delta_mpt,
};
} else {
warn!(
"get_state_trees_for_next_epoch, special case, \
snapshot not found for epoch {:?}. StateIndex: {:?}.",
intermediate_epoch_id,
parent_state_index,
);
return Ok(None);
}
}
Some(guarded_snapshot) => {
snapshot = guarded_snapshot;
maybe_intermediate_mpt_key_padding = parent_state_index
.maybe_intermediate_mpt_key_padding
.as_ref();
maybe_intermediate_mpt =
if maybe_intermediate_mpt_key_padding.is_some() {
self.storage_manager
.get_intermediate_mpt(snapshot_epoch_id)?
} else {
None
};
delta_mpt = self
.storage_manager
.get_delta_mpt(snapshot_epoch_id)?;
}
};
maybe_delta_trie_height =
parent_state_index.maybe_delta_trie_height.map(|x| x + 1);
maybe_delta_mpt_key_padding =
Some(&parent_state_index.delta_mpt_key_padding);
new_delta_root = false;
};
let delta_root = if new_delta_root {
None
} else {
match delta_mpt
.get_root_node_ref_by_epoch(&parent_state_index.epoch_id)?
{
None => {
warn!(
"get_state_trees_for_next_epoch, not shifting, \
delta_root not found for epoch {:?}. mpt_id {}, StateIndex: {:?}.",
parent_state_index.epoch_id,
delta_mpt.get_mpt_id(), parent_state_index
);
return Ok(None);
}
Some(root_node) => root_node,
}
};
Self::get_state_trees_internal(
snapshot.into().1,
snapshot_epoch_id,
snapshot_merkle_root,
maybe_intermediate_mpt,
maybe_intermediate_mpt_key_padding,
intermediate_epoch_id,
intermediate_trie_root_merkle,
delta_mpt,
maybe_delta_mpt_key_padding,
&parent_state_index.epoch_id,
delta_root,
maybe_height,
maybe_delta_trie_height,
)
}
/// Check if we can make a new snapshot, and if so, make it in background.
pub fn check_make_snapshot(
&self, maybe_intermediate_trie: Option<Arc<DeltaMpt>>,
intermediate_trie_root: Option<NodeRefDeltaMpt>,
intermediate_epoch_id: &EpochId, new_height: u64,
recover_mpt_during_construct_pivot_state: bool,
) -> Result<()> {
StorageManager::check_make_register_snapshot_background(
self.storage_manager.clone(),
intermediate_epoch_id.clone(),
new_height,
maybe_intermediate_trie.map(|intermediate_trie| DeltaMptIterator {
mpt: intermediate_trie,
maybe_root_node: intermediate_trie_root,
}),
recover_mpt_during_construct_pivot_state,
)
}
pub fn get_state_no_commit_inner(
self: &Arc<Self>, state_index: StateIndex, try_open: bool,
open_mpt_snapshot: bool,
) -> Result<Option<State>> {
let maybe_state_trees =
self.get_state_trees(&state_index, try_open, open_mpt_snapshot)?;
match maybe_state_trees {
None => Ok(None),
Some(state_trees) => {
Ok(Some(State::new(self.clone(), state_trees, false)))
}
}
}
fn get_state_for_genesis_write_inner(self: &Arc<Self>) -> State {
State::new(
self.clone(),
StateTrees {
snapshot_db: self
.storage_manager
.wait_for_snapshot(
&NULL_EPOCH,
/* try_open = */ false,
true,
)
.unwrap()
.unwrap()
.into()
.1,
snapshot_epoch_id: NULL_EPOCH,
snapshot_merkle_root: MERKLE_NULL_NODE,
maybe_intermediate_trie: None,
intermediate_trie_root: None,
intermediate_trie_root_merkle: MERKLE_NULL_NODE,
maybe_intermediate_trie_key_padding: None,
delta_trie: self
.storage_manager
.get_delta_mpt(&NULL_EPOCH)
.unwrap(),
delta_trie_root: None,
delta_trie_key_padding: GENESIS_DELTA_MPT_KEY_PADDING.clone(),
maybe_delta_trie_height: Some(1),
maybe_height: Some(1),
intermediate_epoch_id: NULL_EPOCH,
parent_epoch_id: NULL_EPOCH,
},
false,
)
}
// Currently we use epoch number to decide whether or not to
// start a new delta trie. The value of parent_epoch_id is only
// known after the computation is done.
//
// If we use delta trie size upper bound to decide whether or not
// to start a new delta trie, then the computation about whether
// or not start a new delta trie, can only be done at the time
// of committing. In this scenario, the execution engine should
// first get the state assuming that the delta trie won't change,
// then check if committing fails due to over size, and if so,
// start a new delta trie and re-apply the change.
//
// Due to the complexity of the latter approach, we stay with the
// simple approach.
pub fn get_state_for_next_epoch_inner(
self: &Arc<Self>, parent_epoch_id: StateIndex, open_mpt_snapshot: bool,
recover_mpt_during_construct_pivot_state: bool,
) -> Result<Option<State>> {
let maybe_state_trees = self.get_state_trees_for_next_epoch(
&parent_epoch_id,
/* try_open = */ false,
open_mpt_snapshot,
)?;
match maybe_state_trees {
None => Ok(None),
Some(state_trees) => Ok(Some(State::new(
self.clone(),
state_trees,
recover_mpt_during_construct_pivot_state,
))),
}
}
pub fn notify_genesis_hash(&self, genesis_hash: EpochId) {
if let Some(single_mpt_manager) = &self.single_mpt_storage_manager {
*single_mpt_manager.genesis_hash.lock() = genesis_hash;
}
}
pub fn config(&self) -> &StorageConfiguration {
&self.storage_manager.storage_conf
}
}
impl StateManagerTrait for StateManager {
fn get_state_no_commit(
self: &Arc<Self>, state_index: StateIndex, try_open: bool,
space: Option<Space>,
) -> Result<Option<Box<dyn StateTrait>>> {
let maybe_state_trees =
self.get_state_trees(&state_index, try_open, false);
// If there is an error, we will continue to search for an available
// single_mpt.
let maybe_state_err = match maybe_state_trees {
Ok(Some(state_trees)) => {
return Ok(Some(Box::new(State::new(
self.clone(),
state_trees,
false,
))));
}
Err(e) => Err(e),
Ok(None) => Ok(None),
};
if self.single_mpt_storage_manager.is_none() {
return maybe_state_err;
}
let single_mpt_storage_manager =
self.single_mpt_storage_manager.as_ref().unwrap();
if !single_mpt_storage_manager.contains_space(&space) {
return maybe_state_err;
}
debug!(
"read state from single mpt state: epoch={}",
state_index.epoch_id
);
let single_mpt_state = single_mpt_storage_manager
.get_state_by_epoch(state_index.epoch_id)?;
if single_mpt_state.is_none() {
warn!("single mpt state missing: epoch={:?}", state_index.epoch_id);
return maybe_state_err;
} else {
Ok(Some(Box::new(single_mpt_state.unwrap())))
}
}
fn get_state_for_genesis_write(self: &Arc<Self>) -> Box<dyn StateTrait> {
let state = self.get_state_for_genesis_write_inner();
if self.single_mpt_storage_manager.is_none() {
return Box::new(state);
}
let single_mpt_storage_manager =
self.single_mpt_storage_manager.as_ref().unwrap();
let single_mpt_state = single_mpt_storage_manager
.get_state_for_genesis()
.expect("single_mpt genesis initialize error");
Box::new(ReplicatedState::new(
state,
single_mpt_state,
single_mpt_storage_manager.get_state_filter(),
))
}
// Currently we use epoch number to decide whether or not to
// start a new delta trie. The value of parent_epoch_id is only
// known after the computation is done.
//
// If we use delta trie size upper bound to decide whether or not
// to start a new delta trie, then the computation about whether
// or not start a new delta trie, can only be done at the time
// of committing. In this scenario, the execution engine should
// first get the state assuming that the delta trie won't change,
// then check if committing fails due to over size, and if so,
// start a new delta trie and re-apply the change.
//
// Due to the complexity of the latter approach, we stay with the
// simple approach.
fn get_state_for_next_epoch(
self: &Arc<Self>, parent_epoch_id: StateIndex,
recover_mpt_during_construct_pivot_state: bool,
) -> Result<Option<Box<dyn StateTrait>>> {
let mut parent_epoch = parent_epoch_id.epoch_id;
let parent_height = parent_epoch_id.maybe_height;
let state = self.get_state_for_next_epoch_inner(
parent_epoch_id,
false,
recover_mpt_during_construct_pivot_state,
)?;
if state.is_none() {
return Ok(None);
}
if self.single_mpt_storage_manager.is_none() {
return Ok(Some(Box::new(state.unwrap())));
}
let single_mpt_storage_manager =
self.single_mpt_storage_manager.as_ref().unwrap();
if let Some(parent_height) = parent_height {
trace!(
"get_state_for_next_epoch: parent={}, available={}",
parent_height,
single_mpt_storage_manager.available_height
);
if single_mpt_storage_manager.available_height > parent_height {
return Ok(Some(Box::new(state.unwrap())));
} else if single_mpt_storage_manager.available_height
== parent_height
{
// For the first available single_mpt state, we read the genesis
// block state as the parent state to continue execution.
// This is only needed for tests because there is no eSpace
// state entries for Conflux Mainnet.
parent_epoch = *single_mpt_storage_manager.genesis_hash.lock();
}
}
let single_mpt_state =
single_mpt_storage_manager.get_state_by_epoch(parent_epoch)?;
if single_mpt_state.is_none() {
error!("get_state_for_next_epoch: single_mpt_state is required but is not found!");
return Ok(None);
}
Ok(Some(Box::new(ReplicatedState::new(
state.unwrap(),
single_mpt_state.unwrap(),
single_mpt_storage_manager.get_state_filter(),
))))
}
}
use crate::{
impls::{
delta_mpt::*,
errors::*,
replicated_state::ReplicatedState,
storage_db::{
delta_db_manager_rocksdb::DeltaDbManagerRocksdb,
snapshot_db_manager_sqlite::SnapshotDbManagerSqlite,
},
storage_manager::{
single_mpt_storage_manager::SingleMptStorageManager,
storage_manager::StorageManager,
},
},
state::*,
state_manager::*,
storage_db::*,
utils::guarded_value::GuardedValue,
StorageConfiguration,
};
use cfx_types::Space;
use malloc_size_of_derive::MallocSizeOf as MallocSizeOfDerive;
use primitives::{
DeltaMptKeyPadding, EpochId, MerkleHash, StorageKeyWithSpace,
GENESIS_DELTA_MPT_KEY_PADDING, MERKLE_NULL_NODE, NULL_EPOCH,
};
use std::sync::{
atomic::{AtomicUsize, Ordering},
Arc,
};