openethereum/sync/src/light_sync/sync_round.rs

272 lines
7.9 KiB
Rust
Raw Normal View History

2016-12-14 22:57:30 +01:00
// Copyright 2015, 2016 Parity Technologies (UK) Ltd.
// This file is part of Parity.
// Parity 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 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. If not, see <http://www.gnu.org/licenses/>.
//! Header download state machine.
use std::cmp::Ordering;
use std::collections::{BinaryHeap, HashMap, VecDeque};
2016-12-14 22:57:30 +01:00
use std::mem;
use ethcore::header::Header;
use light::client::LightChainClient;
2016-12-14 22:57:30 +01:00
use light::net::{EventContext, ReqId};
use light::request::Headers as HeadersRequest;
use network::PeerId;
use rlp::{UntrustedRlp, View};
use util::{Bytes, H256, Mutex};
use super::{Error, Peer};
use super::response;
2016-12-14 22:57:30 +01:00
// amount of blocks between each scaffold entry.
// TODO: move these into paraeters for `RoundStart::new`?
const ROUND_SKIP: usize = 255;
// amount of scaffold frames: these are the blank spaces in "X___X___X"
const ROUND_FRAMES: usize = 255;
2016-12-14 22:57:30 +01:00
// number of attempts to make to get a full scaffold for a sync round.
const SCAFFOLD_ATTEMPTS: usize = 3;
/// Reasons for sync round abort.
#[derive(Debug, Clone, Copy)]
pub enum AbortReason {
/// Bad chain downloaded.
BadChain,
/// No incoming data.
NoResponses,
}
// A request for headers with a known starting header hash.
2016-12-14 22:57:30 +01:00
// and a known parent hash for the last block.
#[derive(PartialEq, Eq)]
struct SubchainRequest {
subchain_parent: (u64, H256),
headers_request: HeadersRequest,
subchain_end: (u64, H256),
downloaded: VecDeque<Header>,
2016-12-14 22:57:30 +01:00
}
// ordered by subchain parent number so pending requests towards the
// front of the round are dispatched first.
impl PartialOrd for SubchainRequest {
fn partial_cmp(&self, other: &Self) -> Option<Ordering> {
self.subchain_parent.0.partial_cmp(&other.subchain_parent.0)
}
}
impl Ord for SubchainRequest {
fn cmp(&self, other: &Self) -> Ordering {
self.subchain_parent.0.cmp(&other.subchain_parent.0)
}
}
/// Manages downloading of interior blocks of a sparse header chain.
2016-12-14 22:57:30 +01:00
pub struct Fetcher {
sparse: VecDeque<Header>, // sparse header chain.
requests: BinaryHeap<SubchainRequest>,
complete_requests: HashMap<H256, SubchainRequest>,
pending: HashMap<ReqId, SubchainRequest>,
2016-12-14 22:57:30 +01:00
}
impl Fetcher {
// Produce a new fetcher given a sparse headerchain, in ascending order.
// The headers must be valid RLP at this point.
fn new(sparse_headers: Vec<Header>) -> Self {
let mut requests = BinaryHeap::with_capacity(sparse_headers.len() - 1);
2016-12-14 22:57:30 +01:00
for pair in sparse_headers.windows(2) {
let low_rung = &pair[0];
let high_rung = &pair[1];
let diff = high_rung.number() - low_rung.number();
// should never happen as long as we verify the gaps
// gotten from SyncRound::Start
if diff < 2 { continue }
2016-12-14 22:57:30 +01:00
let needed_headers = HeadersRequest {
start: high_rung.parent_hash().clone().into(),
max: diff as usize - 1,
skip: 0,
reverse: true,
};
requests.push(SubchainRequest {
headers_request: needed_headers,
subchain_end: (high_rung.number() - 1, *high_rung.parent_hash()),
downloaded: VecDeque::new(),
subchain_parent: (low_rung.number(), low_rung.hash()),
2016-12-14 22:57:30 +01:00
});
}
Fetcher {
sparse: sparse_headers.into(),
2016-12-14 22:57:30 +01:00
requests: requests,
complete_requests: HashMap::new(),
2016-12-14 22:57:30 +01:00
pending: HashMap::new(),
}
}
fn process_response(mut self, req_id: ReqId, headers: &[Bytes]) -> (SyncRound, Result<(), Error>) {
let mut request = match self.pending.remove(&req_id) {
Some(request) => request,
None => return (SyncRound::Fetch(self), Ok(())),
};
if headers.len() == 0 {
return (SyncRound::Fetch(self), Err(Error::EmptyResponse));
}
match response::decode_and_verify(headers, &request.headers_request) {
Err(e) => {
// TODO: track number of attempts per request.
self.requests.push(request);
(SyncRound::Fetch(self), Err(e).map_err(Into::into))
}
Ok(headers) => {
let mut parent_hash = None;
for header in headers {
if parent_hash.as_ref().map_or(false, |h| h != &header.hash()) {
self.requests.push(request);
return (SyncRound::Fetch(self), Err(Error::ParentMismatch));
}
// incrementally update the frame request as we go so we can
// return at any time in the loop.
parent_hash = Some(header.parent_hash().clone());
request.headers_request.start = header.parent_hash().clone().into();
request.headers_request.max -= 1;
request.downloaded.push_front(header);
}
let subchain_parent = request.subchain_parent.1;
// TODO: check subchain parent and punish peers who did framing
// if it's inaccurate.
if request.headers_request.max == 0 {
self.complete_requests.insert(subchain_parent, request);
}
// state transition not triggered until drain is finished.
(SyncRound::Fetch(self), Ok(()))
}
}
2016-12-14 22:57:30 +01:00
}
}
// Round started: get stepped header chain.
// from a start block with number X we request 256 headers stepped by 256 from
// block X + 1.
struct RoundStart {
start_block: (u64, H256),
pending_req: Option<(ReqId, HeadersRequest)>,
sparse_headers: Vec<Header>,
attempt: usize,
2016-12-14 22:57:30 +01:00
}
impl RoundStart {
fn new(start: (u64, H256)) -> Self {
RoundStart {
start_block: start.clone(),
pending_req: None,
sparse_headers: Vec::new(),
attempt: 0,
2016-12-14 22:57:30 +01:00
}
}
fn process_response(mut self, req_id: ReqId, headers: &[Bytes]) -> (SyncRound, Result<(), Error>) {
2016-12-14 22:57:30 +01:00
let req = match self.pending_req.take() {
Some((id, ref req)) if req_id == id => { req.clone() }
2016-12-14 22:57:30 +01:00
other => {
self.pending_req = other;
return (SyncRound::Start(self), Ok(()))
2016-12-14 22:57:30 +01:00
}
};
self.attempt += 1;
let res = match response::decode_and_verify(headers, &req) {
2016-12-14 22:57:30 +01:00
Ok(headers) => {
self.sparse_headers.extend(headers);
if self.sparse_headers.len() == ROUND_FRAMES + 1 {
trace!(target: "sync", "Beginning fetch of blocks between {} sparse headers",
self.sparse_headers.len());
return (SyncRound::Fetch(Fetcher::new(self.sparse_headers)), Ok(()));
2016-12-14 22:57:30 +01:00
}
Ok(())
2016-12-14 22:57:30 +01:00
}
Err(e) => Err(e),
};
if self.attempt >= SCAFFOLD_ATTEMPTS {
if self.sparse_headers.len() > 1 {
(SyncRound::Fetch(Fetcher::new(self.sparse_headers)), res.map_err(Into::into))
} else {
(SyncRound::Abort(AbortReason::NoResponses), res.map_err(Into::into))
}
} else {
(SyncRound::Start(self), res.map_err(Into::into))
2016-12-14 22:57:30 +01:00
}
}
}
/// Sync round state machine.
pub enum SyncRound {
2016-12-14 22:57:30 +01:00
/// Beginning a sync round.
Start(RoundStart),
2016-12-14 22:57:30 +01:00
/// Fetching intermediate blocks during a sync round.
Fetch(Fetcher),
/// Aborted.
Abort(AbortReason),
2016-12-14 22:57:30 +01:00
}
impl SyncRound {
fn abort(reason: AbortReason) -> Self {
trace!(target: "sync", "Aborting sync round: {:?}", reason);
SyncRound::Abort(reason)
}
/// Process an answer to a request. Unknown requests will be ignored.
pub fn process_response(self, req_id: ReqId, headers: &[Bytes]) -> (Self, Result<(), Error>) {
2016-12-14 22:57:30 +01:00
match self {
SyncRound::Start(round_start) => round_start.process_response(req_id, headers),
SyncRound::Fetch(fetcher) => fetcher.process_response(req_id, headers),
2016-12-14 22:57:30 +01:00
other => (other, Ok(())),
}
}
/// Return unfulfilled requests from disconnected peer. Unknown requests will be ignored.
pub fn requests_abandoned(self, abandoned: &[ReqId]) -> (Self, Result<(), Error>) {
unimplemented!()
2016-12-14 22:57:30 +01:00
}
/// Dispatch pending requests. The dispatcher provided will attempt to
/// find a suitable peer to serve the request.
2016-12-14 22:57:30 +01:00
// TODO: have dispatcher take capabilities argument?
pub fn dispatch_requests<D>(self, dispatcher: D) -> (Self, Result<(), Error>)
2016-12-14 22:57:30 +01:00
where D: Fn(HeadersRequest) -> Option<ReqId>
{
unimplemented!()
}
}