openethereum/ethcore/light/src/net/mod.rs

298 lines
8.5 KiB
Rust
Raw Normal View History

2016-10-05 15:35:31 +02:00
// Copyright 2015, 2016 Ethcore (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/>.
//! LES Protocol Version 1 implementation.
//!
2016-11-07 19:16:23 +01:00
//! This uses a "Provider" to answer requests.
2016-10-10 18:48:47 +02:00
//! See https://github.com/ethcore/parity/wiki/Light-Ethereum-Subprotocol-(LES)
2016-10-05 15:35:31 +02:00
2016-10-10 18:48:47 +02:00
use io::TimerToken;
use network::{NetworkProtocolHandler, NetworkService, NetworkContext, NetworkError, PeerId};
use rlp::{DecoderError, RlpStream, Stream, UntrustedRlp, View};
use util::hash::H256;
2016-11-06 19:05:19 +01:00
use util::{U256, Mutex, RwLock};
2016-10-10 18:48:47 +02:00
2016-10-27 15:45:59 +02:00
use std::collections::{HashMap, HashSet};
use std::sync::atomic::{AtomicUsize, Ordering};
2016-10-10 18:48:47 +02:00
use provider::Provider;
2016-11-04 23:50:56 +01:00
use request::{self, Request};
use self::buffer_flow::FlowParams;
2016-11-04 17:19:01 +01:00
2016-11-06 19:04:30 +01:00
mod buffer_flow;
2016-11-07 19:16:23 +01:00
mod status;
2016-11-06 19:04:30 +01:00
2016-10-10 18:48:47 +02:00
const TIMEOUT: TimerToken = 0;
const TIMEOUT_INTERVAL_MS: u64 = 1000;
// LPV1
const PROTOCOL_VERSION: u32 = 1;
// TODO [rob] make configurable.
const PROTOCOL_ID: [u8; 3] = *b"les";
// packet ID definitions.
mod packet {
// the status packet.
pub const STATUS: u8 = 0x00;
2016-11-06 19:05:19 +01:00
// announcement of new block hashes or capabilities.
pub const ANNOUNCE: u8 = 0x01;
2016-10-10 18:48:47 +02:00
// request and response for block headers
pub const GET_BLOCK_HEADERS: u8 = 0x02;
pub const BLOCK_HEADERS: u8 = 0x03;
// request and response for block bodies
pub const GET_BLOCK_BODIES: u8 = 0x04;
pub const BLOCK_BODIES: u8 = 0x05;
// request and response for transaction receipts.
pub const GET_RECEIPTS: u8 = 0x06;
pub const RECEIPTS: u8 = 0x07;
// request and response for merkle proofs.
pub const GET_PROOFS: u8 = 0x08;
pub const PROOFS: u8 = 0x09;
// request and response for contract code.
pub const GET_CONTRACT_CODES: u8 = 0x0a;
pub const CONTRACT_CODES: u8 = 0x0b;
// relay transactions to peers.
pub const SEND_TRANSACTIONS: u8 = 0x0c;
// request and response for header proofs in a CHT.
pub const GET_HEADER_PROOFS: u8 = 0x0d;
pub const HEADER_PROOFS: u8 = 0x0e;
2016-11-04 18:40:31 +01:00
}
2016-10-10 18:48:47 +02:00
// data about each peer.
struct Peer {
buffer: u64, // remaining buffer value.
2016-10-27 15:45:59 +02:00
current_asking: HashSet<usize>, // pending request ids.
2016-10-10 18:48:47 +02:00
}
2016-10-05 15:35:31 +02:00
2016-11-04 18:40:31 +01:00
/// This is an implementation of the light ethereum network protocol, abstracted
/// over a `Provider` of data and a p2p network.
///
/// This is simply designed for request-response purposes. Higher level uses
/// of the protocol, such as synchronization, will function as wrappers around
/// this system.
pub struct LightProtocol {
provider: Box<Provider>,
2016-10-10 18:48:47 +02:00
genesis_hash: H256,
mainnet: bool,
peers: RwLock<HashMap<PeerId, Peer>>,
pending_requests: RwLock<HashMap<usize, Request>>,
2016-10-27 15:45:59 +02:00
req_id: AtomicUsize,
2016-10-10 18:48:47 +02:00
}
2016-11-04 18:40:31 +01:00
impl LightProtocol {
2016-10-27 15:45:59 +02:00
// make a request to a given peer.
fn request_from(&self, peer: &PeerId, req: Request) {
unimplemented!()
}
2016-10-10 18:48:47 +02:00
// called when a peer connects.
fn on_connect(&self, peer: &PeerId, io: &NetworkContext) {
let peer = *peer;
match self.send_status(peer, io) {
Ok(()) => {
2016-10-27 15:45:59 +02:00
self.peers.write().insert(peer, Peer {
buffer: 0,
current_asking: HashSet::new(),
});
2016-10-10 18:48:47 +02:00
}
Err(e) => {
trace!(target: "les", "Error while sending status: {}", e);
io.disable_peer(peer);
}
}
}
// called when a peer disconnects.
2016-10-27 15:45:59 +02:00
fn on_disconnect(&self, peer: PeerId, io: &NetworkContext) {
// TODO: reassign all requests assigned to this peer.
self.peers.write().remove(&peer);
2016-10-10 18:48:47 +02:00
}
fn send_status(&self, peer: PeerId, io: &NetworkContext) -> Result<(), NetworkError> {
let chain_info = self.provider.chain_info();
2016-10-10 18:48:47 +02:00
// TODO [rob] use optional keys too.
let mut stream = RlpStream::new_list(6);
stream
2016-11-04 17:25:26 +01:00
.begin_list(2)
2016-11-04 17:35:31 +01:00
.append(&"protocolVersion")
2016-10-10 18:48:47 +02:00
.append(&PROTOCOL_VERSION)
2016-11-04 17:25:26 +01:00
.begin_list(2)
2016-11-04 17:35:31 +01:00
.append(&"networkId")
2016-10-10 18:48:47 +02:00
.append(&(self.mainnet as u8))
2016-11-04 17:25:26 +01:00
.begin_list(2)
2016-11-04 17:35:31 +01:00
.append(&"headTd")
2016-10-10 18:48:47 +02:00
.append(&chain_info.total_difficulty)
2016-11-04 17:25:26 +01:00
.begin_list(2)
2016-11-04 17:35:31 +01:00
.append(&"headHash")
2016-10-10 18:48:47 +02:00
.append(&chain_info.best_block_hash)
2016-11-04 17:25:26 +01:00
.begin_list(2)
2016-11-04 17:35:31 +01:00
.append(&"headNum")
2016-10-10 18:48:47 +02:00
.append(&chain_info.best_block_number)
2016-11-04 17:25:26 +01:00
.begin_list(2)
2016-11-04 17:35:31 +01:00
.append(&"genesisHash")
2016-10-10 18:48:47 +02:00
.append(&self.genesis_hash);
io.send(peer, packet::STATUS, stream.out())
}
2016-10-27 15:45:59 +02:00
/// Check on the status of all pending requests.
fn check_pending_requests(&self) {
unimplemented!()
}
2016-11-04 17:19:01 +01:00
fn status(&self, peer: &PeerId, io: &NetworkContext, data: UntrustedRlp) {
2016-10-10 18:48:47 +02:00
unimplemented!()
}
2016-11-06 19:05:19 +01:00
// Handle an announcement.
fn announcement(&self, peer: &PeerId, io: &NetworkContext, data: UntrustedRlp) {
2016-10-10 18:48:47 +02:00
const MAX_NEW_HASHES: usize = 256;
unimplemented!()
}
// Handle a request for block headers.
2016-10-27 15:45:59 +02:00
fn get_block_headers(&self, peer: &PeerId, io: &NetworkContext, data: UntrustedRlp) {
2016-11-04 23:50:56 +01:00
const MAX_HEADERS: u64 = 512;
2016-10-27 15:45:59 +02:00
unimplemented!()
2016-10-10 18:48:47 +02:00
}
// Receive a response for block headers.
fn block_headers(&self, peer: &PeerId, io: &NetworkContext, data: UntrustedRlp) {
unimplemented!()
}
// Handle a request for block bodies.
fn get_block_bodies(&self, peer: &PeerId, io: &NetworkContext, data: UntrustedRlp) {
2016-11-04 18:40:31 +01:00
const MAX_BODIES: usize = 512;
2016-10-10 18:48:47 +02:00
unimplemented!()
}
// Receive a response for block bodies.
fn block_bodies(&self, peer: &PeerId, io: &NetworkContext, data: UntrustedRlp) {
unimplemented!()
}
2016-11-04 17:19:01 +01:00
// Handle a request for receipts.
fn get_receipts(&self, peer: &PeerId, io: &NetworkContext, data: UntrustedRlp) {
unimplemented!()
}
// Receive a response for receipts.
fn receipts(&self, peer: &PeerId, io: &NetworkContext, data: UntrustedRlp) {
unimplemented!()
}
2016-10-10 18:48:47 +02:00
// Handle a request for proofs.
fn get_proofs(&self, peer: &PeerId, io: &NetworkContext, data: UntrustedRlp) {
unimplemented!()
}
// Receive a response for proofs.
fn proofs(&self, peer: &PeerId, io: &NetworkContext, data: UntrustedRlp) {
unimplemented!()
}
// Handle a request for contract code.
fn get_contract_code(&self, peer: &PeerId, io: &NetworkContext, data: UntrustedRlp) {
unimplemented!()
}
// Receive a response for contract code.
fn contract_code(&self, peer: &PeerId, io: &NetworkContext, data: UntrustedRlp) {
unimplemented!()
}
// Handle a request for header proofs
fn get_header_proofs(&self, peer: &PeerId, io: &NetworkContext, data: UntrustedRlp) {
unimplemented!()
}
// Receive a response for header proofs
fn header_proofs(&self, peer: &PeerId, io: &NetworkContext, data: UntrustedRlp) {
unimplemented!()
}
// Receive a set of transactions to relay.
fn relay_transactions(&self, peer: &PeerId, io: &NetworkContext, data: UntrustedRlp) {
unimplemented!()
}
}
2016-11-04 18:40:31 +01:00
impl NetworkProtocolHandler for LightProtocol {
2016-10-10 18:48:47 +02:00
fn initialize(&self, io: &NetworkContext) {
io.register_timer(TIMEOUT, TIMEOUT_INTERVAL_MS).expect("Error registering sync timer.");
}
fn read(&self, io: &NetworkContext, peer: &PeerId, packet_id: u8, data: &[u8]) {
let rlp = UntrustedRlp::new(data);
match packet_id {
packet::STATUS => self.status(peer, io, rlp),
2016-11-06 19:05:19 +01:00
packet::ANNOUNCE => self.announcement(peer, io, rlp),
2016-10-10 18:48:47 +02:00
packet::GET_BLOCK_HEADERS => self.get_block_headers(peer, io, rlp),
packet::BLOCK_HEADERS => self.block_headers(peer, io, rlp),
packet::GET_BLOCK_BODIES => self.get_block_bodies(peer, io, rlp),
packet::BLOCK_BODIES => self.block_bodies(peer, io, rlp),
packet::GET_RECEIPTS => self.get_receipts(peer, io, rlp),
2016-11-04 17:19:01 +01:00
packet::RECEIPTS => self.receipts(peer, io, rlp),
2016-10-10 18:48:47 +02:00
packet::GET_PROOFS => self.get_proofs(peer, io, rlp),
packet::PROOFS => self.proofs(peer, io, rlp),
packet::GET_CONTRACT_CODES => self.get_contract_code(peer, io, rlp),
packet::CONTRACT_CODES => self.contract_code(peer, io, rlp),
packet::SEND_TRANSACTIONS => self.relay_transactions(peer, io, rlp),
2016-11-04 17:35:31 +01:00
other => {
debug!(target: "les", "Disconnecting peer {} on unexpected packet {}", peer, other);
io.disconnect_peer(*peer);
}
2016-10-10 18:48:47 +02:00
}
}
fn connected(&self, io: &NetworkContext, peer: &PeerId) {
self.on_connect(peer, io);
}
fn disconnected(&self, io: &NetworkContext, peer: &PeerId) {
2016-11-04 17:19:01 +01:00
self.on_disconnect(*peer, io);
2016-10-10 18:48:47 +02:00
}
fn timeout(&self, io: &NetworkContext, timer: TimerToken) {
match timer {
TIMEOUT => {
// broadcast transactions to peers.
}
_ => warn!(target: "les", "received timeout on unknown token {}", timer),
}
}
2016-10-05 15:35:31 +02:00
}