| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359 |
- use chrono::{NaiveDateTime, Utc};
- use serde::{Deserialize, Serialize};
- use std::{
- collections::hash_map::DefaultHasher,
- hash::{Hash, Hasher},
- path::PathBuf,
- time::Duration,
- };
- use super::{
- block::Block,
- blockchain::Blockchain,
- util::{get_current_time, load, save, Timestamp},
- vote::Vote,
- };
- use darkfi::{
- crypto::{
- keypair::{PublicKey, SecretKey},
- schnorr::{SchnorrPublic, SchnorrSecret},
- },
- Result,
- };
- use rand::rngs::OsRng;
- /// This struct represents the state of a consensus node.
- /// Each node is numbered and has a secret-public keys pair, to sign messages.
- /// Nodes hold a set of Blockchains(some of which are not notarized)
- /// and a set of unconfirmed pending transactions.
- #[derive(Deserialize, Serialize)]
- pub struct State {
- pub id: u64,
- pub genesis_time: Timestamp,
- pub secret_key: SecretKey,
- pub public_key: PublicKey,
- pub canonical_blockchain: Blockchain,
- pub node_blockchains: Vec<Blockchain>,
- pub unconfirmed_txs: Vec<String>,
- }
- impl State {
- pub fn new(id: u64, genesis_time: Timestamp, init_block: Block) -> State {
- // TODO: clock sync
- let secret = SecretKey::random(&mut OsRng);
- State {
- id,
- genesis_time,
- secret_key: secret,
- public_key: PublicKey::from_secret(secret),
- canonical_blockchain: Blockchain::new(init_block),
- node_blockchains: Vec::new(),
- unconfirmed_txs: Vec::new(),
- }
- }
- /// Node retreives a transaction and append it to the unconfirmed transactions list.
- /// Additional validity rules must be defined by the protocol for transactions.
- pub fn append_tx(&mut self, tx: String) {
- self.unconfirmed_txs.push(tx);
- }
- /// Node calculates seconds until next epoch starting time.
- /// Epochs duration is configured using the delta value.
- pub fn get_seconds_until_next_epoch_start(&self) -> Duration {
- let delta = 10;
- let start_time = NaiveDateTime::from_timestamp(self.genesis_time.0, 0);
- let current_epoch = self.get_current_epoch() + 1;
- let next_epoch_start_timestamp =
- (current_epoch * (2 * delta)) + (start_time.timestamp() as u64);
- let next_epoch_start =
- NaiveDateTime::from_timestamp(next_epoch_start_timestamp.try_into().unwrap(), 0);
- let current_time = NaiveDateTime::from_timestamp(Utc::now().timestamp(), 0);
- let diff = next_epoch_start - current_time;
- Duration::new(diff.num_seconds().try_into().unwrap(), 0)
- }
- /// Node calculates current epoch, based on elapsed time from the genesis block.
- /// Epochs duration is configured using the delta value.
- pub fn get_current_epoch(&self) -> u64 {
- let delta = 10;
- self.genesis_time.clone().elapsed() / (2 * delta)
- }
- /// Node finds epochs leader, using a simple hash method.
- /// Leader calculation is based on how many nodes are participating in the network.
- pub fn get_epoch_leader(&self, nodes_count: u64) -> u64 {
- let epoch = self.get_current_epoch();
- let mut hasher = DefaultHasher::new();
- epoch.hash(&mut hasher);
- hasher.finish() % nodes_count
- }
- /// Node checks if they are the current epoch leader.
- pub fn check_if_epoch_leader(&self, nodes_count: u64) -> bool {
- let leader = self.get_epoch_leader(nodes_count);
- self.id == leader
- }
- /// Node generates a block proposal(mapped as Vote) for the current epoch,
- /// containing all uncorfirmed transactions.
- /// Block extends the longest notarized blockchain the node holds.
- pub fn propose_block(&self) -> Option<Vote> {
- let epoch = self.get_current_epoch();
- let longest_notarized_chain = self.find_longest_notarized_chain();
- let mut hasher = DefaultHasher::new();
- longest_notarized_chain.blocks.last().unwrap().hash(&mut hasher);
- let unproposed_txs = self.get_unproposed_txs();
- let proposed_block = Block::new(
- hasher.finish().to_string(),
- epoch,
- unproposed_txs,
- String::from("proof"),
- String::from("r"),
- String::from("s"),
- );
- let signed_block = self.secret_key.sign(&proposed_block.signature_encode());
- Some(Vote::new(signed_block, proposed_block, self.id))
- }
- /// Node retrieves all unconfiremd transactions not proposed in previous blocks.
- pub fn get_unproposed_txs(&self) -> Vec<String> {
- let mut unproposed_txs = self.unconfirmed_txs.clone();
- for blockchain in &self.node_blockchains {
- for block in &blockchain.blocks {
- for tx in &block.txs {
- if let Some(pos) = unproposed_txs.iter().position(|txs| *txs == *tx) {
- unproposed_txs.remove(pos);
- }
- }
- }
- }
- unproposed_txs
- }
- /// Finds the longest fully notarized blockchain the node holds.
- pub fn find_longest_notarized_chain(&self) -> &Blockchain {
- let mut longest_notarized_chain = &self.canonical_blockchain;
- let mut length = 0;
- for blockchain in &self.node_blockchains {
- if blockchain.is_notarized() && blockchain.blocks.len() > length {
- length = blockchain.blocks.len();
- longest_notarized_chain = &blockchain;
- }
- }
- &longest_notarized_chain
- }
- /// Node receives the proposed block(mapped as Vote), verifies its sender(epoch leader),
- /// and proceeds with voting on it.
- pub fn receive_proposed_block(
- &mut self,
- leader_public_key: &PublicKey,
- proposed_block_vote: &Vote,
- nodes_count: u64,
- ) -> Option<Vote> {
- assert!(self.get_epoch_leader(nodes_count) == proposed_block_vote.id);
- assert!(leader_public_key
- .verify(&proposed_block_vote.block.signature_encode(), &proposed_block_vote.vote));
- self.vote_block(&proposed_block_vote.block)
- }
- /// Given a block, node finds which blockchain it extends.
- /// If block extends the canonical blockchain, a new fork blockchain is created.
- /// Node votes on the block, only if it extends the longest notarized chain it has seen.
- pub fn vote_block(&mut self, block: &Block) -> Option<Vote> {
- let index = self.find_extended_blockchain_index(block);
- let blockchain = if index == -1 {
- let blockchain = Blockchain::new(block.clone());
- self.node_blockchains.push(blockchain);
- self.node_blockchains.last().unwrap()
- } else {
- self.node_blockchains[index as usize].add_block(&block);
- &self.node_blockchains[index as usize]
- };
- if self.extends_notarized_blockchain(blockchain) {
- let block_copy = block.clone();
- let signed_block = self.secret_key.sign(&block_copy.signature_encode());
- return Some(Vote::new(signed_block, block_copy, self.id))
- }
- None
- }
- /// Node verifies if provided blockchain is notarized excluding the last block.
- pub fn extends_notarized_blockchain(&self, blockchain: &Blockchain) -> bool {
- for block in &blockchain.blocks[..(blockchain.blocks.len() - 1)] {
- if !block.metadata.sm.notarized {
- return false
- }
- }
- true
- }
- /// Given a block, node finds the index of the blockchain it extends.
- pub fn find_extended_blockchain_index(&self, block: &Block) -> i64 {
- let mut hasher = DefaultHasher::new();
- for (index, blockchain) in self.node_blockchains.iter().enumerate() {
- let last_block = blockchain.blocks.last().unwrap();
- last_block.hash(&mut hasher);
- if block.st == hasher.finish().to_string() && block.sl > last_block.sl {
- return index as i64
- }
- }
- let last_block = self.canonical_blockchain.blocks.last().unwrap();
- last_block.hash(&mut hasher);
- if block.st != hasher.finish().to_string() || block.sl <= last_block.sl {
- panic!("Proposed block doesn't extend any known chains.");
- }
- -1
- }
- /// Node receives a vote for a block.
- /// First, sender is verified using their public key.
- /// Block is searched in nodes blockchains.
- /// If the vote wasn't received before, it is appended to block votes list.
- /// When a node sees 2n/3 votes for a block it notarizes it.
- /// When a block gets notarized, the transactions it contains are removed from
- /// nodes unconfirmed transactions list.
- /// Finally, we check if the notarization of the block can finalize parent blocks
- /// in its blockchain.
- pub fn receive_vote(&mut self, node_public_key: &PublicKey, vote: &Vote, nodes_count: usize) {
- assert!(node_public_key.verify(&vote.block.signature_encode(), &vote.vote));
- let vote_block = self.find_block(&vote.block);
- if vote_block == None {
- panic!("Received vote for unknown block.");
- }
- let (unwrapped_vote_block, blockchain_index) = vote_block.unwrap();
- if !unwrapped_vote_block.metadata.sm.votes.contains(vote) {
- unwrapped_vote_block.metadata.sm.votes.push(vote.clone());
- }
- if !unwrapped_vote_block.metadata.sm.notarized &&
- unwrapped_vote_block.metadata.sm.votes.len() > (2 * nodes_count / 3)
- {
- unwrapped_vote_block.metadata.sm.notarized = true;
- self.check_blockchain_finalization(blockchain_index);
- }
- }
- /// Node searches it the blockchains it holds for provided block.
- pub fn find_block(&mut self, vote_block: &Block) -> Option<(&mut Block, i64)> {
- for (index, blockchain) in &mut self.node_blockchains.iter_mut().enumerate() {
- for block in blockchain.blocks.iter_mut().rev() {
- if vote_block == block {
- return Some((block, index as i64))
- }
- }
- }
- for block in &mut self.canonical_blockchain.blocks.iter_mut().rev() {
- if vote_block == block {
- return Some((block, -1))
- }
- }
- None
- }
- /// Node checks if the index blockchain can be finalized.
- /// Consensus finalization logic: If node has observed the notarization of 3 consecutive
- /// blocks in a fork chain, it finalizes (appends to canonical blockchain) all blocks up to the middle block.
- /// When fork chain blocks are finalized, rest fork chains not starting by those blocks are removed.
- pub fn check_blockchain_finalization(&mut self, blockchain_index: i64) {
- let blockchain = if blockchain_index == -1 {
- &mut self.canonical_blockchain
- } else {
- &mut self.node_blockchains[blockchain_index as usize]
- };
- let blockchain_len = blockchain.blocks.len();
- if blockchain_len > 2 {
- let mut consecutive_notarized = 0;
- for block in &blockchain.blocks {
- if block.metadata.sm.notarized {
- consecutive_notarized = consecutive_notarized + 1;
- } else {
- break
- }
- }
- if consecutive_notarized > 2 {
- let mut finalized_blocks = Vec::new();
- for block in &mut blockchain.blocks[..(consecutive_notarized - 1)] {
- block.metadata.sm.finalized = true;
- finalized_blocks.push(block.clone());
- for tx in block.txs.clone() {
- if let Some(pos) = self.unconfirmed_txs.iter().position(|txs| *txs == tx) {
- self.unconfirmed_txs.remove(pos);
- }
- }
- }
- blockchain.blocks.drain(0..(consecutive_notarized - 1));
- for block in &finalized_blocks {
- self.canonical_blockchain.blocks.push(block.clone());
- }
- let mut hasher = DefaultHasher::new();
- let last_finalized_block = self.canonical_blockchain.blocks.last().unwrap();
- last_finalized_block.hash(&mut hasher);
- let last_finalized_block_hash = hasher.finish().to_string();
- let mut dropped_blockchains = Vec::new();
- for (index, blockchain) in self.node_blockchains.iter().enumerate() {
- let first_block = blockchain.blocks.first().unwrap();
- if first_block.st != last_finalized_block_hash ||
- first_block.sl <= last_finalized_block.sl
- {
- dropped_blockchains.push(index);
- }
- }
- for index in dropped_blockchains {
- self.node_blockchains.remove(index);
- }
- }
- }
- }
- /// Util function to save the current node state to provided file path.
- pub fn save(&self, path: &PathBuf) -> Result<()> {
- save::<Self>(path, self)
- }
- /// Util function to load current node state by the provided file path.
- // If file is not found, node state is reset.
- pub fn load_or_create(id: u64, path: &PathBuf) -> Result<Self> {
- match load::<Self>(path) {
- Ok(state) => Ok(state),
- Err(_) => return Self::reset(id, path),
- }
- }
- /// Util function to load the current node state by the provided file path.
- pub fn load_current_state(id: u64, path: &PathBuf) -> Result<State> {
- let state = Self::load_or_create(id, path)?;
- Ok(state)
- }
- /// Util function to reset node state.
- pub fn reset(id: u64, path: &PathBuf) -> Result<State> {
- // Genesis block is generated.
- let mut genesis_block = Block::new(
- String::from("⊥"),
- 0,
- vec![],
- String::from("proof"),
- String::from("r"),
- String::from("s"),
- );
- genesis_block.metadata.sm.notarized = true;
- genesis_block.metadata.sm.finalized = true;
- let genesis_time = get_current_time();
- let state = Self::new(id, genesis_time, genesis_block.clone());
- state.save(path)?;
- return Ok(state)
- }
- }
|