* [CI] check evmbin build (#11096) * Correct EIP-712 encoding (#11092) * [client]: Fix for incorrectly dropped consensus messages (#11082) (#11086) * Update hardcoded headers (foundation, classic, kovan, xdai, ewc, ...) (#11053) * Add cargo-remote dir to .gitignore (?) * Update light client headers: ropsten 6631425 foundation 8798209 (#11201) * Update list of bootnodes for xDai chain (#11236) * ethcore/res: add mordor testnet configuration (#11200) * [chain specs]: activate Istanbul on mainnet (#11228) * [builtin]: support multiple prices and activations in chain spec (#11039) * [receipt]: add sender & receiver to RichReceipts (#11179) * [ethcore/builtin]: do not panic in blake2pricer on short input (#11180) * Made ecrecover implementation trait public (#11188) * Fix docker centos build (#11226) * Update MIX bootnodes. (#11203) * Insert explicit warning into the panic hook (#11225) * Use provided usd-per-eth value if an endpoint is specified (#11209) * Cleanup stratum a bit (#11161) * Add Constantinople EIPs to the dev (instant_seal) config (#10809) (already backported) * util Host: fix a double Read Lock bug in fn Host::session_readable() (#11175) * ethcore client: fix a double Read Lock bug in fn Client::logs() (#11172) * Type annotation for next_key() matching of json filter options (#11192) * Upgrade jsonrpc to latest (#11206) * [dependencies]: jsonrpc 14.0.1 (#11183) * Upgrade to jsonrpc v14 (#11151) * Switching sccache from local to Redis (#10971) * Snapshot restoration overhaul (#11219) * Add new line after writing block to hex file. (#10984) * Pause pruning while snapshotting (#11178) * Change how RPCs eth_call and eth_estimateGas handle "Pending" (#11127) * Fix block detail updating (#11015) * Make InstantSeal Instant again #11186 * Filter out some bad ropsten warp snapshots (#11247)
151 lines
5.0 KiB
Rust
151 lines
5.0 KiB
Rust
// Copyright 2015-2019 Parity Technologies (UK) Ltd.
|
|
// This file is part of Parity Ethereum.
|
|
|
|
// Parity Ethereum is free software: you can redistribute it and/or modify
|
|
// it under the terms of the GNU General Public License as published by
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
// (at your option) any later version.
|
|
|
|
// Parity Ethereum 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 General Public License for more details.
|
|
|
|
// You should have received a copy of the GNU General Public License
|
|
// along with Parity Ethereum. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
use std::collections::HashMap;
|
|
use chain::sync_packet::{PacketInfo, SyncPacket};
|
|
use network::{NetworkContext, PeerId, PacketId, Error, SessionInfo, ProtocolId};
|
|
use network::client_version::ClientVersion;
|
|
use bytes::Bytes;
|
|
use ethcore::client::BlockChainClient;
|
|
use types::BlockNumber;
|
|
use ethcore::snapshot::SnapshotService;
|
|
use parking_lot::RwLock;
|
|
|
|
/// IO interface for the syncing handler.
|
|
/// Provides peer connection management and an interface to the blockchain client.
|
|
// TODO: ratings
|
|
pub trait SyncIo {
|
|
/// Disable a peer
|
|
fn disable_peer(&mut self, peer_id: PeerId);
|
|
/// Disconnect peer
|
|
fn disconnect_peer(&mut self, peer_id: PeerId);
|
|
/// Respond to current request with a packet. Can be called from an IO handler for incoming packet.
|
|
fn respond(&mut self, packet_id: PacketId, data: Vec<u8>) -> Result<(), Error>;
|
|
/// Send a packet to a peer using specified protocol.
|
|
fn send(&mut self, peer_id: PeerId, packet_id: SyncPacket, data: Vec<u8>) -> Result<(), Error>;
|
|
/// Get the blockchain
|
|
fn chain(&self) -> &BlockChainClient;
|
|
/// Get the snapshot service.
|
|
fn snapshot_service(&self) -> &SnapshotService;
|
|
/// Returns peer version identifier
|
|
fn peer_version(&self, peer_id: PeerId) -> ClientVersion {
|
|
ClientVersion::from(peer_id.to_string())
|
|
}
|
|
/// Returns the peer enode string
|
|
fn peer_enode(&self, peer_id: PeerId) -> Option<String>;
|
|
/// Returns information on p2p session
|
|
fn peer_session_info(&self, peer_id: PeerId) -> Option<SessionInfo>;
|
|
/// Maximum mutually supported ETH protocol version
|
|
fn eth_protocol_version(&self, peer_id: PeerId) -> u8;
|
|
/// Maximum mutually supported version of a gien protocol.
|
|
fn protocol_version(&self, protocol: &ProtocolId, peer_id: PeerId) -> u8;
|
|
/// Returns if the chain block queue empty
|
|
fn is_chain_queue_empty(&self) -> bool {
|
|
self.chain().is_queue_empty()
|
|
}
|
|
/// Check if the session is expired
|
|
fn is_expired(&self) -> bool;
|
|
/// Return sync overlay
|
|
fn chain_overlay(&self) -> &RwLock<HashMap<BlockNumber, Bytes>>;
|
|
/// Returns the size the payload shouldn't exceed
|
|
fn payload_soft_limit(&self) -> usize;
|
|
}
|
|
|
|
/// Wraps `NetworkContext` and the blockchain client
|
|
pub struct NetSyncIo<'s> {
|
|
network: &'s NetworkContext,
|
|
chain: &'s BlockChainClient,
|
|
snapshot_service: &'s SnapshotService,
|
|
chain_overlay: &'s RwLock<HashMap<BlockNumber, Bytes>>,
|
|
}
|
|
|
|
impl<'s> NetSyncIo<'s> {
|
|
/// Creates a new instance from the `NetworkContext` and the blockchain client reference.
|
|
pub fn new(network: &'s NetworkContext,
|
|
chain: &'s BlockChainClient,
|
|
snapshot_service: &'s SnapshotService,
|
|
chain_overlay: &'s RwLock<HashMap<BlockNumber, Bytes>>) -> NetSyncIo<'s> {
|
|
NetSyncIo {
|
|
network: network,
|
|
chain: chain,
|
|
snapshot_service: snapshot_service,
|
|
chain_overlay: chain_overlay,
|
|
}
|
|
}
|
|
}
|
|
|
|
impl<'s> SyncIo for NetSyncIo<'s> {
|
|
fn disable_peer(&mut self, peer_id: PeerId) {
|
|
self.network.disable_peer(peer_id);
|
|
}
|
|
|
|
fn disconnect_peer(&mut self, peer_id: PeerId) {
|
|
self.network.disconnect_peer(peer_id);
|
|
}
|
|
|
|
fn respond(&mut self, packet_id: PacketId, data: Vec<u8>) -> Result<(), Error>{
|
|
self.network.respond(packet_id, data)
|
|
}
|
|
|
|
fn send(&mut self, peer_id: PeerId, packet_id: SyncPacket, data: Vec<u8>) -> Result<(), Error>{
|
|
self.network.send_protocol(packet_id.protocol(), peer_id, packet_id.id(), data)
|
|
}
|
|
|
|
fn chain(&self) -> &BlockChainClient {
|
|
self.chain
|
|
}
|
|
|
|
fn snapshot_service(&self) -> &dyn SnapshotService {
|
|
self.snapshot_service
|
|
}
|
|
|
|
fn peer_version(&self, peer_id: PeerId) -> ClientVersion {
|
|
self.network.peer_client_version(peer_id)
|
|
}
|
|
|
|
fn peer_enode(&self, peer_id: PeerId) -> Option<String> {
|
|
self.network.session_info(peer_id).and_then(|info| {
|
|
info.id.map(|node_id| {
|
|
format!("enode:://{}@{}", node_id, info.remote_address)
|
|
})
|
|
})
|
|
}
|
|
|
|
fn peer_session_info(&self, peer_id: PeerId) -> Option<SessionInfo> {
|
|
self.network.session_info(peer_id)
|
|
}
|
|
|
|
fn eth_protocol_version(&self, peer_id: PeerId) -> u8 {
|
|
self.network.protocol_version(self.network.subprotocol_name(), peer_id).unwrap_or(0)
|
|
}
|
|
|
|
fn protocol_version(&self, protocol: &ProtocolId, peer_id: PeerId) -> u8 {
|
|
self.network.protocol_version(*protocol, peer_id).unwrap_or(0)
|
|
}
|
|
|
|
fn is_expired(&self) -> bool {
|
|
self.network.is_expired()
|
|
}
|
|
|
|
fn chain_overlay(&self) -> &RwLock<HashMap<BlockNumber, Bytes>> {
|
|
self.chain_overlay
|
|
}
|
|
|
|
fn payload_soft_limit(&self) -> usize {
|
|
self.network.payload_soft_limit()
|
|
}
|
|
}
|