darkfi/blockchain/header_store.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
/* This file is part of DarkFi (https://dark.fi)
*
* Copyright (C) 2020-2024 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 std::{fmt, str::FromStr};
use darkfi_sdk::{
blockchain::block_version,
crypto::{MerkleNode, MerkleTree},
hex::decode_hex_arr,
AsHex,
};
#[cfg(feature = "async-serial")]
use darkfi_serial::async_trait;
use darkfi_serial::{deserialize, serialize, Encodable, SerialDecodable, SerialEncodable};
use sled_overlay::{
serial::{parse_record, parse_u32_key_record},
sled,
};
use crate::{util::time::Timestamp, Error, Result};
use super::SledDbOverlayPtr;
#[derive(Copy, Clone, Debug, Eq, PartialEq, SerialEncodable, SerialDecodable)]
// We have to introduce a type rather than using an alias so we can restrict API access
pub struct HeaderHash(pub [u8; 32]);
impl HeaderHash {
pub fn new(data: [u8; 32]) -> Self {
Self(data)
}
#[inline]
pub fn inner(&self) -> &[u8; 32] {
&self.0
}
pub fn as_string(&self) -> String {
self.0.hex().to_string()
}
}
impl FromStr for HeaderHash {
type Err = Error;
fn from_str(header_hash_str: &str) -> Result<Self> {
Ok(Self(decode_hex_arr(header_hash_str)?))
}
}
impl fmt::Display for HeaderHash {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
write!(f, "{}", self.0.hex())
}
}
/// This struct represents a tuple of the form (version, previous, height, timestamp, nonce, merkle_tree).
#[derive(Debug, Clone, PartialEq, Eq, SerialEncodable, SerialDecodable)]
pub struct Header {
/// Block version
pub version: u8,
/// Previous block hash
pub previous: HeaderHash,
/// 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: MerkleNode,
}
impl Header {
pub fn new(previous: HeaderHash, height: u32, timestamp: Timestamp, nonce: u64) -> Self {
let version = block_version(height);
let root = MerkleTree::new(1).root(0).unwrap();
Self { version, previous, height, timestamp, nonce, root }
}
/// Compute the header's hash
pub fn hash(&self) -> HeaderHash {
let mut hasher = blake3::Hasher::new();
// Blake3 hasher .update() method never fails.
// This call returns a Result due to how the Write trait is specified.
// Calling unwrap() here should be safe.
self.encode(&mut hasher).expect("blake3 hasher");
HeaderHash(hasher.finalize().into())
}
}
impl Default for Header {
/// Represents the genesis header on current timestamp
fn default() -> Self {
Header::new(
HeaderHash::new(blake3::hash(b"Let there be dark!").into()),
0u32,
Timestamp::current_time(),
0u64,
)
}
}
impl fmt::Display for Header {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
let s = format!(
"{} {{\n\t{}: {}\n\t{}: {}\n\t{}: {}\n\t{}: {}\n\t{}: {}\n\t{}: {}\n\t{}: {}\n}}",
"Header",
"Hash",
self.hash(),
"Version",
self.version,
"Previous",
self.previous,
"Height",
self.height,
"Timestamp",
self.timestamp,
"Nonce",
self.nonce,
"Root",
self.root,
);
write!(f, "{}", s)
}
}
pub const SLED_HEADER_TREE: &[u8] = b"_headers";
pub const SLED_SYNC_HEADER_TREE: &[u8] = b"_sync_headers";
/// The `HeaderStore` is a structure representing all `sled` trees related
/// to storing the blockchain's blocks's header information.
#[derive(Clone)]
pub struct HeaderStore {
/// Main `sled` tree, storing all the blockchain's blocks' headers,
/// where the key is the headers' hash, and value is the serialized header.
pub main: sled::Tree,
/// The `sled` tree storing all the node pending headers while syncing,
/// where the key is the height number, and the value is the serialized
/// header.
pub sync: sled::Tree,
}
impl HeaderStore {
/// Opens a new or existing `HeaderStore` on the given sled database.
pub fn new(db: &sled::Db) -> Result<Self> {
let main = db.open_tree(SLED_HEADER_TREE)?;
let sync = db.open_tree(SLED_SYNC_HEADER_TREE)?;
Ok(Self { main, sync })
}
/// Insert a slice of [`Header`] into the store's main tree.
pub fn insert(&self, headers: &[Header]) -> Result<Vec<HeaderHash>> {
let (batch, ret) = self.insert_batch(headers);
self.main.apply_batch(batch)?;
Ok(ret)
}
/// Insert a slice of [`Header`] into the store's sync tree.
pub fn insert_sync(&self, headers: &[Header]) -> Result<()> {
let batch = self.insert_batch_sync(headers);
self.sync.apply_batch(batch)?;
Ok(())
}
/// Generate the sled batch corresponding to an insert to the main
/// tree, so caller can handle the write operation.
/// The header's hash() function output is used as the key,
/// while value is the serialized [`Header`] itself.
/// On success, the function returns the header hashes in the same
/// order, along with the corresponding operation batch.
pub fn insert_batch(&self, headers: &[Header]) -> (sled::Batch, Vec<HeaderHash>) {
let mut ret = Vec::with_capacity(headers.len());
let mut batch = sled::Batch::default();
for header in headers {
let headerhash = header.hash();
batch.insert(headerhash.inner(), serialize(header));
ret.push(headerhash);
}
(batch, ret)
}
/// Generate the sled batch corresponding to an insert to the sync
/// tree, so caller can handle the write operation.
/// The header height is used as the key, while value is the serialized
/// [`Header`] itself.
pub fn insert_batch_sync(&self, headers: &[Header]) -> sled::Batch {
let mut batch = sled::Batch::default();
for header in headers {
batch.insert(&header.height.to_be_bytes(), serialize(header));
}
batch
}
/// Check if the store's main tree contains a given header hash.
pub fn contains(&self, headerhash: &HeaderHash) -> Result<bool> {
Ok(self.main.contains_key(headerhash.inner())?)
}
/// Fetch given header hashes from the store's main tree.
/// The resulting vector contains `Option`, which is `Some` if the header
/// was found in the store's main tree, and otherwise it is `None`, if it
/// has not. The second parameter is a boolean which tells the function to
/// fail in case at least one header was not found.
pub fn get(&self, headerhashes: &[HeaderHash], strict: bool) -> Result<Vec<Option<Header>>> {
let mut ret = Vec::with_capacity(headerhashes.len());
for hash in headerhashes {
if let Some(found) = self.main.get(hash.inner())? {
let header = deserialize(&found)?;
ret.push(Some(header));
continue
}
if strict {
return Err(Error::HeaderNotFound(hash.inner().hex()))
}
ret.push(None);
}
Ok(ret)
}
/// Retrieve all headers from the store's main tree in the form of a tuple
/// (`headerhash`, `header`).
/// Be careful as this will try to load everything in memory.
pub fn get_all(&self) -> Result<Vec<(HeaderHash, Header)>> {
let mut headers = vec![];
for header in self.main.iter() {
headers.push(parse_record(header.unwrap())?);
}
Ok(headers)
}
/// Retrieve all headers from the store's sync tree in the form of a tuple
/// (`height`, `header`).
/// Be careful as this will try to load everything in memory.
pub fn get_all_sync(&self) -> Result<Vec<(u32, Header)>> {
let mut headers = vec![];
for record in self.sync.iter() {
headers.push(parse_u32_key_record(record.unwrap())?);
}
Ok(headers)
}
/// Fetch the fisrt header in the store's sync tree, based on the `Ord`
/// implementation for `Vec<u8>`.
pub fn get_first_sync(&self) -> Result<Option<Header>> {
let Some(found) = self.sync.first()? else { return Ok(None) };
let (_, header) = parse_u32_key_record(found)?;
Ok(Some(header))
}
/// Fetch the last header in the store's sync tree, based on the `Ord`
/// implementation for `Vec<u8>`.
pub fn get_last_sync(&self) -> Result<Option<Header>> {
let Some(found) = self.sync.last()? else { return Ok(None) };
let (_, header) = parse_u32_key_record(found)?;
Ok(Some(header))
}
/// Fetch n hashes after given height. In the iteration, if a header
/// height is not found, the iteration stops and the function returns what
/// it has found so far in the store's sync tree.
pub fn get_after_sync(&self, height: u32, n: usize) -> Result<Vec<Header>> {
let mut ret = vec![];
let mut key = height;
let mut counter = 0;
while counter < n {
if let Some(found) = self.sync.get_gt(key.to_be_bytes())? {
let (height, hash) = parse_u32_key_record(found)?;
key = height;
ret.push(hash);
counter += 1;
continue
}
break
}
Ok(ret)
}
/// Retrieve store's sync tree records count.
pub fn len_sync(&self) -> usize {
self.sync.len()
}
/// Check if store's sync tree contains any records.
pub fn is_empty_sync(&self) -> bool {
self.sync.is_empty()
}
/// Remove a slice of [`u32`] from the store's sync tree.
pub fn remove_sync(&self, heights: &[u32]) -> Result<()> {
let batch = self.remove_batch_sync(heights);
self.sync.apply_batch(batch)?;
Ok(())
}
/// Remove all records from the store's sync tree.
pub fn remove_all_sync(&self) -> Result<()> {
let headers = self.get_all_sync()?;
let heights = headers.iter().map(|h| h.0).collect::<Vec<u32>>();
let batch = self.remove_batch_sync(&heights);
self.sync.apply_batch(batch)?;
Ok(())
}
/// Generate the sled batch corresponding to a remove from the store's sync
/// tree, so caller can handle the write operation.
pub fn remove_batch_sync(&self, heights: &[u32]) -> sled::Batch {
let mut batch = sled::Batch::default();
for height in heights {
batch.remove(&height.to_be_bytes());
}
batch
}
}
/// Overlay structure over a [`HeaderStore`] instance.
pub struct HeaderStoreOverlay(SledDbOverlayPtr);
impl HeaderStoreOverlay {
pub fn new(overlay: &SledDbOverlayPtr) -> Result<Self> {
overlay.lock().unwrap().open_tree(SLED_HEADER_TREE, true)?;
Ok(Self(overlay.clone()))
}
/// Insert a slice of [`Header`] into the overlay.
/// The header's hash() function output is used as the key,
/// while value is the serialized [`Header`] itself.
/// On success, the function returns the header hashes in the same order.
pub fn insert(&self, headers: &[Header]) -> Result<Vec<HeaderHash>> {
let mut ret = Vec::with_capacity(headers.len());
let mut lock = self.0.lock().unwrap();
for header in headers {
let headerhash = header.hash();
lock.insert(SLED_HEADER_TREE, headerhash.inner(), &serialize(header))?;
ret.push(headerhash);
}
Ok(ret)
}
/// Fetch given headerhashes from the overlay.
/// The resulting vector contains `Option`, which is `Some` if the header
/// was found in the overlay, and otherwise it is `None`, if it has not.
/// The second parameter is a boolean which tells the function to fail in
/// case at least one header was not found.
pub fn get(&self, headerhashes: &[HeaderHash], strict: bool) -> Result<Vec<Option<Header>>> {
let mut ret = Vec::with_capacity(headerhashes.len());
let lock = self.0.lock().unwrap();
for hash in headerhashes {
if let Some(found) = lock.get(SLED_HEADER_TREE, hash.inner())? {
let header = deserialize(&found)?;
ret.push(Some(header));
continue
}
if strict {
return Err(Error::HeaderNotFound(hash.inner().hex()))
}
ret.push(None);
}
Ok(ret)
}
}