2017-01-25 18:51:41 +01:00
|
|
|
// Copyright 2015-2017 Parity Technologies (UK) Ltd.
|
2016-02-05 13:40:41 +01:00
|
|
|
// 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/>.
|
|
|
|
|
2016-09-28 14:21:59 +02:00
|
|
|
use std::{str, io};
|
2016-02-15 19:54:27 +01:00
|
|
|
use std::net::SocketAddr;
|
2016-10-24 16:24:35 +02:00
|
|
|
use std::cmp::Ordering;
|
2016-06-02 11:49:56 +02:00
|
|
|
use std::sync::*;
|
2016-12-09 19:36:40 +01:00
|
|
|
use std::collections::HashMap;
|
|
|
|
|
2015-12-02 12:07:46 +01:00
|
|
|
use mio::*;
|
2016-10-30 09:56:34 +01:00
|
|
|
use mio::deprecated::{Handler, EventLoop};
|
2016-06-02 11:49:56 +02:00
|
|
|
use mio::tcp::*;
|
2016-08-05 10:32:04 +02:00
|
|
|
use util::hash::*;
|
2016-09-01 14:49:12 +02:00
|
|
|
use rlp::*;
|
2016-08-05 10:32:04 +02:00
|
|
|
use connection::{EncryptedConnection, Packet, Connection};
|
|
|
|
use handshake::Handshake;
|
2016-02-02 20:58:12 +01:00
|
|
|
use io::{IoContext, StreamToken};
|
2016-08-05 10:32:04 +02:00
|
|
|
use error::{NetworkError, DisconnectReason};
|
|
|
|
use host::*;
|
|
|
|
use node_table::NodeId;
|
|
|
|
use stats::NetworkStats;
|
2016-02-02 20:58:12 +01:00
|
|
|
use time;
|
|
|
|
|
2016-11-03 16:12:25 +01:00
|
|
|
// Timeout must be less than (interval - 1).
|
|
|
|
const PING_TIMEOUT_SEC: u64 = 15;
|
2016-02-02 20:58:12 +01:00
|
|
|
const PING_INTERVAL_SEC: u64 = 30;
|
2015-12-02 12:07:46 +01:00
|
|
|
|
2016-12-09 19:36:40 +01:00
|
|
|
#[derive(Debug, Clone)]
|
|
|
|
enum ProtocolState {
|
|
|
|
// Packets pending protocol on_connect event return.
|
|
|
|
Pending(Vec<(Vec<u8>, u8)>),
|
|
|
|
// Protocol connected.
|
|
|
|
Connected,
|
|
|
|
}
|
|
|
|
|
2016-01-10 22:42:27 +01:00
|
|
|
/// Peer session over encrypted connection.
|
|
|
|
/// When created waits for Hello packet exchange and signals ready state.
|
|
|
|
/// Sends and receives protocol packets and handles basic packes such as ping/pong and disconnect.
|
2015-12-02 12:07:46 +01:00
|
|
|
pub struct Session {
|
2016-01-10 22:42:27 +01:00
|
|
|
/// Shared session information
|
2015-12-02 20:11:13 +01:00
|
|
|
pub info: SessionInfo,
|
2016-01-10 22:42:27 +01:00
|
|
|
/// Session ready flag. Set after successfull Hello packet exchange
|
2015-12-02 20:11:13 +01:00
|
|
|
had_hello: bool,
|
2016-02-20 01:10:27 +01:00
|
|
|
/// Session is no longer active flag.
|
|
|
|
expired: bool,
|
2016-02-02 20:58:12 +01:00
|
|
|
ping_time_ns: u64,
|
|
|
|
pong_time_ns: Option<u64>,
|
2016-06-02 11:49:56 +02:00
|
|
|
state: State,
|
2016-12-09 19:36:40 +01:00
|
|
|
// Protocol states -- accumulates pending packets until signaled as ready.
|
|
|
|
protocol_states: HashMap<ProtocolId, ProtocolState>,
|
2016-06-02 11:49:56 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
enum State {
|
|
|
|
Handshake(Handshake),
|
|
|
|
Session(EncryptedConnection),
|
2015-12-02 20:11:13 +01:00
|
|
|
}
|
|
|
|
|
2016-01-10 22:42:27 +01:00
|
|
|
/// Structure used to report various session events.
|
2015-12-17 11:42:30 +01:00
|
|
|
pub enum SessionData {
|
|
|
|
None,
|
2016-01-10 22:42:27 +01:00
|
|
|
/// Session is ready to send/receive packets.
|
2015-12-17 11:42:30 +01:00
|
|
|
Ready,
|
2016-01-10 22:42:27 +01:00
|
|
|
/// A packet has been received
|
2015-12-17 11:42:30 +01:00
|
|
|
Packet {
|
2016-01-10 22:42:27 +01:00
|
|
|
/// Packet data
|
2015-12-17 11:42:30 +01:00
|
|
|
data: Vec<u8>,
|
2016-01-10 22:42:27 +01:00
|
|
|
/// Packet protocol ID
|
2016-09-28 14:21:59 +02:00
|
|
|
protocol: [u8; 3],
|
2016-05-23 11:46:01 +02:00
|
|
|
/// Zero based packet ID
|
2015-12-17 11:42:30 +01:00
|
|
|
packet_id: u8,
|
|
|
|
},
|
2016-06-13 15:35:21 +02:00
|
|
|
/// Session has more data to be read
|
|
|
|
Continue,
|
2015-12-17 11:42:30 +01:00
|
|
|
}
|
|
|
|
|
2016-01-10 22:42:27 +01:00
|
|
|
/// Shared session information
|
2016-10-12 20:18:59 +02:00
|
|
|
#[derive(Debug, Clone)]
|
2015-12-02 20:11:13 +01:00
|
|
|
pub struct SessionInfo {
|
2016-01-10 22:42:27 +01:00
|
|
|
/// Peer public key
|
2016-06-02 11:49:56 +02:00
|
|
|
pub id: Option<NodeId>,
|
2016-01-10 22:42:27 +01:00
|
|
|
/// Peer client ID
|
2015-12-02 20:11:13 +01:00
|
|
|
pub client_version: String,
|
2016-01-10 22:42:27 +01:00
|
|
|
/// Peer RLPx protocol version
|
2015-12-02 20:11:13 +01:00
|
|
|
pub protocol_version: u32,
|
2016-10-12 20:18:59 +02:00
|
|
|
/// Session protocol capabilities
|
|
|
|
pub capabilities: Vec<SessionCapabilityInfo>,
|
2016-01-10 22:42:27 +01:00
|
|
|
/// Peer protocol capabilities
|
2016-10-12 20:18:59 +02:00
|
|
|
pub peer_capabilities: Vec<PeerCapabilityInfo>,
|
2016-02-02 20:58:12 +01:00
|
|
|
/// Peer ping delay in milliseconds
|
|
|
|
pub ping_ms: Option<u64>,
|
2016-06-02 11:49:56 +02:00
|
|
|
/// True if this session was originated by us.
|
|
|
|
pub originated: bool,
|
2016-10-12 20:18:59 +02:00
|
|
|
/// Remote endpoint address of the session
|
|
|
|
pub remote_address: String,
|
|
|
|
/// Local endpoint address of the session
|
|
|
|
pub local_address: String,
|
2015-12-17 11:42:30 +01:00
|
|
|
}
|
|
|
|
|
2016-10-12 20:18:59 +02:00
|
|
|
#[derive(Debug, Clone, PartialEq, Eq)]
|
2015-12-17 11:42:30 +01:00
|
|
|
pub struct PeerCapabilityInfo {
|
2016-09-28 14:21:59 +02:00
|
|
|
pub protocol: ProtocolId,
|
2015-12-17 11:42:30 +01:00
|
|
|
pub version: u8,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Decodable for PeerCapabilityInfo {
|
2015-12-17 14:05:13 +01:00
|
|
|
fn decode<D>(decoder: &D) -> Result<Self, DecoderError> where D: Decoder {
|
2016-01-29 13:59:29 +01:00
|
|
|
let c = decoder.as_rlp();
|
2016-12-27 12:53:56 +01:00
|
|
|
let p: Vec<u8> = c.val_at(0)?;
|
2016-09-28 14:21:59 +02:00
|
|
|
if p.len() != 3 {
|
|
|
|
return Err(DecoderError::Custom("Invalid subprotocol string length. Should be 3"));
|
|
|
|
}
|
|
|
|
let mut p2: ProtocolId = [0u8; 3];
|
|
|
|
p2.clone_from_slice(&p);
|
2015-12-17 11:42:30 +01:00
|
|
|
Ok(PeerCapabilityInfo {
|
2016-09-28 14:21:59 +02:00
|
|
|
protocol: p2,
|
2016-12-27 12:53:56 +01:00
|
|
|
version: c.val_at(1)?
|
2015-12-17 11:42:30 +01:00
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-10-12 20:18:59 +02:00
|
|
|
impl ToString for PeerCapabilityInfo {
|
|
|
|
fn to_string(&self) -> String {
|
|
|
|
format!("{}/{}", str::from_utf8(&self.protocol[..]).unwrap_or("???"), self.version)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-10-24 16:24:35 +02:00
|
|
|
#[derive(Debug, Clone, PartialEq, Eq)]
|
2016-10-12 20:18:59 +02:00
|
|
|
pub struct SessionCapabilityInfo {
|
2016-09-28 14:21:59 +02:00
|
|
|
pub protocol: [u8; 3],
|
2015-12-17 11:42:30 +01:00
|
|
|
pub version: u8,
|
|
|
|
pub packet_count: u8,
|
|
|
|
pub id_offset: u8,
|
2015-12-02 12:07:46 +01:00
|
|
|
}
|
|
|
|
|
2016-10-24 16:24:35 +02:00
|
|
|
impl PartialOrd for SessionCapabilityInfo {
|
|
|
|
fn partial_cmp(&self, other: &SessionCapabilityInfo) -> Option<Ordering> {
|
|
|
|
Some(self.cmp(other))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Ord for SessionCapabilityInfo {
|
|
|
|
fn cmp(&self, b: &SessionCapabilityInfo) -> Ordering {
|
|
|
|
// By protocol id first
|
|
|
|
if self.protocol != b.protocol {
|
|
|
|
return self.protocol.cmp(&b.protocol);
|
|
|
|
}
|
|
|
|
// By version
|
|
|
|
self.version.cmp(&b.version)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-12-02 20:11:13 +01:00
|
|
|
const PACKET_HELLO: u8 = 0x80;
|
|
|
|
const PACKET_DISCONNECT: u8 = 0x01;
|
|
|
|
const PACKET_PING: u8 = 0x02;
|
|
|
|
const PACKET_PONG: u8 = 0x03;
|
|
|
|
const PACKET_GET_PEERS: u8 = 0x04;
|
|
|
|
const PACKET_PEERS: u8 = 0x05;
|
|
|
|
const PACKET_USER: u8 = 0x10;
|
|
|
|
const PACKET_LAST: u8 = 0x7f;
|
|
|
|
|
2015-12-03 15:11:40 +01:00
|
|
|
impl Session {
|
2016-05-23 11:46:01 +02:00
|
|
|
/// Create a new session out of comepleted handshake. This clones the handshake connection object
|
2016-02-21 16:52:25 +01:00
|
|
|
/// and leaves the handhsake in limbo to be deregistered from the event loop.
|
2016-06-02 11:49:56 +02:00
|
|
|
pub fn new<Message>(io: &IoContext<Message>, socket: TcpStream, token: StreamToken, id: Option<&NodeId>,
|
2016-08-05 10:32:04 +02:00
|
|
|
nonce: &H256, stats: Arc<NetworkStats>, host: &HostInfo) -> Result<Session, NetworkError>
|
2016-10-20 14:49:12 +02:00
|
|
|
where Message: Send + Clone + Sync + 'static {
|
2016-06-02 11:49:56 +02:00
|
|
|
let originated = id.is_some();
|
2016-07-26 20:31:25 +02:00
|
|
|
let mut handshake = Handshake::new(token, id, socket, nonce, stats).expect("Can't create handshake");
|
2016-10-12 20:18:59 +02:00
|
|
|
let local_addr = handshake.connection.local_addr_str();
|
2016-12-27 12:53:56 +01:00
|
|
|
handshake.start(io, host, originated)?;
|
2016-06-02 11:49:56 +02:00
|
|
|
Ok(Session {
|
|
|
|
state: State::Handshake(handshake),
|
2015-12-02 20:11:13 +01:00
|
|
|
had_hello: false,
|
|
|
|
info: SessionInfo {
|
2016-06-02 11:49:56 +02:00
|
|
|
id: id.cloned(),
|
2015-12-02 20:11:13 +01:00
|
|
|
client_version: String::new(),
|
|
|
|
protocol_version: 0,
|
|
|
|
capabilities: Vec::new(),
|
2016-10-12 20:18:59 +02:00
|
|
|
peer_capabilities: Vec::new(),
|
2016-02-02 20:58:12 +01:00
|
|
|
ping_ms: None,
|
2016-06-02 11:49:56 +02:00
|
|
|
originated: originated,
|
2016-10-12 20:18:59 +02:00
|
|
|
remote_address: "Handshake".to_owned(),
|
|
|
|
local_address: local_addr,
|
2015-12-02 20:11:13 +01:00
|
|
|
},
|
2016-02-02 20:58:12 +01:00
|
|
|
ping_time_ns: 0,
|
|
|
|
pong_time_ns: None,
|
2016-02-20 01:10:27 +01:00
|
|
|
expired: false,
|
2016-12-09 19:36:40 +01:00
|
|
|
protocol_states: HashMap::new(),
|
2016-06-02 11:49:56 +02:00
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2016-08-05 10:32:04 +02:00
|
|
|
fn complete_handshake<Message>(&mut self, io: &IoContext<Message>, host: &HostInfo) -> Result<(), NetworkError> where Message: Send + Sync + Clone {
|
2016-06-02 11:49:56 +02:00
|
|
|
let connection = if let State::Handshake(ref mut h) = self.state {
|
|
|
|
self.info.id = Some(h.id.clone());
|
2016-10-12 20:18:59 +02:00
|
|
|
self.info.remote_address = h.connection.remote_addr_str();
|
2016-12-27 12:53:56 +01:00
|
|
|
EncryptedConnection::new(h)?
|
2016-06-02 11:49:56 +02:00
|
|
|
} else {
|
|
|
|
panic!("Unexpected state");
|
2015-12-02 20:11:13 +01:00
|
|
|
};
|
2016-06-02 11:49:56 +02:00
|
|
|
self.state = State::Session(connection);
|
2016-12-27 12:53:56 +01:00
|
|
|
self.write_hello(io, host)?;
|
|
|
|
self.send_ping(io)?;
|
2016-06-02 11:49:56 +02:00
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
|
|
|
fn connection(&self) -> &Connection {
|
|
|
|
match self.state {
|
|
|
|
State::Handshake(ref h) => &h.connection,
|
|
|
|
State::Session(ref s) => &s.connection,
|
|
|
|
}
|
2015-12-02 12:07:46 +01:00
|
|
|
}
|
2015-12-02 20:11:13 +01:00
|
|
|
|
2016-02-12 09:52:32 +01:00
|
|
|
/// Get id of the remote peer
|
2016-06-02 11:49:56 +02:00
|
|
|
pub fn id(&self) -> Option<&NodeId> {
|
|
|
|
self.info.id.as_ref()
|
2016-02-12 09:52:32 +01:00
|
|
|
}
|
|
|
|
|
2016-01-10 22:42:27 +01:00
|
|
|
/// Check if session is ready to send/receive data
|
2016-01-10 14:02:01 +01:00
|
|
|
pub fn is_ready(&self) -> bool {
|
|
|
|
self.had_hello
|
|
|
|
}
|
|
|
|
|
2016-02-20 01:10:27 +01:00
|
|
|
/// Mark this session as inactive to be deleted lated.
|
|
|
|
pub fn set_expired(&mut self) {
|
|
|
|
self.expired = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Check if this session is expired.
|
|
|
|
pub fn expired(&self) -> bool {
|
2016-06-02 11:49:56 +02:00
|
|
|
match self.state {
|
2017-02-17 12:20:25 +01:00
|
|
|
State::Handshake(ref h) => self.expired || h.expired(),
|
2016-06-02 11:49:56 +02:00
|
|
|
_ => self.expired,
|
|
|
|
}
|
2016-02-20 01:10:27 +01:00
|
|
|
}
|
|
|
|
|
2016-05-02 14:48:30 +02:00
|
|
|
/// Check if this session is over and there is nothing to be sent.
|
|
|
|
pub fn done(&self) -> bool {
|
2016-06-02 11:49:56 +02:00
|
|
|
self.expired() && !self.connection().is_sending()
|
2016-02-14 12:11:18 +01:00
|
|
|
}
|
|
|
|
|
2016-02-15 19:54:27 +01:00
|
|
|
/// Get remote peer address
|
|
|
|
pub fn remote_addr(&self) -> io::Result<SocketAddr> {
|
2016-06-02 11:49:56 +02:00
|
|
|
self.connection().remote_addr()
|
2016-02-15 19:54:27 +01:00
|
|
|
}
|
|
|
|
|
2016-01-10 22:42:27 +01:00
|
|
|
/// Readable IO handler. Returns packet data if available.
|
2016-08-05 10:32:04 +02:00
|
|
|
pub fn readable<Message>(&mut self, io: &IoContext<Message>, host: &HostInfo) -> Result<SessionData, NetworkError> where Message: Send + Sync + Clone {
|
2016-02-20 01:10:27 +01:00
|
|
|
if self.expired() {
|
2016-05-23 11:46:01 +02:00
|
|
|
return Ok(SessionData::None)
|
2016-02-20 01:10:27 +01:00
|
|
|
}
|
2016-06-02 11:49:56 +02:00
|
|
|
let mut create_session = false;
|
|
|
|
let mut packet_data = None;
|
|
|
|
match self.state {
|
|
|
|
State::Handshake(ref mut h) => {
|
2016-12-27 12:53:56 +01:00
|
|
|
h.readable(io, host)?;
|
2016-06-02 11:49:56 +02:00
|
|
|
if h.done() {
|
|
|
|
create_session = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
State::Session(ref mut c) => {
|
2016-12-27 12:53:56 +01:00
|
|
|
match c.readable(io)? {
|
2016-06-02 11:49:56 +02:00
|
|
|
data @ Some(_) => packet_data = data,
|
|
|
|
None => return Ok(SessionData::None)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if let Some(data) = packet_data {
|
2016-12-27 12:53:56 +01:00
|
|
|
return Ok(self.read_packet(io, data, host)?);
|
2016-06-02 11:49:56 +02:00
|
|
|
}
|
|
|
|
if create_session {
|
2016-12-27 12:53:56 +01:00
|
|
|
self.complete_handshake(io, host)?;
|
2016-06-13 18:55:24 +02:00
|
|
|
io.update_registration(self.token()).unwrap_or_else(|e| debug!(target: "network", "Token registration error: {:?}", e));
|
2015-12-17 11:42:30 +01:00
|
|
|
}
|
2016-06-02 11:49:56 +02:00
|
|
|
Ok(SessionData::None)
|
2015-12-02 12:07:46 +01:00
|
|
|
}
|
2015-12-02 20:11:13 +01:00
|
|
|
|
2016-01-10 22:42:27 +01:00
|
|
|
/// Writable IO handler. Sends pending packets.
|
2016-08-05 10:32:04 +02:00
|
|
|
pub fn writable<Message>(&mut self, io: &IoContext<Message>, _host: &HostInfo) -> Result<(), NetworkError> where Message: Send + Sync + Clone {
|
2016-06-02 11:49:56 +02:00
|
|
|
match self.state {
|
|
|
|
State::Handshake(ref mut h) => h.writable(io),
|
|
|
|
State::Session(ref mut s) => s.writable(io),
|
|
|
|
}
|
2015-12-02 12:07:46 +01:00
|
|
|
}
|
2015-12-02 20:11:13 +01:00
|
|
|
|
2016-01-10 22:42:27 +01:00
|
|
|
/// Checks if peer supports given capability
|
2016-09-28 14:21:59 +02:00
|
|
|
pub fn have_capability(&self, protocol: [u8; 3]) -> bool {
|
2015-12-17 11:42:30 +01:00
|
|
|
self.info.capabilities.iter().any(|c| c.protocol == protocol)
|
|
|
|
}
|
|
|
|
|
2016-09-06 15:31:13 +02:00
|
|
|
/// Checks if peer supports given capability
|
2016-09-28 14:21:59 +02:00
|
|
|
pub fn capability_version(&self, protocol: [u8; 3]) -> Option<u8> {
|
2016-09-06 15:31:13 +02:00
|
|
|
self.info.capabilities.iter().filter_map(|c| if c.protocol == protocol { Some(c.version) } else { None }).max()
|
|
|
|
}
|
|
|
|
|
2016-02-19 22:09:06 +01:00
|
|
|
/// Register the session socket with the event loop
|
2016-08-05 10:32:04 +02:00
|
|
|
pub fn register_socket<Host:Handler<Timeout = Token>>(&self, reg: Token, event_loop: &mut EventLoop<Host>) -> Result<(), NetworkError> {
|
2016-02-20 01:10:27 +01:00
|
|
|
if self.expired() {
|
|
|
|
return Ok(());
|
|
|
|
}
|
2016-12-27 12:53:56 +01:00
|
|
|
self.connection().register_socket(reg, event_loop)?;
|
2016-02-19 22:09:06 +01:00
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
2016-01-10 22:42:27 +01:00
|
|
|
/// Update registration with the event loop. Should be called at the end of the IO handler.
|
2016-08-05 10:32:04 +02:00
|
|
|
pub fn update_socket<Host:Handler>(&self, reg:Token, event_loop: &mut EventLoop<Host>) -> Result<(), NetworkError> {
|
2016-12-27 12:53:56 +01:00
|
|
|
self.connection().update_socket(reg, event_loop)?;
|
2016-06-02 11:49:56 +02:00
|
|
|
Ok(())
|
2016-01-10 14:02:01 +01:00
|
|
|
}
|
|
|
|
|
2016-01-22 18:13:59 +01:00
|
|
|
/// Delete registration
|
2016-08-05 10:32:04 +02:00
|
|
|
pub fn deregister_socket<Host:Handler>(&self, event_loop: &mut EventLoop<Host>) -> Result<(), NetworkError> {
|
2016-12-27 12:53:56 +01:00
|
|
|
self.connection().deregister_socket(event_loop)?;
|
2016-06-02 11:49:56 +02:00
|
|
|
Ok(())
|
2016-01-22 18:13:59 +01:00
|
|
|
}
|
|
|
|
|
2016-01-10 22:42:27 +01:00
|
|
|
/// Send a protocol packet to peer.
|
2016-09-28 14:21:59 +02:00
|
|
|
pub fn send_packet<Message>(&mut self, io: &IoContext<Message>, protocol: [u8; 3], packet_id: u8, data: &[u8]) -> Result<(), NetworkError>
|
2016-06-13 18:55:24 +02:00
|
|
|
where Message: Send + Sync + Clone {
|
2016-03-15 11:20:19 +01:00
|
|
|
if self.info.capabilities.is_empty() || !self.had_hello {
|
2016-09-28 14:21:59 +02:00
|
|
|
debug!(target: "network", "Sending to unconfirmed session {}, protocol: {}, packet: {}", self.token(), str::from_utf8(&protocol[..]).unwrap_or("??"), packet_id);
|
2016-03-15 11:20:19 +01:00
|
|
|
return Err(From::from(NetworkError::BadProtocol));
|
|
|
|
}
|
2016-03-05 23:09:51 +01:00
|
|
|
if self.expired() {
|
|
|
|
return Err(From::from(NetworkError::Expired));
|
|
|
|
}
|
2015-12-17 11:42:30 +01:00
|
|
|
let mut i = 0usize;
|
|
|
|
while protocol != self.info.capabilities[i].protocol {
|
|
|
|
i += 1;
|
|
|
|
if i == self.info.capabilities.len() {
|
2016-06-02 11:49:56 +02:00
|
|
|
debug!(target: "network", "Unknown protocol: {:?}", protocol);
|
2015-12-17 11:42:30 +01:00
|
|
|
return Ok(())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
let pid = self.info.capabilities[i].id_offset + packet_id;
|
|
|
|
let mut rlp = RlpStream::new();
|
|
|
|
rlp.append(&(pid as u32));
|
|
|
|
rlp.append_raw(data, 1);
|
2016-06-13 18:55:24 +02:00
|
|
|
self.send(io, rlp)
|
2015-12-17 11:42:30 +01:00
|
|
|
}
|
|
|
|
|
2016-02-02 20:58:12 +01:00
|
|
|
/// Keep this session alive. Returns false if ping timeout happened
|
2016-02-11 21:10:41 +01:00
|
|
|
pub fn keep_alive<Message>(&mut self, io: &IoContext<Message>) -> bool where Message: Send + Sync + Clone {
|
2016-06-02 11:49:56 +02:00
|
|
|
if let State::Handshake(_) = self.state {
|
|
|
|
return true;
|
|
|
|
}
|
2016-02-02 20:58:12 +01:00
|
|
|
let timed_out = if let Some(pong) = self.pong_time_ns {
|
|
|
|
pong - self.ping_time_ns > PING_TIMEOUT_SEC * 1000_000_000
|
|
|
|
} else {
|
|
|
|
time::precise_time_ns() - self.ping_time_ns > PING_TIMEOUT_SEC * 1000_000_000
|
|
|
|
};
|
|
|
|
|
|
|
|
if !timed_out && time::precise_time_ns() - self.ping_time_ns > PING_INTERVAL_SEC * 1000_000_000 {
|
2016-06-13 18:55:24 +02:00
|
|
|
if let Err(e) = self.send_ping(io) {
|
2016-02-02 20:58:12 +01:00
|
|
|
debug!("Error sending ping message: {:?}", e);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
!timed_out
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn token(&self) -> StreamToken {
|
2016-06-02 11:49:56 +02:00
|
|
|
self.connection().token()
|
2016-02-02 20:58:12 +01:00
|
|
|
}
|
|
|
|
|
2016-12-09 19:36:40 +01:00
|
|
|
/// Signal that a subprotocol has handled the connection successfully and
|
|
|
|
/// get all pending packets in order received.
|
|
|
|
pub fn mark_connected(&mut self, protocol: ProtocolId) -> Vec<(ProtocolId, u8, Vec<u8>)> {
|
|
|
|
match self.protocol_states.insert(protocol, ProtocolState::Connected) {
|
|
|
|
None => Vec::new(),
|
|
|
|
Some(ProtocolState::Connected) => {
|
|
|
|
debug!(target: "network", "Protocol {:?} marked as connected more than once", protocol);
|
|
|
|
Vec::new()
|
|
|
|
}
|
|
|
|
Some(ProtocolState::Pending(pending)) =>
|
|
|
|
pending.into_iter().map(|(data, id)| (protocol, id, data)).collect(),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-08-05 10:32:04 +02:00
|
|
|
fn read_packet<Message>(&mut self, io: &IoContext<Message>, packet: Packet, host: &HostInfo) -> Result<SessionData, NetworkError>
|
2016-06-13 18:55:24 +02:00
|
|
|
where Message: Send + Sync + Clone {
|
2015-12-17 11:42:30 +01:00
|
|
|
if packet.data.len() < 2 {
|
2016-01-10 12:53:55 +01:00
|
|
|
return Err(From::from(NetworkError::BadProtocol));
|
2015-12-02 20:11:13 +01:00
|
|
|
}
|
2015-12-17 11:42:30 +01:00
|
|
|
let packet_id = packet.data[0];
|
2015-12-02 20:11:13 +01:00
|
|
|
if packet_id != PACKET_HELLO && packet_id != PACKET_DISCONNECT && !self.had_hello {
|
2016-01-10 12:53:55 +01:00
|
|
|
return Err(From::from(NetworkError::BadProtocol));
|
2015-12-02 20:11:13 +01:00
|
|
|
}
|
|
|
|
match packet_id {
|
2015-12-17 11:42:30 +01:00
|
|
|
PACKET_HELLO => {
|
2016-01-08 15:52:43 +01:00
|
|
|
let rlp = UntrustedRlp::new(&packet.data[1..]); //TODO: validate rlp expected size
|
2016-12-27 12:53:56 +01:00
|
|
|
self.read_hello(io, &rlp, host)?;
|
2015-12-17 11:42:30 +01:00
|
|
|
Ok(SessionData::Ready)
|
2016-01-08 15:52:43 +01:00
|
|
|
},
|
2016-02-17 14:07:26 +01:00
|
|
|
PACKET_DISCONNECT => {
|
|
|
|
let rlp = UntrustedRlp::new(&packet.data[1..]);
|
2016-12-27 12:53:56 +01:00
|
|
|
let reason: u8 = rlp.val_at(0)?;
|
2016-06-13 15:35:21 +02:00
|
|
|
if self.had_hello {
|
2017-02-17 12:20:25 +01:00
|
|
|
debug!(target:"network", "Disconnected: {}: {:?}", self.token(), DisconnectReason::from_u8(reason));
|
2016-06-13 15:35:21 +02:00
|
|
|
}
|
2016-02-17 14:07:26 +01:00
|
|
|
Err(From::from(NetworkError::Disconnect(DisconnectReason::from_u8(reason))))
|
|
|
|
}
|
2015-12-17 11:42:30 +01:00
|
|
|
PACKET_PING => {
|
2016-12-27 12:53:56 +01:00
|
|
|
self.send_pong(io)?;
|
2016-06-13 15:35:21 +02:00
|
|
|
Ok(SessionData::Continue)
|
2016-02-02 20:58:12 +01:00
|
|
|
},
|
|
|
|
PACKET_PONG => {
|
2016-10-31 19:58:47 +01:00
|
|
|
let time = time::precise_time_ns();
|
|
|
|
self.pong_time_ns = Some(time);
|
|
|
|
self.info.ping_ms = Some((time - self.ping_time_ns) / 1000_000);
|
2016-06-13 15:35:21 +02:00
|
|
|
Ok(SessionData::Continue)
|
2016-01-08 15:52:43 +01:00
|
|
|
},
|
2015-12-17 11:42:30 +01:00
|
|
|
PACKET_GET_PEERS => Ok(SessionData::None), //TODO;
|
|
|
|
PACKET_PEERS => Ok(SessionData::None),
|
2015-12-02 20:11:13 +01:00
|
|
|
PACKET_USER ... PACKET_LAST => {
|
2015-12-17 11:42:30 +01:00
|
|
|
let mut i = 0usize;
|
2016-10-27 16:20:11 +02:00
|
|
|
while packet_id >= self.info.capabilities[i].id_offset + self.info.capabilities[i].packet_count {
|
2015-12-17 11:42:30 +01:00
|
|
|
i += 1;
|
|
|
|
if i == self.info.capabilities.len() {
|
2016-06-02 11:49:56 +02:00
|
|
|
debug!(target: "network", "Unknown packet: {:?}", packet_id);
|
2016-06-13 15:35:21 +02:00
|
|
|
return Ok(SessionData::Continue)
|
2015-12-17 11:42:30 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// map to protocol
|
|
|
|
let protocol = self.info.capabilities[i].protocol;
|
2016-12-10 14:20:34 +01:00
|
|
|
let protocol_packet_id = packet_id - self.info.capabilities[i].id_offset;
|
2016-12-09 19:36:40 +01:00
|
|
|
|
|
|
|
match *self.protocol_states.entry(protocol).or_insert_with(|| ProtocolState::Pending(Vec::new())) {
|
|
|
|
ProtocolState::Connected => {
|
2016-12-10 14:20:34 +01:00
|
|
|
trace!(target: "network", "Packet {} mapped to {:?}:{}, i={}, capabilities={:?}", packet_id, protocol, protocol_packet_id, i, self.info.capabilities);
|
|
|
|
Ok(SessionData::Packet { data: packet.data, protocol: protocol, packet_id: protocol_packet_id } )
|
2016-12-09 19:36:40 +01:00
|
|
|
}
|
|
|
|
ProtocolState::Pending(ref mut pending) => {
|
|
|
|
trace!(target: "network", "Packet {} deferred until protocol connection event completion", packet_id);
|
2016-12-10 14:20:34 +01:00
|
|
|
pending.push((packet.data, protocol_packet_id));
|
2016-12-09 19:36:40 +01:00
|
|
|
|
|
|
|
Ok(SessionData::Continue)
|
|
|
|
}
|
|
|
|
}
|
2015-12-02 20:11:13 +01:00
|
|
|
},
|
|
|
|
_ => {
|
2016-06-02 11:49:56 +02:00
|
|
|
debug!(target: "network", "Unknown packet: {:?}", packet_id);
|
2016-06-13 15:35:21 +02:00
|
|
|
Ok(SessionData::Continue)
|
2015-12-02 20:11:13 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-08-05 10:32:04 +02:00
|
|
|
fn write_hello<Message>(&mut self, io: &IoContext<Message>, host: &HostInfo) -> Result<(), NetworkError> where Message: Send + Sync + Clone {
|
2015-12-02 20:11:13 +01:00
|
|
|
let mut rlp = RlpStream::new();
|
2016-01-10 14:02:01 +01:00
|
|
|
rlp.append_raw(&[PACKET_HELLO as u8], 0);
|
2016-01-27 12:14:57 +01:00
|
|
|
rlp.begin_list(5)
|
2015-12-02 20:11:13 +01:00
|
|
|
.append(&host.protocol_version)
|
|
|
|
.append(&host.client_version)
|
2016-01-28 20:13:05 +01:00
|
|
|
.append(&host.capabilities)
|
2016-03-20 11:35:46 +01:00
|
|
|
.append(&host.local_endpoint.address.port())
|
2015-12-02 20:11:13 +01:00
|
|
|
.append(host.id());
|
2016-06-13 18:55:24 +02:00
|
|
|
self.send(io, rlp)
|
2015-12-02 20:11:13 +01:00
|
|
|
}
|
|
|
|
|
2016-08-05 10:32:04 +02:00
|
|
|
fn read_hello<Message>(&mut self, io: &IoContext<Message>, rlp: &UntrustedRlp, host: &HostInfo) -> Result<(), NetworkError>
|
2016-06-13 18:55:24 +02:00
|
|
|
where Message: Send + Sync + Clone {
|
2016-12-27 12:53:56 +01:00
|
|
|
let protocol = rlp.val_at::<u32>(0)?;
|
|
|
|
let client_version = rlp.val_at::<String>(1)?;
|
|
|
|
let peer_caps = rlp.val_at::<Vec<PeerCapabilityInfo>>(2)?;
|
|
|
|
let id = rlp.val_at::<NodeId>(4)?;
|
2015-12-02 20:11:13 +01:00
|
|
|
|
|
|
|
// Intersect with host capabilities
|
|
|
|
// Leave only highset mutually supported capability version
|
2015-12-17 11:42:30 +01:00
|
|
|
let mut caps: Vec<SessionCapabilityInfo> = Vec::new();
|
2016-01-19 12:14:29 +01:00
|
|
|
for hc in &host.capabilities {
|
2015-12-17 11:42:30 +01:00
|
|
|
if peer_caps.iter().any(|c| c.protocol == hc.protocol && c.version == hc.version) {
|
|
|
|
caps.push(SessionCapabilityInfo {
|
|
|
|
protocol: hc.protocol,
|
|
|
|
version: hc.version,
|
|
|
|
id_offset: 0,
|
|
|
|
packet_count: hc.packet_count,
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
caps.retain(|c| host.capabilities.iter().any(|hc| hc.protocol == c.protocol && hc.version == c.version));
|
2015-12-02 20:11:13 +01:00
|
|
|
let mut i = 0;
|
|
|
|
while i < caps.len() {
|
|
|
|
if caps.iter().any(|c| c.protocol == caps[i].protocol && c.version > caps[i].version) {
|
|
|
|
caps.remove(i);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
i += 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-10-24 16:24:35 +02:00
|
|
|
// Sort capabilities alphabeticaly.
|
|
|
|
caps.sort();
|
|
|
|
|
2015-12-17 11:42:30 +01:00
|
|
|
i = 0;
|
|
|
|
let mut offset: u8 = PACKET_USER;
|
|
|
|
while i < caps.len() {
|
|
|
|
caps[i].id_offset = offset;
|
|
|
|
offset += caps[i].packet_count;
|
|
|
|
i += 1;
|
|
|
|
}
|
2016-10-25 18:40:01 +02:00
|
|
|
debug!(target: "network", "Hello: {} v{} {} {:?}", client_version, protocol, id, caps);
|
2016-10-12 20:18:59 +02:00
|
|
|
self.info.protocol_version = protocol;
|
2016-01-15 00:50:48 +01:00
|
|
|
self.info.client_version = client_version;
|
2015-12-17 11:42:30 +01:00
|
|
|
self.info.capabilities = caps;
|
2016-10-12 20:18:59 +02:00
|
|
|
self.info.peer_capabilities = peer_caps;
|
2016-02-16 19:08:58 +01:00
|
|
|
if self.info.capabilities.is_empty() {
|
2016-03-05 23:09:51 +01:00
|
|
|
trace!(target: "network", "No common capabilities with peer.");
|
2016-06-13 18:55:24 +02:00
|
|
|
return Err(From::from(self.disconnect(io, DisconnectReason::UselessPeer)));
|
2016-02-16 19:08:58 +01:00
|
|
|
}
|
2015-12-02 20:11:13 +01:00
|
|
|
if protocol != host.protocol_version {
|
2016-03-05 23:09:51 +01:00
|
|
|
trace!(target: "network", "Peer protocol version mismatch: {}", protocol);
|
2016-06-13 18:55:24 +02:00
|
|
|
return Err(From::from(self.disconnect(io, DisconnectReason::UselessPeer)));
|
2015-12-02 20:11:13 +01:00
|
|
|
}
|
|
|
|
self.had_hello = true;
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
2016-02-02 20:58:12 +01:00
|
|
|
/// Senf ping packet
|
2016-08-05 10:32:04 +02:00
|
|
|
pub fn send_ping<Message>(&mut self, io: &IoContext<Message>) -> Result<(), NetworkError> where Message: Send + Sync + Clone {
|
2016-12-27 12:53:56 +01:00
|
|
|
self.send(io, Session::prepare(PACKET_PING)?)?;
|
2016-02-02 20:58:12 +01:00
|
|
|
self.ping_time_ns = time::precise_time_ns();
|
|
|
|
self.pong_time_ns = None;
|
|
|
|
Ok(())
|
2015-12-02 20:11:13 +01:00
|
|
|
}
|
|
|
|
|
2016-08-05 10:32:04 +02:00
|
|
|
fn send_pong<Message>(&mut self, io: &IoContext<Message>) -> Result<(), NetworkError> where Message: Send + Sync + Clone {
|
2016-12-27 12:53:56 +01:00
|
|
|
self.send(io, Session::prepare(PACKET_PONG)?)
|
2015-12-02 20:11:13 +01:00
|
|
|
}
|
|
|
|
|
2016-02-02 14:54:46 +01:00
|
|
|
/// Disconnect this session
|
2016-06-13 18:55:24 +02:00
|
|
|
pub fn disconnect<Message>(&mut self, io: &IoContext<Message>, reason: DisconnectReason) -> NetworkError where Message: Send + Sync + Clone {
|
2016-06-02 11:49:56 +02:00
|
|
|
if let State::Session(_) = self.state {
|
|
|
|
let mut rlp = RlpStream::new();
|
|
|
|
rlp.append(&(PACKET_DISCONNECT as u32));
|
|
|
|
rlp.begin_list(1);
|
|
|
|
rlp.append(&(reason as u32));
|
2016-06-13 18:55:24 +02:00
|
|
|
self.send(io, rlp).ok();
|
2016-06-02 11:49:56 +02:00
|
|
|
}
|
2016-01-10 12:53:55 +01:00
|
|
|
NetworkError::Disconnect(reason)
|
2015-12-02 20:11:13 +01:00
|
|
|
}
|
|
|
|
|
2016-08-05 10:32:04 +02:00
|
|
|
fn prepare(packet_id: u8) -> Result<RlpStream, NetworkError> {
|
2016-01-10 14:02:01 +01:00
|
|
|
let mut rlp = RlpStream::new();
|
2015-12-02 20:11:13 +01:00
|
|
|
rlp.append(&(packet_id as u32));
|
2016-01-27 12:14:57 +01:00
|
|
|
rlp.begin_list(0);
|
2015-12-02 20:11:13 +01:00
|
|
|
Ok(rlp)
|
|
|
|
}
|
|
|
|
|
2016-08-05 10:32:04 +02:00
|
|
|
fn send<Message>(&mut self, io: &IoContext<Message>, rlp: RlpStream) -> Result<(), NetworkError> where Message: Send + Sync + Clone {
|
2016-06-02 11:49:56 +02:00
|
|
|
match self.state {
|
|
|
|
State::Handshake(_) => {
|
|
|
|
warn!(target:"network", "Unexpected send request");
|
|
|
|
},
|
|
|
|
State::Session(ref mut s) => {
|
2016-12-27 12:53:56 +01:00
|
|
|
s.send_packet(io, &rlp.out())?
|
2016-06-02 11:49:56 +02:00
|
|
|
},
|
|
|
|
}
|
|
|
|
Ok(())
|
2015-12-02 20:11:13 +01:00
|
|
|
}
|
2015-12-02 12:07:46 +01:00
|
|
|
}
|
|
|
|
|