* [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)
154 lines
6.2 KiB
Rust
154 lines
6.2 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 block_sync::BlockRequest;
|
|
use bytes::Bytes;
|
|
use ethereum_types::H256;
|
|
use network::{PeerId};
|
|
use rlp::RlpStream;
|
|
use std::time::Instant;
|
|
use sync_io::SyncIo;
|
|
use types::BlockNumber;
|
|
|
|
use super::sync_packet::SyncPacket;
|
|
use super::sync_packet::SyncPacket::{
|
|
GetBlockHeadersPacket,
|
|
GetBlockBodiesPacket,
|
|
GetReceiptsPacket,
|
|
GetSnapshotManifestPacket,
|
|
GetSnapshotDataPacket,
|
|
};
|
|
|
|
use super::{
|
|
BlockSet,
|
|
ChainSync,
|
|
PeerAsking,
|
|
};
|
|
|
|
/// The Chain Sync Requester: requesting data to other peers
|
|
pub struct SyncRequester;
|
|
|
|
impl SyncRequester {
|
|
/// Perform block download request`
|
|
pub fn request_blocks(sync: &mut ChainSync, io: &mut SyncIo, peer_id: PeerId, request: BlockRequest, block_set: BlockSet) {
|
|
match request {
|
|
BlockRequest::Headers { start, count, skip } => {
|
|
SyncRequester::request_headers_by_hash(sync, io, peer_id, &start, count, skip, false, block_set);
|
|
},
|
|
BlockRequest::Bodies { hashes } => {
|
|
SyncRequester::request_bodies(sync, io, peer_id, hashes, block_set);
|
|
},
|
|
BlockRequest::Receipts { hashes } => {
|
|
SyncRequester::request_receipts(sync, io, peer_id, hashes, block_set);
|
|
},
|
|
}
|
|
}
|
|
|
|
/// Request block bodies from a peer
|
|
fn request_bodies(sync: &mut ChainSync, io: &mut SyncIo, peer_id: PeerId, hashes: Vec<H256>, set: BlockSet) {
|
|
let mut rlp = RlpStream::new_list(hashes.len());
|
|
trace!(target: "sync", "{} <- GetBlockBodies: {} entries starting from {:?}, set = {:?}", peer_id, hashes.len(), hashes.first(), set);
|
|
for h in &hashes {
|
|
rlp.append(&h.clone());
|
|
}
|
|
SyncRequester::send_request(sync, io, peer_id, PeerAsking::BlockBodies, GetBlockBodiesPacket, rlp.out());
|
|
let peer = sync.peers.get_mut(&peer_id).expect("peer_id may originate either from on_packet, where it is already validated or from enumerating self.peers. qed");
|
|
peer.asking_blocks = hashes;
|
|
peer.block_set = Some(set);
|
|
}
|
|
|
|
/// Request headers from a peer by block number
|
|
pub fn request_fork_header(sync: &mut ChainSync, io: &mut SyncIo, peer_id: PeerId, n: BlockNumber) {
|
|
trace!(target: "sync", "{} <- GetForkHeader: at {}", peer_id, n);
|
|
let mut rlp = RlpStream::new_list(4);
|
|
rlp.append(&n);
|
|
rlp.append(&1u32);
|
|
rlp.append(&0u32);
|
|
rlp.append(&0u32);
|
|
SyncRequester::send_request(sync, io, peer_id, PeerAsking::ForkHeader, GetBlockHeadersPacket, rlp.out());
|
|
}
|
|
|
|
/// Find some headers or blocks to download from a peer.
|
|
pub fn request_snapshot_data(sync: &mut ChainSync, io: &mut dyn SyncIo, peer_id: PeerId) {
|
|
// find chunk data to download
|
|
if let Some(hash) = sync.snapshot.needed_chunk() {
|
|
if let Some(mut peer) = sync.peers.get_mut(&peer_id) {
|
|
peer.asking_snapshot_data = Some(hash.clone());
|
|
}
|
|
SyncRequester::request_snapshot_chunk(sync, io, peer_id, &hash);
|
|
}
|
|
}
|
|
|
|
/// Request snapshot manifest from a peer.
|
|
pub fn request_snapshot_manifest(sync: &mut ChainSync, io: &mut dyn SyncIo, peer_id: PeerId) {
|
|
trace!(target: "sync", "{}: requesting a snapshot manifest", peer_id);
|
|
SyncRequester::send_request(sync, io, peer_id, PeerAsking::SnapshotManifest, GetSnapshotManifestPacket, rlp::EMPTY_LIST_RLP.to_vec());
|
|
}
|
|
|
|
/// Request headers from a peer by block hash
|
|
fn request_headers_by_hash(sync: &mut ChainSync, io: &mut SyncIo, peer_id: PeerId, h: &H256, count: u64, skip: u64, reverse: bool, set: BlockSet) {
|
|
trace!(target: "sync", "{} <- GetBlockHeaders: {} entries starting from {}, set = {:?}", peer_id, count, h, set);
|
|
let mut rlp = RlpStream::new_list(4);
|
|
rlp.append(h);
|
|
rlp.append(&count);
|
|
rlp.append(&skip);
|
|
rlp.append(&if reverse {1u32} else {0u32});
|
|
SyncRequester::send_request(sync, io, peer_id, PeerAsking::BlockHeaders, GetBlockHeadersPacket, rlp.out());
|
|
let peer = sync.peers.get_mut(&peer_id).expect("peer_id may originate either from on_packet, where it is already validated or from enumerating self.peers. qed");
|
|
peer.asking_hash = Some(h.clone());
|
|
peer.block_set = Some(set);
|
|
}
|
|
|
|
/// Request block receipts from a peer
|
|
fn request_receipts(sync: &mut ChainSync, io: &mut SyncIo, peer_id: PeerId, hashes: Vec<H256>, set: BlockSet) {
|
|
let mut rlp = RlpStream::new_list(hashes.len());
|
|
trace!(target: "sync", "{} <- GetBlockReceipts: {} entries starting from {:?}, set = {:?}", peer_id, hashes.len(), hashes.first(), set);
|
|
for h in &hashes {
|
|
rlp.append(&h.clone());
|
|
}
|
|
SyncRequester::send_request(sync, io, peer_id, PeerAsking::BlockReceipts, GetReceiptsPacket, rlp.out());
|
|
let peer = sync.peers.get_mut(&peer_id).expect("peer_id may originate either from on_packet, where it is already validated or from enumerating self.peers. qed");
|
|
peer.asking_blocks = hashes;
|
|
peer.block_set = Some(set);
|
|
}
|
|
|
|
/// Request snapshot chunk from a peer.
|
|
fn request_snapshot_chunk(sync: &mut ChainSync, io: &mut SyncIo, peer_id: PeerId, chunk: &H256) {
|
|
trace!(target: "sync", "{} <- GetSnapshotData {:?}", peer_id, chunk);
|
|
let mut rlp = RlpStream::new_list(1);
|
|
rlp.append(chunk);
|
|
SyncRequester::send_request(sync, io, peer_id, PeerAsking::SnapshotData, GetSnapshotDataPacket, rlp.out());
|
|
}
|
|
|
|
/// Generic request sender
|
|
fn send_request(sync: &mut ChainSync, io: &mut SyncIo, peer_id: PeerId, asking: PeerAsking, packet_id: SyncPacket, packet: Bytes) {
|
|
if let Some(ref mut peer) = sync.peers.get_mut(&peer_id) {
|
|
if peer.asking != PeerAsking::Nothing {
|
|
warn!(target:"sync", "Asking {:?} while requesting {:?}", peer.asking, asking);
|
|
}
|
|
peer.asking = asking;
|
|
peer.ask_time = Instant::now();
|
|
|
|
let result = io.send(peer_id, packet_id, packet);
|
|
|
|
if let Err(e) = result {
|
|
debug!(target:"sync", "Error sending request: {:?}", e);
|
|
io.disconnect_peer(peer_id);
|
|
}
|
|
}
|
|
}
|
|
}
|