explorerd/service/blocks.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
/* This file is part of DarkFi (https://dark.fi)
*
* Copyright (C) 2020-2025 Dyne.org foundation
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
use log::{debug, warn};
use sled_overlay::sled::{transaction::ConflictableTransactionError, Transactional};
use tinyjson::JsonValue;
use darkfi::{
blockchain::{
BlockInfo, BlockchainOverlay, HeaderHash, SLED_BLOCK_DIFFICULTY_TREE,
SLED_BLOCK_ORDER_TREE, SLED_BLOCK_TREE,
},
util::time::Timestamp,
Error, Result,
};
use darkfi_sdk::{crypto::schnorr::Signature, tx::TransactionHash};
use crate::{error::ExplorerdError, ExplorerService};
#[derive(Debug, Clone)]
/// Structure representing a block record.
pub struct BlockRecord {
/// Header hash identifier of the block
pub header_hash: String,
/// Block version
pub version: u8,
/// Previous block hash
pub previous: String,
/// Block height
pub height: u32,
/// Block creation timestamp
pub timestamp: Timestamp,
/// The block's nonce. This value changes arbitrarily with mining.
pub nonce: u64,
/// Merkle tree root of the transactions hashes contained in this block
pub root: String,
/// Block producer signature
pub signature: Signature,
}
impl BlockRecord {
/// Auxiliary function to convert a `BlockRecord` into a `JsonValue` array.
pub fn to_json_array(&self) -> JsonValue {
JsonValue::Array(vec![
JsonValue::String(self.header_hash.clone()),
JsonValue::Number(self.version as f64),
JsonValue::String(self.previous.clone()),
JsonValue::Number(self.height as f64),
JsonValue::String(self.timestamp.to_string()),
JsonValue::Number(self.nonce as f64),
JsonValue::String(self.root.clone()),
JsonValue::String(format!("{:?}", self.signature)),
])
}
}
impl From<&BlockInfo> for BlockRecord {
fn from(block: &BlockInfo) -> Self {
Self {
header_hash: block.hash().to_string(),
version: block.header.version,
previous: block.header.previous.to_string(),
height: block.header.height,
timestamp: block.header.timestamp,
nonce: block.header.nonce,
root: block.header.root.to_string(),
signature: block.signature,
}
}
}
impl ExplorerService {
/// Resets blocks in the database by clearing all block related trees, returning an Ok result on success.
pub fn reset_blocks(&self) -> Result<()> {
let db = &self.db.blockchain.sled_db;
// Initialize block related trees to reset
let trees_to_reset = [SLED_BLOCK_TREE, SLED_BLOCK_ORDER_TREE, SLED_BLOCK_DIFFICULTY_TREE];
// Iterate over each tree and remove its entries
for tree_name in &trees_to_reset {
let tree = db.open_tree(tree_name)?;
tree.clear()?;
let tree_name_str = std::str::from_utf8(tree_name)?;
debug!(target: "explorerd::blocks", "Successfully reset block tree: {tree_name_str}");
}
Ok(())
}
/// Adds the provided [`BlockInfo`] to the block explorer database.
///
/// This function processes each transaction in the block, calculating and updating the
/// latest [`GasMetrics`] for non-genesis blocks and for transactions that are not
/// PoW rewards. After processing all transactions, the block is permanently persisted to
/// the explorer database.
pub async fn put_block(&self, block: &BlockInfo) -> Result<()> {
let blockchain_overlay = BlockchainOverlay::new(&self.db.blockchain)?;
// Initialize collections to hold gas data and transactions that have gas data
let mut tx_gas_data = Vec::with_capacity(block.txs.len());
let mut txs_hashes_with_gas_data = Vec::with_capacity(block.txs.len());
// Calculate gas data for non-PoW reward transactions and non-genesis blocks
for (i, tx) in block.txs.iter().enumerate() {
if !tx.is_pow_reward() && block.header.height != 0 {
tx_gas_data.insert(i, self.calculate_tx_gas_data(tx, false).await?);
txs_hashes_with_gas_data.insert(i, tx.hash());
}
}
// If the block contains transaction gas data, insert the gas metrics into the metrics store
if !tx_gas_data.is_empty() {
self.db.metrics_store.insert_gas_metrics(
block.header.height,
&block.header.timestamp,
&txs_hashes_with_gas_data,
&tx_gas_data,
)?;
}
// Add the block and commit the changes to persist it
let _ = blockchain_overlay.lock().unwrap().add_block(block)?;
blockchain_overlay.lock().unwrap().overlay.lock().unwrap().apply()?;
debug!(target: "explorerd::blocks::put_block", "Added block {:?}", block);
Ok(())
}
/// Provides the total block count.
pub fn get_block_count(&self) -> usize {
self.db.blockchain.len()
}
/// Fetch all known blocks from the database.
pub fn get_blocks(&self) -> Result<Vec<BlockRecord>> {
// Fetch blocks and handle any errors encountered
let blocks = &self.db.blockchain.get_all().map_err(|e| {
Error::DatabaseError(format!("[get_blocks] Block retrieval failed: {e:?}"))
})?;
// Transform the found blocks into a vector of block records
let block_records: Vec<BlockRecord> = blocks.iter().map(BlockRecord::from).collect();
Ok(block_records)
}
/// Fetch a block given its header hash from the database.
pub fn get_block_by_hash(&self, header_hash: &str) -> Result<Option<BlockRecord>> {
// Parse header hash, returning an error if parsing fails
let header_hash = header_hash
.parse::<HeaderHash>()
.map_err(|_| ExplorerdError::InvalidHeaderHash(header_hash.to_string()))?;
// Fetch block by hash and handle encountered errors
match self.db.blockchain.get_blocks_by_hash(&[header_hash]) {
Ok(blocks) => Ok(blocks.first().map(BlockRecord::from)),
Err(Error::BlockNotFound(_)) => Ok(None),
Err(e) => Err(Error::DatabaseError(format!(
"[get_block_by_hash] Block retrieval failed: {e:?}"
))),
}
}
/// Fetch a block given its height from the database.
pub fn get_block_by_height(&self, height: u32) -> Result<Option<BlockRecord>> {
// Fetch block by height and handle encountered errors
match self.db.blockchain.get_blocks_by_heights(&[height]) {
Ok(blocks) => Ok(blocks.first().map(BlockRecord::from)),
Err(Error::BlockNotFound(_)) => Ok(None),
Err(e) => Err(Error::DatabaseError(format!(
"[get_block_by_height] Block retrieval failed: {e:?}"
))),
}
}
/// Fetch the last block from the database.
pub fn last_block(&self) -> Result<Option<(u32, String)>> {
let block_store = &self.db.blockchain.blocks;
// Return None result when no blocks exist
if block_store.is_empty() {
return Ok(None);
}
// Blocks exist, retrieve last block
let (height, header_hash) = block_store.get_last().map_err(|e| {
Error::DatabaseError(format!("[last_block] Block retrieval failed: {e:?}"))
})?;
// Convert header hash to a string and return result
Ok(Some((height, header_hash.to_string())))
}
/// Fetch the last N blocks from the database.
pub fn get_last_n(&self, n: usize) -> Result<Vec<BlockRecord>> {
// Fetch the last n blocks and handle any errors encountered
let blocks_result = &self.db.blockchain.get_last_n(n).map_err(|e| {
Error::DatabaseError(format!("[get_last_n] Block retrieval failed: {e:?}"))
})?;
// Transform the found blocks into a vector of block records
let block_records: Vec<BlockRecord> = blocks_result.iter().map(BlockRecord::from).collect();
Ok(block_records)
}
/// Fetch blocks within a specified range from the database.
pub fn get_by_range(&self, start: u32, end: u32) -> Result<Vec<BlockRecord>> {
// Fetch blocks in the specified range and handle any errors encountered
let blocks_result = &self.db.blockchain.get_by_range(start, end).map_err(|e| {
Error::DatabaseError(format!("[get_by_range]: Block retrieval failed: {e:?}"))
})?;
// Transform the found blocks into a vector of block records
let block_records: Vec<BlockRecord> = blocks_result.iter().map(BlockRecord::from).collect();
Ok(block_records)
}
/// Resets the [`ExplorerDb::blockchain::blocks`] and [`ExplorerDb::blockchain::transactions`]
/// trees to a specified height by removing entries above the `reset_height`, returning a result
/// that indicates success or failure.
///
/// The function retrieves the last explorer block and iteratively rolls back entries
/// in the [`BlockStore::main`], [`BlockStore::order`], and [`BlockStore::difficulty`] trees
/// to the specified `reset_height`. It also resets the [`TxStore::main`] and
/// [`TxStore::location`] trees to reflect the transaction state at the given height.
///
/// This operation is performed atomically using a sled transaction applied across the affected sled
/// trees, ensuring consistency and avoiding partial updates.
pub fn reset_to_height(&self, reset_height: u32) -> Result<()> {
let block_store = &self.db.blockchain.blocks;
let tx_store = &self.db.blockchain.transactions;
debug!(target: "explorerd::blocks::reset_to_height", "Resetting to height {reset_height}: block_count={}, txs_count={}", block_store.len(), tx_store.len());
// Get the last block height
let (last_block_height, _) = block_store.get_last().map_err(|e| {
Error::DatabaseError(format!(
"[reset_to_height]: Failed to get the last block height: {e:?}"
))
})?;
// Skip resetting blocks if `reset_height` is greater than or equal to `last_block_height`
if reset_height >= last_block_height {
warn!(target: "explorerd::blocks::reset_to_height",
"Nothing to reset because reset_height is greater than or equal to last_block_height: {reset_height} >= {last_block_height}");
return Ok(());
}
// Get the associated block infos in order to obtain transactions to reset
let block_infos_to_reset =
&self.db.blockchain.get_by_range(reset_height, last_block_height).map_err(|e| {
Error::DatabaseError(format!(
"[reset_to_height]: Failed to get the transaction hashes to reset: {e:?}"
))
})?;
// Collect the transaction hashes from the blocks that need resetting
let txs_hashes_to_reset: Vec<TransactionHash> = block_infos_to_reset
.iter()
.flat_map(|block_info| block_info.txs.iter().map(|tx| tx.hash()))
.collect();
// Perform the reset operation atomically using a sled transaction
let tx_result = (&block_store.main, &block_store.order, &block_store.difficulty, &tx_store.main, &tx_store.location)
.transaction(|(block_main, block_order, block_difficulty, tx_main, tx_location)| {
// Traverse the block heights in reverse, removing each block up to (but not including) reset_height
for height in (reset_height + 1..=last_block_height).rev() {
let height_key = height.to_be_bytes();
// Fetch block from `order` tree to obtain the block hash needed to remove blocks from `main` tree
let order_header_hash = block_order.get(height_key).map_err(ConflictableTransactionError::Abort)?;
if let Some(header_hash) = order_header_hash {
// Remove block from the `main` tree
block_main.remove(&header_hash).map_err(ConflictableTransactionError::Abort)?;
// Remove block from the `difficulty` tree
block_difficulty.remove(&height_key).map_err(ConflictableTransactionError::Abort)?;
// Remove block from the `order` tree
block_order.remove(&height_key).map_err(ConflictableTransactionError::Abort)?;
}
debug!(target: "explorerd::blocks::reset_to_height", "Removed block at height: {height}");
}
// Iterate through the transaction hashes, removing the related transactions
for (tx_count, tx_hash) in txs_hashes_to_reset.iter().enumerate() {
// Remove transaction from the `main` tree
tx_main.remove(tx_hash.inner()).map_err(ConflictableTransactionError::Abort)?;
// Remove transaction from the `location` tree
tx_location.remove(tx_hash.inner()).map_err(ConflictableTransactionError::Abort)?;
debug!(target: "explorerd::blocks::reset_to_height", "Removed transaction ({tx_count}): {tx_hash}");
}
Ok(())
})
.map_err(|e| {
Error::DatabaseError(format!("[reset_to_height]: Resetting height failed: {e:?}"))
});
debug!(target: "explorerd::blocks::reset_to_height", "Successfully reset to height {reset_height}: block_count={}, txs_count={}", block_store.len(), tx_store.len());
tx_result
}
}