floresta_chain/pruned_utreexo/mod.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
//! The pruned utreexo module handles the full blockchain logic: validation, state tracking and
//! interfacing. This blockchain backend does not store the historical blocks, it's pruned.
//!
//! This module file defines the main traits for an utreexo-enabled chain backend:
//!
//! - [BlockchainInterface]: The main interface for interacting with the backend
//! - [UpdatableChainstate]: Trait defining methods for updating the chain state
//! - [ChainStore]: Trait for persisting and retrieving blockchain data (headers, block hashes,
//! the best chain data, and the accumulator)
extern crate alloc;
pub mod chain_state;
pub mod chain_state_builder;
pub mod chainparams;
pub mod chainstore;
#[cfg(feature = "kv-chainstore")]
pub mod kv_chainstore;
#[macro_use]
pub mod error;
pub mod consensus;
#[cfg(feature = "flat-chainstore")]
pub mod flat_chain_store;
pub mod partial_chain;
pub mod udata;
use alloc::sync::Arc;
use bitcoin::block::Header as BlockHeader;
use bitcoin::hashes::sha256;
use bitcoin::Block;
use bitcoin::BlockHash;
use bitcoin::OutPoint;
use bitcoin::Transaction;
use rustreexo::accumulator::node_hash::BitcoinNodeHash;
use rustreexo::accumulator::proof::Proof;
use rustreexo::accumulator::stump::Stump;
use self::partial_chain::PartialChainState;
use crate::prelude::*;
use crate::pruned_utreexo::utxo_data::UtxoData;
use crate::BestChain;
use crate::BlockConsumer;
use crate::BlockchainError;
use crate::DatabaseError;
use crate::DiskBlockHeader;
use crate::UtreexoBlock;
/// This trait is the main interface between our blockchain backend and other services.
/// It'll be useful for transitioning from rpc to a p2p based node
pub trait BlockchainInterface {
type Error: Error + Send + Sync + 'static;
/// Returns the block with a given height in our current tip.
fn get_block_hash(&self, height: u32) -> Result<bitcoin::BlockHash, Self::Error>;
/// Returns a bitcoin [Transaction] given it's txid.
fn get_tx(&self, txid: &bitcoin::Txid) -> Result<Option<bitcoin::Transaction>, Self::Error>;
/// Get the height of our best know chain.
fn get_height(&self) -> Result<u32, Self::Error>;
/// Broadcasts a transaction to the network.
fn broadcast(&self, tx: &bitcoin::Transaction) -> Result<(), Self::Error>;
/// Returns fee estimation for inclusion in `target` blocks.
fn estimate_fee(&self, target: usize) -> Result<f64, Self::Error>;
/// Returns a block with a given `hash` if any.
fn get_block(&self, hash: &BlockHash) -> Result<Block, Self::Error>;
/// Returns the best known block
fn get_best_block(&self) -> Result<(u32, BlockHash), Self::Error>;
/// Returns associated header for block with `hash`
fn get_block_header(&self, hash: &BlockHash) -> Result<BlockHeader, Self::Error>;
/// Register for receiving notifications for some event. Right now it only works for
/// new blocks, but may work with transactions in the future too.
/// if a module performs some heavy-lifting on the block's data, it should pass in a
/// vector or a channel where data can be transferred to the atual worker, otherwise
/// chainstate will be stuck for as long as you have work to do.
fn subscribe(&self, tx: Arc<dyn BlockConsumer>);
/// Tells whether or not we are on IBD
fn is_in_ibd(&self) -> bool;
/// Returns the list of unbroadcasted transactions.
fn get_unbroadcasted(&self) -> Vec<Transaction>;
/// Checks if a coinbase is mature
fn is_coinbase_mature(&self, height: u32, block: BlockHash) -> Result<bool, Self::Error>;
/// Returns a block locator
fn get_block_locator(&self) -> Result<Vec<BlockHash>, Self::Error>;
/// Returns a block locator from a given tip
///
/// This method may be used to get the locator from a tip that's not the best one
fn get_block_locator_for_tip(&self, tip: BlockHash) -> Result<Vec<BlockHash>, BlockchainError>;
/// Returns the last block we validated
fn get_validation_index(&self) -> Result<u32, Self::Error>;
/// Returns the height of a block, given it's hash
fn get_block_height(&self, hash: &BlockHash) -> Result<Option<u32>, Self::Error>;
fn update_acc(
&self,
acc: Stump,
block: UtreexoBlock,
height: u32,
proof: Proof,
del_hashes: Vec<sha256::Hash>,
) -> Result<Stump, Self::Error>;
fn get_chain_tips(&self) -> Result<Vec<BlockHash>, Self::Error>;
fn validate_block(
&self,
block: &Block,
proof: Proof,
inputs: HashMap<OutPoint, UtxoData>,
del_hashes: Vec<sha256::Hash>,
acc: Stump,
) -> Result<(), Self::Error>;
fn get_fork_point(&self, block: BlockHash) -> Result<BlockHash, Self::Error>;
fn get_params(&self) -> bitcoin::params::Params;
fn acc(&self) -> Stump;
}
/// [UpdatableChainstate] is a contract that a is expected from a chainstate
/// implementation, that wishes to be updated. Using those methods, a backend like the p2p-node,
/// can notify new blocks and transactions to a chainstate, allowing it to update it's state.
pub trait UpdatableChainstate {
/// This is one of the most important methods for a ChainState,
/// it gets a block and some utreexo data, validates this block and
/// connects to our chain of blocks. This function is meant to be atomic
/// and prone of running in parallel.
fn connect_block(
&self,
block: &Block,
proof: Proof,
inputs: HashMap<OutPoint, UtxoData>,
del_hashes: Vec<sha256::Hash>,
) -> Result<u32, BlockchainError>;
fn switch_chain(&self, new_tip: BlockHash) -> Result<(), BlockchainError>;
/// Accepts a new header to our chain. This method is called before connect_block, and
/// makes some basic checks on a header and saves it on disk. We only accept a block as
/// valid after calling connect_block.
///
/// This function returns whether this block is on our best-known chain, or in a fork
fn accept_header(&self, header: BlockHeader) -> Result<(), BlockchainError>;
/// Not used for now, but in a future blockchain with mempool, we can process transactions
/// that are not in a block yet.
fn handle_transaction(&self) -> Result<(), BlockchainError>;
/// Persists our data. Should be invoked periodically.
fn flush(&self) -> Result<(), BlockchainError>;
/// Toggle IBD on/off
fn toggle_ibd(&self, is_ibd: bool);
/// Tells this blockchain to consider this block invalid, and not build on top of it
fn invalidate_block(&self, block: BlockHash) -> Result<(), BlockchainError>;
/// Marks one block as being fully validated, this overrides a block that was explicitly
/// marked as invalid.
fn mark_block_as_valid(&self, block: BlockHash) -> Result<(), BlockchainError>;
/// Returns the root hashes of our utreexo forest
fn get_root_hashes(&self) -> Vec<BitcoinNodeHash>;
/// Returns a partial chainstate from a range of blocks.
///
/// [PartialChainState] is a simplified version of `ChainState` that is used during IBD.
/// It doesn't support reorgs, only hold headers for a subset of blocks and isn't [Sync].
/// The idea here is that you take a OS thread or some async task that will drive one
/// [PartialChainState] to completion by downloading blocks inside that chainstate's range.
/// If all goes right, it'll end without error, and you should mark blocks in this range as
/// valid.
/// Since this chainstate may start from a height with an existing UTXO set, you need to
/// provide a [Stump] for that block.
fn get_partial_chain(
&self,
initial_height: u32,
final_height: u32,
acc: Stump,
) -> Result<PartialChainState, BlockchainError>;
/// Marks a chain as fully-valid
///
/// This mimics the behaviour of checking every block before this block, and continues
/// from this point
fn mark_chain_as_assumed(&self, acc: Stump, tip: BlockHash) -> Result<bool, BlockchainError>;
/// Returns the current accumulator
fn get_acc(&self) -> Stump;
}
/// This trait is defining how we interact with our chain database. This definitions
/// will be used by the [ChainState](chain_state::ChainState) to save and retrieve data about the blockchain, likely
/// on disk.
/// Right now, you can use the [KvChainStore](chainstore::KvChainStore) in your code, it implements this trait and
/// uses a key-value store to save data.
/// The [DatabaseError] is a simple trait that can be implemented by any error type that
/// implements `std::error::Error` and `std::fmt::Display`. This is useful to abstract
/// the database implementation from the blockchain.
/// See the documentation of [DatabaseError] for more info.
pub trait ChainStore {
type Error: DatabaseError;
/// Saves the accumulator state for a given block height.
fn save_roots_for_block(&mut self, roots: Vec<u8>, height: u32) -> Result<(), Self::Error>;
/// Loads the state of our accumulator for a given block height.
///
/// This is the state of the resulting accumulator after we process the block at `height`. If you
/// need the accumulator used to validate a block at height `n`, you should get the accumulator
/// from block `n - 1`.
fn load_roots_for_block(&mut self, height: u32) -> Result<Option<Vec<u8>>, Self::Error>;
/// Loads the blockchain height
fn load_height(&self) -> Result<Option<BestChain>, Self::Error>;
/// Saves the blockchain height.
fn save_height(&mut self, height: &BestChain) -> Result<(), Self::Error>;
/// Get a block header from our database. See [DiskBlockHeader] for more info about
/// the data we save.
fn get_header(&self, block_hash: &BlockHash) -> Result<Option<DiskBlockHeader>, Self::Error>;
/// Get a block header by its height in our database.
fn get_header_by_height(&self, height: u32) -> Result<Option<DiskBlockHeader>, Self::Error>;
/// Saves a block header to our database. See [DiskBlockHeader] for more info about
/// the data we save.
fn save_header(&mut self, header: &DiskBlockHeader) -> Result<(), Self::Error>;
/// Returns the block hash for a given height.
fn get_block_hash(&self, height: u32) -> Result<Option<BlockHash>, Self::Error>;
/// Flushes write buffers to disk, this is called periodically by the [ChainState](crate::ChainState),
/// so in case of a crash, we don't lose too much data. If the database doesn't support
/// write buffers, this method can be a no-op.
fn flush(&mut self) -> Result<(), Self::Error>;
/// Associates a block hash with a given height, so we can retrieve it later.
fn update_block_index(&mut self, height: u32, hash: BlockHash) -> Result<(), Self::Error>;
/// Checks if our database didn't get corrupted, and if it has, it returns
/// an error.
///
/// If you're using a database that already checks for integrity by itself,
/// this can safely be a no-op.
fn check_integrity(&self) -> Result<(), Self::Error>;
}
#[derive(Debug, Clone)]
/// A notification is a hook that a type implementing [BlockchainInterface] sends each
/// time the given event happens. This is use to notify new blocks to the Electrum server.
/// In the future, it can be expanded to send more data, like transactions.
pub enum Notification {
NewBlock((Block, u32)),
}
impl<T: UpdatableChainstate> UpdatableChainstate for Arc<T> {
fn flush(&self) -> Result<(), BlockchainError> {
T::flush(self)
}
fn get_acc(&self) -> Stump {
T::get_acc(self)
}
fn toggle_ibd(&self, is_ibd: bool) {
T::toggle_ibd(self, is_ibd)
}
fn connect_block(
&self,
block: &Block,
proof: Proof,
inputs: HashMap<OutPoint, UtxoData>,
del_hashes: Vec<sha256::Hash>,
) -> Result<u32, BlockchainError> {
T::connect_block(self, block, proof, inputs, del_hashes)
}
fn accept_header(&self, header: BlockHeader) -> Result<(), BlockchainError> {
T::accept_header(self, header)
}
fn get_root_hashes(&self) -> Vec<BitcoinNodeHash> {
T::get_root_hashes(self)
}
fn invalidate_block(&self, block: BlockHash) -> Result<(), BlockchainError> {
T::invalidate_block(self, block)
}
fn get_partial_chain(
&self,
initial_height: u32,
final_height: u32,
acc: Stump,
) -> Result<PartialChainState, BlockchainError> {
T::get_partial_chain(self, initial_height, final_height, acc)
}
fn handle_transaction(&self) -> Result<(), BlockchainError> {
T::handle_transaction(self)
}
fn switch_chain(&self, new_tip: BlockHash) -> Result<(), BlockchainError> {
T::switch_chain(self, new_tip)
}
fn mark_block_as_valid(&self, block: BlockHash) -> Result<(), BlockchainError> {
T::mark_block_as_valid(self, block)
}
fn mark_chain_as_assumed(&self, acc: Stump, tip: BlockHash) -> Result<bool, BlockchainError> {
T::mark_chain_as_assumed(self, acc, tip)
}
}
impl<T: BlockchainInterface> BlockchainInterface for Arc<T> {
type Error = <T as BlockchainInterface>::Error;
fn get_tx(&self, txid: &bitcoin::Txid) -> Result<Option<bitcoin::Transaction>, Self::Error> {
T::get_tx(self, txid)
}
fn get_params(&self) -> bitcoin::params::Params {
T::get_params(self)
}
fn acc(&self) -> Stump {
T::acc(self)
}
fn broadcast(&self, tx: &bitcoin::Transaction) -> Result<(), Self::Error> {
T::broadcast(self, tx)
}
fn get_block(&self, hash: &BlockHash) -> Result<Block, Self::Error> {
T::get_block(self, hash)
}
fn subscribe(&self, tx: Arc<dyn BlockConsumer>) {
T::subscribe(self, tx)
}
fn is_in_ibd(&self) -> bool {
T::is_in_ibd(self)
}
fn get_height(&self) -> Result<u32, Self::Error> {
T::get_height(self)
}
fn estimate_fee(&self, target: usize) -> Result<f64, Self::Error> {
T::estimate_fee(self, target)
}
fn get_block_hash(&self, height: u32) -> Result<bitcoin::BlockHash, Self::Error> {
T::get_block_hash(self, height)
}
fn get_best_block(&self) -> Result<(u32, BlockHash), Self::Error> {
T::get_best_block(self)
}
fn get_block_header(&self, hash: &BlockHash) -> Result<BlockHeader, Self::Error> {
T::get_block_header(self, hash)
}
fn get_block_height(&self, hash: &BlockHash) -> Result<Option<u32>, Self::Error> {
T::get_block_height(self, hash)
}
fn get_unbroadcasted(&self) -> Vec<Transaction> {
T::get_unbroadcasted(self)
}
fn get_block_locator(&self) -> Result<Vec<BlockHash>, Self::Error> {
T::get_block_locator(self)
}
fn is_coinbase_mature(&self, height: u32, block: BlockHash) -> Result<bool, Self::Error> {
T::is_coinbase_mature(self, height, block)
}
fn get_validation_index(&self) -> Result<u32, Self::Error> {
T::get_validation_index(self)
}
fn get_block_locator_for_tip(&self, tip: BlockHash) -> Result<Vec<BlockHash>, BlockchainError> {
T::get_block_locator_for_tip(self, tip)
}
fn update_acc(
&self,
acc: Stump,
block: UtreexoBlock,
height: u32,
proof: Proof,
del_hashes: Vec<sha256::Hash>,
) -> Result<Stump, Self::Error> {
T::update_acc(self, acc, block, height, proof, del_hashes)
}
fn get_chain_tips(&self) -> Result<Vec<BlockHash>, Self::Error> {
T::get_chain_tips(self)
}
fn validate_block(
&self,
block: &Block,
proof: Proof,
inputs: HashMap<OutPoint, UtxoData>,
del_hashes: Vec<sha256::Hash>,
acc: Stump,
) -> Result<(), Self::Error> {
T::validate_block(self, block, proof, inputs, del_hashes, acc)
}
fn get_fork_point(&self, block: BlockHash) -> Result<BlockHash, Self::Error> {
T::get_fork_point(self, block)
}
}
/// This module defines an [UtxoData] struct, helpful for transaction validation
pub mod utxo_data {
use bitcoin::TxOut;
#[derive(Debug, Clone, PartialEq, Eq, PartialOrd, Ord, Hash)]
#[cfg_attr(
any(test, feature = "test-utils"),
derive(serde::Serialize, serde::Deserialize)
)]
/// Represents an unspent transaction output (UTXO) with additional metadata for validation.
pub struct UtxoData {
/// The unspent transaction output.
pub txout: TxOut,
/// Whether this output was created by a coinbase transaction.
pub is_coinbase: bool,
/// The block height at which the UTXO was confirmed.
pub creation_height: u32,
/// The creation time of the UTXO, defined by BIP 68 as the median time past (MTP) of the
/// block preceding the confirming block.
pub creation_time: u32,
}
}
/// [`ChainBackend`] is a trait alias for the [`BlockchainInterface`] and [`UpdatableChainstate`] combo meant to be used
/// to specify a generic blockchain backend.
///
/// Useful to avoid trait bounds verbosity.
pub trait ChainBackend: BlockchainInterface + UpdatableChainstate {}
impl<T: BlockchainInterface + UpdatableChainstate> ChainBackend for T {}
/// [`ThreadSafeChain`] is a trait alias for the [`BlockchainInterface`], [`UpdatableChainstate`], [`Sync`] and [`Send`] combo
/// and has a static lifetime. It is meant to be used to specify thread-safe blockchain backends.
///
/// Useful to avoid code verbosity.
pub trait ThreadSafeChain: ChainBackend + Sync + Send + 'static {}
impl<T: ChainBackend + Sync + Send + 'static> ThreadSafeChain for T {}