floresta_wire/p2p_wire/sync_node.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 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474
//! A node that downloads and validates the blockchain.
use std::time::Duration;
use std::time::Instant;
use bitcoin::p2p::message_blockdata::Inventory;
use bitcoin::p2p::ServiceFlags;
use floresta_chain::proof_util;
use floresta_chain::BlockValidationErrors;
use floresta_chain::BlockchainError;
use floresta_chain::ThreadSafeChain;
use floresta_chain::UtreexoBlock;
use floresta_common::service_flags;
use floresta_common::service_flags::UTREEXO;
use log::debug;
use log::error;
use log::info;
use log::warn;
use tokio::time::timeout;
use super::error::WireError;
use super::node::PeerStatus;
use super::node_interface::UserRequest;
use super::peer::PeerMessages;
use crate::address_man::AddressState;
use crate::node::periodic_job;
use crate::node::try_and_log;
use crate::node::ConnectionKind;
use crate::node::InflightRequests;
use crate::node::NodeNotification;
use crate::node::NodeRequest;
use crate::node::UtreexoNode;
use crate::node_context::NodeContext;
use crate::node_context::PeerId;
use crate::node_interface::NodeResponse;
/// [`SyncNode`] is a node that downloads and validates the blockchain.
/// This node implements:
/// - `NodeContext`
/// - `UtreexoNode<SyncNode, Chain>`
///
/// see [node_context](crates/floresta-wire/src/p2p_wire/node_context.rs) and [node.rs](crates/floresta-wire/src/p2p_wire/node.rs) for more information.
#[derive(Clone, Debug, Default)]
pub struct SyncNode {}
impl NodeContext for SyncNode {
fn get_required_services(&self) -> bitcoin::p2p::ServiceFlags {
ServiceFlags::WITNESS | service_flags::UTREEXO.into() | ServiceFlags::NETWORK
}
const MAX_OUTGOING_PEERS: usize = 5; // don't need many peers, half the default
const TRY_NEW_CONNECTION: u64 = 60; // one minute
const REQUEST_TIMEOUT: u64 = 10 * 60; // 10 minutes
const MAX_INFLIGHT_REQUESTS: usize = 100; // double the default
}
/// Node methods for a [`UtreexoNode`] where its Context is a [`SyncNode`].
/// See [node](crates/floresta-wire/src/p2p_wire/node.rs) for more information.
impl<Chain> UtreexoNode<Chain, SyncNode>
where
Chain: ThreadSafeChain,
WireError: From<Chain::Error>,
Chain::Error: From<proof_util::UtreexoLeafError>,
{
/// Computes the next blocks to request, and sends a GETDATA request
///
/// We send block requests in batches of four, and we can always have two
/// such batches inflight. Therefore, we can have at most eight inflight
/// blocks.
///
/// This function sends exactly one GETDATA, therefore ask for four blocks.
/// It will compute the next blocks we need, given our tip, validation index,
/// inflight requests and cached blocks. We then select a random peer and send
/// the request.
///
/// TODO: Be smarter when selecting peers to send, like taking in consideration
/// already inflight blocks and latency.
async fn get_blocks_to_download(&mut self) {
let max_inflight_blocks = SyncNode::BLOCKS_PER_GETDATA * SyncNode::MAX_CONCURRENT_GETDATA;
let inflight_blocks = self
.inflight
.keys()
.filter(|inflight| matches!(inflight, InflightRequests::Blocks(_)))
.count();
// if we do a request, this will be the new inflight blocks count
let next_inflight_count = inflight_blocks + SyncNode::BLOCKS_PER_GETDATA;
// if this request would make our inflight queue too long, postpone it
if next_inflight_count > max_inflight_blocks {
return;
}
let mut blocks = Vec::with_capacity(SyncNode::BLOCKS_PER_GETDATA);
for _ in 0..SyncNode::BLOCKS_PER_GETDATA {
let next_block = self.last_block_request + 1;
let validation_index = self.chain.get_validation_index().unwrap();
if next_block <= validation_index {
self.last_block_request = validation_index;
}
let next_block = self.chain.get_block_hash(next_block);
match next_block {
Ok(next_block) => {
blocks.push(next_block);
self.last_block_request += 1;
}
Err(_) => {
// this is likely because we've reached the end of the chain
// and we've got a `BlockNotPresent` error.
break;
}
}
}
try_and_log!(self.request_blocks(blocks).await);
}
async fn ask_for_missed_blocks(&mut self) -> Result<(), WireError> {
let next_request = self.chain.get_validation_index()? + 1;
let last_block_requested = self.last_block_request;
// we accumulate the hashes of all blocks in [next_request, last_block_requested] here
// and pass it to request_blocks, which will filter inflight and pending blocks out.
let mut range_blocks = Vec::new();
for request_height in next_request..=last_block_requested {
let block_hash = self.chain.get_block_hash(request_height)?;
range_blocks.push(block_hash);
}
self.request_blocks(range_blocks).await
}
/// While in sync phase, we don't want any non-utreexo connections. This function checks
/// if we have any non-utreexo peers and disconnects them.
async fn check_connections(&mut self) -> Result<(), WireError> {
let to_remove = self.peers.iter().filter_map(|(_, peer)| {
if !peer.services.has(UTREEXO.into()) && peer.state == PeerStatus::Ready {
return Some(peer);
}
None
});
for peer in to_remove {
info!("Disconnecting non-utreexo peer {}", peer.address);
peer.channel.send(NodeRequest::Shutdown)?;
}
self.maybe_open_connection(UTREEXO.into()).await
}
/// Starts the sync node by updating the last block requested and starting the main loop.
/// This loop to the following tasks, in order:
/// - Receives messages from our peers through the node_tx channel.
/// - Handles the message received.
/// - Checks if the kill signal is set, if so, breaks the loop.
/// - Checks if the chain is in IBD and disables it if it's not (e.g. if the chain is synced).
/// - Checks if our tip is obsolete and requests a new one, creating a new connection.
/// - Handles timeouts for inflight requests.
/// - If were low on inflights, requests new blocks to validate.
pub async fn run(mut self, done_cb: impl FnOnce(&Chain)) -> Self {
info!("Starting sync node");
self.last_block_request = self.chain.get_validation_index().unwrap();
loop {
while let Ok(Some(msg)) = timeout(Duration::from_secs(1), self.node_rx.recv()).await {
try_and_log!(self.handle_message(msg).await);
}
if *self.kill_signal.read().await {
break;
}
let validation_index = self
.chain
.get_validation_index()
.expect("validation index block should present");
let best_block = self
.chain
.get_best_block()
.expect("best block should present")
.0;
if validation_index == best_block {
info!("IBD is finished, switching to normal operation mode");
self.chain.toggle_ibd(false);
break;
}
periodic_job!(
self.check_connections().await,
self.last_connection,
TRY_NEW_CONNECTION,
SyncNode
);
// Open new feeler connection periodically
periodic_job!(
self.open_feeler_connection().await,
self.last_feeler,
FEELER_INTERVAL,
SyncNode
);
try_and_log!(self.check_for_timeout().await);
let assume_stale = Instant::now()
.duration_since(self.common.last_tip_update)
.as_secs()
> SyncNode::ASSUME_STALE;
if assume_stale {
try_and_log!(self.create_connection(ConnectionKind::Extra).await);
self.last_tip_update = Instant::now();
continue;
}
if !self.has_utreexo_peers() {
continue;
}
// Ask for missed blocks if they are no longer inflight or pending
try_and_log!(self.ask_for_missed_blocks().await);
self.get_blocks_to_download().await;
}
done_cb(&self.chain);
self
}
/// Process a block received from a peer.
/// This function removes the received block from the inflight requests and inserts in its own blocks map.
/// It then processes the block and its proof, and connects it to the chain.
///
/// This function bans the peer if the block is invalid and consider the whole chain as invalid.
async fn handle_block_data(
&mut self,
peer: PeerId,
block: UtreexoBlock,
) -> Result<(), WireError> {
let Some(block) = self.check_is_user_block_and_reply(block).await? else {
return Ok(());
};
self.inflight
.remove(&InflightRequests::Blocks(block.block.block_hash()));
self.blocks.insert(block.block.block_hash(), (peer, block));
let next_block_height = self.chain.get_validation_index()? + 1;
let mut next_block = self.chain.get_block_hash(next_block_height)?;
while let Some((peer, block)) = self.blocks.remove(&next_block) {
let start = Instant::now();
if block.udata.is_none() {
error!("Block without proof received from peer {peer}");
self.send_to_peer(peer, NodeRequest::Shutdown).await?;
let next_peer = self
.send_to_random_peer(
NodeRequest::GetBlock((vec![block.block.block_hash()], true)),
service_flags::UTREEXO.into(),
)
.await?;
self.inflight.insert(
InflightRequests::Blocks(next_block),
(next_peer, Instant::now()),
);
return Err(WireError::PeerMisbehaving);
}
debug!("processing block {}", block.block.block_hash());
let (proof, del_hashes, inputs) = proof_util::process_proof(
&block.udata.unwrap(),
&block.block.txdata,
next_block_height,
|h| self.chain.get_block_hash(h),
)?;
if let Err(e) = self
.chain
.connect_block(&block.block, proof, inputs, del_hashes)
{
error!(
"Invalid block {:?} received by peer {} reason: {:?}",
block.block.header, peer, e
);
if let BlockchainError::BlockValidation(e) = e {
// Because the proof isn't committed to the block, we can't invalidate
// it if the proof is invalid. Any other error should cause the block
// to be invalidated.
match e {
BlockValidationErrors::InvalidCoinbase(_)
| BlockValidationErrors::UtxoNotFound(_)
| BlockValidationErrors::ScriptValidationError(_)
| BlockValidationErrors::NullPrevOut
| BlockValidationErrors::EmptyInputs
| BlockValidationErrors::EmptyOutputs
| BlockValidationErrors::ScriptError
| BlockValidationErrors::BlockTooBig
| BlockValidationErrors::NotEnoughPow
| BlockValidationErrors::TooManyCoins
| BlockValidationErrors::BadMerkleRoot
| BlockValidationErrors::BadWitnessCommitment
| BlockValidationErrors::NotEnoughMoney
| BlockValidationErrors::FirstTxIsNotCoinbase
| BlockValidationErrors::BadCoinbaseOutValue
| BlockValidationErrors::EmptyBlock
| BlockValidationErrors::BadBip34
| BlockValidationErrors::BIP94TimeWarp
| BlockValidationErrors::UnspendableUTXO
| BlockValidationErrors::CoinbaseNotMatured => {
self.send_to_peer(peer, NodeRequest::Shutdown).await?;
try_and_log!(self.chain.invalidate_block(block.block.block_hash()));
}
BlockValidationErrors::InvalidProof => {}
BlockValidationErrors::BlockExtendsAnOrphanChain
| BlockValidationErrors::BlockDoesntExtendTip => {
// We've requested and processed a block that's not the next one in our
// chain. Force our last block requested to be the correct block, and
// keep going.
self.last_block_request = self.chain.get_validation_index()?;
}
}
}
// Disconnect the peer and ban it.
if let Some(peer) = self.peers.get(&peer).cloned() {
self.address_man.update_set_state(
peer.address_id as usize,
AddressState::Banned(SyncNode::BAN_TIME),
);
}
self.send_to_peer(peer, NodeRequest::Shutdown).await?;
return Err(WireError::PeerMisbehaving);
}
let next = self.chain.get_validation_index()? + 1;
match self.chain.get_block_hash(next) {
Ok(_next_block) => next_block = _next_block,
Err(_) => break,
}
debug!("accepted block {}", block.block.block_hash());
let elapsed = start.elapsed().as_secs();
self.block_sync_avg.add(elapsed);
#[cfg(feature = "metrics")]
{
use metrics::get_metrics;
let avg = self.block_sync_avg.value();
let metrics = get_metrics();
metrics.avg_block_processing_time.set(avg);
}
}
self.get_blocks_to_download().await;
Ok(())
}
/// Process a message from a peer and handle it accordingly between the variants of [`PeerMessages`].
async fn handle_message(&mut self, msg: NodeNotification) -> Result<(), WireError> {
match msg {
NodeNotification::FromUser(request, responder) => {
self.perform_user_request(request, responder).await;
}
NodeNotification::DnsSeedAddresses(addresses) => {
self.address_man.push_addresses(&addresses);
}
NodeNotification::FromPeer(peer, notification) => {
#[cfg(feature = "metrics")]
self.register_message_time(¬ification, peer);
match notification {
PeerMessages::Block(block) => {
if let Err(e) = self.handle_block_data(peer, block).await {
error!("Error processing block: {e:?}");
}
}
PeerMessages::Ready(version) => {
try_and_log!(self.handle_peer_ready(peer, &version).await);
}
PeerMessages::Disconnected(idx) => {
try_and_log!(self.handle_disconnection(peer, idx).await);
}
PeerMessages::Addr(addresses) => {
debug!("Got {} addresses from peer {}", addresses.len(), peer);
let addresses: Vec<_> =
addresses.into_iter().map(|addr| addr.into()).collect();
self.address_man.push_addresses(&addresses);
}
PeerMessages::NotFound(inv) => match inv {
Inventory::Error => {}
Inventory::Block(block)
| Inventory::WitnessBlock(block)
| Inventory::CompactBlock(block) => {
if let Some(request) = self
.inflight_user_requests
.remove(&UserRequest::Block(block))
{
request
.2
.send(NodeResponse::Block(None))
.map_err(|_| WireError::ResponseSendError)?;
}
if let Some(request) = self
.inflight_user_requests
.remove(&UserRequest::UtreexoBlock(block))
{
request
.2
.send(NodeResponse::UtreexoBlock(None))
.map_err(|_| WireError::ResponseSendError)?;
}
}
Inventory::WitnessTransaction(tx) | Inventory::Transaction(tx) => {
if let Some(request) = self
.inflight_user_requests
.remove(&UserRequest::MempoolTransaction(tx))
{
request
.2
.send(NodeResponse::MempoolTransaction(None))
.map_err(|_| WireError::ResponseSendError)?;
}
}
_ => {}
},
PeerMessages::Transaction(tx) => {
debug!("saw a mempool transaction with txid={}", tx.compute_txid());
if let Some(request) = self
.inflight_user_requests
.remove(&UserRequest::MempoolTransaction(tx.compute_txid()))
{
request
.2
.send(NodeResponse::MempoolTransaction(Some(tx)))
.map_err(|_| WireError::ResponseSendError)?;
}
}
PeerMessages::UtreexoState(_) => {
warn!("Utreexo state received from peer {peer}, but we didn't ask",);
self.increase_banscore(peer, 5).await?;
}
_ => {}
}
}
}
Ok(())
}
}