226 lines
7.5 KiB
Rust
226 lines
7.5 KiB
Rust
extern crate db;
|
|
|
|
use crate::{ForkChoice, ForkChoiceError};
|
|
use db::{
|
|
stores::{BeaconBlockStore, BeaconStateStore},
|
|
ClientDB,
|
|
};
|
|
use log::{debug, trace};
|
|
use std::collections::HashMap;
|
|
use std::sync::Arc;
|
|
use types::{
|
|
readers::BeaconBlockReader, validator_registry::get_active_validator_indices, BeaconBlock,
|
|
ChainSpec, Hash256, Slot,
|
|
};
|
|
|
|
//TODO: Pruning and syncing
|
|
|
|
pub struct SlowLMDGhost<T: ClientDB + Sized> {
|
|
/// The latest attestation targets as a map of validator index to block hash.
|
|
//TODO: Could this be a fixed size vec
|
|
latest_attestation_targets: HashMap<u64, Hash256>,
|
|
/// Stores the children for any given parent.
|
|
children: HashMap<Hash256, Vec<Hash256>>,
|
|
/// Block storage access.
|
|
block_store: Arc<BeaconBlockStore<T>>,
|
|
/// State storage access.
|
|
state_store: Arc<BeaconStateStore<T>>,
|
|
}
|
|
|
|
impl<T> SlowLMDGhost<T>
|
|
where
|
|
T: ClientDB + Sized,
|
|
{
|
|
pub fn new(
|
|
block_store: Arc<BeaconBlockStore<T>>,
|
|
state_store: Arc<BeaconStateStore<T>>,
|
|
) -> Self {
|
|
SlowLMDGhost {
|
|
latest_attestation_targets: HashMap::new(),
|
|
children: HashMap::new(),
|
|
block_store,
|
|
state_store,
|
|
}
|
|
}
|
|
|
|
/// Finds the latest votes weighted by validator balance. Returns a hashmap of block_hash to
|
|
/// weighted votes.
|
|
pub fn get_latest_votes(
|
|
&self,
|
|
state_root: &Hash256,
|
|
block_slot: Slot,
|
|
spec: &ChainSpec,
|
|
) -> Result<HashMap<Hash256, u64>, ForkChoiceError> {
|
|
// get latest votes
|
|
// Note: Votes are weighted by min(balance, MAX_DEPOSIT_AMOUNT) //
|
|
// FORK_CHOICE_BALANCE_INCREMENT
|
|
// build a hashmap of block_hash to weighted votes
|
|
let mut latest_votes: HashMap<Hash256, u64> = HashMap::new();
|
|
// gets the current weighted votes
|
|
let current_state = self
|
|
.state_store
|
|
.get_deserialized(&state_root)?
|
|
.ok_or_else(|| ForkChoiceError::MissingBeaconState(*state_root))?;
|
|
|
|
let active_validator_indices = get_active_validator_indices(
|
|
¤t_state.validator_registry[..],
|
|
block_slot.epoch(spec.epoch_length),
|
|
);
|
|
|
|
for index in active_validator_indices {
|
|
let balance = std::cmp::min(
|
|
current_state.validator_balances[index],
|
|
spec.max_deposit_amount,
|
|
) / spec.fork_choice_balance_increment;
|
|
if balance > 0 {
|
|
if let Some(target) = self.latest_attestation_targets.get(&(index as u64)) {
|
|
*latest_votes.entry(*target).or_insert_with(|| 0) += balance;
|
|
}
|
|
}
|
|
}
|
|
trace!("Latest votes: {:?}", latest_votes);
|
|
Ok(latest_votes)
|
|
}
|
|
|
|
/// Get the total number of votes for some given block root.
|
|
///
|
|
/// The vote count is incremented each time an attestation target votes for a block root.
|
|
fn get_vote_count(
|
|
&self,
|
|
latest_votes: &HashMap<Hash256, u64>,
|
|
block_root: &Hash256,
|
|
) -> Result<u64, ForkChoiceError> {
|
|
let mut count = 0;
|
|
let block_slot = self
|
|
.block_store
|
|
.get_deserialized(&block_root)?
|
|
.ok_or_else(|| ForkChoiceError::MissingBeaconBlock(*block_root))?
|
|
.slot();
|
|
|
|
for (vote_hash, votes) in latest_votes.iter() {
|
|
let (root_at_slot, _) = self
|
|
.block_store
|
|
.block_at_slot(&vote_hash, block_slot)?
|
|
.ok_or_else(|| ForkChoiceError::MissingBeaconBlock(*block_root))?;
|
|
if root_at_slot == *block_root {
|
|
count += votes;
|
|
}
|
|
}
|
|
Ok(count)
|
|
}
|
|
}
|
|
|
|
impl<T: ClientDB + Sized> ForkChoice for SlowLMDGhost<T> {
|
|
/// Process when a block is added
|
|
fn add_block(
|
|
&mut self,
|
|
block: &BeaconBlock,
|
|
block_hash: &Hash256,
|
|
_: &ChainSpec,
|
|
) -> Result<(), ForkChoiceError> {
|
|
// build the children hashmap
|
|
// add the new block to the children of parent
|
|
(*self
|
|
.children
|
|
.entry(block.parent_root)
|
|
.or_insert_with(|| vec![]))
|
|
.push(block_hash.clone());
|
|
|
|
// complete
|
|
Ok(())
|
|
}
|
|
|
|
fn add_attestation(
|
|
&mut self,
|
|
validator_index: u64,
|
|
target_block_root: &Hash256,
|
|
spec: &ChainSpec,
|
|
) -> Result<(), ForkChoiceError> {
|
|
// simply add the attestation to the latest_attestation_target if the block_height is
|
|
// larger
|
|
trace!(
|
|
"Adding attestation of validator: {:?} for block: {}",
|
|
validator_index,
|
|
target_block_root
|
|
);
|
|
let attestation_target = self
|
|
.latest_attestation_targets
|
|
.entry(validator_index)
|
|
.or_insert_with(|| *target_block_root);
|
|
// if we already have a value
|
|
if attestation_target != target_block_root {
|
|
trace!("Old attestation found: {:?}", attestation_target);
|
|
// get the height of the target block
|
|
let block_height = self
|
|
.block_store
|
|
.get_deserialized(&target_block_root)?
|
|
.ok_or_else(|| ForkChoiceError::MissingBeaconBlock(*target_block_root))?
|
|
.slot()
|
|
.height(spec.genesis_slot);
|
|
|
|
// get the height of the past target block
|
|
let past_block_height = self
|
|
.block_store
|
|
.get_deserialized(&attestation_target)?
|
|
.ok_or_else(|| ForkChoiceError::MissingBeaconBlock(*attestation_target))?
|
|
.slot()
|
|
.height(spec.genesis_slot);
|
|
// update the attestation only if the new target is higher
|
|
if past_block_height < block_height {
|
|
trace!("Updating old attestation");
|
|
*attestation_target = *target_block_root;
|
|
}
|
|
}
|
|
Ok(())
|
|
}
|
|
|
|
/// A very inefficient implementation of LMD ghost.
|
|
fn find_head(
|
|
&mut self,
|
|
justified_block_start: &Hash256,
|
|
spec: &ChainSpec,
|
|
) -> Result<Hash256, ForkChoiceError> {
|
|
debug!("Running LMD Ghost Fork-choice rule");
|
|
let start = self
|
|
.block_store
|
|
.get_deserialized(&justified_block_start)?
|
|
.ok_or_else(|| ForkChoiceError::MissingBeaconBlock(*justified_block_start))?;
|
|
|
|
let start_state_root = start.state_root();
|
|
|
|
let latest_votes = self.get_latest_votes(&start_state_root, start.slot(), spec)?;
|
|
|
|
let mut head_hash = *justified_block_start;
|
|
|
|
loop {
|
|
debug!("Iteration for block: {}", head_hash);
|
|
|
|
let children = match self.children.get(&head_hash) {
|
|
Some(children) => children,
|
|
// we have found the head, exit
|
|
None => break,
|
|
};
|
|
|
|
// if we only have one child, use it
|
|
if children.len() == 1 {
|
|
trace!("Single child found.");
|
|
head_hash = children[0];
|
|
continue;
|
|
}
|
|
trace!("Children found: {:?}", children);
|
|
|
|
let mut head_vote_count = 0;
|
|
for child_hash in children {
|
|
let vote_count = self.get_vote_count(&latest_votes, &child_hash)?;
|
|
trace!("Vote count for child: {} is: {}", child_hash, vote_count);
|
|
|
|
if vote_count > head_vote_count {
|
|
head_hash = *child_hash;
|
|
head_vote_count = vote_count;
|
|
}
|
|
}
|
|
}
|
|
Ok(head_hash)
|
|
}
|
|
}
|