solana/ledger/src/bank_forks_utils.rs

128 lines
4.6 KiB
Rust
Raw Normal View History

use crate::{
blockstore::Blockstore,
blockstore_processor::{
self, BlockstoreProcessorError, BlockstoreProcessorResult, CacheBlockMetaSender,
ProcessOptions, TransactionStatusSender,
},
entry::VerifyRecyclers,
leader_schedule_cache::LeaderScheduleCache,
};
use log::*;
use solana_runtime::{
bank_forks::{BankForks, SnapshotConfig},
snapshot_utils,
};
use solana_sdk::{clock::Slot, genesis_config::GenesisConfig, hash::Hash};
use std::{fs, path::PathBuf, process, result};
pub type LoadResult = result::Result<
2020-05-06 08:24:59 -07:00
(BankForks, LeaderScheduleCache, Option<(Slot, Hash)>),
BlockstoreProcessorError,
>;
fn to_loadresult(
brp: BlockstoreProcessorResult,
snapshot_hash: Option<(Slot, Hash)>,
) -> LoadResult {
2020-05-06 08:24:59 -07:00
brp.map(|(bank_forks, leader_schedule_cache)| {
(bank_forks, leader_schedule_cache, snapshot_hash)
})
}
pub fn load(
genesis_config: &GenesisConfig,
blockstore: &Blockstore,
account_paths: Vec<PathBuf>,
2020-12-21 21:33:37 -08:00
shrink_paths: Option<Vec<PathBuf>>,
snapshot_config: Option<&SnapshotConfig>,
process_options: ProcessOptions,
transaction_status_sender: Option<&TransactionStatusSender>,
cache_block_meta_sender: Option<&CacheBlockMetaSender>,
) -> LoadResult {
if let Some(snapshot_config) = snapshot_config.as_ref() {
info!(
"Initializing snapshot path: {:?}",
snapshot_config.snapshot_path
);
let _ = fs::remove_dir_all(&snapshot_config.snapshot_path);
fs::create_dir_all(&snapshot_config.snapshot_path)
.expect("Couldn't create snapshot directory");
match snapshot_utils::get_highest_snapshot_archive_path(
&snapshot_config.snapshot_package_output_path,
) {
Some((archive_filename, (archive_slot, archive_snapshot_hash, compression))) => {
2020-02-26 18:04:18 -08:00
info!("Loading snapshot package: {:?}", archive_filename);
// Fail hard here if snapshot fails to load, don't silently continue
2020-02-26 18:04:18 -08:00
if account_paths.is_empty() {
error!("Account paths not present when booting from snapshot");
process::exit(1);
}
2020-02-26 18:04:18 -08:00
let deserialized_bank = snapshot_utils::bank_from_archive(
&account_paths,
&process_options.frozen_accounts,
2020-02-26 18:04:18 -08:00
&snapshot_config.snapshot_path,
&archive_filename,
compression,
genesis_config,
process_options.debug_keys.clone(),
Some(&crate::builtins::get(process_options.bpf_jit)),
2020-12-31 18:06:03 -08:00
process_options.account_indexes.clone(),
process_options.accounts_db_caching_enabled,
process_options.limit_load_slot_count_from_snapshot,
2020-02-26 18:04:18 -08:00
)
.expect("Load from snapshot failed");
2020-12-21 21:33:37 -08:00
if let Some(shrink_paths) = shrink_paths {
deserialized_bank.set_shrink_paths(shrink_paths);
}
2020-02-26 18:04:18 -08:00
let deserialized_snapshot_hash = (
deserialized_bank.slot(),
deserialized_bank.get_accounts_hash(),
);
if process_options.accounts_db_test_hash_calculation {
deserialized_bank.update_accounts_hash_with_index_option(false, true);
}
if deserialized_snapshot_hash != (archive_slot, archive_snapshot_hash) {
2020-02-26 18:04:18 -08:00
error!(
"Snapshot has mismatch:\narchive: {:?}\ndeserialized: {:?}",
archive_snapshot_hash, deserialized_snapshot_hash
);
2020-02-26 18:04:18 -08:00
process::exit(1);
}
2020-02-26 18:04:18 -08:00
return to_loadresult(
blockstore_processor::process_blockstore_from_root(
blockstore,
deserialized_bank,
2020-02-26 18:04:18 -08:00
&process_options,
&VerifyRecyclers::default(),
transaction_status_sender,
cache_block_meta_sender,
2020-02-26 18:04:18 -08:00
),
Some(deserialized_snapshot_hash),
);
}
None => info!("No snapshot package available"),
}
} else {
info!("Snapshots disabled");
}
info!("Processing ledger from genesis");
to_loadresult(
blockstore_processor::process_blockstore(
&genesis_config,
&blockstore,
account_paths,
process_options,
cache_block_meta_sender,
),
None,
)
}