//! Provides network functionality for the Syncing thread. This fundamentally wraps a network //! channel and stores a global RPC ID to perform requests. use super::manager::{Id, RequestId as SyncRequestId}; use super::range_sync::{BatchId, ChainId}; use crate::beacon_processor::WorkEvent; use crate::service::{NetworkMessage, RequestId}; use crate::status::ToStatusMessage; use beacon_chain::{BeaconChainTypes, EngineState}; use fnv::FnvHashMap; use lighthouse_network::rpc::{BlocksByRangeRequest, BlocksByRootRequest, GoodbyeReason}; use lighthouse_network::{Client, NetworkGlobals, PeerAction, PeerId, ReportSource, Request}; use slog::{debug, trace, warn}; use std::sync::Arc; use tokio::sync::mpsc; /// Wraps a Network channel to employ various RPC related network functionality for the Sync manager. This includes management of a global RPC request Id. pub struct SyncNetworkContext { /// The network channel to relay messages to the Network service. network_send: mpsc::UnboundedSender>, /// Access to the network global vars. network_globals: Arc>, /// A sequential ID for all RPC requests. request_id: Id, /// BlocksByRange requests made by the range syncing algorithm. range_requests: FnvHashMap, /// BlocksByRange requests made by backfill syncing. backfill_requests: FnvHashMap, /// Whether the ee is online. If it's not, we don't allow access to the /// `beacon_processor_send`. execution_engine_state: EngineState, /// Channel to send work to the beacon processor. beacon_processor_send: mpsc::Sender>, /// Logger for the `SyncNetworkContext`. log: slog::Logger, } impl SyncNetworkContext { pub fn new( network_send: mpsc::UnboundedSender>, network_globals: Arc>, beacon_processor_send: mpsc::Sender>, log: slog::Logger, ) -> Self { Self { network_send, execution_engine_state: EngineState::Online, // always assume `Online` at the start network_globals, request_id: 1, range_requests: FnvHashMap::default(), backfill_requests: FnvHashMap::default(), beacon_processor_send, log, } } /// Returns the Client type of the peer if known pub fn client_type(&self, peer_id: &PeerId) -> Client { self.network_globals .peers .read() .peer_info(peer_id) .map(|info| info.client().clone()) .unwrap_or_default() } pub fn status_peers( &mut self, chain: &C, peers: impl Iterator, ) { let status_message = chain.status_message(); for peer_id in peers { debug!( self.log, "Sending Status Request"; "peer" => %peer_id, "fork_digest" => ?status_message.fork_digest, "finalized_root" => ?status_message.finalized_root, "finalized_epoch" => ?status_message.finalized_epoch, "head_root" => %status_message.head_root, "head_slot" => %status_message.head_slot, ); let request = Request::Status(status_message.clone()); let request_id = RequestId::Router; let _ = self.send_network_msg(NetworkMessage::SendRequest { peer_id, request, request_id, }); } } /// A blocks by range request for the range sync algorithm. pub fn blocks_by_range_request( &mut self, peer_id: PeerId, request: BlocksByRangeRequest, chain_id: ChainId, batch_id: BatchId, ) -> Result { trace!( self.log, "Sending BlocksByRange Request"; "method" => "BlocksByRange", "count" => request.count, "peer" => %peer_id, ); let request = Request::BlocksByRange(request); let id = self.next_id(); let request_id = RequestId::Sync(SyncRequestId::RangeSync { id }); self.send_network_msg(NetworkMessage::SendRequest { peer_id, request, request_id, })?; self.range_requests.insert(id, (chain_id, batch_id)); Ok(id) } /// A blocks by range request sent by the backfill sync algorithm pub fn backfill_blocks_by_range_request( &mut self, peer_id: PeerId, request: BlocksByRangeRequest, batch_id: BatchId, ) -> Result { trace!( self.log, "Sending backfill BlocksByRange Request"; "method" => "BlocksByRange", "count" => request.count, "peer" => %peer_id, ); let request = Request::BlocksByRange(request); let id = self.next_id(); let request_id = RequestId::Sync(SyncRequestId::BackFillSync { id }); self.send_network_msg(NetworkMessage::SendRequest { peer_id, request, request_id, })?; self.backfill_requests.insert(id, batch_id); Ok(id) } /// Received a blocks by range response. pub fn range_sync_response( &mut self, request_id: Id, remove: bool, ) -> Option<(ChainId, BatchId)> { if remove { self.range_requests.remove(&request_id) } else { self.range_requests.get(&request_id).cloned() } } /// Received a blocks by range response. pub fn backfill_sync_response(&mut self, request_id: Id, remove: bool) -> Option { if remove { self.backfill_requests.remove(&request_id) } else { self.backfill_requests.get(&request_id).cloned() } } /// Sends a blocks by root request for a single block lookup. pub fn single_block_lookup_request( &mut self, peer_id: PeerId, request: BlocksByRootRequest, ) -> Result { trace!( self.log, "Sending BlocksByRoot Request"; "method" => "BlocksByRoot", "count" => request.block_roots.len(), "peer" => %peer_id ); let request = Request::BlocksByRoot(request); let id = self.next_id(); let request_id = RequestId::Sync(SyncRequestId::SingleBlock { id }); self.send_network_msg(NetworkMessage::SendRequest { peer_id, request, request_id, })?; Ok(id) } /// Sends a blocks by root request for a parent request. pub fn parent_lookup_request( &mut self, peer_id: PeerId, request: BlocksByRootRequest, ) -> Result { trace!( self.log, "Sending BlocksByRoot Request"; "method" => "BlocksByRoot", "count" => request.block_roots.len(), "peer" => %peer_id ); let request = Request::BlocksByRoot(request); let id = self.next_id(); let request_id = RequestId::Sync(SyncRequestId::ParentLookup { id }); self.send_network_msg(NetworkMessage::SendRequest { peer_id, request, request_id, })?; Ok(id) } pub fn is_execution_engine_online(&self) -> bool { self.execution_engine_state == EngineState::Online } pub fn update_execution_engine_state(&mut self, engine_state: EngineState) { debug!(self.log, "Sync's view on execution engine state updated"; "past_state" => ?self.execution_engine_state, "new_state" => ?engine_state); self.execution_engine_state = engine_state; } /// Terminates the connection with the peer and bans them. pub fn goodbye_peer(&mut self, peer_id: PeerId, reason: GoodbyeReason) { self.network_send .send(NetworkMessage::GoodbyePeer { peer_id, reason, source: ReportSource::SyncService, }) .unwrap_or_else(|_| { warn!(self.log, "Could not report peer, channel failed"); }); } /// Reports to the scoring algorithm the behaviour of a peer. pub fn report_peer(&mut self, peer_id: PeerId, action: PeerAction, msg: &'static str) { debug!(self.log, "Sync reporting peer"; "peer_id" => %peer_id, "action" => %action); self.network_send .send(NetworkMessage::ReportPeer { peer_id, action, source: ReportSource::SyncService, msg, }) .unwrap_or_else(|e| { warn!(self.log, "Could not report peer, channel failed"; "error"=> %e); }); } /// Subscribes to core topics. pub fn subscribe_core_topics(&mut self) { self.network_send .send(NetworkMessage::SubscribeCoreTopics) .unwrap_or_else(|e| { warn!(self.log, "Could not subscribe to core topics."; "error" => %e); }); } /// Sends an arbitrary network message. fn send_network_msg(&mut self, msg: NetworkMessage) -> Result<(), &'static str> { self.network_send.send(msg).map_err(|_| { debug!(self.log, "Could not send message to the network service"); "Network channel send Failed" }) } pub fn processor_channel_if_enabled(&self) -> Option<&mpsc::Sender>> { self.is_execution_engine_online() .then_some(&self.beacon_processor_send) } pub fn processor_channel(&self) -> &mpsc::Sender> { &self.beacon_processor_send } fn next_id(&mut self) -> Id { let id = self.request_id; self.request_id += 1; id } }